/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --c-black: #000;
  --c-black-rgb: 0, 0, 0;
  --c-white: #fff;
  --c-white-rgb: 255, 255, 255;
  --c-carbon: #08121E;
  --c-carbon-rgb: 8, 18, 30;
  --c-slate: #686A76;
  --c-slate-rgb: 104, 106, 118;
  --c-stone: #AAA9B3;
  --c-stone-rgb: 170, 169, 179;
  --c-platinum: #FAFAFA;
  --c-platinum-rgb: 250, 250, 250;
  --c-garlic: #521871;
  --c-garlic-rgb: 82, 24, 113;
  --c-alert: #EB3145;
  --c-alert-rgb: 235, 49, 69;
  --bp-menu: 800px;
  --bp-md: 800px;
  --bp-lg: 1200px;
  --bp-max: 1600px;
  --fs-15: 0.9375rem;
  --fs-16: 1.0rem;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-19: 1.1875rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2.0rem;
  --fs-40: 2.5rem;
  --fs-50: 3.125rem;
  --fs-60: 3.75rem;
  --fs-70: 4.375rem;
  --fs-80: 5.0rem;
  --f-primary: "Inter", Helvetica, Arial, sans-serif;
}

body,
html {
  min-height: 100%;
}

body {
  margin: 0;
  background-color: rgba(var(--c-white-rgb), 0.99);
  overflow-x: hidden;
  padding-top: 80px;
  padding-bottom: 0;
}
@media screen and (min-width: 800px) {
  body {
    padding-top: 120px;
    padding-bottom: 0;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  font-optical-sizing: auto;
  font-family: var(--f-primary);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--c-forest);
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--f-primary);
  color: var(--c-carbon);
}

h1, h2 {
  margin: 0 0 40px;
  font-size: var(--fs-32);
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  h1, h2 {
    font-size: var(--fs-40);
  }
}

h3 {
  margin: 0 0 30px;
  font-size: var(--fs-24);
  font-weight: 500;
}
@media screen and (min-width: 800px) {
  h3 {
    font-size: var(--fs-28);
  }
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 40px;
}
p strong {
  font-weight: 700;
}
p em {
  font-style: italic;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1600px;
}
.container--min {
  max-width: 900px;
}
.container--max {
  max-width: 1800px;
}
@media screen and (min-width: 800px) {
  .container {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    padding: 0 100px;
  }
}

.block {
  margin-bottom: 120px;
}
.block:first-of-type {
  margin-top: 60px;
}
@media screen and (min-width: 800px) {
  .block:first-of-type {
    margin-top: 120px;
  }
}
.block--bg {
  padding: 60px 0;
}
@media screen and (min-width: 800px) {
  .block--bg {
    padding: 120px 0;
  }
}
.block--bg:last-of-type {
  margin-bottom: 0;
}
.block--platinum {
  background-color: var(--c-platinum);
}
.block--garlic {
  background-color: var(--c-garlic);
}
.block--alert {
  background-color: var(--c-alert);
}

.section .col {
  margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
  .section .col {
    margin: 0;
  }
}
.section .col:last-child {
  margin: 0;
}
@media screen and (min-width: 1400px) {
  .overview__grid {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 80px;
  }
}

.section-header {
  margin-bottom: 60px;
}

.section-header__header {
  font-size: var(--fs-50);
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  .section-header__header {
    font-size: var(--fs-70);
  }
}

.section-header__text {
  font-size: var(--fs-18);
  font-weight: 400;
}
@media screen and (min-width: 800px) {
  .section-header__text {
    font-size: var(--fs-20);
  }
}

.section-cta {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 800px) {
  .service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .service-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
  }
}

.service-card {
  margin-bottom: 60px;
}
.service-card:last-child {
  margin: 0;
}
@media screen and (min-width: 800px) {
  .service-card {
    margin: 0;
  }
}

.service-card__icon {
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  .service-card__icon {
    margin-bottom: 30px;
  }
}

.service-card__header {
  margin: 0;
  font-size: var(--fs-28);
  font-weight: 500;
  color: var(--c-carbon);
}

.service-card__text {
  margin: 10px 0 0 0;
  font-size: var(--fs-16);
  font-weight: 400;
  color: var(--c-slate);
}
@media screen and (min-width: 800px) {
  .service-card__text {
    margin: 20px 0 0 0;
    font-size: var(--fs-16);
  }
}

@media screen and (min-width: 800px) {
  .bio__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}

.wp-block-image {
  margin-bottom: 40px;
}
.wp-block-image .wp-element-caption {
  color: var(--c-carbon);
  font-weight: 400;
}

.wp-block-embed {
  margin-bottom: 40px;
}

.wp-block-quote {
  background-color: transparent;
  max-width: 90%;
  margin: 60px auto;
  padding: 0 0 0 40px;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("../img/blockquote.svg");
}
.wp-block-quote p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
  font-family: var(--f-primary);
  font-weight: 400;
  font-style: normal;
  color: var(--c-forest);
}

.wp-block-separator {
  display: block;
  border: none;
  height: 8px;
  width: 42px;
  margin: 20px auto !important;
  background-repeat: no-repeat;
  background-size: 42px 8px;
  background-image: url("../img/separator.svg");
}
@media screen and (min-width: 800px) {
  .wp-block-separator {
    margin: 40px auto !important;
  }
}

.video__embed iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
}

.alignwide {
  width: auto;
  max-width: 1000%;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 800px) {
  .alignwide {
    margin-left: -50px;
    margin-right: -50px;
  }
}

.alignfull {
  width: auto;
  max-width: 1000%;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 800px) {
  .alignfull {
    margin-left: calc(50% - 50vw + 0px);
    margin-right: calc(50% - 50vw - 0px);
  }
}

.header {
  grid-template-columns: 1fr 1fr;
  display: grid;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background-color: var(--c-white);
  height: 80px;
  padding: 0 20px;
}
@media screen and (min-width: 800px) {
  .header {
    padding: 0 50px;
    height: 120px;
  }
}
@media screen and (min-width: 1400px) {
  .header {
    padding: 0 100px;
  }
}

.social-links .social-links__icon {
  margin: 0 0 0 16px;
}
@media screen and (min-width: 800px) {
  .social-links .social-links__icon {
    margin: 0 0 0 30px;
  }
}
.social-links .social-links__icon:hover {
  fill: var(--c-alert);
}
.social-links .social-links__icon svg {
  width: 24px;
  fill: var(--c-garlic);
}

.social {
  display: flex;
  justify-content: end;
}
.social--footer {
  justify-content: center;
}
@media screen and (min-width: 800px) {
  .social--footer {
    justify-content: start;
  }
}
.social--footer .social-links__icon {
  margin: 0 10px;
}
@media screen and (min-width: 800px) {
  .social--footer .social-links__icon {
    margin: 0 0 0 20px;
  }
}
.social--footer .social-links__icon svg {
  fill: var(--c-white);
}

.search-bar__wrap {
  display: grid;
  place-items: center;
  position: fixed;
  top: 120px;
  width: 100%;
  background-color: var(--c-mint);
  padding: 50px;
  display: none;
}
.search-bar__wrap.active {
  display: block;
}

.search-bar {
  width: 100%;
  max-width: 600px;
}

.search-form {
  position: relative;
  width: 100%;
}

.search-field {
  border: 0 !important;
  background-color: var(--c-white) !important;
  border-radius: 25px !important;
  height: 50px !important;
  padding: 0 120px 0 20px !important;
  color: var(--c-forest) !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1;
  width: 100%;
}
.search-field::placeholder {
  color: rgba(var(--c-slate-rgb), 0.5) !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1;
}

.search-button {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  border: 1px solid var(--c-mint) !important;
  background-color: transparent !important;
  color: var(--c-mint) !important;
  padding: 0 20px !important;
  height: 38px !important;
  border-radius: 19px !important;
  font-weight: 700 !important;
  font-size: 0.9375rem !important;
  line-height: 1;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.search-open {
  display: grid;
  place-items: center;
  position: absolute;
  top: 45px;
  right: 46px;
  height: 30px;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: none;
}
.search-open.active {
  display: block;
}
.search-open svg {
  display: block;
  height: 22px;
  width: 22px;
}

.search-close {
  display: grid;
  place-items: center;
  position: absolute;
  top: 45px;
  right: 46px;
  height: 30px;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: none;
}
.search-close.active {
  display: block;
}
.search-close svg {
  display: block;
  height: 22px;
  width: 22px;
  fill: black;
}

.footer {
  background-color: var(--c-carbon);
  background-color: #000;
  color: var(--c-white);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url("../img/footer.jpg");
}

.footer__newsletter {
  padding: 60px 0;
}
@media screen and (min-width: 800px) {
  .footer__newsletter {
    padding: 120px 0;
  }
}

.footer__footer {
  display: grid;
  padding: 30px 0;
}
@media screen and (min-width: 800px) {
  .footer__footer {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}

.footer__contacts {
  justify-self: center;
  margin-top: 80px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer__contacts {
    justify-self: end;
    margin: 0;
    text-align: right;
  }
}

.footer__address {
  margin-bottom: 20px;
  font-weight: 300;
}
.footer__address strong {
  font-weight: 600;
}

.copyright {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .copyright {
    margin: 0;
  }
}
.copyright strong {
  font-weight: 500;
}

.section-header--footer {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.section-header--footer .section-header__headline {
  color: var(--c-white);
  font-size: var(--fs-60);
  font-weight: 700;
}
@media screen and (min-width: 800px) {
  .section-header--footer .section-header__headline {
    font-size: var(--fs-80);
  }
}
.section-header--footer .section-header__text {
  margin: 20px 0 0 0;
  color: rgba(var(--c-white-rgb), 0.8);
  font-size: var(--fs-18);
}
@media screen and (min-width: 800px) {
  .section-header--footer .section-header__text {
    font-size: var(--fs-20);
  }
}

.contact-form {
  margin: 0 auto 60px;
  max-width: 600px;
}
.contact-form form {
  position: relative;
}
.contact-form .gfield input,
.contact-form textarea {
  border: 0 !important;
  border-bottom: 1px solid rgba(var(--c-slate-rgb), 0.22) !important;
  background-color: rgba(var(--c-slate-rgb), 0.2) !important;
  border-radius: 0 !important;
  height: 50px !important;
  color: var(--c-white) !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1;
}
.contact-form .gfield input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(var(--c-white-rgb), 0.5) !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1;
}
.contact-form .gfield_label {
  color: var(--c-white) !important;
  font-weight: 700 !important;
  font-size: 0.9375rem !important;
  line-height: 1;
  text-transform: uppercase !important;
}
.contact-form .gform_button {
  display: inline-flex;
  border: 0 !important;
  background-color: var(--c-alert) !important;
  color: var(--c-white) !important;
  padding: 0 20px !important;
  height: 38px !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
  font-size: 0.9375rem !important;
  line-height: 1;
  text-transform: uppercase !important;
}
.contact-form .gform_confirmation_message {
  text-align: center;
}

@media screen and (min-width: 800px) {
  .footer-menu__wrap {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    gap: 80px;
  }
}

.footer-menu {
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  .footer-menu {
    margin: 0;
  }
}
.footer-menu .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer-menu .menu {
    text-align: left;
  }
}
.footer-menu .menu li {
  margin-bottom: 15px;
}
.footer-menu .menu li:last-child {
  margin: 0;
}
.footer-menu .menu a {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-menu .sub-menu {
  margin: 15px 0 0 0;
  padding: 0;
  list-style: none;
}
.footer-menu .sub-menu li {
  margin-bottom: 5px;
}
.footer-menu .sub-menu a {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(var(--c-white-rgb), 0.8);
}

.menu-toggle {
  display: none;
}

.menu-wrap {
  margin-left: auto;
  padding-right: 56px;
}

.primary-menu .menu {
  display: flex;
  list-style: none;
}
.primary-menu .menu li {
  position: relative;
  margin-left: 60px;
}
.primary-menu .menu li:hover .sub-menu {
  display: block;
}
.primary-menu .menu a {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.primary-menu .sub-menu {
  position: absolute;
  left: -20px;
  margin: 0;
  list-style: none;
  background-color: var(--c-cobalt);
  padding: 20px;
  width: 200px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  display: none;
}
.primary-menu .sub-menu li {
  position: relative;
  margin: 0 0 6px;
}
.primary-menu .sub-menu a {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-white);
}
.primary-menu .toggle-sub-menu {
  display: none;
}

.primary-menu__container {
  display: flex;
  justify-items: flex-end;
}

.button {
  transition: all 0.25s ease 0s;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid var(--c-white);
  min-width: 200px;
  height: 56px;
  padding: 0 30px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--c-white);
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--f-primary);
}
.button:hover {
  border: 1px solid var(--c-alert);
  background-color: var(--c-alert);
}
.button .button__arrow {
  margin-left: 20px;
}
.button .button__arrow svg {
  fill: var(--c-white);
}
.button--dk {
  border: 1px solid var(--c-carbon);
  color: var(--c-carbon);
}
.button--dk:hover {
  border: 1px solid var(--c-alert);
  background-color: var(--c-alert);
  color: var(--c-white);
}
.button--dk:hover .button__arrow svg {
  fill: var(--c-white);
}
.button--dk .button__arrow svg {
  fill: var(--c-carbon);
}

.logo {
  display: inline-flex;
  width: fit-content;
}
.logo svg {
  display: inline-flex;
  height: 40px;
}
@media screen and (min-width: 800px) {
  .logo svg {
    height: 62px;
  }
}
.logo--footer {
  margin: 20px auto 0;
}
@media screen and (min-width: 800px) {
  .logo--footer {
    margin: 0 0 0 auto;
  }
}
.logo--footer svg {
  height: 28px;
}

.banner {
  padding: 50px 0;
  background-color: rgba(var(--c-garlic-rgb), 1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 800px) {
  .banner {
    padding: 100px 0;
  }
}

.banner__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 800px) {
  .banner__header {
    max-width: 700px;
  }
}

.banner__headline p, .banner__headline h1, .banner__headline h2, .banner__headline h3, .banner__headline h4, .banner__headline h5 {
  font-size: var(--fs-32);
  font-weight: 300;
  color: var(--c-white);
  margin: 0;
}
@media screen and (min-width: 800px) {
  .banner__headline p, .banner__headline h1, .banner__headline h2, .banner__headline h3, .banner__headline h4, .banner__headline h5 {
    font-size: var(--fs-40);
  }
}
.banner__headline p strong, .banner__headline h1 strong, .banner__headline h2 strong, .banner__headline h3 strong, .banner__headline h4 strong, .banner__headline h5 strong {
  font-weight: 500;
}

.banner__text {
  margin-top: 40px;
  font-size: var(--fs-18);
  font-weight: 400;
  font-weight: 300;
  color: var(--c-white);
}
@media screen and (min-width: 800px) {
  .banner__text {
    max-width: 80%;
    font-size: var(--fs-20);
  }
}

.banner__cta {
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  .banner__cta {
    margin-top: 50px;
  }
}

.callout {
  padding: 140px 20px 100px;
  background: var(--c-rose);
  clip-path: polygon(0 7%, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (min-width: 500px) {
  .callout {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (min-width: 800px) {
  .callout {
    padding: 240px 0 160px;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (min-width: 1100px) {
  .callout {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (min-width: 1400px) {
  .callout {
    clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
  }
}

.callout__container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 800px;
}
@media screen and (min-width: 800px) {
  .callout__container {
    padding: 0 50px;
  }
}

.callout__wrap {
  display: grid;
  place-items: center;
  text-align: center;
}
.callout__header {
  text-align: center;
}
.callout__headline {
  margin: 0;
  font-weight: 600;
  color: var(--c-white);
  font-size: 2.5rem;
}
@media screen and (min-width: 800px) {
  .callout__headline {
    font-size: 3.125rem;
  }
}

.callout__text {
  margin: 20px auto 0 auto;
  color: var(--c-white);
  font-size: 1.125rem;
}
@media screen and (min-width: 800px) {
  .callout__text {
    max-width: 80%;
    font-size: 1.25rem;
  }
}

.callout__cta {
  margin-top: 50px;
}
.postcard__wrap {
  background: var(--c-rose);
}
@media screen and (min-width: 800px) {
  .postcard__wrap {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
  }
}

.postcard__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
@media screen and (min-width: 800px) {
  .postcard__image {
    clip-path: polygon(0 0, 100% 0, calc(100% - 100px) 100%, 0% 100%);
    grid-column: 1/3;
    height: 100%;
  }
}

.postcard__header {
  padding: 30px 20px 50px 20px;
}
@media screen and (min-width: 800px) {
  .postcard__header {
    grid-column: 3/4;
    padding: 50px 20px 50px 20px;
  }
}

.postcard__headline {
  margin: 0;
  font-weight: 600;
  color: var(--c-white);
  font-size: 2rem;
}
@media screen and (min-width: 800px) {
  .postcard__headline {
    font-size: 2.5rem;
  }
}

.postcard__text {
  margin: 20px 0 0 0;
  color: var(--c-white);
  font-size: 1.125rem;
}
@media screen and (min-width: 800px) {
  .postcard__text {
    font-size: 1.25rem;
  }
}

.postcard__cta {
  margin-top: 30px;
}

.columns {
  padding: 0 20px;
}
@media screen and (min-width: 800px) {
  .columns {
    padding: 0;
  }
}
@media screen and (min-width: 1100px) {
  .columns--2 .columns__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .columns--2.layout--2-3 .columns__grid {
    grid-template-columns: 3fr 5fr;
  }
}
@media screen and (min-width: 1100px) {
  .columns--2.layout--3-2 .columns__grid {
    grid-template-columns: 5fr 3fr;
  }
}

.faqs__container {
  margin: 0 auto;
  max-width: 800px;
}

.faq {
  border-top: 1px solid var(--c-stone);
}
.faq:last-child {
  border-bottom: 1px solid var(--c-stone);
}

.faq__toggle {
  position: relative;
  margin: 0;
  padding: 20px 50px 20px 0;
  background-color: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.faq__toggle.active .faq__toggle-icon {
  transform: rotate(45deg);
}

.faq__toggle-icon {
  transition: all, 0.3s;
  position: absolute;
  top: 20px;
  right: 0;
}
.faq__toggle-icon svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: #000;
}

.faq__question {
  color: var(--c-forest);
  font-size: 1.5rem;
}
@media screen and (min-width: 800px) {
  .faq__question {
    font-size: 1.875rem;
    font-size: 1.75rem;
  }
}

.faq__answer p {
  color: var(--c-slate);
}

.gallery .owl-nav {
  display: none;
}
.gallery .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.gallery .owl-dot {
  margin: 0 4px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: var(--c-cobalt) !important;
  opacity: 0.5;
}
.gallery .owl-dot.active {
  opacity: 1;
}

.gallery__image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 500px) {
  .gallery__image {
    height: 400px;
  }
}
@media screen and (min-width: 800px) {
  .gallery__image {
    height: 500px;
  }
}
@media screen and (min-width: 1100px) {
  .gallery__image {
    height: 600px;
  }
}
@media screen and (min-width: 1400px) {
  .gallery__image {
    height: 700px;
  }
}

.gallery__caption {
  display: none;
}

.highlights {
  padding: 60px 20px;
}
@media screen and (min-width: 800px) {
  .highlights {
    padding: 120px 0;
  }
}
@media screen and (min-width: 800px) {
  .highlights--2 .highlights__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .highlights--2 .highlights__grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}
@media screen and (min-width: 800px) {
  .highlights--3 .highlights__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .highlights--3 .highlights__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;
  }
}

@media screen and (min-width: 800px) {
  .highlights__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .highlights__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.highlight-card {
  margin-bottom: 60px;
}
.highlight-card:last-child {
  margin: 0;
}
@media screen and (min-width: 800px) {
  .highlight-card {
    margin: 0;
  }
}

.highlight-card__icon {
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  .highlight-card__icon {
    margin-bottom: 30px;
  }
}

.highlight-card__header {
  margin: 0;
  font-size: var(--fs-28);
  font-weight: 500;
  color: var(--c-carbon);
}

.highlight-card__text {
  margin: 10px 0 0 0;
  font-size: var(--fs-16);
  font-weight: 400;
  color: var(--c-slate);
}
@media screen and (min-width: 800px) {
  .highlight-card__text {
    margin: 20px 0 0 0;
    font-size: var(--fs-16);
  }
}

.highlight-card__cta {
  margin-top: 20px;
}

.testimonials {
  padding: 120px 20px;
  background-color: var(--c-cobalt);
}
.testimonials .owl-nav {
  display: none;
}
.testimonials .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.testimonials .owl-dot {
  margin: 0 4px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: var(--c-cobalt) !important;
  background: var(--c-white) !important;
  opacity: 0.5;
}
.testimonials .owl-dot.active {
  opacity: 1;
}

.testimonials__container {
  margin: 0 auto;
  max-width: 550px;
}

.testimonial__quote {
  font-size: 1.875rem;
  font-weight: 200;
  font-style: italic;
  color: var(--c-white);
  font-family: var(--f-primary);
}
@media screen and (min-width: 800px) {
  .testimonial__quote {
    font-size: 2.25rem;
  }
}

.testimonial__footer {
  margin-top: 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-ice);
}

.testimonial__company {
  font-weight: 300;
}

.resources-callout {
  padding: 160px 0;
  background: var(--c-ice);
}

@media screen and (min-width: 800px) {
  .resources-callout__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .resources-callout__grid {
    gap: 90px;
  }
}
@media screen and (min-width: 1400px) {
  .resources-callout__grid {
    gap: 120px;
  }
}

.resource-card {
  margin-bottom: 60px;
}
.resource-card:last-child {
  margin: 0;
}
@media screen and (min-width: 800px) {
  .resource-card {
    margin: 0;
  }
}

.resource-card__image {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 2.13/1;
}

.resource-card__link {
  color: var(--c-forest);
}
.resource-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.resource-card__header {
  margin-top: 20px;
}

.resource-card__title {
  margin: 2px 0 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-forest);
  font-family: var(--f-primary);
}

.resource-card__cat {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-mint);
}

@media screen and (min-width: 800px) {
  .resources__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .resources__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 90px;
  }
}
@media screen and (min-width: 1400px) {
  .resources__grid {
    gap: 120px;
  }
}

.partners-callout {
  padding: 160px 0;
}

@media screen and (min-width: 800px) {
  .partners-callout__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .partners-callout__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 90px;
  }
}
@media screen and (min-width: 1400px) {
  .partners-callout__grid {
    gap: 120px;
  }
}

.partner-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--c-ice);
  text-align: center;
}

.partner-card__image-wrap {
  margin-bottom: 20px;
}

.partner-card__image {
  object-fit: cover;
  border-radius: 100%;
  height: 200px;
  width: 200px;
}
