/* CSS Document */

* { 
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}
body, html { 
	background: #fff; 
	color: #212F45;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	margin: 0; 
	padding: 0; 
} 
body { 
} 

svg, img, embed, object {
    display: block;
    height: auto;
    max-width: 100%;
}
a {
	text-decoration: none;
	cursor: pointer;
}
span {
	font-style: normal;
}
b {
	font-style: normal;
	font-weight: bold;	
}
h1 {
    color: #212F45;
    font-size: 80px;
    font-weight: bold;
    line-height: 1.1;
    margin: 60px 0 20px;
    text-transform: uppercase;
}
.blue-color{
    color: #007FBB;
}
h2, .heading-size-2 {
    color: #006EAE;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.3;
    margin: 30px 0;
    text-transform: uppercase;
}
h3, .heading-size-3{
    font-size: 26px;
    line-height: 1.5;
    color: #006EAE;
    text-align: center;
}
h4,.heading-size-4 {
    font-size: 20px;
    line-height: 1.2;
}
h5,.heading-size-5 {
	color: #51564c;
	font-size: 18px;
        line-height: 1.4;
	text-align: center;
}
h6,.heading-size-6 {
	color: #a55d28;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	display: inline-block;
	float: right;
	letter-spacing: 1px;
}
p{
    font-size: 14px;
    line-height: 2;
    margin: 0 0 20px;
}


.list-blue-check{
    list-style: none;
    margin: 0 40px 20px 0;
    padding: 0;
 }
.list-blue-check li{
    line-height: 1.5;
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
 }
.list-blue-check li:after{
    background-image: url(/assets/check-blue.svg) ;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    display: inline-block;
    position: absolute;
    content: '';
    width: 20px;
    height: 21px;
    left: 0;
    top: 0px;
}
.list-blue-check{
    list-style: none;
    margin: 0 40px 20px 0;
    padding: 0;
 }
 
.list-shape{
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
 }
.list-shape li{
    display: flex;
    line-height: 1.5;
    margin: 5px 0 5px 0;
    position: relative;
 }
.list-shape li:before{
    background-image:  url(/assets/shape.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding-left: 8px;
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 2px;
 }
 
.red-check{
    background-image: url('/assets/check-red.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    line-height: 1.5;
    margin: 5px auto;
    padding-left: 28px;
    height: 20px;
    width: 20px;
}
 
.bold{
    font-weight: bold;
}
a:hover{
    color: #006EAE;
}
.content{
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

/* Flex */
.flex{ 
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.inline-flex { 
    display: -ms-inline-flexbox; 
    display: inline-flex; 
}
.flex-auto {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 0; /* 1 */
  min-height: 0; /* 1 */
}
.flex-column{ 
    -ms-flex-direction: column; 
    flex-direction: column; 
}
.flex-row {
    -ms-flex-direction: row; 
    flex-direction: row; 
}
.flex-wrap{ 
    -ms-flex-wrap: wrap; flex-wrap: wrap;
}
.flex-nowrap { 
    -ms-flex-wrap: nowrap; flex-wrap: nowrap; 
}
.flex-wrap-reverse{ 
    -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse;
}
.flex-column-reverse{ 
    -ms-flex-direction: column-reverse; flex-direction: column-reverse;
}
.flex-row-reverse{ 
    -ms-flex-direction: row-reverse; flex-direction: row-reverse;
}
.items-start{ 
    -ms-flex-align: start; align-items: flex-start; 
}
.items-end{ 
    -ms-flex-align: end; align-items: flex-end; 
}
.items-center{ 
    -ms-flex-align: center; align-items: center;
}
.items-baseline{ 
    -ms-flex-align: baseline; align-items: baseline; 
}
.items-stretch{
    -ms-flex-align: stretch; align-items: stretch;
}
.self-start{ 
    -ms-flex-item-align: start; align-self: flex-start; 
}
.self-end{
    -ms-flex-item-align: end; align-self: flex-end;
}
.self-center { 
    -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; 
}
.self-baseline {
    -ms-flex-item-align: baseline; align-self: baseline;
}
.self-stretch{
    -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; 
}
.justify-start{ 
    -ms-flex-pack: start; justify-content: flex-start; 
}
.justify-end{
    -ms-flex-pack: end; justify-content: flex-end;
}
.justify-center{ 
    -ms-flex-pack: center; justify-content: center;
}
.justify-between { 
    -ms-flex-pack: justify; justify-content: space-between; 
}
.justify-around {
    -ms-flex-pack: distribute; justify-content: space-around;
}
.content-start{ 
    -ms-flex-line-pack: start; align-content: flex-start; 
}
.content-end{ 
    -ms-flex-line-pack: end; align-content: flex-end; 
}
.content-center{ 
    -ms-flex-line-pack: center; align-content: center;
}
.content-between { 
    -ms-flex-line-pack: justify; align-content: space-between;
}
.content-around{ 
    -ms-flex-line-pack: distribute; align-content: space-around;
}
.content-stretch {
    -ms-flex-line-pack: stretch; align-content: stretch; 
}

.content-wrapper { 
	padding: 15px; 
	height: 100%; 
} 
.content { 
	
	
} 
.small-content{
    max-width: 1100px;
    margin: 0 auto 70px;
    width: 100%;
}
.one-half{
    width: 50%;
}
.button{
    background-color: #AD1D29;
    border-radius: 21px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
}
.button:hover{
    background-color: #006EAE;
    color: #fff;
}

#header{
    background-color: #F4F9FC;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
} 
#logo { 
    width: 150px;
} 

#header-menu .menu{
    padding: 0;
    list-style: none;
}
#header-menu .menu li{
    padding: 0 44px 0 0;
}
#header-menu .menu li:last-child{
    padding: 0;
}
#header-menu .menu li a{
    color: #212F45;
    font-size: 16px;
    font-weight: bold;
}
#header-menu .menu li a:hover{
    color: #007FBB;
}
.header-phone {
    padding: 9px 27px;
}
#menu-toggle, .hidden-mob{
    display: none;
}
html.fix-menu {
    height: 100%;
    overflow: hidden;
}

#banner-wrapper{
    /*height: 80vh;*/
    height: calc(100vh - 108px);
    min-height: 600px;
    margin: 108px 0 0 0;
    position: relative;
    padding: 0;
}
#banner-wrapper .content{
    /*height: 100%;*/
}
#banner-wrapper .banner{
    /*padding: 90px 0 90px;*/   
    padding: 0;
    height: 80vh;
    vertical-align: middle;
    min-height: 600px;
}
#banner-wrapper .banner .one-half{
    height: auto;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
}
#banner-wrapper .banner-text{
    /*margin: 0 80px 0 0;*/
    margin: 0;
    width: 45%;
}
#banner-wrapper .banner-text h1{
    margin: 22px 0 20px;
}
#banner-wrapper .banner-text .subtitle{
    font-size: 18px;
    margin: 0 0 40px;
}
#banner-wrapper .banner-text .phone-btn{
    font-size: 24px;
    line-height: 2;
    padding: 10px 40px;
    display: block;
    max-width: 270px;
    border-radius: 55px;
    text-align: center;
    font-weight: bold;
}
#banner-wrapper .banner-text .phone-btn:hover{
    background-color: #006EAE;
    color: #fff;
}
#banner-wrapper .banner-img{
    margin: 0 auto;
    vertical-align: middle;
}
#banner-wrapper .banner-img .img-wrap{
    
    margin: 0 auto;
    position: relative;
    max-width: 560px;
}
#banner-wrapper .banner-img .img-wrap:before{
    background-image: url('/assets/Group 23.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -20px;
    content: "";
    height: 100%;
    position: absolute;
    right: -20px;
    width: 100%;
}
#banner-wrapper .banner-img img{
    /*max-width: 560px;*/
    margin: 0 auto;
    position: relative;
    z-index: 9;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.visible-mobile{
    display: none;
}

/*Scroll More*/
.scroll-wrapper{
    bottom: 0px;
    color: #006EAE;
    height: 55px;
    position: absolute;
    overflow: hidden;
}
.scroll-box{
    width: 96px;
    height: 96px;
    background-color: #DFEEF5;
    border-radius: 50% 50% 0 0;
    margin: 0 0 -60px;
}
.scroll-icon{
    width: 22px;
    height: 21px;
    margin: 18px auto;
    fill: #006EAE;
}
.scroll-text{
    color: #006EAE;
    font-size: 14px;
    line-height: 1;
    margin: 25px 0 0px 10px;
}
.scroll-wrapper:hover > .scroll-icon{
    fill: #000;
}
.scroll-wrapper:hover ,
.scroll-wrapper:hover .scroll-text{
    color: #000;
}

/*About Us*/
#about-us{
    background-color: #DFEEF5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}
#about-us:before{
    background-image: url('/assets/Mask Group 3.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    bottom: 0px;
    content: "";
    position: absolute;
    /*right: 0;*/
    height: 100%;
    /*width: 64%;*/
    z-index: 1;
    top: 0;
    right: -20%;
    width: 88%;
}
.about-wrapper {
    background-color: #fff;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    z-index: 9;
}
.about-wrapper .about-img{
    margin: 0 30px 0 0;
}
.about-wrapper .about-img img{
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.about-wrapper p{
    font-size: 16px;
    line-height: 2;
    margin: 0;
}


/*Services*/
#services{
    padding: 80px 0;
    overflow: hidden;
}
#services h2{
    text-align: center;
}
.subtitle-page{
    max-width: 1030px;
    margin: 0 auto 40px;
    text-align: center;
}

#extra-services{
    padding: 30px 0 0;
    position: relative;
    display: block;
}
#extra-services:before{
    background-image: url('/assets/Group 86.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    top: -159px;
    content: "";
    position: absolute;
    right: -270px;
    height: 402px;
    width: 100%;
}
#extra-services:after{
    background-image: url('/assets/Group 86.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    bottom: -159px;
    content: "";
    position: absolute;
    left: -282px;
    height: 100%;
    width: 100%;
}
.services-lists{
    margin: 0 auto 70px;
}
.service-box{
    background-color: #DFEEF5;
    border-radius: 20px;
    padding: 30px 30px 20px;
    margin: 20px;
    text-align: center;
    width: 24%;
}
.service-box .icon-box{
    height: 82px;
    margin: 0 auto 10px;
    position: relative;
    width: 88px;
}
.service-box .icon-box:before{
    
    background-image: url('/assets/shape.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    bottom: 0px;
    content: "";
    position: absolute;
    right: 0;
    height: 82px;
    width: 88px;
    zoom: 1;
}
.service-box .icon-box img{
    margin: 0 auto;
    padding: 24px;
    position: relative;
    
}
.service-box .heading-size-5{
    color: #006EAE;
    font-weight: bold;
}

.services-container{
    position: relative;
    height: auto;
    margin: 10px auto 80px;
    max-width: 1360px;
}
.service-item{
    border-bottom: 1px solid #006EAE4F;
    position: relative;
    height: auto;
    z-index: 9;
    width: 100%;
}
.service-item .item-link {
    background-color: #DFEEF5;
    color: #212F45;
    cursor: pointer;
    height: auto;   
    display: block;
    position: relative;
    padding: 30px;
    -webkit-transition:all 0.2s linear;
    -moz-transition:all 0.2s linear;
    transition:all 0.2s linear;
    width: 100%;
}
.service-item .item-link:hover {
	color: #000;
}
.service-item .item-link .heading-size-3{
    color: #212F45;
    align-items: center;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    text-align: left;
}
.service-item .item-link .heading-size-3 .item-icon{
    margin: 0 10px 0 0;
}
.service-item .item-link .icon-plus{
    background: url(/assets/icon-plus.svg);
    background-size: cover;
    display: block;
    height: 30px;
    position: absolute;
    right: 25px;
    top: 30px;
    width: 30px;
}
.service-item .item-link .icon-minus {
    background: url(/assets/icon-minus.svg);
    background-size: cover;
    display: none;
    height: 3px;
    position: absolute;
    right: 25px;
    top: 43px;
    width: 30px;
}
.service-item .item-link.active .icon-minus {
    display: block;
}
.service-item .item-link.active .icon-plus {
    display: none;
}
.service-item .item-content {
    border: 1px solid #006EAE4F;
    border-bottom: none;
    background-color: #fff;
    display: none;
    font-size: 14px;
    padding: 40px 30px 30px;
}
.service-item .item-content .heading-size-5{
    color: #006EAE;
    text-align: left;
    font-weight: bold;
    margin-bottom: 15px;
}
.service-item .item-content p:last-child{
    margin: 0;
}
.service-item .item-content a{
    color: #006EAE;
    font-weight: bold;
}
.service-item .item-content a:hover{
    color: #007FBB;
    text-decoration: underline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 18px;
  width: 100%;
  /*border: 1px solid #ddd;*/
}
th, tr {
    border-bottom: 1px solid #006EAE50;
    text-align: center;
    padding: 20px 0;
}
th.table-head{
    color: #006EAE;
    font-weight: bold;
    padding: 20px 10px;
    text-transform: uppercase;
}
tr:last-child{
    border-bottom: none;
}
td.service-name{
    color: #006EAE;
    text-align: left;
    padding: 20px 0;
}
td{
    padding: 20px;
}


/*Trust*/
#trust-wrapper{
    background-color: #212F45;
    overflow: hidden;
}
.block-columns{
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.block-columns .block-column{
}
.text-col{
    /*max-width: 1040px;*/
    /*padding: 0 80px 0 20px;*/
    
/*    float: right;
    margin: 0 60px 0 auto;
    max-width: 950px;
    padding: 0px 80px 0 50px;
    width: 75%;*/

    float: right;
    margin: 0 60px 0 auto;
    max-width: 950px;
    padding: 0px 80px 0 50px;
    width: 75%;

}
.text-col .content-box{
    color: #fff;
    padding: 50px 0;
}
.text-col .content-box .heading-size-2{
    color: #fff;
    font-weight: bold;
    margin: 0 0 20px;
    text-transform: none;
}
.text-col .content-box .heading-size-3{
    color: #fff;
    text-align: left;
}
.text-col .content-box .heading-size-5{
    color: #fff;
    text-align: left;
}
.text-col .content-box .list-shape{
    margin: 60px 60px 60px 0;
}
.text-col .content-box .list-shape:last-child{
    margin: 60px 0px 60px 0;
}
.our-business-wrapper{
    padding: 0 50px 0 0px;
}
.our-business{
    margin: 0 40px 0 0;
}
.our-business p{
    margin: 0;
}
.our-business img{
    width: 85px;
}
.block-column.image-col {
    position: relative;
    overflow: visible;
    width: 37%;
}
.block-column.image-col .img-wrap{
    margin: 0;
    position: absolute;
    right: 0px;
    top: 0;
    height: auto;
    width: auto;
}
.block-column.image-col .img-wrap img{
    max-width: none; 
    height: 100%;
}


/*Reviews*/
#reviews{
    padding: 60px 0;
}
#reviews .heading-size-2{
    text-align: center;
}
.reviews-list{
    position: relative;
}
.reviews-list .slick-track{
    display: flex;
}
.review-item{
    background-color: #DFEEF5;
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: inherit !important;
    flex-wrap: wrap;
}
.review-item:before{
    background-image: url('/assets/quote-marks.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    left: 20px;
    height: 55px;
    position: absolute;
    top: 20px;
    width: 75px;
}
.review-item .review-name{
    color: #212F45;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 10px;
    position: relative;
    width: 100%;
}
.review-item .stars{
    max-width: 100px;
    margin: 0 auto 40px;
}
.review-item .stars .star{
    margin: 0 5px 0 0;
    width: 15px;
}
.review-item .stars .star svg{
    fill: #006EAE;
}
.review-item .review-text{
    color: #212F45;
    line-height: 1.5;
    margin: 0 0 10px;
}
#reviews-nav{
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.reviews-list .slick-arrow{
    cursor: pointer;
}
.reviews-list .box.nav-prev.slick-arrow{
    background-image: url('/assets/Path 199.svg');
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    top: 45%;
    width: 60px;
    height: 30px;
    left: -50px;
    display: block;
}
.reviews-list .box.nav-prev.slick-arrow .prev{
    background-image: url('/assets/icon-arrow-left.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    width: 37px;
    height: 17px;
    position: absolute;
    top: 5px;
}
.reviews-list .box.nav-prev.slick-arrow .prev:hover{
    filter: invert(0.32) sepia(0.5) saturate(12.8) hue-rotate(180deg) brightness(1);
    fill: #006EAE;
}
.reviews-list .box.nav-next.slick-arrow{
    background-image: url('/assets/Path 200.svg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    top: 45%;
    width: 60px;
    height: 30px;
    right: -50px;
    display: block;
}
.reviews-list .box.nav-next.slick-arrow .next{
    background-image: url('/assets/icon-arrow-right.svg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    width: 37px;
    height: 17px;
    position: absolute;
    top: 7px;
    right: 3px;
}
.reviews-list .box.nav-next.slick-arrow .next:hover{
    filter: invert(0.32) sepia(0.5) saturate(12.8) hue-rotate(180deg) brightness(1);
    fill: #006EAE;
}
.reviews-list .box.nav-prev.slick-arrow:hover,
.reviews-list .box.nav-next.slick-arrow:hover{
    filter: none;
}


/*Before & After*/
#ba-wrapper{
    background-color: #DFEEF5;
    position: relative;
    overflow: hidden;
}
#ba-wrapper:before{
    background-image: url('/assets/MaskGroup5.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    bottom: 0px;
    content: "";
    position: absolute;
    height: 100%;
    z-index: 1;
    right: 0;
    top: 0;
    width: 54%;
    margin-left: 0; 
}


.ba-lists{
    padding: 80px 60px;
    z-index: 9;
    position: relative;
    max-width: 1470px;
    margin: 0 auto;
}
.ba-lists .ba-item{}
.ba-lists .ba-item .before{
    position: relative;
}
.before:before{
    background-image: url('/assets/Path 215.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    position: absolute;
    top: 50%;
    height: 50px;
    width: 60%;
    z-index: 1;
    left: 70%;
}
.ba-lists .ba-item .heading-size-3{
    font-weight: bold;
    margin: 0 0 40px;
}
.ba-lists .ba-item .ba-box{
    background-color: #fff;
    border-radius: 8px;
    max-width: 420px;
    padding: 20px;
    margin: 0 auto;
    z-index: 9;
    position: relative;
}
.ba-lists .ba-item .ba-box img{
    border-radius: 20px;
}
.ba-lists .slick-arrow {
    cursor: pointer;
}
.ba-lists .box.nav-prev.slick-arrow{
    background-image: url('/assets/Path 198.png');
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    top: 50%;
    width: 60px;
    height: 30px;
    left: 0px;
    display: block;
}
.ba-lists .box.nav-prev.slick-arrow .prev{
    background-image: url('/assets/icon-arrow-left.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    width: 37px;
    height: 17px;
    position: absolute;
    top: 5px;
}
.ba-lists .box.nav-prev.slick-arrow .prev:hover{
    filter: invert(0.32) sepia(0.5) saturate(12.8) hue-rotate(180deg) brightness(1);
    fill: #006EAE;
}
.ba-lists .box.nav-next.slick-arrow{
    background-image: url('/assets/Path 200.svg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    top: 50%;
    width: 60px;
    height: 30px;
    right: 0px;
    display: block;
}
.ba-lists .box.nav-next.slick-arrow .next{
    background-image: url('/assets/icon-arrow-right.svg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    width: 37px;
    height: 17px;
    position: absolute;
    top: 7px;
    right: 3px;
}
.ba-lists .box.nav-next.slick-arrow .next:hover{
    filter: invert(0.32) sepia(0.5) saturate(12.8) hue-rotate(180deg) brightness(1);
    fill: #006EAE;
}
.ba-lists .box.nav-prev.slick-arrow:hover,
.ba-lists .box.nav-next.slick-arrow:hover{
    filter: none;
}



/*Footer*/
#footer{
    background-color: #212F45;
    color: #fff;
    font-size: 14px;
    line-height: 2;
    padding: 40px 0 20px;
}
#footer .col{
    margin: 0 30px 0 0;
}
#footer .col.social{
    max-width: 190px;
    margin-right: 0;
    width: auto;
}
#footer .col .heading-size-5{
    color: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
}
#footer .footer-phone{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
}
#footer .email{
    font-size: 14px;
    margin-bottom: 32px;
}
#footer .email a{
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}
#footer .email a:hover,
#footer .menu li a:hover,
#footer .address:hover, #footer .footer-phone:hover{
    color: #dfeef5;
}
#footer .menu{
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .menu li{
    padding: 0 30px 0 0;
}
#footer .menu li:last-child{
    padding: 0;
}
#footer .menu li a{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
}

#footer .address{
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 10px;
    max-width: 200px;
    text-decoration: underline;
    position: relative;
    width: 100%;
}
#footer .address:before{
    background-image: url('/assets/pin.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    content: "";
    position: absolute;
    top: 5px;
    height: 22px;
    width: 21px;
    zoom: 1;
    left: -21px;
}
#footer .footer-info{
    font-style: italic;
    max-width: 440px;
}

#socials-links{
    list-style: none;
    margin: 5px auto 0 0;
    padding: 0;
    width: 185px;
}
#socials-links li{
    margin: 0 30px 0 0;
}
#socials-links li:last-child{
    margin: 0 ;
}
#socials-links li a{
    background-color: #006EAE;
    width: 41px;
    height: 41px;
    padding: 6px 5px;
    display: block;
    border-radius: 50%;
}
#socials-links li a:hover{
    background-color: #fff;
}
#socials-links li a svg{
    fill: #fff;
    margin: 5px auto;
    height: 20px;
}
#socials-links li a:hover svg{
    fill: #006EAE;
}

#copyright-wrapper{
    background-color: #006EAE;
    padding: 15px 0;
    position: relative;
}
#copyright-wrapper:before{
    background-image: url('/assets/Mask Group 7.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    bottom: 0px;
    top: 0;
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 25%;
    zoom: 1;
}
#copyright-wrapper:after{
    background-image: url('/assets/Mask Group 8.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    bottom: 0px;
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: 14%;
    zoom: 1;
}
#copyright-wrapper .content {
    position: relative;
    z-index: 5;
}
#copyright{
    font-size: 15px;
    color: #fff;
}
#copyright p{
    margin: 0;
}

.members-logo{
    
}
.members-logo img{
    margin: 0 0 0 15px;
}
.members-logo img:last-child{
    margin: 0;
}

.footer-bpa{
    color: #fff;
    font-size: 14px;
}
.footer-bpa a{
    color: #fff;
    margin: 0 7px;
}
.footer-bpa a:hover{
    color: #212F45;
}
.footer-bpa a img{
    margin: 0 0 0 7px;
}


@media screen and (max-width:1640px){
    .text-col {
        max-width: 995px;
        padding: 0px 80px 0 20px;
    }
    .block-column.image-col {
        position: relative;
        overflow: visible;
        width: 30%;
    }
    .block-column.image-col .img-wrap{
        height: 100%;
        width: 140%;
    }
 
}
@media screen and (max-width:1380px){
    h1{
    font-size: 88px;
    }
    
    #banner-wrapper {
    height: calc(100vh - 109px);
/*        padding: 50px 0 100px;
        height: 76vh;*/
    }
    #banner-wrapper .banner-img img {
        max-width: 100%;
    }
    .scroll-wrapper{
        bottom: 0px;
    }
    .scroll-box{
        margin: 0 0 10px;
    }
    
    .reviews-slide-list.small-content{
        max-width: 1060px;
    }
    .text-col {
        width: 74%;
        max-width: 952px;
        float: right;
        margin: 0 100px 0 0px;
        padding: 0 20px 0 20px;
    }
    .block-column.image-col {
        position: relative;
        overflow: visible;
        width: 30%;
    }
    .block-column.image-col .img-wrap{
        height: 100%;
        width: 140%;
    }
    .ba-lists .ba-item .one-half.before .ba-box{
        margin: 0 auto 0 0;
    }
    .ba-lists .ba-item .one-half.after .ba-box{
        margin: 0 0 0 auto;
    }
}
@media screen and (max-width:1200px){
    h1 {
        font-size: 74px;
    }
    #banner-wrapper{
/*        height: 68vh;
    min-height: 710px;*/
    /*padding: 50px 0 80px;*/
    }
    #banner-wrapper .banner-text {
    margin: 0 40px 0 0;
}
    .scroll-wrapper {
        bottom: 0px;
    }
    
    
    .reviews-slide-list.small-content{
        padding: 0 30px;
        width: 90%;
    }
    .text-col .content-box .heading-size-2{
        font-size: 40px;
    }
    .our-business-wrapper {
    padding: 0 20px 0 0px;
}
    
    .ba-lists{
        padding: 80px 45px;
    }
    .ba-item-row{
    justify-content: space-between;
    }
    .ba-item-row .one-half {
        width: 45%;
    }
    .before:before{
        left: 96%;
    }
    
    #footer .content{
        flex-wrap: wrap;
    }
    #footer .col.call{
       margin: 0 30px 25px 0;
       width: 45%;
   }
    #footer .col.location{
       margin: 0 0 25px 0;
       width: 45%;
   }
    #footer .col.social{
        margin: 0 0 25px 0;
    }
}
@media screen and (max-width:1024px){
    #logo {
        width: 180px;
    }
    
    #menu-toggle{
        display: block;
    }
    .hidden-mob{
        display: block;
    }
    #menu-toggle .toggle-icon{
        cursor: pointer;
        z-index: 101;
    }
    #menu-toggle .toggle-icon img{
        height: 50px;
        position: relative;
        width: 30px;
        z-index: 99;
    }
    #menu-hide{
        display: none;
    }
    #header-menu{
        display: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        background-color: #AD1D29;
        position: absolute;
        padding-top: 103px;
        height: 100vh;
        top: 0;
        right: 0;
        bottom: 0;
        max-width: 730px;
        width: 100%;
        z-index: 99;
        overflow-x: hidden;
    }
    #header-menu .menu {
        display: block;
    }
    #header-menu .menu li {
        font-size: 30px;
        padding: 0;
        text-align: center;
        margin: 30px 0;
    }
    #header-menu .menu li a {
        color: #ffffff;
        font-weight: bold;
    }
    #header-menu .button.header-phone{
        background-color: #fff;
        border-radius: 55px;
        color: #212F45;
        display: block;
        font-size: 24px;
        font-weight: bold;
        max-width: 250px;
        margin: 100px auto 20px;
        padding: 24px 24px;
        text-align: center;
    }
    #header-menu .button.header-phone:hover{
        color: #006EAE;
    }
    
    h1 {
        font-size: 60px;
    }
    h2, .heading-size-2{
        font-size: 44px;
    }
    h3, .heading-size-3 {
        font-size: 26px;
    }
    .content{
        padding: 0 20px;
    }
    #banner-wrapper,#banner-wrapper .banner  {
        height: 60vh;
        min-height: 580px;
    }
/*    #banner-wrapper .banner {
    padding: 60px 0;
    }*/
    #banner-wrapper .banner-text .phone-btn{
        padding: 10px 26px;
        max-width: 260px;
    }
    .scroll-wrapper {
        /*bottom: 250px;*/
    bottom: 0px;
    }
    
    #about-us, #services{
        padding: 40px 0;
    }
    #about-us:before {
        background-size: 110% 100%;
        background-position: top right;
        right: 0;
        width: 60%;
        margin-left: 40%;
    }
    .about-wrapper{
        padding: 20px;
    }
    
    .services-lists {
        margin: 0 auto 40px;
    }
    .subtitle-page {
        margin: 0 auto 20px;
        width: 90%;
    }
    .service-box{
        padding: 30px 20px 20px;
        margin: 20px 10px;
        max-width: 248px;
    }
    .service-item .item-link .icon-plus {
        height: 20px;
        top: 33px;
        width: 20px;
    }
    .service-item .item-link .icon-minus{
        width: 20px;
    }
    
    
    .text-col {
        width: 90%;
        max-width: 950px;
        margin: 0 50px 0 0px;
        padding: 0 20px 0 20px;
    }
    .list-wrap{
        flex-wrap: wrap;
    }
    .text-col .content-box .list-shape {
        margin: 15px 0 0 0;
        width: 100%;
    }
    .text-col .content-box .list-shape:last-child{
        margin: 0 0 20px 0;
    }
    .our-business-wrapper {
        padding: 0 20px 0 0px;
    }
    .our-business {
        margin: 0 20px 0 0;
    }
    .text-col .content-box .heading-size-3 {
        font-size: 24px;
    }
    
    .ba-lists .ba-item .ba-box{
        padding: 20px;
    }
    
    #footer .menu li {
        padding: 0 25px 0 0;
    }
    #footer .col.call{
        width: 60%;
    }
    #footer .col.location{
        width: 35%;
    }
}

@media (max-width: 920px) { 
	h1 {font-size: 50px;} 
	h2 {font-size: 30px;} 
        
    #copyright-wrapper:before,#copyright-wrapper:after{
        width: 49%;
    }
    #copyright-wrapper .content{
        flex-wrap: wrap;
    }
    #copyright {
        width: 100%;
        margin: 0 auto 20px;
        text-align: center;
        order: 1;
    }
    .members-logo {
        justify-content: center;
        margin: 0 auto;
        order: 3;
    }
    .footer-bpa {
        color: #fff;
        font-size: 14px;
        order: 2;
        width: 100%;
        margin: 0 auto 20px;
        justify-content: center;
    }
} 
@media (max-width: 767px) {
    #header-menu{
        max-width: 100%;
        padding-top: 70px;
    }
    #logo {
        width: 96px;
    }
    .header-phone {
        padding: 5px 20px;
        font-size: 16px;
    }
    
    #banner-wrapper {
        /*height: 84vh;*/
        height: 100%;
        min-height: 100%;
        padding: 0px;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        overflow: hidden;
        margin: 90px 0 0 0;
    }
    #banner-wrapper .banner{
        flex-wrap: wrap;
        padding: 10px 0 25px 0;
        height: auto;
        min-height: auto;
    }
    #banner-wrapper .banner-text {
        margin: 0 auto;
    }
    
    .one-half {
        width: 100%;
    }
    .visible-mobile {
        display: block;
    }
    
    h1 {
        font-size: 40px;
        line-height: 1;
        margin: 0 auto 20px;
    }
    h2, .heading-size-2{
        font-size: 32px;
        margin: 10px auto 20px;
    }
    h3, .heading-size-3, .text-col .content-box .heading-size-3 {
        font-size: 22px;
    }
    
    #banner-wrapper .banner-img.hidden{
        display: none;
    }
    #banner-wrapper .banner-img.visible-mobile {
        display: block;
        margin: 0 auto 30px;
        position: relative;
        max-width: 320px;
        width: 90%;
    }
    #banner-wrapper .banner-img:before{
        bottom: -20px;
        right: -20px;
    }
    #banner-wrapper .banner-text .subtitle {
        margin: 70px 0 0 0;
        line-height: 1.5;
        margin: 0 auto 10px;
        max-width: 280px;
    }
    #banner-wrapper .banner-text .phone-btn{
        margin: 0 auto;
    }
    .scroll-wrapper {
        position: relative;
        margin: 0 auto;
        display: inline-flex;
        bottom: -9px;
    }
    .scroll-box {
    margin: 7px 0 0px;
    width: 80px;
    height: 50px;
    border-radius: 70% 70% 0 0;
}
    

    .about-wrapper{
        width: 98%;
    }
    .about-wrapper .about-img.hidden{
        display: none;
    }
    .about-wrapper .visible-mobile.about-img{
        margin: 0 auto 20px;
    }

    .about-wrapper .about-content h2{
        margin: 15px auto 20px;
        text-align: center;
    }
    .about-wrapper .about-content .about-logo{
        margin: 0 auto;
    }
    
    #services {
        padding: 40px 0 0;
    }
    #services .content{
        padding: 0;
    }
    .services-container {
        margin: 10px auto 50px;
    }
    .services-lists {
        margin: 0 auto 30px;
        flex-wrap: wrap;
    }
    .service-box {
        margin: 20px auto;
        text-align: center;
        width: 45%;
        max-width: 248px;
    }
    
    .table-wrapper{
        overflow-x:auto;
    }
    table{
    font-size: 16px;
    }
    td.service-name{
        font-size: 14px;
    }
    
    .service-item .item-link .heading-size-3{
        align-items: end;
        padding-right: 24px;
        font-size: 20px;
    }
    
    #reviews {
        padding: 40px 0 20px;
    }
    .reviews-slide-list.small-content{
        margin: 0 auto 10px;
        width: 96%;
        padding: 0;
        max-width: 100%;
    }
    .reviews-list .slick-track{
        display: block;
    }
    .review-item{
        padding: 30px;
        display: block !important; 
        height: auto!important;
        margin: 0 auto 10px;
    }
    .review-item .review-text{
        font-size: 16px;
    }
    
    .reviews-list .slick-dots{
        display: flex;
        list-style: none;
        justify-content: center;
        padding: 0;
    }
    .reviews-list .slick-dots li{
        padding: 0 5px;;
    }
    .reviews-list .slick-dots li button{
        border-radius: 50%;
        border: none;
        background-color: #212F45;
        text-indent: -170px;
        text-indent: -9999px;
        width: 10px;
        height: 10px;
        padding: 5px;
    }
    .reviews-list .slick-dots li.slick-active button{
        background-color: #006EAE;
    }
    
    
    .text-col {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    .text-col .content-box{
    padding: 30px 0 40px 0;
    }
    .text-col .content-box .heading-size-2{
        font-size: 32px;
    }
    .text-col .image-col.visible-mobile{
        display: block;
        margin: 0 0 30px;
    }
    .text-col .image-col .img-wrap{}
    .text-col .image-col .img-wrap img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .block-column.image-col.hidden{
        display: none;
    }
    .our-business-wrapper {
        flex-wrap: wrap;
        padding: 0;
    }
    .our-business {
        margin: 15px 0 0 0;
        order: 2;
        width: 100%;
    }
    
    .service-item .item-content{
    padding: 20px 30px 30px;
    }
    
    .ba-lists {
        padding: 40px 45px;
    }
    .ba-item-row {
        flex-wrap: wrap;
    }
    .ba-item-row .one-half {
        width: 100%;
    }
    .ba-item-row .one-half.before{    
        margin: 0 auto 60px;
    }
    .ba-lists .ba-item .ba-box {
        padding: 10px;
        width: 80%;
    }
    .ba-lists .ba-item .one-half.before .ba-box {
        margin: 0 auto 20px;
    }
    .ba-lists .ba-item .one-half.after .ba-box {
        margin: 20px auto 0;
    }
    .ba-lists .ba-item .heading-size-3 {
        font-weight: bold;
        margin: 0 0 10px;
        font-size: 26px;
    }
    
    .before:before {
        background-image: url('/assets/Path 215.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        content: "";
        position: absolute;
        top: 103%;
        height: 36px;
        width: 60px;
        z-index: 1;
        left: 40%;
        transform: rotate(100deg);

    }
    
    #ba-wrapper:before {
        display: none;
    }
    #ba-wrapper:after {
        background-image: url('/assets/MaskGroup5.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: initial;
        bottom: -18%;
        content: "";
        position: absolute;
        height: 79%;
        z-index: 1;
        right: 0;
        top: auto;
        right: 0;
        width: 120%;
        margin-left: 0;
        transform: rotate(90deg);
    }
    .service-item .item-link{
        padding: 30px 20px;
    }
    
    #footer{
        padding: 50px 0;
    }
    #footer .col.call,#footer .col.location, #footer .col.social{
        width: 100%;
        text-align: center;
        margin: 0 auto 45px;
    }
    #footer .col.social{
        margin: 0 auto 10px;
        max-width: 115px;
    }
    #socials-links {
        width: 120px;
    }
    #footer .col .heading-size-5{
        text-align: center;
    }
    #footer .menu {
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }
    #footer .address{
    margin: 0 auto 10px;
    }
    #footer .footer-info{
        margin: 0 auto;
    }
    
} 
@media (max-width: 600px){
    
    .scroll-wrapper{
        display: none;
    }
}
@media (max-width: 480px) { 
    #logo {
        width: 85px;
    }
    .header-phone {
        padding: 5px 10px;
    }
    #banner-wrapper {
        /*height: 87vh;*/
        height: 100%;
        text-align: center;
        margin: 90px 0 0 0;
    }
    #banner-wrapper .banner-img.visible-mobile{
        max-width: 260px;
    }
    
    
    .text-col .content-box .heading-size-2 {
        font-size: 30px;
    }
    
    .service-box{
        width: 45%;
        padding: 30px 20px 20px;
        margin: 10px auto;
    }
    h5, .heading-size-5{
        font-size: 14px;
    }
    #ba-wrapper:after {
        background-size: contain;
        background-position: initial;
        bottom: -35%;
        height: 90%;
        width: 150%;
    }
    
    #reviews .heading-size-2 {
    font-size: 26px;
    }
    .review-item:before{
        height: 40px;
    }
    
    #footer .menu{
        flex-wrap: wrap;
    }
    #footer .menu li {
        padding: 5px 20px;
        width: 100%;
    }
}
@media (max-width: 400px){
    #header {
        background-color: #F4F9FC;
        padding: 10px 0;
    }
    #banner-wrapper .banner-img.visible-mobile {
        max-width: 185px;
    }
    #banner-wrapper .banner-text .subtitle{
        font-size: 16px;
    }
    #banner-wrapper .banner-text .phone-btn {
        padding: 5px 20px;
        max-width: 200px;
        font-size: 16px;
        margin: 0 auto 12px;
    }
    #banner-wrapper {
        /*height: 88vh;*/
        height: 100%;
        text-align: center;
        margin: 70px 0 0 0;
    }
    
    h1 {
        font-size: 36px;
        line-height: 1;
    }
    .first{
        flex-wrap: wrap;
    }
    .first .list-blue-check {
        width: 100%;
    }
    .first .list-blue-check:first-child{
        margin: 0;
    }
    .first .list-blue-check:first-child li:last-child{
        margin: 10px 0 0 0;
    }
}
@media (max-width: 380px){
    #banner-wrapper {
        height: 100%;
    }
}
/*
     FILE ARCHIVED ON 16:16:49 Mar 29, 2023 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 18:42:16 Sep 17, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.905
  exclusion.robots: 0.049
  exclusion.robots.policy: 0.028
  esindex: 0.019
  cdx.remote: 278.058
  LoadShardBlock: 996.785 (3)
  PetaboxLoader3.datanode: 667.499 (5)
  PetaboxLoader3.resolve: 496.747 (2)
  load_resource: 655.838
  loaddict: 310.831
*/