@charset "utf-8";
/* CSS Document */
body{ 
  width:100%;
  padding:0; 
  margin:0; 
  background:#fff; 
  overflow-x:hidden;
  color:#fff; 
  font-family: 'Poppins', sans-serif;
}

a{ 
  display:inline-block;
  text-decoration:none;
  padding:0; 
  margin:0; 
  transition:all 500ms ease-in-out;
}

a:focus, a:hover{ 
  outline:none; 
  text-decoration:none; 
}

h1, h2, h3, h4, h5, h6{
  margin:0;
  padding:0;
}

ul,li{ 
  padding:0; 
  margin:0; 
  list-style:none; 
}

button:focus{
  outline:none;
}

img{
  max-width:100%;
  height:auto;
}

/* ===== common css ====== */
.btn1{
  font-size:16px;
  color:#030303;
  line-height:18px;
  font-weight:500;
  letter-spacing:.02em;
  background:#fed222;
  border-radius:30px;
  padding:14px 25px;
}

.btn1:hover{
  background:#3298af;
  color:#fff;
}

.btn2{
  font-size:16px;
  color:#fff;
  line-height:18px;
  font-weight:500;
  letter-spacing:.02em;
  background:#3298af;
  border-radius:30px;
  padding:14px 25px;
}

.btn2:hover{
  background:#fed222;
  color:#030303;
}

.common_paragraph{
  font-size:16px;
  color:#040404;
  line-height:26px;
  letter-spacing:.03em;
  margin-bottom:20px;
}
/* ==== extra style css ==== */
  /*custom margin*/
  .mx-xl{
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
   /*img styling*/
.radious-img{
  border-radius: 10px 10px 10px 10px;
  /*border: 3px solid #1D4ED8;*/
}
   /* box colors*/
.bg-lightblue{
  background-color: #2A92AB !important; 
}
.bg-deepblue{
  background-color: #095C86 !important; 
}
.bg-yellow{
  background-color: #FED222 !important; 
}
   /* box properties*/
.img-box{
  border-radius:20px;
  min-height: 600px;
  background-color: #2A92AB;
}
.img-box img{
  border-radius: 20px 20px 0px 0px;  
}
   /* box sizes*/
.box-xl{
  min-height: 900px !important;
}
.box-lg{
  min-height: 700px !important;
}
.box-md{
  min-height: 660px !important;
}
.box-md-sm{
  min-height: 535px !important;
}
.box-sm{
  min-height: 400px !important;
}
  /* badge feature button*/
.badge-btn{
  background:#095C86; 
  color:#fff; 
  font-size:14px;
}
.badge-btn-alt{
  background:#2A92AB; 
  color:#000000; 
  font-size:14px;
}

  /* floating effect*/
  .float-btn {      
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }
  .float-btn:hover {
      transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  }
  .float-btn:active {
      transform: translateY(-1px);
  }
  /* sink-button effect*/
  .sink-btn {      
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }
    .sink-btn:hover {
      transform: translateY(4px);
      box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    }

  /*..
  *..custom table design..*
  ..*/  
  .why-us-table th,
  .why-us-table td {
    padding: 1rem;
    vertical-align: middle;
  }
  /*..
  *..inner page accordian design..*
  ..*/
  .custom-accordian .accordion-item .accordion-button{
       color: #fff !important;
       background-color: #095C86 !important;
  }
  .custom-accordian .accordion-item .accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: #2A92AB !important;    
  }
  .custom-accordian .accordion-item .accordion-button:focus{
       box-shadow: none !important;
  }
			/* accirdian button filter effect*/
  .custom-accordian .accordion-item .accordion-button::after{
       filter:invert(100%) sepia(0%) saturate(1%) hue-rotate(306deg) brightness(200%) contrast(101%) !important;
  }

/* ===== Header Starts ====== */
.navbar-default{ 
  background:none; 
  border:none;
  margin:0; 
  padding:0;
  transition:all 500ms ease-in-out; 
}

.navbar-default:before,
.navbar-default:after{
  content:"";
  position:absolute;
  width:25%;
  height:44px;
  background:#095c86;
  left:0;
  top:0;
  z-index:-1;
  transition:all 500ms ease-in-out;
}

.navbar-default:after{
  left:auto;
  right:0;
}

.navbar-default .container{
  position:relative;
}

.head_logo{
  position:absolute;
  width:135px;
  left:0;
  top:0;
  background:#fff;
  border-radius:0 0 150px 150px;
  padding:15px 15px 25px;
  z-index:999;
  transition:all 500ms ease-in-out;
}

.head_top{
  background:#095c86;
  padding:10px 0;
  transition:all 500ms ease-in-out;
}

.head_top ul li{
  display:inline-block;
  font-size:15px;
  color:#fff;
  line-height:20px;
  font-weight:500;
  letter-spacing:.02em;
  border-right:1px solid #fff;
  margin-right:10px;
  padding-right:10px;
}

.head_top ul li:last-child{
  border-right:none;
  margin-right:0;
  padding-right:0;
}

.head_bottom{
  padding:25px 0;
  transition:all 500ms ease-in-out;
}

@media screen and (min-width:992px){
  .navbar-default.navbar-fixed{
    background:#095c86;
    box-shadow:0 4px 6px rgba(0,0,0,.15);
  }

  .navbar-default.navbar-fixed:before,
  .navbar-default.navbar-fixed:after{
    top:-44px;
  }

  .navbar-default.navbar-fixed .head_top{
    margin-top:-44px;
  }

  .navbar-default.navbar-fixed .head_bottom{
    padding:20px 0;
  }

  .navbar-default.navbar-fixed .head_logo{
    width:100px;
    box-shadow:0px 6px 8px 0px rgba(0,0,0,.2);
  }

}

.home_banner{
  margin-top:44px;
}

.home_banner:before,
.page .entry-header:before,
.error404 .page-header:before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to right, rgba(9,92,134) 15%, rgba(9,92,134,.0) 100%);
  left:0;
  top:0;
}

.banner_desc{
  left:0;
  bottom:25%;
}

.banner_content{
  width:550px;
  max-width:100%;
}

.banner_bg_heading{
  font-size:52px;
  line-height:60px;
  letter-spacing:.03em;
  margin-bottom:20px;
}

.choose_panel{
  margin-top:-80px;
}

.choose_box{
  background:#76dbf2;
  padding:25px;
}

.choose_panel .col-lg-4:nth-child(2) .choose_box{
  background:#2a94ac;
}

.choose_icon{
  display:inline-block;
  width:65px;
  height:65px;
  line-height:65px;
  background:#fff;
  border-radius:50%;
  text-align:center;
}

.choose_cont{
  display:inline-block;
  width:78%;
  vertical-align:top;
  padding-left:15px;
}

.choose_title{
  font-size:22px;
  color:#030303;
  line-height:28px;
  font-weight:600;
  letter-spacing:.02em;
  margin-bottom:15px;
}

.choose_panel .col-lg-4:nth-child(2) .choose_title,
.choose_panel .col-lg-4:nth-child(2) .common_paragraph{
  color:#fff;
}

.about_panel{
  padding:65px 0;
}

.about_sm_heading,
.serv_sm_heading,
.form_sm_heading,
.test_sm_heading,
.faq_sm_heading,
.blog_sm_heading{
  font-size:22px;
  color:#095c85;
  line-height:24px;
  letter-spacing:.05em;
  margin-bottom:10px;
}

.about_bg_heading,
.serv_bg_heading,
.form_bg_heading,
.test_bg_heading,
.faq_bg_heading,
.blog_bg_heading{
  font-size:48px;
  color:#1f1f1f;
  line-height:56px;
  letter-spacing:.03em;
  margin-bottom:25px;
}

.about_content .bottom_sec .box{
  background:#76dbf2;
  border-radius:12px;
  padding:20px;
}

.about_content .bottom_sec .box:last-child{
  background:#2a94ac;
}

.count_main{
  font-size:32px;
  color:#020202;
  line-height:24px;
  font-weight:600;
  margin-bottom:12px;
}

.about_image{
  height:100%;
  background:url(../images/about-hand-img01.png) no-repeat center bottom;
  background-size:100%;
  padding:0 50px 140px;
}

.about_image img{
  border-radius:50%;
}

.serv_panel,
.h_form_panel,
.test_panel,
.faq_panel,
.blog_panel{
  padding-bottom:65px;
}

.serv_panel .top_panel,
.test_panel .top_panel,
.faq_panel .upper_sec,
.blog_panel .upper_sec{
  margin-bottom:35px;
}

.serv_image img.big{
  border:3px solid transparent;
  border-radius:20px 20px 220px 220px;
}

.serv_box:hover .serv_image img.big{
  border-color:#095c86;
}

.serv_icon{
  position:absolute;
  width:60px;
  height:60px;
  line-height:60px;
  background:#76dbf2;
  border-radius:50%;
  left:0;
  right:0;
  bottom:-25px;
  margin:0 auto;
}

.serv_box:hover .serv_icon{
  background:#095c86;
}

.serv_box:hover .serv_icon img{
  filter:invert(0) sepia(5%) saturate(6449%) hue-rotate(162deg) brightness(200%) contrast(92%);
}

.serv_title{
  margin-top:40px;
}

.serv_title a{
  display:block;
  font-size:18px;
  color:#fff;
  line-height:25px;
  font-weight:500;
  letter-spacing:.02em;
  background:#2a94ac;
  border-radius:10px;
  padding:12px 15px;
}

.serv_box:hover .serv_title a{
  background:#095c86;
}

.h_form_box{
  border-radius:20px;
  padding:30px;
}

.f_contact_box .block .icon{
  display:inline-block;
}

.f_contact_box .block .content{
  display:inline-block;
  vertical-align:top;
  padding-left:10px;
}

.f_contact_title{
  font-size:15px;
  color:#040404;
  line-height:18px;
  letter-spacing:.04em;
  margin-bottom:5px;
}

.f_contact_box .block .content a{
  font-size:16px;
  color:#040404;
  line-height:18px;
  font-weight:500;
  letter-spacing:.02em;
}

.f_contact_box .block .content a:hover{
  color:#349aaf;
}

.home_map iframe{
  width:100%;
  height:290px;
  border-radius:20px;
  margin-bottom:0;
}

.sp-testimonial-free{
  background:#fff !important;
  box-shadow:0 4px 6px rgba(0,0,0,.15) !important;
  border-radius:15px !important;
  margin:6px;
  padding:25px;
}

.sp-testimonial-free:hover{
  background:#095c86 !important;
}

.sp-testimonial-content p{
  color:#030303;
  letter-spacing:.03em !important;
}

.sp-testimonial-free:hover .sp-testimonial-content p,
.sp-testimonial-free:hover .sp-testimonial-client-name{
  color:#fff !important;
}

.sp-testimonial-client-name{
  font-size:26px !important;
  color:#095c85 !important;
  line-height:28px !important;
  font-weight:600 !important;
  font-style:italic !important;
}

.accordion-item{
  border:1px solid #2a94ac !important;
  margin-bottom:10px;
}

.accordion-item:last-child{
  margin-bottom:0;
}

.accordion-button{
  font-size:20px;
  color:#fff;
  line-height:28px;
  font-weight:500;
  letter-spacing:.03em;
  text-transform:inherit;
  background:#2a94ac;
  padding:14px 20px;
}

.accordion-button:focus{
  box-shadow:none;
}

.accordion-button[aria-expanded="true"],
.accordion-button:hover{
  background:#095c86;
  color:#fff;
}

.accordion-button:after{
  filter:invert(100%) sepia(0%) saturate(1%) hue-rotate(306deg) brightness(200%) contrast(101%);
}

.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button{
  border-top-left-radius:0;
  border-top-right-radius:0;
}

.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button.collapsed{
  border-bottom-right-radius:0;
  border-bottom-left-radius:0;
}

.blog_box{
  background:#2a94ac;
  border:1px solid #fff;
  border-radius:20px;
  overflow:hidden;
}

.blog_box:hover{
  background:#095c86;
  border-color:#095c86;
}

.blog_cont{
  padding:12px 20px;
}

.blog_title{
  font-size:18px;
  line-height:25px;
  font-weight:600;
  letter-spacing:.03em;
}

#footer{
  background:#095c86;
  padding:50px 0 30px;
}

.footer_top{
  margin-bottom:40px;
}

.ft_abn_title{
  font-size:25px;
  line-height:28px;
  font-weight:700;
  letter-spacing:.02em;
}

.ft_abn_title span{
  color:#fed222;
}

.footer_mid{
  border-bottom:1px solid #fff;
  margin-bottom:30px;
  padding-bottom:30px;
}

.footer_title{
  font-size:26px;
  color:#fed222;
  line-height:28px;
  font-weight:700;
  letter-spacing:.03em;
  margin-bottom:20px;
}

.footer_link li{
  display:inline-block;
  width:49%;
  line-height:0;
  vertical-align:top;
  margin-bottom:10px;
}

.footer_link li a,
.ft_contact_main{
  font-size:16px;
  color:#fff;
  line-height:18px;
  letter-spacing:.02em;
}

.footer_link li a:hover,
.ft_contact_main a:hover{
  color:#fed222;
}

.ft_contact .section{
  margin-bottom:15px;
}

.ft_contact .section:last-child{
  margin-bottom:0;
}

.ft_contact_title{
  font-size:18px;
  line-height:20px;
  font-weight:500;
  letter-spacing:.03em;
  margin-bottom:8px;
}

.ft_contact_main a{
  color:#fff;
}

.footer_bottom .common_paragraph span,
.footer_bottom .common_paragraph a{
  color:#fed222;
  font-weight:600;
}

.footer_bottom .common_paragraph a{
  color:#fff;
}

#back-button {
  display:inline-block;
  background-color:#fed222;
  width:50px;
  height:50px;
  line-height:50px;
  text-align:center;
  border-radius:15px;
  position:fixed;
  bottom:25px;
  right:25px;
  opacity:0;
  visibility:hidden;
  z-index:1000;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.4);
}

#back-button.show {
  opacity:1;
  visibility:visible;
}

.page .entry-header,
.error404 .page-header{
  background:url(../images/banner-img01.jpg) no-repeat center center;
  background-size:cover;
  margin-top:44px !important;
  padding:220px 0 110px !important;
  position:relative;
}

.page .entry-header .entry-title,
.error404 .page-header .page-title{
  font-size:52px;
  color:#fff;
  line-height:58px;
  font-weight:700;
  letter-spacing:.02em;
  position:relative;
}

.inner_cont_sec .section .icon{
  width:75px;
  height:75px;
  background:#3298af;
  line-height:75px;
  border-radius:15px;
  text-align:center;
}

.inner_cont_sec .section .text{
  width: 75%;
}

.contact-title{
  font-size:24px;
  color:#030303;
  line-height:30px;
  font-weight:600;
  letter-spacing:.03em;
}

.contact-main{
  font-size:16px;
  color:#020202;
  line-height:22px;
}

.contact-main a{
  color:#020202;
  font-weight:500;
}

.contact-main a:hover{
  color:#095c86;
}

.inner_cont_sec .form_block{
  background:#a38153;
  border-radius:20px;
}

.contact_form .block{
  margin-bottom:15px;
}

.contact_form .block p{
  margin-bottom:0;
}

.contact_form .block label{
  font-size:16px;
  color:#010101;
  line-height:18px;
  font-weight:500;
  margin-bottom:10px;
}

.contact_form .block .form-control{
  height:50px;
  border-radius:0;
  border:none;
  border-bottom:1px solid #040404;
  background:none;
  font-size:16px;
  color:#040404;
  line-height:20px;
  letter-spacing:.02em;
  padding:10px 0;
}

.contact_form .block .form-control::placeholder{
  color:#040404;
  opacity:1;
}

.contact_form .block .form-control::-ms-input-placeholder{
  color:#040404;
}

.contact_form .block .form-control:focus,
.contact_form .block .btn:focus{
  box-shadow:none;
}

.contact_form .block textarea.form-control{
  height:130px;
  resize:none;
}

.contact_form .block select{
  background:url(../images/down-arrow02.png) no-repeat right center !important;
}

.contact_form .block select option{
  color:#000;
}

.contact_form .block .wpcf7-list-item{
  display:block;
  margin-left:0;
}

.contact_form .block .btn{
  font-size:18px;
  color:#030303;
  line-height:20px;
  font-weight:500;
  letter-spacing:.03em;
  text-transform:inherit;
  background:#fed222;
  border-radius:30px;
  text-align:center;
  padding:15px 25px;
}

.contact_form .block .btn:hover{
  background:#3298af;
  color:#fff;
}

.contact_form .block .wpcf7-spinner,
.van_booking_form .wpcf7-spinner{
  display:none;
}

.contact_form .block .wpcf7-not-valid-tip{
  font-size:14px;
  margin-top:5px;
}

.contact_form .wpcf7-response-output{
  font-size:14px;
  color:#010101;
  border:none !important;
  margin:0 !important;
  padding:0 !important;
}

.contact_map{
  line-height:0;
}

.contact_map iframe{
  width:100%;
  height:420px;
  margin-bottom:0;
}

.inner_bg_title{
  font-size:48px;
  color:#030303;
  line-height:56px;
  font-weight:700;
  letter-spacing:.02em;
}

.inner_bg_title strong,
.cta_bg_title strong{
  color:#3399af;
}

.inner_sm_title{
  font-size:28px;
  color:#020202;
  line-height:36px;
  font-weight:700;
  letter-spacing:.03em;
}

.inner_list li{
  font-size:16px;
  color:#050505;
  line-height:26px;
  font-weight:500;
  letter-spacing:.03em;
  background:url(../images/tick-icon001.png) no-repeat left 5px;
  margin-bottom:10px;
  padding-left:28px;
}

.inner_list li:last-child{
  margin-bottom:0;
}

.sec_bg_color{
  background:#f5f5f5;
}

.cta_bg_title{
  font-size:46px;
  color:#030303;
  line-height:54px;
  font-weight:700;
  letter-spacing:.02em;
}

.cta_bg_title:after{
  content:"";
  position:absolute;
  width:61px;
  height:2px;
  background:#095c86;
  left:0;
  right:0;
  bottom:0;
  margin:0 auto;
}

.cta-btn{
  left:0;
  bottom:0;
  z-index:999;
}

.cta-btn li a{
  display:block;
  font-size:15px;
  color:#020202;
  line-height:17px;
  text-transform:uppercase;
  letter-spacing:.02em;
  background:#fed222;
  padding:15px 20px;
}

.cta-btn li:last-child a{
  background:#3298af;
  color:#fff;
}

.search-icon-path{
	fill:#fff !important;
}

@media screen and (max-width:1366px){
  .sp-testimonial-free{
    min-height:340px;
  }


}

@media screen and (max-width:991px){
  .navbar-default{
    background:#fff;
    box-shadow:0 4px 6px rgba(0,0,0,.15);
    padding:10px 0;
  }

  .navbar-default:before, 
  .navbar-default:after{
    display:none;
  }

  .head_logo{
    position:inherit;
    width:70px;
    background:none;
    border-radius:0;
    padding:0;
  }

  .home_banner{
    margin-top:105px;
  }

  #footer{
    padding-bottom:72px;
  }

  #back-button{
    right:20px;
    bottom:35px;
  }

  .page .entry-header, 
  .error404 .page-header{
    margin-top:105px !important;
    padding:120px 0 100px !important;
  }

  
}

@media screen and (max-width:767px){
  .banner_desc{
    bottom:15%;
  }

  .banner_bg_heading,
  .page .entry-header .entry-title, 
  .error404 .page-header .page-title{
    font-size:30px;
    line-height:38px;
    margin-bottom:12px;
  }

  .common_paragraph{
    font-size:14px;
    line-height:22px;
  }

  .btn1,
  .btn2,
  .contact_form .block .btn{
    font-size:14px;
    line-height:16px;
    padding:12px 20px;
  }

  .choose_panel{
    margin-top:35px;
  }

  .choose_box{
    padding:20px;
  }

  .choose_title,
  .about_sm_heading, 
  .serv_sm_heading, 
  .form_sm_heading, 
  .test_sm_heading, 
  .faq_sm_heading, 
  .blog_sm_heading{
    font-size:20px;
    line-height:26px;
  }

  .about_panel{
    padding:35px 0;
  }

  .about_bg_heading, 
  .serv_bg_heading, 
  .form_bg_heading, 
  .test_bg_heading, 
  .faq_bg_heading, 
  .blog_bg_heading,
  .inner_bg_title,
  .cta_bg_title{
    font-size:28px;
    line-height:36px;
    margin-bottom:18px;
  }

  .count_main{
    font-size:26px;
    line-height:28px;
  }

  .serv_panel, 
  .h_form_panel, 
  .test_panel, 
  .faq_panel, 
  .blog_panel{
    padding-bottom:35px;
  }

  .h_form_box{
    padding:22px;
  }

  .contact_form .block .form-control{
    height:45px;
    font-size:14px;
  }

  .contact_form .block textarea.form-control{
    height:90px;
  }

  .home_map iframe{
    height:220px;
  }

  .sp-testimonial-free{
    min-height:auto;
    padding:20px;
  }

  .sp-testimonial-content p{
    font-size:14px !important;
    line-height:22px !important;
  }

  .sp-testimonial-client-name{
    font-size:22px !important;
    line-height:24px !important;
  }

  .accordion-button{
    font-size:17px;
    line-height:25px;
  }

  #footer{
    padding-top:35px;
  }

  .footer_top{
    margin-bottom:25px;
  }

  .footer_logo img{
    width:100px;
  }

  .ft_abn_title{
    font-size:20px;
    line-height:25px;
  }

  .footer_title{
    font-size:22px;
    line-height:24px;
    margin-bottom:16px;
  }

  .footer_link li a, 
  .ft_contact_main{
    font-size:14px;
  }

  .ft_contact_title{
    font-size:16px;
    line-height:18px;
  }

  .page .entry-header, 
  .error404 .page-header{
    padding:80px 0 70px !important;
  }

  .page .entry-header .entry-title, 
  .error404 .page-header .page-title{
    margin-bottom:0;
  }

  .thankyou_section img,
  .error404 .page-content img{
    width:200px;
  }
	
	.inner_cont_sec .section .icon{
		width:62px;
		height:62px;
		line-height:62px;
	}
	
	.contact-title{
		font-size:20px;
		line-height:22px;
	}
	
	.contact-main{
		font-size:15px;
		word-break:break-all;
	}
	
	.inner_sm_title{
		font-size:22px;
		line-height:28px;
	}
	
	.inner_list li{
		font-size:14px;
		line-height:22px;
	}


  
}

@media screen and (max-width:575px){
  .home_banner img.big{
    height:270px;
    object-fit:cover;
  }

  .banner_desc{
    bottom:7%;
  }

  .choose_cont{
    width:75%;
  }

  .f_contact_box .block{
    margin-bottom:15px;
  }

  .f_contact_box .block:last-child{
    margin-bottom:0;
  }

  .footer_link li{
    display:block;
    width:100%;
  }

  
}
