@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,400..900;1,400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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: #009FC2;
  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 #009FC2;
  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: #009FC2;
}
.slick-arrow:hover::before {
  color: #009FC2;
}

.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: 0;
}

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

@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) {
  .order-1 {
    order: 1;
  }
}
.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 {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  box-sizing: border-box;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}
body.scroll {
  overflow: hidden;
}
@media (max-width: 1199px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

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

.py-0 {
  padding-block: 0 !important;
}

.px-0 {
  padding-inline: 0 !important;
}

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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 25px;
}
@media (max-width: 767px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    margin: 0 0 20px;
  }
}

h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

h1,
.h1 {
  font-size: 65px;
}
@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 45px;
  }
}
@media (max-width: 479px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}

h2,
.h2 {
  font-size: 50px;
}
@media (max-width: 1199px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2,
  .h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 25px;
  }
}

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

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

h5,
.h5 {
  font-size: 24px;
}
@media (max-width: 1199px) {
  h5,
  .h5 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  h5,
  .h5 {
    font-size: 18px;
  }
}

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

p {
  line-height: 1.7;
  margin: 0 0 25px;
}
p:last-of-type {
  margin-bottom: 0;
}
p strong {
  font-weight: 700;
}
p a {
  text-decoration: underline;
}
p a:hover {
  color: #009FC2;
}

section li {
  line-height: 1.7;
}
section li strong {
  font-weight: 700;
}
section li a {
  text-decoration: underline;
}
section li a:hover {
  color: #009FC2;
}

hr {
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 1px;
  margin: 1.5rem 0;
  border: 0;
}

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

input:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}

figure {
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  outline: none !important;
  color: inherit;
}

ul {
  list-style: disc;
}

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

section ul,
section ol {
  margin-top: 20px;
  margin-bottom: 25px;
}
section ul li + li,
section ol li + li {
  margin-top: 5px;
}

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

a,
button {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

button {
  background: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

a:hover,
a:focus,
a:visited,
button,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input {
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=submit] {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

select {
  background-image: url("../images/icons/arrow_drop_down.svg");
  background-position: 97% center;
  background-repeat: no-repeat;
  background-size: 12px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*:-webkit-autofill,
*:-webkit-autofill:hover,
*:-webkit-autofill:focus,
*:-webkit-autofill:active {
  transition: all 5000s ease-in-out 0s;
  transition-property: background-color, color;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #000000;
  font-weight: 300 !important;
}

/*Number Field*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea:focus,
input:focus,
select:focus,
a:focus,
button:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.full-width {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.text-uppercase {
  text-transform: uppercase;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-Bold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/*Bootstrap CSS*/
.relative {
  position: relative;
}

.z-index {
  z-index: 1;
}

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

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

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

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

.mt-1 {
  margin-top: 1.2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-1 {
  margin-bottom: 1.2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-50 {
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .pb-50 {
    padding-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .ps-2 {
    padding-left: 2rem !important;
  }
  .pe-2 {
    padding-right: 2rem !important;
  }
  .ps-3 {
    padding-left: 3rem !important;
  }
  .pe-3 {
    padding-right: 3rem !important;
  }
  .ps-4 {
    padding-left: 4rem !important;
  }
  .pe-4 {
    padding-right: 4rem !important;
  }
  .ps-5 {
    padding-left: 5rem !important;
  }
  .pe-5 {
    padding-right: 5rem !important;
  }
}
.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-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

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

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/*Common Padding*/
.commonPY {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
  .commonPY {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .commonPY {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .commonPY {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.commonPT {
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .commonPT {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .commonPT {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .commonPT {
    padding-top: 50px;
  }
}

.commonPB {
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
  .commonPB {
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .commonPB {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .commonPB {
    padding-bottom: 50px;
  }
}

.largeParagraph.m-top {
  margin-top: 4rem;
}
@media (max-width: 991px) {
  .largeParagraph.m-top {
    margin-top: 1rem;
  }
}
.largeParagraph p {
  font-size: 30px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  .largeParagraph p {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .largeParagraph p {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .largeParagraph p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .largeParagraph p {
    font-size: 16px;
  }
}

/*Sub Title*/
.subTitle--mb-0 h2, .subTitle--mb-0 h3, .subTitle--mb-0 h4, .subTitle--mb-0 h5, .subTitle--mb-0 h6 {
  margin-bottom: 0;
}
.subTitle h6 {
  font-size: 14px;
  color: #777777;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.subTitle h6 i {
  font-size: 18px;
}
.subTitle--blue h6 {
  color: #009FC2;
}
.subTitle--white h6 {
  color: #ffffff;
}
.subTitle--yellow h6 {
  color: #FAF041;
}
.subTitle.regular h6 {
  font-weight: 400;
}

/*Title Text*/
.titleText h2, .titleText h3, .titleText h4, .titleText h5, .titleText h6 {
  color: #025677;
  font-weight: 400;
}
.titleText--mb-0 h2, .titleText--mb-0 h3, .titleText--mb-0 h4, .titleText--mb-0 h5, .titleText--mb-0 h6 {
  margin-bottom: 0;
}

/*Small Text*/
.smallText {
  font-size: 14px;
  margin-bottom: 20px;
}
.smallText--mb-0 h2, .smallText--mb-0 h3, .smallText--mb-0 h4, .smallText--mb-0 h5, .smallText--mb-0 h6 {
  margin-bottom: 0;
}
.smallText--blue h2, .smallText--blue h3, .smallText--blue h4, .smallText--blue h5, .smallText--blue h6, .smallText--blue p, .smallText--blue li {
  color: #025677;
}
.smallText--lightBlue h2, .smallText--lightBlue h3, .smallText--lightBlue h4, .smallText--lightBlue h5, .smallText--lightBlue h6, .smallText--lightBlue p, .smallText--lightBlue li {
  color: #009FC2;
}
.smallText.italic {
  font-style: italic;
}
.smallText.extraSmall {
  font-size: 12px;
}
.smallText br {
  display: block;
}

/*Heading Text*/
.headingText {
  position: relative;
}
.headingText h1, .headingText h2, .headingText h3 {
  font-family: "Besley", serif;
}
.headingText--mb-0 h2, .headingText--mb-0 h3, .headingText--mb-0 h4, .headingText--mb-0 h5, .headingText--mb-0 h6 {
  margin-bottom: 0;
}
.headingText--bordered {
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .headingText--bordered {
    padding-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  .headingText--bordered {
    padding-bottom: 1.5rem;
  }
}
.headingText--bordered * {
  margin-bottom: 0;
}
.headingText--bordered::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #08C5EF;
  width: 100px;
  height: 5px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .headingText--bordered::before {
    height: 3px;
  }
}
.headingText--lightBlue h2, .headingText--lightBlue h3, .headingText--lightBlue h4, .headingText--lightBlue h5, .headingText--lightBlue h6 {
  color: #009FC2;
}
.headingText--lightBlue h2 a, .headingText--lightBlue h3 a, .headingText--lightBlue h4 a, .headingText--lightBlue h5 a, .headingText--lightBlue h6 a {
  color: #009FC2;
}
.headingText--blue h2, .headingText--blue h3, .headingText--blue h4, .headingText--blue h5, .headingText--blue h6 {
  color: #025677;
}
.headingText--blue h2 a, .headingText--blue h3 a, .headingText--blue h4 a, .headingText--blue h5 a, .headingText--blue h6 a {
  color: #025677;
}
.headingText--white h2, .headingText--white h3, .headingText--white h4, .headingText--white h5, .headingText--white h6 {
  color: #ffffff;
}
.headingText--white h2 a, .headingText--white h3 a, .headingText--white h4 a, .headingText--white h5 a, .headingText--white h6 a {
  color: #ffffff;
}
.headingText--ltrSpacing h2, .headingText--ltrSpacing h3, .headingText--ltrSpacing h4, .headingText--ltrSpacing h5, .headingText--ltrSpacing h6 {
  letter-spacing: 0.4rem;
}
@media (max-width: 991px) {
  .headingText--ltrSpacing h2, .headingText--ltrSpacing h3, .headingText--ltrSpacing h4, .headingText--ltrSpacing h5, .headingText--ltrSpacing h6 {
    letter-spacing: 1px;
  }
}
.headingText--uppercase h2, .headingText--uppercase h3, .headingText--uppercase h4, .headingText--uppercase h5, .headingText--uppercase h6 {
  text-transform: uppercase;
}
.headingText.line-height h2, .headingText.line-height h3, .headingText.line-height h4, .headingText.line-height h5, .headingText.line-height h6 {
  line-height: 1.3;
}
.headingText.italic {
  font-style: italic;
}
.headingText.light h2, .headingText.light h3, .headingText.light h4, .headingText.light h5, .headingText.light h6 {
  font-weight: 300;
}
.headingText.regular h2, .headingText.regular h3, .headingText.regular h4, .headingText.regular h5, .headingText.regular h6 {
  font-weight: 400;
}
.headingText.medium h2, .headingText.medium h3, .headingText.medium h4, .headingText.medium h5, .headingText.medium h6 {
  font-weight: 500;
}
.headingText.semi-bold h2, .headingText.semi-bold h3, .headingText.semi-bold h4, .headingText.semi-bold h5, .headingText.semi-bold h6 {
  font-weight: 600;
}
.headingText.bold h2, .headingText.bold h3, .headingText.bold h4, .headingText.bold h5, .headingText.bold h6 {
  font-weight: 700;
}

/*Common Button*/
.buttonOuter {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .buttonOuter {
    margin-top: 20px;
  }
}
.buttonOuter.multipleButtons {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 30px;
}
@media (max-width: 767px) {
  .buttonOuter.multipleButtons {
    gap: 8px 20px;
  }
}

.btn {
  position: relative;
  background-color: transparent;
  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: 8px 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  padding: 15px 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-width: 1px;
  border-style: solid;
  border-color: #009FC2;
  border-radius: 0;
  cursor: pointer;
  -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) {
  .btn {
    font-size: 14px;
    padding: 12px 25px;
  }
}
@media (max-width: 575px) {
  .btn {
    font-size: 13px;
    padding-inline: 20px;
  }
}
.btn i {
  font-size: 16px;
}
.btn img {
  width: 24px;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .btn img {
    width: 15px;
    margin-left: 8px;
  }
}
.btn.wide {
  min-width: 150px;
}
.btn::after {
  content: "";
  position: relative;
  left: 0;
  width: 20px;
  height: 14px;
  display: inline-block;
  background-image: url("../images/icons/button-arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  background-color: #ffffff;
  color: #009FC2;
  border-color: #ffffff;
}
.btn:hover::after {
  left: 3px;
}
.btn.btn-blue {
  color: #025677;
}
.btn.btn-blue:hover {
  background-color: #025677;
  color: #ffffff;
  border-color: #025677;
}
.btn.btn-text {
  background-color: transparent;
  color: #009FC2;
  border-color: transparent;
  padding: 0;
}
.btn.btn-text-white {
  color: #ffffff;
}
.btn.btn-white {
  border-color: #ffffff;
  color: #ffffff;
}
.btn.btn-white::after {
  background-image: url("../images/icons/button-arrow-white.svg");
}
.btn.btn-white:hover {
  background-color: #025677;
  color: #ffffff;
  border-color: #025677;
}

/*Icon Listing*/
.iconListing--two ul {
  column-count: 2;
}
@media (max-width: 360px) {
  .iconListing--two ul {
    column-count: 1;
  }
}
.iconListing--three ul {
  column-count: 3;
}
@media (max-width: 767px) {
  .iconListing--three ul {
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .iconListing--three ul {
    column-count: 1;
  }
}
.iconListing--four ul {
  column-count: 4;
}
@media (max-width: 991px) {
  .iconListing--four ul {
    column-count: 3;
  }
}
@media (max-width: 767px) {
  .iconListing--four ul {
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .iconListing--four ul {
    column-count: 1;
  }
}

/*Form*/
.form-group {
  /*Checkbox*/
}
.form-group label {
  display: block;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .form-group label {
    font-size: 16px;
  }
}
.form-group .form-control {
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  border-width: 1px;
  border-style: solid;
  border-color: #009FC2;
  border-radius: 5px;
  padding: 0 20px;
}
@media (max-width: 1199px) {
  .form-group .form-control {
    height: 45px;
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .form-group .form-control {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .form-group .form-control {
    height: 40px;
  }
}
.form-group .form-control::placeholder {
  opacity: 1;
  color: #000000;
}
.form-group .form-control.form-control-line {
  background-color: transparent;
  padding-inline: 0;
  border-width: 0 0 1px;
}
.form-group .form-control.form-control-line::placeholder {
  color: #000000;
}
.form-group input[type=search].form-control,
.form-group input.search-control {
  background-image: url("../images/icons/arrow_drop_down.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 22px;
}
@media (max-width: 767px) {
  .form-group input[type=search].form-control,
  .form-group input.search-control {
    background-size: 18px;
  }
}
.form-group select.form-control {
  cursor: pointer;
}
.form-group select.form-control option {
  color: #000000;
}
.form-group textarea.form-control {
  height: 152px;
  padding-top: 20px;
  resize: none;
}
@media (max-width: 767px) {
  .form-group textarea.form-control {
    height: 130px;
  }
}
.form-group .checkbox-label {
  display: inline-flex;
  gap: 15px;
  margin: 0;
}
.form-group .checkbox-label .checkbox-input {
  display: none;
}
.form-group .checkbox-label .checkbox-input + .checkbox-icon-wrapper {
  background-color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color ease 0.3s;
}
.form-group .checkbox-label .checkbox-input + .checkbox-icon-wrapper .checkbox-icon {
  transition: opacity ease 0.3s;
  opacity: 0;
  color: #ffffff;
  font-size: 10px;
}
.form-group .checkbox-label .checkbox-input:checked + .checkbox-icon-wrapper {
  background-color: #009FC2;
  border-color: #009FC2;
}
.form-group .checkbox-label .checkbox-input:checked + .checkbox-icon-wrapper .checkbox-icon {
  opacity: 1;
}
.form-group .checkbox-text {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  cursor: pointer;
}

.form-button {
  margin-top: 30px;
}

/*Pagination*/
.pagination {
  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: 10px;
}
.pagination__button {
  background-color: #DCF5FB;
  width: 50px;
  height: 50px;
  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;
  font-size: 25px;
  color: #009FC2;
}
.pagination__button img {
  width: 100%;
}
.pagination__button:hover {
  background-color: #009FC2;
  color: #DCF5FB;
}

/*Select2 Style*/
.select2.select2-container {
  width: 100% !important;
}
.select2.select2-container .select2-selection {
  width: 100%;
  height: 55px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #025677;
  font-weight: 300;
  border: none;
  border: 1px solid #ffffff;
  border-radius: 3px;
  padding: 10px 20px;
  outline: none !important;
  transition: all 0.15s ease-in-out;
}
.select2.select2-container .select2-selection .select2-selection__rendered {
  width: 100%;
  color: #025677;
  line-height: 32px;
  padding: 0;
}
.select2.select2-container .select2-selection .select2-selection__arrow {
  background: transparent;
  border-left: 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  height: 55px;
  width: 55px;
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
  background-color: #ffffff;
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}
.select2.select2-container .select2-selection--multiple {
  position: relative;
  height: auto;
  min-height: 55px;
}
.select2.select2-container .select2-selection--multiple .select2-search--inline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  width: 100% !important;
  height: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #025677;
  font-weight: 300;
  margin-top: 0;
  margin-left: 0;
  padding-block: 15px;
  padding-inline: 20px;
}
.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 100%;
}
.select2.select2-container .select2-selection--multiple .select2-selection__choice {
  position: relative;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  height: 30px;
  font-size: 16px;
  border: 1px solid #ffffff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 0;
  padding: 0 5px 0 25px;
  line-height: 100%;
  z-index: 1;
}
.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #009FC2;
  font-weight: 700;
  font-size: 16px;
  border-color: #ffffff;
}

.form-group .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #ffffff;
}

/*Results Options*/
.select2-container .select2-dropdown {
  width: 100%;
  display: block;
  background: #ffffff;
  border-color: #ffffff;
  border-radius: 4px;
  box-sizing: border-box;
  position: absolute;
  left: -100000px;
  z-index: 1051;
}
.select2-container .select2-dropdown .select2-search--dropdown {
  display: block;
  padding: 10px;
}
.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  height: 35px;
  border-color: #ffffff;
  padding-inline: 15px;
}
.select2-container .select2-results {
  padding: 0;
}
.select2-container .select2-results ul {
  background: #ffffff;
  border: inherit;
}
.select2-container .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #ffffff;
}

.select2-container.select2-container--default .select2-results__option--selected {
  background-color: #ffffff;
}

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

/* Delay system */
.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;
}

/*Bounce*/
.bounce {
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
  -ms-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(10px);
    -o-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(10px);
    -o-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(10px);
    -o-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    -o-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(10px);
    -o-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
/*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__wrap {
  padding-inline: 5rem;
}
@media (max-width: 1699px) {
  .header__wrap {
    padding-inline: 2rem;
  }
}
@media (max-width: 1499px) {
  .header__wrap {
    padding-inline: 0;
  }
}
.header .utilityNav {
  padding: 1rem 2.5rem;
  -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: 991px) {
  .header .utilityNav {
    padding-block: 10px;
    padding-inline: 20px;
  }
}
.header .utilityNav ul {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 30px;
  list-style: none;
  padding: 0;
}
@media (max-width: 767px) {
  .header .utilityNav ul {
    gap: 5px 20px;
  }
}
@media (max-width: 575px) {
  .header .utilityNav ul {
    gap: 5px 15px;
  }
}
@media (max-width: 479px) {
  .header .utilityNav ul {
    gap: 5px 12px;
  }
}
.header .utilityNav ul li {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
}
@media (max-width: 575px) {
  .header .utilityNav ul li {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  .header .utilityNav ul li {
    font-size: 12px;
  }
}
.header .utilityNav ul li a {
  color: #ffffff;
}
.header .utilityNav ul li a:hover {
  color: #FAF041;
}
.header__inner {
  background-color: #ffffff;
  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: 0;
  border-radius: 50px;
  -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: 991px) {
  .header__inner {
    position: relative;
    padding: 15px 30px;
  }
}
@media (max-width: 767px) {
  .header__inner {
    padding-inline: 25px;
  }
}
@media (max-width: 575px) {
  .header__inner {
    padding-inline: 20px;
  }
}
.header .logo {
  position: relative;
  padding-inline: 30px;
  z-index: 1;
  -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: 1199px) {
  .header .logo {
    padding-inline: 20px;
  }
}
@media (max-width: 991px) {
  .header .logo {
    padding-inline: 0;
  }
}
.header .logo a {
  display: inline-block;
}
.header .logo img {
  max-width: 100%;
  max-height: 40px;
}
@media (max-width: 1199px) {
  .header .logo img {
    max-height: 35px;
  }
}
@media (max-width: 991px) {
  .header .logo img {
    max-height: 30px;
  }
}
@media (max-width: 575px) {
  .header .logo img {
    max-height: 25px;
  }
}
.header.active .logo {
  z-index: 101;
}
.header.hide {
  z-index: -1;
}
.header.sticky .utilityNav {
  margin-top: -55px;
}
.header.sticky .header__inner {
  margin-top: 20px;
  -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .header.sticky .header__inner {
    margin-top: 30px;
  }
}

.navigation__inner {
  background-color: transparent;
  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 {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .navigation__inner {
    background-color: #ffffff;
    position: absolute;
    top: 4.5rem;
    right: 0;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    opacity: 0;
    border-radius: 35px;
    -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.1);
    -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.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .navigation__inner > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-top: 40px;
  }
  .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__inner .headButton a {
  background-color: #FAF041;
  min-width: 145px;
  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;
  min-height: 65px;
  font-size: 20px;
  color: #025677;
  padding-inline: 25px;
  font-weight: 400;
  text-transform: uppercase;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  -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: 1499px) {
  .navigation__inner .headButton a {
    font-size: 18px;
  }
}
@media (max-width: 1299px) {
  .navigation__inner .headButton a {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .navigation__inner .headButton a {
    min-width: 100px;
    font-size: 15px;
    padding-inline: 18px;
  }
}
@media (max-width: 991px) {
  .navigation__inner .headButton a {
    font-size: 18px;
    min-height: auto;
    padding: 12px 20px;
    border-radius: 0;
  }
}
.navigation__inner .headButton a:hover {
  background-color: #025677;
  color: #ffffff;
}
@media (max-width: 991px) {
  .navigation__inner .headButton {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .navigation__inner .headButton {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .navigation__inner .headButton {
    padding-inline: 20px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar {
    height: auto;
    padding: 30px;
    overflow-y: auto;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .navigation #navbar {
    padding: 30px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .navigation #navbar {
    padding: 25px;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .navigation #navbar {
    padding-inline: 20px;
  }
}
.navigation #navbar > ul {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
  margin: 0;
}
@media (max-width: 1199px) {
  .navigation #navbar > ul {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar > ul {
    -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;
  }
}
.navigation #navbar > ul > li {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -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: 991px) {
  .navigation #navbar > ul > li {
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.navigation #navbar li {
  position: relative;
  margin: 0;
}
.navigation #navbar li > a {
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  color: #025677;
  font-weight: 400;
  padding: 0;
}
@media (max-width: 1499px) {
  .navigation #navbar li > a {
    font-size: 18px;
  }
}
@media (max-width: 1299px) {
  .navigation #navbar li > a {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .navigation #navbar li > a {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li > a {
    display: block;
    font-size: 18px;
  }
}
.navigation #navbar li .dropdownMenu {
  padding: 15px;
  border-top: 5px solid #009FC2;
  -webkit-box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .navigation #navbar li .dropdownMenu {
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navigation #navbar li .dropdownMenu li + li {
  margin-top: 12px;
}
.navigation #navbar li .dropdownMenu a {
  font-size: 16px;
  color: #000000;
  line-height: normal;
}
@media (max-width: 1199px) {
  .navigation #navbar li .dropdownMenu a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li .dropdownMenu a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li .dropdownMenu.megaMenu .container {
    padding-inline: 0;
  }
}
@media (max-width: 1199px) {
  .navigation #navbar li .dropdownMenu.megaMenu .col {
    flex: 1 0 25%;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li .dropdownMenu.megaMenu .col {
    flex: 1 0 33.3333%;
  }
}
@media (max-width: 767px) {
  .navigation #navbar li .dropdownMenu.megaMenu .col {
    flex: 1 0 50%;
  }
}
@media (max-width: 479px) {
  .navigation #navbar li .dropdownMenu.megaMenu .col {
    flex: 1 0 100%;
  }
}
.navigation #navbar li .dropdownMenu .menuTitle {
  min-height: 60px;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding-bottom: 15px;
}
.navigation #navbar li.megaMenuHolder {
  position: inherit;
}
.navigation #navbar li.dropdownHolder > a:after {
  content: "";
  border-top: #025677 5px solid;
  border-left: transparent 5px solid;
  border-right: transparent 5px solid;
  vertical-align: middle;
  margin-left: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .navigation #navbar li.dropdownHolder > a:after {
    margin-left: 5px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li.dropdownHolder > a:after {
    display: none;
  }
}
.navigation #navbar li.dropdownHolder:hover > a:after {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navigation #navbar li .navbar_menuCarot {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  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;
  height: 15px;
  margin-block: auto;
  display: none;
}
@media (max-width: 991px) {
  .navigation #navbar li .navbar_menuCarot {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
  }
}
.navigation #navbar li .navbar_menuCarot svg {
  -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 li .navbar_menuCarot svg path {
  fill: #025677;
  -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 li:hover > a, .navigation #navbar li.active > a {
  color: #009FC2;
}
.navigation #navbar li:hover > a:after, .navigation #navbar li.active > a:after {
  border-top-color: #009FC2;
}
@media (min-width: 992px) {
  .navigation #navbar li:hover .navbar_menuCarot svg, .navigation #navbar li.active .navbar_menuCarot svg {
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .navigation #navbar li:hover .navbar_menuCarot svg path, .navigation #navbar li.active .navbar_menuCarot svg path {
    fill: #009FC2;
  }
}
@media (min-width: 992px) {
  .navigation #navbar li.dropdownHolder .dropdownMenu {
    background-color: #ffffff;
    width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    -moz-transform: translate(0, 30px);
    -o-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 99;
  }
  .navigation #navbar li.dropdownHolder .dropdownMenu.megaMenu {
    width: 100%;
    padding: 40px 0;
  }
  .navigation #navbar li.dropdownHolder:hover .dropdownMenu {
    -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;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li.dropdownHolder {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .navigation #navbar li.dropdownHolder .navbar_menuCarot {
    top: 3px;
    right: 0;
    background-color: transparent;
    width: 18px;
    height: 18px;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
    margin-block: 0;
  }
  .navigation #navbar li.dropdownHolder .navbar_menuCarot svg {
    width: 10px;
  }
  .navigation #navbar li.dropdownHolder .navbar_menuCarot.active svg {
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .navigation #navbar li.dropdownHolder .dropdownMenu {
    display: none;
    width: 100%;
    padding: 5px 0 0 15px;
  }
  .navigation #navbar li.dropdownHolder .dropdownMenu::before {
    content: none;
  }
  .navigation #navbar li.dropdownHolder:hover .navbar__menuCarot svg {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/*Mobile Navigation*/
.menuIcon {
  position: relative;
  width: 30px;
  height: 25px;
  display: none;
  cursor: pointer;
  margin-left: auto;
}
@media (max-width: 991px) {
  .menuIcon {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
.menuIcon span {
  position: relative;
  background-color: #009FC2;
  width: 100%;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menuIcon span:nth-child(2) {
  width: 80%;
  margin: 8px 0;
  margin-left: auto;
}
.menuIcon.active {
  z-index: 101;
}
.menuIcon.active span:nth-child(1) {
  -moz-transform: rotate(45deg) translate(8px, 8px);
  -o-transform: rotate(45deg) translate(8px, 8px);
  -ms-transform: rotate(45deg) translate(8px, 8px);
  -webkit-transform: rotate(45deg) translate(8px, 8px);
  transform: rotate(45deg) translate(8px, 8px);
}
.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);
}

/*Leadership and Staff Asidebar*/
.staffInfo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: right 0.5s ease, opacity 0.5s ease;
}
.staffInfo .closeButton {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  z-index: 103;
}
.staffInfo .closeButton img {
  width: 100%;
}
.staffInfo .staffInfoInner {
  position: absolute;
  top: 0;
  right: -100%;
  background-color: rgba(6, 49, 68, 0.97);
  width: 100%;
  max-width: 700px;
  height: 100%;
  padding: 100px 0 40px;
  z-index: 102;
  -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: 1199px) {
  .staffInfo .staffInfoInner {
    max-width: 580px;
  }
}
@media (max-width: 767px) {
  .staffInfo .staffInfoInner {
    max-width: 480px;
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .staffInfo .staffInfoInner {
    max-width: 90%;
    padding-bottom: 20px;
  }
}
.staffInfo .informationData {
  height: 100%;
  padding: 0 50px;
  overflow: auto;
}
@media (max-width: 767px) {
  .staffInfo .informationData {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .staffInfo .informationData {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 479px) {
  .staffInfo .informationData {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.staffInfo .informationData__image img {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 1199px) {
  .staffInfo .informationData__image img {
    max-width: 250px;
  }
}
@media (max-width: 479px) {
  .staffInfo .informationData__image img {
    max-width: 220px;
  }
}
.staffInfo .informationData__bio {
  padding-top: 20px;
  color: #ffffff;
}
.staffInfo .informationData__bio h5 {
  margin-bottom: 0;
}
.staffInfo .informationData__bio h6 {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0 0;
}
@media (max-width: 1199px) {
  .staffInfo .informationData__bio h6 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .staffInfo .informationData__bio h6 {
    font-size: 14px;
  }
}
.staffInfo .informationData__disc {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .staffInfo .informationData__disc {
    padding-top: 10px;
  }
}
.staffInfo.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.staffInfo.active .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.staffInfo.active .staffInfoInner {
  right: 0;
}

/*Footer*/
.footer {
  background-color: #063144;
}
@media (max-width: 575px) {
  .footer .footerLogo {
    text-align: center;
  }
}
.footer .footerLogo a {
  display: inline-block;
  vertical-align: middle;
}
.footer .footerLogo a img {
  max-height: 60px;
}
@media (max-width: 1299px) {
  .footer .footerLogo a img {
    max-height: 50px;
  }
}
@media (max-width: 1199px) {
  .footer .footerLogo a img {
    max-height: 45px;
  }
}
@media (max-width: 991px) {
  .footer .footerLogo a img {
    max-height: 40px;
  }
}
.footer .footerText {
  font-family: "Besley", serif;
}
.footer .footerText h5, .footer .footerText h6 {
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .footer .footerText {
    text-align: right;
  }
}
@media (max-width: 575px) {
  .footer .footerText {
    text-align: center;
  }
}
.footer .footerLinks {
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 300;
  margin-left: auto;
}
@media (max-width: 991px) {
  .footer .footerLinks {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 575px) {
  .footer .footerLinks {
    margin-left: 0;
    margin-top: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer .footerLinks a {
  display: inline-block;
}
.footer .footerLinks a:hover {
  text-decoration: underline;
}
.footer .footerLinks ul, .footer .footerLinks ol {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding-left: 0;
}
@media (max-width: 991px) {
  .footer .footerLinks ul, .footer .footerLinks ol {
    gap: 30px;
  }
}
.footer .footerLinks ul li, .footer .footerLinks ol li {
  font-size: 12px;
  font-weight: 300;
}
@media (max-width: 575px) {
  .footer .copyRight {
    text-align: center;
  }
}
.footer .copyRight p {
  font-size: 12px;
  font-weight: 300;
}
.footer .footerButton {
  margin-left: auto;
}
@media (max-width: 575px) {
  .footer .footerButton {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .footer .footerButton .btn {
    min-width: 100%;
  }
}
.footer .socialMedia {
  margin-left: auto;
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .footer .socialMedia {
    margin-right: auto;
    margin-top: 20px;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .footer .socialMedia {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer .socialMedia a {
  font-size: 18px;
  display: inline-block;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .socialMedia a:hover {
  color: #009FC2;
}
.footer__top {
  padding: 50px 0;
}
@media (max-width: 991px) {
  .footer__top {
    padding: 40px 0;
  }
}
.footer__top .row {
  --bs-gutter-y: 3rem;
}
@media (max-width: 575px) {
  .footer__top .row {
    --bs-gutter-y: 1.5rem;
  }
}
.footer__top .footerLinks {
  display: block;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .footer__top .footerLinks {
    padding-left: 3rem;
  }
}
.footer__top .footerLinks ul, .footer__top .footerLinks ol {
  display: block;
  column-count: 2;
}
.footer__top .footerLinks ul li, .footer__top .footerLinks ol li {
  font-size: 18px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .footer__top .footerLinks ul li, .footer__top .footerLinks ol li {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .footer__top .footerLinks ul li, .footer__top .footerLinks ol li {
    font-size: 14px;
  }
}
.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/*Bg Colors*/
.blackBg {
  background-color: #000000;
}

.whiteBg {
  background-color: #ffffff;
}

.blueBg {
  background-color: #009FC2;
}

.darkBlueBg {
  background-color: #025677;
}

.blackColor {
  color: #000000;
}

.blueColor {
  color: #025677;
}

/*Gradient*/
.smallGradientBg {
  background: #D4F7FF;
  background: linear-gradient(10deg, rgba(212, 247, 255, 0) 85%, rgb(212, 247, 255) 100%);
}

.gradientBg {
  background: #D4F7FF;
  background: linear-gradient(10deg, rgba(212, 247, 255, 0) 60%, rgb(212, 247, 255) 100%);
}

.darkGradientBg {
  background: #ffffff;
  background: linear-gradient(10deg, rgb(255, 255, 255) 30%, rgb(212, 247, 255) 100%);
}

/*Hero Image & Video Section*/
.heroBanner {
  position: relative;
  background-color: #025677;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100dvh;
  min-height: 700px;
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow-x: visible;
}
@media (max-width: 1199px) {
  .heroBanner {
    min-height: 650px;
  }
}
@media (max-width: 991px) {
  .heroBanner {
    height: 100%;
    min-height: 600px;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .heroBanner {
    min-height: 500px;
    padding-top: 10rem;
  }
}
@media (max-width: 575px) {
  .heroBanner {
    min-height: 450px;
  }
}
.heroBanner video,
.heroBanner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  vertical-align: middle;
}
.heroBanner .placeholderImg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.heroBanner .z-index {
  position: relative;
  z-index: 4;
}
.heroBanner__bgImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.heroBanner.gradient::after, .heroBanner.gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.heroBanner.gradient::after {
  width: 100%;
  height: 120px;
  background: #025677;
  background: linear-gradient(0deg, rgba(2, 86, 119, 0) 0%, rgb(2, 86, 119) 100%);
}
@media (max-width: 767px) {
  .heroBanner.gradient::after {
    height: 100px;
  }
}
@media (max-width: 575px) {
  .heroBanner.gradient::after {
    height: 80px;
  }
}
@media (max-width: 479px) {
  .heroBanner.gradient::after {
    height: 50px;
  }
}
.heroBanner.gradient::before {
  background-color: rgba(6, 49, 68, 0.8);
  width: 50%;
  height: 100%;
}
@media (max-width: 991px) {
  .heroBanner.gradient::before {
    width: 100%;
  }
}
.heroBanner__content {
  position: relative;
}
.heroBanner__content h1 {
  font-family: "Besley", serif;
  font-weight: 400;
  margin-bottom: 0;
}
.heroBanner__content h6 {
  font-size: 14px;
  color: #FAF041;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .heroBanner__content h6 {
    font-size: 13px;
  }
}
.heroBanner__content p {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .heroBanner__content p {
    margin-top: 20px;
  }
}
.heroBanner--inner {
  background-color: #025677;
  height: auto;
  min-height: 600px;
}
@media (min-width: 992px) {
  .heroBanner--inner {
    padding-bottom: 5rem;
  }
}
@media (max-width: 1199px) {
  .heroBanner--inner {
    min-height: 550px;
  }
}
@media (max-width: 991px) {
  .heroBanner--inner {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .heroBanner--inner {
    min-height: 450px;
  }
}
@media (max-width: 575px) {
  .heroBanner--inner {
    min-height: 420px;
  }
}
.heroBanner--inner.gradient::before {
  background-color: #025677;
}
@media (max-width: 991px) {
  .heroBanner--inner.gradient::before {
    background-color: rgba(6, 49, 68, 0.8);
  }
}
.heroBanner--inner .placeholderImg {
  width: 50%;
}
@media (max-width: 991px) {
  .heroBanner--inner .placeholderImg {
    width: 100%;
  }
}
.heroBanner--inner .heroBanner__content h1 {
  font-family: "Inter", sans-serif;
}
.heroBanner--inner .heroBanner__content h1 span, .heroBanner--inner .heroBanner__content h1 em {
  font-family: "Besley", serif;
  font-style: italic;
  color: #A2EAFA;
}
.heroBanner--inner .heroBanner__content h1 span.white, .heroBanner--inner .heroBanner__content h1 em.white {
  color: #ffffff;
}
.heroBanner--inner .heroBanner__content h6 {
  font-family: "Besley", serif;
  font-size: 20px;
  color: #7CC8D8;
  text-transform: none;
  letter-spacing: normal;
}
@media (max-width: 1199px) {
  .heroBanner--inner .heroBanner__content h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .heroBanner--inner .heroBanner__content h6 {
    font-size: 16px;
  }
}
.heroBanner--inner .heroBanner__content .subTitle {
  margin-top: 20px;
}
.heroBanner--inner .heroBanner__content .subTitle h6 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*Hero Slider*/
.heroSlider {
  width: 100%;
  height: 100%;
  padding: 0;
}
@media (max-width: 991px) {
  .heroSlider {
    height: 600px;
  }
}
.heroSlider .slick-list,
.heroSlider .slick-track {
  height: 100%;
}
.heroSlider .hero-item {
  position: relative;
}
.heroSlider .hero-item::after, .heroSlider .hero-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.heroSlider .hero-item::after {
  width: 100%;
  height: 120px;
  background: #025677;
  background: linear-gradient(0deg, rgba(2, 86, 119, 0) 0%, rgb(2, 86, 119) 100%);
}
.heroSlider .hero-item::before {
  background-color: rgba(6, 49, 68, 0.8);
  width: 50%;
  height: 100%;
}
@media (max-width: 991px) {
  .heroSlider .hero-item::before {
    width: 100%;
  }
}
.heroSlider .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 991px) {
  .heroSlider .hero-content {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .heroSlider .hero-content {
    padding-top: 10rem;
  }
}

.heroArrows {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #D4F7FF;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
}
.heroArrows .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;
  border: 0;
}
.heroArrows .slick-arrow img {
  width: 15px;
}
@media (max-width: 1199px) {
  .heroArrows .slick-arrow img {
    width: 12px;
  }
}
.heroArrows .slick-arrow::before {
  display: none;
}
.heroArrows .slick-arrow.hero-prev img {
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/*Fluid Slider with Arrow Style*/
.fluidSlider {
  padding-bottom: 50px;
}
.fluidSlider::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: calc(100% - 120px);
  height: 1px;
}
.fluidSlider .slick-arrow {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  top: initial;
  bottom: 0;
}
.fluidSlider .slick-arrow.slick-prev {
  background-image: url("../images/icons/left-arrow.svg");
  left: initial;
  right: 50px;
}
.fluidSlider .slick-arrow.slick-next {
  background-image: url("../images/icons/right-arrow.svg");
  right: 0;
}
.fluidSlider .slick-arrow::before {
  display: none;
}

/*Intro*/
.intro--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .intro__img {
    padding-right: 3rem;
  }
}
.intro__img iframe, .intro__img video {
  height: 550px;
}
@media (max-width: 991px) {
  .intro__img iframe, .intro__img video {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .intro__img iframe, .intro__img video {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .intro__img iframe, .intro__img video {
    height: 300px;
  }
}

/*FAQ*/
.faq__accordionBlock {
  padding-top: 50px;
}
.faq__accordion {
  border-bottom: 2px solid #E1F2FE;
  padding-block: 20px;
}
.faq__accordion:first-child {
  padding-top: 0;
}
.faq__fullWidth {
  border-color: rgba(0, 0, 0, 0.2);
  padding-block: 20px;
}
.faq .accordion-btn {
  width: 100%;
  text-align: left;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 0;
}
.faq .accordion-btn h4, .faq .accordion-btn h5, .faq .accordion-btn h6 {
  -webkit-box-flex: 0;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 0;
}
.faq .accordion-btn .icon {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #009FC2;
  text-align: center;
  margin-right: 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: 1199px) {
  .faq .accordion-btn .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .faq .accordion-btn .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.faq .accordion-btn .icon::before {
  content: "+";
  font-family: "Font Awesome 7 Free";
  font-size: 24px;
  font-weight: 900;
}
@media (max-width: 991px) {
  .faq .accordion-btn .icon::before {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .faq .accordion-btn .icon::before {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .faq .accordion-btn .icon::before {
    font-size: 18px;
  }
}
.faq .accordion-btn .icon--arrow::before {
  content: "\f078";
}
.faq .accordion-btn.active .icon {
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq .accordion-btn.active .icon--arrow {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq .accordion-content {
  padding-block: 10px;
}
.faq .accordion-content ul, .faq .accordion-content ol {
  margin-top: 25px;
}
.faq .accordion-content img {
  width: 100%;
}
.faq .accordion-content .buttonOuter {
  margin-top: 15px;
}
.faq .faq__fullWidth .accordion-content {
  padding-block: 25px;
}

/*Full Width Slider*/
.fullWidhtSlider .slick-list {
  width: 100vw;
  padding-block: 5px;
  margin-left: -15px;
}

/* Custom Arrow base */
.custom-arrow {
  position: absolute;
  top: 50%;
  border: none;
  margin: 0;
  cursor: pointer;
  z-index: 10;
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.custom-arrow::before {
  display: none;
}
.custom-arrow.events-prev {
  left: 20px;
}
.custom-arrow.events-next {
  right: 20px;
}
.custom-arrow:disabled {
  display: none;
}

/*Events Slider*/
.eventsSlider .slick-list {
  margin-left: -7px;
}
.eventsSlider .slick-list .slick-track {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  margin-left: inherit;
}
.eventsSlider .slick-list .slick-slide {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  height: auto;
}
.eventsSlider .slick-list .slick-slide .eventsCard {
  background-color: #ffffff;
  height: 100%;
}

/*Events*/
.featuredEvents .row {
  --bs-gutter-y: 1rem;
}
@media (min-width: 1200px) {
  .featuredEvents .row {
    --bs-gutter-x: 1.5rem;
  }
}

.upcomingEvents {
  overflow: hidden;
}
.upcomingEvents::after {
  content: "";
  background: linear-gradient(to right, rgba(0, 159, 194, 0) 0%, rgba(0, 159, 194, 0.8) 55%, rgb(0, 159, 194) 100%);
  position: absolute;
  top: 0;
  right: 0;
  width: 225px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.eventsCard {
  margin: 0 15px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.eventsCard.px-0 {
  padding-inline: 0;
}
.eventsCard__img {
  width: 100%;
  height: 250px;
}
.eventsCard__img img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
  object-fit: cover;
}
.eventsCard__body {
  background-color: #ffffff;
  color: #000000;
  padding: 30px;
}
@media (max-width: 991px) {
  .eventsCard__body {
    padding: 20px;
  }
}
.eventsCard__body * {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.eventsCard__body .headingText a:hover {
  color: #009FC2;
}
.eventsCard__body .headingText > * {
  margin-bottom: 15px;
}
.eventsCard:hover h6 {
  color: #DD0C0B;
}

.additionalFeaturedEvents {
  padding-top: 50px;
}
.additionalFeaturedEvents .smallText {
  margin: 10px 0 0;
}
.additionalFeaturedEvents .buttonOuter {
  margin-top: 10px;
}

/*Additional Events*/
.additionalEvents::after {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 55%, rgb(255, 255, 255) 100%);
  position: absolute;
  top: 0;
  right: 0;
  width: 225px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/*Quick Links*/
.quickLinks .linkAnchor {
  position: relative;
  width: 100%;
  text-align: left;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.quickLinks .linkAnchor h4, .quickLinks .linkAnchor h5, .quickLinks .linkAnchor h6 {
  -webkit-box-flex: 0;
  -ms-flex: 1;
  flex: 1;
  font-weight: 400;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.quickLinks .linkAnchor .icon {
  position: relative;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.quickLinks .linkAnchor:hover h4, .quickLinks .linkAnchor:hover h5, .quickLinks .linkAnchor:hover h6 {
  color: #009FC2;
}
.quickLinks .linkAnchor:hover .icon {
  left: 5px;
}

/*Content Grid Blocks*/
.contentGridBlock .row {
  --bs-gutter-y: 3rem;
}
@media (min-width: 1200px) {
  .contentGridBlock .row {
    --bs-gutter-x: 3rem;
  }
}
.contentGridBlock .blockImage img {
  width: 100%;
  height: 100%;
}
.contentGridBlock .blockContent {
  padding: 30px 0 0;
}

/*Leadership*/
.leadership .openBio {
  cursor: pointer;
}
.leadership__inner {
  margin-top: 5rem;
}
@media (max-width: 991px) {
  .leadership__inner {
    margin-top: 4rem;
  }
}
@media (max-width: 575px) {
  .leadership__inner {
    margin-top: 2rem;
  }
}
.leadership__inner:first-child {
  margin-top: 0;
}
.leadership__inner .row {
  --bs-gutter-y: 40px;
}
.leadership__inner .headingText * {
  margin-bottom: 0;
}
.leadership__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
@media (max-width: 479px) {
  .leadership__image {
    height: auto;
  }
}
.leadership__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.leadership__bio {
  padding-top: 15px;
}
.leadership__bio h5 {
  margin-bottom: 0;
}
.leadership__bio h6 {
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  margin: 10px 0 0;
}
@media (max-width: 1199px) {
  .leadership__bio h6 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .leadership__bio h6 {
    font-size: 14px;
  }
}
@media (max-width: 399px) {
  .leadership .row-cols-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}

/*CTA*/
.cta__inner {
  background-color: #009FC2;
  padding: 50px;
  text-align: center;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .cta__inner {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .cta__inner {
    padding: 30px;
    border-radius: 15px;
  }
}
@media (max-width: 575px) {
  .cta__inner {
    border-radius: 10px;
  }
}
.cta__inner p {
  width: 100%;
  max-width: 80%;
  font-size: 22px;
  font-weight: 300;
  margin-inline: auto;
}
@media (max-width: 1199px) {
  .cta__inner p {
    max-width: 90%;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cta__inner p {
    max-width: 100%;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .cta__inner p {
    font-size: 16px;
  }
}

/*Content Block*/
.contentBlockInner + .contentBlockInner {
  margin-top: 5rem;
}
@media (max-width: 1199px) {
  .contentBlockInner + .contentBlockInner {
    margin-top: 3rem;
  }
}
.contentBlockInner .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contentBlockInner:nth-child(even) .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .contentBlockInner:nth-child(even) .contentBlockContent {
    padding-left: 0;
    padding-right: 2rem;
  }
}
.contentBlockInner .contentBlockImage img {
  width: 100%;
}
@media (max-width: 991px) {
  .contentBlockInner .contentBlockImage {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .contentBlockInner .contentBlockContent {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .contentBlockInner .contentBlockContent {
    margin-top: 15px;
  }
}

/*Big Stats*/
.bigStats .bigStatsInner {
  padding: 50px 0;
  border-bottom: 3px solid #E1F2FE;
  margin: 0;
}
.bigStats .bigStatsInner .headingText h2 {
  font-size: 150px;
}
@media (max-width: 1299px) {
  .bigStats .bigStatsInner .headingText h2 {
    font-size: 140px;
  }
}
@media (max-width: 1199px) {
  .bigStats .bigStatsInner .headingText h2 {
    font-size: 120px;
  }
}
@media (max-width: 991px) {
  .bigStats .bigStatsInner .headingText h2 {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .bigStats .bigStatsInner .headingText h2 {
    font-size: 80px;
  }
}
@media (min-width: 1200px) {
  .bigStats .bigStatsInner > .row {
    --bs-gutter-x: 3rem;
  }
}
@media (min-width: 992px) {
  .bigStats .bigStatsInner .headingText {
    text-align: right;
  }
}
.bigStats .bigStatsInner:nth-child(even) .headingText {
  text-align: left;
}
@media (min-width: 992px) {
  .bigStats .bigStatsInner:nth-child(even) .largeParagraph {
    text-align: right;
  }
}

/*Checkmarks*/
.checkmarks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem 5rem;
}
@media (max-width: 991px) {
  .checkmarks {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem 3rem;
  }
}
@media (max-width: 767px) {
  .checkmarks {
    grid-gap: 2rem 1rem;
  }
}
.checkmarks .item {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.checkmarks .checkIcon {
  width: 80px;
  height: 80px;
  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-color: #FAF041;
  border: 1px solid #FAF041;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .checkmarks .checkIcon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .checkmarks .checkIcon {
    width: 50px;
    height: 50px;
  }
}
.checkmarks .checkIcon img {
  max-width: 30px;
}
@media (max-width: 991px) {
  .checkmarks .checkIcon img {
    max-width: 25px;
  }
}
@media (max-width: 767px) {
  .checkmarks .checkIcon img {
    max-width: 20px;
  }
}
.checkmarks .checkText {
  width: calc(100% - 80px);
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .checkmarks .checkText {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .checkmarks .checkText {
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .checkmarks .checkText {
    width: calc(100% - 50px);
  }
}

/*Video*/
.video_wrapper {
  width: 100%;
  overflow: hidden;
}
.video_wrapper video,
.video_wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
}

/*Linear Block*/
@media (min-width: 992px) {
  .linearBlock__inner > .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}
@media (min-width: 1200px) {
  .linearBlock__inner > .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
  }
}
.linearBlock__inner + * {
  margin-top: 50px;
}
.linearBlock__img img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
  object-fit: cover;
}
.linearBlock__content {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .linearBlock__content {
    margin-top: 20px;
  }
}

/*Timeline*/
.timeline .timeline-item {
  padding-block: 20px;
  border-bottom: 3px solid #E1F2FE;
}
.timeline .timeline-item:first-child {
  padding-top: 0;
}
.timeline .timeline-item .titleText {
  margin-bottom: 10px;
}

/*Quote*/
.quote .quoteSlider .slick-slide {
  opacity: 0.4;
}
.quote .quoteSlider .slick-slide.slick-active {
  opacity: 1;
}
.quote .quoteSlider__quote {
  position: relative;
  background-color: #EDFCFF;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  margin: 0 20px;
  padding: 40px;
  border: 0;
  border-radius: 20px;
}
@media (max-width: 1599px) {
  .quote .quoteSlider__quote {
    padding: 35px;
  }
}
@media (max-width: 991px) {
  .quote .quoteSlider__quote {
    border-radius: 15px;
  }
}
@media (max-width: 767px) {
  .quote .quoteSlider__quote {
    margin: 0 10px;
    padding: 20px;
    border-radius: 10px;
  }
}
.quote .quoteSlider__quote .quoteIcon {
  width: 80px;
  padding: 10px;
}
@media (max-width: 1199px) {
  .quote .quoteSlider__quote .quoteIcon {
    width: 60px;
  }
}
@media (max-width: 767px) {
  .quote .quoteSlider__quote .quoteIcon {
    width: 40px;
    padding: 5px;
  }
}
.quote .quoteSlider__quote .quoteIcon img {
  width: 100%;
}
.quote .quoteSlider__quote .quoteContent {
  width: calc(100% - 80px);
  padding: 30px 0 0 30px;
}
@media (max-width: 1199px) {
  .quote .quoteSlider__quote .quoteContent {
    width: calc(100% - 60px);
    padding: 20px 0 0 15px;
  }
}
@media (max-width: 767px) {
  .quote .quoteSlider__quote .quoteContent {
    width: calc(100% - 40px);
    padding: 10px 0 0 5px;
  }
}
.quote .quoteSlider__quote .quoteContent h5 {
  font-family: "Besley", serif;
}
.quote .quoteSlider__quote .quoteContent .smallText {
  margin-bottom: 10px;
}
.quote .quoteSlider__quote .quoteContent .rating img {
  max-height: 16px;
}
.quote .sliderButtons {
  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: 20px;
  margin-top: 40px;
}
.quote .sliderButtons .quote-arrow {
  background-color: transparent;
  padding: 0;
  border: 0;
}

/*External Upcoming Events*/
.externalUpcomingEvents .row {
  --bs-gutter-y: 2rem;
}
.externalUpcomingEvents .eventsCard {
  margin: 0;
}

/*committees*/
.committeesFaq .accordion-content .buttonOuter {
  margin-top: 30px;
}

/*In This Section*/
.thisSection .row {
  --bs-gutter-y: 1rem;
}
@media (min-width: 1200px) {
  .thisSection .row {
    --bs-gutter-x: 1.5rem;
  }
}

/*Contact Form*/
@media (max-width: 991px) {
  .contactForm {
    margin-top: 40px;
  }
}
.contactForm .row {
  --bs-gutter-y: 20px;
}

.map {
  width: 100%;
  height: 350px;
}
@media (max-width: 991px) {
  .map {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .map {
    margin-top: 30px;
  }
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  vertical-align: middle;
  -o-object-fit: cover;
  object-fit: cover;
}

/*News*/
.news .row {
  --bs-gutter-y: 5rem;
}
@media (max-width: 767px) {
  .news .row {
    --bs-gutter-y: 3rem;
  }
}

.newsCard {
  height: 100%;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.newsCard .headingText a:hover {
  color: #009FC2;
}
.newsCard p {
  color: #000000;
}
.newsCard .btn-text {
  color: #025677;
}
.newsCard .btn-text:hover {
  color: #009FC2;
}
.newsCard .buttonOuter {
  margin-top: auto;
}

.newsFeatured .row {
  --bs-gutter-y: 4rem;
}
@media (max-width: 767px) {
  .newsFeatured .row {
    --bs-gutter-y: 3rem;
  }
}
.newsFeatured .newsCard .headingText a:hover {
  color: #FAF041;
}
.newsFeatured .newsCard p {
  color: #ffffff;
}
.newsFeatured .newsCard .btn-text {
  color: #ffffff;
}
.newsFeatured .newsCard .btn-text::after {
  background-image: url("../images/icons/button-arrow-white.svg");
}
.newsFeatured .newsCard .btn-text:hover {
  color: #FAF041;
}
.newsFeatured .newsCard .btn-text:hover::after {
  filter: drop-shadow(2px 4px 6px #000000);
}

/*News Artical*/
.newsArticle h1, .newsArticle h2, .newsArticle h3, .newsArticle h4, .newsArticle h5, .newsArticle h6 {
  color: #025677;
}
.newsArticle p, .newsArticle li {
  color: #000000;
}
.newsArticle .video_wrapper {
  margin: 30px 0;
}
@media (min-width: 992px) {
  .newsArticle .contentBlockInner .contentBlockContent {
    padding-left: 0;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .newsArticle .contentBlockInner:nth-child(even) .contentBlockContent {
    padding-left: 2rem;
    padding-right: 0;
  }
}

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