/**
 ** Signika Negative
**/
@font-face {
  font-family: "Signika Negative";
  src: url("../fonts/SignikaNegative/SignikaNegative-Regular.woff2")
      format("woff2"),
    url("../fonts/SignikaNegative/SignikaNegative-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Signika Negative";
  src: url("../fonts/SignikaNegative/SignikaNegative-SemiBold.woff2")
      format("woff2"),
    url("../fonts/SignikaNegative/SignikaNegative-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

/**
 ** Lato
**/
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Italic.woff2") format("woff2"),
    url("../fonts/Lato/Lato-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: block;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Regular.woff2") format("woff2"),
    url("../fonts/Lato/Lato-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Bold.woff2") format("woff2"),
    url("../fonts/Lato/Lato-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: block;
}

:root {
  --black: #000;
  --white: #fff;
  --yellow: #fcd021;
  --blue: #1a203b;
  --lightGrey: #f6f6f6;
  --titleFont: "Signika Negative", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  --bodyFont: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

html {
  font-size: 62.5%;
  font-family: var(--bodyFont);
  font-weight: 400;
  line-height: 1.1em;
}

*,
*::before,
*::after {
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

body {
  color: var(--black);
  background-color: var(--white);
  background-image: url(/images/angle-background.svg);
  background-repeat: repeat-y;
  background-size: 100vw;
  background-position: 0 45.6vw;
}

body.menu-open {
  overflow: hidden;
}
s *:focus {
  outline-color: var(--yellow);
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--titleFont);
  text-wrap: balance;
}

p {
  font-size: 2em;
  line-height: 1.25em;
}

.narrow,
.carousel .content-holder,
.carousel .carousel-cta-holder {
  width: 82.2%;
  margin: 0 auto;
}

section.narrow,
.carousel .content-holder {
  margin: 10em auto;
}

.carousel .content-holder {
  margin-bottom: unset;
}

section.carousel {
  margin: 10em 0 10em 0;
}

section h2 {
  font-size: 4rem;
  position: relative;
  margin-bottom: 1em;
}

.subtitle {
  max-width: 600px;
}

section h2::after {
  height: 3px;
  width: 75px;
  background-color: var(--yellow);
  position: absolute;
  content: "";
  bottom: -0.33em;
  left: 0;
}

.banner {
  width: 100%;
  background-color: var(--yellow);
  margin: 12rem 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.centre {
  align-items: center;
  justify-content: center;
}

.centre {
  align-items: center;
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.cog-chevron-icon {
  color: var(--blue);
}
.cog-chevron-icon .chevron {
  stroke-width: 1.61px;
}

.cog-chevron-icon .chevron,
.cog-chevron-icon .prickle {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cog-chevron-icon .chevron,
.cog-chevron-icon .prickle,
.cog-chevron-icon .circle {
  fill: none;
  stroke: currentColor;
}
.cog-chevron-icon.yellow-cog .prickle,
.cog-chevron-icon.yellow-cog .circle,
.cog-chevron-icon.yellow-chevron .chevron {
  stroke: var(--yellow);
}

.cog-chevron-icon .prickle,
.cog-chevron-icon .circle {
  stroke-width: 2.01px;
}

.cog-chevron-icon .circle {
  stroke-miterlimit: 10;
}

.cta {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 1.6em;
  border-radius: 6em;
  border: 3px solid currentColor;
  margin: 1.6em 0;
  padding: 0.5em 1.1em;
  background: transparent;
  cursor: pointer;
  color: var(--blue);
}

.cta:focus {
  outline: 2px solid var(--yellow);
}

.cta svg {
  width: 40px;
  height: 40px;
}
.cta svg,
.cta svg .chevron {
  transition: transform 0.2s;
  transform: rotate(0deg);
  transform-origin: center;
}

.cta:hover svg,
.cta:focus svg {
  transform: rotate(45deg);
}
.cta:hover svg .chevron,
.cta:focus svg .chevron {
  transform: rotate(-45deg);
}

.cta .button-text {
  font-size: 1.8em;
  white-space: nowrap;
  font-weight: 800;
  padding: 0 1rem;
}

header {
  padding: 2em 6em;
  color: var(--white);
  position: relative;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
}

@media screen and (max-width: 576px) {
  header {
    padding: 2em;
  }
}

header .logoHolder {
  gap: 1.3em;
}
header .logoHolder img {
  width: 140px;
}

header .logoHolder .divider {
  background-color: var(--white);
  width: 1.5px;
  display: block;
  align-self: stretch;
  margin: 10px 0;
}

header .logoHolder .companySegment {
  font-size: 3.1em;
  position: relative;
  top: 0.13em;
}

header nav ul {
  font-size: 1.25rem;
  gap: 2rem;
}

header nav ul a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25em;
  transition: color 0.2s;
}

header nav ul li:hover a {
  color: var(--yellow);
}

header .gradient-underlay {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 200%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  top: 0;
  left: 0;
  z-index: -1;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
}
.hamburger svg {
  width: 100%;
  height: 100%;
  color: var(--white);
  transition: transform 0.3s;
  transform: rotate(0);
}

.menu-open .hamburger svg {
  transform: rotate(180deg);
}

.hamburger svg path {
  fill: currentColor;
  opacity: 1;
  transform-origin: 80.5%;
  transition: all 0.3s;
}

.menu-open .hamburger svg path:first-child {
  transform: rotate(45deg) translateX(25px) translateY(-25px);
}

.menu-open .hamburger svg path:last-child {
  transform: rotate(-45deg) translateX(25px) translateY(25px);
}
.menu-open .hamburger svg path:nth-child(2) {
  opacity: 0;
}

@media screen and (max-width: 850px) {
  .hamburger {
    display: flex;
  }
  header nav {
    display: none;
  }
}

main {
  transition: transform 0.3s;
  transform: translateX(0);
}

main .content-overlay {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 200;
  top: 0;
  opacity: 0;
}

.menu-open main {
  transform: translateX(300px);
}
.menu-open main .content-overlay {
  pointer-events: all;
}

.mobile-nav {
  position: fixed;
  top: 100%;
  left: 0;
  width: 300px;
  transform: translateX(-300px);
  pointer-events: none;
  transition: transform 0.3s;
  height: calc(100vh);
  padding: 15rem 2rem 2rem 6rem;
  top: 0;
  background-color: rgba(26, 32, 59, 0.82);
  color: var(--white);
}

.mobile-nav ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav ul li {
  font-size: 1.8em;
}
.mobile-nav ul li ul {
  margin-top: 1em;
  padding-left: 1.5rem;
}

.mobile-nav ul li ul li {
  font-size: 0.8em;
}

.menu-open .mobile-nav {
  transform: translateX(0);
  pointer-events: all;
}
footer {
  width: 100%;
  padding: 20px;
  background: #4c4c4c;
  position: relative;
  padding: 6.4rem 0;
}

footer::before {
  content: "";
  aspect-ratio: 1/1;
  background: var(--yellow);
  position: absolute;
  width: 100%;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  bottom: 100%;
  z-index: -1;
}

footer .footer-content .logo {
  grid-area: logo;
}
footer .footer-content .socials {
  grid-area: socials;
  display: flex;
  align-items: flex-end;
}
footer .footer-content .contact {
  grid-area: contact;
}
footer .footer-content .legal-links {
  grid-area: legal-links;
}
footer .footer-content .legal-copy-left {
  grid-area: legal-copy-left;
}
footer .footer-content .legal-copy-right {
  grid-area: legal-copy-right;
}
footer .footer-content .legal-copy-bottom {
  grid-area: legal-copy-bottom;
}
footer .footer-content {
  display: grid;
  grid-template-areas:
    "logo socials"
    "contact legal-links"
    "legal-copy-left legal-copy-right"
    "legal-copy-bottom legal-copy-bottom";

  grid-template-columns: 50% 50%;
  grid-auto-columns: 1fr 1fr;
  gap: 2.6rem;
  color: #fff;
  font-size: 1.2rem;
  max-width: 750px;
}

footer .footer-content a {
  font-weight: 600;
}

footer .footer-content .logo img {
  max-width: 250px;
}

footer .footer-content .socials {
  display: flex;
  gap: 2rem;
}
footer .footer-content .socials svg {
  width: 40px;
  height: 40px;
  color: var(--yellow);
}
footer .footer-content .socials svg path {
  fill: currentColor;
}

footer .footer-content .legal-links,
footer .footer-content .contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

section,
.banner {
  z-index: 1;
  position: relative;
}

.hero {
  position: relative;
  width: 100%;
  max-width: unset;
  z-index: 0;
}

.hero .slides {
  width: 100%;
  height: 100%;
  /* clip-path: polygon(100% 0, 100% 10%, 10% 127.35%, 0% 100%, 0% 0); */
  clip-path: polygon(100% 0, 100% 4%, 4% 129.65%, 0% 100%, 0% 0);
}

@media screen and (max-width: 1150px) {
  .hero .slides {
    clip-path: none;
  }
}

.hero .slides .slide {
  width: 100%;
  aspect-ratio: 1.31 / 1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 720px;
}
.hero .slides .slide .slide-background-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
}

.hero .slides .slide .slide-content {
  width: 100%;
  height: 51%;
  /* background: #000; */
  color: #fff;
  z-index: 1;
  position: relative;
}
.hero .slides .slide .slide-content-inner {
  padding: 0 1em 0 15em;
  height: 100%;
  width: 50.7%;
  align-items: flex-start;
  justify-content: flex-end;
}

.hero .slides .slide .slide-content-inner h3 {
  font-size: 3em;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.hero .slide-navigation-buttons {
  position: absolute;
  top: 51%;
  z-index: 15;
  padding: 0 1em 0 15em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
.hero .slide-navigation-buttons button {
  font-size: 3rem;
  width: 1.2em;
  height: 1.2em;
  transform: rotate(45deg);
  margin: 0.28em;
  background: transparent;
  border: 0.3rem solid var(--white);
  padding: 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero .slide-navigation-buttons button .fill {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transform: scale(0);
  transition: transform 0.1s;
}
.hero .slide-navigation-buttons button.glide__bullet--active .fill {
  transform: scale(1);
}

.hero::after {
  content: "";
  aspect-ratio: 1/1;
  background: var(--lightGrey);
  position: absolute;

  width: 141.3%;
  top: 98%;
  left: -70.6%;
  transform: rotate(45deg);
}

.hero .feature-diamond {
  width: 628px;
  aspect-ratio: 1/1;
  background-color: var(--yellow);
  font-size: 3em;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  right: 2.5%;
  top: 18%;
  z-index: 1;
}

.hero .feature-diamond .content {
  width: 70%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4em;
}

.hero .feature-diamond .content h1 {
  font-size: 4.5rem;
  font-weight: 600;
}

.hero .feature-diamond .content h2 {
  font-size: 2.8rem;
}

@media screen and (max-width: 1150px) {
  .hero .feature-diamond {
    width: 40vw;
    top: 26%;
  }
  .hero .feature-diamond .content h1 {
    font-size: 2.6vw;
  }
  .hero .feature-diamond .content h2 {
    font-size: 1.8vw;
  }
  .hero .slides .slide .slide-content {
    height: 60%;
  }
  .hero .slide-navigation-buttons {
    top: 60%;
  }
}

@media screen and (max-width: 840px) {
  .hero .slides .slide .slide-content-inner,
  .hero .slide-navigation-buttons {
    width: 100%;
    padding: 2em 3em;
  }

  .hero .slides .slide .slide-content {
    height: 84%;
  }

  .hero .slide-navigation-buttons {
    top: 84%;
    justify-content: flex-start;
    margin-top: 0;
  }
  .hero .feature-diamond {
    left: 50%;
    transform: translateX(-50%);
    top: 24%;
    width: 100%;
    max-width: 280px;
  }
  .hero .feature-diamond .content h1 {
    font-size: 2rem;
  }
  .hero .feature-diamond .content h2 {
    font-size: 1.5rem;
  }
}

.hero + section {
  position: relative;
  margin-top: -15em;
}

@media screen and (max-width: 1230px) {
  .hero + section {
    margin-top: -10em;
  }
}

@media screen and (max-width: 1150px) {
  .hero + section {
    margin-top: 10em;
  }
  .hero::after {
    display: none;
  }
}

section.image-and-text {
  display: flex;
  gap: 5em;
  align-items: flex-start;
}

.image-and-text .image-holder {
  padding: 1em 1em 0 0;
  border: 5px solid var(--yellow);
  border-bottom: none;
  border-left: none;
  /* width: 50%; */
}

.image-and-text .image-holder,
.image-and-text .text-content {
  flex: 1 1 50%;
}
.image-and-text .image-holder img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media screen and (max-width: 840px) {
  section.image-and-text {
    flex-direction: column;
  }
}

.banner section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.banner section h3 {
  font-size: 3rem;
}

.feature-tiles .tiles {
  align-items: stretch;
}

.feature-tiles .tiles .tile {
  flex: 1 1 25%;
  aspect-ratio: 1/1;
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  gap: 3rem;
  padding: 2rem;
  border-radius: 0;
  border: 0;
  outline: 0;
  max-height: 42em;
  transform: scale(1);
  transition: all 0.2s;
}

.feature-tiles .tiles .tile .number {
  font-size: 4em;
  font-family: var(--titleFont);
  margin-bottom: 0.25em;
}

.feature-tiles .tiles .tile h3 {
  font-size: 2.2em;
  margin-bottom: 1em;
  font-family: var(--bodyFont);
  font-weight: 400;
}
.feature-tiles .tiles .tile .tagline {
  font-size: 1.5em;
}

.feature-tiles .tiles .tile .icon {
  width: 100%;
  max-width: 80px;
  margin: 1.4em 0;
  aspect-ratio: 1/1;
  display: flex;
}

.feature-tiles .tiles .tile .icon svg {
  color: var(--yellow);
}

.feature-tiles .tiles .tile .initial-content-holder,
.feature-tiles .tiles .tile .hidden-content-holder {
  overflow: hidden;
}

.feature-tiles .tiles .tile .initial-content,
.feature-tiles .tiles .tile .hidden-content {
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; */
  gap: 0.5rem;
  position: relative;
  transition: all 0.2s;
}
.feature-tiles .tiles .tile .initial-content {
  height: var(--height, unset);
  /* bottom: 0; */
}

.feature-tiles .tiles .tile .hidden-content {
  /* height: 0; */
  color: var(--blue);
  bottom: var(--height, unset);
}

.feature-tiles .tiles .tile:hover,
.feature-tiles .tiles .tile:focus {
  background-color: var(--yellow);
  transform: scale(1.1);
  z-index: 1;
}

.feature-tiles .tiles .tile:hover .icon svg,
.feature-tiles .tiles .tile:focus .icon svg {
  color: var(--white);
}

.feature-tiles .tiles .tile:hover .initial-content,
.feature-tiles .tiles .tile:focus .initial-content {
  height: 0;
  /* bottom: var(--height, 0); */
}
.feature-tiles .tiles .tile:hover .hidden-content,
.feature-tiles .tiles .tile:focus .hidden-content {
  height: var(--height, 0) !important;
  bottom: 0;
}

@media screen and (max-width: 1150px) {
  .feature-tiles .tiles {
    flex-wrap: wrap;
  }
  .feature-tiles .tiles .tile {
    flex: 1 1 50%;
  }
}

@media screen and (max-width: 650px) {
  .feature-tiles .tiles .tile {
    flex: 1 1 100%;
  }
}

.carousel .title-holder {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.carousel .carousel-navigation {
  display: flex;
}

.carousel .carousel-navigation button {
  margin: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  color: var(--yellow);
  background: transparent;
  border-radius: 0;
  font-size: 2px;
  border: 1.5em solid;
}
.carousel .carousel-navigation button:first-child {
  border-right: 0;
}

.carousel .carousel-navigation button svg {
  width: 100%;
  height: 100%;
}

.carousel .glide__track {
  margin: 0 0 0 8.9%;
}
.carousel .posts-carousel-slider {
  --margin: 2rem;
  display: flex;
  margin-left: calc(var(--margin) * -1);
}
.carousel .posts-carousel-slider .posts {
  padding-left: var(--margin);
  margin-left: calc(var(--margin) * -1);
}
.carousel .posts-carousel-slider .post {
  width: 100%;
  padding: var(--margin);
}
.carousel[data-style="style-1"] .posts-carousel-slider .post {
  aspect-ratio: 8/10;
}

.carousel .posts-carousel-slider .post .post-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.1);
  /* margin-right: 4em; */
}
.carousel[data-style="style-1"] .posts-carousel-slider .post .content,
.carousel[data-style="style-2"] .posts-carousel-slider .post .content {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-grow: 1;
  position: relative;
}

.carousel[data-style="style-1"]
  .posts-carousel-slider
  .post
  .content
  .post-content-holder,
.carousel[data-style="style-2"]
  .posts-carousel-slider
  .post
  .content
  .post-content-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  padding: 4.6rem 3.8rem;
  color: #fff;
  background: rgb(26, 32, 59, 0.5);
  background: linear-gradient(
    0deg,
    rgba(26, 32, 59, 0.7) 0%,
    rgba(26, 32, 59, 0.7) 35%,
    rgba(26, 32, 59, 0) 100%
  );
}

/* @media screen and (max-width: 1200px) {
  .carousel[data-style="style-1"] .posts-carousel-slider .post .content .post-content-holder {
    padding: 4rem;
  }
} */

.carousel[data-style="style-1"]
  .posts-carousel-slider
  .post
  .content
  .post-content-holder
  h3,
.carousel[data-style="style-5"]
  .posts-carousel-slider
  .post
  .post-content-holder
  h3 {
  font-size: 2.6rem;
  font-weight: 400;
  font-family: var(--bodyFont);
  text-align: left;
  margin-bottom: 0.5em;
}
.carousel[data-style="style-1"]
  .posts-carousel-slider
  .post
  .content
  .post-content-holder
  .excerpt,
.carousel[data-style="style-5"]
  .posts-carousel-slider
  .post
  .post-content-holder
  .excerpt {
  font-size: 1.6em;
}
.carousel[data-style="style-1"] .posts-carousel-slider .post .button-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.carousel[data-style="style-1"]
  .posts-carousel-slider
  .post
  .button-holder
  .cta,
.carousel[data-style="style-5"]
  .posts-carousel-slider
  .post
  .button-holder
  .cta {
  border-radius: 0;
  border: none;
  font-size: 0.8em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 0.5rem;
  margin: 0;
}

.carousel[data-style="style-1"]
  .posts-carousel-slider
  .post
  .button-holder
  .cta
  .button-text {
  font-size: 2rem;
  font-weight: 400;
  gap: 0.5rem;
}

.carousel[data-style="style-1"]
  .posts-carousel-slider
  .post
  .button-holder
  .cta
  svg,
.carousel[data-style="style-5"]
  .posts-carousel-slider
  .post
  .button-holder
  .cta
  svg {
  width: 3rem;
  height: 3rem;
}
.carousel[data-style="style-2"] .posts-carousel-slider {
  --margin: 1.5rem;
}

.carousel[data-style="style-2"] .posts-carousel-slider .post {
  aspect-ratio: 9/10;
}

.carousel[data-style="style-2"] .posts-carousel-slider .post h3 {
  font-size: 3.4em;
}

.carousel[data-style="style-2"]
  .posts-carousel-slider
  .post
  .content
  .post-content-holder {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.7) 35%,
    rgba(0, 0, 0, 0) 100%
  );
}

.carousel[data-style="style-3"] .posts-carousel-slider .post .post-inner,
.carousel[data-style="style-5"] .posts-carousel-slider .post .post-inner {
  box-shadow: none;
}

.carousel[data-style="style-3"] .posts-carousel-slider,
.carousel[data-style="style-5"] .posts-carousel-slider {
  --margin: 0;
}

.carousel[data-style="style-3"] .posts,
.carousel[data-style="style-5"] .posts {
  width: 82.2%;
  padding: 0;
}
.carousel[data-style="style-3"] .posts-carousel-slider .post .content {
  aspect-ratio: 3 / 2;
}

.carousel[data-style="style-3"] .posts-carousel-slider .post h3 {
  font-size: 2em;
  line-height: 1.35;
  padding-top: 0.5em;
}

.carousel[data-style="style-4"] .partner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.carousel[data-style="style-5"] .posts-carousel-slider .post .post-image {
  aspect-ratio: 5/4;
}
.carousel[data-style="style-5"]
  .posts-carousel-slider
  .post
  .post-content-holder {
  padding: 2rem;
  background-color: var(--white);
}
.carousel[data-style="style-5"] .post .cta {
  border: 0;
  font-size: 1rem;
}

.carousel .carousel-cta-holder {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-top: 5rem;
}

.carousel-cta-holder .line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--blue);
}

.carousel[data-style="style-5"]
  .posts-carousel-slider
  .post
  .button-holder
  .cta {
  justify-content: flex-start;
  padding: 0;
}

.carousel[data-style="style-5"]
  .posts-carousel-slider
  .post
  .post-content-holder
  .button-holder {
  margin-top: 2rem;
}

section.two-col {
  display: flex;
}
section.two-col .col {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  color: var(--white);
}

section.two-col .col .content {
  padding: 9.6rem 6rem;
  max-width: 550px;
}
section.two-col .col .content h2::after {
  display: none;
}
section.two-col .col .content p {
  margin-bottom: 4rem;
}

section.two-col .col .cta {
  border-color: var(--yellow);
}
section.two-col .col .cta .button-text {
  color: var(--white);
}
section.two-col .col img.map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 850px) {
  section.two-col {
    flex-direction: column-reverse;
  }

  section.two-col .col .content {
    max-width: unset;
  }
}
