/*Reset start*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;}
ol, ul {list-style: none;margin: 0;padding: 0;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none;}
table {border-collapse: collapse;border-spacing: 0;}
/*Reset end*/


/* Default Font Styles
______________________*/
body, input, select, textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}
body{
    background: url(../images/landing/main-bg.jpg) center top no-repeat;
    background-size: cover;
}
.wrapper{
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: url(../images/landing/people-1.png) 96% 60px no-repeat;
    /*background-size: 52% auto !important;*/
    background-size: 48% auto !important;
}
    .people-1 .wrapper{
        background: url(../images/landing/people-1.png) 92% 60px no-repeat;
    }
    .people-2 .wrapper{
        background: url(../images/landing/people-2.png) 92% 60px no-repeat;
    }
    .people-3 .wrapper{
        background: url(../images/landing/people-3.png) 92% 60px no-repeat;
    }
    .people-4 .wrapper{
        background: url(../images/landing/people-4.png) 92% 60px no-repeat;
    }
body.glow{
	background:#0c92d3 url(../images/landing/glow.jpg) no-repeat;
	background-size: cover;
}
.triangle-bg{
	/*background:url(../images/landing/triangle-bg.svg) no-repeat;*/
}
.triangle-curve{
	/*background:url(../images/landing/triangle-curve.png) left 305px no-repeat;*/
}
#container-fluid{
    width: 100%;
}
body *{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
.container{
    max-width: 1590px;
    margin: 0 auto;
}

/* Headings
______________________*/
h1 {
    font-size: 57px;
    font-size: 49px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 900;
    margin: 0 0 35px;
}
h2{
    font-size: 44px;
    color: #ff840c;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 25px;
}
img {max-width: 100%;height: auto;}
a {color: #ff840c; text-decoration: none; -moz-transition: all 0.3s ease; -webkit-transition: all 0.3s ease; transition: all 0.3s ease;}
a:hover {text-decoration: none;}
p {line-height: 1.4;margin: 0 0 20px;}
.btn{
    display: inline-block;
    padding: 8px 35px 9px;
    font-size: 16px;
    color: #fff;
    background: #ff840c;
    background-image: linear-gradient(to right, #ff840c , #ff840c);
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
}
.btn:hover{
    background: #ff7200;
    background-image: linear-gradient(to right, #ff7200 , #ff7200);
}
.btn:disabled,
.btn[disabled],
.btn:hover:disabled,
.btn[disabled]:hover{
    background: #cccccc;
    background-image: none;
    color: #666666;
}
.btn-lg{
    padding: 22px 45px;
    font-size: 28px;
    font-weight: 500;
    background: #ff840c;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
}
.btn-transparent{
    background: none;
    border: 1px solid #3bc5ff;
}
    .btn-transparent:hover{
        border-color: #fff;
        background: #0594d2;
        background-image: linear-gradient(to right, #0594d2 , #0594d2);
    }
.min-350{
    min-width: 350px;
    text-align: center;
}
/*______________________*/
/* Header
______________________*/

#header-wrap{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}
#header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 0;
}
    .logo{
        margin-right: 90px;
        width: 275px;
    }
.nav{
}
    .nav > ul{
        display: flex;
        flex-wrap: wrap;
    }
    .nav > ul > li{
        position: relative;
        padding:10px 45px 10px 0;
    }
    .nav > ul > li:last-child{
        margin-right: 0;
    }
    .nav > ul > li > a{
        display: block;
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
    }
    .nav > ul > li.active > a{
        color: #ff840c;
    }
    @media(min-width: 1200px){
        .nav > ul > li > a{
            -moz-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }
    }
    @media(min-width: 992px){
        .nav > ul > li > a:hover,
        .nav > ul > li:hover > a{
            color: #ff840c;
        }
        .nav > ul > li:hover > ul{
            display: block;
        }
    }
        .nav > ul > li > ul{
            display: none;
            position: absolute;
            left: 0;
            top: 100%;
            background: #1E93C6;
            width: 280px;
        }
        .nav > ul > li > ul li{
            border-bottom: 1px solid #1E5F8D;
        }
        .nav > ul > li > ul li:last-child{
            border-bottom: none;
        }
        .nav > ul > li > ul li a{
            font-size: 16px;
            color: #fff;
            display: block;
            padding: 9px 7px 9px 30px;
            -moz-transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
            transition: all 0.5s ease;
        }
        .nav > ul > li > ul li a:hover{
            text-decoration: none;
            color: #336699;
        }
    .nav > ul > li.mobile-learn-more{
        display: none;
    }
.header-right{
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
    .header-right a{
        display: inline-block;
        margin: 0 20px;
        font-weight: bold;
    }
    .header-right .btn{
        margin-left: -200px;
        font-weight: normal;
    }
    .phone-wrap{
        font-size: 24px;
        color: #fff;
        text-decoration: none;
    }
    .phone-wrap img{
        width: 28px;
    }
    .phone-wrap img,
    .phone-wrap span{
        display: inline-block;
        vertical-align: middle;
    }
/*Main content start*/
#man-wrap{
    padding: 130px 0 70px;
}
.main{
    max-width: 780px;
    min-height: calc(100vh - 300px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 100px;
}

/*@media(min-width: 992px){
    #man-wrap ::-webkit-scrollbar {
      width: 7px;
    }
    #man-wrap ::-webkit-scrollbar-track {
      background: #0f4e75; 
    }
    #man-wrap ::-webkit-scrollbar-thumb {
      background: #ff840c; 
    }
    #man-wrap ::-webkit-scrollbar-thumb:hover {
      background: #555; 
    }
}*/

.content-area{
    font-size: 17px;
    font-weight: 300;
}
    .content-area p{
/*        line-height: 1.8;*/
        margin: 0 0 30px;
    }
    .content-area p a{
        font-weight: normal;
        text-decoration: underline;
        color: #ff840c;
    }
    .content-area p a:hover{
        color: #ff7200;
        text-decoration: none;
    }
.btn-wrap{
    padding-top: 20px;
    margin-right: -200px;
}
    .btn-wrap a{
        text-transform: uppercase;
        margin: 0 20px 10px 0;
    }
.people-section-mobile{
    display: none;
}
.overlay{
    display: none;
    background: rgba(0,0,0,0.8);
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
}
.popup-section{
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 66.666666%;
    z-index: 2;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
    .close-popup{
        position: absolute;
        top: -4em;
        right: 0;
        display: block;
        background: url(../images/landing/close.svg) no-repeat;
        width: 40px;
        height: 40px;
    }
    .popup-section iframe{
        width: 100% !important;
        height: 75vh;
    }

/*form page style */
.white-page #man-wrap.main-wrap-form{
    padding: 25px 110px 20px 110px;
    background: url(../images/landing/left-corner-lg.png) left 120px no-repeat;
    position: relative;
}
.white-page #man-wrap.main-wrap-form:before{
    content: " ";
    background: url(../images/landing/left-corner-lg.png) no-repeat;
    width: 332px;
    height: 700px;
    position: absolute;
    left: 0;
    bottom: 100px;
}
.white-page #man-wrap.main-wrap-form.small-form:before{
    background: none;
}
.white-page #man-wrap.main-wrap-form:after{
    content: " ";
    background: url(../images/landing/right-corner-lg.png) no-repeat;
    width: 332px;
    height: 700px;
    position: absolute;
    right: 0;
    top: 35%;
}
.form-container{
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 0 0;
    font-size: 17px;
    color: 000000;
    font-family: 'Open Sans', sans-serif;
}
    .form-container h2{
        font-size: 30px;
        margin: 0 0 20px;
    }
    .form-title{
        padding: 0 0 40px;
    }
    .form-container p{
        line-height: 1.6;
    }
    .required{
        font-size: 14px;
    }
    .required_dot{
        color: #ff0000;
    }
    .form-container .form{
        margin: 0 0 45px;
    }
    .form-container .form.form-bottom{
        margin: 30px 0 45px 25px;
    }
    .text-field,
    .form-container .application input[type="text"],
    .form-container .application input[type="emal"],
    .form-container .application input[type="phone"],
    .form-container .application input[type="number"]{
        display: block;
        border: 1px solid #83bce4;
        padding: 10px 25px;
        color: #000000;
        font-weight: 600;
        font-size: 17px;
        width: 100%;
        transition: all 0.3s ease;
        -moz-border-radius: 25px;
        -webkit-border-radius: 25px;
        border-radius: 25px;
    }
    textarea.text-field{
        height: 140px;
        padding: 20px 35px;
        -moz-border-radius: 45px;
        -webkit-border-radius: 45px;
        border-radius: 45px;
    }
    .text-field:focus,
    .form-container .application input[type="text"]:focus,
    .form-container .application input[type="emal"]:focus,
    .form-container .application input[type="phone"]:focus,
    .form-container .application input[type="number"]:focus{
        border-color: #0397d6;
        -moz-box-shadow:inset 0 3px 3px 3px rgba(3,151,214, 0.2);
        -webkit-box-shadow:inset 0 3px 3px 3px rgba(3,151,214, 0.2);
        box-shadow:inset 0 3px 3px 3px rgba(3,151,214, 0.2);
    }
    .form-container select{
        background: url(../images/landing/select-arrow.png) 96% center no-repeat;
        -webkit-appearance: none;
        padding-right: 45px;
    }

    .error-field,
    .text-field.error{
        background: #ffdede;
        border-color: #ffbcbc;
    }
    .error-field:focus,
    .text-field.error:focus{
        border-color: #ffbcbc;
        -moz-box-shadow:inset 0 3px 3px 3px rgba(255,188,188, 0.2);
        -webkit-box-shadow:inset 0 3px 3px 3px rgba(255,188,188, 0.2);
        box-shadow:inset 0 3px 3px 3px rgba(255,188,188, 0.5);
    }
    .form-container select.error-field,
    .form-container select.text-field.error{
        background:#ffdede url(../images/landing/select-arrow.png) 96% center no-repeat;
        -webkit-appearance: none;
    }

    .error-msg{
        display: none;
        color: #ff0000;
        font-size: 14px;
        padding-bottom: 8px;
        margin-left: auto;
    }
    label.error{
        color: #ff0000;
        font-size: 14px;
        padding-bottom: 8px;
        margin-left: auto;
    }
    .form-container .col-left{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 0 0 0 15px;
    }
    .label-info{
        padding-bottom: 8px;
    }
    .half-wrap{
        display: flex;
        flex-wrap: wrap;
    }
    .half-wrap > div{
        width: 48%;
        margin-bottom: 15px;
    }
    .full-wrap > div{
        width: 100%;
        margin-bottom: 15px;
    }
    .gap-lg{
        margin-bottom: 30px !important;
    }
    .half-wrap > div + div{
        margin-left: auto;
    }
    .half-wrap .required,
    .full-wrap .required{
        display: block;
        padding: 7px 0 5px 15px;
    }
    .col-left .required{
        display: inline-block;
        padding: 0;
        font-size: 13px;
    }

    .form-container .application{
        width: 100%;
        margin-top: 30px;
    }
    .form-container .application tr td:first-child{
        width: 25px;
        text-align: center;
        padding-right: 0;
    }
    .form-container .application p{
        padding: 0 0 0 15px;
        margin: 0;
    }
    .form-container .application td{
        padding: 0 10px 12px;
        vertical-align: middle;
    }
    .add-btn{
        position: relative;
        display: inline-block;
        padding: 9px 25px 10px 20px;
        font-size: 15px;
        color: #ffffff;
        background: #0397d6;
        font-family: 'Roboto', sans-serif;
        border: none;
        margin: 0 0 0 45px;
        -moz-border-radius: 25px;
        -webkit-border-radius: 25px;
        border-radius: 25px;
    }
    .add-btn:hover{
        opacity: 0.8;
    }
        .add-btn img,
        .add-btn span{
            display: inline-block;
            vertical-align: middle;
            padding: 0 3px;
        }
    .getquote{
        text-transform: uppercase;
        border: none;
        cursor: pointer;
    }

.thankyou-page #man-wrap.main-wrap-form{
    min-height: 700px;
}
.thankyou-page #man-wrap.main-wrap-form:before{
    display: none;
}
@media(min-width: 1800px){
    .thankyou-page #man-wrap.main-wrap-form{
        padding: 25px 110px 20px 110px;
        background-size: 180px auto;
    }
    .white-page #man-wrap.main-wrap-form:before, 
    .white-page #man-wrap.main-wrap-form:after{
        background-size: 180px auto;
        width: 180px;
        height: 382px;
    }
}

/*  Footer 
-------------------------------------- */
/*#footer-wrap {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}*/
#footer {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    padding: 20px 0 15px;
}
    #footer a{
        color: #fff;
        text-decoration: underline;
    }
    #footer a:hover{
        color: #ff840c;
    }
    #footer p{
        margin: 0 0 10px;
    }
    .website{
        margin-left: auto;
    }

.cl {
  clear: both;
  font-size: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
  content: ' ';
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}


/*white-wrapper start*/
.white-page{
    color: #3d3d3d;
    background: none !important;
}
.white-page .wrapper{
    background: none !important;
    display: block;
}
.white-page #header-wrap{
    background: #fff;
}
    @media(min-width: 992px){
        .white-page .nav > ul > li > a{
            color: #336699;
        }
        .white-page .nav > ul > li > a:hover,
        .white-page .nav > ul > li.active > a{
            color: #ff840c;
        }
        /*.white-page .header-right .btn{
            background: none;
            border: 1px solid #9cbacf;
            color: #1e5f8d;
        }
        .white-page .header-right .btn:hover{
            background: #ff7200;
            border-color: #ff7200;
            color: #fff;
        }*/
    }
.white-page .phone-wrap{
    color: #ff840c;
}
.white-page h1{
    color: #1e5f8d;
}
.white-page .btn-transparent{
    color: #1e5f8d;
}
.white-page .btn-transparent:hover{
    color: #fff;
}
.white-page #man-wrap{
    padding: 25px 110px 70px 110px;
    background: url(../images/landing/left-corner.png) left 190px no-repeat;
    background-size: 90px auto;
}
.white-page .inside-width{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.white-page .main{
    max-width: inherit;
    max-height: inherit;
    width: 55%;
    padding-top: 95px;
}
.content-photo{
    width: 42%;
    text-align: center;
    margin-left: auto;
}
.white-page #footer-wrap{
    position: static;
}
.white-page #footer a{
    color: #0397d6;
}
.white-page #footer a:hover{
    color: #ff7200;
}
.main-hr-resources .main .inside-width{
    align-items: flex-start;
}
/*.main-hr-resources h1{
    font-size: 46px;
}
.main-hr-resources h2{
    font-size: 36px;
}*/
.main-outer{
    background: url(../images/landing/hr-integration.png) right top no-repeat;
}
    .main-outer .content-photo{
        display: none;
    }
/*white-wrapper end*/
@media(min-width: 992px){
    .signle-individual-insurance{
        background: url(../images/landing/bg-insurance.jpg) center top no-repeat;
        background-size: cover;
    }
}
.signle-individual-insurance .wrapper{
    background: url(../images/landing/people-individual-insurance.png) 85% 25px no-repeat;
    background-size: 34% auto !important;
}
.signle-individual-insurance-new .wrapper{
    background: url(../images/landing/people-individual-insurance-new2.png) 90% top no-repeat;
    background-size: inherit !important;
}
.article-box-content{
    background: rgba(18,46,92, 0.47);
    font-weight: 300;
    max-width: 92%;
    padding: 25px 10px 25px 25px;
    margin: 0 0 30px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
}
    .article-box-content h3{
        font-weight: normal;
        font-size: 17px;
        margin: 0 0 10px;
    }
    .article-box-content ul{
        list-style: outside;
        font-size: 17px;
        margin: 0 0 0 25px;
    }
    .article-box-content li{
        padding: 0 0 7px;
    }
    .text-underline{
        text-decoration: underline;
    }
    .content-area-botpart{
        padding: 45px 0 0;
    }
    .content-area-botpart h3{
        font-size: 17px;
        font-weight: bold;
        margin: 0 0 30px;
    }
    .iframe-outer{
        max-width: 550px;
        margin: 0 0 50px;
    }
    .iframe-outer iframe{
        width: 100% !important;
    }
.mb-0{
    margin-bottom: 0 !important;
}
.clr-secondary{
    color: #ff840c;
}
.postion-relative{
    position: relative;
}
.overlay-box-wrap{
    top: 530px;
    /*height: 305px;*/
    position: absolute;
    left: 50%;
    margin-left: 204px;
    width: 530px;
    color: #fff;
    font-size: 17px;
    background: rgb(15,55,105, 0.93);
    box-shadow: 0 38px 46px #7ecefe;
    -moz-border-radius: 28px;
    -webkit-border-radius: 28px;
    border-radius: 28px;
}
    .overlay-box-inner{
        padding: 35px 45px 15px;
    }
    .overlay-box-wrap h3{
        font-size: 36px;
        font-weight: bold;
        color: #fff;
        text-transform: uppercase;
        margin: 0 0 20px;
    }
    .overlay-box-wrap ul,
    .overlay-box-wrap li{
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .overlay-box-wrap li{
        position: relative;
        padding: 5px 0 17px 48px;
    }
    .overlay-box-wrap .count{
        position: absolute;
        left: 0;
        top: 4px;
        background: #ff840c;
        width: 30px;
        height: 30px;
        line-height: 30px;
        color: #fff;
        text-align: center;
        border-radius: 50%;
    }

/* 2500 Resolution style start*/
@media(min-width: 2200px){
    body.glow{
        background:#194286 url(../images/landing/glow-2560.jpg) no-repeat;
        background-size: cover;
    }
    .people-1 .wrapper{
        background: url(../images/landing/people-1-lg.png) 92% center no-repeat;
    }
    .people-2 .wrapper{
        background: url(../images/landing/people-2-lg.png) 92% center no-repeat;
    }
    .people-3 .wrapper{
        background: url(../images/landing/people-3-lg.png) 92% center no-repeat;
    }
    .people-4 .wrapper{
        background: url(../images/landing/people-4-lg.png) 92% center no-repeat;
    }

    .signle-individual-insurance .wrapper{
        background: url(../images/landing/people-individual-insurance.png)  82% 70px no-repeat;
        background-size: 30% auto !important;
    }
    .signle-individual-insurance-new .wrapper{
        background: url(../images/landing/people-individual-insurance-new2.png) 85% top no-repeat;
        background-size: 43% auto !important;
    }

    .container{
        max-width: 2050px;
    }
    .nav{
        width: 60%;
    }
    .nav > ul{
        justify-content: center;
    }
    .nav > ul > li{
        padding: 10px 45px;
    }
    .white-page .inside-width{
        align-items: flex-start;
    }
    .overlay-box-wrap{
        width: 600px;
    }
}
/* 2500 Resolution style end*/

@media(max-width: 1800px){
    .wrapper{
        background-size: 55% auto;
    }
    .triangle-bg{
    	background-size: 65% auto;
    }
    .container{
        max-width: 1300px;
    }
    .nav > ul > li{
        padding-right: 20px;
    }
    .logo{
        margin-right: 30px;
    }
    .main{
        max-width: 600px;
    }
    h1{
        font-size: 45px;
    }
    .btn-wrap a{
        min-width: 250px;
        padding: 22px 25px;
    }
    .main-outer{
        background-size: 60% auto;
    }

    .white-page #man-wrap.main-wrap-form{
        padding: 25px 110px 20px 110px;
        background-size: 180px auto;
    }
    .white-page #man-wrap.main-wrap-form:before,
    .white-page #man-wrap.main-wrap-form:after{
        background-size: 180px auto;
        width: 180px;
        height: 382px;
    }
    .signle-individual-insurance-new .wrapper{
	    background-size: 50% auto !important;
		background-position: 90% 60px !important;
    }
    .signle-individual-insurance .wrapper{
        background-position: 85% 60px;
    }
    .overlay-box-wrap{
        left: auto;
        right: 55px;
        margin-left: 0;
        width: 530px;
    }
    .overlay-box-wrap{
        left: auto;
        right: 55px;
        margin-left: 0;
        /*bottom: 10px;*/
        font-size: 16px;
    }
    .overlay-box-wrap h3{
        font-size: 30px;
        margin: 0 0 10px;
    }
    .overlay-box-wrap li{
        padding-bottom: 13px;
    }
}

@media(max-width: 1400px){
    .wrapper{
        background-size: 52% auto;
    }
    .container{
        max-width: 1150px;
    }
    .logo{
        width: 210px;
    }
    .nav > ul > li > a{
        font-size: 16px;
    }
    .header-right a{
        font-size: 18px;
    }
    .phone-wrap img, .phone-wrap span{
        margin: 0 2px;
    }
    .content-area{
        padding-right: 0;
    }
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 30px;
    }
    body.glow{
        background:#194286 url(../images/landing/glow-1344.jpg) no-repeat;
        background-size: cover;
    }
    .btn-wrap{
        margin-right: 0;
    }
    .btn-wrap a{
        font-size: 20px;
        min-width: 270px;
    }
    .signle-individual-insurance-new .wrapper{
    	background-size: 45% auto !important;
    	background-position: 90% 60px;
    }
    .main{
        padding-top: 50px;
    }
    .popup-section{
        width: 80%;
    }
    .popup-section iframe{
        height: 60vh;
    }
    .white-page .main{
        padding-top: 50px;
    }
    .white-page #man-wrap{
        padding: 130px 100px 70px;
        background-size: 70px auto;
        background-position: left 110px;
    }
    .white-page #man-wrap.main-wrap-form{
        padding: 25px 110px 20px 110px;
        background-size: 90px auto;
    }
    .white-page #man-wrap.main-wrap-form:before,
    .white-page #man-wrap.main-wrap-form:after{
        background-size: 90px auto;
        width: 90px;
        height: 191px;
    }

    .thankyou-page #man-wrap.main-wrap-form{
        min-height: 600px;
    }
    .overlay-box-wrap{
        width: 470px;
    }
    .overlay-box-inner{
        padding: 30px 25px 15px;
    }
    .overlay-box-wrap h3{
        font-size: 30px;
    }
    /*.main-hr-resources h1{
        font-size: 40px;
    }
    .main-hr-resources h2{
        font-size: 30px;
    }*/
}
@media (max-width: 1279px) {
    .container{
        max-width: 950px;
    }
    .logo{
        width: 200px;
        margin-right: 25px;
    }
    .nav > ul > li > a{
        font-size: 14px;
    }
    .header-right a{
        font-size: 16px;
        margin: 0 5px;
    }
    .header-right .btn{
        padding: 9px 20px;
    }
    .main{
        max-width: 500px;
    }
    h1{
        font-size: 32px;
        margin: 0 0 20px;
    }
    h2{
        font-size: 26px;
        margin: 0 0 15px;
    }
    .content-area{
        font-size: 14px;
        padding-right: 10px;
    }
    .content-area p{
        margin: 0 0 15px;
    }
    .btn-wrap a{
        font-size: 16px;
        padding: 19px 30px;
        min-width: inherit;
    }
    .popup-section{
        width: 90%;
    }
    .popup-section iframe{
        height: 50vh;
    }
    .form-container .application p{
        font-size: 13px;
    }
    .overlay-box-wrap{
        top: 415px;
        width: 400px;
    }
}

@media (max-width: 992px) {
    body{
        background:#01affb url(../images/landing/main-bg-tablet.jpg) center top no-repeat;
        background-size: 100% auto;
        padding-top: 69px;
    }
    .wrapper{
        display: block;
        background: none !important;
    }
    body.glow{
    	padding-top: 0;
    }
    body.glow{
        background:#19478a url(../images/landing/glow-750.jpg) no-repeat;
        background-size: cover;
    }
	    .triangle-bg{
	    	background-size: 50% auto;
	    	padding-top: 71px;
		}
		.triangle-curve{
			background-size: 100px auto;
			background-position: left 100px;
		}
    #header-wrap{
        position: fixed;
    }
    #header{
        display:  block;
        width: 100%;
        padding: 12px 12px 0;
    }
    h1{
        font-size: 35px;
    }
    .logo{
        width: 150px;
    }
    
    .nav-icon {
        display: inline-block;
        cursor: pointer;
        position: absolute;
        right: -2px;
        top: 9px;
        z-index: 1;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        text-align: center;
        padding-top: 2px;
        z-index: 99999;
    }
        .nav-icon:before, .nav-icon:after {
            content: '';
            background-color: #444545;
            width: 22px;
            height: 2px;
            top: 32px;
            -webkit-transition: all ease .3s;
            -moz-transition: all ease .3s;
            -ms-transition: all ease .3s;
            -o-transition: all ease .3s;
            transition: all ease .3s;
            position: absolute;
            right: 15px;
        }
        .nav-icon:before {
            top: 16px;
        }
        .nav-icon span {
            position: absolute;
            right: 15px;
            top: 24px;
            background-color: #444545;
            width: 22px;
            height: 2px;
            display: inline-block;
        }
        .nav-icon.change-navicon:before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 23px;
        }
        .nav-icon.change-navicon span {
            background-color: transparent !important;
        }
        .nav-icon.change-navicon:after {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 23px;
        }
    .nav{
        position: fixed;
        right: -300px;
        top: 68px;
        background: #1d6291;
        height: calc(100vh - 68px);
        overflow-y: auto;
        width: 300px;
         -moz-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .nav-open .nav{
        right: 0;
    }
        .nav > ul{
            display: block;
        }
        .nav > ul > li{
            position: relative;
            padding: 0;
            border-bottom: 1px solid #c3c3c3;
        }
        .nav > ul > li.menu-item-has-children{
            padding-right: 40px;
        }
        .nav > ul > li.menu-item-has-children:after {
            position: absolute;
            right: 15px;
            top: 20px;
            content: " ";
            width: 0; 
            height: 0; 
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-top: 7px solid #fff;
        }
        .nav > ul > li > a{
            font-size: 16px;
            color: #fff;
            height: auto;
            line-height: inherit;
            padding: 14px 0 14px 20px;
            position: relative;
            z-index: 1;
        }
        .nav > ul > li.active > a{
            color: #fff;
        }
        .nav > ul > li.menu-item-has-children > a{
            border-right: 1px solid #c3c3c3;
        }
        .nav > ul > li > ul{
            position: relative;
            width: 100%;
        }
        .nav > ul > li.show-submenu > ul{
            display: block;
            width: calc(100% + 40px);
            border-top: 1px solid #c3c3c3;
        }
        .nav > ul > li > ul li a{
            padding: 9px 7px 9px 40px;
        }

        .nav > ul > li.mobile-learn-more{
            display: block;
            padding:12px 15px;
        }
            .nav > ul > li.mobile-learn-more a{
                display: inline-block;
                padding: 9px 40px;
            }
    .header-right .btn{
        display: none;
    }
        .phone-wrap{
            position: absolute;
            right: 50px;
            top: 22px;
        }
        .header-right a{
            font-size: 14px;
        }
        .phone-wrap img{
            display: none;
            max-width: 28px;
        }

    .fixedbar .header-dark{
        background: #104a70;
    }
    .header-dark .nav-icon:before,
    .header-dark .nav-icon:after{
        background-color: #fff;
    }
    .header-dark .nav-icon span{
        background-color: #fff;
    }



.people-section-mobile{
    display: block;
    text-align: center;
}
    .people-section-mobile img{
        display: none;
        margin: 0 auto;
    }
    .people-section-mobile img.show{
        display: block;
    }


    .people-section-mobile img,
    .people-1 .people-section-mobile img,
    .people-2 .people-section-mobile img,
    .people-3 .people-section-mobile img,
    .people-4 .people-section-mobile img{
        display: none !important;
    }
    .people-1 .people-section-mobile .people-mobile-1{
        display: block !important;
    }
    .people-2 .people-section-mobile .people-mobile-2{
        display: block !important;
    }
    .people-3 .people-section-mobile .people-mobile-3{
        display: block !important;
    }
    .people-4 .people-section-mobile .people-mobile-4{
        display: block !important;
    }

    .signle-individual-insurance .people-section-mobile img{
        display: block !important;
    }
    .signle-individual-insurance-new .people-section-mobile img{
        display: block !important;
    }
    .article-box-content{
        max-width: inherit;
    }

    #man-wrap{
        padding: 60px 25px 20px;
    }
        .main{
            max-width: inherit;
            max-height: inherit;
            min-height: inherit;
            padding: 0;
        }
        .btn-wrap a{
            width: 40%;
            margin: 0 0 15px;
        }
    .people-section-mobile{
        display: block;
        text-align: center;
        /*height: 320px;
        background: url(../images/landing/people-1-mobile.png) center center no-repeat;
        background-size: 100% auto;*/
    }
    .popup-section{
        width: 94%;
    }
    .popup-section iframe{
        height: 40vh;
    }
    .white-page #man-wrap{
        padding: 30px 70px 20px;
        background-size: 50px auto;
        background-position: left 30px;
    }
    /*.white-page .nav-icon{
        background: url(../images/landing/menu-dark.svg) no-repeat;
    }*/
    .white-page .inside-width{
        display: block;
    }
    .white-page .main{
        width: 100%;
        margin: 0 0 15px;
        padding-top: 0;
    }
    /*.main-hr-resources h1{
        font-size: 35px;
    }
    .main-hr-resources h2{
        font-size: 26px;
    }*/
    .content-photo{
        width: 100%;
    }
    .main-outer{
        background: none;
    }
    .main-outer .content-photo{
        display: block;
        width: auto;
        margin: 0 -20px;
    }
    .white-page #man-wrap.main-wrap-form{
        padding-top: 50px;
    }
    .thankyou-page #man-wrap.main-wrap-form{
        min-height: 400px;
    }

    .form-container{
        padding-top: 0;
    }
    .text-field,
    .form-container .application input[type="text"],
    .form-container .application input[type="emal"],
    .form-container .application input[type="phone"],
    .form-container .application input[type="number"]{
        padding: 10px 15px;
        font-size: 15px;
    }
    .overlay-box-wrap{
        position: static;
        margin: 15px;
        width: auto;
    }
    #footer-wrap{
        position: static;
    }
    #footer{
        text-align: center;
        display: block;
        padding: 0 15px 15px;
    }
}
@media (max-width: 767px) {

	body.glow{
        background-size: 100% auto;
    }
	    .triangle-bg,
	    .triangle-curve{
	    	background: none;
	    }

    .btn-wrap a{
        display: block;
        width: 100%;
        margin: 0 0 15px;
    }
    .white-page #man-wrap{
        padding: 30px 20px 20px;
        background: none;
    }
    .white-page #man-wrap.main-wrap-form{
        padding: 20px 25px 20px 40px;
        background-size: 30px auto;
        background-position: left 40px;
    }
    .white-page #man-wrap.main-wrap-form:before,
    .white-page #man-wrap.main-wrap-form:after{
        background-size: 40px auto;
        width: 40px;
        height: 85px;
        bottom: 200px;
    }
    .white-page #man-wrap.main-wrap-form:after{
        display: none;
    }

    .thankyou-page #man-wrap.main-wrap-form{
        min-height: 200px;
    }
    .half-wrap{
        display: block;
    }
    .half-wrap > div{
        width: 100%;
    }
    .table-wrap{
        width: 100%;
        overflow-y: auto;
        margin-bottom: 15px;
    }
        .form-container .application td{
            min-width: 150px;
        }
        .form-container .application tr td:first-child{
            min-width: inherit;
        }
        textarea.text-field{
            height: 100px;
            padding: 20px 25px;
            -moz-border-radius: 25px;
            -webkit-border-radius: 25px;
            border-radius: 25px;
        }
    .form-container .btn-lg{
        padding: 18px 35px;
        font-size: 20px;
    }
    .form-container .min-350{
        min-width: inherit;
    }
}
@media (max-width: 400px) {
    .g-recaptcha{
        width: 100%;
        overflow-y: auto;
    }
}
@media (max-width: 330px) {
    body{
        background:#01affb url(../images/landing/main-bg-mobile.jpg) center top no-repeat;
        background-size: 100% auto;
    }
}
