@font-face {
  font-family: 'HelveticaNeueLT-BoldCond';
  src: url('../fonts/HelveticaNeueCondensedBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HelveticaNeueLT-Roman';
  src: url('../fonts/HelveticaNeue-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HelveticaNeue-Medium';
  src: url('../fonts/HelveticaNeue-Medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root{
    --yellow: #f2af00;
    --yellowRight:#fbe9ba;
    --yellowHover:#f3b71a;;
    --teal:#006778;
    --tealLight:#e3eef0;
    --tealHover:#1a7686;
    --red:#aa272f;
    --redLight:#f5e5e6;
    --redHover:#b33d44;
    --green:#5b8f22;
    --greenLight:#e8efe0;
    --greenHover:#6b9a38;
    --text:#4d4f53;
    --white:#ffffff;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
   font-family: 'HelveticaNeueLT-Roman';
}
.wraper{background-color: var(--teal);}
section{background-color: var(--white);}
.container{
    max-width: 67.5em;
    margin: 0 auto;
    padding-left: .75rem;
    padding-right: .75rem;
}
.sec_container{
    width: 100%; 
    margin-right: auto;
    margin-left: auto;
}

.ctm_row{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 768px) {
    .col_md_6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 992px) {
    .col_lg_8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col_lg_6{
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col_lg_4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.pt-0{
    padding-top: 0 !important;
}
.pb-0{
    padding-bottom: 0 !important;
}
.fit_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.fit_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.sections{padding: 40px;}
.tb_space{
    margin-top: -15px;
    margin-bottom: -15px;
}
.tb_space > div {
    padding-top: 15px;
    padding-bottom: 15px;
}
.site_btn{
    background-color: var(--yellow);
    color: var(--white);
    font-size: 26px;
    font-family: 'HelveticaNeueLT-BoldCond';
    display: inline-block;
    padding: 12px 30px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.25s  ease-in-out;
    border: 1px solid transparent;
}
.site_btn:focus{
    outline: none;
    box-shadow: none;
}
.site_btn:hover{background-color: var(--yellowHover);}

.site_btn.red{background-color: var(--red);}
.site_btn.red:hover{background-color: var(--redHover);}

.site_btn.teal{background-color: var(--teal);}
.site_btn.teal:hover{background-color: var(--tealHover);}

.site_btn.green{background-color: var(--green);}
.site_btn.green:hover{background-color: var(--greenHover);}

.site_btn.white{background-color: var(--white);color: teal;}
.site_btn.white:hover{background-color: transparent;border: 1px solid var(--white);color: var(--white);}


.site_btn.sm{font-size: 16px;}

.site_btn + .site_btn {
    margin-left: 15px;
}

.sections_title{
    margin-bottom: 30px;
    text-align: center;    
}
.sections_title.left{text-align: left;}
.sections_title.right{text-align: left;}

.sections_title h2{
    font-size: 44px;
     font-family: 'HelveticaNeue-Medium';
     color: var(--teal);
}

@media (max-width:1024px) {
     .site_btn{
        font-size: 24px;
        padding: 12px 28px;
    }
    .sections_title h2{font-size: 40px;}
 }
@media (max-width:991px) { 
     .sections_title h2{font-size: 36px;}
     .site_btn{
        font-size: 22px;
        padding: 12px 26px;
    }
}
@media (max-width:767px) {
    .sections_title h2{font-size: 32px;}
    .sections{padding: 40px 0;}
    .site_btn{
        font-size: 20px;
        padding: 10px 20px;
    }
}
@media (max-width:575px) { }

.billboard{
    min-height: 360px;
    background-size: cover;
    background-position: right top;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 30px 60px;
    position: relative;
}
.billboard::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
}
.billboard .caption{
    max-width: 420px;
    position: relative;
}
.billboard h1,
.billboard p{
    color: var(--white);
}

.billboard h1{
    font-size: 56px;
    font-family: 'HelveticaNeueLT-BoldCond';
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.billboard p{
    font-size: 22px;
    font-family: 'HelveticaNeueLT-BoldCond';
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@media (max-width:1024px){
    .billboard{padding: 20px 50px; }
    .billboard h1{font-size: 52px;}
    .billboard p{font-size: 19px;}
   
}
@media (max-width:991px){
     .billboard{padding: 20px 40px; min-height: 340px;}
     .billboard h1{font-size: 48px;}
     .billboard p{font-size: 18px;}
    

}
@media (max-width:767px){
    .billboard{padding: 20px 30px; min-height: 320px;}
    .billboard .caption{max-width: 100%;}
    .billboard h1{font-size: 44px;}
    
}
@media (max-width:575px){
       .billboard{padding: 20px; min-height: 300px;}
      .billboard h1{font-size: 40px;}
}



/* Service Section Start */
.service_box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.service_box .service_img{
    height: 240px;
    position: relative;   
}

.service_box .service_img img{
    object-position: top center;
}
.service_box .service_img .service_title{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    width: 100%;
}
.service_box .service_img .service_title h3{
    color: var(--white);
    font-size: 36px;
    font-family: 'HelveticaNeue-Medium';
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
}
.service_box:hover .service_img img{
    transform: scale(1.03);
}
.sub_head{
    color: var(--white);
    font-size: 22px;
   font-family: 'HelveticaNeue-Medium';
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.service_content{
    padding: 30px 70px 30px 30px;
    background-color: var(--tealLight);
    position: relative;
    text-decoration: none;
    width: 100%;
    height: calc(100% - 240px);
}
.service_content p{
    margin-bottom: 0;
    text-decoration: none;
    color: var(--text);
    font-size: 18px;
}
.service_content .arrow_btn{
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--teal);
    transition: all 0.25s ease-in-out;
}
.service_content .arrow_btn:hover,
.service_content .arrow_btn:focus{
    outline: none;
    background-color: var(--tealHover);
}
.service_content .arrow_btn img{
    height: 25px;
    width: auto;
}
.red  .service_content{
    background-color: var(--redLight);
}
.red .service_content .arrow_btn{
     background-color: var(--red);
}
.red .service_content .arrow_btn:hover{
    background-color: var(--redHover);
}
.teal  .service_content{
    background-color: var(--tealLight);
}
.teal .service_content .arrow_btn{
     background-color: var(--teal);
}
.teal  .service_content .arrow_btn:hover{
    background-color: var(--tealHover);
}
.green  .service_content{
    background-color: var(--greenLight);
}
.green .service_content .arrow_btn{
     background-color: var(--green);
}
.green  .service_content .arrow_btn:hover{
    background-color: var(--greenHover);
}
.yellow  .service_content{
    background-color: var(--yellowRight);
}
.yellow .service_content .arrow_btn{
     background-color: var(--yellow);
}
.yellow  .service_content .arrow_btn:hover{
    background-color: var(--yellowHover);
}
.service_box.sb_1 .service_img{
    height: 180px;
}
.service_box.sb_1 .service_content{
       height: calc(100% - 180px);
}
.service_box .service_content h3 a,
.service_box .service_content h3{
     font-family: 'HelveticaNeue-Medium';
     color: var(--teal);
}
.service_box .service_content h3{margin-bottom: 10px;}
.service_box .service_content h3 a:hover{color: var(--tealHover);}


@media (max-width:1024px){
    .service_box .service_img .service_title h3{font-size: 34px;}
    .sub_head{font-size: 21px;}
    .service_content {padding: 25px 65px 25px 25px;}
}
@media (max-width:991px){
     .service_box .service_img .service_title h3{font-size: 32px;}
     .service_content {padding: 20px 65px 20px 20px;}
     .sub_head{font-size: 20px;}
     .service_content p br{display: none;}
     .service_box.sb_1 .service_img{height: 220px;}
     .service_box.sb_1 .service_content{height: calc(100% - 220px);}

}
@media (max-width:767px){
    .service_box .service_img .service_title h3{font-size: 30px;}
    .service_box .service_img .service_title br{display: none;}
     .service_content {padding: 20px 65px 20px 20px;}
     .sub_head{font-size: 18px;}
     .service_box.sb_1 .service_content  br{display: none;}
}
@media (max-width:575px){
    .service_box.sb_1 .service_img{height: 200px;}
     .service_box.sb_1 .service_content{height: calc(100% - 200px);}
}
/* Service Section End */

/* Content area */
.sm_title{
    color: var(--teal);
    font-size: 26px;
    font-family: 'HelveticaNeue-Medium';
}
.content_area{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.content_area p{
     font-family: 'HelveticaNeueLT-Roman';
     line-height: 150%;
}
.content_area p strong{ font-family: 'HelveticaNeue-Medium';}
.content_area p a{
    color: var(--teal);
    text-decoration: underline;
}
.content_area p a:hover{color: var(--tealHover);}

@media (max-width:991px){
    .content_area{gap: 20px;}
}
/* Content area */

.sb_wraper{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.sidebar_box{
    background-color: var(--tealLight);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar .sidebar_box:last-child{
    margin-bottom: 0;
}
.sidebar_box img{
    width: 100%;
    object-fit: cover;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.sidebar_box img + h3{text-transform: uppercase;}
.sidebar_box h3{
    color: var(--teal);
    font-size: 20px;
    font-family: 'HelveticaNeue-Medium';
    margin-bottom: 15px;
}
.sidebar_box p{
    font-size: 16px;
    font-family: 'HelveticaNeueLT-Roman';
    color: var(--text);
    line-height: 140%;
    margin-bottom: 15px;
}
.sidebar_box p:last-child{margin-bottom: 0;}
.sidebar_box p a{color: var(--teal);text-decoration: underline;}
.sidebar_box p a:hover{color: var(--text);}


.sidebar_box.green{background-color: var(--green);}
.sidebar_box.red{background-color: var(--red);}

.sidebar_box.red h3,
.sidebar_box.green h3{color: var(--white);}

.sidebar_box.red p a,
.sidebar_box.red p,
.sidebar_box.green p a,
.sidebar_box.green p{color: var(--white);}



@media (max-width:1024px){

}
@media (max-width:991px){
    .sidebar{margin-top: 40px;}
    .sidebar_box{padding: 20px;}
}
@media (max-width:767px){}
@media (max-width:575px){}




/*Default Typography Start*/
.default_typo blockquote {
    margin: 1em 0;
    padding: 25px;
    font-size: 18px;
    line-height: 150%;
    font-style: normal;
    border-left: 10px solid var(--teal);
    background-color: var(--tealLight);
    color: var(--text);
}
.default_typo blockquote p{margin-top: 0;}
.default_typo blockquote p:last-child{margin-bottom: 0;}
.default_typo blockquote span{
    display: block;
    font-weight: 700;
}
.default_typo h1,
.default_typo h2,
.default_typo h3,
.default_typo h4,
.default_typo h5{
    color: var(--teal);
    font-family: 'HelveticaNeueLT-BoldCond';
    padding-top: 15px;
    margin-bottom: 15px;
}
.default_typo h1{font-size: 50px;}
.default_typo h2{font-size: 40px;}
.default_typo h3{font-size: 30px;}
.default_typo h4{font-size: 24px;}
.default_typo h5{font-size: 18px;}

.default_typo h1:first-child,
.default_typo h2:first-child,
.default_typo h3:first-child,
.default_typo h4:first-child{padding-top: 0;}
.default_typo img + h1,
.default_typo img + h2,
.default_typo img + h3 {padding-top: 0;}
.default_typo p:last-child{margin-bottom: 0;}
.default_typo ul{
    margin-bottom: 15px;
    padding-left: 20px;
}
.default_typo h2 + h3 {padding-top: 0;}

.default_typo ul li,
.default_typo p{
    font-size: 18px;
    line-height: 150%;
    color: var(--text);
    margin-bottom: 15px;
}

.default_typo ul li ul.children{margin-top: 12px;}
.default_typo ul li{
    position: relative;
    padding-bottom: 6px;
    line-height: 100%;
    margin: 0;
}
.default_typo ul li::marker{color: var(--teal);}
.default_typo ul.divide{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.default_typo ul.divide li{
    position: relative;
    width: 100%;
}
.default_typo ul.divide.two li{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.default_typo ul.divide.three li{
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
    max-width: 33.333%;
}
.default_typo ul.divide.four li{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.default_typo ul li a{
    text-decoration: none;
    color: var(--teal);
}
.default_typo ul li a:hover,
.default_typo ul li a:focus{color: var(--tealHover);text-decoration: underline;}
.default_typo ul li i{
    font-size: 21px;
    display: inline-block;
    vertical-align: middle;
}
.default_typo ol {
    margin-left: 20px;
    padding: 0;
}
.default_typo ol li{
    list-style-type: decimal;
    padding-left: 10px;
    padding-bottom: 8px;
}
.default_typo ul li ul{
    margin-bottom: 0px;
    margin-top: 15px;
}
.default_typo ul li ul li{padding-left: 21px;}
.default_typo ul li ol{
    margin-bottom: 0px;
    margin-top: 15px;
}
.default_typo ul li ol li:before{display: none;}
.default_typo ol li ol{
    margin-bottom: 0px;
    margin-top: 15px;
}
.default_typo ol li ul{
    margin-bottom: 0px;
    margin-top: 15px;
}
.default_typo ol li ul li{
    position: relative;
    list-style: none;
    padding-left: 21px;
    padding-bottom: 10px;
}

/*default wordpress editor images*/
.alignleft,
.aligncenter,
.alignright{border-radius: 8px;}

.alignleft {
    max-width: 300px;
    object-fit: cover;
    margin: 0px 15px 15px 0px;
    float: left;
    overflow: hidden;
}
.aligncenter {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    max-width: 100%;
    overflow: hidden;
}
.alignright {
    max-width: 300px;
    object-fit: cover;
    margin: 0px 0 15px 15px;
    float: right;
    overflow: hidden;
}
@media (max-width:1199px){
    .default_typo h1{font-size: 46px;}
    .default_typo h2{font-size: 36px;}
    .default_typo h3{font-size: 28px;}
    .default_typo h4{font-size: 21px;}
     .default_typo ul.divide.four li{
        -ms-flex: 0 0 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}
@media (max-width:991px){
    .default_typo h1{font-size: 42px;}
    .default_typo h2{font-size: 32px;}
    .default_typo h3{font-size: 26px;}
    .default_typo h4{font-size: 20px;}
    .default_typo ul.divide.three li{
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .default_typo ul.divide.four li{
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width:767px){
    .default_typo h1{font-size: 40px;}
    .default_typo h2{font-size: 30px;}
    .default_typo h3{font-size: 24px;}
    .default_typo ul.divide.two li{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .default_typo ul.divide.three li{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .default_typo ul.divide.four li{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/*Default Typography End*/