* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", sans-serif;
  background: var(--primary);
  color: white;
  font-size: 16px;
  line-height: 1.4em;
  overflow-x: hidden;
}

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

h2 {
  font-size: 36px;
  font-weight: 500;
}

section {
  padding: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1400px;
  margin: 0 auto;
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--light-orange);
  border-radius: 8px;
  border: none;
  color: white;
  padding: 15px;
  margin-top: 20px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  text-decoration: none;
}
.btn:hover {
  background-color: var(--dark-orange);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/** Base Colors **/
:root {
  --primary: #003399;
  --secondary: #ffcc00;
  --tertiary: #101e3b;
  --body-text-color: #111111;
}

.tme-header {
  background-color: white;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease;
  text-align: center;
}
.tme-header.hide {
  transform: translateY(-100%);
}
.tme-header__container {
  padding: 8px;
  display: inline-block;
  align-items: center;
  justify-content: center;
}
.tme-header__img {
  margin-top: 8px;
  width: 65%;
}
.tme-header__blue {
  background-color: var(--primary);
  height: 12px;
}

.hero {
  text-align: center;
  height: 580px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a1a33;
}
.hero video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 0;
  top: -120px;
}
.hero .gradient-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.7) 100%), linear-gradient(200deg, rgba(0, 51, 153, 0.12) 0%, rgba(0, 51, 153, 0.4) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  width: 700px;
  gap: 25px;
}
.hero__content h2 {
  line-height: 37px;
  font-weight: 400;
  font-size: 24px;
}
.hero__content h2 span {
  color: var(--secondary);
}
.hero__content i {
  margin-left: 5px;
}
.hero__content .learn-btn {
  border-radius: 40px;
  background-color: var(--primary);
  color: white;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
}

.overview {
  background-color: white;
  scroll-margin-top: 45px;
}
.overview .container {
  gap: 22px;
  flex-direction: column;
  text-align: center;
}
.overview .container h1 {
  line-height: 52px;
}
.overview .container p {
  color: #333333;
  max-width: 70%;
}
.overview__title {
  font-size: 44px;
  color: var(--primary);
  font-weight: 500;
  max-width: 65%;
}

.importance .container {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-direction: row;
}
.importance__desc {
  flex: 1;
}
.importance__desc h2 {
  margin-bottom: 20px;
}
.importance__container-img {
  flex: 1;
}
.importance__img {
  width: 100%;
  height: auto;
  display: block;
}

.objectives {
  background-color: white;
}
.objectives .container {
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.objectives .container h2 {
  color: var(--primary);
}
.objectives .container h3 {
  color: var(--body-text-color);
  font-size: 18px;
  font-weight: 500;
  width: 65%;
}
.objectives__card-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-items: center;
  max-width: 800px;
}
.objectives__card-wrapper .card {
  color: #333333;
  text-align: left;
  gap: 12px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e6ebf5;
  padding: 24px 32px;
  border-radius: 8px;
  width: 100%;
  transition: background-color 0.3s ease;
}
.objectives__card-wrapper .card__icon img {
  background-color: var(--primary);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-flex;
  transition: background-color 0.3s ease;
}
.objectives__card-wrapper .card__title {
  font-weight: 500;
  font-size: 16px;
}
.objectives__card-wrapper .card__content {
  font-size: 14px;
}
.objectives__card-wrapper .card:hover {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.objectives__card-wrapper .card:hover img {
  background-color: var(--secondary);
}

.about {
  background-color: #f8faff;
}
.about .container {
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.about .container h2 {
  color: var(--primary);
}
.about__content {
  width: 1000px;
}
.about__content p {
  color: var(--body-text-color);
  text-align: left;
  width: 100%;
}
.about__box-container {
  display: flex;
  flex-direction: row;
  gap: 28px;
  padding: 40px;
  align-items: stretch;
}
.about__box {
  flex: 1;
  background-color: rgba(0, 51, 153, 0.0509803922);
  color: var(--primary);
  font-size: 16px;
  padding: 12px 20px;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.governance {
  background-color: white;
}
.governance .container {
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.governance .container h2 {
  color: var(--primary);
}
.governance .container p {
  color: var(--body-text-color);
  width: 85%;
}
.governance .container hr {
  border: none;
  border-top: 1.5px solid rgba(0, 51, 153, 0.3019607843);
  width: 20%;
}
.governance .container h4 {
  font-size: 30px;
  font-weight: 500;
  color: var(--body-text-color);
}
.governance__logo-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-items: center;
  align-items: center;
  padding: 0;
}
.governance__logo-container img {
  max-width: 100%;
  height: auto;
}

.timeline .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.timeline__content {
  text-align: center;
}
.timeline__content h2 {
  margin-bottom: 8px;
}
.timeline__content p {
  color: rgba(255, 255, 255, 0.6980392157);
}
.timeline__content img.mobile-only {
  display: none;
  width: 100%;
}

.footer {
  background-color: #101e3b;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 50px;
}
.footer .container {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo-wrapper a {
  text-decoration: none;
}
.footer__logo-wrapper a p {
  color: rgba(186, 229, 255, 0.6980392157);
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}
.footer__info-wrapper {
  display: flex;
  align-items: center;
}
.footer__info-wrapper a {
  color: rgba(186, 229, 255, 0.6980392157);
  opacity: 0.7;
  font-size: 17px;
  font-weight: 400;
  margin-right: 30px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer__info-wrapper a i {
  font-size: 20px;
  margin-right: 10px;
}

@media (max-width: 1070px) {
  .footer__info-wrapper {
    display: flex;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .sub-links-wrapper {
    width: auto;
    align-self: flex-start;
    margin-left: 0;
  }
  .sub-links-wrapper .sub-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
  }
  .sub-links-wrapper .sub-links a {
    margin-right: 0;
    text-align: left;
  }
}
@media (max-width: 1209px) {
  .overview .container p {
    max-width: 80%;
  }
  .overview__title {
    max-width: 85%;
  }
}
@media (max-width: 1150px) {
  .timeline__content img.desktop-only {
    display: none;
  }
  .timeline__content img.mobile-only {
    display: block;
  }
  .footer {
    padding: 80px 50px;
  }
}
@media (max-width: 1070px) {
  .footer .container {
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }
  .footer__info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .governance .container p {
    width: 100%;
  }
  .overview .container p {
    max-width: 100%;
  }
  .overview__title {
    max-width: 100%;
  }
  .objectives .container h3 {
    width: 85%;
  }
  .about__box-container {
    flex-direction: column;
    align-items: center;
  }
  .about__box {
    max-width: 40%;
    padding: 32px 20px;
  }
  .about__content {
    width: 100%;
  }
}
@media (max-width: 1014px) {
  .importance .container {
    flex-direction: column;
    gap: 32px;
  }
  .governance__logo-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .governance .logo-item-2 {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  section {
    padding: 60px 40px;
  }
  .importance .container {
    display: flex;
    gap: 64px;
    align-items: center;
    flex-direction: column;
  }
  .about__box {
    max-width: 50%;
    padding: 32px 20px;
  }
}
@media (max-width: 620px) {
  .tme-header__img {
    width: 30%;
  }
  section,
  .hero {
    padding: 60px 20px;
  }
  h2 {
    font-size: 32px;
  }
  .hero__content img {
    max-width: 320px;
  }
  .hero__content h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .overview__title {
    font-size: 32px;
    max-width: 100%;
    line-height: 40px;
  }
  .importance__desc {
    width: 100%;
  }
  .importance__container-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .objectives .container h3 {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
  }
  .objectives__card-wrapper {
    display: flex;
    flex-direction: column;
  }
  .about .container {
    width: 100%;
    white-space: normal;
    overflow: visible;
    overflow-wrap: break-word;
  }
  .about .container h2 {
    width: 100%;
  }
  .governance .container hr {
    width: 100%;
  }
}
@media (max-width: 555px) {
  .tme-header__container {
    padding: 15px;
  }
  .tme-header__img {
    width: 45%;
  }
  .importance .container {
    width: 100%;
    white-space: normal;
    overflow: visible;
    overflow-wrap: break-word;
  }
  .importance__desc {
    width: 100%;
  }
  .importance__container-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .about__box {
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .governance .container {
    width: 100%;
    white-space: normal;
    overflow: visible;
    overflow-wrap: break-word;
  }
}
@media (max-width: 375px) {
  .hero__content img {
    width: 80%;
  }
}

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