.section {
  padding: 100px 0px 0;
}

html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

main {
  overflow-x: hidden;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: 48px;
  line-height: 1.2em;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 991px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 36px;
  line-height: 1.2em;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 991px) {
  h2 {
    font-size: 28px;
    line-height: 1.3em;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.2em;
  margin-bottom: 15px;
  font-weight: 700;
}
@media (max-width: 991px) {
  h3 {
    font-size: 20px;
    line-height: 1.4em;
  }
}

h4 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 15px;
  font-weight: 700;
}
@media (max-width: 991px) {
  h4 {
    font-size: 16px;
    line-height: 1.6em;
  }
}

h5 {
  margin-bottom: 15px;
  font-weight: 700;
}

h6 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.pre-heading {
  color: #25B2E6;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #101010;
  margin: 0;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  p {
    font-size: 14px;
  }
}

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

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

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

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

.text-muted {
  color: #d1d9e6;
}

.text-highlight {
  color: #00b4d8;
}

html {
  font-family: "Plus Jakarta Sans", sans-serif;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes countUp {
  from {
    counter-reset: count 0;
  }
  to {
    counter-reset: count var(--final-count);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.container {
  max-width: 1310px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 100px 0px 0;
}

@media (max-width: 575.98px) {
  .section {
    padding-top: 40px 0px;
    padding-bottom: 40px 0px;
  }
}
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}
.nav--scrolled {
  background: #0d2244;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav__logo {
  height: 80px;
  display: flex;
  align-items: center;
}
.nav__menu {
  display: flex;
  align-items: center;
}
.nav__menu--item {
  position: relative;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  transition: color all 0.3s ease;
}
.nav__menu--item:hover, .nav__menu--item:focus {
  color: #00b4d8;
}
.nav__menu--item--dropdown:hover .nav__submenu {
  display: block;
}
.nav__menu__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d2244;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 900;
}
.nav__menu__submenu--item {
  padding: 10px 15px;
  color: #ffffff;
}
.nav__menu__submenu--item:hover {
  background: #90e0ef;
}
.nav__cta {
  margin-left: auto;
}
.nav__cta--button {
  margin-right: 15px;
}
.nav__hamburger {
  display: none;
}
@media (min-width: 576px) {
  .nav__hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    display: none;
  }
  .nav__drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d2244;
    transform: translateX(-100%);
    transition: transform all 0.3s ease;
  }
  .nav__drawer--open {
    transform: translateX(0);
  }
  .nav__drawer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    cursor: pointer;
  }
  .nav__drawer__menu {
    display: flex;
    flex-direction: column;
  }
  .nav__drawer__menu--item {
    padding: 15px 20px;
    color: #ffffff;
  }
  .nav__drawer__menu--item:hover {
    background: #90e0ef;
  }
}
.footer {
  background: #16345A;
  color: #ffffff;
  padding: 0px 0;
}
.footer__columns {
  display: flex;
  gap: 0px;
}
@media (max-width: 991px) {
  .footer__columns {
    flex-wrap: wrap;
    gap: 0px;
  }
}
.footer__column {
  flex: 1 1 33.333%;
  width: 33.333%;
}
@media (max-width: 991px) {
  .footer__column {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.footer h5 {
  margin-bottom: 20px;
  font-size: 20px;
}
.footer .footer-top-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
@media (max-width: 991px) {
  .footer .footer-top-block {
    border-bottom: none;
    padding: 15px 0px 0px;
  }
}
.footer .footer-top-block .footer__column-01 {
  max-width: 30%;
  padding: 50px 0px;
  padding-right: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}
@media (max-width: 991px) {
  .footer .footer-top-block .footer__column-01 {
    max-width: 100%;
    padding: 30px 0px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }
}
.footer .footer-top-block .footer__column-01 p {
  max-width: 90%;
  font-size: 14px;
}
.footer .footer-top-block .footer__column-02 {
  max-width: 50%;
  padding: 50px 0px;
  padding-right: 40px;
  padding-left: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}
@media (max-width: 991px) {
  .footer .footer-top-block .footer__column-02 {
    padding-left: 0px;
    max-width: 100%;
    padding: 30px 0px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }
}
.footer .footer-top-block .footer__column-02 ul li {
  width: calc(25% - 4px);
  display: inline-flex;
  margin-bottom: 12px;
}
@media (max-width: 1190px) {
  .footer .footer-top-block .footer__column-02 ul li {
    width: calc(33.333% - 4px);
  }
}
@media (max-width: 991px) {
  .footer .footer-top-block .footer__column-02 ul li {
    width: calc(50% - 4px);
  }
}
.footer .footer-top-block .footer__column-02 ul li:last-child {
  margin-bottom: 0px;
}
.footer .footer-top-block .footer__column-02 ul li a {
  color: #ffffff;
  transition: all 0.6s;
}
.footer .footer-top-block .footer__column-02 ul li a:hover {
  color: #25B2E6;
  transition: all 0.6s;
}
.footer .footer-top-block .footer__column-03 {
  max-width: 20%;
  padding: 50px 0px;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .footer .footer-top-block .footer__column-03 {
    max-width: 100%;
    padding-left: 0px;
    padding: 30px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }
}
.footer__logo {
  margin-bottom: 30px;
}
.footer ul.social li {
  width: 100%;
  display: flex;
  margin-bottom: 12px;
  gap: 10px;
  align-items: center;
}
.footer ul.social li:last-child {
  margin-bottom: 0px;
}
.footer ul.social li .icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border: solid 1px #25B2E6;
  border-radius: 100px;
}
.footer ul.social li .icon.facebook {
  background: url(../img/facebook.svg) no-repeat center;
  background-size: 61%;
}
.footer ul.social li .icon.linkedin {
  background: url(../img/linkedin.svg) no-repeat center;
  background-size: 50%;
}
.footer ul.social li .icon.x {
  background: url(../img/x.svg) no-repeat center;
  background-size: 50%;
}
.footer ul.social li a {
  color: #ffffff;
  transition: all 0.6s;
}
.footer ul.social li a:hover {
  color: #25B2E6;
  transition: all 0.6s;
}
.footer .footer-bottom-block .footer__column-01 {
  max-width: 40%;
  padding: 50px 0px;
  padding-right: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}
@media (max-width: 991px) {
  .footer .footer-bottom-block .footer__column-01 {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    padding: 30px 0px;
  }
}
.footer .footer-bottom-block .footer__column-02 {
  max-width: 60%;
  padding: 50px 0px;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .footer .footer-bottom-block .footer__column-02 {
    max-width: 100%;
    padding: 30px 0px;
  }
}
.footer .footer-bottom-block .footer__columns-inner {
  display: flex;
  gap: 20px;
}
@media (max-width: 1190px) {
  .footer .footer-bottom-block .footer__columns-inner {
    flex-wrap: wrap;
    gap: 0px 0px;
  }
}
@media (max-width: 991px) {
  .footer .footer-bottom-block .footer__columns-inner {
    gap: 15px 0px;
  }
}
.footer .footer-bottom-block ul.info li {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
  gap: 10px;
  align-items: flex-start;
}
.footer .footer-bottom-block ul.info li:last-child {
  margin-bottom: 0px;
}
.footer .footer-bottom-block ul.info li .icon {
  display: inline-flex;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  border: solid 1px #25B2E6;
  border-radius: 100px;
  margin-top: -2px;
}
.footer .footer-bottom-block ul.info li .icon.address {
  background: url(../img/map.svg) no-repeat center;
  background-size: 61%;
}
.footer .footer-bottom-block ul.info li .icon.phone {
  background: url(../img/phone.svg) no-repeat center;
  background-size: 50%;
}
.footer .footer-bottom-block ul.info li .icon.email {
  background: url(../img/envelope.svg) no-repeat center;
  background-size: 50%;
}
.footer .footer-bottom-block ul.info li a {
  color: #ffffff;
  transition: all 0.6s;
}
.footer .footer-bottom-block ul.info li a:hover {
  color: #25B2E6;
  transition: all 0.6s;
}
.footer .footer-bottom-block h5 {
  margin-bottom: 25px;
  font-size: 20px;
}
.footer .footer-news-print {
  background: #25B2E6;
  padding: 12px 0px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer .footer-news-print {
    flex-wrap: wrap;
    gap: 10px 0px;
    padding: 20px 0px;
  }
}
.footer .footer-news-print__columns {
  display: flex;
  gap: 0px;
  align-items: center;
}
@media (max-width: 767px) {
  .footer .footer-news-print__columns {
    flex-wrap: wrap;
    gap: 10px 0px;
    justify-content: center;
  }
}
.footer .footer-news-print__column {
  flex: 1 1 45%;
  width: 50%;
  display: flex;
}
@media (max-width: 767px) {
  .footer .footer-news-print__column {
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
  }
}
.footer .footer-news-print__paragraph {
  font-size: 14px;
}
.footer .footer-news-print__right-column {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer .footer-news-print__right-column {
    justify-content: center;
  }
}
.footer .footer-news-print ul.footer-list {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
@media (max-width: 767px) {
  .footer .footer-news-print ul.footer-list {
    justify-content: center;
  }
}
.footer .footer-news-print ul.footer-list li {
  display: inline-block;
}
.footer .footer-news-print ul.footer-list li a {
  color: #ffffff;
  transition: all 0.6s;
}
.footer .footer-news-print ul.footer-list li a:hover {
  color: #101010;
  transition: all 0.6s;
}

.header {
  background: #ffffff;
  padding: 20px;
  position: static;
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    padding: 12px 20px;
  }
}
.header__container-fluid {
  width: 100%;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header__navbar {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__button-block {
  display: flex;
  gap: 8px;
}
.header .navbar-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.header .navbar-nav .nav-item {
  position: relative;
}
.header .navbar-nav .nav-item.menu-item-has-children {
  margin-right: 20px !important;
}
.header .navbar-nav .nav-item .nav-link {
  color: #101010;
  text-decoration: none;
  font-weight: 400;
  padding: 10px 0;
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.6s;
}
.header .navbar-nav .nav-item .nav-link:hover {
  color: #25B2E6;
  transition: all 0.6s;
}
.header .navbar-nav .nav-item .nav-link.current {
  color: #101010;
  font-weight: 700;
}
.header .navbar-nav .nav-item .nav-link.current:before {
  width: 30px;
  height: 4px;
  background: #25B2E6;
  content: "";
  position: absolute;
  bottom: 0px;
  border-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1600px) {
  .header .navbar-nav .nav-item .nav-link.current:before {
    display: none;
  }
}
.header .navbar-nav .nav-item {
  /* Dropdown */
}
.header .navbar-nav .nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .navbar-nav .nav-item.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}
.header .navbar-nav .nav-item.has-dropdown .dropdown-menu li {
  list-style: none;
}
.header .navbar-nav .nav-item.has-dropdown .dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: #111;
}
.header .navbar-nav .nav-item.has-dropdown .dropdown-menu li a:hover {
  background: #f7f7f7;
}
.header .navbar-nav .nav-item.current-page-parent ul.sub-menu a:before {
  display: none;
}
.header {
  /* Hamburger */
}
.header .navbar-toggler {
  display: none;
  width: 30px;
  height: 22px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.header .navbar-toggler span,
.header .navbar-toggler span::before,
.header .navbar-toggler span::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  left: 0;
  transition: all 0.3s ease;
}
.header .navbar-toggler span {
  top: 50%;
  transform: translateY(-50%);
}
.header .navbar-toggler span::before {
  content: "";
  top: -8px;
}
.header .navbar-toggler span::after {
  content: "";
  bottom: -8px;
}
@media (max-width: 1600px) {
  .header__button-block {
    display: none;
  }
  .header .navbar-toggler {
    display: block;
  }
  .header__navbar {
    justify-content: flex-end;
  }
  .header__collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    padding: 40px 25px 40px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.08);
    z-index: 100000;
    overflow-y: auto;
  }
  .header__collapse.active {
    right: 0;
  }
  .header .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .header .navbar-nav .nav-item {
    width: 100%;
  }
  .header .navbar-nav .nav-link {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
  }
  .header .navbar-nav .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }
  .header .navbar-nav .nav-item.open .dropdown-menu {
    display: block;
  }
}
.header__button-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1600px) {
  .header__button-block {
    gap: 20px;
  }
}
.header .desktop-hide {
  display: none;
}
.header .mobile-hide {
  display: block;
}
.header .menu-close {
  display: none;
}
@media (max-width: 1600px) {
  .header .menu-close {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }
  .header__collapse.active .menu-close {
    opacity: 1;
    visibility: visible;
  }
  .header .desktop-hide {
    display: block;
  }
  .header .mobile-hide {
    display: none;
  }
  .header__collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    padding: 40px 20px 40px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
    overflow-y: auto;
  }
  .header__collapse.active {
    right: 0;
  }
}

.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 90;
}

.header-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   DROPDOWN ARROW (NO HTML CHANGE)
========================= */
.header .menu-item-has-children > .nav-link {
  position: relative;
  padding-right: 18px;
}

.header .menu-item-has-children > .nav-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 46%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s ease;
}
@media (max-width: 1600px) {
  .header .menu-item-has-children > .nav-link::after {
    right: 2px;
  }
}

/* Rotate arrow when open (mobile) */
.header .menu-item-has-children.open > .nav-link::after {
  transform: translateY(-50%) rotate(-135deg);
}

/* =========================
   DESKTOP DROPDOWN (HOVER)
========================= */
@media (min-width: 1601px) {
  .header .menu-item-has-children {
    position: relative;
  }
  .header .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
  }
  .header .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header .sub-menu li {
    list-style: none;
  }
  .header .sub-menu a {
    display: block;
    padding: 10px 20px !important;
    color: #111;
  }
  .header .sub-menu a:hover {
    background: #f7f7f7;
  }
}
/* =========================
   MOBILE DROPDOWN (CLICK)
========================= */
@media (max-width: 1600px) {
  .header .sub-menu {
    display: none;
    padding-left: 15px;
  }
  .header .menu-item-has-children.open > .sub-menu {
    display: block;
  }
}
.button,
.btn {
  display: inline-block;
  padding: 12px 20px 10px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.6s;
}
.button-primary,
.btn-primary {
  background-color: #25B2E6;
  color: #101010;
  border: none;
}
.button-primary:after,
.btn-primary:after {
  width: 10px;
  height: 10px;
  background: url(../img/arrow-icon.svg) no-repeat center;
  background-size: cover;
  display: inline-block;
  margin-left: 7px;
  content: "";
}
.button-primary:hover, .button-primary:focus, .button-primary:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #63D5FF;
  color: #101010;
  transition: all 0.6s;
}
.button-secondary,
.btn-secondary {
  background-color: #ffffff;
  color: #101010;
  border: none;
}
.button-secondary:hover, .button-secondary:focus, .button-secondary:active,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: #25B2E6 !important;
  color: #101010 !important;
  transition: all 0.6s;
}
.button-header-primary,
.btn-header-primary {
  background-color: #16345A;
  color: #ffffff;
  border: none;
}
.button-header-primary:hover, .button-header-primary:focus, .button-header-primary:active,
.btn-header-primary:hover,
.btn-header-primary:focus,
.btn-header-primary:active {
  background-color: #63D5FF;
  color: #101010;
  transition: all 0.6s;
}
.button-header-secondary,
.btn-header-secondary {
  background-color: transparent;
  color: #101010;
  border: solid 1px #16345A;
}
.button-header-secondary:hover, .button-header-secondary:focus, .button-header-secondary:active,
.btn-header-secondary:hover,
.btn-header-secondary:focus,
.btn-header-secondary:active {
  background-color: #63D5FF;
  border: solid 1px #63D5FF;
  color: #101010;
  transition: all 0.6s;
}

.iconic-card {
  background-color: #ffffff;
  border: 1px solid #d1d9e6;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(13, 34, 68, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.iconic-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin-bottom: 20px;
}
.iconic-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0d2244;
}
.iconic-card__description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: #101010;
  margin-bottom: 20px;
}
.iconic-card:hover {
  border-color: #00b4d8;
  box-shadow: 0 12px 40px rgba(13, 34, 68, 0.18);
  transform: translateY(-5px);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0.5rem;
  color: #ffffff;
  background: #00b4d8;
  transition: all 0.3s ease;
}
.badge--highlight {
  background-color: #0d2244;
}
.badge--outline {
  color: #0d2244;
  background-color: transparent;
  border: 2px solid #0d2244;
}
.badge--success {
  background-color: #28a745;
}
.badge--warning {
  background-color: #ffc107;
}
.badge--danger {
  background-color: #dc3545;
}
.badge:hover {
  transform: scale(1.05);
}

.hero {
  position: relative;
  background: #0d2244;
  color: #ffffff;
  height: 100vh;
  max-height: 480px;
}
@media (max-width: 991px) {
  .hero {
    height: 100%;
    max-height: 100%;
  }
}
.hero__left-image-block {
  width: 60%;
  background: url(../img/left-bg.svg) no-repeat top right;
  background-size: cover;
  height: 100vh;
  max-height: 480px;
  z-index: 1;
  position: absolute;
  left: 0;
}
@media (max-width: 991px) {
  .hero__left-image-block {
    display: none;
  }
}
.hero__image-video-wrapper {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100vh;
  max-height: 480px;
  overflow: hidden;
  top: 0;
}
@media (max-width: 1780px) {
  .hero__image-video-wrapper {
    margin-left: -30px;
  }
}
@media (max-width: 1366px) {
  .hero__image-video-wrapper {
    width: 55%;
  }
}
@media (max-width: 991px) {
  .hero__image-video-wrapper {
    width: 100%;
    position: relative;
    max-height: 350px;
    order: 2;
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .hero__image-video-wrapper {
    max-height: 255px;
  }
}
.hero__image-video-wrapper img {
  height: 100vh;
  width: 100vw;
  max-height: 480px;
  object-fit: cover;
}
.hero__image-video-wrapper video {
  width: 100% !important;
}
@media (max-width: 1780px) {
  .hero__image-video-wrapper video {
    height: 480px;
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .hero__image-video-wrapper video {
    width: 100% !important;
    height: auto !important;
  }
}
.hero__item {
  position: static;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .hero__item {
    flex-wrap: wrap;
  }
}
.hero__content-wrapper {
  position: absolute;
  z-index: 1;
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  left: auto;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .hero__content-wrapper {
    width: 100%;
    position: relative;
    top: 0%;
    transform: translateY(0%);
    order: 1;
    background: url(../img/mobile-bg.svg) no-repeat bottom center;
    background-size: cover;
    padding: 45px 20px 90px;
  }
  .hero__content-wrapper:after {
    content: "";
    width: 100%;
    height: 40px;
    background: url(../img/divider.svg) repeat-x center;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.hero__content {
  max-width: 600px;
}
@media (max-width: 1190px) {
  .hero__content {
    max-width: 490px;
  }
}
@media (max-width: 991px) {
  .hero__content {
    max-width: 100%;
    text-align: center;
  }
}
.hero__heading span {
  color: #25B2E6;
}
.hero__paragraph {
  margin-bottom: 24px;
  color: #ffffff;
}
.hero__buttons,
.hero .itx-flexible-content__ctas {
  display: flex;
  gap: 8px;
}
@media (max-width: 991px) {
  .hero__buttons,
  .hero .itx-flexible-content__ctas {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero__buttons .btn,
  .hero .itx-flexible-content__ctas .btn {
    min-width: 260px;
  }
}

.logo-bar {
  background: #f4f6f9;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.logo-bar .logo-bar__inner {
  display: flex;
  align-items: center;
  animation: marquee 20s linear infinite;
}
.logo-bar .logo-bar__inner .logo-bar__item {
  flex: 0 0 auto;
  margin: 0 15px;
  opacity: 0.5;
  transition: opacity all 0.3s ease;
}
.logo-bar .logo-bar__inner .logo-bar__item:hover {
  opacity: 1;
}
.logo-bar .logo-bar__inner .logo-bar__item img {
  max-width: 100%;
  height: auto;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.stat-counter__number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0d2244;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-counter__label {
  font-size: 1.25rem;
  color: #101010;
  margin-top: 0.5rem;
}
.stat-counter--visible .stat-counter__number {
  animation: countUp 1s forwards;
}

@keyframes countUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.notification {
  background: #25B2E6;
  color: #101010;
  padding: 10px 10px;
  font-family: "Work Sans", sans-serif;
}
@media (max-width: 767px) {
  .notification {
    font-size: 12px;
    line-height: 20px;
  }
}
.notification a {
  text-decoration: underline;
  color: #101010;
}
.notification a:hover {
  text-decoration: none;
  color: #101010;
}

.accordion__item {
  border: 1px solid #d1d9e6;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion__item--active {
  border-color: #00b4d8;
}
.accordion__header {
  background-color: #f4f6f9;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion__header:hover {
  background-color: #90e0ef;
}
.accordion__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0d2244;
}
.accordion__icon {
  transition: transform all 0.3s ease;
}
.accordion__icon--open {
  transform: rotate(180deg);
}
.accordion__content {
  padding: 1rem;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) ease;
}
.accordion__content--open {
  max-height: 500px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 0 auto;
  padding: 40px 0;
}
.media-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(13, 34, 68, 0.1);
  transition: all 0.3s ease;
}
.media-grid__item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(13, 34, 68, 0.18);
}
.media-grid__item__image {
  width: 100%;
  height: auto;
  display: block;
}
.media-grid__item__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 10px;
  text-align: center;
}

.footer ul.social li .icon.instagram {
  background: url(../img/instagram.svg) no-repeat center;
  background-size: 50%;
}

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