@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alike&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Semi+Condensed:wght@400;500;600&family=Inter:wght@400;500;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*Slick Slider*/
.slick-track > * {
  outline: none;
  box-shadow: none;
}

/*Slider*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-slider .slick-track:before, .slick-slider .slick-track:after {
  content: "";
  display: table;
}
.slick-slider .slick-track:after {
  clear: both;
}
.slick-loading .slick-slider .slick-track {
  visibility: hidden;
}

.slider-progress {
  position: relative;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.slider-progress .progress {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00AEEF;
  width: 0%;
  height: 100%;
  transition: width 0.5s linear;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*Arrows*/
.slick-prev,
.slick-next {
  position: absolute;
  bottom: 0;
  font-size: 0;
  line-height: 0;
  z-index: 1;
  color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  display: inline-block;
}

.slick-arrow {
  background-color: transparent;
  width: 50px;
  height: 50px;
  top: 0;
  left: inherit;
  bottom: 0;
  border: 0;
  border: 1px solid #00AEEF;
  margin: auto 0;
  padding: 0;
}
@media (max-width: 1199px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.slick-arrow::before {
  content: "";
  width: 100%;
  height: 100%;
  display: -ms-flex;
  display: -webkit-flex;
  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-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-prev::before {
  background-image: url("../images/icons/left-arrow.svg");
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next::before {
  background-image: url("../images/icons/right-arrow.svg");
}
.slick-arrow:hover {
  background-color: transparent;
  border-color: #00AEEF;
}
.slick-arrow:hover::before {
  color: #00AEEF;
}

.slick-prev.slick-disabled:before {
  opacity: 0.25;
}

.slick-next.slick-disabled:before {
  opacity: 0.25;
}

/*Dots*/
.slick-dots {
  width: 100%;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 0;
  padding: 0;
  list-style-type: none;
}
.slick-dots li {
  margin: 0;
}
.slick-dots li button {
  display: block;
  background-color: transparent;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background-color: #ffffff;
}

/*Slick Lightbox*/
.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9) !important;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}
.slick-lightbox .slick-arrow {
  padding: 10px;
  margin: auto 0;
}
.slick-lightbox .slick-arrow::before {
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.slick-lightbox .slick-prev {
  left: 20px;
}
.slick-lightbox .slick-prev::before {
  background-image: url("../images/icons/left-arrow-long.svg");
}
.slick-lightbox .slick-next {
  right: 20px;
}
.slick-lightbox .slick-next::before {
  background-image: url("../images/icons/right-arrow-long.svg");
}

.slick-lightbox-hide {
  opacity: 0;
}

.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}
.slick-lightbox-slick-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  max-width: 90%;
  display: inline-block;
  vertical-align: middle;
}
.slick-lightbox-slick-item-inner .slick-lightbox-slick-img {
  width: 100%;
  max-width: 85%;
  display: block;
  margin: 0 auto;
}
.slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
  width: 100%;
  max-width: 85%;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  margin: 10px auto 0;
}
@media (max-width: 991px) {
  .slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  .slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
    font-size: 12px;
  }
}

.slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}
.slick-lightbox-close:focus {
  outline: none;
}
.slick-lightbox-close:before {
  content: "×";
  font-family: "slick";
  font-size: 60px;
  line-height: 60px;
  color: #ffffff;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 30px;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x);
  padding-left: var(--bs-gutter-x);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 991px) {
  .container-fluid {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container-fluid {
    max-width: 100%;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1360px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1360px) {
  .container-xl {
    max-width: 1420px;
  }
}

.small-container {
  width: 100%;
  max-width: 85%;
  margin-inline: auto;
}
@media (max-width: 991px) {
  .small-container {
    max-width: 100%;
  }
}

.row {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-1 * var(--bs-gutter-x));
  margin-left: calc(-1 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: var(--bs-gutter-x);
  padding-left: var(--bs-gutter-x);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 992px) {
  .gap {
    --bs-gutter-x: 30px;
  }
  .small-gap {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 20px;
  }
}
@media (max-width: 991px) {
  .small-gap {
    --bs-gutter-y: 10px;
  }
}
@media (min-width: 992px) {
  .order-1 {
    order: 1;
  }
}
@media (max-width: 1199px) {
  .order-2 {
    order: 2;
  }
}
.g-0 {
  --bs-gutter-x: 0;
}

.g-5 {
  --bs-gutter-x: 1.8rem;
}

.col {
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

/*Max Style*/
@media (max-width: 575px) {
  .col-xs {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xs-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xs-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xs-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xs-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xs-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xs-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xs-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xs-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xs-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xs-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xs-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xs-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xs-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xs-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xs-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xs-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xs-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xs-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xs-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
/*Min Style*/
@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1500px) {
  .col-xxl {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
/* CSS Document */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  background-color: #151D49;
  margin: 0;
  padding: 0;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.scroll {
  overflow: hidden;
}
@media (max-width: 1399px) {
  body {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

main, header, section, footer {
  width: 100%;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Alike", serif;
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 20px;
}

h1, .h1 {
  font-size: 75px;
}
@media (max-width: 1399px) {
  h1, .h1 {
    font-size: 64px;
  }
}
@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 34px;
  }
}

h2, .h2 {
  font-size: 50px;
}
@media (max-width: 1399px) {
  h2, .h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h2, .h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 40px;
}
@media (max-width: 1399px) {
  h3, .h3 {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  h3, .h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 26px;
  }
}

h4, .h4 {
  font-size: 35px;
}
@media (max-width: 1199px) {
  h4, .h4 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  h4, .h4 {
    font-size: 25px;
  }
}

h5, .h5 {
  font-size: 24px;
}
@media (max-width: 767px) {
  h5, .h5 {
    font-size: 21px;
  }
}

h6, .h6 {
  font-size: 20px;
}
@media (max-width: 767px) {
  h6, .h6 {
    font-size: 18px;
  }
}

p {
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 20px;
}
p:last-child {
  margin-bottom: 0;
}
p strong {
  font-weight: 600;
}

a {
  display: inline-block;
  text-decoration: none;
  outline: none !important;
  color: inherit;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

button {
  background: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  padding-left: 20px;
  margin: 0 0 20px;
}

.no-bullets ul, .no-bullets ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

input:-webkit-autofill {
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  -webkit-transition-property: #ffffff !important;
  /* background-clip: content-box; */
}

input:-webkit-autofill,
input:-webkit-autofill:focus input:-webkit-autofill,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
  -webkit-text-fill-color: #151D49 !important;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

/*Helpers*/
.full-width {
  width: 100%;
}

.relative {
  position: relative;
}

.z-index {
  position: relative;
  z-index: 2;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
}

/*Flex alignment utilities*/
.align-item-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-item-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-item-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

/*Section rhythm*/
.commonPY {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  .commonPY {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .commonPY {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .commonPY {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

.commonPT {
  padding-top: 120px;
}
@media (max-width: 1199px) {
  .commonPT {
    padding-top: 90px;
  }
}
@media (max-width: 991px) {
  .commonPT {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .commonPT {
    padding-top: 55px;
  }
}

.commonPB {
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  .commonPB {
    padding-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .commonPB {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .commonPB {
    padding-bottom: 55px;
  }
}

/*Eyebrow label*/
.eyebrow {
  display: inline-block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #00AEEF;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .eyebrow {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

/*Buttons*/
.buttonOuter.m-top {
  margin-top: 34px;
}
@media (max-width: 767px) {
  .buttonOuter.m-top {
    margin-top: 24px;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  background-color: #00AEEF;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 17px 28px;
  border: 1px solid #00AEEF;
  border-radius: 500px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.btn:hover {
  background-color: transparent;
  color: #00AEEF;
}
.btn-sm {
  padding: 10px 22px;
}
.btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background-color: #ffffff;
  color: #151D49;
  border-color: #ffffff;
}
.btn--light {
  background-color: #ffffff;
  color: #151D49;
  border-color: #ffffff;
}
.btn--light:hover {
  background-color: transparent;
  color: #ffffff;
}

.body-font {
  font-family: "Barlow", sans-serif;
}

/*Text arrow link*/
.textLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: #213C79;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.textLink i {
  color: #00AEEF;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.textLink:hover {
  color: #00AEEF;
}
.textLink:hover i {
  transform: translateX(4px);
}
.textLink--light {
  color: #00AEEF;
}
.textLink--light i {
  color: #00AEEF;
}
.textLink--light:hover {
  color: #ffffff;
}
.textLink--white {
  color: #ffffff;
}
.textLink--white i {
  color: #00AEEF;
}
.textLink--white:hover {
  color: #00AEEF;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

/*Parallax reveal*/
.parallax {
  opacity: 0;
  transform: translateY(30px);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.parallax.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/*Header*/
.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header.sticky {
  background-color: #1A2352;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.header__inner {
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  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;
  gap: 20px;
  padding: 22px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 16px 0;
  }
}
.header .logo {
  position: relative;
  z-index: 101;
}
.header .logo img {
  max-height: 52px;
}
@media (max-width: 767px) {
  .header .logo img {
    max-height: 42px;
  }
}

.navigation__inner {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .navigation__inner {
    background-color: #1A2352;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-top: 4px solid #00AEEF;
    padding: 6rem 0 2rem;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    overflow-y: auto;
    -moz-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .navigation__inner.toggle {
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: all;
  }
}
.navigation #navbar > ul {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 30px;
  margin: 0;
}
@media (max-width: 1199px) {
  .navigation #navbar > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 6px;
    padding: 0 24px;
  }
}
.navigation #navbar > ul > li {
  position: relative;
  /* generic nav links — exclude the Contact pill so .btn styling wins */
}
@media (max-width: 1199px) {
  .navigation #navbar > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}
.navigation #navbar > ul > li > a:not(.btn) {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
}
@media (max-width: 1199px) {
  .navigation #navbar > ul > li > a:not(.btn) {
    padding: 16px 0;
    font-size: 16px;
  }
}
.navigation #navbar > ul > li > a:not(.btn) i {
  font-size: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation #navbar > ul > li > a:not(.btn):hover {
  color: #00AEEF;
}
.navigation #navbar > ul > li.hasDrop > a i {
  margin-left: 8px;
}
.navigation #navbar > ul > li.hasDrop > a i:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ffffff;
}
.navigation #navbar > ul > li.hasDrop:hover > a {
  color: #00AEEF;
}
.navigation #navbar > ul > li.hasDrop:hover > a i {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navigation #navbar > ul > li.hasDrop:hover > a i:after {
  border-top-color: #00AEEF;
}
@media (max-width: 1199px) {
  .navigation #navbar > ul > li.navBtn {
    border-bottom: 0;
  }
}
.navigation #navbar > ul > li.navBtn > a.btn {
  color: #ffffff;
  padding: 10px 22px;
}
.navigation #navbar > ul > li.navBtn > a.btn:hover {
  color: #00AEEF;
}
.navigation .dropdownMenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 210px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -moz-transform: translate(0, 12px);
  -o-transform: translate(0, 12px);
  -ms-transform: translate(0, 12px);
  -webkit-transform: translate(0, 12px);
  transform: translate(0, 12px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation .dropdownMenu li a {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  color: #213C79;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 20px;
}
.navigation .dropdownMenu li a:hover {
  color: #00AEEF;
}
@media (max-width: 1199px) {
  .navigation .dropdownMenu {
    pointer-events: all;
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 12px 14px;
  }
  .navigation .dropdownMenu li a {
    color: rgba(255, 255, 255, 0.75);
  }
}
@media (min-width: 1200px) {
  .navigation #navbar li.hasDrop:hover .dropdownMenu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.navigation .navBtn {
  margin-left: 6px;
}
@media (max-width: 1199px) {
  .navigation .navBtn {
    margin: 18px 0 0;
  }
}

/*Mobile menu icon*/
.menuIcon {
  position: relative;
  width: 30px;
  display: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 101;
}
@media (max-width: 1199px) {
  .menuIcon {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.menuIcon span {
  background-color: #ffffff;
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 2px;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.menuIcon span:nth-child(2) {
  margin: 7px 0;
}
.menuIcon.active span {
  background-color: #00AEEF;
}
.menuIcon.active span:nth-child(1) {
  -moz-transform: rotate(45deg) translate(7px, 7px);
  -o-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}
.menuIcon.active span:nth-child(2) {
  opacity: 0;
}
.menuIcon.active span:nth-child(3) {
  -moz-transform: rotate(-45deg) translate(7px, -7px);
  -o-transform: rotate(-45deg) translate(7px, -7px);
  -ms-transform: rotate(-45deg) translate(7px, -7px);
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
  transform: rotate(-45deg) translate(7px, -7px);
}

/*Footer*/
.footer {
  position: relative;
  background-color: #151D49;
  padding-top: 90px;
  overflow: hidden;
  /* decorative curve (Figma "Shape") — faint arc + ring, top-left */
  /* Left column: brand logo + two-column menu + social */
  /* plain social icons */
  /* Right column: connect form */
}
@media (max-width: 991px) {
  .footer {
    padding-top: 60px;
  }
}
.footer input:-webkit-autofill {
  background-color: #151D49 !important;
  -webkit-box-shadow: 0 0 0 1000px #151D49 inset;
  -webkit-transition-property: #151D49 !important;
  /* background-clip: content-box; */
}
.footer input:-webkit-autofill,
.footer input:-webkit-autofill:focus input:-webkit-autofill,
.footer footer input:-webkit-autofill:hover,
.footer select:-webkit-autofill,
.footer select:-webkit-autofill:focus,
.footer select:-webkit-autofill:hover,
.footer textarea:-webkit-autofill,
.footer textarea:-webkit-autofill:focus,
.footer textarea:-webkit-autofill:hover {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px #151D49 inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
.footer__deco {
  position: absolute;
  top: -60px;
  left: -120px;
  width: 80%;
  max-width: 820px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 991px) {
  .footer__deco {
    width: 90%;
    opacity: 0.7;
  }
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer__top {
  padding-bottom: 55px;
}
.footer__brand {
  position: relative;
}
.footer__brand .footer-logo {
  display: inline-block;
  margin-bottom: 40px;
}
.footer__brand .footer-logo img {
  max-height: 62px;
}
@media (max-width: 991px) {
  .footer__brand .footer-logo img {
    max-height: 52px;
  }
}
@media (max-width: 991px) {
  .footer__brand {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .footer__brand {
    margin-bottom: 0px;
  }
}
.footer__menu {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  gap: 0 90px;
  margin-bottom: 70px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footer__menu {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .footer__menu {
    gap: 0 40px;
  }
}
.footer__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 30%;
}
@media (max-width: 767px) {
  .footer__menu ul {
    width: 50%;
  }
}
.footer__menu li + li {
  margin-top: 22px;
}
@media (max-width: 767px) {
  .footer__menu li + li {
    margin-top: 10px;
  }
}
.footer__menu a {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
}
.footer__menu a:hover {
  color: #00AEEF;
}
.footer__menu a.active {
  color: #ffffff;
}
.footer .socialMedia {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.footer .socialMedia a {
  font-size: 18px;
  color: #ffffff;
}
.footer .socialMedia a:hover {
  color: #00AEEF;
}
@media (min-width: 1024px) {
  .footer__connect {
    padding-left: 100px;
  }
}
.footer__connect h3 {
  margin-bottom: 28px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px 0;
  display: -ms-flex;
  display: -webkit-flex;
  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;
  gap: 12px 16px;
}
.footer__bottom .privacy, .footer__bottom .copyRight {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}
.footer__bottom .privacy:hover {
  color: #00AEEF;
}

/*Form*/
.form-group {
  margin-bottom: 0;
}
.form-group label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 7px;
}
.form-group .form-control {
  width: 100%;
  height: 52px;
  background-color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #ffffff;
  border: 1px solid rgba(0, 174, 239, 0.4);
  border-radius: 8px;
  padding: 0 18px;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-group textarea.form-control {
  height: 120px;
  padding-top: 14px;
  resize: none;
}
.form-group select.form-control {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300AEEF' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.form-group select.form-control option {
  color: #213C79;
}

/* ===== Shared bits ===== */
.iconBox {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
}
.iconBox img {
  max-width: 44px;
  max-height: 30px;
  object-fit: contain;
  display: block;
}
.iconBox--cyan {
  background-color: rgba(0, 174, 239, 0.14);
  color: #00AEEF;
}
.iconBox--white {
  background-color: #ffffff;
  color: #00AEEF;
}
.iconBox--solid {
  background-color: #00AEEF;
  color: #ffffff;
}

.sectionHead {
  max-width: 760px;
}
.sectionHead p {
  color: #ffffff;
}
.sectionHead--center {
  margin-inline: auto;
  text-align: center;
}

.decoRing {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.decoDot {
  position: absolute;
  width: 2.3vw;
  height: 2.3vw;
  border: #00AEEF 0.25vw solid;
  border-radius: 50%;
  z-index: 3;
}
@media (max-width: 767px) {
  .decoDot {
    width: 32px;
    height: 32px;
  }
}

/* ===== Billboard / Hero ===== */
.billboard {
  position: relative;
  background-color: #1A2352;
  overflow: hidden;
  padding: 200px 0 0;
  /* subpage variant: content centered, full-width image below */
}
@media (max-width: 1199px) {
  .billboard {
    padding: 150px 0 70px;
  }
}
@media (max-width: 767px) {
  .billboard {
    padding: 120px 0 55px;
  }
}
@media (min-width: 1199px) {
  .billboard:after {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #113DA1;
    z-index: 1;
    width: 100%;
    height: 50px;
  }
}
.billboard__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}
.billboard .container {
  position: relative;
  z-index: 2;
}
.billboard__content {
  max-width: 560px;
  padding-bottom: 50px;
}
.billboard__content h1 span {
  color: #00AEEF;
}
.billboard__content p {
  color: #ffffff;
  font-size: 22px;
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .billboard__content p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .billboard__content p {
    font-size: 18px;
  }
}
.billboard__media {
  position: relative;
}
@media (max-width: 991px) {
  .billboard__media {
    margin-top: 40px;
  }
}
.billboard__media img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.billboard__media .decoWrapper {
  position: absolute;
  width: 820px;
  height: 820px;
  top: -100px;
  right: -170px;
  z-index: -1;
}
.billboard__media .decoWrapper .decoRing {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.billboard__media .decoWrapper .decoOrbit {
  position: absolute;
  inset: 0;
  transform: rotate(0deg);
  transform-origin: center;
  will-change: transform;
}
.billboard__media .decoWrapper .decoDot {
  position: absolute;
  top: -1.1vw;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .billboard__media .decoWrapper .decoDot {
    top: -17px;
  }
}
.billboard--about {
  text-align: center;
}
.billboard--about::before {
  display: none;
}
.billboard--about .billboard__content {
  max-width: 100%;
  margin-inline: auto;
  padding-bottom: 0;
}
.billboard--about .billboard__content h1 {
  font-size: 60px;
}
@media (max-width: 1199px) {
  .billboard--about .billboard__content h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .billboard--about .billboard__content h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .billboard--about .billboard__content h1 {
    font-size: 36px;
  }
}
.billboard--about .billboard__wide {
  margin-top: 56px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .billboard--about .billboard__wide {
    margin-top: 40px;
  }
}
.billboard--about .billboard__wide img {
  width: 100%;
  border-radius: 20px;
}
.billboard--about:after {
  background-color: #151D49;
}

/* ===== Full-width color band ===== */
.band {
  background-color: #113DA1;
}
.band .lead {
  font-family: "Alike", serif;
  font-size: 35px;
  line-height: 1.25;
  margin-bottom: 26px;
}
@media (max-width: 1199px) {
  .band .lead {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .band .lead {
    font-size: 24px;
  }
}
.band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 24px;
}
@media (max-width: 767px) {
  .band p {
    font-size: 17px;
  }
}
.band--navy {
  background-color: #151D49;
}
.band__inner {
  max-width: 1020px;
  margin-inline: auto;
  text-align: center;
}
.band__inner p {
  color: #ffffff;
  font-size: 24px;
}
@media (max-width: 1199px) {
  .band__inner p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .band__inner p {
    font-size: 16px;
  }
}

.iconLink {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .iconLink {
    font-size: 16px;
    letter-spacing: 0;
    padding: 10px 0;
  }
}
.iconLink:hover {
  color: #00AEEF;
}
.iconLink__go {
  width: 30px;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

/* ===== Intro (map + icon links) ===== */
.intro {
  background-color: #151D49;
  position: relative;
}
.intro .iconLink .iconBox img {
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 36px;
}

.triMap {
  position: relative;
  width: 100%;
}
.triMap svg, .triMap img {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .triMap {
    max-width: 420px;
    margin: 0 auto 20px;
  }
}

/* ===== Quote / testimonial ===== */
/* Figma: rounded card floating on the navy page background */
.testimonial {
  background-color: #151D49;
}

.testimonialSlider {
  position: relative;
}
.testimonialSlider.slick-slider {
  margin-bottom: 0;
}
.testimonialSlider .slick-list {
  overflow: hidden;
}

.quote {
  position: relative;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 60px 130px 56px 182px;
  /* attribution: vertical cyan divider + 3 stacked lines */
}
@media (max-width: 1199px) {
  .quote {
    padding: 55px 60px 50px 150px;
  }
}
@media (max-width: 991px) {
  .quote {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .quote {
    padding: 40px 28px;
  }
}
.quote__mark {
  font-family: "Alike", serif;
  position: absolute;
  top: 34px;
  left: 48px;
  font-size: 150px;
  line-height: 1;
  color: #00AEEF;
  z-index: 1;
}
@media (max-width: 1199px) {
  .quote__mark {
    font-size: 120px;
    left: 40px;
  }
}
@media (max-width: 767px) {
  .quote__mark {
    position: static;
    display: block;
    font-size: 90px;
    margin-bottom: -30px;
  }
}
.quote__eyebrow {
  position: relative;
  display: block;
  margin-bottom: 16px;
}
.quote__text p {
  font-family: "Alike", serif;
  font-size: 30px;
  line-height: 1.4;
  color: #1C2138;
  max-width: 970px;
  margin: 0 0 40px;
}
@media (max-width: 1199px) {
  .quote__text p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .quote__text p {
    font-size: 21px;
    margin-bottom: 28px;
  }
}
@media (max-width: 575px) {
  .quote__text p {
    font-size: 18px;
  }
}
.quote__author {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #00AEEF;
  color: #313131;
}
@media (max-width: 575px) {
  .quote__author {
    padding-left: 20px;
  }
}
.quote__author strong {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
.quote__author .role {
  display: block;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-size: 14px;
}
.quote__author .company {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

/* slider arrows: thin cyan line arrows, bottom-right of the card */
.testimonialSlider .slick-arrow {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: auto;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  color: #00AEEF;
  font-size: 26px;
  z-index: 3;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.testimonialSlider .slick-arrow:hover {
  color: #213C79;
}
@media (max-width: 767px) {
  .testimonialSlider .slick-arrow {
    bottom: 0;
    font-size: 22px;
  }
}

.testimonialSlider .slick-next {
  right: -70px;
}
@media (max-width: 991px) {
  .testimonialSlider .slick-next {
    right: 0;
  }
}

.testimonialSlider .slick-prev {
  right: -10px;
}
@media (max-width: 991px) {
  .testimonialSlider .slick-prev {
    right: 48px;
  }
}

.testimonialSlider .slick-prev::before,
.testimonialSlider .slick-next::before {
  content: "";
}

/* ===== Why Unicon (accordion) ===== */
.whyUnicon {
  background-color: #151D49;
  overflow: hidden;
}

.accordionTile {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 18px;
}
.accordionTile .iconBox {
  padding-top: 16px;
}
.accordionTile__main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
}
.accordionTile:last-child .accordionTile__main {
  border-bottom: 0;
}
.accordionTile__head {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  color: #ffffff;
  padding: 18px 0;
}
.accordionTile__title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  gap: 18px;
  width: 100%;
}
@media (max-width: 767px) {
  .accordionTile__title {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.accordionTile__title--main {
  flex: 1;
}
.accordionTile__chev {
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordionTile__body {
  display: none;
  padding: 0 20px 24px 0;
}
.accordionTile__body p {
  color: #ffffff;
  font-size: 18px;
}
@media (max-width: 575px) {
  .accordionTile__body {
    padding-left: 0;
  }
}
.accordionTile.active .accordionTile__chev {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.whyUnicon__media {
  position: relative;
}
@media (max-width: 991px) {
  .whyUnicon__media {
    margin-top: 40px;
    max-width: 480px;
  }
}
.whyUnicon__media img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.whyUnicon__media .decoWrapper {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.whyUnicon__media .decoWrapper .decoRing {
  width: 100%;
  height: 100%;
}
.whyUnicon__media .decoWrapper .decoDot {
  top: 360px;
  right: -8px;
}

/* ===== Who We Serve ===== */
.whoServe {
  background-color: #113DA1;
}
.whoServe p {
  font-size: 22px;
}
@media (max-width: 767px) {
  .whoServe p {
    font-size: 18px;
  }
}

.serveTile {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.serveTile .serveTile__label {
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1.25;
}
@media (max-width: 991px) {
  .serveTile .serveTile__label {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media (max-width: 1199px) {
  .serveTile .serveTile__label br {
    display: none;
  }
}

/* ===== Articles ===== */
.articles {
  background-color: #151D49;
}
.articles__main {
  margin-top: 40px;
}

.newsCard {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsCard__img {
  height: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.newsCard__body {
  color: #000;
  position: relative;
  padding: 28px 30px;
  flex: 1;
}
@media (max-width: 767px) {
  .newsCard__body {
    padding: 25px;
  }
}
@media (min-width: 1199px) {
  .newsCard__description {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 150px;
    overflow: hidden;
  }
}
.newsCard__description p {
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .newsCard__description p {
    line-height: 1.4;
  }
}
.newsCard__meta {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #213C79;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 14px;
}
.newsCard__meta i {
  color: #00AEEF;
}
.newsCard__title {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #213C79;
  line-height: 1.3;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .newsCard__title {
    font-size: 20px;
  }
}
.newsCard__go {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  color: #00AEEF;
}
@media (max-width: 767px) {
  .newsCard__go {
    position: static;
    margin-left: auto;
  }
}
@media (min-width: 1199px) {
  .newsCard:hover .newsCard__img {
    height: 140px;
  }
  .newsCard:hover .newsCard__description {
    height: 0;
    opacity: 0;
  }
}

/* ===== CTA ===== */
.cta {
  position: relative;
  background-color: #1A2352;
  overflow: hidden;
  z-index: 1;
  /* decorative Figma "curve path": thin cyan arc + hollow ring, right side */
}
.cta__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}
.cta .decoWrapper {
  position: absolute;
  top: 60px;
  right: -60px;
  width: 50vw;
  height: 50vw;
}
@media (max-width: 575px) {
  .cta .decoWrapper {
    display: none;
  }
}
.cta .decoWrapper .decoRing {
  inset: 0;
  z-index: 1;
}
.cta .decoWrapper .decoDot {
  top: 26.5vw;
  right: -1vw;
  width: 2.5vw;
  height: 2.5vw;
}
@media (max-width: 992px) {
  .cta .decoWrapper .decoDot {
    border-width: 0.4vw;
  }
}
.cta .container {
  position: relative;
  z-index: 2;
}
.cta__inner {
  max-width: 640px;
}
.cta__inner h2 {
  margin-bottom: 20px;
}
.cta p {
  color: #ffffff;
  font-size: 24px;
}
@media (max-width: 1199px) {
  .cta p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .cta p {
    font-size: 18px;
  }
}

/* ===== Content block (image + text) ===== */
.contentBlock {
  background-color: #151D49;
}
.contentBlock .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contentBlock__media {
  position: relative;
}
.contentBlock__media img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.contentBlock__media .decoWrapper {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 110%;
  height: 110%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contentBlock__media .decoWrapper {
    display: none;
  }
}
.contentBlock__media .decoWrapper .decoRing {
  inset: 0;
}
.contentBlock__media .decoWrapper .decoDot {
  top: 360px;
  right: -16px;
  width: 45px;
  height: 45px;
  border-width: 2px;
}
@media (max-width: 1299px) {
  .contentBlock__media .decoWrapper .decoDot {
    top: 340px;
    right: -10px;
  }
}
@media (max-width: 1199px) {
  .contentBlock__media .decoWrapper .decoDot {
    top: 310px;
    right: 0;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 992px) {
  .contentBlock__media .decoWrapper .decoDot {
    top: 250px;
  }
}
@media (max-width: 767px) {
  .contentBlock__media .decoWrapper .decoDot {
    display: none;
  }
}
@media (min-width: 992px) {
  .contentBlock--imgLeft .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.contentBlock p {
  color: #ffffff;
}
.contentBlock ul, .contentBlock ol {
  margin-bottom: 20px;
}

/* ===== Team ===== */
.team {
  background-color: #151D49;
}

.staffCard {
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.staffCard__img {
  height: 400px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .staffCard__img {
    height: 340px;
  }
}
@media (max-width: 575px) {
  .staffCard__img {
    height: 380px;
  }
}
.staffCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
}
.staffCard__detail {
  background-color: #ffffff;
  color: #151D49;
  padding: 30px;
  border-radius: 0 0 10px 10px;
  flex: 1;
}
@media (max-width: 1199px) {
  .staffCard__detail {
    padding: 20px;
  }
}
.staffCard__name {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 4px;
  font-family: "Alike", serif;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .staffCard__name {
    font-size: 20px;
  }
}
.staffCard__role {
  color: #213C79;
  font-size: 18px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .staffCard__role {
    font-size: 16px;
    line-height: normal;
  }
}
.staffCard .textLink {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
}
.staffCard .textLink:hover {
  color: #00AEEF;
}
@media (max-width: 767px) {
  .staffCard .textLink {
    font-size: 16px;
  }
}
.staffCard:hover .staffCard__name {
  color: #00AEEF;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.lightbox-overlay .lightbox-container {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  background-color: #151D49;
  padding: 100px;
  height: 100dvh;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .lightbox-overlay .lightbox-container {
    padding: 60px 40px;
  }
}
@media (max-width: 575px) {
  .lightbox-overlay .lightbox-container {
    padding: 60px 20px;
  }
}
.lightbox-overlay .lightboxContent {
  margin-top: 50px;
}
@media (max-width: 575px) {
  .lightbox-overlay .lightboxContent {
    margin-top: 20px;
  }
}
.lightbox-overlay .lightboxContent p {
  font-size: 18px;
}
@media (max-width: 575px) {
  .lightbox-overlay .lightboxContent p {
    font-size: 16px;
  }
}
.lightbox-overlay .lightboxImg img {
  border-radius: 10px;
}
.lightbox-overlay .teamLeadTitle h3 {
  margin-bottom: 0;
}
.lightbox-overlay .teamLeadTitle h3:before {
  content: "";
  background-color: #00AEEF;
  width: 70px;
  height: 1px;
  display: block;
  margin-bottom: 20px;
}
.lightbox-overlay .closeBtn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  padding: 10px;
}
@media (max-width: 991px) {
  .lightbox-overlay .closeBtn {
    right: 20px;
  }
}
@media (max-width: 575px) {
  .lightbox-overlay .closeBtn {
    right: 0;
  }
}

.decoOrbit {
  position: absolute;
  inset: 0;
}

/* ===== History timeline ===== */
.timeline {
  background-color: #151D49;
}
.timeline .row {
  position: relative;
  z-index: 0;
  padding-bottom: 260px;
}
@media (max-width: 991px) {
  .timeline .row {
    padding-bottom: 0;
  }
}
.timeline .row:after {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.18);
  z-index: -1;
}
@media (max-width: 991px) {
  .timeline .row:after {
    left: 20px;
  }
}
.timeline .row > div {
  text-align: right;
  margin-bottom: -260px;
}
@media (max-width: 991px) {
  .timeline .row > div {
    text-align: left;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .timeline .row > div.lg-hidden {
    display: none;
  }
}
.timeline .row > div:nth-child(even) {
  text-align: left;
}
.timeline .row > div:nth-child(even) .timeline__item {
  padding-left: 10px;
  padding-right: 0px;
}
@media (max-width: 991px) {
  .timeline .row > div:nth-child(even) .timeline__item {
    padding-left: 40px;
  }
}
.timeline .row > div:nth-child(even) .timeline__item__title {
  position: relative;
}
.timeline .row > div:nth-child(even) .timeline__item__title::before {
  right: auto;
  left: -48px;
}
@media (max-width: 991px) {
  .timeline .row > div:nth-child(even) .timeline__item__title::before {
    left: -43px;
  }
}
.timeline .row > div:nth-child(even) .timeline__item__title::after {
  right: auto;
  left: -35px;
}
@media (max-width: 991px) {
  .timeline .row > div:nth-child(even) .timeline__item__title::after {
    left: -30px;
  }
}
.timeline__item {
  padding-right: 10px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .timeline__item {
    padding: 0 0 0 40px;
  }
}
.timeline__item__title {
  position: relative;
}
.timeline__item__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -48px;
  bottom: auto;
  left: auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #151D49;
  border: 3px solid #00AEEF;
  z-index: 1;
}
@media (max-width: 991px) {
  .timeline__item__title::before {
    right: auto;
    left: -43px;
  }
}
.timeline__item__title::after {
  content: "";
  position: absolute;
  top: calc(50% + 6px);
  right: -35px;
  bottom: auto;
  left: auto;
  width: 20px;
  height: 1px;
  background-color: #00AEEF;
  z-index: 1;
}
@media (max-width: 991px) {
  .timeline__item__title::after {
    right: auto;
    left: -30px;
  }
}
.timeline__item p {
  color: #ffffff;
}

/* ===== Service tiles ===== */
.serviceTiles {
  background-color: #151D49;
}

.serviceCard {
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  cursor: pointer;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .serviceCard {
    padding: 20px;
  }
}
.serviceCard h5 {
  color: #151D49;
  margin-bottom: 14px;
}
.serviceCard p {
  color: #151D49;
  font-size: 16px;
  margin-bottom: 20px;
}
.serviceCard .iconBox {
  margin-bottom: 22px;
  display: block;
  width: 90px;
}
.serviceCard .iconBox img {
  width: 100%;
  max-height: 90px;
  max-width: 95px;
  object-fit: contain;
  display: block;
}
@media (max-width: 991px) {
  .serviceCard .iconBox img {
    max-width: 60px;
    max-height: 60px;
  }
}
.serviceCard:hover {
  background-color: rgba(0, 174, 239, 0.08);
  border-color: rgba(0, 174, 239, 0.4);
  transform: translateY(-4px);
}
.serviceCard:hover h5 {
  color: #ffffff;
}
.serviceCard:hover p {
  color: #ffffff;
}

/* ===== Checkmark blocks ===== */
.checkList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checkList li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 14px;
  color: #ffffff;
}
.checkList li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  top: 2px;
  left: 0;
  color: #00AEEF;
  font-size: 15px;
}
@media (min-width: 768px) {
  .checkList--2col {
    column-count: 2;
    column-gap: 20px;
  }
}

.checkBlock {
  background-color: #151D49;
}
.checkBlock .checkList li {
  margin-bottom: 5px;
}

.card {
  background-color: #ffffff;
  color: #151D49;
  padding: 40px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .card {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .card {
    padding: 20px;
  }
}
.card .form-group label {
  color: #151D49;
}
.card .form-group .form-control {
  background-color: #fafafa;
  border-color: rgba(154, 154, 154, 0.4);
  color: #151D49;
}
.card .form-group input.form-control {
  height: 48px;
}

.btn[type=submit] {
  padding: 14px 40px;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
}

/* ===== Contact section ===== */
.contact {
  background-color: #151D49;
}

@media (max-width: 991px) {
  .contactInfo {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.contactInfo__item {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contactInfo__item + .contactInfo__item {
  margin-top: 26px;
}
@media (max-width: 991px) {
  .contactInfo__item + .contactInfo__item {
    margin-top: 0;
  }
}
.contactInfo h6 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.contactInfo p {
  color: #ffffff;
  margin: 0;
}
.contactInfo a:hover {
  color: #00AEEF;
}

.serveTiles .card {
  background-color: #ffffff;
  color: #151D49;
  padding: 100px 60px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .serveTiles .card {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .serveTiles .card {
    padding: 20px;
  }
}
.serveTiles .card .intro {
  background-color: #ffffff;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .serveTiles .card .intro {
    text-align: left;
  }
}
.serveTiles .card .intro p {
  font-size: 22px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .serveTiles .card .intro p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .serveTiles .card .intro p {
    font-size: 16px;
  }
}
.serveTiles .card .buttonOuter {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .serveTiles .card .buttonOuter {
    margin-top: 40px;
  }
}

.interest {
  background-color: #113DA1;
  padding-block: 150px;
}
@media (max-width: 991px) {
  .interest {
    padding-block: 100px;
  }
}
@media (max-width: 575px) {
  .interest {
    padding-block: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
