/**
* 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 {
  --welcome-time: 6.5s;
  --welcome-transition-time: 2.5s;
  --total-animate-time: calc(var(--welcome-time) + var(--welcome-transition-time) - 0.01s);
  --white: #fff;
  --black: #222;
  --red: #f94e5f;
  --blue-lighter: #20384D;
  --blue: #08223A;
  --blue-dark: #071E33;
  --cyan: #43ead1;
  --cyan-dark: #20D3B5;
  --cyan-darker: #28A590;
  --cyan-darkest: #186465;
  --red: #FF4060;
  --gold: #FFAC30;
  --white: #FFFFFF;
  --fake-frost: #152F47;
  --cyan-rgb: (67, 234, 209);
  --text-size-xxs: 0.65rem;
  --text-size-xs: 0.8rem;
  --text-size-sm: 1rem;
  --text-size-md: 1.08rem;
  --text-size-lg: 1.5rem;
  --text-size-xl: 2rem;
  --text-size-xxl: 2.5rem;
  --text-size-xxxl: 2.97rem;
  --font-light:
    "Red Hat Display - Light", "Lato", "Lucida Grande", "Tahoma", sans-serif;
  --font-heavy: "Red Hat Display - Bold", "Lato", "Lucida Grande", "Tahoma", sans-serif;
  --color-body-text: #333;
  --box-shadow: 0 0 40px rgb(0 0 0 / 10%);
  --max-width: 1600px;
  --max-text-width: 1100px;
  --max-text-width-sm: 850px;
  --border-radius-large: 50px;
  --border-radius-md: 14px;
  --border-radius-small: 10px;
  --character-spacing-xxl: 1.3px;
  --character-spacing-xl: 1.96px;
  --character-spacing-l: 0.36px;
  --character-spacing-m: 0.5px;
  --character-spacing-s: 0.7px;
}

/* 
==========
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: "Mont";
  src: local("Mont Regular"), local("Mont-Regular"), url("../fonts/Mont-Regular.woff2") format("woff2"), url("../fonts/Mont-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont Bold";
  src: local("Mont Bold"), local("Mont-Bold"), url("../fonts/Mont-Bold.woff2") format("woff2"), url("../fonts/Mont-Bold.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Red Hat Display - Light";
  src: url("../fonts/RedHatDisplay/RedHatDisplay-Light.woff2") format("woff2"), url("../fonts/RedHatDisplay/RedHatDisplay-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Red Hat Display - Bold";
  src: local("Red Hat Display Bold"), local("RedHatDisplay-Bold"), url("../fonts/RedHatDisplay/RedHatDisplay-Bold.woff2") format("woff2"), url("../fonts/RedHatDisplay/RedHatDisplay-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.typography {
  font-family: var(--font-light);
  font-size: 100%;
  font-weight: normal;
  color: var(--color-body-text);
}

h1, .home-opening-animation__text,
h2,
h3,
h4,
h5,
h6,
strong {
  font-family: var(--font-heavy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.05rem;
}

h1, .home-opening-animation__text {
  font-size: var(--text-size-xxxl);
  margin: 0;
  text-align: center;
}

h2 {
  font-size: var(--text-size-xl);
}

h3 {
  font-size: var(--text-size-xl);
}

h4 {
  font-size: var(--text-size-lg);
}

h5 {
  font-size: var(--text-size-md);
}

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

p {
  font-weight: 200;
  line-height: 1.2;
  font-size: var(--text-size-xs);
  letter-spacing: var(--character-spacing-s);
}

* {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

html,
body {
  font-size: 206.3%;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-width: 300px;
  min-height: 100vh;
}
@media screen and (max-width: 1100px) {
  html,
  body {
    font-size: 170%;
  }
}
@media screen and (max-width: 680px) {
  html,
  body {
    font-size: 140%;
  }
}

* + h2,
* + h3,
* + h4,
* + h5 {
  margin: 0;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--red);
}
a:hover, a:visited {
  cursor: pointer;
}

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

body::-webkit-scrollbar {
  display: none;
}

.home {
  z-index: 1;
}

.home-landing__container {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

#front-page {
  top: 0;
  position: absolute;
  display: block;
  width: 100%;
  z-index: 2000;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: all;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}
#front-page .bg-radials {
  z-index: -1;
}
#front-page.--animate-home-parent {
  animation: unsetMaxHeight 0s linear var(--total-animate-time);
  animation-fill-mode: forwards;
}
#front-page.--animate-home-parent-done {
  animation: unsetMaxHeight 0s linear 0s;
  animation-fill-mode: forwards;
}
#front-page::-webkit-scrollbar {
  display: none;
}
#front-page > .front-page__content {
  background: var(--blue);
  -webkit-clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
          clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  max-height: 100vh;
}
#front-page > .front-page__content.--animate-home-main {
  animation: diamondOpening var(--welcome-transition-time) linear var(--welcome-time), unsetMaxHeight 0s linear var(--total-animate-time);
  animation-fill-mode: forwards;
}
#front-page > .front-page__content.--animate-home-main-done {
  animation: diamondOpening 0s linear 0s, unsetMaxHeight 0s linear 0s;
  animation-fill-mode: forwards;
}
#front-page > .front-page__content::-webkit-scrollbar {
  display: none;
}

.home-landing {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  margin-bottom: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  padding: 0 2.5rem;
  z-index: 12;
}
.home-landing__text {
  color: white;
  margin-top: 34vh;
  margin-bottom: 80px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.home-landing__text > strong {
  color: var(--cyan);
}
.home-landing a {
  font-size: 1.07rem;
  pointer-events: auto;
  letter-spacing: var(--character-spacing-s);
}
@media screen and (max-width: 1400px) {
  .home-landing {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .home-landing {
    height: 80vh;
  }
  .home-landing__text {
    font-size: var(--text-size-xxl);
  }
  .home-landing a {
    font-size: 25px;
  }
}
@media screen and (max-width: 800px) {
  .home-landing {
    height: 100vh;
  }
  .home-landing__text {
    margin-top: 13rem;
    font-size: var(--text-size-xl);
  }
}

#clip-path-rounder {
  animation: animateFilterOpacity 1s ease 2s;
}

.bottom-anchor {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--text-size-lg);
  gap: 36px;
  transition: gap 0.4s;
}
.bottom-anchor::after {
  content: url("../images/home/icon-arrow-red-gold.svg");
}
@media screen and (max-width: 800px) {
  .bottom-anchor::after {
    transform: scale(0.6);
  }
}
.bottom-anchor:hover {
  gap: 60px;
}

@keyframes diamondOpening {
  0% {
    -webkit-clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
            clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }
  33% {
    -webkit-clip-path: polygon(50% calc(50% - 500px), calc(50% + 500px) 50%, 50% calc(50% + 500px), calc(50% - 500px) 50%);
            clip-path: polygon(50% calc(50% - 500px), calc(50% + 500px) 50%, 50% calc(50% + 500px), calc(50% - 500px) 50%);
    /* LEFT */
  }
  66% {
    -webkit-clip-path: polygon(50% calc(50% - 1000px), calc(50% + 1000px) 50%, 50% calc(50% + 1000px), calc(50% - 1000px) 50%);
            clip-path: polygon(50% calc(50% - 1000px), calc(50% + 1000px) 50%, 50% calc(50% + 1000px), calc(50% - 1000px) 50%);
    /* LEFT */
  }
  90% {
    -webkit-clip-path: polygon(50% calc(50% - 1500px), calc(50% + 1500px) 50%, 50% calc(50% + 1500px), calc(50% - 1500px) 50%);
            clip-path: polygon(50% calc(50% - 1500px), calc(50% + 1500px) 50%, 50% calc(50% + 1500px), calc(50% - 1500px) 50%);
    /* LEFT */
  }
  100% {
    -webkit-clip-path: polygon(50% -100%, 200% 50%, 50% 200%, -100% 50%);
            clip-path: polygon(50% -100%, 200% 50%, 50% 200%, -100% 50%);
  }
}
@keyframes unsetAnimations {
  from {
    filter: url("#clip-path-rounder");
  }
  to {
    filter: unset;
    -webkit-user-select: all;
       -moz-user-select: all;
            user-select: all;
  }
}
@keyframes unsetMaxHeight {
  0% {
    max-height: 100vh;
  }
  100% {
    height: -moz-fit-content;
    height: fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
@keyframes animateFilterOpacity {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}

.page-404 {
  padding-bottom: 4rem;
}
.page-404 p {
  color: var(--white);
}

.page-container {
  background: var(--blue);
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  overflow: hidden;
}
.page-container > .blobs-bg {
  z-index: 0;
  overflow: hidden;
}
.page-container > .bg-radials {
  overflow: hidden;
}
.page-container .bg-blue-diamonds {
  z-index: 1;
  overflow: hidden;
}
.page-container .bg-page-diamonds {
  z-index: 2;
  overflow: hidden;
}

.page-main {
  position: absolute;
  top: 0;
  left: 0;
  height: -moz-fit-content;
  height: fit-content;
  width: 100vw;
}

.container {
  max-width: var(--max-width);
  padding: 2rem 2rem;
  min-height: 200px;
}
.container.--no-vertical-padding {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 1100px) {
  .container {
    padding: 3rem;
  }
}
@media screen and (max-width: 960px) {
  .container {
    padding: 1.5rem;
  }
}

.container--center {
  margin: 0 auto;
}

.flexible-content {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  min-height: 400px;
  margin: 0 auto;
}
.flexible-content--sidebar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
}
.flexible-content--sidebar .flexible-content__container {
  grid-column: span 2;
}
@media screen and (max-width: 960px) {
  .flexible-content--sidebar .flexible-content__container {
    grid-column: initial;
  }
}
.flexible-content--sidebar .post-list {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 680px) {
  .flexible-content--sidebar .post-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 960px) {
  .flexible-content--sidebar {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 680px) {
  .flexible-content {
    padding: 4rem;
  }
}
@media screen and (max-width: 360px) {
  .flexible-content {
    padding: 4rem 2rem;
  }
}

.gradient-border {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.gradient-corner {
  position: absolute;
}
.gradient-corner.--bottom-left {
  bottom: 0;
  left: 0;
}
.gradient-corner.--bottom-right {
  bottom: 0;
  right: 0;
}
.gradient-corner.--top-left {
  top: 0;
  left: 0;
}
.gradient-corner.--top-right {
  top: 0;
  right: 0;
}
.gradient-line {
  position: absolute;
}
.gradient-line.--top {
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 4px;
  background: transparent linear-gradient(45deg, var(--gold) 0%, #FF6633 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(45deg, #FFAC30 0%, #FF6633 100%) 0% 0% no-repeat padding-box;
}
.gradient-line.--bottom {
  background: transparent linear-gradient(90deg, #FF6633 0%, #FF3366 100%) 0% 0% no-repeat padding-box;
  bottom: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 4px;
}
.gradient-line.--left {
  background: transparent linear-gradient(0deg, #FF6633 0%, var(--gold) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(0deg, #FF6633 0%, #FFAC30 100%) 0% 0% no-repeat padding-box;
  bottom: 15px;
  left: 0;
  width: 4px;
  height: calc(100% - 30px);
}
.gradient-line.--right {
  background: transparent linear-gradient(0deg, #FF3366 0%, #FF6633 100%) 0% 0% no-repeat padding-box;
  bottom: 15px;
  right: 0;
  width: 4px;
  height: calc(100% - 30px);
}

.landing {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media screen and (max-width: 800px) {
  .landing__container {
    padding: 0 2rem;
  }
}

.page-landing-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10vh;
}

@media screen and (max-width: 1400px) {
  section.page-landing {
    padding: 14rem 2rem 4rem 2rem;
  }
  section.page-landing h1, section.page-landing .home-opening-animation__text {
    font-size: var(--text-size-xl);
  }
}
.card {
  background-color: var(--white);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  width: 100%;
}
.card--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card__image {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
  background-color: #ececec;
}
.card__image img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
  width: 100%;
}

.card__body {
  padding: 2rem;
}

.card__title {
  margin: 0 0 1rem;
}
.card__title a {
  color: var(--black);
}

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

.card__excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  margin: 0 0 1rem;
}

.card__button {
  display: inline-block;
}

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

.footer {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 8rem 0 4rem;
  position: relative;
  z-index: 1;
}
.footer-logo {
  margin-bottom: 2.3rem;
}
.footer-content {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.footer-content > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
  margin-bottom: 6rem;
}
.footer-middle * {
  margin: 0;
}
.footer-middle a {
  width: -moz-fit-content;
  width: fit-content;
}
.footer-img-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 2rem;
}
.footer-img-links > a {
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.3rem;
  position: relative;
}
.footer-img-links > a:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: -20px;
  content: "";
  height: 100%;
  width: 2px;
  background-color: var(--cyan);
}
.footer-img-links > a img {
  max-height: 50px;
}
.footer-copyright-privacy {
  display: flex;
  align-items: center;
  color: white;
  justify-content: center;
  gap: 1rem;
}
.footer-copyright-privacy * {
  margin: 0;
  font-size: var(--text-size-xxs);
}
.footer-copyright-privacy a {
  color: var(--cyan);
}
@media screen and (max-width: 800px) {
  .footer-logo {
    width: 193px;
    height: auto;
  }
  .footer-img-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-img-links > a::after {
    display: none;
  }
  .footer-img-links a img {
    max-height: 35px;
  }
  .footer-copyright-privacy {
    flex-direction: column;
  }
}

@media screen and (max-width: 960px) {
  .sidebar__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 680px) {
  .sidebar__content {
    grid-template-columns: 1fr;
  }
}

.sidebar-item {
  background: var(--white);
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.1));
  border-radius: 2rem;
  overflow: hidden;
  margin: 0 0 2rem;
}

.sidebar__image {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
}
.sidebar__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -o-object-position: center 40%;
     object-position: center 40%;
}

.sidebar__title {
  margin: 0 0 1rem;
  color: var(--black);
}

.sidebar__body {
  padding: 2rem;
}

.sidebar__text {
  margin: 0 0 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
}
.sidebar__text--no-limit {
  overflow: initial;
  text-overflow: initial;
  display: initial;
}

.sidebar__button {
  display: block;
  margin: 0 0 1rem;
}

.desktop-navigation .navigation {
  list-style: none;
  display: flex;
}
.desktop-navigation .menu-item {
  margin-left: 2rem;
  position: relative;
  display: flex;
  cursor: pointer;
  padding: 1rem 0;
}
.desktop-navigation .menu-item a {
  color: var(--white);
}
.desktop-navigation .menu-item-has-children {
  padding: 1rem 1.5rem 1.5rem 0;
}
.desktop-navigation .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scaleY(1) translate3d(0, 0, 0);
}
.desktop-navigation .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 3.5rem;
  left: -75%;
  padding: 1rem;
  box-shadow: var(--box-shadow);
  border-radius: 1rem;
  pointer-events: none;
  width: 250%;
  text-align: center;
  transition: all 0.2s ease;
  background: var(--white);
  transform-origin: center top;
  transform: scaleY(0.9) translate3d(-5%, 0, 0);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.desktop-navigation .sub-menu .menu-item {
  margin-left: 0;
}
.desktop-navigation .sub-menu .menu-item::after {
  display: none;
}
@media screen and (max-width: 1300px) {
  .desktop-navigation {
    display: none;
  }
}

.menu-item-has-children a:not(.sub-menu a) {
  position: relative;
}
.menu-item-has-children a:not(.sub-menu a)::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26.37 16.1"><g data-name="Layer 2"><path style="fill:%23666" d="M23.23 0 12.98 9.77 3.19.12 0 3.36 12.93 16.1 26.37 3.29 23.23 0z" data-name="Layer 1"/></g></svg>');
  width: 15px;
  transition: transform 0.3s ease;
  position: absolute;
  right: -1.5rem;
  pointer-events: none;
}

.navigation__container {
  height: 100vh;
  width: 100vw;
  opacity: 0;
  background: var(--blue);
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navigation__container > .blob {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .navigation__container > .blob {
    width: 75%;
  }
}
.navigation__container > .sticky-blob {
  position: absolute;
}

.navigation {
  list-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 30px;
  display: flex;
  margin: 0;
  opacity: 1;
  z-index: 1;
}
.navigation .menu-item {
  flex-direction: column;
  text-align: center;
  font-family: var(--font-heavy);
  font-size: var(--text-size-xl);
  position: relative;
  opacity: 0;
}
.navigation .menu-item a {
  color: var(--white);
  transition: 0.4s;
}
.navigation .menu-item a:hover {
  color: var(--cyan);
}

.mobile-navigation {
  display: none;
}
.mobile-navigation .menu-item-has-children a:not(.sub-menu a)::after {
  right: -3rem;
}
.mobile-navigation .sub-menu {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  width: 100%;
  transition: all 0.4s ease;
  list-style: none;
  padding-left: 0;
}
.mobile-navigation .sub-menu .menu-item a {
  color: #555;
  margin-left: 1rem;
}
.mobile-navigation .is-menu-open {
  opacity: 1;
  transform: translateX(0%);
}
.mobile-navigation .is-menu-open .menu-item:not(.sub-menu .menu-item) {
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .mobile-navigation .is-menu-open .--frosted-left {
    left: 10px;
  }
}
@media screen and (max-width: 1300px) {
  .mobile-navigation {
    display: block;
  }
}

.is-submenu-open .sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
  padding-top: 1rem;
  transform: translateY(1.1rem);
}
.is-submenu-open a::after {
  transform: rotate(180deg);
}

.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  gap: 12px;
  transition: 0.2s;
  width: 50px;
  box-sizing: initial;
}
.hamburger > .hamburger__frost {
  display: none;
}
@media screen and (max-width: 800px) {
  .hamburger {
    width: 35px;
    gap: 8px;
  }
}
.hamburger.--slide-out {
  position: fixed;
  animation: hamburgerSlideOut 0.2s ease-in-out 0s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 800px) {
  .hamburger.--slide-out {
    animation: hamburgerSlideOutMobile 0.2s ease-in-out 0s;
    animation-fill-mode: forwards;
  }
}
.hamburger.--slide-in {
  animation: hamburgerSlideIn 0.2s ease 0s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 800px) {
  .hamburger.--slide-in {
    animation: hamburgerSlideInMobile 0.2s ease 0s;
    animation-fill-mode: forwards;
  }
}
.hamburger.--frosted-left {
  position: fixed;
  right: -70px;
  top: 80px;
  box-sizing: initial;
  padding: 40px 35px;
}
.hamburger.--frosted-left > .hamburger__frost {
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 10px;
  transition: opacity 0.4s;
  background: rgba(255, 255, 255, 0.025);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (max-width: 800px) {
  .hamburger.--frosted-left {
    padding: 30px 25px;
  }
}
.hamburger:hover .hamburger__line--shorter {
  width: 100%;
}

.hamburger__line {
  width: 100%;
  height: 3px;
  background-color: var(--cyan);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hamburger__line--shorter {
  width: 70%;
  transition: 0.4s ease-in-out;
}

.is-hamburger-toggled {
  gap: 1px;
}
.is-hamburger-toggled.--frosted-left {
  background-color: transparent;
}
.is-hamburger-toggled.--frosted-left .hamburger__frost {
  opacity: 0;
}
.is-hamburger-toggled .hamburger__line:nth-of-type(1) {
  transform: rotate(-45deg) translate(-1px, -1px);
  width: 100%;
}
.is-hamburger-toggled .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.is-hamburger-toggled .hamburger__line:nth-of-type(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  width: 100%;
}
@media screen and (max-width: 800px) {
  .is-hamburger-toggled .hamburger__line:nth-of-type(3) {
    transform: rotate(45deg) translate(-6px, -5px);
  }
}

@keyframes navLinkFade {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes hamburgerSlideOut {
  0% {
    position: fixed;
    opacity: 1;
    right: 2vw;
    padding: 40px;
  }
  40% {
    position: fixed;
    opacity: 0;
    right: 0px;
    padding: 20px;
  }
  41% {
    width: 0px;
    position: initial;
    opacity: 0;
    padding: 10px;
    -webkit-clip-path: none;
            clip-path: none;
  }
  100% {
    width: 50px;
    position: initial;
    opacity: 1;
    -webkit-clip-path: none;
            clip-path: none;
    padding: 10px;
  }
}
@keyframes hamburgerSlideOutMobile {
  0% {
    opacity: 1;
    top: 50px;
    right: 4vw;
    padding: 30px;
  }
  40% {
    opacity: 0;
    top: 50px;
    right: 0px;
    padding: 20px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background: transparent;
  }
  41% {
    position: initial;
    opacity: 0;
    padding: 10px;
    -webkit-clip-path: none;
            clip-path: none;
  }
  100% {
    position: initial;
    opacity: 1;
    -webkit-clip-path: none;
            clip-path: none;
    padding: 10px;
  }
}
@keyframes hamburgerSlideIn {
  0% {
    right: -70px;
  }
  to {
    right: 2vw;
  }
}
@keyframes hamburgerSlideInMobile {
  0% {
    right: -70px;
  }
  to {
    top: 50px;
    right: 4vw;
  }
}
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  clear: both;
  position: relative;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0;
  transition: gap 0.2s;
  font-family: var(--font-light);
  font-weight: 400;
  font-size: var(--text-size-sm);
}
.button::after {
  content: url("../images/home/icon-arrow-white.png");
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: -10px;
  opacity: 0;
  width: 0;
  transition: 0.2s;
}
.button:hover {
  gap: 0.4rem;
}
.button:hover::after {
  opacity: 1;
}
.dropdown-group {
  margin: 0 0 2rem;
  clear: both;
}

.dropdown {
  width: 100%;
  margin: 0 0 1rem;
  position: relative;
}

.dropdown-label__wrapper {
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.2));
}

.dropdown__label {
  padding: 1rem 2rem;
  box-shadow: var(--box-shadow);
  border-radius: 1rem;
  font-family: var(--font-body);
  font-size: var(--text-size-md);
  letter-spacing: initial;
  text-transform: initial;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: content-box;
  background-color: var(--white);
  margin: 0;
}
.dropdown__label::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26.37 16.1"><g data-name="Layer 2"><path style="fill:%23333" d="M23.23 0 12.98 9.77 3.19.12 0 3.36 12.93 16.1 26.37 3.29 23.23 0z" data-name="Layer 1"/></g></svg>');
  width: 25px;
  transition: transform 0.3s ease;
}
.dropdown__label:hover::after {
  transform: translate3d(0, 20%, 0) scaleY(1);
}

.dropdown__box {
  transition: max-height 0.3s ease-out;
  overflow: hidden;
  max-height: 0;
}

.dropdown__content {
  padding: 1rem 2rem;
}
.dropdown__content p:last-child {
  margin-bottom: 0;
}

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

.quote {
  position: relative;
  box-shadow: var(--box-shadow);
  border-radius: 1rem;
  padding: 4rem;
  margin: 0 0 2rem;
  clear: both;
}

.quote__icon {
  position: absolute;
  width: 100px;
  top: 1.5rem;
  left: 2rem;
  opacity: 0.2;
}
.quote__icon svg {
  fill: var(--black);
}

.text-block {
  max-width: var(--max-text-width);
  clear: both;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.text-block * {
  color: white;
  margin: 0;
}
.text-block a {
  color: var(--cyan);
}
.text-block ul,
.text-block ol {
  list-style: none;
  padding: 0;
  padding-left: 3.5rem;
  margin: 0 0 2rem;
}
.text-block ul > li,
.text-block ol > li {
  position: relative;
  margin: 0;
}
.text-block ul > li + li,
.text-block ol > li + li {
  margin-top: 1rem;
}
.text-block ul ul,
.text-block ul ol,
.text-block ol ul,
.text-block ol ol {
  margin-top: 1rem;
}
.text-block ul ul > li::before,
.text-block ol ul > li::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.87 17.8"><g data-name="Layer 2"><path style="fill:%23333" d="m0 2.12 6.59 6.91-6.51 6.61 2.19 2.16 8.6-8.73L2.22 0 0 2.12z" data-name="Layer 1"/></g></svg>');
  display: block;
  position: absolute;
  top: 0.4rem;
  left: -1.75rem;
  width: 5px;
}
.text-block ul > li::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.87 17.8"><g data-name="Layer 2"><path style="fill:%23333" d="m0 2.12 6.59 6.91-6.51 6.61 2.19 2.16 8.6-8.73L2.22 0 0 2.12z" data-name="Layer 1"/></g></svg>');
  display: block;
  position: absolute;
  top: 0.1rem;
  left: -1.75rem;
  width: 10px;
}
.text-block ol {
  counter-reset: item;
}
.text-block ol > li {
  counter-increment: item;
}
.text-block ol > li::before {
  content: counter(item, decimal-leading-zero);
  display: block;
  position: absolute;
  left: -3rem;
  top: -0.4rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-right: 0.5rem;
  font-family: var(--font-heavy);
  font-weight: 100;
  font-size: calc(var(--text-size-lg) + 0.225rem);
  color: var(--blue);
}
.text-block strong {
  color: var(--cyan);
}
.text-block h2 {
  position: relative;
  font-size: var(--text-size-xxxl);
}
.text-block h3 {
  font-size: var(--text-size-xxl);
}
.text-block h4 {
  font-size: var(--text-size-xl);
}
.text-block p {
  display: inline-block;
}
.text-block .alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
}
.text-block .alignright {
  float: right;
  margin: 0 0 1rem 1rem;
}
.text-block .aligncenter {
  margin: 3rem auto;
}
@media screen and (max-width: 800px) {
  .text-block h2 {
    font-size: var(--text-size-xxl);
  }
}

.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-members-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-member {
  position: relative;
  padding: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}
.team-member__body {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.team-member__body > * {
  margin: 0;
}
.team-member__headings {
  max-width: 90%;
}
.team-member__headings * {
  margin: 0;
}
.team-member__img-container {
  height: 0;
  position: relative;
  top: -4rem;
}
.team-member__img-container img {
  height: 135px;
  width: 135px;
}
.team-member__name {
  font-size: var(--text-size-md);
  margin-bottom: 0.3rem;
}
.team-member__title {
  font-size: var(--text-size-xs);
  color: var(--cyan);
}
.team-member__desc {
  padding-top: 1rem;
  color: white;
  overflow: hidden;
  min-height: 210px;
}
.team-member__desc > * {
  margin: 0;
}
.team-member__desc-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}
.team-member__desc p {
  font-size: var(--text-size-xxs);
}
.team-member__expand {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
  transition: rotate 0.4s;
}
.team-member--expanded {
  height: 100%;
}
.team-member--expanded .team-member__desc-wrapper {
  max-height: 700px;
}
.team-member--expanded .team-member__expand {
  rotate: 135deg;
}
.team-member--expandable .team-member__headings {
  cursor: pointer;
}

@media screen and (max-width: 1100px) {
  .team-members-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
  .team-member {
    padding: 1.2rem;
  }
  .team-member__desc {
    min-height: none;
  }
  .team-member__expand {
    top: 1.5rem;
    right: 1rem;
  }
  .team-member__expand img {
    height: 24px;
    width: 24px;
  }
  .team-member__img-container {
    top: -2.6rem;
    height: 0.2rem;
  }
  .team-member__img-container img {
    height: 3rem;
    width: 3rem;
  }
}
.header__navbar {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.header__navbar > .navigation__top {
  height: 40px;
  position: absolute;
  top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  z-index: 100;
  padding: 0 20px;
}
.header__navbar > .navigation__top.--animate-in {
  position: fixed;
  animation: animateNavTop 0.6s ease 0s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 800px) {
  .header__navbar > .navigation__top.--animate-in {
    animation: animateNavTopMobile 0.6s ease 0s;
    animation-fill-mode: forwards;
  }
}
.header__navbar > .navigation__top.--animate-out {
  position: fixed;
  top: 100px;
  animation: resetNavTop 0.4s ease 0s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 800px) {
  .header__navbar > .navigation__top.--animate-out {
    top: 60px;
    animation: resetNavTopMobile 0.4s ease 0s;
    animation-fill-mode: forwards;
  }
}
@media screen and (max-width: 800px) {
  .header__navbar > .navigation__top {
    top: 60px;
    padding: 0 1.5rem;
    justify-content: space-between;
  }
}
@media screen and (max-width: 800px) {
  .header__navbar > .navigation__top {
    gap: 0;
  }
}
.header__navbar.is-menu-open {
  position: fixed;
  height: 100vh;
}
.header__navbar.is-menu-open > .navigation__container {
  top: 0;
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  z-index: 99;
}

.header__logo {
  position: relative;
  z-index: 999;
}
.header__logo:only-child {
  display: none;
}
.header__logo a {
  color: white;
}
@media screen and (max-width: 680px) {
  .header__logo {
    width: 250px;
  }
}

.header__contact {
  color: var(--cyan);
  font-size: var(--text-size-xs);
  font-family: var(--font-heavy);
  letter-spacing: 0.1rem;
  font-weight: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .header__contact {
    display: none;
  }
}

@keyframes animateNavTop {
  0% {
    top: -50px;
  }
  60% {
    top: 120px;
  }
  to {
    top: 100px;
  }
}
@keyframes animateNavTopMobile {
  0% {
    top: -50px;
  }
  60% {
    top: 80px;
  }
  to {
    top: 60px;
  }
}
@keyframes resetNavTop {
  0% {
    top: calc(40px + 2vw);
  }
  80% {
    top: 0px;
  }
  to {
    top: 100px;
    position: absolute;
  }
}
@keyframes resetNavTopMobile {
  0% {
    top: 60px;
  }
  80% {
    top: 0px;
  }
  to {
    top: 60px;
    position: absolute;
  }
}
@keyframes resetPosition {
  0% {
    transform: translateY(-60px);
  }
  to {
    transform: translateY(0px);
    position: absolute;
  }
}
.pagination {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

.pagination-arrow {
  width: 20px;
  fill: var(--black);
}
.pagination-arrow--prev {
  transform: scaleX(-1);
}

.page-numbers {
  margin: 0 2rem;
  font-size: var(--text-size-md);
  color: var(--black);
}
.page-numbers .current {
  border-bottom: 2px solid var(--black);
}

.page-numbers.current {
  border-bottom: 2px solid var(--black);
  color: var(--black);
}

form {
  margin: 0 0 2rem;
}
form input,
form textarea {
  display: block;
  margin-bottom: 1.5rem;
  outline: thin;
  padding: 1.5rem;
  border-radius: 2rem;
  border: none;
  width: 100%;
  font-size: var(--text-size-sm);
  font-family: var(--font-light);
  background: transparent;
  color: var(--black);
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
form input::placeholder,
form textarea::placeholder {
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
form input:focus::-moz-placeholder, form textarea:focus::-moz-placeholder {
  opacity: 0;
}
form input:focus::placeholder,
form textarea:focus::placeholder {
  opacity: 0;
}
form textarea {
  resize: none;
}
form label {
  color: var(--white);
  font-size: var(--text-size-md);
  font-family: var(--font-light);
}
form input[type=checkbox] {
  display: inline;
  width: auto;
}
form button {
  color: var(--black);
  font-family: var(--font-light);
  font-size: var(--text-size-md);
  border: 2px solid var(--black);
  padding: 1rem 2rem;
}

.asterisk {
  color: red;
}

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

.home-opening-animation {
  height: 100vh;
  width: 100vw;
  background-color: white;
  overflow: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-opening-animation .--hide-after-animation {
  animation: hideAfterHomeAnimation 0s linear var(--total-animate-time);
  animation-fill-mode: forwards;
}

.home-opening-animation__logo-container {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 150px;
  opacity: 0;
}
.home-opening-animation__logo-container.--animate-home-logo {
  animation: animateLogo 0.4s linear 1s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 1100px) {
  .home-opening-animation__logo-container.--animate-home-logo {
    animation: animateLogoMobile 0.4s linear 1s;
    animation-fill-mode: forwards;
  }
}

.home-opening-animation__text {
  color: var(--blue);
  padding: 0 2.5rem;
}
.home-opening-animation__text .last-word {
  color: var(--cyan);
}

.home-opening-animation__text-container {
  margin-top: 34vh;
}

@media screen and (max-width: 1100px) {
  .home-opening-animation {
    height: 80vh;
  }
  .home-opening-animation__text {
    font-size: var(--text-size-xxl);
  }
  .home-opening-animation__logo-container {
    top: 160px;
  }
  .home-opening-animation__logo-container > img {
    height: 60px;
  }
}
@media screen and (max-width: 800px) {
  .home-opening-animation {
    height: 100vh;
    padding: 0 1.6rem;
  }
  .home-opening-animation__text-container {
    margin-top: 13rem;
  }
  .home-opening-animation__text {
    font-size: var(--text-size-xl);
  }
}
@keyframes hideAfterHomeAnimation {
  from {
    display: flex;
  }
  to {
    display: block;
  }
}
@keyframes animateLogo {
  0% {
    top: 140px;
    opacity: 0;
  }
  to {
    top: 190px;
    opacity: 1;
  }
}
@keyframes animateLogoMobile {
  0% {
    top: 140px;
    opacity: 0;
  }
  to {
    top: 160px;
    opacity: 1;
  }
}
.radial-gradient {
  position: absolute;
  height: 600px;
  width: 600px;
  z-index: 0;
  background: transparent radial-gradient(closest-side at 50% 50%, var(--cyan) 0%, rgba(66, 234, 209, 0) 100%) 0% 0% no-repeat padding-box;
  background: transparent radial-gradient(closest-side at 50% 50%, #42EAD1 0%, rgba(66, 234, 209, 0) 100%) 0% 0% no-repeat padding-box;
  opacity: 0.1;
}
@media screen and (max-width: 800px) {
  .radial-gradient {
    height: 400px;
    width: 400px;
  }
}

.bg-radials {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bg-radials > .radial-gradient {
  position: absolute;
  height: 1200px;
  width: 1200px;
}
.bg-radials > .radial-gradient:first-child {
  position: absolute;
  top: calc(-700px + 15vw);
  left: calc(-1100px + 35vw);
}
.bg-radials > .radial-gradient:nth-child(2) {
  top: calc(600px - 10vw);
  left: calc(-150px + 70vw);
}

.bg-blue-diamonds {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.bg-blue-diamonds > *:first-child {
  top: -720px;
}
.bg-blue-diamonds > *:nth-child(2) {
  top: 500px;
}
.bg-blue-diamonds.--2 > *:nth-child(n+3) {
  display: none;
}
.bg-blue-diamonds > *:nth-child(3) {
  top: 1850px;
  left: calc(-1800px + 25vw);
}
.bg-blue-diamonds > *:nth-child(4) {
  top: 5050px;
}

.bg-blue-diamond {
  z-index: -1;
  /* Layout Properties */
  width: 1724px;
  height: 1724px;
  transform: rotate(45deg);
  position: absolute;
  left: calc(-2000px + 25vw);
  margin: 0;
  padding: 0;
  /* UI Properties */
  background: var(--blue-dark) 0% 0% no-repeat padding-box;
  background: #071E33 0% 0% no-repeat padding-box;
  border-radius: var(--border-radius-large);
  opacity: 1;
}
.bg-blue-diamond.--right {
  left: calc(300px + 60vw);
}
@media screen and (max-width: 800px) {
  .bg-blue-diamond.--right {
    left: calc(175px + 60vw);
  }
}

.blob {
  position: absolute;
  display: block;
  background: url("../images/home/graphic-blob.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  max-width: 800px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.sticky-blob {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sticky-blob::before {
  content: "";
  display: block;
  position: relative;
  background: url("../images/home/graphic-blob.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 800px;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}
.sticky-blob.--home {
  opacity: 0;
  z-index: -1;
}
.sticky-blob.--visible {
  opacity: 1;
}

@media screen and (max-width: 1400px) {
  .sticky-blob::before {
    background-size: 600px;
  }
}
@media screen and (max-width: 800px) {
  .sticky-blob::before {
    background-size: 80vw;
  }
}
.rotating-blob::before {
  rotate: var(--rotate-state);
  transform-origin: center;
  animation: rotating 240s linear infinite;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.blobs-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.blobs-bg .blob {
  height: 800px;
  width: 800px;
  position: absolute;
}
@media screen and (max-width: 1300px) {
  .blobs-bg .blob {
    height: 60vw;
    width: 60vw;
  }
}
.blobs-bg .blob:first-child {
  top: -400px;
  right: -400px;
}
@media screen and (max-width: 1300px) {
  .blobs-bg .blob:first-child {
    top: -40vw;
    right: -40vw;
  }
}
.blobs-bg .blob:nth-child(2) {
  left: -400px;
  top: 700px;
}
@media screen and (max-width: 1300px) {
  .blobs-bg .blob:nth-child(2) {
    left: -40vw;
  }
}
@media screen and (max-width: 1400px) {
  .blobs-bg .sticky-blob.--home {
    top: 1750px;
  }
}
@media screen and (max-width: 800px) {
  .blobs-bg .sticky-blob .--home {
    top: 1600px;
  }
}

.bg-diamond {
  width: 645px;
  height: 645px;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  border-radius: var(--border-radius-small);
}
.bg-diamond.--cyan {
  background: transparent linear-gradient(27deg, #42EAD1 0%, #186465 100%) 0% 0% no-repeat padding-box;
}
.bg-diamond.--orange {
  background: transparent linear-gradient(91deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
}
.bg-diamond.--small {
  height: 150px;
  width: 150px;
}

.bg-page-diamonds {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.bg-page-diamonds > * {
  position: absolute;
}
.bg-page-diamonds > *:first-child {
  left: -585px;
  top: calc(-100px + 20vw);
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .bg-page-diamonds > *:first-child {
    left: calc(-810px + 15vw);
  }
}
.bg-page-diamonds > *:first-child > .--orange {
  background: transparent linear-gradient(209deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
}
.bg-page-diamonds > *:first-child > .--cyan {
  position: relative;
  right: -90px;
  top: -120px;
  background: transparent linear-gradient(257deg, #42EAD1 0%, #186465 100%) 0% 0% no-repeat padding-box;
}
@media screen and (max-width: 1400px) {
  .bg-page-diamonds > *:first-child > .--cyan {
    height: 70px;
    width: 70px;
    right: -110px;
    top: -60px;
  }
}
.bg-page-diamonds > *:last-child {
  right: -570px;
  top: calc(700px - 25vw);
}
.bg-page-diamonds > *:last-child > .bg-diamond {
  background: transparent linear-gradient(91deg, var(--gold) 0%, var(--red) 50%) 0% 0% no-repeat padding-box;
}
@media screen and (max-width: 1400px) {
  .bg-page-diamonds > *:last-child {
    right: calc(-770px + 10vw);
    top: calc(40vh - 10vw);
  }
}

.home__particle-animation {
  position: absolute;
  top: 8vh;
  width: 100%;
  z-index: -2;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.home__particle-animation > .particles-container {
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  opacity: 0.4;
  background: transparent;
}
.home__particle-animation > .particles-container > .particles-fade {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 100px 100px var(--blue) inset;
  z-index: 1;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.home__particle-animation #particles-js {
  background: transparent;
  position: relative;
  z-index: -1;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .home__particle-animation > .particles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
  }
  .home__particle-animation #particles-js {
    height: 50%;
    width: 90%;
  }
}

.block__branches {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.block__branches-wrapper {
  position: relative;
  max-width: 100%;
}
.block__branches-wrapper .bg-blue-diamond {
  top: -600px;
  z-index: -1;
}
.block__branches-diamond-bgs {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.block__branches-diamond-bgs > * {
  position: absolute;
}
.block__branches-diamond-bgs > .--cyan {
  background: transparent linear-gradient(215deg, #42EAD1 0%, #186465 100%) 0% 0%;
  height: 330px;
  width: 330px;
  left: 250px;
  top: 0;
}
.block__branches-diamond-bgs > .--orange {
  top: 265px;
  left: 40px;
  height: 130px;
  width: 130px;
}
.block__branches-header {
  background-color: #152F47;
  background-image: url("../images/home/frosted-glass/bg-multi-use-corner-align-top-left.jpg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 750px auto;
  border-radius: 14px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  position: relative;
  padding: 2rem 3rem;
}
.block__branches-header > h2 {
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.block__branches-header > h2::before {
  content: url("../images/home/icon-arrow-red-gold.svg");
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(135deg) translate(16px, 15px);
}
.block__branches-header > h2 > strong {
  color: var(--cyan);
  font-size: 3.5rem;
}
.block__branches-header > .logo-hollow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 204px;
  height: 185px;
}
@media screen and (max-width: 800px) {
  .block__branches-header > .logo-hollow {
    width: 87px;
    height: 79px;
    top: -30px;
    right: -30px;
  }
}
.block__branches-header > .light-bulb__container {
  background: transparent linear-gradient(180deg, var(--cyan) 0%, var(--cyan-darkest) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #42EAD1 0%, #186465 100%) 0% 0% no-repeat padding-box;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 214px;
  width: 214px;
}
.block__branches-header p {
  color: var(--white);
  margin: 0;
  letter-spacing: 0.5px;
  text-align: center;
  font-size: var(--text-size-md);
  line-height: 1.2;
  width: 90%;
}
@media screen and (max-width: 1300px) {
  .block__branches-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .block__branches-header > h2 {
    width: 48%;
  }
  .block__branches-header > .logo-hollow {
    width: 156px;
    height: 141px;
  }
  .block__branches-header > p {
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .block__branches-header {
    flex-direction: column;
    justify-content: initial;
  }
  .block__branches-header > .logo-hollow {
    width: 87px;
    height: 79px;
  }
  .block__branches-header > h2,
  .block__branches-header > p {
    width: 100%;
  }
  .block__branches-header > section.light-bulb__container {
    display: none;
  }
}
.block__branches-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.block__branches-img {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  min-height: none;
  padding: 0 2em;
}
@media screen and (max-width: 1400px) {
  .block__branches-img {
    display: none;
  }
}
.block__branches-branch {
  top: 1427px;
  left: 378px;
  width: 20px;
  height: 411px;
  /* UI Properties */
  background: transparent linear-gradient(180deg, var(--blue-lighter) 0%, var(--blue-lighter) 67%, rgba(32, 56, 77, 0) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #20384D 0%, #20384D 67%, rgba(32, 56, 77, 0) 100%) 0% 0% no-repeat padding-box;
  opacity: 0.5;
}
@media screen and (max-width: 1400px) {
  .block__branches-header {
    background-size: 650px auto;
    margin-bottom: 6rem;
  }
  .block__branches-diamond-bgs .--cyan {
    left: 203px;
  }
  .block__branches-diamond-bgs .--orange {
    top: 205px;
  }
  .block__branches-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 0;
    gap: 3rem 1rem;
  }
  .block__branches-list-container {
    margin-top: 0;
  }
  .block__branches-list > li {
    height: 130px;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 1rem;
    gap: 40px;
  }
  .block__branches-list > li > section.bg-filter::after {
    background-image: url("../images/home/frosted-glass/bg-capabilities-2col-align-right.jpg") !important;
    background-position: center;
    background-size: cover;
  }
  .block__branches-list > li::after {
    content: "";
    position: absolute;
    bottom: calc(0px - 2vw);
    right: 10px;
    width: 50%;
    height: 100%;
    background: transparent linear-gradient(65deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(65deg, #FFAC30 0%, #FF4060 100%) 0% 0% no-repeat padding-box;
    border-radius: 14px;
    z-index: -2;
  }
  .block__branches-list > li:last-child {
    grid-area: span(2);
  }
  .block__branches-list > li > img {
    position: relative;
    top: 10px;
    left: 0;
    transform: translateY(-35%);
    width: 50%;
    min-height: 100%;
    height: -moz-fit-content;
    height: fit-content;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .block__branches-list > li > h5 {
    width: 45%;
    gap: 20px;
  }
  .block__branches-list > li > h5::after {
    margin-top: 0;
    transform: none;
  }
}
@media screen and (max-width: 800px) {
  .block__branches-header {
    background-size: 350px auto;
    margin-bottom: 6rem;
    padding: 1.5rem;
  }
  .block__branches-header > h2 {
    padding: 0;
    font-size: var(--text-size-lg);
  }
  .block__branches-header > h2::before {
    display: none;
  }
  .block__branches-header > h2 > strong {
    font-size: 3rem;
  }
  .block__branches-header > p {
    font-size: var(--text-size-sm);
  }
  .block__branches-diamond-bgs .--cyan {
    height: 180px;
    width: 180px;
    left: 120px;
    top: 0px;
  }
  .block__branches-diamond-bgs .--orange {
    top: 120px;
    left: calc(35px - 1.2vw);
    height: 60px;
    width: 60px;
  }
  .block__branches-list {
    display: flex;
    gap: 8rem;
    flex-direction: column;
    padding: 6rem 0;
  }
  .block__branches-list > li {
    flex-direction: column;
    align-items: center;
    padding: 2rem 3rem;
    height: -moz-fit-content;
    height: fit-content;
  }
  .block__branches-list > li > img {
    width: 100%;
    max-width: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .block__branches-list > li > h5 {
    width: 100%;
    font-size: var(--text-size-xs);
    gap: 25%;
  }
  .block__branches-list > li > section.bg-filter {
    width: 90%;
    left: 5%;
  }
  .block__branches-list > li > section.bg-filter::after {
    background-image: url("../images/home/frosted-glass/bg-capabilities-1col-align-bottom.jpg") !important;
    background-position: bottom center;
    background-size: cover;
  }
  .block__branches-list > li:after {
    width: 100%;
    height: 40%;
    left: 0;
    bottom: -5%;
  }
}

.text-and-members {
  width: 100%;
  position: relative;
}
.text-and-members-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 100%;
}
.text-and-members-wrapper .bg-blue-diamond {
  z-index: -1;
  top: -500px;
  left: calc(-1800px + 25vw);
}
.text-and-members__text {
  width: 40%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-and-members__text h2 {
  margin: 0;
  width: 80%;
}
.text-and-members__text h2 > strong {
  color: var(--cyan);
}
.text-and-members__text p {
  color: white;
  font-size: var(--text-size-xs);
  margin: 0;
}
.text-and-members__content {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  padding: 3rem;
}
.text-and-members__diamond {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 56%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.text-and-members__diamond > img:first-child {
  width: 100%;
  height: auto;
}
.text-and-members__diamond > img:nth-child(2) {
  position: absolute;
  top: 46%;
  left: 46%;
  transform: translate(-50%, -50%);
}
.text-and-members__members {
  display: flex;
  gap: 30px;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: calc(-150px - 0.5rem);
  z-index: 1;
}
.text-and-members__members > img {
  height: 150px;
  width: 150px;
}
@media screen and (max-width: 1400px) {
  .text-and-members__content {
    flex-direction: column;
    align-items: center;
    padding: 0 6rem 4rem 6rem;
    gap: 2rem;
  }
  .text-and-members__text {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .text-and-members__diamond {
    width: 90%;
    position: relative;
    top: 0%;
    left: 0;
    margin-top: -10%;
  }
  .text-and-members__diamond > .canadian-team {
    width: 30%;
    height: auto;
  }
  .text-and-members__members {
    justify-content: center;
    margin-bottom: calc(-150px - 2rem);
  }
}
@media screen and (max-width: 1100px) {
  .text-and-members__content {
    padding: 0 4rem 5rem 4rem;
  }
}
@media screen and (max-width: 800px) {
  .text-and-members__content {
    padding: 0 1.5rem 4rem 1.5rem;
    gap: 2rem;
  }
  .text-and-members-wrapper .bg-blue-diamond {
    z-index: -1;
    top: calc(-850px + 30vw);
    left: calc(-2200px + 80vw);
  }
  .text-and-members__members {
    margin-bottom: calc(-84px - 2.2rem);
    gap: 3vw;
  }
  .text-and-members__members > img {
    height: 84px;
    width: 84px;
  }
}

.stats__ff-logo {
  position: absolute;
  top: 50px;
  right: -200px;
  max-width: 575px;
  width: 32vw;
}
@media screen and (max-width: 1300px) {
  .stats__ff-logo {
    display: none;
  }
}

.stats__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 6rem 10rem;
  position: relative;
  width: 100%;
  z-index: 1;
}
.stats__content > .radial-gradient {
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 60%;
}
.stats__content-wrapper {
  display: flex;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
.stats__content-lines {
  text-align: center;
}
.stats__content-lines > h2 {
  margin: 0;
}
.stats__content-lines > h2 > strong {
  color: var(--cyan);
}
.stats__content-description {
  width: 90%;
  color: white;
  text-align: center;
  margin: 0;
  padding-bottom: 2rem;
}
.stats__content-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.stats__content-item {
  background-image: url("../images/home/frosted-glass/stats/3col-cover.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 330px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-radius: var(--border-radius-md);
  position: relative;
}
.stats__content-item-text * {
  margin: 0;
  line-height: 1.2;
}
.stats__content-item-text strong {
  font-family: var(--font-heavy);
  font-size: var(--text-size-xl);
}
.stats__content-item-diamonds {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: -1;
}
.stats__content-item-diamonds > .bg-diamond {
  box-sizing: content-box;
}
.stats__content-item-diamonds > .bg-diamond.--cyan {
  margin-top: -20px;
  height: 100px;
  width: 100px;
  transform: rotate(225deg);
}
.stats__content-item-diamonds > .bg-diamond.--orange {
  height: 150px;
  width: 150px;
  margin-bottom: -20px;
  transform: matrix(-0.71, -0.71, 0.71, -0.71, 0, 0);
  background: transparent linear-gradient(45deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(45deg, #FFAC30 0%, #FF4060 100%) 0% 0% no-repeat padding-box;
}
@media screen and (max-width: 1400px) {
  .stats__content {
    padding: 6rem 4rem;
  }
  .stats__content-items {
    gap: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .stats__content {
    padding: 6rem 2rem;
  }
  .stats__content .radial-gradient {
    max-height: 600px;
    width: 100%;
    left: 0;
  }
  .stats__content-items {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 4rem;
    width: 100%;
  }
  .stats__content-item {
    background-image: url("../images/home/frosted-glass/stats/align-bottom.jpg");
    padding: 3rem 2rem;
    width: 100%;
    max-width: 330px;
  }
  .stats__content-item-diamonds {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .stats__content-item-diamonds > .bg-diamond {
    position: absolute;
  }
  .stats__content-item-diamonds > .bg-diamond.--cyan {
    right: -12px;
    bottom: 50px;
    height: 80px;
    width: 80px;
  }
  .stats__content-item-diamonds > .bg-diamond.--orange {
    right: 25%;
    bottom: 0%;
    height: 100px;
    width: 100px;
    transform: rotate(-135deg);
  }
}

.text-and-quote-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  max-width: 100vw;
}
.text-and-quote-wrapper .bg-blue-diamond {
  top: -450px;
  z-index: -2;
}

.text-and-quote__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 3rem;
}
.text-and-quote__quote {
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  color: var(--white);
  padding: 3rem 3rem 2.5rem;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
}
.text-and-quote__quote::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #152F47;
  background-image: url("../images/home/frosted-glass/bg-multi-use-corner-align-top-left.jpg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 380px auto;
  border-radius: 14px;
}
.text-and-quote__quote * {
  margin: 0;
}
.text-and-quote__quote-diamonds {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 0px;
  left: -27px;
  transform: rotate(180deg);
  z-index: -2;
}
.text-and-quote__quote-diamonds > .--cyan {
  height: 240px;
  width: 240px;
  position: relative;
  bottom: -30px;
}
.text-and-quote__quote-diamonds > .--orange {
  height: 80px;
  width: 80px;
  position: relative;
  top: 80px;
  rotate: 180deg;
}
.text-and-quote__quote-icon {
  position: absolute;
  top: -20px;
  right: -20px;
}
.text-and-quote__quotee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.text-and-quote__quotee > * {
  color: var(--cyan);
}
.text-and-quote__quotee > p {
  font-size: var(--text-size-xxs);
}
.text-and-quote__quotee-img {
  position: absolute;
  bottom: 40px;
  left: 0;
  height: 149px;
  width: 149px;
  min-height: 149px;
  min-width: 149px;
  border-radius: 50%;
  left: -74.5px;
}
.text-and-quote__text {
  width: 38%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-and-quote__text * {
  margin: 0;
}
.text-and-quote__text h2:nth-child(2) {
  color: var(--cyan);
}
@media screen and (max-width: 1300px) {
  .text-and-quote__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 6rem 0;
    gap: 0;
  }
  .text-and-quote__content > * {
    width: 100%;
  }
  .text-and-quote__quote {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    bottom: -120px;
    max-width: 506px;
  }
  .text-and-quote__quote::before {
    background-size: 400px auto;
  }
  .text-and-quote__text > p {
    margin-top: 1.5rem;
  }
  .text-and-quote__quote-diamonds {
    top: 0px;
    gap: 40px;
  }
  .text-and-quote__quote-diamonds .--cyan {
    height: 200px;
    width: 200px;
    top: 45px;
  }
  .text-and-quote__quote-diamonds .--orange {
    height: 60px;
    width: 60px;
    top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .text-and-quote__content {
    padding: 1.5rem 1.5rem 4rem;
  }
  .text-and-quote__quote {
    max-width: none;
    padding: 2rem 1rem 0;
  }
  .text-and-quote__quote::before {
    background-size: 300px auto;
  }
  .text-and-quote__quote-icon {
    display: none;
  }
  .text-and-quote__quote-diamonds {
    top: 20px;
    gap: 36px;
  }
  .text-and-quote__quote-diamonds .--cyan {
    height: 140px;
    width: 140px;
  }
  .text-and-quote__quote-diamonds .--orange {
    height: 60px;
    width: 60px;
  }
  .text-and-quote__quotee-img {
    position: relative;
    left: initial;
    bottom: initial;
    margin-bottom: -50.5px;
    height: 84px;
    width: 84px;
    min-height: 84px;
    min-width: 84px;
  }
}

.page-landing {
  width: 100%;
  padding: 40vh 0 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-landing p {
  color: var(--cyan);
  font-size: var(--text-size-sm);
  max-width: 750px;
}
@media screen and (max-width: 1400px) {
  .page-landing h1, .page-landing .home-opening-animation__text {
    font-size: var(--text-size-xl);
  }
  .page-landing h1, .page-landing .home-opening-animation__text, .page-landing p {
    max-width: 740px;
  }
}
@media screen and (max-width: 800px) {
  .page-landing h1, .page-landing .home-opening-animation__text, .page-landing p {
    max-width: 500px;
  }
}

.page-blocks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  position: relative;
}

.block__double-text-wrapper {
  position: relative;
}
.block__double-text-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background-color: #152F47;
  padding: 2rem 3rem;
  border-radius: var(--border-radius-md);
  position: relative;
}
.block__double-text-content::after {
  border-radius: var(--border-radius-md);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-image: url("../images/home/frosted-glass/bg-multi-use-corner-align-top-left.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 500px auto;
  transform: rotate(180deg);
  z-index: 0;
}
.block__double-text-content * {
  margin: 0;
}
.block__double-text-content > * {
  padding: 1rem;
}
.block__double-text-content > section {
  width: 55%;
  z-index: 2;
}
.block__double-text-content > section:first-child {
  position: relative;
}
.block__double-text-content > section:first-child::before {
  content: url("../images/home/icon-arrow-red-gold.svg");
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(135deg) translate(16px, 15px);
}
.block__double-text-content > section h2 {
  font-size: var(--text-size-md);
  letter-spacing: var(----character-spacing-s);
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
}
.block__double-text-content > section h2 > strong {
  color: var(--cyan);
  font-size: 1.7rem;
  font-weight: bold;
}
.block__double-text-content > p {
  width: 40%;
  font-size: var(--text-size-xs);
  color: white;
  z-index: 1;
}
.block__double-text-diamond-bgs {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1 !important;
}
.block__double-text-diamond-bgs .--cyan {
  position: absolute;
  right: 116px;
  bottom: -54px;
  height: 250px;
  width: 250px;
  background: transparent linear-gradient(330deg, #42EAD1 0%, #186465 100%) 0% 0% no-repeat padding-box;
}
.block__double-text-diamond-bgs .--orange {
  position: absolute;
  bottom: 88px;
  right: -19px;
  height: 120px;
  width: 120px;
  background: transparent linear-gradient(230deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
}
@media screen and (max-width: 1400px) {
  .block__double-text-content {
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
  }
  .block__double-text-content::after {
    background-size: 350px;
  }
  .block__double-text-content > section,
  .block__double-text-content p {
    width: 100%;
  }
  .block__double-text-diamond-bgs .--cyan {
    height: 180px;
    width: 180px;
    bottom: -44px;
    right: 75px;
  }
  .block__double-text-diamond-bgs .--orange {
    height: 90px;
    width: 90px;
    bottom: 63px;
  }
}
@media screen and (max-width: 800px) {
  .block__double-text-wrapper {
    margin-bottom: 2rem;
  }
  .block__double-text-left {
    padding: 0;
  }
  .block__double-text-left::before {
    display: none;
  }
}

.text-and-image-grid {
  position: relative;
}
.text-and-image-grid.--reverse {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 2rem;
}
.text-and-image-grid.--reverse .text-and-image-grid-gradient {
  margin-bottom: -170px;
}
.text-and-image-grid.--reverse .bg-filter::after {
  transform: rotate(180deg) scaleX(-1);
}
.text-and-image-grid.--reverse .bg-filter {
  background: linear-gradient(0deg, var(--fake-frost) 0%, var(--fake-frost) 95%, rgba(0, 0, 0, 0) 95%);
}
.text-and-image-grid-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  width: 98%;
  gap: 16px;
  justify-items: stretch;
}
.text-and-image-grid-list-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.text-and-image-grid-list__item-text {
  height: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.text-and-image-grid-list__item-text > * {
  margin: 0;
}
.text-and-image-grid-list__item-text > h5 {
  font-size: var(--text-size-xs);
  position: relative;
}
.text-and-image-grid-list__item-text > p {
  font-size: var(--text-size-xxs);
  line-height: 1.4;
}
.text-and-image-grid-list > li {
  width: 269px;
  height: 100%;
  align-self: stretch;
  min-height: 350px;
  margin: 0;
  position: relative;
  border-radius: 14px;
  border: none;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.text-and-image-grid-list > li * {
  color: white;
}
.text-and-image-grid-list > li .bg-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  z-index: -1;
  background: linear-gradient(180deg, var(--fake-frost) 0%, var(--fake-frost) 95%, rgba(0, 0, 0, 0) 95%);
}
.text-and-image-grid-list > li .bg-filter::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 215px;
}
.text-and-image-grid-list > li:first-child .bg-filter::after {
  background-image: url("../images/home/frosted-glass/bg-capabilities-5col-align-bottom-1.jpg");
}
.text-and-image-grid-list > li:nth-child(2) .bg-filter::after {
  background-image: url("../images/home/frosted-glass/bg-capabilities-5col-align-bottom-2.jpg");
}
.text-and-image-grid-list > li:nth-child(3) .bg-filter::after {
  background-image: url("../images/home/frosted-glass/bg-capabilities-5col-align-bottom-3.jpg");
}
.text-and-image-grid-list > li:nth-child(4) .bg-filter::after {
  background-image: url("../images/home/frosted-glass/bg-capabilities-5col-align-bottom-4.jpg");
}
.text-and-image-grid-list > li:nth-child(5) .bg-filter::after {
  background-image: url("../images/home/frosted-glass/bg-capabilities-5col-align-bottom-5.jpg");
}
.text-and-image-grid-list > li:hover > button::after {
  transform: translateX(10px);
}
.text-and-image-grid-list > li a > img {
  position: relative;
  top: -100px;
  width: auto;
  height: 200px;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.text-and-image-grid-list > li a {
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0;
}
.text-and-image-grid-list > li a[href] {
  cursor: pointer;
}
.text-and-image-grid-list > li a[href] h5 {
  display: flex;
  gap: 1rem;
  transition: color 0.2s;
  position: relative;
  width: 100%;
}
.text-and-image-grid-list > li a[href] h5::after {
  position: absolute;
  top: -1rem;
  right: -0.2rem;
  transition: right 0.2s, background-color 0.2s;
  content: "";
  -webkit-mask-image: url("../images/home/icon-arrow-white.png");
          mask-image: url("../images/home/icon-arrow-white.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: white;
  height: 33px;
  width: 25px;
  -webkit-mask-size: 15px 31px;
          mask-size: 15px 31px;
}
.text-and-image-grid-list > li a[href]:hover h5 {
  color: var(--cyan);
}
.text-and-image-grid-list > li a[href]:hover h5::after {
  background-color: var(--cyan);
  right: -0.5rem;
}
.text-and-image-grid-list > li a > *:not(img) {
  padding: 0 0.7rem;
}
.text-and-image-grid-list > li > button {
  font-family: var(--font-heavy);
  color: var(--white);
  font-size: var(--text-size-xs);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.text-and-image-grid-list > li > button::after {
  margin-top: -100px;
  transition: 0.4s transform;
  top: -50px;
  content: url("../images/home/icon-arrow-white.png");
}
.text-and-image-grid-gradient {
  height: 137px;
  width: 100%;
  background: transparent linear-gradient(90deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #ffac30 0%, #ff4060 100%) 0% 0% no-repeat padding-box;
  border-radius: 14px;
  z-index: 0;
  position: relative;
  margin-top: -120px;
}
@media screen and (max-width: 1400px) {
  .text-and-image-grid-gradient {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .text-and-image-grid, .text-and-image-grid.--reverse {
    margin-top: 0;
  }
  .text-and-image-grid-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    padding: 0 0 2rem;
    gap: 3rem 1rem;
  }
  .text-and-image-grid-list-container {
    padding: 0;
    margin-top: 0;
  }
  .text-and-image-grid-list > li {
    grid-column: span 4;
    width: 100%;
    padding: 0.6rem;
    gap: 0;
    min-height: 130px;
    height: 100%;
  }
  .text-and-image-grid-list > li > a {
    align-items: unset;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .text-and-image-grid-list > li:last-child:nth-child(odd) {
    grid-column: span 4/7;
  }
  .text-and-image-grid-list > li a > section.bg-filter {
    background-color: #152f47;
  }
  .text-and-image-grid-list > li a > section.bg-filter::after {
    transform: unset !important;
    background-image: url("../images/home/frosted-glass/bg-capabilities-2col-align-right.jpg") !important;
    background-position: bottom right;
    background-size: 85% 100%;
  }
  .text-and-image-grid-list > li::after {
    content: "";
    position: absolute;
    bottom: calc(0px - 2vw);
    right: 10px;
    width: 50%;
    height: 100%;
    background: transparent linear-gradient(65deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(65deg, #ffac30 0%, #ff4060 100%) 0% 0% no-repeat padding-box;
    border-radius: 14px;
    z-index: -2;
  }
  .text-and-image-grid-list > li:last-child {
    grid-area: span(2);
  }
  .text-and-image-grid-list > li a > img {
    position: relative;
    margin-top: -2rem;
    top: 0;
    left: 0;
    width: 45%;
    height: -moz-fit-content;
    height: fit-content;
    min-height: none;
    height: fit-content;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .text-and-image-grid-list > li a > button {
    width: 45%;
    gap: 20px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
  }
  .text-and-image-grid-list > li a > button::after {
    margin-top: 0;
    transform: none;
  }
  .text-and-image-grid-list li a > *:not(img) {
    width: 48%;
    padding: 0 0 0 0.4rem;
  }
  .text-and-image-grid-list li a[href] h5::after {
    right: -0.5rem;
    top: 0;
  }
  .text-and-image-grid-list li a[href]:hover h5::after {
    right: -0.7rem;
  }
  .text-and-image-grid.--reverse .bg-filter {
    background: linear-gradient(90deg, var(--fake-frost) 0%, var(--fake-frost) 95%, rgba(0, 0, 0, 0) 95%);
  }
}
@media screen and (max-width: 960px) {
  .text-and-image-grid {
    width: 100%;
  }
  .text-and-image-grid-list {
    display: flex;
    gap: 6rem;
    flex-direction: column;
  }
  .text-and-image-grid-list > li {
    padding: 2rem 1.5rem;
    height: -moz-fit-content;
    height: fit-content;
  }
  .text-and-image-grid-list > li a {
    flex-direction: column;
    align-items: center;
  }
  .text-and-image-grid-list > li a .text-and-image-grid-list__item-text {
    width: 100%;
    max-width: 90%;
  }
  .text-and-image-grid-list > li a > img {
    width: 100%;
    max-width: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    transform: none;
    margin-top: -4rem;
    margin-bottom: 2rem;
  }
  .text-and-image-grid-list > li a > button {
    width: 100%;
    font-size: var(--text-size-sm);
    gap: 25%;
  }
  .text-and-image-grid-list > li a > section.bg-filter {
    width: 90%;
    left: 5%;
    background-color: transparent;
  }
  .text-and-image-grid-list > li a > section.bg-filter::after {
    background-image: url("../images/home/frosted-glass/bg-capabilities-1col-align-bottom.jpg") !important;
    background-position: bottom center;
    background-size: cover;
  }
  .text-and-image-grid-list > li a[href] h5 {
    justify-content: space-between;
  }
  .text-and-image-grid-list > li:after {
    width: 100%;
    height: 40%;
    left: 0;
    bottom: -5%;
  }
}

.block__text-with-gradient-border {
  position: relative;
  width: 100%;
}
.block__text-with-gradient-border-content {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.block__text-with-gradient-border-content.--bigger .block__text-with-gradient-border-text {
  width: 50%;
  text-align: left;
}
.block__text-with-gradient-border-content.--bigger .block__text-with-gradient-border-diamond {
  top: 6.5rem;
  left: -3rem;
  width: 50%;
}
.block__text-with-gradient-border-content.--bigger .block__text-with-gradient-border-diamond > section {
  height: 694px;
  width: 727px;
  min-height: 694px;
  min-width: 727px;
}
.block__text-with-gradient-border-content.--bigger .block__text-with-gradient-border-diamond > section .logo {
  width: 260px;
}
.block__text-with-gradient-border-text {
  width: 60%;
  color: white;
  text-align: center;
  padding: 0 2rem;
}
.block__text-with-gradient-border-text strong {
  color: var(--cyan);
}
.block__text-with-gradient-border-diamond {
  position: relative;
  top: 2.5rem;
  left: 0;
  width: 37%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  height: 0;
}
.block__text-with-gradient-border-diamond > section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 430px;
  min-width: 450px;
  min-height: 430px;
}
.block__text-with-gradient-border-diamond > section > img:first-child {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.block__text-with-gradient-border-diamond > section .logo-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -3%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block__text-with-gradient-border-diamond > section .logo-container .logo {
  width: 140px;
  height: auto;
}
@media screen and (max-width: 1700px) {
  .block__text-with-gradient-border .--bigger {
    flex-direction: column;
    align-items: center;
  }
  .block__text-with-gradient-border .--bigger .block__text-with-gradient-border-diamond {
    margin-top: -4rem;
    top: 0;
    left: 0;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 3rem;
  }
  .block__text-with-gradient-border .--bigger .block__text-with-gradient-border-text {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 1100px) {
  .block__text-with-gradient-border-diamond {
    margin-bottom: 3rem;
  }
  .block__text-with-gradient-border-content {
    flex-direction: column;
    padding-top: 0;
  }
  .block__text-with-gradient-border-content > * {
    width: 100%;
  }
  .block__text-with-gradient-border .--bigger .block__text-with-gradient-border-diamond {
    top: 1rem;
  }
  .block__text-with-gradient-border .--bigger .block__text-with-gradient-border-diamond > section {
    min-width: 70vw;
    min-height: 68vw;
    height: 68vw;
    width: 70vw;
  }
  .block__text-with-gradient-border .--bigger .block__text-with-gradient-border-diamond > section .logo-container .logo {
    width: 30vw;
    height: 30vw;
  }
  .block__text-with-gradient-border-diamond {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: -4rem;
  }
}
@media screen and (max-width: 680px) {
  .block__text-with-gradient-border-diamond > section {
    min-width: 70vw;
    min-height: 68vw;
    height: 68vw;
    width: 70vw;
  }
  .block__text-with-gradient-border-diamond > section .logo-container .logo {
    width: 30vw;
    height: 30vw;
  }
  .block__text-with-gradient-border-text {
    padding: 0;
  }
}

.text-and-image-container {
  padding: 2rem 2rem 4rem;
}
.text-and-image-content {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 4rem;
}
.text-and-image-content.--right {
  flex-direction: row-reverse;
}
.text-and-image-text {
  background-color: #152F47;
  border-radius: var(--border-radius-md);
  width: 63%;
  color: white;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.text-and-image-text.--right::before {
  background-position: top left;
  transform: scaleX(-1);
}
.text-and-image-text::before {
  content: "";
  background-color: #152F47;
  background-image: url("../images/home/frosted-glass/bg-multi-use-corner-align-top-left.jpg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 450px auto;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.text-and-image-text > *:not(img, section) {
  margin: 0;
  padding: 0 0 0 2rem;
  z-index: 1;
  position: relative;
}
.text-and-image-text > *:not(img, section):first-child {
  padding-top: 2rem;
}
.text-and-image-text > h4 {
  font-size: var(--text-size-sm);
}
.text-and-image-text > p {
  font-size: var(--text-size-xxs);
}
.text-and-image-text::after {
  content: url("../images/home/icon-arrow-red-gold.svg");
  position: absolute;
  top: 2rem;
  left: 2rem;
  transform: rotate(135deg) translate(16px, 15px);
}
.text-and-image-diamonds {
  position: absolute;
  transform: rotate(270deg);
  top: -95px;
  left: 30px;
  z-index: -1;
}
.text-and-image-diamonds.--right {
  right: 37px;
  left: unset;
  transform: rotate(270deg) scaleY(-1);
}
.text-and-image-diamonds .--cyan {
  height: 250px;
  width: 250px;
  background: transparent linear-gradient(225deg, #42EAD1 0%, #186465 100%) 0% 0% no-repeat padding-box;
}
.text-and-image-diamonds .--orange {
  margin-left: 20px;
  height: 90px;
  width: 90px;
}
@media screen and (max-width: 1100px) {
  .text-and-image-content, .text-and-image-content.--right {
    flex-direction: column;
    align-items: center;
  }
  .text-and-image-text {
    width: 100%;
  }
  .text-and-image-img {
    max-width: 350px;
  }
}
@media screen and (max-width: 680px) {
  .text-and-image-img {
    width: 40vw;
    min-width: 200px;
  }
  .text-and-image-diamonds {
    top: -70px;
  }
  .text-and-image-diamonds .--cyan {
    height: 180px;
    width: 180px;
  }
  .text-and-image-diamonds .--orange {
    height: 80px;
    width: 80px;
  }
  .text-and-image-text {
    padding: 1.5rem 1.5rem 2rem;
  }
  .text-and-image-text::before {
    background-size: 350px auto;
  }
  .text-and-image-text::after {
    display: none;
  }
  .text-and-image-text > h4 {
    padding-top: 0 !important;
  }
  .text-and-image-text > *:not(img, section) {
    padding: 0;
  }
}

.centered-quote-container {
  margin-top: 4rem;
}
.centered-quote-content {
  padding: 0 2rem;
  position: relative;
  max-width: 1000px;
  background: transparent linear-gradient(110deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
  border-radius: var(--border-radius-md);
  opacity: 1;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.centered-quote-icon {
  transform: translateY(-30%);
}
.centered-quote-text {
  padding: 0 2.6rem;
  font-size: 0.9rem;
}
.centered-quote-author-txt {
  margin-bottom: 1rem;
}
.centered-quote-author-txt > * {
  margin: 0;
}
.centered-quote-author-txt > h3 {
  font-size: var(--text-size-sm);
  margin-bottom: 0.3rem;
}
.centered-quote-author-txt > p {
  font-size: var(--text-size-xxs);
}
.centered-quote-author-img {
  min-width: 150px;
  min-width: 150px;
  max-height: 150px;
  max-width: 150px;
  margin-bottom: -75px;
}
@media screen and (max-width: 1100px) {
  .centered-quote-text {
    padding: 0 0 1rem;
  }
}
@media screen and (max-width: 800px) {
  .centered-quote-author-img {
    min-width: 84px;
    min-width: 84px;
    max-height: 84px;
    max-width: 84px;
    margin-bottom: -42px;
  }
}

.logo-grid-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  padding: 0;
}
.logo-grid-container {
  width: 100%;
}
.logo-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-grid-item::after {
  content: "";
  height: 16px;
  width: 85%;
  border-bottom-left-radius: var(--border-radius-md);
  border-bottom-right-radius: var(--border-radius-md);
  transform: translateY(-200%) rotate(180deg) scaleX(-1);
  filter: blur(17px);
}
.logo-grid-item-content {
  border-radius: var(--border-radius-md);
  background-color: var(--fake-frost);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-grid-item-content > img {
  width: 237px;
}
.logo-grid-item:nth-child(odd) .logo-grid-item-gradient-bar, .logo-grid-item:nth-child(odd)::after {
  background: transparent linear-gradient(90deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
}
.logo-grid-item:nth-child(even) .logo-grid-item-gradient-bar, .logo-grid-item:nth-child(even)::after {
  background: transparent linear-gradient(90deg, var(--cyan) 0%, var(--cyan-darkest) 100%) 0% 0% no-repeat padding-box;
}
.logo-grid-item-gradient-bar {
  height: 16px;
  width: 85%;
  border-bottom-left-radius: var(--border-radius-md);
  border-bottom-right-radius: var(--border-radius-md);
}
@media screen and (max-width: 1400px) {
  .logo-grid-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .logo-grid-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .logo-grid-item-content > img {
    max-width: 237px;
    width: 40vw;
  }
}

.text-list-row-container {
  width: 100%;
  padding: 0rem 2rem;
}
.text-list-row-content {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-rule: 3px solid var(--cyan);
       column-rule: 3px solid var(--cyan);
  width: 100%;
  color: white;
  padding: 0;
  margin: 0;
  position: relative;
}
.text-list-row-content::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--cyan);
}
.text-list-row-item {
  display: block;
  margin-bottom: 0.5rem;
  padding: 0 2rem;
  position: relative;
  font-size: 0.74rem;
}
@media screen and (max-width: 1400px) {
  .text-list-row-content {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 800px) {
  .text-list-row-content {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.form-and-text-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.form-and-text-members {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  gap: 0.75rem;
  margin-top: 3.5rem;
  margin-bottom: -2.5rem;
  z-index: 2;
  position: relative;
}
.form-and-text-members > img {
  height: 110px;
  width: 110px;
}
.form-and-text-text {
  position: relative;
  padding: 0 2.72rem 2.72rem;
  width: 38%;
  height: -moz-fit-content;
  height: fit-content;
  color: white;
}
.form-and-text-text-wysiwyg {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-and-text-text-wysiwyg > * {
  margin: 0;
}
.form-and-text-text-wysiwyg a {
  color: var(--cyan);
}
.form-and-text-text-wysiwyg h4 {
  font-size: var(--text-size-md);
}
.form-and-text-text-wysiwyg p {
  font-size: var(--text-size-xxs);
}
.form-and-text-form {
  background-color: var(--fake-frost);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 3rem;
  width: 54%;
  position: relative;
}
.form-and-text-form button {
  font-size: var(--text-size-sm);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  z-index: 2;
}
.form-and-text-form::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-image: url("../images/home/frosted-glass/bg-multi-use-corner-align-top-left.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 600px auto;
  filter: blur(0);
  z-index: 0;
}
.form-and-text-form-content {
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 1;
}
.form-and-text-form-content > h2 {
  line-height: 1.2;
}
.form-and-text-form-content *::-moz-placeholder {
  color: var(--cyan);
  opacity: 0.3;
}
.form-and-text-form-content *::placeholder {
  color: var(--cyan);
  opacity: 0.3;
}
.form-and-text-form-content .hf-fields-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.53rem;
}
.form-and-text-form-content * {
  margin: 0;
  color: white;
}
.form-and-text-form-content section {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
  gap: 0.5rem;
}
.form-and-text-form-content section.row {
  flex-direction: row;
  gap: 1rem;
}
.form-and-text-form-content label,
.form-and-text-form-content span,
.form-and-text-form-content input,
.form-and-text-form-content textarea {
  font-size: var(--text-size-xs);
}
.form-and-text-form-content label {
  white-space: nowrap;
}
.form-and-text-form-content input {
  flex-grow: 1;
  border: none;
  border-bottom: 2px solid var(--cyan);
  border-radius: 0;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: unset;
  padding: 0;
}
.form-and-text-form-content textarea {
  border: 2px solid var(--cyan);
  border-radius: var(--border-radius-small);
  box-shadow: unset;
  padding: 0;
  width: 100%;
  padding: 0.4rem;
  min-height: 11ch;
}
.form-and-text-form-content::before {
  content: url("../images/home/icon-arrow-red-gold.svg");
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(135deg) translate(16px, 15px);
}
.form-and-text-form-diamond-bgs {
  position: absolute;
  top: -50px;
  left: -30px;
  display: flex;
  gap: 20px;
  transform: scaleY(-1);
  z-index: -1;
}
.form-and-text-form-diamond-bgs .--cyan {
  height: 320px;
  width: 320px;
}
.form-and-text-form-diamond-bgs .--orange {
  height: 130px;
  width: 130px;
}
.form-and-text-text-diamond {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -50px;
  margin-bottom: 0.9rem;
  z-index: 1;
}
.form-and-text-text-diamond > section {
  height: 350px;
  width: 350px;
  position: relative;
}
.form-and-text-text-diamond > section .logo {
  position: absolute;
  top: 27%;
  left: 27%;
  height: 128px;
  width: auto;
}
@media screen and (max-width: 1400px) {
  .form-and-text-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
  }
  .form-and-text-content > * {
    width: 100%;
  }
  .form-and-text-form {
    padding: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .form-and-text-form::after {
    background-size: 350px;
  }
  .form-and-text-form {
    padding: 1.5rem 1.5rem 2rem;
  }
  .form-and-text-form button {
    margin: 0;
  }
  .form-and-text-form-content h2 {
    font-size: var(--text-size-lg);
  }
  .form-and-text-form-content {
    padding: 0;
    gap: 1.5rem;
  }
  .form-and-text-form-content::before {
    display: none;
  }
  .form-and-text-form-content section.row {
    flex-direction: column;
    gap: 0.2rem;
  }
  .form-and-text-form-diamond-bgs {
    left: -15px;
  }
  .form-and-text-form-diamond-bgs .--cyan {
    height: 180px;
    width: 180px;
  }
  .form-and-text-form-diamond-bgs .--orange {
    height: 60px;
    width: 60px;
  }
  .form-and-text-text {
    width: 100%;
    padding: 1rem 1rem 2.7rem;
  }
  .form-and-text-text-diamond > section {
    height: 50vw;
    width: 50vw;
    position: relative;
  }
  .form-and-text-text-diamond > section .logo {
    position: absolute;
    top: 27%;
    left: 27%;
    height: 19vw;
    width: auto;
  }
  .form-and-text-members > img {
    height: 84px;
    width: 84px;
  }
}

.numbered-text-and-image-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  counter-reset: li;
  gap: 2.5rem;
  padding: 0;
}
.numbered-text-and-image-list-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.numbered-text-and-image-list li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: center;
  justify-items: center;
  width: 100%;
}
.numbered-text-and-image-list .item-diamond {
  position: relative;
  height: 220px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: flex-end;
}
.numbered-text-and-image-list .item-diamond::before {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  width: 100%;
  counter-increment: li;
  content: counter(li, decimal-leading-zero);
  color: white;
  font-size: var(--text-size-xl);
  font-weight: bold;
  font-family: var(--font-heavy);
}
.numbered-text-and-image-list .item-diamond > img {
  width: 100%;
  height: 100%;
}
.numbered-text-and-image-list .item-text {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-self: flex-start;
}
.numbered-text-and-image-list .item-text > h5 {
  font-size: var(--text-size-xs);
}
.numbered-text-and-image-list .item-text > p {
  font-size: var(--text-size-xxs);
}
.numbered-text-and-image-list .item-text > * {
  margin: 0;
}
.numbered-text-and-image-list .item-text br {
  display: block;
  margin: 0.2rem 0;
  content: "";
}
.numbered-text-and-image-list .item-mid-img {
  height: auto;
  width: 190px;
}
@media screen and (max-width: 1400px) {
  .numbered-text-and-image-list li {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .numbered-text-and-image-list .item-diamond {
    grid-column: 1/span 2;
    justify-self: center;
  }
}
@media screen and (max-width: 800px) {
  .numbered-text-and-image-list {
    gap: 4rem;
  }
  .numbered-text-and-image-list li {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .numbered-text-and-image-list .item-text {
    justify-self: center;
  }
}

.text-and-custom-icon__wrapper {
  position: relative;
}
.text-and-custom-icon__icon {
  padding-top: 2rem;
  align-items: center;
  max-width: 350px;
  height: auto;
  z-index: 3;
  grid-column: 4/span 2;
}
.text-and-custom-icon__text {
  grid-column: 1/span 3;
  z-index: 2;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 2rem 1rem;
}
.text-and-custom-icon__text::before {
  content: url("../images/home/icon-arrow-red-gold.svg");
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(135deg) translate(16px, 15px);
}
.text-and-custom-icon__text h2 {
  font-size: var(--text-size-md);
  letter-spacing: var(----character-spacing-s);
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0;
}
.text-and-custom-icon__content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  justify-items: center;
  gap: 0;
  background-color: #152f47;
  padding: 2rem 3rem;
  border-radius: var(--border-radius-md);
  position: relative;
}
.text-and-custom-icon__content::after {
  border-radius: var(--border-radius-md);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-image: url("../images/home/frosted-glass/bg-multi-use-corner-align-top-left.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 500px auto;
  transform: rotate(180deg);
  z-index: 0;
}
.text-and-custom-icon__content * {
  margin: 0;
}
.text-and-custom-icon__diamond-bgs {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1 !important;
}
.text-and-custom-icon__diamond-bgs .--cyan {
  position: absolute;
  right: 116px;
  bottom: -54px;
  height: 250px;
  width: 250px;
  background: transparent linear-gradient(330deg, #42ead1 0%, #186465 100%) 0% 0% no-repeat padding-box;
}
.text-and-custom-icon__diamond-bgs .--orange {
  position: absolute;
  bottom: 88px;
  right: -19px;
  height: 120px;
  width: 120px;
  background: transparent linear-gradient(230deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
}
@media screen and (max-width: 1400px) {
  .text-and-custom-icon__content {
    grid-template-columns: repeat(1, 1fr);
    padding: 1.5rem;
    gap: 0;
  }
  .text-and-custom-icon__content::after {
    background-size: 350px;
  }
  .text-and-custom-icon__content > section,
  .text-and-custom-icon__content p {
    width: 100%;
  }
  .text-and-custom-icon__text {
    padding: 1.5rem;
    grid-column: unset;
  }
  .text-and-custom-icon__icon {
    padding-top: 1rem;
    grid-column: unset;
  }
  .text-and-custom-icon__diamond-bgs .--cyan {
    height: 180px;
    width: 180px;
    bottom: -44px;
    right: 75px;
  }
  .text-and-custom-icon__diamond-bgs .--orange {
    height: 90px;
    width: 90px;
    bottom: 63px;
  }
}
@media screen and (max-width: 800px) {
  .text-and-custom-icon__wrapper {
    margin-bottom: 2rem;
  }
  .text-and-custom-icon__content {
    padding: 2rem 1.5rem;
  }
  .text-and-custom-icon__text {
    padding: 0;
  }
  .text-and-custom-icon__text::before {
    display: none;
  }
  .text-and-custom-icon__icon {
    width: 50vw;
  }
}

.past-client-work {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 0;
  align-items: start;
  justify-items: center;
}
.past-client-work__wrapper {
  position: relative;
  padding: 3rem;
}
.past-client-work__bottom-text {
  width: 100%;
  grid-row: 2;
  grid-column: 1/span 2;
  border-radius: var(--border-radius-md);
  background-color: #152f47;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.past-client-work__cta {
  margin-top: 1.5rem;
}
.past-client-work__bottom-wysiwyg {
  max-width: var(--max-text-width-sm);
}
.past-client-work__image-frost {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  position: relative;
  padding: 0.8rem;
}
.past-client-work__image-frost::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--border-radius-md);
  background-color: #152f47;
  background-image: url("../images/home/frosted-glass/bg-multi-use-corner-align-top-left.jpg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 450px auto;
  height: 300px;
  width: 100%;
  transform: scaleX(-1);
  display: block;
}
.past-client-work__client-image {
  position: relative;
  width: 100%;
  z-index: 2;
}
.past-client-work__client-image-wrapper {
  padding: 1rem;
  width: 100%;
  position: relative;
}
.past-client-work__diamonds {
  position: absolute;
  height: 100%;
  width: 100%;
  top: -40px;
  left: 0;
  z-index: -1;
}
.past-client-work__diamonds .--cyan {
  background: transparent linear-gradient(180deg, #42ead1 0%, #186465 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
  right: 120px;
  height: 200px;
  width: 200px;
}
.past-client-work__diamonds .--orange {
  background: transparent linear-gradient(200deg, var(--gold) 0%, var(--red) 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 130px;
  right: -20px;
  height: 100px;
  width: 100px;
}
@media screen and (max-width: 1400px) {
  .past-client-work {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
  .past-client-work__client-image-wrapper {
    max-width: 700px;
  }
  .past-client-work__bottom-text {
    grid-row: unset;
    grid-column: unset;
  }
  .past-client-work__client-image-wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .past-client-work__wrapper {
    padding: 1.5rem;
  }
  .past-client-work__image-frost::before {
    height: 30vw;
    background-size: 250px;
  }
  .past-client-work__bottom-text {
    padding: 1rem;
  }
  .past-client-work__diamonds .--cyan {
    right: 70px;
    height: 90px;
    width: 90px;
    top: 10px;
  }
  .past-client-work__diamonds .--orange {
    top: 90px;
    right: -10px;
    height: 40px;
    width: 40px;
  }
}

.wysiwyg-content {
  font-size: 1rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wysiwyg-content > * {
  margin: 0;
  line-height: 1;
}
.wysiwyg-content strong {
  color: var(--cyan);
}
.wysiwyg-content p {
  line-height: 1.6;
}
.wysiwyg-content ol {
  list-style: decimal;
}
.wysiwyg-content ol > li {
  margin-left: 2rem;
  line-height: 2;
}
.wysiwyg-content ul {
  list-style: circle;
}
.wysiwyg-content ul > li {
  margin-left: 2rem;
  line-height: 2;
}
.wysiwyg-content h2 {
  font-size: var(--text-size-xxl);
}
.wysiwyg-content h3 {
  font-size: var(--text-size-lg);
}
.wysiwyg-content h4 {
  font-size: var(--text-size-md);
}

.hidden {
  display: none;
}

.hidden--visually {
  -webkit-clip-path: inset(100%);
          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;
}

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

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