/* 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-white: #fff;
  --c-white-rgb: 255,255,255;
  --c-black: #1f1f1f;
  --c-black-rgb: 31,31,31;
  --c-slate: #878474;
  --c-slate-rgb: 135,132,116;
  --c-stone: #d9d9d9;
  --c-stone-rgb: 217,217,217;
  --c-ocean: #374e79;
  --c-ocean-rgb: 55,78,79;
  --c-lake: #4d8fb5;
  --c-lake-rgb: 77,143,181;
  --c-ice: #f5f8f9;
  --c-ice-rgb: 245,248,249;
  --c-honey: #e5c425;
  --c-honey-rgb: 229,196,37;
  --c-lemon: #ffde9c;
  --c-lemon-rgb: 255,222,156;
  --c-fog: #f5f5ef;
  --c-fog-rgb: 245,245,239;
  --fs-14: .875rem;
  --fs-15: .9375rem;
  --fs-16: 1rem;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-19: 1.1875rem;
  --fs-20: 1.25rem;
  --fs-22: 1.375rem;
  --fs-24: 1.5rem;
  --fs-25: 1.5625rem;
  --fs-28: 1.75rem;
  --fs-30: 1.875rem;
  --fs-32: 2rem;
  --fs-35: 2.1875rem;
  --fs-36: 2.25rem;
  --fs-38: 2.375rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-56: 3.5rem;
  --fs-60: 3.75rem;
  --fs-70: 4.375rem;
  --fs-90: 5.625rem;
  --fs-100: 6.25rem;
  --p-xl: 160px 0;
  --p-lg: 140px 0;
  --p-md: 120px 0;
  --p-sm: 80px 0;
  --p-xs: 50px 0;
  --f-primary: "Figtree", Helvetica, Arial, sans-serif;
  --f-secondary: "Libre Baskerville", Times, Georgia, serif;
  --wp--custom--spacing--gap: 50px;
}

@media (max-width: 800px) {
  :root {
    --wp--custom--spacing--gap: 20px;
  }
}
body,
html {
  min-height: 100%;
}

body {
  margin: 0;
  background-color: rgba(var(--c-smoke-rgb), 0.99);
  overflow-x: hidden;
}
* {
  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-black);
}

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

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

h1 {
  margin: 0 0 40px;
  font-size: var(--fs-28);
  font-weight: 400;
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: var(--fs-56);
  }
}

h2,
.header--h2 {
  margin: 0 0 40px;
  font-size: var(--fs-28);
  font-weight: 400;
  line-height: 1.3;
  font-family: var(--f-secondary);
  text-transform: none;
}
@media screen and (min-width: 800px) {
  h2,
  .header--h2 {
    font-size: var(--fs-40);
  }
}

h3,
.header--h3 {
  margin: 0 0 10px;
  font-size: var(--fs-18);
  font-weight: 600;
  font-family: var(--f-primary);
  text-transform: uppercase;
}
@media screen and (min-width: 800px) {
  h3,
  .header--h3 {
    font-size: var(--fs-22);
  }
}

h4,
.header--h4 {
  margin: 0 0 10px;
  font-size: var(--fs-16);
  font-weight: 500;
  font-family: var(--f-primary);
  text-transform: uppercase;
}
@media screen and (min-width: 800px) {
  h4,
  .header--h4 {
    font-size: var(--fs-20);
  }
}

.header--h2-sm {
  font-size: var(--fs-28);
  margin: 0 0 20px;
}
@media screen and (min-width: 800px) {
  .header--h2-sm {
    font-size: var(--fs-32);
  }
}

p {
  font-size: var(--fs-18);
  font-weight: 400;
  margin: 0 0 30px;
}
@media screen and (min-width: 800px) {
  p {
    font-size: var(--fs-20);
  }
}
p strong {
  font-weight: 700;
}
p em {
  font-style: italic;
}

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

.layout {
  margin-top: 60px;
}
@media screen and (min-width: 800px) {
  .layout {
    margin-top: 100px;
  }
}
.layout--flat {
  margin-top: 0;
}
.layout--bump {
  margin-bottom: 60px;
}
@media screen and (min-width: 800px) {
  .layout--bump {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 800px) {
  .columns.block--2-1 .column__grid {
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (min-width: 800px) {
  .columns.block--1-2 .column__grid {
    grid-template-columns: 1fr 2fr;
  }
}
.columns.send-to-top .column:nth-child(1) {
  order: 2;
}
@media screen and (min-width: 800px) {
  .columns.send-to-top .column:nth-child(1) {
    order: 1;
  }
}
.columns.send-to-top .column:nth-child(2) {
  order: 1;
}
@media screen and (min-width: 800px) {
  .columns.send-to-top .column:nth-child(2) {
    order: 2;
  }
}
.columns img {
  max-width: 400px;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  aspect-ratio: 1.1/1;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
@media screen and (min-width: 800px) {
  .columns img {
    max-width: 100%;
  }
}

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

.wrap {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1600px;
}
@media screen and (min-width: 1400px) {
  .wrap {
    padding: 0 100px;
  }
}

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

.feature__text p {
  font-size: var(--fs-18);
}

.feature__icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  aspect-ratio: 1.2/1;
  background-color: var(--c-honey);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  width: 80px;
}

.feature__cta {
  margin-top: 30px;
}

.wp-block-image {
  margin-bottom: 40px;
}
.wp-block-image .wp-element-caption {
  color: var(--c-forest);
  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: -100px;
    margin-right: -100px;
  }
}

.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);
  }
}

.section-header {
  margin-bottom: 50px;
  max-width: 900px;
}
.section-header--Center {
  margin: 0 auto 50px auto;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .section-header--Center {
    margin: 0 auto 80px auto;
  }
}
.section-header--Center .section-header__text {
  margin: 30px auto 0 auto;
}
@media screen and (min-width: 800px) {
  .section-header {
    margin-bottom: 80px;
  }
}

.section-header__headline {
  margin: 0;
  font-family: var(--f-primary);
  font-size: var(--fs-48);
  line-height: 0.85;
  font-weight: 800;
  text-transform: uppercase;
}
@media screen and (min-width: 800px) {
  .section-header__headline {
    font-size: var(--fs-100);
  }
}

.section-header__text {
  margin: 30px 0 0 0;
  max-width: 80%;
}
.block {
  margin-bottom: 80px;
}
@media screen and (min-width: 800px) {
  .block {
    margin-bottom: 80px;
  }
}
.block--Ocean {
  background-color: var(--c-ocean);
}
.block--Ice {
  background-color: var(--c-ice);
}
.block--Honey {
  background-color: var(--c-honey);
}
.block--Fog {
  background-color: var(--c-fog);
}
.block--Ocean .section__headline, .block--Ocean .section__text {
  color: var(--c-white);
}
.block:first-child {
  margin-top: 80px;
}
@media screen and (min-width: 800px) {
  .block:first-child {
    margin-top: 80px;
  }
}
.block:first-child.block--bg {
  margin-top: 0;
}
.block:last-child {
  margin-bottom: 80px;
}
@media screen and (min-width: 800px) {
  .block:last-child {
    margin-bottom: 120px;
  }
}
.block:last-child.block--bg {
  margin-bottom: 0;
}
.block.block--bg {
  padding: 80px 0;
}
@media screen and (min-width: 800px) {
  .block.block--bg {
    padding: 120px 0;
  }
}
.block > :last-child {
  margin-bottom: 0;
}

.block--bg:has(+ .block--bg) {
  margin-bottom: 0;
}

.content > *:last-child {
  margin: 0;
}

.header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 120px;
  width: 100%;
}
.search-bar__wrap {
  display: grid;
  place-items: center;
  position: fixed;
  top: 120px;
  width: 100%;
  background-color: var(--c-flame);
  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-black) !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-honey) !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 {
  position: relative;
  padding: 80px 0 20px;
  background-color: var(--c-ocean);
  color: var(--c-white);
  overflow: hidden;
}
.footer h2, .footer h3, .footer h4, .footer p {
  color: var(--c-white);
}
.footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer .bg-waves {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .footer .bg-waves {
    top: -100px;
  }
}
@media screen and (min-width: 800px) {
  .footer {
    padding: 120px 0 20px;
  }
}

.footer__wrap {
  position: relative;
  z-index: 1;
}

.footer__grid {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (min-width: 800px) {
  .footer__grid {
    gap: 150px;
    margin-bottom: 120px;
  }
}

.copyright {
  font-size: var(--fs-14);
  text-align: center;
  text-transform: uppercase;
}
.footer__social {
  display: flex;
  justify-self: end;
}
.social-links__icon {
  display: inline-flex;
  align-self: start;
  margin: 0 10px;
}
@media screen and (min-width: 800px) {
  .social-links__icon {
    margin: 0 0 0 10px;
  }
}
.social-links__icon:hover svg {
  fill: var(--c-fog);
}
.social-links__icon svg {
  transition: 0.3s;
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--c-white);
}

.newsletter-form {
  margin: 0 auto;
  max-width: 400px;
}
.newsletter-form form {
  position: relative;
}
.newsletter-form .gfield input {
  border: 0 !important;
  background-color: var(--c-white) !important;
  border-radius: 25px !important;
  height: 50px !important;
  padding: 0 170px 0 20px !important;
  color: var(--c-forest) !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1;
}
.newsletter-form .gfield input::placeholder {
  color: rgba(var(--c-slate-rgb), 0.5) !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1;
}
.newsletter-form .gform_footer {
  position: absolute;
  top: 6px;
  right: 6px;
  margin-block-start: 0 !important;
}
.newsletter-form .gform_button {
  display: inline-flex;
  border: 1px solid var(--c-cobalt) !important;
  background-color: transparent !important;
  color: var(--c-cobalt) !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;
}

.menu-toggle {
  display: none;
}

.menu-wrap {
  margin-left: auto;
}

.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 {
  transition: 0.3s;
  font-size: var(--fs-18);
  text-transform: uppercase;
  color: var(--c-skull);
}
.primary-menu .menu a:hover {
  color: var(--c-flame);
}

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

.button {
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--c-lake);
  border: 0;
  height: 50px;
  padding: 0 25px;
  overflow: hidden;
  border-radius: 0;
  color: var(--c-white);
  font-size: var(--fs-16);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
}
@media screen and (min-width: 800px) {
  .button {
    height: 60px;
    padding: 0 40px;
    min-width: 200px;
  }
}
.button:hover {
  background-color: var(--c-ocean);
}
.button--outline {
  border: 1px solid var(--c-cobalt);
  background-color: transparent;
  color: var(--c-flame);
}
.button--outline:hover {
  background-color: transparent;
}
.button--light {
  background-color: var(--c-flame);
  color: var(--c-mist);
}
.button--light:hover {
  background-color: var(--c-black);
}
.button--sm {
  padding: 0 30px;
  background-color: var(--c-lemon);
  color: var(--c-black);
  height: 50px;
  min-width: 0;
}
.button--sm:hover {
  background-color: var(--c-honey);
}

.logo {
  display: inline-flex;
  height: 27px;
  max-width: fit-content;
}
@media screen and (min-width: 800px) {
  .logo {
    height: 40px;
  }
}
.banner {
  position: relative;
  padding: 0 0 80px;
}
@media screen and (min-width: 800px) {
  .banner {
    padding: 60px 0 100px;
  }
}

.banner__wrap {
  max-width: 1400px;
  padding-right: 50px;
}
@media screen and (min-width: 800px) {
  .banner__wrap {
    padding-right: 470px;
  }
}

.banner__sub-header {
  color: var(--c-slate);
}

.banner__text {
  font-size: var(--fs-22);
  font-weight: 500;
}

.banner__image-wrap {
  position: absolute;
  top: -150px;
  right: -200px;
  width: 300px;
}
.banner__image-wrap::before {
  position: absolute;
  top: 30px;
  left: -20px;
  background-color: var(--c-lemon);
  clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
  width: 80%;
  height: 80%;
  content: "";
}
@media screen and (min-width: 800px) {
  .banner__image-wrap::before {
    top: 60px;
    left: -60px;
  }
}
@media screen and (min-width: 800px) {
  .banner__image-wrap {
    top: -180px;
    right: -150px;
    width: 600px;
  }
}

.banner__image {
  object-fit: cover;
  object-position: center center;
  width: 300px;
  max-height: 300px;
  clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
}
@media screen and (min-width: 800px) {
  .banner__image {
    width: 600px;
    max-height: 600px;
  }
}

.callout {
  padding: 140px 0 100px;
}
@media screen and (min-width: 800px) {
  .callout {
    padding: 240px 0 160px;
  }
}

.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;
}
.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;
}

@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 {
  text-align: center;
  margin-bottom: 60px;
}
.highlight:last-child {
  margin: 0;
}
@media screen and (min-width: 800px) {
  .highlight {
    margin: 0;
  }
}

.highlight__image-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  margin-inline: auto;
  width: 80px;
  height: 80px;
  background-color: var(--c-sun);
  border-radius: 40px;
}

.highlight__image {
  display: block;
  width: 30px;
  height: 30px;
}

.highlight__headline {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--f-secondary);
  letter-spacing: 1px;
}

.highlight__text {
  font-size: 1rem;
  margin: 0;
}

.highlight__cta {
  margin-top: 20px;
}

.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--work {
  margin: 80px 0;
}
.testimonials--work .testimonial__quote h1, .testimonials--work .testimonial__quote h2, .testimonials--work .testimonial__quote h3, .testimonials--work .testimonial__quote h4, .testimonials--work .testimonial__quote h5, .testimonials--work .testimonial__quote p, .testimonials--work .testimonial__quote li {
  font-size: var(--fs-24);
  font-weight: 700;
}
.testimonials--work .testimonial__footer {
  font-size: var(--fs-18);
  font-weight: 500;
}
.testimonials--work .testimonial__company {
  font-weight: 600;
}

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

.testimonials__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
.testimonials__wrap--work {
  text-align: center;
}

.testimonials__header {
  text-align: center;
}

.testimonial__quote h1, .testimonial__quote h2, .testimonial__quote h3, .testimonial__quote h4, .testimonial__quote h5, .testimonial__quote p, .testimonial__quote li {
  margin: 0 0 20px;
  font-size: var(--fs-16);
}
.testimonial__footer {
  font-size: var(--fs-16);
  line-height: 1;
  font-weight: 500;
}

.testimonial__company {
  margin-top: 5px;
  font-weight: 600;
}

.project-banner__image {
  object-fit: contain;
  object-position: center center;
  aspect-ratio: 5/3;
  width: 100%;
}

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

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

.project__header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-midnight);
}

.project__client, .project__services {
  display: flex;
  margin-top: 10px;
}
.project__client h2, .project__services h2 {
  margin: 0 5px 0 0;
  font-size: var(--fs-18);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
.project__client p, .project__services p {
  margin: 0;
  font-size: var(--fs-18);
  line-height: 1.2;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.services-list .services-list__item {
  font-size: var(--fs-18);
  line-height: 1.2;
  font-weight: 400;
}
.services-list .services-list__item::after {
  margin: 0 5px;
  content: "/";
}
.services-list .services-list__item:last-child::after {
  display: none;
}

.project-type {
  transition: 0.3s;
  display: inline-flex;
  margin: 0 0 5px 0;
  font-size: var(--fs-16);
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}
.project-type:hover {
  color: var(--c-flame);
}

.project-card {
  margin-top: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-midnight);
}
.project-card:hover .project-card__image {
  transform: scale(1.1);
}
.project-card:last-child {
  padding: 0;
  border: 0;
}

.project-card__image-wrap {
  border-radius: 30px;
  overflow: hidden;
}

.project-card__image {
  transition: transform 0.5s ease-in-out;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 580px;
}
@media screen and (min-width: 800px) {
  .project-card__image {
    height: 580px;
  }
}

.clients__wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 80px;
}

.client__image-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.client__image {
  width: 100%;
  height: auto;
  max-height: 160px;
}

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

.cta__wrap {
  text-align: center;
}

.cta__header {
  margin: 0;
}

.cta__text {
  margin: 40px 0 0 0;
}

.cta__cta {
  margin: 60px 0 0 0;
}

.block.block--bg.subscribe {
  padding: 20px 0;
}

.subscribe__container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1300px;
}
@media screen and (min-width: 800px) {
  .subscribe__container {
    padding: 0 50px;
  }
}

.subscribe__header {
  margin: 0;
  font-size: var(--fs-20);
  color: var(--c-white);
  font-weight: 500;
}

.subscribe__form form {
  display: flex;
}
.subscribe__form .gform_body {
  width: 100%;
}
.subscribe__form .gform_footer {
  margin: 0 0 0 20px !important;
}
.subscribe__form input[type=email] {
  height: 46px !important;
  border: 0 !important;
  border-radius: 23px !important;
}
.subscribe__form input[type=submit] {
  height: 46px !important;
  border: 0 !important;
  border-radius: 23px !important;
  text-transform: uppercase !important;
  padding: 0 40px !important;
  color: var(--c-skull) !important;
  background-color: var(--c-midnight) !important;
  font-size: var(--fs-20) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.work-images--1-1 .work-images__wrap {
  grid-template-columns: 1fr 1fr;
}
.work-images--1-1-1 .work-images__wrap {
  grid-template-columns: 1fr 1fr 1fr;
}
.work-images--Carousel .work-image {
  aspect-ratio: 16/9;
}
.work-images .work-image {
  object-fit: contain;
  width: 100%;
}
.work-images--square .work-image, .work-images--standard .work-image, .work-images--portrait .work-image, .work-images--wide .work-image, .work-images--banner .work-image, .work-images--tall .work-image, .work-images--thin .work-image {
  object-fit: cover;
  object-position: center center;
}
.work-images--square .work-image {
  aspect-ratio: 1/1;
}
.work-images--standard .work-image {
  aspect-ratio: 4/3;
}
.work-images--portrait .work-image {
  aspect-ratio: 3/4;
}
.work-images--banner .work-image {
  aspect-ratio: 5/3;
}
.work-images--wide .work-image {
  aspect-ratio: 16/9;
}
.work-images--tall .work-image {
  aspect-ratio: 9/16;
}
.work-images--thin .work-image {
  aspect-ratio: 5/2;
}
@media screen and (min-width: 800px) {
  .work-images__wrap {
    display: grid;
    gap: 0;
  }
}

.work-images__wrap--carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  margin-top: -25px;
  width: 100%;
  height: 50px;
  pointer-events: none;
}
.work-images__wrap--carousel .owl-prev, .work-images__wrap--carousel .owl-next {
  transition: 0.3s;
  width: 50px;
  height: 50px;
  background-color: var(--c-black) !important;
  background-image: url("../img/caret.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  pointer-events: auto;
}
.work-images__wrap--carousel .owl-prev span, .work-images__wrap--carousel .owl-next span {
  display: none;
}
.work-images__wrap--carousel .owl-prev:hover, .work-images__wrap--carousel .owl-next:hover {
  background-color: var(--c-flame) !important;
}
.work-images__wrap--carousel .owl-prev {
  transform: rotate(180deg);
}
.work-images__wrap--carousel .owl-next {
  margin-left: auto;
}
