@charset "UTF-8";
/**
* Theme/Project Name
* ==================
* Design: PROJECT NAME
* Author: True Market
* Version 1.0
*
* Table of Contents
* =================
Custom Properties
Mixins
Fonts
Reset
Pages
Typography
Layouts
Components

*/
:root {
  font-size: 62.5%;
  --teal-darkest: #01252E;
  --teal-darker: #01323F;
  --teal-dark: #064D57;
  --teal-medium: #0A7482;
  --teal: #0E9BAE;
  --teal-light: #12C0D8;
  --teal-lightest: #87E8F5;
  --gold: #EBB300;
  --ivory: #fafafa;
  --white: #FFF;
  --black: #000;
  --red: #fa2e2e;
  --font-body: "Montserrat", sans-serif;
  --font-medium: "Montserrat Medium", sans-serif;
  --font-bold: "Montserrat Bold", sans-serif;
  --font-serif: "Prata", serif;
  --base: 8vw;
  --text-size-xxs: clamp(0.5rem, var(--base), 1.4rem);
  --text-size-xs: clamp(0.6rem, var(--base), 1.6rem);
  --text-size-sm: clamp(1.5rem, 5vw, 2rem);
  --text-size-md: clamp(2rem, var(--base), 2.5rem);
  --text-size-lg: clamp(2.5rem, var(--base), 3.5rem);
  --text-size-xl: clamp(3rem, var(--base), 5rem);
  --text-size-xxl: clamp(5rem, var(--base), 7rem);
  --text-size-xxxl: clamp(6rem, var(--base), 7.5rem);
  --text-size-supersize: clamp(7rem, var(--base), 9rem);
  --box-shadow: 5px 5px 15px #00000012;
  --left-margin: 15rem;
  --left-padding: 7.5rem;
}
@media all and (max-width: 1600px) {
  :root {
    --left-margin: 4rem;
    --left-padding: 3rem;
  }
}
@media all and (max-width: 1100px) {
  :root {
    font-size: 50%;
  }
}

/* 
==========
Custom Font Families 
==========

Follow these steps to generate @font-face fonts
1. Go to assets/src/fonts and delete everything in there. Do the same in the dist folder
2. Go to https://www.fontsquirrel.com/tools/webfont-generator and upload the fonts that were provided to you
3. Download the kit
4. Extract the zip and copy the files in assets/src/fonts
5. Delete specimen_files folder, the generator_config.txt and all html files
6. Now simply change the urls and font names (font-family) in this file to match your new fonts. Remove unnecessary ones
7. Update main.scss with the new fonts
*/
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Bold";
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Medium";
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Prata";
  src: local("Prata-Regular"), local("Prata-Regular"), url("../fonts/Prata-Regular.woff2") format("woff2"), url("../fonts/Prata-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
.typography {
  font-family: var(--font-body);
  font-size: var(--text-size-sm);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
  font-weight: 100;
}

h1 {
  font-size: var(--text-size-xxl);
}

h2 {
  font-size: var(--text-size-xl);
  line-height: 1.3;
}
@media screen and (max-width: 500px) {
  h2 {
    font-size: var(--text-size-lg);
  }
}

p {
  font-size: var(--text-size-sm);
}

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

html,
body {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  scroll-padding: 14rem;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-width: 300px;
}
@media screen and (max-width: 1100px) {
  html,
body {
    font-size: 87.5%;
  }
}

* + h2,
* + h3,
* + h4,
* + h5 {
  margin-top: 4rem;
}

p {
  line-height: 1.75;
  margin: 0 0 2rem;
}

strong {
  font-family: var(--font-bold);
}

a {
  color: var(--teal);
  text-decoration: none;
  word-break: break-word;
  transition: all 0.2s ease-out;
}
a:hover {
  color: var(--teal-dark);
}
a:hover, a:visited {
  cursor: pointer;
}

ul {
  list-style: none;
  padding-left: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
}
button:hover, button:active, button:focus {
  cursor: pointer;
}

figure,
video,
iframe,
img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

img {
  font-style: italic;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after {
  content: "";
  content: none;
}

q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

section {
  position: relative;
}

@media all and (min-width: 2500px) {
  body {
    max-width: 2500px;
  }

  html {
    background-color: #f1f1f1;
  }
}
@media screen and (max-width: 500px) {
  .home .landing {
    padding-bottom: 10rem;
  }
}

.section-1 {
  min-height: 1020px;
}
@media screen and (max-width: 1100px) {
  .section-1 {
    min-height: 0;
  }
}
@media screen and (max-width: 1300px) {
  .section-1 .triangle-image {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1100px) {
  .section-1 .triangle-image {
    transform: scale(1);
    width: 450px;
    height: 360px;
    bottom: -8rem;
  }
}
@media screen and (max-width: 680px) {
  .section-1 .triangle-image {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 500px) {
  .section-1 .triangle-image {
    transform: scale(0.7) translateY(8rem);
  }
}
@media screen and (max-width: 1300px) {
  .section-1 .triangle-image::after {
    top: 9rem;
    right: 36rem;
  }
}
@media screen and (max-width: 1100px) {
  .section-1 .triangle-image::after {
    right: 30rem;
  }
}
@media screen and (max-width: 680px) {
  .section-1 .triangle-image::after {
    right: 25rem;
  }
}
@media screen and (max-width: 500px) {
  .section-1 .triangle-image::after {
    top: auto;
    right: auto;
    left: -2rem;
    bottom: 2rem;
  }
}

.section-1__container {
  margin: 0 auto;
  padding: 28rem 4rem;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .section-1__container {
    padding-bottom: 40rem;
  }
}
@media screen and (max-width: 680px) {
  .section-1__container {
    padding-bottom: 35rem;
  }
}
@media screen and (max-width: 500px) {
  .section-1__container {
    padding-bottom: 25rem;
  }
}

.section-1__title {
  max-width: 800px;
  margin: 0 auto 4.3rem;
}

.section-1__text {
  max-width: 710px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.bg-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 995px;
  pointer-events: none;
}

.section-2 {
  min-height: 400px;
  padding: 13rem 0 33rem;
  background: url("../images/bg-pattern-light-a.webp") no-repeat top center;
  background-size: contain;
  background-color: var(--ivory);
}
@media screen and (max-width: 1400px) {
  .section-2 {
    padding-bottom: 36rem;
  }
}
@media screen and (max-width: 680px) {
  .section-2 {
    padding-top: 12rem;
    padding-bottom: 9rem;
  }
}

.section-2__container {
  max-width: 1660px;
  margin: 0 auto 0 var(--left-margin);
  padding-left: var(--left-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .section-2__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 1300px) {
  .section-2__container::before {
    display: none;
  }
}

.section__pretitle {
  display: block;
  font-family: var(--font-serif);
}

.section-2__title {
  line-height: 1.1;
  margin: 0 2rem 0 0;
}
@media screen and (max-width: 1600px) {
  .section-2__title {
    margin-right: 6rem;
  }
}
@media screen and (max-width: 1300px) {
  .section-2__title {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 680px) {
  .section-2__title {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .section-2__title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .section-2__title .text-size-50 {
    font-size: var(--text-size-xl);
  }
}
@media screen and (max-width: 1300px) {
  .section-2__title span {
    display: inline;
  }
}

.section-3 {
  min-height: 400px;
  padding: 33rem 0 16rem;
}
@media screen and (max-width: 800px) {
  .section-3 {
    padding-top: 17rem;
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 680px) {
  .section-3 {
    padding-top: 77vw;
  }
}

.section-3__container {
  margin-left: var(--left-margin);
  padding-left: var(--left-padding);
  max-width: 760px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .section-3__container {
    padding-right: 6rem;
  }
}
@media screen and (max-width: 680px) {
  .section-3__container {
    margin-left: 3rem;
    padding-left: 0;
    padding-right: 3rem;
  }
}

.section-3__triangle-image {
  position: absolute;
  top: 5vw;
  right: -13rem;
  left: auto;
  bottom: auto;
  z-index: 5;
  pointer-events: none;
  transition: all 0.3s ease;
  width: 62vw;
}
@media screen and (max-width: 1100px) {
  .section-3__triangle-image {
    width: 55vw;
  }
}
@media screen and (max-width: 960px) {
  .section-3__triangle-image {
    width: 50vw;
  }
}
@media screen and (max-width: 680px) {
  .section-3__triangle-image {
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 85vw;
  }
}
.section-3__triangle-image::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="117.59" height="93.976"><path fill="%23ebb300" d="m58.795 0 .848 1.355 57.947 92.621H0l.957-1.53Zm55.185 91.976L58.795 3.771 3.611 91.976Z" vector-effect="non-scaling-stroke"/></svg>');
  position: absolute;
  bottom: 12vw;
  right: 30%;
}
@media screen and (max-width: 1100px) {
  .section-3__triangle-image::after {
    bottom: 7vw;
    right: 16vw;
  }
}
@media screen and (max-width: 960px) {
  .section-3__triangle-image::after {
    right: 27vw;
  }
}
@media screen and (max-width: 680px) {
  .section-3__triangle-image::after {
    right: 43vw;
  }
}
.section-3__triangle-image .triangle-image__mask {
  -webkit-mask-image: url("../images/mask-triangle-down.svg");
          mask-image: url("../images/mask-triangle-down.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
}

.section-3__pretitle {
  margin: 0 0 6rem;
  display: block;
  max-width: 445px;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .section-3__pretitle {
    padding-right: 8vw;
  }
}
@media screen and (max-width: 960px) {
  .section-3__pretitle::after {
    display: none;
  }
}

.section-3__title {
  max-width: 600px;
  margin: 0 0 6rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .section-3__title {
    padding-right: 15vw;
  }
}

.section-3__large-text {
  margin: 0 0 4rem;
  line-height: 1.3;
}

.section-5 {
  background-color: var(--ivory);
  min-height: 400px;
  padding: 8rem 0 16rem;
  background: var(--ivory) url("../images/bg-pattern-light-b.webp") no-repeat top center;
  background-size: 100% auto;
}
@media screen and (max-width: 500px) {
  .section-5 {
    padding-top: 12rem;
  }
}

.section-5__container {
  max-width: 940px;
  margin-left: var(--left-margin);
  padding-left: var(--left-padding);
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 1400px) {
  .section-5__container {
    padding-right: 7rem;
  }
}
@media screen and (max-width: 680px) {
  .section-5__container {
    padding-left: 3rem;
    padding-right: 3rem;
    margin-left: 0;
  }
}

.section-5__attribution {
  display: block;
  margin-top: 4rem;
}

.quote__title {
  margin: 0 0 6rem;
  max-width: 565px;
  position: relative;
  color: var(--teal-darker);
}
.quote__title::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="94.202" height="64.898"><g fill="%23ebb300"><path d="M73.531 0a20.656 20.656 0 0 1 20.672 20.672 55.1 55.1 0 0 1-6.634 25.762 52.308 52.308 0 0 1-15.187 17.86 3.326 3.326 0 0 1-4.536-4.766 31.869 31.869 0 0 0 2.8-4.164 10.865 10.865 0 0 0 .8-8.879 11.34 11.34 0 0 0-6.214-6.76 20.162 20.162 0 0 1-5.222-3.308A20.746 20.746 0 0 1 73.033.006c.163-.004.332-.006.498-.006Zm-3.062 62.9a1.291 1.291 0 0 0 .753-.233c10.443-7.43 20.98-23.3 20.98-41.993A18.693 18.693 0 0 0 73.53 2.002c-.15 0-.3 0-.454.005a18.745 18.745 0 0 0-7.052 35.885 13.342 13.342 0 0 1 7.312 7.955 13.03 13.03 0 0 1 .653 5.244 12.8 12.8 0 0 1-1.6 5.251 33.814 33.814 0 0 1-2.974 4.427 1.279 1.279 0 0 0-.146 1.377 1.308 1.308 0 0 0 1.199.752Z" vector-effect="non-scaling-stroke"/><path d="M20.673 0a20.656 20.656 0 0 1 20.672 20.672 55.1 55.1 0 0 1-6.634 25.762 52.313 52.313 0 0 1-15.188 17.86 3.326 3.326 0 0 1-4.536-4.766 31.814 31.814 0 0 0 2.8-4.164 10.864 10.864 0 0 0 .8-8.879 11.338 11.338 0 0 0-6.213-6.76 20.15 20.15 0 0 1-5.222-3.308A20.746 20.746 0 0 1 20.175.006c.163-.004.332-.006.498-.006ZM17.61 62.9a1.291 1.291 0 0 0 .754-.233c10.443-7.43 20.981-23.3 20.981-41.993A18.693 18.693 0 0 0 20.673 2.002c-.15 0-.3 0-.454.005a18.745 18.745 0 0 0-7.051 35.885 13.343 13.343 0 0 1 7.311 7.955 13.033 13.033 0 0 1 .653 5.244 12.8 12.8 0 0 1-1.6 5.251 33.779 33.779 0 0 1-2.973 4.427 1.279 1.279 0 0 0-.146 1.377 1.307 1.307 0 0 0 1.197.752Z"/></g></svg>');
  display: block;
  position: absolute;
  top: -3rem;
  right: -4rem;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .quote__title::after {
    top: -12rem;
    right: auto;
    left: 0;
  }
}

.quote__text {
  margin: 0 0 6rem;
}

.quote__attribution {
  color: var(--teal);
  font-size: var(--text-size-xs);
  font-style: normal;
}

.post-list,
.past-deal-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
@media screen and (max-width: 1500px) {
  .post-list,
.past-deal-items {
    gap: 3rem;
  }
}
@media screen and (max-width: 960px) {
  .post-list,
.past-deal-items {
    grid-template-columns: 1fr;
  }
}

.page-404 {
  min-height: 1100px;
  background: var(--teal-darkest);
}
.page-404 h1,
.page-404 p {
  color: var(--white);
}

/** Utility styles go here */
/** Text */
.font-serif {
  font-family: var(--font-serif);
}

.font-teal {
  color: var(--teal);
}

.font-teal-light {
  color: var(--teal-light);
}

.font-teal-dark {
  color: var(--teal-dark);
}

.font-white {
  color: var(--white);
}

.font-teal-darker {
  color: var(--teal-darker);
}

.font-bold {
  font-family: var(--font-bold);
}

.text-center {
  text-align: center;
}

.text-size-75 {
  font-size: var(--text-size-xxxl);
}

.text-size-70 {
  font-size: var(--text-size-xxl);
}
@media screen and (max-width: 1400px) {
  .text-size-70 {
    font-size: var(--text-size-xl);
  }
}

.text-size-50 {
  font-size: var(--text-size-xl);
}
@media screen and (max-width: 500px) {
  .text-size-50 {
    font-size: var(--text-size-lg);
  }
}

.text-size-35 {
  font-size: var(--text-size-lg);
}
@media screen and (max-width: 500px) {
  .text-size-35 {
    font-size: var(--text-size-md);
  }
}

.text-size-23 {
  font-size: 23px;
}

.text-size-16 {
  font-size: var(--text-size-xs);
}

.underline {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--teal);
          text-decoration-color: var(--teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.underline-gold {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--gold);
          text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.pretitle {
  color: var(--teal);
  font-size: var(--text-size-xxs);
  text-transform: uppercase;
  font-family: var(--font-bold);
  letter-spacing: 2.1px;
  display: block;
  margin: 0 0 3rem;
}

.pretitle--large {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-serif);
  text-transform: none;
  margin: 0 0 4rem;
  letter-spacing: 0;
}

.section-title {
  font-size: var(--text-size-xl);
  font-family: var(--font-serif);
}

.section {
  position: relative;
}

.section-light {
  color: var(--teal-darker);
}

.section-dark {
  background-color: var(--teal-darkest);
  color: var(--white);
}

.triangle-image {
  position: absolute;
  bottom: -10rem;
  left: -33rem;
  z-index: 5;
  pointer-events: none;
  transition: all 0.3s ease;
  height: 815px;
  width: 1020px;
}
.triangle-image::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="126.994" height="101.491"><path fill="%23ebb300" d="m63.497 101.494-.848-1.355L0 .003h126.994l-.957 1.53ZM3.611 2.003l59.886 95.72 59.887-95.72Z" vector-effect="non-scaling-stroke"/></svg>');
  position: absolute;
  top: 7rem;
  right: 37rem;
}
@media screen and (max-width: 1500px) {
  .triangle-image {
    transform: scale(0.8);
    bottom: -17rem;
    left: -40rem;
  }
}
@media screen and (max-width: 1300px) {
  .triangle-image {
    transform: scale(0.5);
    bottom: -30rem;
    left: -45rem;
  }
}
@media screen and (max-width: 500px) {
  .triangle-image {
    transform: scale(0.8);
    left: 0;
    right: 0;
    bottom: -7rem;
  }
  .triangle-image::after {
    right: auto;
    transform: scale(0.8);
  }
}

.triangle-image--small-icon-up::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="117.59" height="93.976"><path fill="%23ebb300" d="m58.795 0 .848 1.355 57.947 92.621H0l.957-1.53Zm55.185 91.976L58.795 3.771 3.611 91.976Z" vector-effect="non-scaling-stroke"/></svg>');
  position: absolute;
  top: auto;
  bottom: 33rem;
  right: 28rem;
  transform: scale(1.4);
}
@media screen and (max-width: 680px) {
  .triangle-image--small-icon-up::after {
    left: 7rem;
    top: 17rem;
    bottom: auto;
    right: auto;
  }
}

.triangle-image__mask {
  -webkit-mask-image: url("../images/mask-triangle-up.svg");
          mask-image: url("../images/mask-triangle-up.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.triangle-image__mask img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.triangle-image--down {
  top: 10rem;
  right: -13rem;
  left: auto;
  bottom: auto;
}
.triangle-image--down .triangle-image__mask {
  -webkit-mask-image: url("../images/mask-triangle-down.svg");
          mask-image: url("../images/mask-triangle-down.svg");
}
@media screen and (max-width: 1700px) {
  .triangle-image--down {
    transform: scale(0.8);
    top: 0;
    right: -20rem;
  }
}
@media screen and (max-width: 1600px) {
  .triangle-image--down {
    top: -4rem;
    right: -30rem;
  }
}
@media screen and (max-width: 1300px) {
  .triangle-image--down {
    transform: scale(0.6);
    top: -15rem;
    right: -42rem;
  }
}
@media screen and (max-width: 960px) {
  .triangle-image--down {
    right: -50rem;
  }
}
@media screen and (max-width: 800px) {
  .triangle-image--down {
    right: -60rem;
  }
}
@media screen and (max-width: 680px) {
  .triangle-image--down {
    right: -70rem;
  }
}
@media screen and (max-width: 500px) {
  .triangle-image--down {
    right: -21rem;
    top: -11rem;
    transform: scale(0.5);
  }
}
@media screen and (max-width: 360px) {
  .triangle-image--down {
    top: -9rem;
  }
}

.image-overlay {
  position: relative;
}
.image-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(18, 192, 216, 0.1);
}

.lcp-section {
  padding: 8rem 4rem;
}
@media screen and (max-width: 960px) {
  .lcp-section {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .lcp-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.lcp-section-1__container {
  display: flex;
  align-items: flex-start;
  margin-left: -12rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1400px) {
  .lcp-section-1__container {
    margin-left: -30rem;
  }
}
@media screen and (max-width: 1300px) {
  .lcp-section-1__container {
    flex-direction: column-reverse;
    margin-left: 0;
    gap: 6rem;
    align-items: center;
  }
}

.lcp-section-1__content {
  max-width: 840px;
  margin: -4rem auto 0 -4rem;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .lcp-section-1__content {
    padding-right: 8rem;
  }
}
@media screen and (max-width: 1300px) {
  .lcp-section-1__content {
    margin: 0 auto;
    padding-right: 0;
  }
}

.lcp-section-1-triangle__wrapper {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  max-width: 780px;
}
.lcp-section-1-triangle__wrapper::after {
  content: url("../images/icon-triangle-down.svg");
  position: absolute;
  top: 6rem;
  right: 35%;
  width: 95px;
}
@media screen and (max-width: 680px) {
  .lcp-section-1-triangle__wrapper::after {
    top: 30%;
    right: 30%;
    width: 15%;
  }
}
@media screen and (max-width: 680px) {
  .lcp-section-1-triangle__wrapper::after {
    top: 40%;
  }
}

.lcp-section-1__triangle {
  -webkit-mask-image: url("../images/mask-triangle-up.svg");
          mask-image: url("../images/mask-triangle-up.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-bottom: -16rem;
}

.lcp-section-1__text {
  max-width: 675px;
  margin: 0 auto;
}

.lcp-section-2 {
  padding: 25rem 4rem 32.5rem;
  background-image: url("../images/bg-pattern-light-a.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  background-color: var(--ivory);
  position: relative;
}
@media screen and (max-width: 1300px) {
  .lcp-section-2 {
    padding: 25rem 2rem 32.5rem;
  }
}
@media screen and (max-width: 800px) {
  .lcp-section-2 {
    padding-top: 20rem;
  }
}
@media screen and (max-width: 680px) {
  .lcp-section-2 {
    padding-left: 6rem;
    padding-right: 6rem;
    padding-bottom: 9rem;
  }
}
@media screen and (max-width: 500px) {
  .lcp-section-2 {
    padding-top: 14rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.lcp-section-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background: #fafafa;
  background: linear-gradient(0deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
}

.lcp-section-2__container {
  max-width: 1620px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20rem;
  padding-left: 8rem;
}
@media screen and (max-width: 1500px) {
  .lcp-section-2__container {
    gap: 6rem;
  }
}
@media screen and (max-width: 1300px) {
  .lcp-section-2__container {
    gap: 4rem;
    padding-left: 4rem;
  }
}
@media screen and (max-width: 1100px) {
  .lcp-section-2__container {
    flex-direction: column;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .lcp-section-2__container {
    padding-right: 0;
    padding-left: 0;
  }
}
.lcp-section-2__container::before {
  content: "";
  width: 2px;
  height: 590px;
  background-color: var(--gold);
  position: absolute;
  top: -42%;
  left: 0;
}
@media screen and (max-width: 1300px) {
  .lcp-section-2__container::before {
    display: none;
  }
}

.lcp-section-2__content {
  max-width: 416px;
}
@media screen and (max-width: 1100px) {
  .lcp-section-2__content {
    max-width: 100%;
  }
}

.lcp-section-2__dropdowns {
  width: 100%;
  min-width: 650px;
}
@media screen and (max-width: 1100px) {
  .lcp-section-2__dropdowns {
    min-width: auto;
  }
}

.lcp-section-2__cta {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: 8rem;
}
@media screen and (max-width: 680px) {
  .lcp-section-2__cta {
    margin-top: 6rem;
  }
}

.lcp-section-3 {
  padding: 0 4rem 8rem;
  position: relative;
}
@media screen and (max-width: 680px) {
  .lcp-section-3 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .lcp-section-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.lcp-section-3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -15%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 490px 800px 490px;
  border-color: transparent transparent var(--teal-darker) transparent;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .lcp-section-3::after {
    border-width: 0 350px 600px 350px;
  }
}
@media screen and (max-width: 680px) {
  .lcp-section-3::after {
    right: -45%;
  }
}
@media screen and (max-width: 500px) {
  .lcp-section-3::after {
    border-width: 0 250px 400px 250px;
  }
}

.lcp-section-3__container {
  max-width: 1770px;
  margin: 0 auto;
  padding-left: 16rem;
}
@media screen and (max-width: 1300px) {
  .lcp-section-3__container {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .lcp-section-3__container {
    padding-left: 0;
  }
}

.lcp-section-3__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -14rem;
}
@media screen and (max-width: 1100px) {
  .lcp-section-3__header {
    flex-direction: column-reverse;
    margin-bottom: 6rem;
  }
}

.lcp-section-3__content {
  margin-top: 7rem;
  flex-shrink: 0;
}

.lcp-section-3__title {
  max-width: 580px;
  position: relative;
}
.lcp-section-3__title::after {
  content: url("../images/icon-triangle-partial.svg");
  position: absolute;
  top: -54%;
  right: -24%;
  width: 198px;
}
@media screen and (max-width: 960px) {
  .lcp-section-3__title::after {
    display: none;
  }
}

.lcp-section-3__triangle {
  -webkit-mask-image: url("../images/mask-triangle-down.svg");
          mask-image: url("../images/mask-triangle-down.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 1020px;
}
@media screen and (max-width: 1100px) {
  .lcp-section-3__triangle {
    width: 680px;
  }
}
.lcp-section-3__triangle img {
  width: 100%;
}

.page-template-lcp .section-4 {
  padding: 15rem 4rem 30rem;
  z-index: 15;
}
@media screen and (max-width: 680px) {
  .page-template-lcp .section-4 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .page-template-lcp .section-4 {
    padding: 8rem 6rem 15rem;
  }
}

.hvd {
  padding: 9rem 4rem 30rem 4rem;
}
@media screen and (max-width: 680px) {
  .hvd {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .hvd {
    padding: 9rem 3rem 25rem 3rem;
  }
}
.hvd::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: 0;
  right: 0;
  height: 50%;
  background: #fafafa;
  background: linear-gradient(180deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
}

.hvd__container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 960px) {
  .hvd__container {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }
}

.hvd__image {
  position: relative;
  max-width: 516px;
}
.hvd__image::after {
  content: url("../images/icon-triangle.svg");
  width: 150px;
  position: absolute;
  bottom: 10rem;
  right: 6rem;
}

.hvd__triangle {
  -webkit-mask-image: url("../images/mask-triangle-down.svg");
          mask-image: url("../images/mask-triangle-down.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.hvd__title {
  max-width: 570px;
  margin: 0 0 3rem;
  color: var(--teal-darker);
}

.hvd__text {
  max-width: 630px;
  margin: 0 0 4rem;
}

@media screen and (max-width: 500px) {
  .single-past-deal .landing {
    padding-bottom: 9rem;
  }
}
.single-past-deal .landing__container {
  max-width: 1100px;
}
@media screen and (max-width: 1700px) {
  .single-past-deal .landing__container {
    max-width: none;
    padding-right: 30vw;
  }
}
@media screen and (max-width: 1400px) {
  .single-past-deal .landing__container {
    padding-right: 20vw;
  }
}
@media screen and (max-width: 500px) {
  .single-past-deal .landing__container {
    padding-right: 10vw;
  }
}
@media screen and (max-width: 1400px) {
  .single-past-deal .landing__container::before {
    height: 510px !important;
  }
}
@media screen and (max-width: 1100px) {
  .single-past-deal .landing__container::before {
    height: 420px !important;
  }
}
@media screen and (max-width: 800px) {
  .single-past-deal .landing__container::before {
    height: 500px !important;
  }
}
.single-past-deal .landing__title {
  font-size: clamp(3rem, var(--base), 6rem);
  padding-right: 20rem;
}
@media screen and (max-width: 800px) {
  .single-past-deal .landing__title {
    padding-right: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .single-past-deal .landing__title {
    padding-right: 4rem;
  }
}
@media screen and (max-width: 360px) {
  .single-past-deal .landing__title {
    padding-right: 0;
  }
}

.past-deals__sidebar {
  position: relative;
  z-index: 20;
}

.taxonomy-sidebar {
  box-shadow: 5px 5px 15px #00000012;
  background-color: var(--teal-darker);
  margin: 0 0 5rem;
}

.taxonomy-sidebar__header {
  padding: 6rem;
  position: relative;
  overflow: hidden;
}
.taxonomy-sidebar__header::after {
  content: url("../images/angle-ivory-less-steep-white.svg");
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  right: 0;
  width: 105%;
}

.taxonomy-sidebar__body {
  background-color: var(--white);
  padding: 1rem 6rem 2rem;
}

.taxonomy-sidebar__title {
  color: var(--teal);
  font-size: clamp(2.8rem, var(--base), 4.5rem);
  margin: 0;
}
.taxonomy-sidebar__title::after {
  content: "";
  display: block;
  width: 192px;
  height: 2px;
  background-color: var(--gold);
  margin: 2rem 0;
}

.taxonomy-list__item {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(1, 51, 65, 0.15);
}
.taxonomy-list__item::before {
  content: url("../images/icon-triangle.svg");
  display: block;
  width: 20px;
  margin-right: 2rem;
}
.taxonomy-list__item:last-child {
  border-bottom: 0;
}

.search-form__group {
  margin: 0 0 3rem;
}

.taxonomy-list__item--active::before {
  transform: rotate(90deg);
}
.taxonomy-list__item--active a {
  font-family: var(--font-bold);
  color: var(--teal-darker);
}

.post-meta {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  max-width: 970px;
}
@media screen and (max-width: 1400px) {
  .post-meta {
    padding-right: 14rem;
  }
}
@media screen and (max-width: 960px) {
  .post-meta {
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .post-meta {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-right: 0;
  }
}

.post-meta__divider {
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .post-meta__divider {
    width: 100%;
    height: 2px;
  }
}

.post-meta__left-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column: span 4;
  gap: 1rem;
  row-gap: 3rem;
}
@media screen and (max-width: 800px) {
  .post-meta__left-box {
    max-width: 300px;
  }
}
.post-meta__left-box span {
  align-self: flex-start;
}

.post-meta__right-box {
  grid-column: span 5;
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 800px) {
  .post-meta__right-box {
    grid-column: span 4;
  }
}

.post-meta__category {
  display: flex;
  align-items: center;
}
.post-meta__category::before {
  content: url("../images/icon-triangle.svg");
  display: block;
  width: 20px;
  margin-right: 2rem;
}

.post-meta-team-member-title .post-meta__left-box {
  grid-template-columns: repeat(1, 1fr);
}
.post-meta-team-member-title .post-meta__category {
  color: var(--teal-light);
}

.post-meta__category-value {
  color: var(--teal);
  display: block;
}

.active-category {
  display: block;
}

.past-deals-archive-button {
  display: block;
  margin: 0 0 2rem;
}

.past-deal__quote {
  margin-top: 16rem;
}
@media screen and (max-width: 1100px) {
  .past-deal__quote {
    margin-top: 20rem;
  }
}

.past-deal-quote__title {
  font-size: var(--text-size-xl);
  color: var(--teal-dark);
  position: relative;
  max-width: 760px;
  padding-right: 12rem;
  margin: 0 0 6rem;
}
@media screen and (max-width: 1100px) {
  .past-deal-quote__title {
    font-size: var(--text-size-lg);
  }
}
@media screen and (max-width: 680px) {
  .past-deal-quote__title {
    padding-right: 0;
  }
}
.past-deal-quote__title::after {
  content: url("../images/icon-quotes.svg");
  width: 95px;
  position: absolute;
  top: -3rem;
  right: -4rem;
}
@media screen and (max-width: 1100px) {
  .past-deal-quote__title::after {
    top: -12rem;
    right: auto;
    left: 0;
  }
}

.past-deal-quote__text {
  margin: 0 0 6rem;
  max-width: 870px;
}

.past-deal-quote__attribution {
  color: var(--teal);
}

.search-results-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.tm-single-post {
  margin-left: 15rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem;
  padding: 0 6rem;
  max-width: 1680px;
  margin-top: 4rem;
}
@media screen and (max-width: 1500px) {
  .tm-single-post {
    gap: 4rem;
  }
}
@media screen and (max-width: 1400px) {
  .tm-single-post {
    margin-left: 0;
  }
}
@media screen and (max-width: 800px) {
  .tm-single-post {
    grid-template-columns: 1fr;
    gap: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .tm-single-post {
    padding: 0 3rem;
  }
}
.tm-single-post h1 {
  position: relative;
  font-size: clamp(4rem, var(--base), 5rem);
  color: var(--teal-dark);
  margin: 0 0 3rem;
}
.tm-single-post h1::before {
  display: none;
}

.tm-single-post__container {
  grid-column: span 2;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 800px) {
  .tm-single-post__container {
    grid-column: span 1;
  }
}

.tm-single-post__container--single {
  max-width: 940px;
}

.page-wrapper {
  padding-top: 8.5rem;
  padding-bottom: 25rem;
  background-color: var(--ivory);
  background-image: url("../images/bg-pattern-content.webp");
  background-repeat: no-repeat;
  background-position-y: 300px;
  background-size: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page-wrapper {
    padding-top: 5.5rem;
  }
}
@media screen and (max-width: 500px) {
  .page-wrapper {
    padding-top: 2rem;
  }
}

.page-wrapper--past-deals {
  padding-bottom: 16rem;
}

.page-wrapper--no-sidebar .tm-single-post__container {
  grid-column: span 3;
  max-width: 1400px;
  padding-right: 12rem;
}
@media screen and (max-width: 1400px) {
  .page-wrapper--no-sidebar .tm-single-post__container {
    padding-right: 6rem;
  }
}
@media screen and (max-width: 1100px) {
  .page-wrapper--no-sidebar .tm-single-post__container {
    padding-right: 0;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  position: relative;
  z-index: 10;
  margin-bottom: 12rem;
}
@media screen and (max-width: 800px) {
  .card-grid {
    gap: 3rem;
  }
}
@media screen and (max-width: 680px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.resources.card-grid .card__image {
  display: none;
}

.flexible-content {
  padding: 4rem;
  max-width: 1420px;
  min-height: 400px;
  margin: 0 auto 0 21rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .flexible-content {
    margin: 4rem auto;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .flexible-content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 360px) {
  .flexible-content {
    padding: 4rem 2rem;
  }
}

.flexible-content--sidebar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
@media screen and (max-width: 1100px) {
  .flexible-content--sidebar {
    grid-template-columns: 1fr;
    gap: 10rem;
  }
}
.flexible-content--sidebar .flexible-content__container {
  grid-column: span 2;
  padding-right: 10rem;
}
@media screen and (max-width: 1500px) {
  .flexible-content--sidebar .flexible-content__container {
    padding-right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .flexible-content--sidebar .flexible-content__container {
    grid-column: initial;
  }
}

.landing {
  padding-top: 27rem;
  padding-bottom: 16rem;
  background-color: var(--teal-darker);
  background-image: url("../images/bg-pattern-dark-header.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1400px) {
  .landing {
    padding-top: 18rem;
  }
}
@media screen and (max-width: 800px) {
  .landing {
    padding-bottom: 11rem;
  }
}
@media screen and (max-width: 500px) {
  .landing {
    padding-bottom: 6rem;
  }
}
.landing::after {
  content: url("../images/angle-teal-darkest-small-to-tall.svg");
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  z-index: 1;
  width: 106%;
}
@media screen and (max-width: 1100px) {
  .landing::after {
    bottom: -0.7rem;
  }
}

.landing--white-divider::after {
  content: url("../images/angle-ivory-less-steep.svg");
}

.landing__wrapper {
  display: flex;
  justify-content: space-between;
}

.landing__container {
  max-width: 860px;
  position: relative;
  z-index: 10;
  padding-left: 7.5rem;
  margin-left: 15rem;
  margin-top: 3rem;
}
.landing__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 848px;
  background-color: var(--gold);
  z-index: 5;
}
@media screen and (max-width: 1100px) {
  .landing__container::before {
    height: 665px;
  }
}
@media screen and (max-width: 500px) {
  .landing__container::before {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .landing__container {
    max-width: 640px;
    margin-left: 6rem;
    padding-left: 5.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .landing__container {
    max-width: 55%;
  }
}
@media screen and (max-width: 800px) {
  .landing__container {
    max-width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .landing__container {
    max-width: 80%;
    padding-left: 0;
    margin-left: 3rem;
  }
}

.landing__title {
  font-size: var(--text-size-supersize);
  font-family: var(--font-serif);
  letter-spacing: 1px;
  line-height: 1.1;
  margin: 0 0 6.5rem;
  font-weight: 100;
}
@media screen and (max-width: 800px) {
  .landing__title {
    font-size: var(--text-size-xxxl);
  }
}
@media screen and (max-width: 680px) {
  .landing__title {
    font-size: var(--text-size-xxl);
  }
}
@media screen and (max-width: 500px) {
  .landing__title {
    font-size: var(--text-size-xl);
    margin: 0 0 5rem;
  }
}
@media screen and (max-width: 300px) {
  .landing__title {
    word-break: break-word;
  }
}

.landing__title--single {
  font-size: var(--text-size-xl);
}

.landing__pretitle {
  padding-right: 6rem;
}
@media screen and (max-width: 500px) {
  .landing__pretitle {
    padding-right: 15rem;
  }
}
@media screen and (max-width: 360px) {
  .landing__pretitle {
    padding-right: 5rem;
  }
}

.landing__text {
  position: relative;
}

.landing__triangle {
  position: absolute;
  top: 0;
  right: 0;
  width: 53vw;
  height: 88vw;
  z-index: 5;
}
@media screen and (max-width: 1500px) {
  .landing__triangle {
    width: 50vw;
  }
}
@media screen and (max-width: 1300px) {
  .landing__triangle {
    width: 45vw;
  }
}
.landing__triangle::after {
  content: url("../images/icon-triangle-dual.svg");
  position: absolute;
  top: 36vw;
  left: auto;
  right: 23.85vw;
  width: 5.5vw;
}
@media screen and (max-width: 1500px) {
  .landing__triangle::after {
    top: 34vw;
    right: 22.25vw;
  }
}
@media screen and (max-width: 1300px) {
  .landing__triangle::after {
    top: 27vw;
    right: 18.85vw;
    width: 7.5vw;
  }
}
@media screen and (max-width: 500px) {
  .landing__triangle::after {
    top: 22vw;
    right: 16.85vw;
    width: 11.5vw;
  }
}

.landing-mask__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-mask-image: url("../images/mask-home-landing-side.svg");
          mask-image: url("../images/mask-home-landing-side.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  background-image: url("../images/side-calgary-downtown.webp");
  background-position: top right;
  background-size: contain;
}

.landing-mask {
  -webkit-mask-image: url("../images/mask-triangle-down.svg");
          mask-image: url("../images/mask-triangle-down.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  pointer-events: none;
  -webkit-mask-size: contain;
          mask-size: contain;
  height: 42.2vw;
}
.landing-mask img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
}

.landing-mask--right img {
  -o-object-position: right;
     object-position: right;
}

.landing-mask--left img {
  -o-object-position: left;
     object-position: left;
}

.landing--primary .landing__title {
  margin: 0 0 5rem;
  letter-spacing: 0;
}
.landing--primary .landing__text {
  max-width: 550px;
}
@media screen and (max-width: 1100px) {
  .landing--primary .landing__text {
    max-width: none;
  }
}
.landing--primary .landing__container::before {
  height: 494px;
}
@media screen and (max-width: 1400px) {
  .landing--primary .landing__container::before {
    height: 360px;
  }
}
@media screen and (max-width: 1100px) {
  .landing--primary .landing__container::before {
    height: 275px;
  }
}
@media screen and (max-width: 960px) {
  .landing--primary .landing__container::before {
    height: 225px;
  }
}
@media screen and (max-width: 500px) {
  .landing--primary .landing__container::before {
    display: none;
  }
}
.landing--primary .landing__triangle {
  width: 41vw;
  height: 70vw;
}
.landing--primary .landing__triangle:after {
  top: 22vw;
  left: auto;
  right: 15.5vw;
  width: 10vw;
}
@media screen and (max-width: 1500px) {
  .landing--primary .landing__triangle:after {
    right: 15vw;
  }
}
@media screen and (max-width: 1100px) {
  .landing--primary .landing__triangle:after {
    right: 15.5vw;
  }
}
@media screen and (max-width: 500px) {
  .landing--primary .landing__triangle:after {
    top: 20vw;
  }
}
.landing--primary .landing-mask__wrapper {
  background-image: url("../images/side-calgary-bridge.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.landing--primary .landing-mask {
  height: 33vw;
}

.card {
  background-color: var(--white);
  box-shadow: 5px 5px 15px #00000012;
  width: 100%;
  position: relative;
}
.card::after {
  content: url("../images/icon-triangle.svg");
  width: 60px;
  position: absolute;
  bottom: 3.5rem;
  right: -2.5rem;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.card:hover::after {
  transform: translateX(0.5rem) rotate(90deg);
}
.card:hover .card__button {
  color: var(--teal-dark);
}

.card--no-link::after {
  display: none;
}

.card--sidebar {
  margin: 0 0 8rem;
}

.card--past-deals .card__title {
  margin: 0 0 4rem;
}
.card--past-deals .card__excerpt {
  margin: 0 0 4rem;
}
.card--past-deals::after {
  display: none;
}
.card--past-deals:hover .card__button::after {
  transform: translateX(0.5rem) rotate(90deg);
}

@media screen and (max-width: 680px) {
  .card--alt .card__body {
    padding: 4rem 3rem 8rem 3rem;
  }
  .card--alt .card__title::after {
    width: 50%;
  }
}
.card--alt::after {
  display: none;
}
.card--alt .card__image img {
  max-height: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card--alt .card__title {
  margin: 0 0 4rem;
}
.card--alt a {
  color: var(--teal-darker);
}
.card--alt:hover .card__button::after {
  transform: translateX(0.5rem) rotate(90deg);
}

.card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.25/1;
  background-color: #ececec;
  overflow: hidden;
}
.card__image::after {
  content: url("../images/angle-ivory-less-steep-white.svg");
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  right: 0;
  width: 105%;
}
.card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 800px) {
  .card__image img {
    max-height: 100%;
  }
}

.card__body {
  padding: 6.5rem 6rem 8rem 6rem;
}
@media screen and (max-width: 1500px) {
  .card__body {
    padding: 4rem 4rem 8rem 4rem;
  }
}

.card__body--no-link {
  padding: 4rem 6rem;
}

.card__title {
  margin: 0 0 6rem;
  position: relative;
  color: var(--teal-dark);
  font-size: clamp(3rem, var(--base), 3.5rem);
  line-height: 1.3;
}
@media screen and (max-width: 1300px) {
  .card__title {
    font-size: clamp(3rem, var(--base), 3.5rem);
    margin: 0 0 3rem;
  }
}
.card__title::after {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--gold);
  width: 192px;
  margin: 2rem 0;
}

.card__category {
  margin: 0 0 1rem;
  display: inline-block;
}

.card__excerpt {
  margin: 0 0 1rem;
  color: var(--teal-darker);
}

.card__button {
  display: inline-block;
}

.card--rounded {
  border-radius: 5px;
  box-shadow: 0 2px 5px var(--color-black);
}

.card__taxonomies {
  margin: 0 0 3rem;
}

.card__taxonomy {
  display: flex;
  align-items: center;
  margin: 0 0 1rem;
}
.card__taxonomy:last-child {
  margin: 0;
}
.card__taxonomy::before {
  content: url("../images/icon-triangle.svg");
  display: block;
  width: 20px;
  margin-right: 2rem;
}

.card__value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, var(--base), 4rem);
  display: block;
  margin: 0 0 3rem;
}

.card__button {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  display: flex;
  gap: 1rem;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  right: -3rem;
  font-size: var(--text-size-xs);
  font-family: var(--font-bold);
  color: var(--teal);
  transition: color 0.3s ease-out;
}
.card__button::after {
  content: url("../images/icon-triangle.svg");
  width: 60px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.footer {
  background: url("../images/bg-pattern-dark-footer.webp") no-repeat center;
  background-size: cover;
  position: relative;
}

.footer--has-divider::before {
  content: url("../../src/images/angle-ivory-less-steep.svg");
  position: absolute;
  top: -0.8rem;
  left: 0;
  right: 0;
  transform: scaleY(-1);
}

.footer--primary .footer__header {
  max-width: 1500px;
  margin-top: -16rem;
  margin-bottom: 6rem;
}
.footer--primary .footer__triangle {
  margin-top: 0;
  margin-right: -4rem;
  max-width: 715px;
}
.footer--primary .footer__triangle img {
  max-height: 500px;
}
@media screen and (max-width: 500px) {
  .footer--primary .footer__triangle img {
    max-height: 400px;
  }
}
@media screen and (max-width: 360px) {
  .footer--primary .footer__triangle img {
    max-height: 320px;
  }
}
.footer--primary .footer__container {
  padding: 1rem 0 8rem var(--left-padding);
}

.footer__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24rem;
  margin-top: 10rem;
}
@media screen and (max-width: 1100px) {
  .footer__header {
    gap: 12rem;
  }
}
@media screen and (max-width: 800px) {
  .footer__header {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 6rem;
  }
}

.footer__title {
  margin: 0;
}

.footer-triangle__wrapper {
  position: relative;
}
.footer-triangle__wrapper::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="117.59" height="93.976"><path fill="%23ebb300" d="m58.795 0 .848 1.355 57.947 92.621H0l.957-1.53Zm55.185 91.976L58.795 3.771 3.611 91.976Z" vector-effect="non-scaling-stroke"/></svg>');
  position: absolute;
  top: auto;
  bottom: 8rem;
  left: -1rem;
  right: auto;
}
@media screen and (max-width: 360px) {
  .footer-triangle__wrapper::after {
    scale: 0.6;
  }
}

.footer__triangle {
  -webkit-mask-image: url("../images/mask-triangle-up.svg");
          mask-image: url("../images/mask-triangle-up.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  margin-top: -70rem;
  margin-right: -8rem;
}
@media screen and (max-width: 1100px) {
  .footer__triangle {
    margin-top: -46rem;
  }
}
@media screen and (max-width: 800px) {
  .footer__triangle {
    margin-top: -34rem;
  }
}
.footer__triangle img {
  max-height: 900px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1400px) {
  .footer__triangle img {
    max-height: 720px;
  }
}
@media screen and (max-width: 1100px) {
  .footer__triangle img {
    max-height: 580px;
  }
}
@media screen and (max-width: 500px) {
  .footer__triangle img {
    max-height: 400px;
  }
}
@media screen and (max-width: 360px) {
  .footer__triangle img {
    max-height: 300px;
  }
}

.footer__container {
  margin-left: var(--left-margin);
  padding: 5rem 0 8rem var(--left-padding);
}
@media screen and (max-width: 500px) {
  .footer__container {
    padding: 5rem 0 8rem 3rem;
    margin-left: 0;
  }
}

.footer__logo {
  width: 240px;
  margin: 0 0 8rem;
}
.footer__logo img {
  width: 100%;
}

.footer__link {
  display: block;
  font-family: var(--font-serif);
  margin: 0 0 1rem;
}

.footer__links {
  margin: 0 0 6.5rem;
}

.footer__address {
  font-family: var(--font-serif);
  min-width: 275px;
  margin: 0 0 3rem;
}
.footer__address:last-child {
  margin: 0;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 300px), 1fr));
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 4rem;
  position: relative;
  max-width: 1500px;
}
@media screen and (max-width: 1400px) {
  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .footer__columns {
    grid-template-columns: 1fr;
    grid-row-gap: 4rem;
  }
}

.footer__columns--flex {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .footer__columns--flex {
    flex-direction: column;
  }
}

.footer__column {
  position: relative;
  padding-left: 8rem;
}
.footer__column:nth-child(-n+2) {
  border-left: 2px solid var(--gold);
}
@media screen and (max-width: 1300px) {
  .footer__column {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .footer__column {
    max-width: 100%;
    padding-right: 3rem;
  }
}
.footer__column:first-child {
  padding-right: 3rem;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .footer__column:first-child {
    padding-right: 0;
  }
}
.footer__column:nth-child(2) {
  margin-left: 11rem;
}
@media screen and (max-width: 1300px) {
  .footer__column:nth-child(2) {
    margin-left: 0;
  }
}
.footer__column:nth-child(3) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .footer__column:nth-child(3) {
    flex-direction: row;
    margin-top: 6rem;
    grid-column: span 2;
  }
}
@media screen and (max-width: 960px) {
  .footer__column:nth-child(3) {
    grid-column: span 1;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
  }
}

.footer__column--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-left: 0 !important;
  max-width: 600px;
}

.footer__newsletter input[type=text],
.footer__newsletter .hs-input {
  height: 100%;
  margin: 0;
  width: 300px;
  max-width: 100%;
  background-color: var(--teal-darkest);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-size-sm);
  border: none;
  padding: 2rem;
  border-radius: 0;
}
.footer__newsletter input[type=text]::-moz-placeholder, .footer__newsletter .hs-input::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--white);
}
.footer__newsletter input[type=text]:-ms-input-placeholder, .footer__newsletter .hs-input:-ms-input-placeholder {
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--white);
}
.footer__newsletter input[type=text]::placeholder,
.footer__newsletter .hs-input::placeholder {
  transition: opacity 0.3s ease;
  color: var(--white);
}
.footer__newsletter input[type=text]:focus::-moz-placeholder, .footer__newsletter .hs-input:focus::-moz-placeholder {
  opacity: 0;
}
.footer__newsletter input[type=text]:focus:-ms-input-placeholder, .footer__newsletter .hs-input:focus:-ms-input-placeholder {
  opacity: 0;
}
.footer__newsletter input[type=text]:focus::placeholder,
.footer__newsletter .hs-input:focus::placeholder {
  opacity: 0;
}
@media screen and (max-width: 680px) {
  .footer__newsletter input[type=text],
.footer__newsletter .hs-input {
    width: 280px;
  }
}
@media screen and (max-width: 500px) {
  .footer__newsletter input[type=text],
.footer__newsletter .hs-input {
    width: 100%;
  }
}
.footer__newsletter .hbspt-form form {
  display: flex;
  position: relative;
}
.footer__newsletter .hbspt-form ul {
  padding: 0;
  margin: 0;
}
.footer__newsletter .hbspt-form .hs-error-msg {
  position: absolute;
  font-size: 14px;
  bottom: -3rem;
  color: var(--red);
}
.footer__newsletter .hbspt-form .submitted-message {
  color: var(--gold);
  font-size: var(--text-size-xs);
}
.footer__newsletter .hbspt-form .hs_error_rollup {
  display: none;
}
.footer__newsletter .hbspt-form .hs-button {
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 50;
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  border: 2px solid var(--gold) !important;
  background-color: transparent !important;
  text-decoration: none;
  text-align: center;
  letter-spacing: 3px;
  clear: both;
  padding: 1.55rem 4.7rem;
  font-family: var(--font-medium);
  font-size: var(--text-size-sm);
  transition: all 0.4s ease;
}
.footer__newsletter .hbspt-form .hs-button:hover {
  background-color: var(--gold) !important;
  transform: scale(1.05);
  box-shadow: none !important;
}

.hs-form-iframe iframe {
  display: none !important;
}

.footer__newsletter-title {
  font-size: 40px;
  line-height: 1.45;
  margin: 0 0 5rem;
}

.footer__newsletter-text {
  max-width: 350px;
  margin: 0 0 6rem;
}

.footer__newsletter-form {
  display: flex;
  align-items: center;
  height: 55px;
  margin-bottom: 0;
}
@media screen and (max-width: 500px) {
  .footer__newsletter-form {
    flex-direction: column;
    height: auto;
  }
  .footer__newsletter-form .button {
    width: 100%;
  }
}
.footer__newsletter-form .button {
  height: 100%;
}

.footer__partner-logo {
  max-width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__partner-logo--id-803 {
  flex-grow: 3;
}

.footer__partner-logo--id-799,
.footer__partner-logo--id-850,
.footer__partner-logo--id-798,
.footer__partner-logo--id-851 {
  max-width: 165px;
}

.footer__meta {
  background-color: var(--teal-darkest);
  padding: 2rem 4rem 2rem var(--left-padding);
  font-size: var(--text-size-xs);
}
.footer__meta a {
  transition: color 0.3s ease;
}
.footer__meta a:hover {
  color: var(--white);
}

.footer-meta__container {
  display: flex;
  margin-left: var(--left-margin);
}
@media screen and (max-width: 800px) {
  .footer-meta__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    text-align: center;
  }
}

.meta__copy {
  margin-right: 1rem;
}
@media screen and (max-width: 800px) {
  .meta__copy {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.meta__nav {
  display: flex;
  align-items: flex-end;
  margin: 0;
}
.meta__nav .menu-item {
  margin-left: 1rem;
}
@media screen and (max-width: 800px) {
  .meta__nav {
    margin-bottom: 1rem;
  }
}

.meta__nav-item {
  margin-right: 1rem;
}

.truemarket {
  margin-left: 5rem;
}
@media screen and (max-width: 800px) {
  .truemarket {
    margin-left: 0;
  }
}

.footer__addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.sidebar {
  position: relative;
  z-index: 5;
}

.navigation {
  position: fixed;
  z-index: 990;
  background-color: var(--teal-darker);
  height: 100vh;
  width: 900px;
  max-width: 80%;
  top: 0;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  padding: 15rem 0 3rem 0;
  overflow: auto;
  transition: all 0.4s ease;
  box-shadow: 0px 0px 50px #01252E;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media screen and (max-width: 1100px) {
  .navigation {
    width: 70%;
    max-width: none;
  }
}
@media screen and (max-width: 800px) {
  .navigation {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .navigation {
    width: 100%;
    padding-top: 13rem;
  }
}
.navigation::-webkit-scrollbar {
  width: 3px;
}
.navigation::-webkit-scrollbar-track {
  background: var(--teal-darker);
}
.navigation::-webkit-scrollbar-thumb {
  background: var(--teal-dark);
}
.navigation::-webkit-scrollbar-thumb:hover {
  background: var(--teal-darkest);
}
.navigation .menu-item {
  margin: 0 0 3rem;
  position: relative;
  padding: 0;
  opacity: 0;
}
.navigation .menu-item a {
  display: block;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: var(--text-size-lg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.navigation .menu-item a:hover {
  transform: translateX(0.6rem);
}
.navigation__wrapper {
  padding: 10rem 10rem 0 15rem;
}
@media screen and (max-width: 1400px) {
  .navigation__wrapper {
    padding: 4rem 0 0 6rem;
  }
}
@media screen and (max-width: 500px) {
  .navigation__wrapper {
    padding-left: 3rem;
  }
}

.navigation__container {
  position: relative;
  padding-left: 6rem;
  list-style: none;
}
.navigation__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background-color: var(--gold);
  z-index: 5;
}
@media screen and (max-width: 1100px) {
  .navigation__container {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 680px) {
  .navigation__container {
    padding-left: 3rem;
  }
}

.sub-menu {
  transition: all 0.2s ease;
  max-height: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
}
.sub-menu .menu-item {
  margin: 0 0 1rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.sub-menu .menu-item a {
  font-size: var(--text-size-md);
}
@media screen and (max-width: 680px) {
  .sub-menu .menu-item a {
    font-size: var(--text-size-sm);
  }
}
.sub-menu .menu-item:hover {
  opacity: 1;
}
.sub-menu .menu-item:hover a {
  transform: unset;
}
.sub-menu .menu-item::after {
  display: none;
}

.is-submenu-open .sub-menu {
  max-height: 999px;
  opacity: 1;
  padding: 2rem 1rem 1rem 2rem;
  visibility: visible;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.is-menu-open .navigation {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.button,
.hs-button {
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  border: 2px solid var(--gold) !important;
  background-color: transparent !important;
  text-decoration: none;
  text-align: center;
  letter-spacing: 3px;
  clear: both;
  padding: 1.55rem 4.7rem;
  font-family: var(--font-medium);
  font-size: var(--text-size-sm);
  transition: all 0.4s ease;
}
@media screen and (max-width: 500px) {
  .button,
.hs-button {
    letter-spacing: 1px;
    word-break: keep-all;
  }
}
@media screen and (max-width: 360px) {
  .button,
.hs-button {
    padding: 1.5rem;
  }
}
.button:hover,
.hs-button:hover {
  background-color: var(--gold) !important;
  transform: scale(1.05);
  box-shadow: none !important;
}

.button--dark {
  color: var(--teal-dark) !important;
}
.button--dark:hover {
  color: var(--white);
}

.button--header-cta {
  padding: 0.65rem 2.6rem;
  font-size: var(--text-size-xxs);
  letter-spacing: 2.1px;
}
@media screen and (max-width: 1100px) {
  .button--header-cta {
    padding: 1.55rem 4.7rem;
    font-size: var(--text-size-sm);
  }
}

.hs-button {
  color: var(--teal-dark);
  cursor: pointer;
}

.content-button {
  margin-block-end: 3rem;
}

.dropdown-group {
  margin: 0 0 6rem;
  clear: both;
}

.dropdown {
  width: 100%;
  margin: 0 0 1rem;
  position: relative;
  box-shadow: 5px 5px 15px #00000012;
  border-radius: 0.5rem;
  background-color: var(--white);
}

.dropdown--highlight {
  background-color: var(--teal);
}
.dropdown--highlight .dropdown__label {
  color: var(--white);
}
.dropdown--highlight .dropdown__box {
  background-color: var(--white);
}

.dropdown__label {
  padding: 2.5rem 3rem 2rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 2.4rem);
  color: var(--teal-darker);
  letter-spacing: 0.48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  box-sizing: content-box;
  margin: 0;
}
@media screen and (max-width: 500px) {
  .dropdown__label {
    padding: 1.5rem 3rem 1rem 2rem;
  }
}
.dropdown__label::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 122.5 97.9" viewBox="0 0 122.5 97.9"><path d="m61.2 1.9-59.4 95h118.9l-59.5-95z" style="fill:none;stroke:%23ebb300;stroke-width:2" vector-effect="non-scaling-stroke"/></svg>');
  min-width: 20px;
  max-width: 26px;
  transform: scaleY(-1) translateY(0.4rem);
  transition: transform 0.3s ease;
}
.dropdown__label:hover::after {
  transform: scaleY(-1) translateY(-0.05rem);
}

.dropdown__box {
  transition: max-height 0.3s ease-out;
  overflow: hidden;
  max-height: 0;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
@media screen and (max-width: 500px) {
  .dropdown__box {
    padding-left: 2rem;
  }
}

.dropdown__content {
  padding-left: 2.5rem;
  border-left: 2px solid var(--gold);
  margin: 2rem 4rem 4rem 0;
}
@media screen and (max-width: 500px) {
  .dropdown__content {
    padding-left: 0;
    border-left: none;
  }
}
.dropdown__content *:last-child {
  margin-bottom: 0;
}
.dropdown__content ul li:first-child {
  padding-top: 0;
}
.dropdown__content ul li ul li:first-child {
  padding-top: 1rem;
}
.dropdown__content ul li:last-child {
  padding-bottom: 0;
}

.is-dropdown-active::after,
.is-dropdown-active .dropdown__label::after {
  transform: translate3d(0, -5%, 0) scaleY(1);
}

.quote--content {
  box-shadow: 5px 5px 15px #00000012;
  background-color: var(--white);
  padding: 8rem;
}
@media screen and (max-width: 1100px) {
  .quote--content {
    padding: 4rem;
  }
}
.quote--content::before {
  content: url("../images/icon-triangle.svg");
  position: absolute;
  top: -2rem;
  right: 6rem;
  width: 52px;
  transform: scaleY(-1);
}
.quote--content::after {
  content: url("../images/icon-triangle.svg");
  position: absolute;
  bottom: -3rem;
  right: 2rem;
  width: 141px;
}
@media screen and (max-width: 680px) {
  .quote--content::after {
    width: 100px;
    bottom: -8rem;
  }
}
.quote--content .quote__content {
  margin: 0 0 3rem;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--teal);
  line-height: 1.3;
}
@media screen and (max-width: 1300px) {
  .quote--content .quote__content {
    padding-right: 9vw;
  }
}
@media screen and (max-width: 680px) {
  .quote--content .quote__content {
    padding-right: 0;
  }
}
.quote--content .quote__attribution {
  display: block;
  margin: 0 0 3rem;
  color: var(--teal-darker);
}

.quote__wrapper {
  position: relative;
  margin: 12rem 0;
}
.quote__wrapper::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 260px 420px 260px;
  border-color: transparent transparent var(--teal-darkest) transparent;
  opacity: 0.05;
}

.quote {
  position: relative;
  clear: both;
  margin: 0;
}
@media screen and (max-width: 1300px) {
  .quote {
    padding: 6rem;
  }
}
@media screen and (max-width: 360px) {
  .quote {
    padding: 3rem;
  }
}

.quote__content {
  font-size: clamp(2rem, 6vw, 3rem);
  font-family: var(--font-serif);
  color: var(--teal-darker);
  line-height: 1.6;
}

.text-block {
  margin: 0 0 2rem;
}

.dropdown__content,
.text-block {
  clear: both;
}
.dropdown__content ul,
.dropdown__content ol,
.text-block ul,
.text-block ol {
  list-style: none;
  margin: 2rem 0 6rem;
}
.dropdown__content ul li,
.dropdown__content ol li,
.text-block ul li,
.text-block ol li {
  position: relative;
  border-bottom: 1px solid rgba(1, 50, 63, 0.15);
}
.dropdown__content ul li:last-child,
.dropdown__content ol li:last-child,
.text-block ul li:last-child,
.text-block ol li:last-child {
  border-bottom: 0;
}
.dropdown__content ul ul,
.dropdown__content ul ol,
.dropdown__content ol ul,
.dropdown__content ol ol,
.text-block ul ul,
.text-block ul ol,
.text-block ol ul,
.text-block ol ol {
  margin-top: 1rem;
}
.dropdown__content ul ul li,
.dropdown__content ul ol li,
.dropdown__content ol ul li,
.dropdown__content ol ol li,
.text-block ul ul li,
.text-block ul ol li,
.text-block ol ul li,
.text-block ol ol li {
  border-bottom: none;
  font-size: calc(var(--text-size-sm) - 10% );
}
.dropdown__content ul li,
.text-block ul li {
  padding: 2rem 0 2rem 4rem;
}
.dropdown__content ul li::before,
.text-block ul li::before {
  content: url("../images/icon-triangle.svg");
  width: 20px;
  position: absolute;
  left: 0;
}
.dropdown__content ul li ul,
.text-block ul li ul {
  margin-bottom: 0;
}
.dropdown__content ul li ul li,
.text-block ul li ul li {
  padding: 1rem 0 1rem 3.5rem;
}
.dropdown__content ul li ul li::before,
.text-block ul li ul li::before {
  width: 18px;
}
.dropdown__content ul li ul li:last-child,
.text-block ul li ul li:last-child {
  padding: 1rem 0 0 3.5rem;
}
.dropdown__content ol,
.text-block ol {
  counter-reset: item;
  padding-left: 0;
}
.dropdown__content ol li,
.text-block ol li {
  counter-increment: item;
  padding-left: 4.5rem;
  padding-bottom: 2rem;
  margin: 0 0 2rem;
}
.dropdown__content ol li::before,
.text-block ol li::before {
  content: counter(item);
  display: block;
  position: absolute;
  left: 0;
  top: -0.2rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-family: var(--font-serif);
  font-size: var(--text-size-sm);
  color: var(--teal);
  border-right: 2px solid var(--gold);
  width: 30px;
}
.dropdown__content ol li ol,
.text-block ol li ol {
  margin-top: 3rem;
  margin-bottom: 1rem;
  list-style: lower-roman;
}
.dropdown__content ol li ol li,
.text-block ol li ol li {
  padding-left: 0;
  padding-bottom: 0;
}
.dropdown__content ol li ol li::before,
.text-block ol li ol li::before {
  display: none;
}
.dropdown__content ol li ol li:last-child,
.text-block ol li ol li:last-child {
  margin-bottom: 0;
}
.dropdown__content h2,
.text-block h2 {
  position: relative;
  font-size: clamp(4rem, var(--base), 5rem);
  color: var(--teal-dark);
  margin: 8rem 0 3rem;
}
.dropdown__content h2::before,
.text-block h2::before {
  content: url("../images/icon-triangle-partial.svg");
  position: absolute;
  top: -5rem;
  left: -6rem;
  width: 74px;
  transform: scaleX(-1);
}
@media screen and (max-width: 1400px) {
  .dropdown__content h2::before,
.text-block h2::before {
    display: none;
  }
}
.dropdown__content h2:not(:first-child),
.text-block h2:not(:first-child) {
  margin: 12rem 0 3rem 0;
}
@media screen and (max-width: 1400px) {
  .dropdown__content h2:not(:first-child),
.text-block h2:not(:first-child) {
    margin: 0 0 3rem;
  }
}
.dropdown__content h3,
.text-block h3 {
  position: relative;
  font-size: clamp(2.5rem, var(--base), 4rem);
  color: var(--teal);
  letter-spacing: 0.9px;
}
.dropdown__content h3::after,
.text-block h3::after {
  content: "";
  display: block;
  height: 2px;
  width: 192px;
  background-color: var(--gold);
  margin: 1rem 0 0;
}
.dropdown__content h4,
.text-block h4 {
  margin: 0 0 2rem;
}
.dropdown__content p,
.text-block p {
  display: block;
  line-height: 1.85;
  letter-spacing: 0.2px;
  margin: 0 0 3.5rem;
}
.dropdown__content .alignleft,
.text-block .alignleft {
  float: left;
  margin: 0 10rem 10rem 0;
}
@media screen and (max-width: 960px) {
  .dropdown__content .alignleft,
.text-block .alignleft {
    float: none;
    margin-right: 0;
    margin-bottom: 7rem;
    max-width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .dropdown__content .alignleft,
.text-block .alignleft {
    margin-bottom: 5rem;
    max-width: 75%;
  }
}
.dropdown__content .alignright,
.text-block .alignright {
  float: right;
  margin: 0 0 10rem 10rem;
}
@media screen and (max-width: 960px) {
  .dropdown__content .alignright,
.text-block .alignright {
    float: none;
    margin-left: 0;
    margin-bottom: 7rem;
    max-width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .dropdown__content .alignright,
.text-block .alignright {
    margin-bottom: 5rem;
    max-width: 75%;
  }
}
.dropdown__content .aligncenter,
.text-block .aligncenter {
  margin: 3rem auto;
}
.dropdown__content .alignnone,
.text-block .alignnone {
  display: inline-block;
}

.embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: unset;
}

.team-member__role {
  margin: 0 0 2rem;
}

.team-member-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .team-member-wrapper {
    flex-direction: column;
  }
}

.team-member-image {
  flex: 30%;
}

.team-member-text {
  flex: 70%;
  padding-right: 8rem;
}
@media screen and (max-width: 1500px) {
  .team-member-text {
    padding-right: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .team-member-text {
    padding-right: 0;
  }
}

.team-member-title {
  margin: 0 0 2rem;
  color: var(--teal-dark);
}

.team-member-role {
  margin: 0 0 4rem;
  color: var(--teal);
}

.tombstones {
  --max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(265px, 400px), 1fr));
  gap: 2rem;
  margin-block-end: 4rem;
}
@media screen and (max-width: 800px) {
  .tombstones {
    grid-template-columns: repeat(auto-fit, minmax(min(225px, 300px), 1fr));
  }
}

.tombstone {
  width: 100%;
  max-width: calc(var(--max-width) / 2);
  padding: 3rem 2rem;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.tombstone__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.tombstone__title {
  margin: 0;
  font-family: var(--font-body);
}

.tombstone__transaction {
  display: block;
}

.tombstone__title,
.tombstone__text {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.7rem;
}
@media screen and (max-width: 1100px) {
  .tombstone__title,
.tombstone__text {
    min-height: 60px;
  }
}

.tombstone__text,
.tombstone__advisor-role {
  line-height: 1.45;
}

.tombstone__advisor-role {
  font-family: var(--font-bold);
}

.tombstone__image {
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
}

.header {
  width: 860px;
  max-width: 100%;
  position: fixed;
  top: 7rem;
  color: var(--white);
  padding: 4rem 4rem 4rem 4rem;
  z-index: 999;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 91.5% 100%, 0% 100%);
  background-color: transparent;
}
@media screen and (max-width: 1400px) {
  .header {
    top: 4rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 1100px) {
  .header {
    width: 640px;
    max-width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .header {
    top: 1rem;
    padding: 4rem 3rem;
  }
}

.header__container {
  display: flex;
  align-items: center;
  max-width: 566px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .header__container {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .header__container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.header__logo {
  max-width: 185px;
  min-width: 185px;
  margin-right: 7rem;
}
@media screen and (max-width: 680px) {
  .header__logo {
    margin-right: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .header__logo {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .header__logo {
    min-width: 150px;
    max-width: 150px;
  }
}

.header__menu-box {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  align-items: center;
  margin-right: 4rem;
  cursor: pointer;
}
.menu:hover .menu__label {
  transform: translateX(-0.4rem);
}

.menu__label {
  font-size: var(--text-size-xxs);
  margin-left: 2rem;
  text-transform: uppercase;
  letter-spacing: 2.1px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 680px) {
  .menu__label {
    display: none;
  }
}

.hamburger {
  position: relative;
  cursor: pointer;
  z-index: 999;
}

.hamburger__line {
  width: 40px;
  height: 2px;
  margin: 9px 0;
  background-color: var(--teal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger__line--shorter {
  width: 32px;
}

.is-hamburger-toggled .hamburger__line:nth-of-type(1) {
  transform: rotate(-45deg) translate(-7px, 8px);
}
.is-hamburger-toggled .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.is-hamburger-toggled .hamburger__line:nth-of-type(3) {
  transform: rotate(45deg) translate(-7px, -9px);
}

.is-header-scrolled {
  background-color: var(--teal-darker);
  top: 0;
}
@media screen and (max-width: 800px) {
  .is-header-scrolled .header__container {
    flex-direction: row;
    align-items: center;
  }
  .is-header-scrolled .header__container .header__logo {
    margin-bottom: 0;
    margin-right: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .is-header-scrolled {
    padding: 2rem 3rem;
  }
}

.pagination {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12rem;
  gap: 2rem;
  font-family: var(--font-medium);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.pagination-arrow {
  width: 20px;
  fill: var(--black);
}
.pagination-arrow::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 122.5 97.9" viewBox="0 0 122.5 97.9"><path d="m61.2 1.9-59.4 95h118.9l-59.5-95z" style="fill:none;stroke:%23ebb300;stroke-width:2" vector-effect="non-scaling-stroke"/></svg>');
  display: block;
  width: 32px;
  transform: rotate(90deg);
}

.pagination-arrow--prev::after {
  transform: scaleX(-1) rotate(90deg);
}

.current-page {
  font-family: var(--font-bold);
}

.pagination-link--disabled {
  pointer-events: none;
  opacity: 0.3;
}

form.forminator-ui {
  margin: 0 0 8rem !important;
}
form.forminator-ui input,
form.forminator-ui textarea {
  display: block;
  margin-bottom: 1.5rem !important;
  outline: thin;
  padding: 1.5rem 2.5rem !important;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
  background-color: var(--white) !important;
  color: var(--teal-darker) !important;
  font-family: var(--font-body) !important;
  font-size: var(--text-size-sm) !important;
  box-shadow: 5px 5px 15px #00000012 !important;
  -webkit-appearance: none;
  border-radius: 0;
}
form.forminator-ui textarea {
  resize: none;
}
form.forminator-ui label {
  color: var(--teal-darkest) !important;
  font-size: var(--text-size-sm) !important;
  font-family: var(--font-body) !important;
  font-weight: normal !important;
  margin-bottom: 1rem !important;
}
form.forminator-ui input[type=checkbox] {
  display: inline;
  width: auto;
}
form.forminator-ui .forminator-required {
  color: var(--gold) !important;
}

.asterisk {
  color: var(--gold) !important;
}

.form-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.5rem;
}
@media screen and (max-width: 800px) {
  .form-2-col {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.search-form__group {
  position: relative;
}

.search-form__term {
  padding: 2rem 8rem 2rem 2rem;
  display: block;
  margin-bottom: 1.5rem;
  outline: thin;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
  background-color: var(--teal-darker);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-size-sm);
  letter-spacing: 0.2px;
  -webkit-appearance: none;
  border-radius: 0;
}
.search-form__term::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--white);
}
.search-form__term:-ms-input-placeholder {
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--white);
}
.search-form__term::placeholder {
  transition: opacity 0.3s ease;
  color: var(--white);
}
.search-form__term:focus::-moz-placeholder {
  opacity: 0;
}
.search-form__term:focus:-ms-input-placeholder {
  opacity: 0;
}
.search-form__term:focus::placeholder {
  opacity: 0;
}

.search-form__submit {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.search-form__submit svg {
  width: 30px;
}
@media screen and (max-width: 1100px) {
  .search-form__submit svg {
    width: 25px;
  }
}

.triangle-after-text {
  position: relative;
}
.triangle-after-text::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="371.638" height="461.486"><path fill="none" stroke="%23ebb300" stroke-miterlimit="10" stroke-width="2" d="M.846 132.606 82.929 1.883l286.9 458.6H217.001" vector-effect="non-scaling-stroke"/></svg>');
  position: absolute;
  top: -20rem;
  right: -32rem;
}

.triangle-after-text--small::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 371.6 461.5" viewBox="0 0 371.6 461.5"><path d="M.8 132.6 82.9 1.9l286.9 458.6H217" style="fill:none;stroke:%23ebb300;stroke-width:2;stroke-miterlimit:10" vector-effect="non-scaling-stroke"/></svg>');
  top: auto;
  bottom: 0;
  right: -14rem;
  width: 200px;
}
@media screen and (max-width: 680px) {
  .triangle-after-text--small::after {
    display: none;
  }
}

.section-line-decoration {
  position: relative;
}
.section-line-decoration::before {
  content: "";
  width: 2px;
  height: 365px;
  background-color: var(--gold);
  position: absolute;
  left: 0;
  bottom: 13rem;
  z-index: 20;
}
@media screen and (max-width: 1300px) {
  .section-line-decoration::before {
    transform: unset;
    top: -8rem;
    left: 3rem;
    bottom: auto;
  }
}
@media screen and (max-width: 500px) {
  .section-line-decoration::before {
    top: auto;
    bottom: -30rem;
  }
}

.section-line-decoration--home-section-3::before {
  bottom: -37.5rem;
  height: 540px;
}
@media screen and (max-width: 1300px) {
  .section-line-decoration--home-section-3::before {
    bottom: -36.5rem;
    top: auto;
    left: -1rem;
  }
}
@media screen and (max-width: 1100px) {
  .section-line-decoration--home-section-3::before {
    display: none;
  }
}

.angled-divider {
  position: relative;
  margin-bottom: -27rem;
}
@media screen and (max-width: 680px) {
  .angled-divider {
    margin-bottom: 0;
  }
}
.angled-divider::after {
  content: url("../images/angle-ivory-small-to-tall.svg");
  position: absolute;
  bottom: 7.5rem;
  left: 0;
  right: 0;
  z-index: 10;
  width: 106%;
  height: 200px;
}
@media screen and (max-width: 1300px) {
  .angled-divider::after {
    bottom: 7.3rem;
  }
}
@media screen and (max-width: 1100px) {
  .angled-divider::after {
    bottom: 2.3rem;
  }
}
@media screen and (max-width: 680px) {
  .angled-divider::after {
    bottom: 0;
    height: 1px;
  }
}

.angled-divider--tall-to-small::after {
  content: url("../images/angle-ivory-tall-to-small.svg");
}

/* Call to action block, not to be confused with cta_block from the MUPT */
.section-4 {
  min-height: 400px;
  background-color: var(--teal);
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/bg-handshake.jpg") no-repeat center;
  background-size: cover;
  padding: 19rem 4rem 36rem;
}
.section-4::after {
  content: url("../images/angle-ivory-tall-to-small.svg");
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  width: 110%;
}
@media screen and (max-width: 1100px) {
  .section-4::after {
    bottom: -0.7rem;
  }
}
@media screen and (max-width: 500px) {
  .section-4 {
    padding: 10rem 4rem 19rem;
  }
}

.section-4__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-4__title {
  margin: 0 0 8rem;
}
@media screen and (max-width: 800px) {
  .section-4__title br {
    display: none;
  }
}

.section-4__text {
  margin: 0 0 8rem;
}
.section-4__text p {
  line-height: 1.3;
  margin: 0;
}

.stat-cards {
  display: flex;
  align-items: stretch;
  margin-top: 3rem;
  position: relative;
  z-index: 40;
}
@media screen and (max-width: 1300px) {
  .stat-cards {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
  }
}

.stat-card {
  margin: 0 4rem 0 0;
  box-shadow: 5px 5px 15px #00000012;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 8rem;
  background: var(--white);
  width: 310px;
  max-width: 80%;
}
@media screen and (max-width: 1300px) {
  .stat-card {
    margin: 2rem;
  }
}

.stat-card__top-text {
  text-transform: uppercase;
  font-family: var(--font-bold);
  letter-spacing: 2.4px;
}

.stat-card__stat {
  padding: 2rem 0;
}
.stat-card__stat::before, .stat-card__stat::after {
  content: "";
  display: block;
  height: 2px;
  width: 138px;
  background-color: var(--gold);
}
.stat-card__stat::before {
  margin: 0 auto 3rem;
}
.stat-card__stat::after {
  margin: 2rem auto 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6rem;
  row-gap: 2rem;
  max-width: 1300px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 960px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .steps {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
}

.step {
  width: 100%;
}
.step:nth-child(3) {
  grid-column: -4;
}
@media screen and (max-width: 960px) {
  .step:nth-child(3) {
    grid-column: initial;
  }
}
@media screen and (max-width: 960px) {
  .step:last-child {
    grid-column: span 2;
  }
}
@media screen and (max-width: 960px) and (max-width: 680px) {
  .step:last-child {
    grid-column: span 1;
  }
}

.step__counter {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, var(--base), 3rem);
  width: 120px;
  height: 95px;
  position: relative;
  margin: 0 0 2rem;
}
.step__counter::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 122.5 97.9" viewBox="0 0 122.5 97.9"><path d="m61.2 1.9-59.4 95h118.9l-59.5-95z" style="fill:none;stroke:%23ebb300;stroke-width:2" vector-effect="non-scaling-stroke"/></svg>');
  position: absolute;
  top: -1.5rem;
  right: 0;
  bottom: 0;
  left: 0;
}

.step__title {
  max-width: 280px;
  margin: 0 0 2rem;
}

.step__text {
  max-width: 350px;
}
@media screen and (max-width: 960px) {
  .step__text {
    max-width: 100%;
  }
}

.spacer {
  display: block;
  clear: both;
}

.modal {
  display: block;
  /** <-- Required to make the animation work */
  max-width: 1400px;
  width: 90%;
  opacity: 0;
  transform: translateY(15%);
  transition: transform 0.4s ease, opacity 0.2s ease;
  border: none;
  visibility: hidden;
  padding: 4rem;
  background: var(--ivory) url("../images/bg-pattern-light-b.webp") no-repeat top center;
  overflow: clip;
  max-width: 800px;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.modal[open] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
}
.close-modal svg {
  width: 20px;
  height: 20px;
}

.modal form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.modal form input {
  width: 100%;
  padding: 1.5rem;
  border: none;
  background-color: var(--white);
  color: var(--teal-darker);
  font-family: var(--font-body);
  box-shadow: 5px 5px 15px #00000012;
}
.modal form ul {
  margin: 0;
  padding: 0;
}
.modal form label {
  display: block;
  margin-block-end: 0.5rem;
}
.modal form label span {
  font-size: var(--text-size-xs);
}
.modal form .hs_email {
  grid-column: span 4;
}
.modal form .hs_firstname,
.modal form .hs_lastname {
  grid-column: span 2;
}
.modal form .hs_error_rollup {
  grid-column: span 4;
}
.modal form .hs-error-msg,
.modal form .hs_error_rollup {
  font-size: var(--text-size-xxs);
  color: var(--red);
}

.team-members {
  width: 90vw;
  max-width: 1800px;
  margin-left: -8vw;
}
@media screen and (max-width: 1500px) {
  .team-members {
    margin-left: -12vw;
  }
}
@media screen and (max-width: 1400px) {
  .team-members {
    margin-left: -2vw;
    width: 95vw;
  }
}
@media screen and (max-width: 960px) {
  .team-members {
    width: 100%;
    margin-left: 0;
  }
}
.team-members .team-member__role {
  color: var(--teal);
  font-size: var(--text-size-xs);
}

.card-grid--team-members {
  gap: 2rem;
}
@media screen and (max-width: 960px) {
  .card-grid--team-members {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.team-members .card-wrapper {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 680px) {
  .team-members .card-wrapper {
    flex-direction: column;
  }
}
.team-members .card__image {
  flex: 45%;
  aspect-ratio: 2/3;
  overflow: visible;
}
@media screen and (max-width: 680px) {
  .team-members .card__image {
    flex: auto;
  }
  .team-members .card__image::before, .team-members .card__image::after {
    display: none;
  }
}
.team-members .card__image::after {
  content: url("../images/team-bottom-tri.svg");
  bottom: -18.7%;
  left: 0.1rem;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .team-members .card__image::after {
    transform: scaleY(-1);
    bottom: -0.1rem;
    z-index: 0;
  }
}
.team-members .card__image::before {
  content: url("../images/deco-tri-yellow-outline.svg");
  width: 20%;
  position: absolute;
  bottom: -3.5rem;
  right: 2rem;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .team-members .card__image::before {
    bottom: -3rem;
    width: 15%;
  }
}
.team-members .card__body {
  padding: 4rem;
  min-height: 730px;
}
@media screen and (max-width: 960px) {
  .team-members .card__body {
    min-height: auto;
  }
}
@media screen and (max-width: 500px) {
  .team-members .card__body {
    padding: 3rem;
  }
}
.team-members .card__excerpt {
  font-size: var(--text-size-xxs);
}
@media screen and (max-width: 1100px) {
  .team-members .card__excerpt {
    font-size: var(--text-size-xs);
  }
}
.team-members .card__excerpt p,
.team-members .card__excerpt a,
.team-members .card__excerpt ul,
.team-members .card__excerpt ol {
  font-size: inherit;
}
.team-members .card__title {
  font-size: clamp(1.5rem, var(--base), 2.5rem);
  margin: 0 0 3rem;
}
.team-members .card {
  height: 100%;
  flex: 55%;
}
@media screen and (max-width: 680px) {
  .team-members .card {
    height: auto;
    flex: auto;
  }
}
.team-members .card::after {
  display: none;
}

.hidden {
  display: none;
}

.hidden--visually {
  clip-path: inset(100%);
  clip: rect(1px 1px 1px 1px);
  /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  /* added line */
  width: 1px;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.aligncenter {
  margin: 0 auto;
  text-align: center;
}

/* Prevent triangle images from scaling to infinity on large displays */
@media (min-width: 1921px) {
  .landing__triangle {
    width: 1000px;
    height: 1600px;
  }
  .landing__triangle::after {
    width: 115px;
    top: 666px;
    right: 442px;
  }
  .landing__triangle .landing-mask {
    height: 870px;
  }

  .landing--primary .landing__triangle {
    width: 780px;
    height: 1250px;
  }
  .landing--primary .landing__triangle::after {
    width: 190px;
    top: 410px;
    right: 295px;
  }
  .landing--primary .landing__triangle .landing-mask {
    height: 645px;
  }

  .section-3__triangle-image {
    width: 1185px;
  }
  .section-3__triangle-image::after {
    bottom: 215px;
    right: 350px;
  }

  .footer-triangle__wrapper {
    max-width: 1100px;
  }

  .footer--primary .footer__header {
    max-width: none;
  }

  .footer__columns {
    max-width: none;
  }
}
/* Constrain layout to 2500px for resolutions greater to infinity (I'm looking at you XDR iMacs with 6016×3384 resolution...) */
@media (min-width: 2500px) {
  html {
    background: #F1EFED;
  }

  body {
    width: 2500px;
    margin: 0 auto;
  }
}
