@charset "UTF-8";
:root {
  --color-background: #014652;
  --color-accent: #21ada7;
  --color-text: #fff;
  --color-overlay: rgba(0, 0, 0, 0.42);
  --font-family-base: "BD Megatoya", sans-serif;
}

@font-face {
  font-family: "BD Megatoya";
  src: url("bd-megatoya.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 0% 100%;
  font-style: normal;
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background-color: var(--color-background);
  font-family: var(--font-family-base);
  font-style: normal;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  color: var(--color-text);
  overflow-x: hidden;
}

/* ── Background ── */
.home {
  align-items: center;
  background-image: url(../img/bg.avif);
  background-image: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  min-height: 90vh;
  min-height: 90svh;
  position: relative;
}

/* ── Language selector ── */
header {
  left: 0;
  padding: 1rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
@media (min-width: 64rem) {
  header {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.header-inner {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 100rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  column-gap: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "logo logo controls controls" "nav  nav  nav      nav";
  overflow: hidden;
  padding: 1rem 0 0.25rem 0;
  position: relative;
  row-gap: 1rem;
}
@media (min-width: 48rem) {
  .header-inner {
    align-items: center;
    column-gap: 1.5rem;
    grid-template-areas: "logo nav controls";
    grid-template-columns: auto 1fr auto;
    overflow: visible;
    padding: 0.75rem 2rem 0.75rem 0.5rem;
    row-gap: 0;
  }
}
@media (min-width: 64rem) {
  .header-inner {
    column-gap: 2rem;
    padding: 1rem 2rem;
  }
}
.header-inner ul {
  margin: 0;
  padding: 0;
}
.header-inner ul li {
  list-style: none;
}
.header-inner ul li a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

.header-logo {
  grid-area: logo;
  display: flex;
}
.header-logo a {
  display: block;
  max-width: 10rem;
  width: 100%;
}
.header-logo a img {
  display: block;
  width: 100%;
}

.controls {
  grid-area: controls;
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-right: 1.5rem;
}
@media (min-width: 48rem) {
  .controls {
    padding-right: 0;
  }
}

.main-sections {
  grid-area: nav;
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .main-sections {
    flex-direction: row;
    gap: 1rem;
    height: auto;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    overflow: visible;
  }
}
@media (min-width: 64rem) {
  .main-sections {
    gap: 2rem;
  }
}
@media (min-width: 48rem) {
  .main-sections .has-submenu {
    position: relative;
  }
}
.main-sections li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
@media (min-width: 48rem) {
  .main-sections li {
    border-bottom: none;
  }
}
.main-sections li:last-of-type {
  border-bottom: none;
}
.main-sections li a {
  display: block;
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}
@media (min-width: 48rem) {
  .main-sections li a {
    padding: 0;
  }
}
@media (min-width: 64rem) {
  .main-sections li a:hover {
    color: var(--color-accent);
  }
}
.main-sections .submenu-toggle {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  justify-content: space-between;
}
.main-sections .submenu-icon {
  display: inline-flex;
  flex: none;
  height: 1rem;
  transition: transform 0.3s ease;
  width: 1rem;
}
.main-sections .submenu-icon svg {
  height: 100%;
  width: 100%;
}
.main-sections .submenu {
  height: 0;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .main-sections .submenu {
    background-color: rgba(1, 70, 82, 0.92);
    border-radius: 0.5rem;
    left: 0;
    margin-top: 0.5rem;
    min-width: 12rem;
    position: absolute;
    top: 100%;
  }
  .main-sections .submenu.is-open {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  }
}
@media (min-width: 48rem) {
  .main-sections .submenu li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
  .main-sections .submenu li:last-of-type {
    border-bottom: none;
  }
}
.main-sections .submenu li a {
  padding-left: 2rem;
}
@media (min-width: 48rem) {
  .main-sections .submenu li a {
    padding: 0.5rem 1rem;
  }
}

.has-submenu.is-open .submenu-icon {
  transform: rotate(180deg);
}

.lang-selector {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  z-index: 100;
}
@media (min-width: 64rem) {
  .lang-selector:hover {
    color: var(--color-accent);
  }
  .lang-selector:hover a {
    color: var(--color-accent);
  }
}

.lang-icon {
  display: inline-flex;
  height: 1.25rem;
  opacity: 0.75;
  width: 1.25rem;
}

.lang-icon svg {
  height: 100%;
  transition: 0.2s;
  width: 100%;
}

.lang-btn {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-family-base);
  font-size: 0.8125rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s opacity 0.2s;
}
.lang-btn:hover {
  opacity: 1;
}

/* ── Menu toggle ── */
.menu-toggle {
  align-items: center;
  background: none;
  border: 0;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: 0.25rem;
  justify-content: space-between;
  padding: 0;
}
@media (min-width: 48rem) {
  .menu-toggle {
    display: none;
  }
}

.menu-icon {
  display: inline-flex;
  height: 1.25rem;
  opacity: 0.75;
  width: 1.25rem;
}

.menu-icon svg {
  height: 100%;
  width: 100%;
}

.hamburger-line {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-label {
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  min-width: 3.0625rem;
  text-transform: uppercase;
}

.menu-label-close {
  display: none;
}

.menu-toggle.is-open .hamburger-top {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-open .hamburger-middle {
  opacity: 0;
}
.menu-toggle.is-open .hamburger-bottom {
  transform: translateY(-6px) rotate(-45deg);
}
.menu-toggle.is-open .menu-label-open {
  display: none;
}
.menu-toggle.is-open .menu-label-close {
  display: inline;
}

/* ── Page layout ── */
/* Tagline */
.main-content {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
}

.tagline {
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 600;
  font-stretch: 0%;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* CTA button */
.page-footer {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 9999px;
  font-stretch: 0%;
  font-family: var(--font-family-base);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
@media (min-width: 48rem) {
  .btn {
    padding-left: 52px;
    padding-right: 52px;
  }
}

.oryant-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 2rem;
}
@media (min-width: 48rem) {
  .oryant-container {
    padding: 0 4rem;
  }
}

.services {
  background-color: var(--color-background);
  background-image: linear-gradient(to right, #00444f, #002a3d, #000010);
  padding: 2rem 0;
  position: relative;
}
@media (min-width: 48rem) {
  .services {
    padding: 4rem 0;
  }
}
@media (min-width: 64rem) {
  .services {
    padding: 6rem 0;
  }
}
.services .oryant-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 48rem) {
  .services .oryant-container {
    gap: 4rem;
  }
}
@media (min-width: 64rem) {
  .services .oryant-container {
    gap: 6rem;
  }
}
.services h1 {
  margin: 0;
}

.ornament {
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
@media (min-width: 48rem) {
  .ornament {
    width: 70%;
  }
}
@media (min-width: 64rem) {
  .ornament {
    width: 50%;
  }
}

.services-list .service {
  border-bottom-color: var(--color-accent);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}
@media (min-width: 48rem) {
  .services-list .service {
    gap: 2rem;
    padding: 2rem 0;
  }
}
@media (min-width: 64rem) {
  .services-list .service {
    align-items: center;
  }
}
.services-list .service:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.services-list .service:first-child {
  padding-top: 0;
}
.services-list .service .number {
  color: var(--color-accent);
  font-size: 1.5rem;
  font-variation-settings: "wght" 700, "wdth" 0, "slnt" 0;
  font-weight: 700;
}
@media (min-width: 48rem) {
  .services-list .service .number {
    font-size: 2rem;
  }
}
@media (min-width: 64rem) {
  .services-list .service .number {
    font-size: 3rem;
  }
}
.services-list .service .content p {
  font-size: 0.875rem;
  font-variation-settings: "wght" 400, "wdth" 0, "slnt" 0;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 48rem) {
  .services-list .service .content p {
    font-size: 1rem;
  }
}
@media (min-width: 64rem) {
  .services-list .service .content p {
    font-size: 1.25rem;
  }
}

h1.bars {
  font-size: 1.5rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  padding: 0 2rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 48rem) {
  h1.bars {
    font-size: 2rem;
  }
}
@media (min-width: 64rem) {
  h1.bars {
    align-self: center;
    font-size: 2.5rem;
    padding: 0 3rem;
  }
}
h1.bars:before {
  background-color: var(--color-accent);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 2px;
}
h1.bars:after {
  background-color: var(--color-accent);
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
}

.growth {
  background-color: #009dba;
  background-image: url(../img/growth-bg.avif);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 2rem;
  position: relative;
}
@media (min-width: 48rem) {
  .growth {
    background-size: unset;
    background-position: 50% 55%;
    padding-top: 4rem;
  }
}
@media (min-width: 64rem) {
  .growth {
    background-position: center 60%;
    background-size: cover;
    padding-top: 6rem;
  }
}
.growth .oryant-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 2rem;
}
@media (min-width: 48rem) {
  .growth .oryant-container {
    padding: 0 4rem;
  }
}
.growth .sentence p {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  font-variation-settings: "wght" 400, "wdth" 0, "slnt" 0;
  font-weight: 400;
  gap: 0.5rem;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 48rem) {
  .growth .sentence p {
    font-size: 1rem;
  }
}
@media (min-width: 64rem) {
  .growth .sentence p {
    font-size: 1.25rem;
  }
}
@media (min-width: 80rem) {
  .growth .sentence p {
    font-size: 2rem;
  }
}
.growth .sentence p strong {
  display: block;
  font-size: 1.25rem;
  font-variation-settings: "wght" 700, "wdth" 0, "slnt" 0;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 48rem) {
  .growth .sentence p strong {
    font-size: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .growth .sentence p strong {
    font-size: 2rem;
  }
}
@media (min-width: 80rem) {
  .growth .sentence p strong {
    font-size: 3rem;
  }
}
.growth .birds, .growth .jumper, .growth .field {
  backface-visibility: hidden;
  will-change: transform;
}
.growth .birds {
  display: block;
  margin: 0 1rem 0 auto;
  max-width: 3.5rem;
  width: 100%;
}
@media (min-width: 48rem) {
  .growth .birds {
    margin-top: 2rem;
    max-width: 5rem;
  }
}
@media (min-width: 80rem) {
  .growth .birds {
    margin-top: 0;
    max-width: 4svw;
  }
}
.growth .jumper {
  display: block;
  margin: 0 auto;
  max-width: 5rem;
  width: 100%;
}
@media (min-width: 48rem) {
  .growth .jumper {
    margin-bottom: -4rem;
  }
}
@media (min-width: 80rem) {
  .growth .jumper {
    margin-bottom: -8svw;
    max-width: max(5rem, 4.5svw);
  }
}
.growth picture {
  display: block;
  margin-top: -15rem;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 48rem) {
  .growth picture {
    margin-top: -27rem;
  }
}
@media (min-width: 64rem) {
  .growth picture {
    margin-top: 0;
  }
}
@media (min-width: 80rem) {
  .growth picture {
    margin-top: -30svw;
  }
}
.growth picture .field {
  display: block;
  width: 100%;
}
.growth .end {
  bottom: 2rem;
  left: 50%;
  margin: 0 auto;
  max-width: 60%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 20;
}
@media (min-width: 48rem) {
  .growth .end {
    bottom: 4rem;
    max-width: unset;
    width: 100%;
  }
}
@media (min-width: 64rem) {
  .growth .end {
    bottom: 6rem;
  }
}
.growth .end p {
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  gap: 0.5rem;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 48rem) {
  .growth .end p {
    font-size: 1rem;
  }
}
@media (min-width: 64rem) {
  .growth .end p {
    font-size: 1.25rem;
  }
}
@media (min-width: 80rem) {
  .growth .end p {
    font-size: 2rem;
  }
}

.about {
  background-color: var(--color-background);
  background-image: linear-gradient(to right, #000010, #002a3d, #00444f);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}
@media (min-width: 48rem) {
  .about {
    gap: 4rem;
    padding: 4rem 0;
  }
}
@media (min-width: 64rem) {
  .about {
    gap: 6rem;
    padding: 6rem 0;
  }
}
.about .oryant-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 48rem) {
  .about .oryant-container {
    gap: 4rem;
  }
}
@media (min-width: 64rem) {
  .about .oryant-container {
    gap: 6rem;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .about-content {
    align-items: center;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
  }
}
.about-content h2 {
  font-size: 1rem;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
}
@media (min-width: 48rem) {
  .about-content h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .about-content h2 {
    font-size: 2rem;
  }
}

.about-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .about-items {
    gap: 2rem;
  }
}
@media (min-width: 64rem) {
  .about-items {
    gap: 3rem;
  }
}
.about-items .item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-items .item .title {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 64rem) {
  .about-items .item .title {
    gap: 1rem;
  }
}
.about-items .item .title h3 {
  font-size: 1rem;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
  margin: 0;
}
@media (min-width: 48rem) {
  .about-items .item .title h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 64rem) {
  .about-items .item .title h3 {
    font-size: 1.5rem;
  }
}
.about-items .item .title img {
  display: block;
  max-width: 0.75rem;
  width: 100%;
}
@media (min-width: 64rem) {
  .about-items .item .title img {
    max-width: 1rem;
  }
}
.about-items .item p {
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  margin-left: 1.25rem;
}
@media (min-width: 48rem) {
  .about-items .item p {
    font-size: 1rem;
    line-height: 1.5;
    margin-left: 2.5rem;
  }
}
@media (min-width: 64rem) {
  .about-items .item p {
    font-size: 1.25rem;
    margin-left: 3.75rem;
  }
}

.about-strip {
  display: grid;
  height: 0.5rem;
  gap: 0.5rem;
  grid-template-columns: repeat(5, 1fr);
}
@media (min-width: 48rem) {
  .about-strip {
    height: 0.875rem;
  }
}
.about-strip div {
  height: 100%;
}
.about-strip div.first {
  background-color: #03909e;
}
.about-strip div.second {
  background-color: #03d8d2;
}
.about-strip div.third {
  background-color: #6ac25a;
}
.about-strip div.fourth {
  background-color: #336aaf;
}
.about-strip div.fifth {
  background-color: #09988e;
}

.values-top {
  background-image: url(../img/values-bg.avif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 0;
}
.values-top .sentence {
  margin: 0 0 0 auto;
  padding: 20svw 0;
  max-width: 30svw;
}
@media (min-width: 48rem) {
  .values-top .sentence {
    max-width: unset;
  }
}
@media (min-width: 80rem) {
  .values-top .sentence {
    padding: 10svw 0;
  }
}
.values-top .sentence h2 {
  font-size: 1.25rem;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 48rem) {
  .values-top .sentence h2 {
    font-size: 1.5rem;
    text-align: right;
  }
}
@media (min-width: 80rem) {
  .values-top .sentence h2 {
    font-size: 2rem;
  }
}

.values-content {
  background-image: linear-gradient(to right, #68c2ab, #1daca6 78%, #00a4a6);
  padding: 2rem 0;
  position: relative;
}
@media (min-width: 48rem) {
  .values-content {
    padding: 4rem 0;
  }
}
@media (min-width: 64rem) {
  .values-content {
    padding: 6rem 0;
  }
}
@media (min-width: 80rem) {
  .values-content {
    padding: 8rem 0;
  }
}
.values-content .oryant-container {
  padding: 0 4rem;
}

.values-content-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 48rem) {
  .values-content-inner {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 64rem) {
  .values-content-inner {
    gap: 4rem;
  }
}
.values-content-inner .value {
  align-items: center;
  column-gap: 1rem;
  display: grid;
  grid-template-areas: "icon title title title" "icon explainer explainer explainer";
  row-gap: 0.5rem;
}
@media (min-width: 48rem) {
  .values-content-inner .value {
    align-items: center;
    display: flex;
    flex-direction: column;
    grid-template-areas: unset;
  }
}
.values-content-inner .value img {
  display: block;
  grid-area: icon;
  max-width: 4rem;
  min-width: 4rem;
  width: 100%;
}
@media (min-width: 48rem) {
  .values-content-inner .value img {
    margin-bottom: 1rem;
  }
}
@media (min-width: 64rem) {
  .values-content-inner .value img {
    max-width: 8rem;
    min-width: 8rem;
  }
}
.values-content-inner .value h3 {
  font-size: 1.15rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  grid-area: title;
  margin: 0;
  text-transform: uppercase;
}
@media (min-width: 48rem) {
  .values-content-inner .value h3 {
    font-size: 1.25rem;
    text-align: center;
  }
}
@media (min-width: 64rem) {
  .values-content-inner .value h3 {
    font-size: 1.75rem;
  }
}
.values-content-inner .value p {
  color: var(--color-background);
  grid-area: explainer;
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 48rem) {
  .values-content-inner .value p {
    font-size: 1rem;
    text-align: center;
  }
}
@media (min-width: 64rem) {
  .values-content-inner .value p {
    font-size: 1.25rem;
  }
}

.principles {
  background-color: var(--color-background);
  background-image: linear-gradient(to right, #000010, #002a3d, #00444f);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
}
@media (min-width: 48rem) {
  .principles {
    gap: 4rem;
    padding: 4rem 0;
  }
}
@media (min-width: 64rem) {
  .principles {
    gap: 6rem;
    padding: 6rem 0;
  }
}
.principles .oryant-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 2rem;
}
@media (min-width: 48rem) {
  .principles .oryant-container {
    gap: 4rem;
    padding: 0 4rem;
  }
}
@media (min-width: 64rem) {
  .principles .oryant-container {
    padding: 0 6rem;
  }
}
.principles h2 {
  font-size: 1.25rem;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 48rem) {
  .principles h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 80rem) {
  .principles h2 {
    font-size: 2rem;
  }
}

.principles-listing {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 64rem) {
  .principles-listing {
    gap: 2rem;
  }
}
@media (min-width: 80rem) {
  .principles-listing {
    gap: 2.5rem;
  }
}
.principles-listing .item {
  align-items: center;
  column-gap: 1rem;
  display: grid;
  grid-template-areas: "icon title" "icon explainer";
  grid-template-columns: auto 1fr;
  row-gap: 0.25rem;
}
@media (min-width: 64rem) {
  .principles-listing .item {
    column-gap: 2rem;
  }
}
.principles-listing .item img {
  display: block;
  grid-area: icon;
  min-width: 4rem;
  max-width: 4rem;
  width: 100%;
}
@media (min-width: 64rem) {
  .principles-listing .item img {
    min-width: 5rem;
    max-width: 5rem;
  }
}
.principles-listing .item h3 {
  font-size: 1rem;
  font-variation-settings: "wght" 700, "wdth" 0, "slnt" 0;
  font-weight: 700;
  grid-area: title;
  margin: 0;
}
@media (min-width: 48rem) {
  .principles-listing .item h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 64rem) {
  .principles-listing .item h3 {
    font-size: 1.5rem;
  }
}
.principles-listing .item p {
  color: #03d8d2;
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  line-height: 1.25;
  grid-area: explainer;
}
@media (min-width: 48rem) {
  .principles-listing .item p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (min-width: 64rem) {
  .principles-listing .item p {
    font-size: 1.25rem;
    line-height: 1.25;
  }
}

.partners {
  background-color: #9ce0d2;
  background-image: url(../img/partners-bg.avif);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 0;
}
@media (min-width: 48rem) {
  .partners {
    padding: 4rem 0;
  }
}
@media (min-width: 64rem) {
  .partners {
    padding: 6rem 0;
  }
}
.partners .oryant-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 64rem) {
  .partners .oryant-container {
    gap: 4rem;
  }
}
.partners p {
  color: #231f20;
  display: flex;
  flex-direction: column;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 64rem) {
  .partners p {
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
.partners p span {
  font-size: 0.875rem;
  line-height: 1.325;
}
@media (min-width: 48rem) {
  .partners p span {
    font-size: 1rem;
  }
}
@media (min-width: 64rem) {
  .partners p span {
    font-size: 1.25rem;
  }
}
.partners p strong {
  color: #404041;
  font-size: 1.25rem;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
}
@media (min-width: 48rem) {
  .partners p strong {
    font-size: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .partners p strong {
    font-size: 2rem;
  }
}
.partners h2 {
  background-image: url(../img/partners-title-jewel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #404041;
  font-size: 1.25rem;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 48rem) {
  .partners h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .partners h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding: 2rem 0;
  }
}

.partner-listing {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 2rem;
}
@media (min-width: 48rem) {
  .partner-listing {
    gap: 3rem;
    padding: 4rem;
  }
}
@media (min-width: 80rem) {
  .partner-listing {
    gap: 6rem;
    padding: 4rem 6rem;
  }
}
.partner-listing li {
  align-items: center;
  display: flex;
  height: 4rem;
  justify-content: center;
  list-style: none;
  width: calc(50% - 1rem);
}
@media (min-width: 48rem) {
  .partner-listing li {
    width: 10rem;
  }
}
.partner-listing a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.partner-listing img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.leadership {
  background-color: var(--color-background);
  background-image: linear-gradient(to right, #00444f, #002a3d, #000010);
  padding: 2rem 0;
}
@media (min-width: 48rem) {
  .leadership {
    padding: 4rem 0;
  }
}
@media (min-width: 64rem) {
  .leadership {
    padding: 6rem 0;
  }
}
.leadership .oryant-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 2rem;
}
@media (min-width: 48rem) {
  .leadership .oryant-container {
    gap: 4rem;
    padding: 0 4rem;
  }
}
@media (min-width: 64rem) {
  .leadership .oryant-container {
    gap: 6rem;
    padding: 0 6rem;
  }
}

.leadership-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .leadership-content {
    flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 48rem) {
  .leadership-content .left {
    flex: 0 0 30%;
  }
}
.leadership-content .left img {
  display: block;
  max-width: 15rem;
  width: 100%;
}
@media (min-width: 64rem) {
  .leadership-content .left img {
    max-width: unset;
  }
}
.leadership-content .right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .leadership-content .right {
    flex: 1;
    padding-top: 2rem;
  }
}
@media (min-width: 64rem) {
  .leadership-content .right {
    gap: 2rem;
  }
}
.leadership-content .right hr {
  display: none;
}
@media (min-width: 48rem) {
  .leadership-content .right hr {
    background-color: var(--color-accent);
    border: none;
    display: block;
    height: 2px;
  }
}
.leadership-content .right h2 {
  font-size: 1.25rem;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
  margin: 0;
}
@media (min-width: 48rem) {
  .leadership-content .right h2 {
    padding-left: 2rem;
  }
}
@media (min-width: 64rem) {
  .leadership-content .right h2 {
    font-size: 1.5rem;
    padding-left: 3rem;
  }
}
.leadership-content .right p {
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 48rem) {
  .leadership-content .right p {
    padding-left: 2rem;
  }
}
@media (min-width: 64rem) {
  .leadership-content .right p {
    font-size: 1rem;
    padding-left: 3rem;
  }
}
.leadership-content .right p.position {
  margin-top: -0.875rem;
}
@media (min-width: 64rem) {
  .leadership-content .right p.position {
    font-size: 1.25rem;
    margin-top: -1.875rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 48rem) {
  .contact-info {
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    margin-left: 2rem;
  }
}
@media (min-width: 64rem) {
  .contact-info {
    font-size: 1rem;
    margin-left: 3rem;
  }
}
.contact-info a {
  color: var(--color-accent);
  display: block;
  transition: 0.2s;
  text-decoration: none;
}
.contact-info a.linkedin {
  width: 1.5rem;
}
@media (min-width: 64rem) {
  .contact-info a.linkedin {
    width: 2rem;
  }
}
.contact-info a:hover {
  color: var(--color-text);
}
.contact-info a svg {
  display: block;
  width: 100%;
}

.contact {
  background-color: #026b7a;
  padding: 2rem 0 0 0;
}
@media (min-width: 48rem) {
  .contact {
    background-image: url(../img/contact-bg.avif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
  }
}
@media (min-width: 64rem) {
  .contact {
    padding: 6rem 0;
  }
}
.contact .mobile-image {
  display: block;
  width: 100%;
}
@media (min-width: 48rem) {
  .contact .mobile-image {
    display: none;
  }
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.contact-content .left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .contact-content .left {
    gap: 2rem;
  }
}
@media (min-width: 80rem) {
  .contact-content .left {
    gap: 4rem;
  }
}
.contact-content .left p {
  font-size: 1.25rem;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 48rem) {
  .contact-content .left p {
    font-size: 1.5rem;
  }
}
@media (min-width: 80rem) {
  .contact-content .left p {
    font-size: 2rem;
  }
}
.contact-content .left p.solution-label {
  all: unset;
  color: #9cacb8;
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
}
@media (min-width: 80rem) {
  .contact-content .left p.solution-label {
    font-size: 1rem;
  }
}
.contact-content .left p.form-status {
  border-radius: 0.25rem;
  color: var(--color-text);
  margin: 0;
  padding: 0.875rem 1rem;
  text-align: center;
  font-size: 0.875rem !important;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
  line-height: 1.4;
}
@media (min-width: 80rem) {
  .contact-content .left p.form-status {
    font-size: 1rem;
  }
}
.contact-content .left p.form-status:empty {
  display: none;
}
.contact-content .left p.form-status.is-success {
  background-color: var(--color-background);
  border: 1px solid rgba(11, 198, 179, 0.45);
}
.contact-content .left p.form-status.is-error {
  background-color: #6f1f2a;
  border: 1px solid #b64a58;
}
.contact-content .right {
  display: none;
}
@media (min-width: 48rem) {
  .contact-content .right {
    display: block;
  }
}

form {
  border-color: var(--color-accent);
  border-radius: 0.5rem;
  border-style: solid;
  border-width: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}
@media (min-width: 80rem) {
  form {
    gap: 0.75rem;
    padding: 1rem;
  }
}
form[disabled] {
  cursor: not-allowed;
}
form fieldset {
  all: unset;
  align-items: center;
  background-color: var(--color-background);
  background-image: linear-gradient(to right, #00444f, #002a3d, #000010);
  border-radius: 0.25rem;
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
}
@media (min-width: 80rem) {
  form fieldset {
    gap: 1rem;
  }
}
form label {
  color: #9cacb8;
  font-size: 0.875rem;
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
}
@media (min-width: 80rem) {
  form label {
    font-size: 1rem;
  }
}
form input {
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-family-base);
  font-variation-settings: "wght" 500, "wdth" 0, "slnt" 0;
  font-weight: 500;
  flex-grow: 1;
}
@media (min-width: 64rem) {
  form input {
    font-size: 1rem;
  }
}
form input:focus {
  outline: none;
}
form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  flex-grow: unset;
  height: 1rem;
  place-content: center;
  width: 1rem;
}
@media (min-width: 48rem) {
  form input[type=checkbox] {
    height: 1.25rem;
    width: 1.25rem;
  }
}
form input[type=checkbox]::after {
  border: solid var(--color-text);
  border-width: 0 2px 2px 0;
  content: "";
  height: 0.6rem;
  opacity: 0;
  transform: translateY(-1px) rotate(45deg);
  width: 0.3rem;
}
form input[type=checkbox]:checked {
  background-color: var(--color-accent);
}
form input[type=checkbox]:checked::after {
  opacity: 1;
}
form input[type=submit] {
  background-color: var(--color-accent);
  border-radius: 0.25rem;
  cursor: pointer;
  font-variation-settings: "wght" 700, "wdth" 0, "slnt" 0;
  font-weight: 700;
  padding: 1rem;
  transition: 0.2s;
}
@media (min-width: 80rem) {
  form input[type=submit] {
    font-size: 1rem;
  }
}
form input[type=submit]:hover {
  background-color: #178e82;
}
form .cf-turnstile {
  align-self: center;
}
form .solutions {
  align-items: center;
  column-gap: 0.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.5rem;
}
@media (min-width: 64rem) {
  form .solutions {
    row-gap: 1rem;
  }
}
form .solutions label {
  cursor: pointer;
  font-size: 0.75rem;
}
@media (min-width: 80rem) {
  form .solutions label {
    font-size: 1rem;
  }
}

.contact-lower {
  background-color: var(--color-background);
  background-image: linear-gradient(to right, #00444f, #002a3d, #000010);
  padding: 2rem 0;
}
@media (min-width: 48rem) {
  .contact-lower {
    padding: 4rem 0;
  }
}
@media (min-width: 64rem) {
  .contact-lower {
    padding: 6rem 0;
  }
}
.contact-lower .oryant-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 2rem;
}
@media (min-width: 48rem) {
  .contact-lower .oryant-container {
    gap: 4rem;
    padding: 0 4rem;
  }
}
@media (min-width: 64rem) {
  .contact-lower .oryant-container {
    gap: 6rem;
    padding: 0 6rem;
  }
}
.contact-lower .socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0 auto;
}
@media (min-width: 48rem) {
  .contact-lower .socials {
    align-items: center;
    flex-direction: row;
    gap: 2rem;
  }
}
@media (min-width: 80rem) {
  .contact-lower .socials {
    gap: 4rem;
  }
}
.contact-lower .socials li a {
  align-items: center;
  color: var(--color-text);
  display: flex;
  font-size: 0.875rem;
  font-variation-settings: "wght" 400, "wdth" 0, "slnt" 0;
  font-weight: 400;
  gap: 0.5rem;
  text-decoration: none;
  transition: 0.2s;
}
@media (min-width: 48rem) {
  .contact-lower .socials li a {
    font-size: 1rem;
  }
}
@media (min-width: 64rem) {
  .contact-lower .socials li a {
    font-size: 1.25rem;
  }
}
.contact-lower .socials li a:hover svg {
  color: var(--color-accent);
}
.contact-lower .socials li a svg {
  display: block;
  max-width: 1.5rem;
  transition: 0.2s;
  width: 100%;
}
@media (min-width: 80rem) {
  .contact-lower .socials li a svg {
    max-width: 2rem;
  }
}

footer {
  background-color: #002a3d;
  background-image: linear-gradient(to right, #00444f, #002a3d);
  display: flex;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 48rem) {
  footer {
    padding: 3rem 0;
  }
}
footer .ornament {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 64rem) {
  footer .ornament {
    height: unset;
    object-fit: unset;
  }
}
footer .oryant-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  z-index: 20;
}
@media (min-width: 48rem) {
  footer .oryant-container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .right img {
  display: block;
  margin: 0 auto;
  max-width: 12rem;
  transform: translateX(-0.5rem);
  width: 100%;
}
@media (min-width: 48rem) {
  footer .right img {
    margin: 0 0 0 auto;
  }
}
footer p {
  font-size: 1rem;
  font-variation-settings: "wght" 600, "wdth" 0, "slnt" 0;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 48rem) {
  footer p {
    font-size: 1.5rem;
    text-align: left;
  }
}
@media (min-width: 64rem) {
  footer p {
    font-size: 2rem;
  }
}
