@font-face {
  font-family: 'Gotham Book';
  src: url('./fonts/gotham-book.woff2') format('woff2'),
      url('./fonts/gotham-book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gothamblack';
  src: url('./fonts/gotham-black.woff2') format('woff2'),
      url('./fonts/gotham-black.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: 'Gotham Book';
  color: #005F83;
  max-width: 1920px;
  margin: auto;
}
.container{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.position-relative {
    z-index: 1;
}
.info-text-white{
  color: #fff !important;
}
.text-black{
  display: block !important;
}
.info {
  padding: 50px 0 !important;
}
.info-fw-bold {
  font-family: 'gothamblack';
}
.info-bg-brand{
  background-color: #005F83 !important;
}
.info-bg-light{
  background-color: #F3F7F9 !important;
}
.info-text-brand {
  color: #005F83 !important;
}
.text-brand-light {
  color: #41B6E9;
}
.text-brand-yellow {
  color: #FFE102;
}
.text-light{
  color: #D9D9D9 !important;
}
.text-gradient {
  background: linear-gradient(90.4deg, #00BFFF 0.77%, #56DB46 100.09%);
  -webkit-text-fill-color: transparent;
  background-size: 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
.info-gradient-btn {
  background: linear-gradient(90.4deg, #00BFFF 0.77%, #56DB46 100.09%);
  color: #fff !important;
  border: 0;
  transition: .3s ease-in-out;
}
.info-gradient-bg {
  background: linear-gradient(99.4deg, #00BFFF 7.17%, #45DB33 89.85%);
}
.info-btn-brand{
  background: #005F83;
  color: #fff !important;
  border: 1px solid #005F83 !important;
  transition: 0.3s ease;
}
.info-btn-brand:hover{
  background: #fff;
  color: #005F83 !important;
  border: 1px solid #005F83 !important;
}
.info-btn-outline{
  background: #ffffff00;
  color: #fff !important;
  border: 1px solid #fff !important;
}
.info-btn-outline:hover{
  background: #fff;
  color: #005F83 !important;
  border: 1px solid #005F83 !important;
}
.info-btn-white{
  background: #fff;
  color: #005F83 !important;
  border: 1px solid #005F83 !important;
}
.info-btn-white:hover{
  background: #005F83;
  color: #fff !important;
  border: 1px solid #005F83 !important;
}
.info-tab-bg .info-btn-white:hover{
  border: 1px solid #ffffff !important;
}
.info-btn-quote {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  z-index: 1;
}
.info-btn-quote:hover {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  color: #005373;
  background: #fff;
  z-index: 1;
}

.info-btn-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* Border thickness */
  border-radius: 50px;
  background: linear-gradient(180deg, #00BFFF 0%, #45DB33 100%);
  -webkit-mask:
    linear-gradient(white 0 0) content-box,
    linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.info-btn-quote:hover::before{
  padding: 0px;
}

.hero-bg{
  position: relative;
  background: url("../img/hero-banner-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.info-bg-overlay{
  position: relative;
}
.info-bg-overlay::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 77.25%);
  left: 0;
  top: 0;
}
.hero-footer{
  background: #FFE102;
  padding: 30px;
}
.hero-footer .info-content{
  padding: 15px;
}
.hero-footer p{
  margin-bottom: 0 !important;
}

.info-card{
  padding: 20px;
  background: #F3F7F9;
  transition: 0.3s ease-in-out;
}
.info-card:hover{
  box-shadow: 0px 0px 10px 0px #0000001A;
}

.nav-link{
  color: #57B3D1;
  border: 0 !important;
  border-bottom: 2px solid #ffffff00 !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  color: #fff;
  background-color: #005F83;
  border-bottom: 2px solid #FFF !important;
}
.nav-link:hover{
  color: #ffffff;
  border-bottom: 2px solid #FFF !important;
}



/* Horizontal Accordion Start Here */
.horizontal-accordion {
    display: flex;
    width: 100%;
    padding: 0;
}
.info-expand {
    height: 500px;
    width: 20%;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
    float: left;
    display: flex;
    align-items: center;
    transition: width 0.2s;
    border-radius: 3px;
    color: black;
    background-position: center;
    background-size: cover;
}
.info-accordion-card {
    background: transparent;
    position: relative;
    padding-left: 35px !important;
}

.info-accordion-card::before {
    position: absolute;
    content: '';
}
.info-hide .info-accordion-card {
    opacity: 0;
    transition: opacity 0.5s ease-in;
    transition-delay: 0s; /* No delay when fading out */
    margin: 16px;
}
.info-hide:hover .info-accordion-card {
    opacity: 1;
    width: 90%;
    transition: opacity 0.5s ease-in;
    transition-delay: 0.4s;
}
.info-expand:hover {
    width: 65%;
    background-size: cover;
    transition: width 0.6s ease;
}
.info-expand:hover .info-side-text {
    display: none;
}

.info-bg-img {
    position: relative;
    z-index: 0;
}
.info-bg-img::before {
    content: '';
    position: absolute;
    background: #00000066;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
}
.info-accordion-card-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    display: flex;
    justify-content: center;
}
.card-element {
    padding-left: 25px;
}

.card-element,
.info-card-element {
    position: relative;
}
.card-element::before {
    position: absolute;
    content: '';
    height: 16px;
    width: 12px;
    background: url('../img/info-card-element.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
    left: 0;
    top: 0;
}
.info-card-element::before {
    position: absolute;
    content: '';
    height: 30px;
    width: 20px;
    background: url('../img/info-card-element.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
    left: 0;
    top: 0;
}
.info-side-text {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff !important;
    transform: rotate(270deg) translateX(50%) translateY(150%);
    font-size: 0.8rem;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .info-hide .info-accordion-card {
        transition: none;
    }

    .slick-active .info-accordion-card {
        opacity: 1;
    }

    .info-side-text {
        display: none;
    }
}
/* Horizontal Accordion End Here */


.info-vision-bg{
  background: url('../img/vision-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.info-blue-overlay{
  position: relative;
}
.info-blue-overlay::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 95, 131, 0.6) 0%, #005F83 83.47%);
  left: 0;
  top: 0;
}
/* .info-list li{
    position: relative;
    padding-left: 50px;
}
.info-list li:not(:last-child){
   margin-bottom: 12px;
} */
.info-list li{
    position: relative;
}
.info-list .info-list-content{
    position: relative;
    padding-left: 50px;
}
.info-list li:not(:last-child){
   margin-bottom: 30px;
}
.info-list li:not(:last-child)::after{
   position: absolute;
   content: '';
   height: 1px;
   width: 100%;
   background: #0D7298;
   bottom: -6px;
   left: 0;
}
.info-list p{
    margin-bottom: 0 !important;
}
.info-list-img{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.info-counter-card{
  background: #0D7298;
  padding: 20px;
}
.info-white-bg{
  position: relative;
}
.info-white-bg::after{
  position: absolute;
  content: '';
  height: 50%;
  width: 100%;
  background: #fff;
  left: 0;
  bottom: 0;
}
.info-partner-bg{
  background: #FFE102;
  padding: 50px;
}

.accordion-item{
  background: #fff;
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #E5F3F8 !important;
}
.accordion-button{
  color: #00BFFF !important;
  font-weight: bold !important;
  border-radius: 0 !important;
}
.accordion-button.collapsed{
  background: #fff !important;
}
.accordion-item:not(:last-child){
  margin-bottom: 20px;
}
.accordion-button:not(.collapsed){
  background: #fff;
  box-shadow: none;
}
.accordionExample .accordion-button::after{
  filter: invert(79%) sepia(53%) saturate(6362%) hue-rotate(157deg) brightness(100%) contrast(104%) !important;
}
.faq-content .accordion-button{
  color: #005F83 !important;
  font-weight: bold !important;
  border-radius: 0 !important;
}

.info-icon-bg{
  background: #F3F7F9;
  padding: 25px;
  border-radius: 20px;
}
@media (max-width: 767px) {
    .info-icons-mobile-slider .info-icon-bg{
      margin-right: 20px;
    }
}

.info-count-content .info-icon-list li{
    position: relative;
    padding-left: 25px;
}
.info-count-content .info-icon-list li:not(:last-child){
    margin-bottom: 10px;
}
.info-count-content .info-icon-list li::before{
    position: absolute;
    content: '';
    height: 20px;
    width: 14px;
    background: url("../img/info-element-01.png");
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
}

.info-row-list li:not(:last-child){
  margin-bottom: 80px;
}
.info-num-size{
  font-size: 10rem;
}

.info-business-card{
  padding: 10px;
  margin-right: 30px !important;
}
.slider-left-arrow{
  position: absolute;
  left: 15px;
  bottom: 40px;
  background-color: #fff;
  border: 1px solid #0D7298;
  color: #0D7298;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider-right-arrow{
  position: absolute;
  left: 70px;
  bottom: 40px;
  background-color: #fff;
  border: 1px solid #0D7298;
  color: #0D7298;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider-arrows:hover{
  background-color: #0D7298;
  border: 1px solid #0D7298;
  color: #fff;
}

.checklist-bg{
  background: url('../img/checklist-bg.webp');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.checklist-bg::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #000000B2;
  left: 0;
  top: 0;
}
.info-checklist ul li:not(:last-child){
  margin-bottom: 20px;
}


.info-grid-content {
  position: relative;
  min-height: 500px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: background-position-y 0.4s ease-in-out;
}
.info-grid-content:hover {
  background-position-y: calc(100% - 20px);
}
.info-grid-hover{
  background: #005F83;
  opacity: 0;
}
.info-grid-hover{
  position: absolute;
  bottom: 0;
  left: 0;
}
.info-grid-content:hover .info-grid-hover{
  opacity: 1;
}
.info-grid-content::before, .img-wrapper::before{
  content: '';
  position: absolute;
  background: #00000066;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
}
.info-bg-01{
  background-image: url('../img/info-grid-img-01.webp');
}
.info-bg-02{
  background-image: url('../img/info-grid-img-02.webp');
}
.info-bg-03{
  background-image: url('../img/info-grid-img-03.webp');
}
.info-bg-04{
  background-image: url('../img/info-grid-img-04.webp');
}
.info-bg-05{
  background-image: url('../img/info-grid-img-05.webp');
}
@media (max-width: 480px) {
  .slick-active .info-grid-content .info-grid-hover {
    opacity: 1;
  }
}

.center-slider .slick-list{
  padding-left: 150px;
  padding-right: 150px;
}
.center-slider .img-wrapper {
    overflow: hidden;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
.img-wrapper .content {
    position: absolute;
    width: 100%;
    text-align: start;
    bottom: 15px;
    left: 30px;
}
@media (max-width:992px) {
  .center-slider .slick-list{
    padding-left: 40px;
    padding-right: 40px;
  }
}
.center-slider .slick-dots li button, .info-vision-slider .slick-dots li button{
	opacity: 1;
  height: 4px;
  transition: all 500ms ease-in-out
}
.center-slider .slick-dots li.slick-active button,  .info-vision-slider .slick-dots li.slick-active button{
	opacity: 1;
	background: #005F83;
	width: 50px;
}

.faq-content .accordion-button::after{
  background-image: url("../img/plus.png");
}
.faq-content .accordion-button:not(.collapsed)::after{
  background-image: url("../img/minus.png");
}

.info-form-bg{
  border: 1px solid #C8E6F0;
  padding: 50px;
}

.info-vision-slider .info-img{
  margin-right: 15px;
}

.info-vision-slider .slick-dots{
  position: absolute;
  bottom: 0;
}

.hero-right{
  position: absolute;
  right: 0;
  top: 5%;
}
.hero-left{
  position: absolute;
  left: 0;
  bottom: 22%;
}
/* .hero-footer-logo{
  width: 200px;
} */
.element-left{
  position: absolute;
  left: 0;
  top: 4%;
}
.bottom-right{
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 120px;
}
.bottom-left{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
}
.right-top{
  position: absolute;
  right: 0;
  top: 0;
}
.left-top{
  position: absolute;
  left: 0;
  top: 0;
}
.right-bottom{
  position: absolute;
  right: 0;
  bottom: 0;
}
.left-bottom{
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 150px;
}
.card-right-bottom{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
}
.info-tab-element{
  position: absolute;
  right: -35px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 440px;
}
@media (max-width: 991px) {
  .info-tab-element {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 215px;
  }
  .hero-right, .hero-left, .element-left, .bottom-right, .bottom-left, .right-top, .left-top, .right-bottom, .left-bottom, .card-right-bottom{
    opacity: 0.4;
  }
}
@media (max-width: 768px) {
  .info-tab-element {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 465px;
  }
}
@media (max-width: 576px) {
  .info-tab-element {
    position: absolute;
    right: -42px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 390px;
  }
}










.info-footer-bg {
  background-color: #035970 !important;
}
.info-footer .info-content{
  text-align: end;
}
.info-line-height {
  line-height: 2;
}
.info-footer * {
  font-size: .8rem;
}

/* Form Color */
.hbspt-form input::placeholder,.hbspt-form textarea::placeholder {
  color: #2898C0;
}
.hbspt-form input[type="text"], .hbspt-form input[type="email"], .hbspt-form input[type="tel"], .hbspt-form select{
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2898C0 !important;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #2898C0;
  width: 100% !important;
  height: 40px !important;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
textarea {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2898C0;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #2898C0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.hbspt-form fieldset, .hbspt-form .hs-input {
  margin: 0 !important;
  width: 100% !important;
}
.hbspt-form .hs-button {
  padding: 0.5rem 1.5rem;
  border-radius: 2.5rem;
  background: linear-gradient(to right, #02C0FA, #43DA38) !important;
  border: 0 !important;
  min-width: 175px;
  color: #fff;
  font-family: 'Gotham Book';
  font-size: 1rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.hs_submit {
  margin-top: 25px !important;
  display: flex;
  justify-content: center;
}
.hbspt-form .inputs-list label p, .hbspt-form .inputs-list label a {
  color: #2898C0;
  font-size: 0.8rem;
}
.hbspt-form .inputs-list label {
  color: #ff4444;
  font-size: 0.8rem;
}
.inputs-list{
  padding: 0;
  list-style: none;
}
.hs-form-booleancheckbox-display{
  position: relative;
  padding: 0.375rem 0.75rem;
  margin-top: 10px;
}
.hs-form-booleancheckbox-display .hs-input{
  position: absolute;
  content: '';
  left: 0 !important;
  width: auto !important;
}
.hbspt-form fieldset {
  max-width: 100% !important;
}


@media (max-width: 767px) {
  .info{
    padding: 30px 15px;
  }
  .navbar-brand {
    max-width: 120px;
  }
  .info-business-card{
    margin-right: 15px !important;
  }
  .info-checklist ul li:not(:last-child){
    margin-bottom: 15px;
  }
  .info-form-bg{
    padding: 20px;
  }
  .center-slider .slick-list{
    padding-left: 0;
    padding-right: 0;
  }
  .img-wrapper .content {
    position: absolute;
    width: 100%;
    text-align: start;
    bottom: 0;
    left: 10px;
  }
  .img-wrapper .content p{
    font-size: 0.8rem;
  }
  .center-slider .img-wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }
  .info-row-list li:not(:last-child) {
    margin-bottom: 10px;
  }




  .info-footer * {
    font-size: .8rem;
    text-align: center !important;
  }
}



/* SLICK CSS */
.slick-dots{
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  padding-top: 20px;
  list-style: none;
  text-align: center !important;
}
.slick-dots li{
  display: inline-block;
  margin-right: 10px;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50rem;
  background-color: #c9c9c9;
  text-indent: -999999px;
}
.slick-dots li.slick-active button{
  background-color:  #02C0FA;
}
.slick-list{
  padding-right: 30px;
}
.info-business-slider .slick-list, .info-vision-slider .slick-list{
  padding-right: 0;
}

.nav-tabs-mobile-slider .slick-list{
  padding-right: 80px;
}
.nav-tabs-mobile-slider .slick-arrow {
    background: transparent;
    padding: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    color: #ffffff;
    z-index: 1;
    border: 0;
    font-size: 0;
    outline: none;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 1;
    font-family: "Font Awesome 6 Free";
}
.nav-tabs-mobile-slider .slick-arrow {
  color: #000;
  background: #adadad69;
}
.nav-tabs-mobile-slider .slick-arrow:hover {
  background: linear-gradient(to right, #02C0FA, #43DA38) !important;
  color: #fff;
}
.nav-tabs-mobile-slider .slick-prev::before {
  content: '\f053';
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 14px;
}
.nav-tabs-mobile-slider .slick-next::before {
  content: '\f054';
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 14px;
}
.nav-tabs-mobile-slider .slick-arrow {
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.nav-tabs-mobile-slider .slick-arrow.slick-prev {
    left: -40px;
}
.nav-tabs-mobile-slider .slick-arrow.slick-next {
    right: -40px;
}
@media (max-width: 600px) {
    .nav-tabs-mobile-slider .slick-arrow.slick-prev {
        left: -20px;
    }
    .nav-tabs-mobile-slider .slick-arrow.slick-next {
        right: -20px;
    }
}

.hs-fieldtype-intl-phone.hs-input{
    display: flex !important;
}