@charset "UTF-8";
/* Global Variables */
:root {
  --dark-green: #003926;
  --light-green: #34B20B;
  --light-sand: #F7F4ED;
  --primary: var(--dark-green);
  --accent: var(--light-green);
  --n1: #00150E;
  --n2: #00271A;
  --n3: #336151;
  --n4: #F4EBE1;
  --wh: #ffffff;
  --image-gradient: linear-gradient(to top, rgba(0, 21, 14, 0.8) 20%, rgba(0, 21, 14, 0) 100%);
  --bg-gradient: linear-gradient(to bottom, var(--primary) 0%, var(--n1) 100%);
  --card-number-bg: rgba(0, 21, 14, 0.5);
  --card-number-border: rgba(255, 255, 255, 0.3);
  --box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  --button-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  --font-family: 'Roboto Condensed', sans-serif;
  --bold: 800;
  --medium: 500;
  --regular: 300;
  --xsmall: 1rem;
  --small: 1.2rem;
  --base: 1.4rem;
  --hd0: 5.2rem;
  --hd1: 4.2rem;
  --hd2: 3.4rem;
  --hd3: 2.7rem;
  --hd4: 2.1rem;
  --hd5: 1.8rem;
  --hd6: 1.6rem;
  --v1: 1rem;
  --v2: 2rem;
  --v3: 4rem;
  --h1: 1rem;
  --h2: 1.4rem;
  --h3: 2rem;
  --boxed-w: 1180px;
}

@media (min-width: 600px) {
  :root {
    --xsmall: 1.2rem;
    --small: 1.3rem;
    --base: 1.5rem;
    --hd0: 5.2rem;
    --hd1: 5.2rem;
    --hd2: 4.4rem;
    --hd3: 3.6rem;
    --hd4: 2.7rem;
    --hd5: 2.1rem;
    --hd6: 1.8rem;
    --h3: 10vw;
    --v3: 4rem;
  }
}
@media (min-width: 1000px) {
  :root {
    --xsmall: 1.2rem;
    --small: 1.6rem;
    --base: 1.8rem;
    --hd0: 6.4rem;
    --hd1: 5.2rem;
    --hd2: 4.4rem;
    --hd3: 3.6rem;
    --hd4: 2.6rem;
    --hd5: 2.1rem;
    --hd6: 1.8rem;
    --v1: 2rem;
    --v2: 4rem;
    --v3: 7rem;
    --h1: 2rem;
    --h2: 3rem;
    --h3: 7rem;
  }
}
/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-weight: var(--regular);
  font-size: var(--base);
  color: var(--n2);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title {
  font-weight: var(--bold);
  font-family: var(--font-family);
  color: var(--n2);
  line-height: 1;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .title span {
  color: var(--accent);
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

strong, b {
  font-weight: var(--bold);
}

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

figcaption {
  font-size: var(--small);
  color: var(--n2);
  padding-top: 0.5em;
}

input[type=text],
input[type=search],
input[type=email],
input[type=password] {
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--base);
  padding: 0.5em;
  border: 1px solid var(--n3);
  border-radius: 4px;
}
input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=password]:focus {
  outline: none;
  border-color: var(--primary);
}

.button,
button,
input[type=button],
input[type=submit] {
  font-family: var(--font-sans);
  font-size: var(--base);
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  line-height: 3;
  text-transform: uppercase;
  padding: 0.1em var(--h3) 0 var(--h3);
  border: none;
  border-radius: var(--v3);
  background-color: var(--accent);
  color: var(--n1);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.button:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  background-color: var(--wh);
}
.button.button-small,
button.button-small,
input[type=button].button-small,
input[type=submit].button-small {
  padding: 0.1em var(--h2) 0 var(--h2);
  font-size: var(--small);
  line-height: 2;
  border-radius: 4px;
}
.button.secondary,
button.secondary,
input[type=button].secondary,
input[type=submit].secondary {
  background-color: rgba(0, 21, 14, 0.8);
  color: var(--wh);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.button.secondary:hover,
button.secondary:hover,
input[type=button].secondary:hover,
input[type=submit].secondary:hover {
  background-color: var(--primary);
  color: var(--wh);
}
.button.is-icon,
button.is-icon,
input[type=button].is-icon,
input[type=submit].is-icon {
  padding: 0;
  line-height: 0;
  background: none;
  color: currentColor;
}
.button.has-icon,
button.has-icon,
input[type=button].has-icon,
input[type=submit].has-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.button.has-icon svg,
button.has-icon svg,
input[type=button].has-icon svg,
input[type=submit].has-icon svg {
  width: 1.2em;
  height: 1.2em;
}

h1 {
  font-size: var(--hd3);
}

h2 {
  font-size: var(--hd4);
}

h3 {
  font-size: var(--hd5);
}

h4, h5, h6 {
  font-size: var(--hd6);
}

@media screen and (min-width: 1000px) {
  h1 {
    font-size: var(--hd1);
  }
  h2 {
    font-size: var(--hd2);
  }
  h3 {
    font-size: var(--hd3);
  }
  .button,
  button,
  input[type=button],
  input[type=submit] {
    font-size: var(--small);
  }
}
/* Common */
section {
  padding: var(--v3) var(--h3);
  margin-left: auto;
  margin-right: auto;
}
section.section-cover, section.section-dark {
  width: 100%;
}
section h2 {
  font-size: var(--hd3);
  margin-bottom: var(--v2);
  text-align: center;
}

.cta {
  display: block;
  margin: var(--v2) auto 0 auto;
  box-shadow: var(--button-shadow);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: var(--v2);
  background-color: var(--wh);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  cursor: pointer;
}
.card .card-image {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.card .card-number {
  position: absolute;
  top: var(--h3);
  left: var(--h3);
  background-color: var(--card-number-bg);
  border: 1px solid var(--card-number-border);
  color: var(--wh);
  font-size: var(--base);
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.card:hover .card-image {
  transform: scale(1.1);
}

@media screen and (min-width: 1000px) {
  section {
    padding: var(--v3) 0;
  }
  .section-container {
    width: min(100%, var(--boxed-w));
    margin-left: auto;
    margin-right: auto;
  }
  h2, .service-title {
    font-size: var(--hd2);
  }
  .cta {
    font-size: var(--hd6);
  }
  .card {
    border-radius: 1em;
  }
  .card .card-number {
    top: var(--h2);
    left: var(--h2);
  }
}
/* Site Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--v2) var(--v2);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 21, 14, 0.9);
  z-index: 1000;
}

.app-logo {
  display: block;
  width: min(30%, 180px);
}

.app-header-actions {
  display: flex;
  align-items: center;
  gap: var(--h1);
}
.app-header-actions button {
  color: var(--wh);
}

.app-header-nav {
  position: fixed;
  background-color: var(--n1);
  opacity: 0.97;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(80vw, 320px);
  display: flex;
  flex-direction: column;
  padding: var(--v2);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.app-header-close {
  align-self: flex-end;
  cursor: pointer;
  padding: 0;
  color: var(--wh);
}

.app-header-close.is-icon {
  color: var(--wh);
}

.app-header-open .app-header-nav {
  transform: translateX(0);
}

.app-header-link {
  color: var(--wh);
  text-decoration: none;
  font-weight: var(--medium);
  font-size: var(--hd4);
  padding: var(--v2) 0;
  position: relative;
}
.app-header-link::before, .app-header-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}
.app-header-link::before {
  background-color: var(--n3);
  opacity: 1;
}
.app-header-link::after {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.app-header-link:hover::after {
  transform: scaleX(1);
}

@media screen and (min-width: 1000px) {
  .app-header {
    justify-content: space-between;
    padding: var(--v1) var(--h3) var(--v1) var(--h3);
  }
  .app-header-nav {
    position: static;
    background-color: transparent;
    opacity: 1;
    width: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    gap: var(--v2);
    flex: 1;
    padding: 0;
    transform: translateX(0);
  }
  .icon-button,
  .app-header-close,
  #menu-toggle {
    display: none;
  }
  .app-header-link {
    padding: var(--v1) 0;
    margin-right: 0;
    font-size: var(--hd6);
  }
  .app-header-link::before, .app-header-link::after {
    display: none;
  }
}
/* Section */
.section-dark {
  background: var(--bg-gradient);
  color: var(--wh);
}
.section-dark h2 {
  color: var(--wh);
}

/* Cover Section */
.section-cover {
  height: 100vh;
  background-image: linear-gradient(to right, rgba(0, 21, 14, 0.8) 20%, rgba(0, 21, 14, 0.3) 100%), url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--v3) var(--h3);
}
.section-cover h1, .section-cover h3 {
  color: var(--wh);
  text-shadow: var(--text-shadow);
  padding-right: 30%;
}
.section-cover h1 {
  font-size: var(--hd1);
  line-height: 1;
  margin-bottom: var(--v2);
}
.section-cover h3 {
  font-weight: var(--regular);
  text-wrap: balance;
  line-height: 1.2;
}
.section-cover .eyebrow {
  display: inline-block;
  font-size: var(--small);
  font-weight: var(--regular);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wh);
  line-height: 2.6;
  border-radius: var(--v2);
  margin-bottom: var(--v2);
  padding: 0.1em var(--h2) 0 var(--h2);
  background-color: rgba(125, 125, 125, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.section-cover .cover-text {
  margin-bottom: var(--v3);
}
.section-cover .cover-actions {
  display: flex;
  justify-content: space-between;
  padding: 0 0 var(--v3) 0;
}
.section-cover .cover-actions button {
  margin: var(--v2) 0;
}

@media screen and (min-width: 1000px) {
  .section-cover h1 {
    font-size: var(--hd0);
  }
  .section-cover h3 {
    font-size: var(--hd4);
  }
  .section-cover .cover-text {
    margin-bottom: var(--v2);
  }
  .section-cover .cover-actions {
    justify-content: flex-start;
    gap: var(--h2);
  }
}
/* Evaluators Section */
.section-evaluators {
  background-color: var(--light-sand);
}
.section-evaluators .evaluators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--h3);
  justify-items: center;
}
.section-evaluators .evaluator-media {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-evaluators .evaluator-media .card-image {
  height: 100%;
}
.section-evaluators .evaluator-media svg {
  width: 60%;
  aspect-ratio: 1/1;
  height: auto;
  color: var(--wh);
  opacity: 0.7;
}
.section-evaluators .evaluator-card-name {
  font-size: var(--base);
  color: var(--primary);
  margin: 1em 1em 0.2em 1em;
}
.section-evaluators .evaluator-card-description {
  margin: 0 1em var(--v1) 1em;
  font-size: var(--small);
  font-style: italic;
}
.section-evaluators .evaluator-card-text {
  margin: 0.5em 1em var(--v1) 1em;
  font-size: var(--small);
}

.section-evaluators.section-dark .evaluator-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.section-evaluators.section-dark .evaluator-media {
  background-color: rgba(255, 255, 255, 0.04);
}
.section-evaluators.section-dark .evaluator-card-name {
  color: var(--wh);
}
.section-evaluators.section-dark .evaluator-card-description,
.section-evaluators.section-dark .evaluator-card-text {
  color: rgba(255, 255, 255, 0.86);
}

@media (min-width: 1000px) {
  .section-evaluators .evaluators-grid {
    margin-top: var(--v2);
    gap: var(--h1);
    grid-template-columns: repeat(6, 1fr);
  }
  .section-evaluators .evaluator-card-description {
    font-size: var(--small);
  }
}
/* Arguments Section */
.section-arguments .arguments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--v1);
}
.section-arguments .argument-card {
  display: flex;
  flex-direction: row;
  flex: 1 1 1;
  padding: 0;
  background-color: var(--n2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.section-arguments .argument-media {
  color: var(--n3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--h2);
}
.section-arguments .argument-media svg {
  aspect-ratio: 1/1;
  width: 5rem;
  height: 5rem;
}
.section-arguments .argument-content {
  height: 100%;
  padding: var(--v1) var(--h2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--light-sand);
  text-align: left;
}
.section-arguments .argument-title {
  font-size: var(--hd6);
}
.section-arguments .argument-description {
  margin-top: var(--v1);
  line-height: 1.3;
  color: var(--n2);
}

@media screen and (min-width: 1000px) {
  .section-arguments .arguments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--h1);
  }
  .section-arguments .argument-media svg {
    width: 7rem;
    height: 7rem;
  }
  .section-arguments .argument-title {
    font-size: var(--hd5);
  }
  .section-arguments .argument-description {
    font-size: var(--small);
  }
}
/* Stories Section */
.section-stories {
  background-color: var(--light-sand);
}
.section-stories .stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--v2);
}
.section-stories .stories-grid > :first-child {
  grid-column: 1/-1;
}
.section-stories .story-card {
  position: relative;
  height: 30vh;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.28s ease;
}
.section-stories .story-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}
.section-stories .card-number svg {
  width: 1em;
  height: 1em;
}
.section-stories .story-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-stories .story-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--image-gradient);
}
.section-stories .story-cover .story-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--wh);
  padding: var(--v2) var(--h2);
  text-align: left;
}
.section-stories .story-cover .story-title {
  color: var(--wh);
  font-size: var(--hd6);
}
.section-stories .story-cover .story-description {
  margin-top: var(--v1);
  line-height: 1.3;
}

@media screen and (min-width: 1000px) {
  .section-stories .stories-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--h1);
  }
  .section-stories .stories-grid > :first-child {
    grid-column: 1/1;
  }
  .section-stories .stories-grid > :first-child .story-description {
    display: none;
  }
  .section-stories .story-cover .story-title {
    font-size: var(--hd6);
  }
  .section-stories .story-cover .story-content {
    padding: var(--v2) var(--h2);
  }
  .section-stories .story-description {
    font-size: var(--small);
  }
}
/* Numbers Section */
.section-numbers {
  background: linear-gradient(to top, var(--primary) 0%, var(--n1) 100%);
}

.numbers-grid {
  margin-top: var(--v2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--v2);
  text-align: center;
}

.section-numbers .number-item {
  padding: var(--v2) var(--v1);
  min-height: 12rem;
  justify-content: center;
  cursor: default;
  background-color: var(--card-number-bg);
  border: 1px solid var(--card-number-border);
  box-shadow: none;
}

.number-value {
  font-size: var(--hd3);
  color: var(--accent);
  text-shadow: var(--text-shadow);
}

.number-description {
  color: var(--n4);
  font-size: var(--small);
  margin-top: 0.5em;
  text-transform: uppercase;
  text-wrap: balance;
}

.number-text {
  margin-top: var(--v2);
  padding: var(--v3) var(--h2);
  background-color: var(--card-number-bg);
  border: 1px solid var(--card-number-border);
  box-shadow: none;
}
.number-text h3 {
  text-align: center;
  font-size: var(--hd4);
  margin-bottom: var(--v1);
  text-wrap: balance;
  color: var(--wh);
}
.number-text p {
  text-align: center;
  font-size: var(--base);
  color: var(--n4);
  line-height: 1.3;
}

@media (min-width: 1000px) {
  .numbers-grid {
    width: min(80%, var(--boxed-w));
    margin: var(--v3) auto;
    grid-template-columns: repeat(4, 1fr);
  }
  .number-value {
    font-size: var(--hd1);
  }
  .number-description {
    font-size: var(--base);
  }
  .number-text h3 {
    font-size: var(--hd3);
    margin-bottom: var(--v2);
  }
  .number-text .number-insight {
    font-size: var(--hd5);
    width: 50%;
    text-wrap: balance;
  }
}
/* Services Section */
.section-services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--h3);
  justify-items: center;
  margin: var(--v2) auto 0 auto;
}

.service-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: var(--v1);
  margin-top: 0;
  padding: 0 0 var(--v1) 0;
  border-radius: var(--v2);
  background-color: var(--light-sand);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  text-align: center;
  color: var(--n2);
}
.service-item .service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-top-left-radius: var(--v2);
  border-top-right-radius: var(--v2);
}
.service-item .card-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.section-services .step-n {
  z-index: 2;
  font-size: var(--small);
  width: auto;
  min-width: 2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 0.6em;
  border-radius: var(--v3);
}

.service-title {
  font-size: var(--hd6);
  margin: 1em 1em 0.2em 1em;
  color: var(--n2);
}
.service-title::after {
  display: none;
}

.service-description {
  margin: 0 1em var(--v1) 1em;
}

@media (min-width: 1000px) {
  .section-services .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--h1);
  }
  .section-services .service-title {
    font-size: var(--hd5);
  }
}
/* Section FAQ */
.section-faq {
  background-color: var(--light-sand);
}

.faq-container {
  margin-top: var(--v2);
  border-top: 1px solid var(--n3);
}

.faq-item {
  padding: var(--v2) 0;
  border-bottom: 1px solid var(--n3);
}

.faq-question {
  font-size: var(--hd6);
  font-weight: var(--medium);
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: " + ";
  font-family: sans-serif;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question {
  color: var(--primary);
}
.faq-item.open .faq-question::after {
  content: " – ";
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 30rem;
  opacity: 1;
  margin-top: var(--v1);
}

.section-contact {
  margin: var(--v3) 0 var(--v3);
  border-radius: var(--v2);
  padding: var(--v2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-contact p {
  font-size: var(--base);
  text-align: center;
  margin-bottom: var(--v2);
}

@media (min-width: 1000px) {
  .faq-question {
    font-size: var(--hd5);
  }
  .section-contact p {
    font-size: var(--hd5);
  }
}
/* Page Content Section */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--h3);
  justify-items: center;
  margin: var(--v2) auto 0 auto;
}
.content-grid.has-2-columns {
  grid-template-columns: repeat(1, 1fr);
  gap: var(--h2);
}
.content-grid.has-3-columns {
  grid-template-columns: repeat(1, 1fr);
  gap: var(--h3);
}

.content-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: var(--v1);
  margin-top: 0;
  padding: 0 0 var(--v1) 0;
  border-radius: var(--v2);
  background-color: var(--light-sand);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  text-align: center;
  color: var(--n2);
}
.content-item .content-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-top-left-radius: var(--v2);
  border-top-right-radius: var(--v2);
}
.content-item .card-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.content-item .content-text {
  padding: var(--v2) var(--h2);
}
.content-item .content-text p {
  margin-top: var(--v1);
  text-align: left;
}
.content-item .content-text h3, .content-item .content-text h4 {
  margin-top: var(--v1);
  text-align: left;
}

.content-title {
  font-size: var(--hd4);
  margin: 0 0 1em 0;
  color: var(--n2);
  text-align: left;
  text-wrap: balance;
}
.content-title::after {
  display: none;
}

.content-description {
  margin: 0 1em var(--v1) 1em;
}

.section-content.section-dark .content-item {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  color: var(--wh);
}
.section-content.section-dark .content-title {
  color: var(--wh);
}
.section-content.section-dark .content-text p,
.section-content.section-dark .content-description {
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1000px) {
  .content-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--v3);
  }
  .content-grid.has-2-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--h3);
  }
  .content-grid.has-3-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--h3);
  }
  .section-content .content-item {
    flex-direction: row;
    text-align: left;
    padding: 0;
    gap: 0;
  }
  .section-content .content-item .content-media {
    height: 100%;
    width: 50%;
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--v2);
  }
  .section-content .content-item .content-text {
    width: 50%;
    padding: var(--v2) var(--h2);
  }
  .section-content .content-item.content-reverse {
    flex-direction: row-reverse;
  }
  .section-content .content-item.content-reverse .content-media {
    border-top-left-radius: 0;
    border-top-right-radius: var(--v2);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .section-content .content-title {
    font-size: var(--hd3);
  }
}
/* Footer */
.app-footer {
  padding: var(--v2) 0 var(--v1) 0;
}
.app-footer section {
  width: 100%;
  margin: 0;
  padding: var(--v1) var(--h3);
}
.app-footer .app-logo {
  margin-bottom: var(--v1);
}

.app-footer-inner {
  width: min(100%, var(--boxed-w));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--v1);
}

.app-footer-block:first-of-type {
  grid-column: 1/-1;
}

.app-footer-contact {
  grid-column: span 2;
}

.app-footer-block h3,
.app-footer-block h4 {
  color: var(--wh);
  margin-bottom: var(--v1);
}
.app-footer-block p {
  color: var(--n4);
  margin-bottom: var(--v1);
  text-wrap: balance;
}

.app-footer-nav {
  display: grid;
  gap: var(--v1);
}
.app-footer-nav a {
  color: var(--n4);
  width: max-content;
  font-size: var(--base);
  font-weight: var(--regular);
  padding: 0;
  line-height: 1.4;
}
.app-footer-nav a::before, .app-footer-nav a::after {
  display: none;
}
.app-footer-nav a:hover {
  color: var(--wh);
}

.app-footer-bottom {
  grid-column: 1/-1;
  width: 100%;
  padding: var(--v2) 0 var(--v2) 0;
}
.app-footer-bottom p {
  text-align: center;
  color: var(--n4);
  font-size: var(--small);
}

@media (min-width: 1000px) {
  .app-footer {
    padding: var(--v2) 0 var(--v1) 0;
  }
  .app-footer section {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .app-footer .app-logo {
    width: min(50%, 150px);
  }
  .app-footer-inner {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--v1) var(--h1);
  }
  .app-footer-block:first-of-type {
    grid-column: span 2;
  }
  .app-footer-nav {
    gap: 0.5em;
    font-size: var(--small);
  }
  .app-footer-contact {
    grid-column: auto;
  }
}