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;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
table {
  border-collapse: collapse;
}

caption {
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}
/*fonts*/
#wrapper{
  min-width: 100%;
  min-height: 100%;
}
.container{
  width: 1370px;
  padding: 0 15px;
  margin: 0 auto;
}
img{
  display: block;
  max-width: 100%;
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
}
a:hover,
a:focus{
  outline: none;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
button{
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
body{
  font-family: "Arial";
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 20px 0;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
header.sticky {
  background: #fff;
  -webkit-box-shadow: 0 5px 16px rgb(0 0 0 / 10%);
          box-shadow: 0 5px 16px rgb(0 0 0 / 10%);
}
.header_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav ul li{
  margin: 0 0 0 100px;
}
nav ul li a{
  color: #000;
  text-transform: capitalize;
}
nav ul li a.active,
nav ul li a:hover{
  color:#0d4c90;
}
h1{
  font-size: 54px;
  line-height: 60px;
  font-weight: bold;
}
h2{
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}
h2 span{
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
  display: block;
  font-weight: 400;
  color: #0bb7c8;
}
h3{
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}
.banner{
  background:url(../images/banner_shape.png) no-repeat right bottom;
  background-size: 64% 100%;
}
.banner_cnt{
  height: 880px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  margin-bottom: 10px;
}
.banner_lft{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 525px;
          flex: 0 0 525px;
  max-width: 525px;
}
.banner h1{
  margin-bottom: 20px;
}
.banner p{
  font-size: 18px;
  color: #0074bb;
}
.banner_img{
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: -10px;
}

.aboutus_wrapper{
  padding: 95px 0;
}
.absw_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.abi_blk{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 0 45px;
}
.ab_img{
  height: 666px;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  position: relative;
  -webkit-clip-path: polygon(100% 0, 40% 50%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 40% 50%, 100% 100%, 0 100%, 0 0);
}
.ab_img:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0bb7c8) , to(#105d9c));
  background: -o-linear-gradient(top, #0bb7c8 , #105d9c);
  background: linear-gradient(to bottom, #0bb7c8 , #105d9c);
  opacity: 0.3;
}
.ab_img img{
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ab_cnt{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0 0 65px;
}
.ab_cnt p + p{
  margin-top: 30px;
}
.services_Wrapper{
  background:#cef1f4;
  padding: 80px 0;
}
.services_Wrapper h2 span{
  color: #000;
}
.services_list{
  margin-top: 40px;
}
.services_ctg {
  margin-top: 30px;
}
.service_card{
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service_img{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 210px;
  overflow: hidden;
}
.service_img img{
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services_cnt{
  height: 100%;
  border:1px solid #9fd4d9;
  border-top:0;
  padding: 60px 30px 90px 30px;
  position: relative;
  overflow: hidden;
}
.services_cnt h3{
  margin-bottom: 20px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.services_cnt p{
  font-weight: 300;
  margin-bottom: 30px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.services_cnt a{
  float: right;
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0bb7c8;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.services_cnt::before{
  content: '';
  width: 56px;
  height: 4px;
  background:#0bb7c8;
  position: absolute;
  top: 30px;
  left: 30px;
}
.services_cnt a img{
  width: 20px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(272deg) brightness(104%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(272deg) brightness(104%) contrast(101%);
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.service_card:hover {
  background:#0074bb;
}
.service_card:hover .services_cnt h3,
.service_card:hover .services_cnt p{
  color: #fff;
}
.service_card:hover .services_cnt a{
  background:#fff;

}
.service_card:hover .services_cnt a img{
  -webkit-filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(1097%) hue-rotate(177deg) brightness(104%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(1097%) hue-rotate(177deg) brightness(104%) contrast(102%);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.services_list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.services_ctg{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 30px);
          flex: 0 0 calc(100% / 3 - 30px);
  max-width: calc(100% / 3 - 30px);
  margin: 30px 15px 0;
}
.our_stats{
  padding: 50px 0 0;
}
.our_stats ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}
.our_stats ul li{
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3 - 30px);
          flex: 0 0 calc(100% / 3 - 30px);
  max-width: calc(100% / 3 - 30px);
  margin: 0 15px;
  text-align: center;
  color: #144fa1;
}
.our_stats ul li span{
  font-size: 50px;
  line-height: 1;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.our_stats ul li p{
  font-size: 18px;
  text-transform: capitalize;
}
.whyChooseUs{
  padding: 110px 0;
}
.wcu_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
.wcu_cnt{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
.wcu_img{
  width: 100%;
  padding-left: 20px;
}
.wcu_img img{
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.wcu_cnt ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  border-top: 1px solid #ced2d7;
}
.wcu_cnt ul li:first-child{
  border-top: none;
  padding-top: 0;
}
.wcu_icon{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65px;
          flex: 0 0 65px;
  max-width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #fff;
  border:1px solid #ced2d7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.wcu_icon img{
  width: 35px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.wcu_info{
  width: 100%;
  padding-left: 20px;
}
.wcu_info h3{
  margin-bottom: 10px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.wcu_info p{
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.wcu_cnt ul li:hover .wcu_icon{
  border-color: #0074bb;
}
.wcu_cnt ul li:hover .wcu_icon img{
  -webkit-filter: brightness(0) saturate(100%) invert(37%) sepia(59%) saturate(1528%) hue-rotate(174deg) brightness(82%) contrast(108%);
          filter: brightness(0) saturate(100%) invert(37%) sepia(59%) saturate(1528%) hue-rotate(174deg) brightness(82%) contrast(108%);
}
.wcu_cnt ul li:hover .wcu_info h3{
  color: #0074bb;
}
.wcu_cnt ul li:hover .wcu_info p{
  color: #000;
}
footer{
  background: -o-linear-gradient(125deg, #0bb7c8 , #105d9c);
  background: linear-gradient(-35deg, #0bb7c8 , #105d9c);
  padding: 80px 0 60px;
}
.footer_in{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.foooter_form{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 670px;
          flex: 0 0 670px;
  max-width: 670px;
}
.foooter_lft{
  max-width: 457px;
  color: #fff;
}
footer .logo {
  margin-bottom: 30px;
  display: inline-block;
}
footer .logo img{
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7433%) hue-rotate(296deg) brightness(96%) contrast(99%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7433%) hue-rotate(296deg) brightness(96%) contrast(99%);
}
.foooter_lft p{
  font-weight: 300;
  margin-bottom: 40px;
}
.foooter_lft b{
  font-weight: 600;
}
footer address p span{
  font-weight: 500;
}
footer address strong{
  font-weight: bold;
  display: block;
  margin-bottom: 25px;
}
footer address ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer address ul li{
  margin-right: 50px;
}
footer address ul li a{
  color: #fff;
}
/*.foooter_form{
  padding-top: 90px;
}*/
.foooter_form h2{
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.form_control {
  width: 100%;
  display: block;
  border-radius: 8px;
  height: 50px;
  padding: 0 30px;
  font-family: 'Arial';
  font-family: "Inter", sans-serif;
  line-height: 50px;
  font-weight: 600;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  border:1px solid #fff;
  background-color: #fff;
  color: #0698c2;
}
.input_group .form_control:focus, .form_control:focus {
  outline: none;
}
.input_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  border:none !important;
  background-color: #fff;
}
.input_group .form_control{
  border-radius: 0 8px 8px 0;
}
.input_group span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  max-width: 60px;
  border-right: 1px solid #d7d7d7;
  display: block;
  text-align: center;
  color: #0698c2;
  font-size: 14px;
  font-weight: 600;
}
label.error{
  display: none !important;
}
.form_control.error{
  border-color: red !important;
  color: red;
}
.form_control.error::-webkit-input-placeholder{
  color: red;
}
.form_control.error::-moz-placeholder{
  color: red;
}
.form_control.error:-ms-input-placeholder{
  color: red;
}
.form_control.error::-ms-input-placeholder{
  color: red;
}
.form_control.error::placeholder{
  color: red;
}
.form_row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
.form_group{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  margin-bottom: 20px;
}
.form_group.w_50{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  max-width: 48%;
}
textarea.form_control{
  height: 130px;
  padding: 20px 30px;
  line-height: 24px;
  resize: none;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #0698c2;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #0698c2;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #0698c2;
}
:-moz-placeholder { /* Firefox 18- */
  color: #0698c2;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type=number]{
    -moz-appearance: textfield;
}
select{
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../images/chevron-down.png) no-repeat right 30px center;
}
select:focus{
  background: #fff url(../images/chevron-up.png) no-repeat right 30px center;
}
.btn{
  width: 210px;
  float: right;
  background: -o-linear-gradient(55deg, #004089 , #006cb1);
  background: linear-gradient(35deg, #004089 , #006cb1);
  color: #fff;
  cursor: pointer;
  border:none !important;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out
}
.btn:hover{
  -webkit-box-shadow: 0 0 10px #004089;
          box-shadow: 0 0 10px #004089;
}

#scrollUp{
  position: fixed;
  bottom: 40px;
  right:40px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  background:#fff;
  border-radius: 50%;
  width: 74px;
  height:74px;
}
#scrollUp img{
  width: 100%;
  height:100%;
}
#scrollUp.show{
  visibility: visible;
  opacity: 1;
}
.menu_toggle{
  display: none;
  margin-left:  20px;
}   
.menu_toggle button {   
  padding: 0;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  -webkit-transition: background-color 2s ease;
  -o-transition: background-color 2s ease;
  transition: background-color 2s ease;
}
.button-inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
/* Menu toggle button */
.icon {
    line-height: 0;
}
.menu-icon {
  text-align: right;
  width: 27px;
}
.menu-icon::after, .menu-icon::before {
  background-color: #000;
  content: "";
  display: inline-block;
  height: 3px;
  width: 27px;
  margin: 3px 0;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.menu-icon::before {
  width: 27px;
}
.menu-icon::after {
  width: 18px;
}
#menu-button:hover .menu-icon::before {
  width: 18px;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
#menu-button:hover .menu-icon::after{
  width: 27px;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
#menu-button.is-opened .menu-icon::before {
  -webkit-transform: rotateZ(135deg) translate(3px, -3px);
      -ms-transform: rotate(135deg) translate(3px, -3px);
          transform: rotateZ(135deg) translate(3px, -3px);
  width: 27px;
}
#menu-button.is-opened .menu-icon::after {
  -webkit-transform: rotateZ(-135deg) translate(3px, 3px);
      -ms-transform: rotate(-135deg) translate(3px, 3px);
          transform: rotateZ(-135deg) translate(3px, 3px);
  width: 27px;
}
.thankyou_cnt .btn{
  float: none;
  margin-top: 20px;
  text-align: center;
}