@font-face {
  font-family: 'UTM Alexander';
  src: url("../font/UTM Alexander.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'roboto';
  src: url("../font/RobotoMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'roboto', sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.page {
  background: #f8fafc;
  color: #1f2937;
  font-family: "Roboto", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

body.page--menu-open {
  overflow: hidden;
}

body.page--menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.42);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 48;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================= */
/* HEADER SECTION */
/* ============================= */
/* Topbar */
.topbar {
  background: #e36b24;
  color: #fff;
  font-size: 13px;
}

.topbar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
}

.topbar__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.topbar__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.topbar__link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* Header */
.header {
  background: #fff;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
}

.header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__title {
  color: #ce1126;
  margin: 0;
  font-family: 'UTM Alexander', 'Roboto', sans-serif;
  font-size: 26pt;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header__subtitle {
  margin: 0;
  color: #273b5e;
  font-family: 'UTM Alexander', 'Roboto', sans-serif;
  font-size: 20pt;
}

/* Navigation */
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.nav__link {
  color: #374151;
  text-decoration: none;
  padding-bottom: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__link--active {
  color: #e36b24;
  border-bottom: 2px solid #e36b24;
}

.header-mobile {
  display: none;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  -webkit-box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
          box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 70;
}

.header-mobile__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

.header-mobile__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-mobile__logo {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-mobile__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header-mobile__title {
  color: #ce1126;
  margin: 0;
  font-family: 'UTM Alexander', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.header-mobile__subtitle {
  margin: 0;
  color: #273b5e;
  font-family: 'UTM Alexander', 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 1.2;
}

.header-mobile__toggle {
  width: 42px;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #f8fafc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.header-mobile__line {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #374151;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.nav-mobile {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 82vw;
  max-width: 320px;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8fafc));
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-right: 1px solid #e5e7eb;
  -webkit-box-shadow: 12px 0 30px rgba(15, 23, 42, 0.24);
          box-shadow: 12px 0 30px rgba(15, 23, 42, 0.24);
  padding: 72px 16px 18px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  z-index: 72;
}

.nav-mobile--open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile__link {
  display: block;
  color: #374151;
  text-decoration: none;
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 10px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.nav-mobile__link:hover {
  background: #eef2ff;
  color: #1f2937;
}

.nav-mobile__link:last-child {
  border-bottom: none;
}

.nav-mobile__link--active {
  color: #e36b24;
  background: rgba(227, 107, 36, 0.1);
  font-weight: 700;
}

.header-mobile--open .header-mobile__line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}

.header-mobile--open .header-mobile__line:nth-child(2) {
  opacity: 0;
}

.header-mobile--open .header-mobile__line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

/* ============================= */
/* MAIN CONTENT SECTION */
/* ============================= */
.main {
  padding: 56px 0;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 100px 0;
  height: 761px;
  background: url("../img/Bg_silde.png") center/cover no-repeat;
}

.hero__inner {
  text-align: center;
  max-width: 1078px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 999px;
  color: #ffbe12;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15pt;
  border: 1px solid #ffbe12;
}

.hero__title {
  font-weight: 900;
  font-size: 44px;
  margin: 23px auto;
  line-height: 1.02;
  max-width: 800px;
}

.hero__highlight {
  color: #ffff00;
}

.hero__lead {
  max-width: 653px;
  margin: 0 auto 37px;
  color: #dbeafe;
  font-size: 18px;
  font-weight: 300;
}

.hero__decoration {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(28px);
          filter: blur(28px);
}

.hero__decoration--red {
  width: 380px;
  height: 380px;
  left: -120px;
  bottom: -120px;
  background: rgba(206, 17, 38, 0.12);
}

.hero__decoration--yellow {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -120px;
  background: rgba(255, 255, 0, 0.08);
}

/* Statistics */
.stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 36px auto 0;
}

.card {
  background: #3d5886;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
  border-radius: 24px;
}

.stat__value {
  font-size: 36px;
  font-weight: 900;
  color: #ffff00;
}

.stat__label {
  text-transform: uppercase;
  color: #bfdbfe;
  font-size: 12px;
}

.stat__small {
  font-size: 13px;
}

/* Section */
.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 48px;
}

.section__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.section__media {
  position: relative;
  width: 50%;
}

.section__media::before {
  content: "";
  position: absolute;
  top: -31px;
  right: 63px;
  width: 76px;
  height: 80px;
  background-image: url(../img/iconMuiTen.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  z-index: 10;
  pointer-events: none;
}

.section__media::after {
  content: "";
  position: absolute;
  left: -46px;
  top: 96%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 78px;
  background-image: url(../img/iconMuiTenxuong.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
  z-index: 10;
  pointer-events: none;
}

.section__title {
  font-size: 28px;
  margin: 0 0 8px;
}

.section__title a {
  color: inherit;
  text-decoration: none;
}

.section__accent {
  height: 6px;
  width: 88px;
  background: -webkit-gradient(linear, left top, right top, from(#ce1126), to(#ffff00));
  background: linear-gradient(90deg, #ce1126, #ffff00);
  margin-bottom: 18px;
}

.section__copy {
  color: #273b5e;
  line-height: 1.6;
}

.section__header {
  margin-bottom: 24px;
}

.section--purpose {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
}

.section--purpose .section__content .section__title a {
  color: #e36b24 !important;
}

.section--content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f3f7fb;
  padding: 80px 0;
}

.section--content .section__header {
  margin-bottom: 24px;
  width: 100%;
  text-align: center;
}

/* List Cards */
.list-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.list-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fbe9d5;
  padding: 15px 20px;
  border-radius: 30px;
  -webkit-box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
          box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
}

.list-card .icon {
  color: #0056b3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.list-card__text {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
}

/* Media Card */
.media-card {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.media-card::before {
  content: "";
  position: absolute;
  top: 15px;
  right: -13px;
  bottom: 0;
  left: 15px;
  border: 2px solid #c96412;
  border-radius: 0 0 30px 0;
  z-index: 0;
  -webkit-transform: translate(5px, 5px);
  transform: translate(5px, 5px);
  height: 99%;
}

.media-card__icon {
  font-size: 48px;
  color: #9ca3af;
  display: block;
  text-align: center;
  position: relative;
  z-index: 2;
}

.media-card__image {
  width: 100%;
  height: auto;
  border-radius: 16px 0;
  display: block;
  position: relative;
  z-index: 2;
}

.media-card__label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #0056b3;
  color: #fff;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 3;
}

/* Grid Cards */
.grid-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(240px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.flex-cards {
  gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.flex-cards .section--content__col {
  gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.flex-cards .section--content__col .flex3 {
  width: calc(100% / 3);
}

.flex-cards .section--content__col .flex2 {
  width: calc(100% / 2);
}

.grid-card {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
          box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
}

.grid-card__icon {
  width: 102px;
  height: 93px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: #fbd0ad;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}

.grid-card__title {
  margin: 0 0 8px;
  font-size: 16px;
}

.grid-card__title a {
  color: inherit;
  text-decoration: none;
}

.grid-card__copy {
  color: #273b5e;
  font-size: 14px;
}

/* Call To Action */
.cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  background: url("../img/bg-end.png") center/cover no-repeat;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cta > * {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-size: 24px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.cta__lead {
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 58px;
}

.cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cta__bg {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  -webkit-filter: blur(40px);
          filter: blur(40px);
}

.cta__bg--blue {
  right: -80px;
  top: -80px;
  background: rgba(0, 86, 179, 0.08);
}

.cta__bg--red {
  left: -80px;
  bottom: -80px;
  background: rgba(206, 17, 38, 0.08);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #e36b24;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.btn--primary span {
  font-weight: 400;
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid #fbd0ad;
}

.btn--ghost span {
  color: #fbd0ad;
  font-weight: 400;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================= */
/* FOOTER SECTION */
/* ============================= */
.footer {
  background: #081333;
  color: #9ca3af;
  border-top: 3px solid #e27a2b;
}

.footer__inner {
  padding: 22px 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 28px;
}

.footer__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 420px;
}

.footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.footer__brand-logo {
  width: 56px;
  height: 56px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__brand-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.footer__logo {
  color: #fff;
  font-family: 'UTM Alexander', 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 26pt;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.footer__org {
  color: #f3f4f6;
  font-family: 'UTM Alexander', 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 20pt;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.footer__copy {
  margin: 12px 0 2px;
  color: #d7dbe6;
  font-size: 11pt;
  font-weight: 700;
}

.footer__muted {
  margin: 0 0 10px;
  color: #9aa3ba;
  font-size: 10pt;
  font-style: italic;
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.footer__contacts p {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #c8cdd8;
  font-size: 11pt;
}

.footer__contacts .icon {
  color: #f59f2e;
}

.footer__menu {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(95, 103, 126, 0.66);
  border: 1px solid rgba(205, 214, 230, 0.5);
  border-radius: 4px;
  overflow: hidden;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 10px;
  width: 108px;
  min-height: 110px;
  padding: 14px 8px;
  border-left: 1px solid rgba(205, 214, 230, 0.28);
}

.footer__item:first-child {
  border-left: none;
}

.footer__item-icon {
  color: #fff;
}

.footer__item-icon .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__item-title {
  color: #f3f4f6;
  font-weight: 500;
  font-size: 11pt;
  margin: 0;
  line-height: 1.3;
}

.footer__bottom {
  border-top: 1px solid rgba(182, 193, 215, 0.3);
  padding: 12px 0 14px;
  text-align: center;
}

.footer__copyright {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}

/* ============================= */
/* GLOBAL ELEMENTS */
/* ============================= */
/* Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
}

.icon--sm {
  width: 16px;
  height: 16px;
}

.icon--xs {
  width: 14px;
  height: 14px;
}

/* ============================= */
/* RESPONSIVE TWEAKS */
/* ============================= */
@media (max-width: 575.98px) {
  .container {
    padding: 16px;
  }
  .topbar {
    font-size: 11px;
  }
  .topbar__right {
    display: none;
  }
  .header {
    display: none;
  }
  .header-mobile {
    display: block;
  }
  .main {
    padding: 28px 0;
  }
  .hero {
    height: auto;
    padding: 44px 0 36px;
  }
  .hero__inner {
    padding: 0 16px;
  }
  .hero__badge {
    font-size: 10px;
    padding: 8px 16px;
  }
  .hero__title {
    font-size: 32px;
    line-height: 1.1;
    margin: 14px auto;
  }
  .hero__lead {
    font-size: 15px;
    padding: 0 4px;
    margin-bottom: 20px;
  }
  .stats {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }
  .card {
    padding: 22px 16px;
    border-radius: 18px;
  }
  .section,
  .section--purpose {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
  .section__media {
    width: 100%;
  }
  .section__media::before, .section__media::after {
    display: none;
  }
  .section__title {
    font-size: 35px;
  }
  .section--content {
    padding: 36px 0;
  }
  .flex-cards {
    gap: 20px;
  }
  .flex-cards .section--content__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .flex-cards .section--content__col .flex3,
  .flex-cards .section--content__col .flex2 {
    width: 100%;
  }
  .cta {
    padding: 24px 16px;
    margin: 0 10px;
  }
  .cta__title {
    font-size: 20px;
  }
  .cta__lead {
    margin-bottom: 24px;
  }
  .cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer {
    padding: 28px 0;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    padding: 20px 12px;
  }
  .footer__left {
    min-width: 0;
    width: 100%;
  }
  .footer__logo {
    font-size: 18pt;
  }
  .footer__org {
    font-size: 13pt;
  }
  .footer__menu {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__item {
    width: calc(100% / 3);
    border-top: 1px solid rgba(205, 214, 230, 0.28);
  }
  .footer__item:nth-child(-n + 3) {
    border-top: none;
  }
  .footer__item:nth-child(3n + 1) {
    border-left: none;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    padding: 16px;
  }
  .header {
    display: none;
  }
  .header-mobile {
    display: block;
  }
  .hero {
    height: auto;
    padding: 56px 0 42px;
  }
  .hero__inner {
    padding: 0 16px;
  }
  .hero__title {
    font-size: 40px;
  }
  .stats {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .section,
  .section--purpose {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .section__media {
    width: 100%;
  }
  .section__media::before, .section__media::after {
    display: none;
  }
  .flex-cards .section--content__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .flex-cards .section--content__col .flex3,
  .flex-cards .section--content__col .flex2 {
    width: 100%;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__left {
    min-width: 0;
    width: 100%;
  }
  .footer__menu {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__item {
    width: calc(100% / 3);
    border-top: 1px solid rgba(205, 214, 230, 0.28);
  }
  .footer__item:nth-child(-n + 3) {
    border-top: none;
  }
  .footer__item:nth-child(3n + 1) {
    border-left: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    padding: 16px 20px;
  }
  footer.footer {
    padding: 20px 0;
  }
  .cta {
    padding: 30px 0 !important;
    margin: 0 20px;
  }
  .header {
    display: none;
  }
  .header-mobile {
    display: block;
    padding: 20px 0;
  }
  .hero {
    height: auto;
    padding: 64px 0 52px;
  }
  .hero__inner {
    padding: 0 20px;
  }
  .hero__title {
    font-size: 46px;
  }
  .stats {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .section,
  .section--purpose {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section__media {
    width: 100%;
  }
  .section__media::before, .section__media::after {
    display: none;
  }
  .flex-cards .section--content__col {
    gap: 22px;
  }
  .flex-cards .section--content__col .flex3,
  .flex-cards .section--content__col .flex2 {
    width: calc(50% - 11px);
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__left {
    min-width: 0;
    width: 100%;
  }
  .footer__menu {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .header {
    display: block;
  }
  .header-mobile {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 620px;
    padding: 84px 0;
  }
  .hero__title {
    font-size: 56px;
  }
  .stats {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 22px;
  }
  .header__title {
    font-size: 22pt;
  }
  .header__subtitle {
    font-size: 16pt;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .header__title {
    font-size: 24pt;
  }
  .header__subtitle {
    font-size: 18pt;
  }
  .hero__title {
    font-size: 58px;
  }
}

@media (min-width: 1300px) {
  .hero__title {
    font-size: 62px;
  }
  .stats {
    max-width: 1120px;
  }
}

@media (max-width: 991.98px) and (orientation: landscape) {
  .topbar {
    display: none;
  }
  .hero {
    padding: 24px 0;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__lead {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .stats {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .nav-mobile {
    width: 97vw;
    max-width: 500px;
  }
}

@media (max-width: 991.98px) and (orientation: portrait) {
  .nav-mobile {
    width: 50vw;
    max-width: 500px;
  }
}

@media (min-width: 992px) and (orientation: landscape) {
  .header {
    display: block;
  }
  .header-mobile {
    display: none;
  }
  .nav-mobile {
    display: none;
  }
}

@media (min-width: 992px) and (orientation: portrait) {
  .header {
    display: block;
  }
  .header-mobile {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: landscape) {
  .hero {
    padding: 42px 0;
  }
  .section--content {
    padding: 44px 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
  .hero {
    padding: 48px 0;
  }
  .section--content {
    padding: 44px 0;
  }
}

@media (width: 768px) and (height: 1024px) and (orientation: portrait) {
  .hero {
    padding: 58px 0 50px;
  }
  .stats {
    gap: 16px;
  }
}

@media (width: 820px) and (height: 1180px) and (orientation: portrait) {
  .hero {
    padding: 64px 0 56px;
  }
}

.backtop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: none;
  background: #e36b24;
  color: #fff;
  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;
  cursor: pointer;
  -webkit-box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
          box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 60;
}

.backtop .icon {
  width: 20px;
  height: 20px;
}

.backtop.is-visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.backtop:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
/*# sourceMappingURL=styles.css.map */