/* -- TBO (TO BE ORGANIZED) -- */

#footer svg {
  color: var(--customContent);
  fill: var(--customContent);
}

#cookie-consent {
  padding-bottom: 0 !important;
}

.sp-card-attribute {
  margin-right: 15px;
  padding: 0;
  margin: 0 5px 0 0;
  display: inline;
  width: auto;
}

.sp-card-attribute h6 {
  margin: 0 !important;
  margin-bottom: 0 !important;
  display: inline;
  width: auto;
}


h1, h2, h3, h4, h5, h6 {
  word-spacing: -0.25em !important;
}

.text-carousel {
    display: inline-block;
    font-weight: bold;
    color: #007bff; /* Custom text color */
    transition: opacity 0.5s ease-in-out; /* Smooth fade effect */
    opacity: 1;
}

 .overflow-hidden {
  overflow: hidden !important;
 }
 
 .overflow-visible {
  overflow: visible !important;
 }
 
.lg-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px; /* You can adjust based on the size you want */
  cursor: grab;
}

.lg-carousel-inner {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  scroll-behavior: smooth; /* For smooth scrolling */
  overflow-x: auto; /* Enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
  padding: 10px;
}

.lg-carousel-item {
  flex: 0 0 auto;
  min-width: 500px;
  max-width: 500px;
  background: #eee;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  height: 500px; /* Ensure the items fill the container's height */
}

.lg-carousel-item:active {
  transform: scale(0.95); /* Slight zoom effect on click */
}

@media (min-width: 600px) {
  .lg-carousel-item {
    min-width: calc(50% - 10px); /* 2 columns on tablets */
  }
}

@media (min-width: 900px) {
  .lg-carousel-item {
    min-width: calc(33.333% - 10px); /* 3 columns on desktops */
  }
}

#footer {
  color: var(--customContent) !important;
  fill: var(--customContent) !important;
/*   background-color: var(--customBg) !important; */
  border-radius: var(--globalInputRadius);
}

/* Create the fixed, rounded overlay using the ::after pseudo-element */
  
  .orb-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Ensures background doesn't interfere with content */
  }

  /* Orb with responsive size, centered animation */
  .orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--size);
    height: var(--size);
    background-color: var(--color);
    border-radius: 50%;
    filter: blur(var(--blur));
    opacity: 0.7;
    animation: breath var(--duration) ease-in-out infinite;
    transform: translate(-50%, -50%) scale(1); /* Ensure the orb is perfectly centered */
  }

  /* Keyframes for breathing effect */
  @keyframes breath {
    0%, 100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.4;
    }
    50% {
      transform: translate(-50%, -50%) scale(1.15);
      opacity: 0.8;
    }
  }

.split-text {
  visibility: hidden; /* Initially hide the text */
}

.beacon-container {
  display: flex;
  align-items: center;
  overflow: visible;
}

.beacon {
  position: relative;
  display: inline-block;
  overflow: visible;
  width: 8px;
  height: 8px;
  background-color: rgba(150, 150, 150, 1);
  border-radius: 50%;
  margin-right: 15px; /* Space between beacon and text */
  margin-top: 0;
  margin-bottom: 7px;
  z-index: 9;
}

.beacon::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 0%;
  width: 8px;
  height: 8px;
  background-color: inherit;
  border-radius: 50%;
  transform: scale(1);
  opacity: 1;
  animation: ping 1s infinite;
  z-index: 10;
}

.beacon.status-red {
  background-color: rgb(219, 23, 49) !important;
}

.beacon.status-yellow {
  background-color: rgb(219, 167, 22) !important;
}

.beacon.status-green {
  background-color: rgb(20, 209, 137) !important;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20S% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.beacon-text {
  display: inline-block;
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.lazy-image.fade-in {
  opacity: 1;
}

.split-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.split-word {
  display: none; /* Initially hide all phrases */
}

#text-looper span {
  padding-bottom: 0px;
}

#text-looper p {
  padding: 0;
  margin: 0;
}

/* -- END TBO (TO BE ORGANIZED) -- */

/* -- General -- */

html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  font-family: var(--pFF), -apple-system, Helvetica, sans-serif;
  font-weight: var(--pFW);
  font-size: var(--baseFontSize);
  font-feature-settings: var(--paragraphFontFeatureSettings) !important;
  background-color: var(--bg);
  color: var(--mutedLightContent);
  overflow-x: hidden !important;
	scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
/* 	padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left); */
}

.scroll-lock {
  -webkit-overflow-scrolling: none;
  touch-action: none;
  overflow: hidden !important;
}

/* -- Color Theming -- */

.light-content, .content-light, .content-light svg, .light-content svg, .content-light h1, .content-light h2, .content-light h3, .content-light h4, .content-light h5, .content-light h6, .content-light a, .content-light figcaption, .content-light i, i.content-light, .content-light .nav-wordmark, .sub-icon .content-light {
  color: var(--lightContent) !important;
	fill: var(--lightContent) !important;
}

.content-light p {
  color: var(--mutedLightContent) !important;
}

.content-light .nav-logo svg {
  fill: var(--lightContent) !important;
}

.custom-content, .content-custom, .content-custom svg, .content-custom h1, .content-custom h2, .content-custom h3, .content-custom h4, .content-custom h5, .content-custom h6, .content-custom a, .content-custom figcaption, .content-custom i, i.content-custom, .content-custom .nav-wordmark, .sub-icon .content-custom {
  color: var(--customContent);
	fill: var(--customContent);
}

.custom-content.navbar-toggler.icon-bar, .btn {
  background-color: var(--customContent) !important;
}

.content-custom p, .btn {
  color: var(--mutedCustomContent) !important;
}

.content-custom .nav-logo svg {
  fill: var(--customContent) !important;
}

.navbar-toggler, .navbar-toggler:focus {
  outline: none;
  border: none;
  border-style: none;
  box-shadow: none;
}

.content-custom #nav-content a {
  text-decoration-color: var(--customContent) !important;
}

.content-custom-pn h2 {
  color: var(--customContent) !important;
}

.content-custom-pn {
  color: var(--lightContent) !important;
}

.content-light .navbar-toggler .icon-bar {
  background-color: var(--lightContent);
}

.content-light #nav-content a {
  text-decoration-color: var(--lightContent) !important;
}

.dark-content, .content-dark, .content-dark svg, .content-dark h1, .content-dark h2, .content-dark h3, .content-dark h4, .content-dark h5, .content-dark h6, .content-dark a, .content-dark figcaption, .content-dark i, i.content-dark, .content-dark .nav-wordmark, .sub-icon .content-dark {
  color: var(--darkContent) !important;
	fill: var(--darkContent) !important;
}

.content-dark p {
  color: var(--mutedDarkContent) !important;
}

.content-dark .nav-logo svg {
  fill: var(--darkContent) !important;
}

.content-dark .navbar-toggler .icon-bar {
  background-color: var(--darkContent);
}

.content-dark #nav-content a {
  text-decoration-color: var(--darkContent) !important;
}

/* -- Typography -- */

p {
  font-size: var(--baseFontSize);
  letter-spacing: var(--pLS);
  word-spacing: -0.5px;
  line-height: var(--pLH);
  color: var(--mutedLightContent);
  font-weight: var(--pFW);
  margin-bottom: 2rem;
}

@media screen and (min-width: 1000px) {
  p {
    font-size: calc(var(--baseFontSize) * 1.05);
  }
}

bold,
strong,
em {
  color: var(--mutedContent);
  font-weight: calc(var(--paragraphFontWeight) + 200);
}

/* i {
  font-family: "branco";
} */

s,
strike {
  font-weight: inherit;
  text-decoration: none !important;
  opacity: 0.65
}

/* u {
  font-family: "branco" !important;
  text-decoration: none !important;
} */

h1, h2, h3, h4, h5, h6 {
  padding: 3px 0;
	margin: 0;
}

h1,
.h1 {
  font-size: calc(var(--baseFontSize) * var(--h1M));
  letter-spacing: var(--h1LS);
  line-height: var(--h1LH);
  font-weight: var(--h1FW);
  text-transform: var(--h1TT);
  font-family: var(--hFF), -apple-system, Helvetica, sans-serif;
  font-feature-settings: var(--hFFS) !important;
}

@media only screen and (max-width:480px) {
  h1,
  .h1 {
    font-size: calc(var(--baseFontSize) * var(--h1MSM));
    }
}

@media only screen and (min-width:1200px) {
  h1,
  .h1 {
    font-size: calc(var(--baseFontSize) * var(--h1MMD));
  }
}

@media only screen and (min-width:1950px) {
  h1,
  .h1 {
    font-size: calc(var(--baseFontSize) * var(--h1MXL));
  }
}

h2,
.h2 {
  font-size: calc(var(--baseFontSize) * var(--h2M));
  letter-spacing: var(--h2LS);
  line-height: var(--h2LH);
  text-transform: var(--h2TT);
  font-weight: var(--h2FW);
  font-family: var(--hFF), -apple-system, Helvetica, sans-serif;
  font-feature-settings: var(--hFFS) !important;
}

@media only screen and (max-width:480px) {
  h2,
  .h2 {
    font-size: calc(var(--baseFontSize) * var(--h2MSM));
    }
}

@media only screen and (min-width:1200px) {
  h2 {
    font-size: calc(var(--baseFontSize) * var(--h2MMD));
  }
}

@media only screen and (min-width:1950px) {
  h2 {
    font-size: calc(var(--baseFontSize) * var(--h2MXL));
  }
}

h3,
.h3 {
  font-size: calc(var(--baseFontSize) * var(--h3M));
  letter-spacing: var(--h3LS);
  line-height: var(--h3LH);
  text-transform: var(--h3TT);
  font-weight: var(--h3FW);
  font-family: var(--hFF), -apple-system, Helvetica, sans-serif;
  font-feature-settings: var(--hFFS) !important;
}

@media only screen and (max-width:480px) {
  h3,
  .h3 {
    font-size: calc(var(--baseFontSize) * var(--h3MSM));
    }
}

@media only screen and (min-width:1200px) {
  h3,
  .h3 {
    font-size: calc(var(--baseFontSize) * var(--h3MMD));
  }
}

@media only screen and (min-width:1950px) {
  h3,
  .h3 {
    font-size: calc(var(--baseFontSize) * var(--h3MXL));
  }
}

h4,
.h4 {
  font-size: calc(var(--baseFontSize) * var(--h4M));
  letter-spacing: var(--h4LS);
  line-height: var(--h4LH);
  text-transform: var(--h4TT);
  font-weight: var(--h4FW);
  font-family: var(--hFF), -apple-system, Helvetica, sans-serif;
  font-feature-settings: var(--hFFS) !important;
}

@media only screen and (max-width:480px) {
  h4,
  .h4 {
    font-size: calc(var(--baseFontSize) * var(--h4MSM));
    }
}

@media only screen and (min-width:1200px) {
  h4,
  .h4 {
    font-size: calc(var(--baseFontSize) * var(--h4MMD));
  }
}

@media only screen and (min-width:1950px) {
  h4,
  .h4 {
    font-size: calc(var(--baseFontSize) * var(--h4MXL));
  }
}

h5,
.h5 {
  font-size: calc(var(--baseFontSize) * var(--h5M));
  letter-spacing: var(--h5LS);
  line-height: var(--h5LH);
  text-transform: var(--h5TT);
  font-weight: var(--h5FW);
  font-family: var(--pFF), -apple-system, Helvetica, sans-serif;
  font-feature-settings: var(--hFFS) !important;
}

@media only screen and (max-width:480px) {
  h5,
  .h5 {
    font-size: calc(var(--baseFontSize) * var(--h5MSM));
    }
}

@media only screen and (min-width:1200px) {
  h5,
  .h5 {
    font-size: calc(var(--baseFontSize) * var(--h5MMD));
  }
}

@media only screen and (min-width:1950px) {
  h5,
  .h5 {
    font-size: calc(var(--baseFontSize) * var(--h5MXL));
  }
}

h6,
.h6 {
  font-size: calc(var(--baseFontSize) * var(--h6M));
  letter-spacing: var(--h6LS);
  line-height: var(--h6LH);
  text-transform: var(--h6TT);
  font-weight: var(--h6FW);
  opacity: 0.75;
  font-family: var(--pFF), -apple-system, Helvetica, sans-serif;
  font-feature-settings: var(--hFFS) !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: var(--lightContent);
}

h6, .h6 {
  color: var(--mutedContent);
}

.centered-text {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

figcaption {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: calc(var(--baseFontSize) * 0.8);
  letter-spacing: var(--pLS);
  line-height: 1.2;
  font-weight: var(--pFW);
  padding: 0 2px 0 0;
  opacity: 0.8;
}

figcaption.slide-caption {
  font-size: calc(var(--baseFontSize) * 1);
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  opacity: 0.8;
  color: var(--lightContent);
}

.split-container {
  overflow: hidden;
}

.split-text span {
  display: inline-block;
  padding-bottom: 0.085em;
}

.split-text {
  overflow: hidden;
}

.split-text .line {
  display: block;
  opacity: 0; /* Hide lines initially */
  animation-duration: 1s; /* Adjust duration as needed */
}

.split-text .line.animate__animated {
  opacity: 1; /* Ensure lines become visible during animation */
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

ul {
  list-style-type: none;
  margin-top: 10px;
  /* margin-left: 30px; */
}

ol {
  margin-top: 10px;
}

ul li, ol li {
  padding: 0;
  color: var(--lightContent) !important;
  margin-bottom: 0;
}

ul li a, ol li a {
  text-decoration: none !important;
}

ul li p, ol li p {
  padding: 0;
  margin: 0;
  color: var(--lightContent) !important;
}

ul li {
  margin-left: 0px;
  margin-top: 5px;
}

ul li::before {
  content: '•';
  position: absolute;
  margin-left: -30px;
  margin-top: 0px;
}

ol {
  margin-left: 3px;
}

ol li::before {
  color: var(--lightContent) !important;
}

/* -- Show More Text -- */

.summaryText {
  display: flex;
  flex-wrap: wrap;
}

.summaryText a {
  order: 2;
}

.summaryText p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  line-height: 1.6em;
  max-height: calc(3 * 1.6em);
}

.summaryText p::after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2em;
}

.show-less {
  display: none;
}

.show-less:target {
  display: block;
}

.show-less:target ~ p {
  display: block;
  max-height: 100%;
  position: relative;
}

.show-less:target ~ p::before {
  content: "";
}

.show-less:target ~ p::after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2em;
  background: none;
}

.show-less:target + a {
  display: none;
}

/* Presentation styles */

.wrapper {
  max-width: 300px;
  margin: 50px auto;
}

.wrapper p {
  font-size: 16px;
  line-height: 20px;
}

/* -- Marquee -- */

.marquee {
  width: 100%;
  overflow: hidden;
}

/* -- Text Columns -- */

.one-text-col {
  column-count: 1;
}

.two-text-col {
  column-count: 2;
}

.three-text-col {
  column-count: 3;
}

.four-text-col {
  column-count: 4;
}

@media only screen and (max-width:480px) {
  .one-text-col {
    column-count: 1;
  }

  .two-text-col {
    column-count: 1;
  }

  .three-text-col {
    column-count: 1;
  }

  .four-text-col {
    column-count: 1;
  }
}

/* -- Text Limiter -- */

.tl-third p, .tl-third h1, .tl-third h2, .tl-third h3, .tl-third h4, .tl-third h5, .tl-third h6 {
  max-width: 33.33% !important;
  width: 33.33% !important;
}

@media only screen and (max-width:480px) {
    .tl-third p, .tl-third h1, .tl-third h2, .tl-third h3, .tl-third h4, .tl-third h5, .tl-third h6 {
    max-width: 100% !important;
    width: 100% !important;
  }
}

.tl-half p, .tl-half h1, .tl-half h2, .tl-half h3, .tl-half h4, .tl-half h5, .tl-half h6 {
  max-width: 50% !important;
  width: 50% !important;
}

@media only screen and (max-width:480px) {
    .tl-half p, .tl-half h1, .tl-half h2, .tl-half h3, .tl-half h4, .tl-half h5, .tl-half h6 {
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* -- Background Colors -- */

.bg-global {
  background-color: var(--bg);
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-dark { 
  background-color: var(--darkContent) !important;
}

.bg-light {  
  background-color: var(--lightContent) !important;
}

.bg-muted {
  background-color: var(--mutedBg) !important;
}

/* -- Background Image -- */

.has-bg {
  height: 100%;
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  z-index: -5;
  overflow: hidden !important;
}

.is-bg {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  z-index: -6;
}

#layered-bg {
  height: 100%; /* Full viewport height */
  width: 100%; /* Full viewport width */
  overflow: hidden; /* Hide overflow from parallax movement */
  position: relative; /* Allow absolute positioning of child elements */
  left: 0;
  right: 0;
}

.has-layered-bg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.is-layered-bg {
  position: absolute;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  transition: transform 0.1s ease-out;
  overflow: visible;
}

.pdp-hero-logo-container {
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-hero-logo-container.square svg {
	height: 160px !important;
	width: auto;
}

.pdp-hero-logo-container.wide svg {
	height: 100px !important;
	width: auto;
}

.pdp-hero-logo-container.ultra-wide svg {
	height: auto !important;
	width: 100%;
  max-width: 600px;
  padding: 0 15px;
}

.is-logo {
  object-fit: contain;
  padding: 0 1.5rem;
  margin-top: -40px;
  width: 100%;
  z-index: 2;
}

.is-logo.wide {
  min-height: 100px;
  max-height: 10vh;
}

.is-logo.square {
  max-width: 170px;
  max-height: 170px;
}

@media screen and (max-width: 500px) {
  .is-logo.wide {
    min-height: 100px;
    max-height: 10vh;
  }

  .is-logo.square {
    max-width: 170px;
    max-height: 170px;
  }
}

@media screen and (min-width: 1200px) {
  .is-logo.wide {
    min-height: 100px;
    max-height: 15vh;
  }

  .is-logo.square {
    max-width: 200px;
    max-height: 200px;
  }
}

@media screen and (max-width: 480px) and (orientation: landscape) {
  .is-logo.wide {
    max-height: 10px !important;
  }
}

.has-bg.carousel-image {
  z-index: 2;
}

.has-bg.carousel-image .is-bg {
  z-index: 1;
}

/* -- Nav -- */

.navbar-expand-xl .navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 2rem;
}

.last-nav-link {
  padding-right: 0 !important;
}

ul.nav-list li:before {
  content: none;
  position: relative;
  margin-left: 0;
}

.nav-logo {
  display: inline-block;
  height: var(--logoSizeDesktop);
  width: var(--logoSizeDesktop);
  max-height: 80px;
  max-width: 80px;
  margin-right: 10px;
  margin-left: var(--logoAdjust);
}

@media only screen and (max-width:480px) {
    .nav-logo {
      height: var(--logoSizeMobile);
      width: var(--logoSizeMobile);
    }
}

.nav-logo svg {
  fill: var(--lightContent);
	filter: drop-shadow(0 0 35px #00000025);
}

.nav-wordmark {
  vertical-align: middle;
  display: inline-block;
  font-size: 16px;
  transition: var(--transition5);
}

.nav-link {
  color: var(--mutedLightContent);
  transition: var(--transition5);
  padding: 0;
  letter-spacing: var(--h1LS);
  line-height: 1;
	font-family: var(--hFF);
  text-transform: var(--h1TT);
  font-weight: var(--h1FW);
	opacity: 0.8;
  height: auto;
  pointer-events: auto;
  font-size: calc(var(--baseFontSize) * var(--h1MSM));
}

.nav-link span {
  margin-right: 0 !important;
}

@media only screen and (max-width:480px) {
	.nav-link {
		font-size: calc(var(--baseFontSize) * var(--h1MSM));
    line-height: 1;
		}
}

@media only screen and (min-width:1500px) {
  .nav-link {
    font-size: calc(var(--baseFontSize) * 5);
    }
}

@media only screen and (min-width:1950px) {
  .nav-link {
    font-size: calc(var(--baseFontSize) * 7);
    }
}

.nav-link:focus,
.nav-link:hover {
  color: var(--customContent);
  transition: var(--transition5);
  opacity: 0.7;
}

.nav-link.active {
  transition: var(--transition5);
	opacity: 1;
}

.navbar-toggler .icon-bar {
  background-color: var(--customContent);
  transform: rotate(0deg) translate(0px, 0px);
  height: 2px;
  transition: var(--transition);
  outline: none;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 0;
  transition: var(--transition);
}

.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 7px;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(3.8px, 6px);
  transition: var(--transition);
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
  transform: rotate(-45deg) translate(0, -2.4px);
  transition: var(--transition);
}

#nav {
  height: 0;
  transition: all 0.4s cubic-bezier(.27,0,.05,.98);
  z-index: 9998;
}

#nav.nav-bg {
  height: 100vh;
  background-color: var(--customBg);
  transition: all 0.5s cubic-bezier(.27,0,.05,.98);
}

#menu.navbar-collapse ul {
  padding: 0;
  margin: 0;
}

.nav-container {
  display: flex;
  height: calc(100vh - 90px);
  padding-bottom: 90px;
  padding-left: 20px !important;
  padding-right: 5vw !important;
}

.nav-content {
  opacity: 0;
  display: none;
  transition: var(--transition5);
  text-align: center;
}

.nav-content.show {
  opacity: 1;
  display: flex;
  transition: var(--transition5);
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-content: flex-start;
  align-items: center;
}

#nav-secondary > div > div > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nav-extra-content a {
  opacity: 0.8;
}

.nav-extra-content a:hover {
  opacity: 1;
}

.mt-clear-nav {
  margin-top: 80px !important;
}

/* -- Menus -- */

.menu {
  
}

ul.menu-list {
  list-style-type: none;
  list-style-position: inside;
  padding-left: 0 !important;
  margin-top: 0;
  margin-bottom: 0;
}

ul.menu-list.inline li.menu-item {
  display: inline-block;
  margin-right: 20px;
  width: auto;
}

ul.menu-list.stacked {
  width: 100%;
}

ul.menu-list.stacked li.menu-item {
  display: block;
  width: 100%;
}

ul.menu-list.stacked.divided li.menu-item {
  content: " ";
  display: block;
  width: 100%;
  padding: 16px 0 14px 0;
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: solid 1px var(--lightContent);
  opacity: 0.7;
}

ul.menu-list.stacked.divided:first-child {
  border-top: solid 1px var(--mutedContent);
}

li.menu-item {
  text-decoration: none;
  opacity: 0.7;
  transition: var(--transition);
  list-style-type: none;
}

li.menu-item:before {
  display: none;
}

li.menu-item:hover {
  opacity: 1;
  transition: var(--transition);
}

a.menu-item-wrapper {
  text-decoration: none;
  opacity: 1 !important;
}

a.menu-item-wrapper:last-child li.menu-item {
  margin-right: 0 !important;
}

.menu-item-icon {
  
}

.menu-item-icon i {
  font-size: var(--baseFontSize);
}

.menu-item-icon.sm i {
  font-size: calc(var(--baseFontSize) * 1);
}

.menu-item-icon.md i {
  font-size: calc(var(--baseFontSize) * 1.3);
}

.menu-item-icon.lg i {
  font-size: calc(var(--baseFontSize) * 1.6);
}

.menu-item-icon.spaced {
  position: absolute;
  margin-left: auto;
  margin-right: 0;
  left: auto;
  right: 0;
}

.menu-item-title {
  display: inline-block;
  text-decoration: underline;
  line-height: 1;
}

/*-- Dropdown Menu / Filter Menu --*/

.sp-filter-wrapper {
  position: relative;
  z-index: 14;
}

.sp-filter-fixed {
  position: fixed;
  bottom: 20px;
  top: auto;
  width: 100%;
}

@media only screen and (min-width:1200px) {
  .sp-filter-fixed {
    bottom: 40px;
  }
}
 
ul.sp-filter-menu {
  background-color: var(--mutedBgOp);
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
  border-radius: var(--globalInputRadius);
  padding: 20px 15px;
  margin-top: 15px !important;
  margin-bottom: 10px !important;
  box-shadow: 0 0 3000px 3000px #00000066;
  border: none;
  z-index: 15;
}

ul.sp-filter-menu li::before {
  content: none;
}

ul.sp-filter-menu li {
  color: var(--mutedLightContent);
  font-size: var(--baseFontSize);
  padding: 0 !important;
  line-height: 1;
  transition: var(--transition);
}

ul.sp-filter-menu li:hover {
  color: var(--lightContent);
  transition: var(--transition);
}

ul.sp-filter-menu li.sp-filter-item a:hover {
  background: none !important;
}

ul.sp-filter-menu li.sp-filter-item.active-tag a{
  color: var(--primary) !important;
}

span.sp-active-dropdown {
/*   border-bottom: 2px dotted #ffffff;
  border-bottom-color: var(--primary); */
}

.sp-filter-btn {
  outline: none !important;
  box-shadow: none;
  padding: 7px 25px 9px 25px; !important;
  background-color: var(--bgOpLight);
  color: var(--darkContent) !important;
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border-radius: var(--globalInputRadius) !important;
  box-shadow: 0 10px 50px #0000004f;
  border: none;
  z-index: 13;
  font-size: calc(var(--baseFontSize) * var(--h5M));
  letter-spacing: var(--h5LS);
  line-height: var(--h5LH);
  text-transform: var(--h5TT);
  font-weight: var(--h5FW);
  font-family: var(--pFF), -apple-system, Helvetica, sans-serif;
  font-feature-settings: var(--hFFS) !important;
}

@media only screen and (max-width:480px) {
.sp-filter-btn {
    font-size: calc(var(--baseFontSize) * var(--h5MSM));
    }
}

.sp-filter-btn:focus {
 outline: none;
}

.sp-filter-btn-icon {
  
}

.dropdown-toggle::after {
    display: none;
}

.grain-overlay {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.grain-overlay::before {
  position: absolute;
  content: '';
  background-image: url('https://cdn.leogasga.co/noise@2x_mono.png');
  background-size: 200px;
  mix-blend-mode: screen;
  filter: contrast(2);
  width: 300%;
  height: 300%;
  left: -125%;
  top: -125%;
  animation: grain 5s steps(10) infinite;
}

.grain-overlay-opacity-0 {
  opacity: 0;
}

.grain-overlay-opacity-1 {
  opacity: 0.1;
}

.grain-overlay-opacity-2 {
  opacity: 0.2;
}

.grain-overlay-opacity-3 {
  opacity: 0.3;
}

.grain-overlay-opacity-4 {
  opacity: 0.4;
}

.grain-overlay-opacity-5 {
  opacity: 0.5;
}

.grain-overlay-opacity-6 {
  opacity: 0.6;
}

.grain-overlay-opacity-7 {
  opacity: 0.7;
}

.grain-overlay-opacity-8 {
  opacity: 0.8;
}

.grain-overlay-opacity-9 {
  opacity: 0.9;
}

.grain-overlay-opacity-10 {
  opacity: 1;
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  20% {
    transform: translate(-15%, 5%);
  }
  30% {
    transform: translate(7%, -25%);
  }
  40% {
    transform: translate(-5%, 25%);
  }
  50% {
    transform: translate(-15%, 10%);
  }
  60% {
    transform: translate(15%, 0%);
  }
  70% {
    transform: translate(0%, 15%);
  }
  80% {
    transform: translate(3%, 35%);
  }
  90% {
    transform: translate(-10%, 10%);
  }
}

.hero-shade-fade-out.top {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 80%);
  transition: var(--transition);
}

.hero-shade-fade-out.bottom {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
  background: linear-gradient(0deg, var(--bg-8-100) 0%, var(--bg-8-0) 80%);
  transition: var(--transition);
}

.hero-shade-fade {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
  background: rgba(5, 5, 5, 0.15);  
  opacity: 1;
  transition: var(--transition5);
}

.hero-shade-fade.top::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 4;
  background: rgba(5, 5, 5, 0.2);
  -webkit-backdrop-filter: blur(30px) saturate(130%);
  backdrop-filter: blur(30px) saturate(130%);
  -webkit-mask-image: linear-gradient(5deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 50%);
  transition: var(--transition);
}

.hero-shade-fade.top.small::after {
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 1) 95%);
  transition: var(--transition);
}

.hero-shade-fade.top.medium::after {
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 80%);
  transition: var(--transition);
}

.hero-shade-fade.top.large::after {
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 50%);
  transition: var(--transition);
}

.hero-shade-fade.top.x-large::after {
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
  transition: var(--transition);
}

.hero-shade-fade.bottom::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
  background: rgba(5, 5, 5, 0.2);
  -webkit-backdrop-filter: blur(30px) saturate(130%);
  backdrop-filter: blur(30px) saturate(130%);
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 50%);
}

.hero-shade-fade.bottom.small::after {
  -webkit-mask-image: linear-gradient(190deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 95%);
  transition: var(--transition);
}

.hero-shade-fade.bottom.medium::after {
  -webkit-mask-image: linear-gradient(190deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 80%);
  transition: var(--transition);
}

.hero-shade-fade.bottom.large::after {
  -webkit-mask-image: linear-gradient(190deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 50%);
  transition: var(--transition);
}

.hero-shade-fade.bottom.x-large::after {
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
  transition: var(--transition);
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (orientation: landscape) {
  .hero-shade-fade.bottom.medium::after {
    -webkit-mask-image: linear-gradient(-170deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 80%);
    transition: var(--transition);
  }
}

.project-carousel-shade-fade {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 30 !important;
  background: rgba(5, 5, 5, 0.15);
}

.project-carousel-shade-fade.bottom::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 32 !important;
  background: rgba(5, 5, 5, 0.6);
  -webkit-backdrop-filter: blur(30px) saturate(130%);
  backdrop-filter: blur(30px) saturate(130%);
  -webkit-mask-image: linear-gradient(20deg, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 80%);
}

.overlay-fade-out {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0 !important;
  background: rgba(5, 5, 5, 0.15);
}

.overlay-fade-out::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1 !important;
  background: rgba(5, 5, 5, 0.6);
  -webkit-backdrop-filter: blur(30px) saturate(130%);
  backdrop-filter: blur(30px) saturate(130%);
  -webkit-mask-image: linear-gradient(20deg, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 80%);
}

.carousel-shade {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
  background: rgba(5, 5, 5, 0.15);
}

.carousel-shade.top::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 4;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.carousel-shade.bottom::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 4;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
}

.carousel-shade.bottom.medium::after {
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.6) 100%);
}

.full-blur {
  
}

.full-blur.small {
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  backdrop-filter: blur(30px) saturate(200%);
}

.full-blur.medium {
  -webkit-backdrop-filter: blur(60px) saturate(200%);
  backdrop-filter: blur(60px) saturate(200%);
}

.full-blur.large {
  -webkit-backdrop-filter: blur(90px) saturate(200%);
  backdrop-filter: blur(90px) saturate(200%);
}

.full-blur.x-large {
  -webkit-backdrop-filter: blur(120px) saturate(200%);
  backdrop-filter: blur(120px) saturate(200%);
}

.hero-shade {
  height: 100%;
  width: 100%;
}

.hero-shade-dark {
  background-color: rgb(5, 5, 5);
}

.hero-shade-light {
  background-color: rgb(250, 250, 250);
}

.hero-shade-opacity-0 {
  opacity: 0;
}

.hero-shade-opacity-1 {
  opacity: 0.1;
}

.hero-shade-opacity-2 {
  opacity: 0.2;
}

.hero-shade-opacity-3 {
  opacity: 0.3;
}

.hero-shade-opacity-4 {
  opacity: 0.4;
}

.hero-shade-opacity-5 {
  opacity: 0.5;
}

.hero-shade-opacity-6 {
  opacity: 0.6;
}

.hero-shade-opacity-7 {
  opacity: 0.7;
}

.hero-shade-opacity-8 {
  opacity: 0.8;
}

.hero-shade-opacity-9 {
  opacity: 0.9;
}

.hero-shade-opacity-10 {
  opacity: 1;
}

.quote {
	display: block;
  margin-bottom: 10px !important;
  letter-spacing: var(--h1LS);
  line-height: var(--h1LH);
  font-weight: var(--h1FW);
  text-transform: var(--h1TT);
  font-family: var(--hFF), -apple-system, Helvetica, sans-serif;
  -feature-settings: var(--hFFS) !important;
  color: var(--primary);
  /*
  color: transparent;
  background-clip: text;
  background-size: cover;
  background-image: linear-gradient(146deg, var(--primary), var(--lightContent)); */
}

/* .quote::before {
  content: '"';
}

.quote::after {
  content: '"';
} */

.quote.small {
  font-size: calc(var(--baseFontSize) * 1.5) !important;
  line-height: 1;
}

.quote.medium {
  font-size: calc(var(--baseFontSize) * 2) !important;
  line-height: 1;
}

.quote.large {
  font-size: calc(var(--baseFontSize) * 2.5) !important;
  line-height: 1;
}

.quote.x-large {
  font-size: calc(var(--baseFontSize) * var(--h1M));
  letter-spacing: var(--h1LS);
  line-height: var(--h1LH);
  font-weight: var(--h1FW);
  text-transform: var(--h1TT);
  font-family: var(--hFF), -apple-system, Helvetica, sans-serif;
  font-feature-settings: var(--hFFS) !important;
}

@media only screen and (max-width:480px) {
.quote.x-large {
    font-size: calc(var(--baseFontSize) * var(--h1MSM));
    }
}

.citation {
	color: var(--mutedContent);
}

.text-default {
  color: var(--lightContent);
}

.text-default a {
  color: var(--lightContent);
}

.text-default a:hover {
  color: var(--muted) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-primary-gradient {
  background-image: linear-gradient( 130deg, var(--primary), var(--secondary));
  background-size: 100%;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.text-faded {
  color: var(--mutedContent) !important;
}

.text-light, .text-light p, .text-light a {
  color: var(--lightContent) !important;
}

.text-light .btn-default {
  background-color: var(--lightContent) !important;
  border: solid 1px var(--lightContent) !important;
  color: var(--darkContent) !important;
}


.text-light h1 {
  color: var(--lightContent) !important;
}

.text-light p,
.text-white-70>p,
.text-white-50>p {
  color: var(--lightContent) !important;
}

.text-dark, .text-dark p, .text-dark a {
  color: var(--lightContentDark) !important;
}

.text-white-50 {
  color: var(--lightContent);
}

.text-white-70 {
  color: var(--mutedContent);
}

.text-white-85 {
  color: var(--mutedContent);
}

.text-white-90 {
  color: var(--mutedContent);
}

.enable-border-radius {
  border-radius: var(--globalCardRadius);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
}

/* -- Text Limiter -- */

.text-limiter-sm {
  max-width: 300px;
}

@media only screen and (max-width:480px) {
  .text-limiter-sm {
    max-width: 100%;
    orphans: 2;
  }
}

.text-limiter-md {
  max-width: 500px;
}

@media only screen and (max-width:480px) {
  .text-limiter-md {
    max-width: 100%;
    orphans: 2;
  }
}

.text-limiter-lg {
  max-width: 700px;
}

@media only screen and (max-width:480px) {
  .text-limiter-lg {
    max-width: 100%;
  }
}

.text-limiter-xl {
  max-width: 900px;
}

@media only screen and (max-width:480px) {
  .text-limiter-xl {
    max-width: 100%;
  }
}

/* -- Intro -- */

.intro-container {
  min-height: 300px;
  margin-top: 100px;
  padding: 20vh 0;
  z-index: 10;
}

@media only screen and (min-width:320px) and (max-width:480px) {
  .intro-container {
    padding: 18vh 0 15vh 0;
  }
}

.intro-content {
  padding-right: 15px;
}


/* -- Sub Cards -- */

.sub-link {
  overflow: hidden;
}

.sub-card {
  min-height: var(--minCardHeight);
  margin-bottom: 0px;
  border-radius: var(--globalCardRadius);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
  padding: 0 !important;
  box-shadow: inset 0 0 10px var(--customContentSuperOp), inset 0 0 1px var(--customContentSuperOp);
  -webkit-box-shadow: inset 0 0 10px var(--customContentSuperOp), inset 0 0 1px var(--customContentSuperOp);
  -moz-box-shadow: inset 0 0 10px var(--customContentSuperOp), inset 0 0 1px var(--customContentSuperOp);
}

.sub-body {
  z-index: 6;
  max-width: 90%;
  padding: 30px 45px;
}

@media screen and (max-width:500px) {
	.sub-body {
    max-width: 97%;
		padding: 14px 25px 14px 25px;
	}
}

@media screen and (min-width:1199px) {
  .sub-body {
    max-width: 65%;
  }
}

.sub-body h3 {
  margin-bottom: 0;
  margin-top: 0;
}

.sub-card-logo-container {
  position: absolute; 
  width: 100%; 
  height: 100%;
	z-index: 5;
}

.sub-card-logo svg {
	fill: var(--lightContent) !important;
  margin-bottom: 20px;
	z-index: 4;
}

.sub-card-logo.square svg {
	height: auto !important;
	width: 140px;
}

.sub-card-logo.wide svg {
	height: auto !important;
	width: 160px;
}

.sub-card-logo.ultra-wide svg {
	height: auto !important;
	width: 280px;
}

.sub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  color: #ffffff;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  margin-top: 15px;
  z-index: 6;
}

.sub-icon i {
  color: var(--lightContent);
  height: 25px;
  width: 25px;
  font-size: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  text-align: center;
}

.sub-price {
  margin-bottom: 3.6px;
}

.sub-subtitle-container {
  display: block;
  max-height: 0;
  max-width: 70%;
  overflow: hidden;
  opacity: 0;
  transition: all ease-in-out .8s;
  padding-right: 100px;
}

.sub-link:hover .sub-subtitle-container {
  max-height: var(--minminCardHeight);
  overflow: visible;
  opacity: 1;
  transition: all ease-in-out .8s;
}

.sub-image-overlay {
  content: "";
  z-index: 5;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.15);
  transition: ease-in-out .5s all;
}

.sub-image-overlay:hover {
  background: rgba(5, 5, 5, 0.05);
  transition: ease-in-out .5s all;
}

.sub-image-overlay::after {
  content: "";
  z-index: 4;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0);
  backdrop-filter: var(--cardGlass);
  -webkit-backdrop-filter: var(--cardGlass);
  -webkit-mask-image: linear-gradient(20deg, black 0%, transparent 50%);
  transition: ease-in-out .5s all;
}

.sub-image, .sub-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: var(--minCardHeight);
  transform: scale(1);
  transition: all .3s cubic-bezier(.3,0,.25,1.01);
  overflow: hidden !important;
  object-fit: cover !important;
  padding: 0;
  margin: 0 !important;
  display: block;
}

.sub-image-container {
  height: 100%;
  padding: 0;
  min-height: var(--minCardHeight);
  margin: 0 !important;
}

.sub-link:hover .sub-image, .sub-link:hover .sub-video {
  transform: scale(1.03);
  transition: all .3s cubic-bezier(.3,0,.25,1.01);
}

/* -- Buttons, CTAs, Links -- */

.btn {
  border-radius: var(--globalInputRadius);
  font-size: calc(var(--baseFontSize) * 0.95);
  font-weight: var(--h5FW);
  letter-spacing: var(--h5LS);
  white-space: nowrap;
  z-index: 999 !important;
  margin-left: 0 !important;
  /* margin-right: 10px !important; */
  overflow: hidden;
  border: var(--border);
}

/* .btn:last-of-type {
  margin-right: 0;
} */

/* @media screen and (min-width:1750px) {
  .btn {
    font-size: calc(var(--baseFontSize) * 1.1);
  }
} */

@media only screen and (min-width:320px) and (max-width:480px) {
  .btn .mfw {
    width: 100%;
  }
}

.btn:hover {
  transform: scale(1.05);
  transition: all 2s cubic-bezier(1, 0, 0, 1);
}

.btn-group-sm>.btn,
.btn-sm {
  padding: 5px 17px 6px 17px;
  font-size: calc(var(--baseFontSize) * 0.85);
}

.btn-group-md>.btn,
.btn-md {
  padding: 8px 26px 12px 30px;
}

.btn-group-lg>.btn,
.btn-lg {
  padding: 15px 40px 20px 40px;
  border-radius: 50px;
  font-size: calc(var(--baseFontSize) * 1.15);
}

@media only screen and (min-width:320px) and (max-width:480px) {
  .btn-group-sm>.btn,
  .btn-sm {
    padding: 6px 25px 10px 15px;
  }

  .btn-group-md>.btn,
  .btn-md {
    padding: 10px 25px 14px 15px;
  }
  
  .btn-md.no-icon {
    padding: 10px 5px 10px 5px;
  }

  .btn-group-lg>.btn,
  .btn-lg {
    padding: 24px 28px 28px 20px;
  }
}

.btn-icon {
  margin-left: 15px;
}

/* -- Forms & Inputs -- */

.form-block {

}

.form-block .form-block-field {
  margin-bottom: 15px;
}

.form-block .form-block-field label {
  display: block;
  width: 100%;
  font-size: 16px;
}

.form-block .form-block-field input {
  color: #ffffff;
  background: none;
  width: 100%;
  border-bottom: 1px solid #ffffffcc;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  unset: all;
  -webkit-appearance: none;
  border-radius: 0;
  transition: var(--transition);
}

.form-block .form-block-field input::-webkit-input-placeholder {
    color: var(--lightContent);
}

.form-block .form-block-field input::-moz-placeholder {
    color: var(--lightContent);
}

.form-block .form-block-field input::-ms-placeholder {
    color: var(--lightContent);
}

.form-block .form-block-field input::placeholder {
    color: var(--lightContent);
}

.form-block .form-block-field input:hover {
  border-bottom: 1px solid #ffffff;
  transition: var(--transition);
}

.form-block .form-block-field input:focus {
  border-bottom: 1px solid var(--primary);
  transition: var(--transition);
}

.form-block .form-block-field textarea {
  color: #ffffff;
  background: none;
  width: 100%;
  border: 1px solid #ffffffcc;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  unset: all;
  border-radius: var(--globalInputRadius);
  margin-top: 15px;
  padding: 15px;
  transition: var(--transition);
}

.form-block .form-block-field textarea:hover {
  border: 1px solid #ffffff;
  transition: var(--transition);
}

.form-block .form-block-field textarea:focus {
  border: 1px solid var(--primary);
  transition: var(--transition);
}

.form-block .form-block-field select {
  background: none;
  color: #ffffff;
  padding: 10px 40px 10px 40px;
  border: 1px solid #ffffffcc;
  margin-top: 15px;
  border-radius: var(--globalInputRadius);
  -webkit-appearance: none;
  outline: none;
  font-size: 20px;
  transition: var(--transition);
}

.btn-default {
  color: var(--darkContent) !important;
  -webkit-box-shadow: inset 0 0 15px var(--customContentOp);
  -moz-box-shadow: inset 0 0 15px var(--customContentOp);
  box-shadow: inset 0 0 15px var(--customContentOp);
  background-color: var(--lightContentOp) !important;
  border: var(--border);
  -webkit-backdrop-filter: var(--glass2);
  backdrop-filter: var(--glass2);
  transition: var(--transition5);
}

.btn-default:hover {
  color: var(--darkContent) !important;
  -webkit-box-shadow: inset 0 0 80px var(--customContent);
  -moz-box-shadow: inset 0 0 80px var(--customContent);
  box-shadow: inset 0 0 80px var(--customContent);
  background-color: var(--lightContent) !important;
  border-color: var(--lightContent) !important;
  transition: var(--transition5);
}

.btn-primary {
  color: var(--darkContent) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  transition: var(--transition5);
}

.btn-primary:hover {
  color: var(--darkContent) !important;
  background-color: var(--lightContent) !important;
  border-color: var(--lightContent) !important;
  transition: var(--transition5);
}

.btn-secondary {
  color: var(--darkContent);
  background-color: var(--secondary);
  border-color: var(--secondary);
  transition: var(--transition5);
}

.btn-secondary:hover {
  color: var(--darkContent);
  border-color: var(--lightContent);
  background-color: var(--lightContent);
  transition: var(--transition5);
}

.btn-harmonic, .btn-glass {
  color: var(--customContent) !important;
  -webkit-box-shadow: inset 0 0 13px var(--customContentSuperOp), 0 5px 30px rgba(0,0,0,0.13);
  -moz-box-shadow: inset 0 0 13px var(--customContentSuperOp), 0 5px 30px rgba(0,0,0,0.13);
  box-shadow: inset 0 0 13px var(--customContentSuperOp), 0 5px 30px rgba(0,0,0,0.13);
  background-color: var(--customContentSuperOp) !important;
  border: 1px solid var(--customContentOp) !important;
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
  transition: var(--transition5);
}

.btn-harmonic:hover, .btn-glass:hover {
  color: var(--customBg) !important;
  -webkit-box-shadow: inset 0 0 150px var(--customContent), 0 10px 40px var(--customContentOp);
  -moz-box-shadow: inset 0 0 150px var(--customContent), 0 10px 40px var(--customContentOp);
  box-shadow: inset 0 0 150px var(--customContent);
  background-color: var(--customContent) !important;
  border: solid 1px var(--customContentSuperOp);
  -webkit-backdrop-filter: var(--glass2);
  backdrop-filter: var(--glass2);
  opacity: 1;
  transition: var(--transition5);
}

.btn-harmonic.text-invert, .btn-glass.text-invert {
  color: var(--darkContent) !important;
}

.btn-text-only {
  width: auto;
  padding: 0 !important;
  color: var(--lightContent);
  display: flex;
  align-items: center;
}

.btn-text-only:hover {
  color: var(--mutedLightContent);
}

.btn-text {
  display: inline-block;
  font-weight: var(--h5FW);
  letter-spacing: var(--h5LS);
  padding: 0;
  margin: 0;
}

.btn-text-only .btn-text {
  text-decoration: underline;
}

.btn-after {
  display: inline-block;
  position: relative;
  font-weight: var(--pFW);
  margin-left: 0;
  margin-right: 0;
  width: 0;
  opacity: 0;
  transition: var(--transition3);
}

@media only screen and (min-device-width:320px) and (max-device-width:480px) {
  .btn-text {
    margin-left: 15px;
  }
  .btn-text-only .btn-text {
    margin-left: 0;
    margin-right: 5px;
  }
  .btn-after {
    margin-left: 0;
    margin-right: 0;
    opacity: 1;
    min-width: 25px;
  }
}

.btn-after img {
  height: 30px;
  width: 30px;
}

.btn-after svg {
  height: 30px;
  width: 30px;
  fill: #000000;
}

.btn:hover .btn-after svg {
  fill: #ffffff;
}

.btn:hover .btn-after {
  margin-left: 5px;
  margin-right: 0;
  opacity: 1;
  width: 28px;
  transition: var(--transition3);
}

.btn-group-sm>.btn:hover .btn-after,
.btn-sm:hover .btn-after {
  transform: scale(0.6);
}

.buttons {

}

.buttons-single, .buttons-stacked {
  display: flex;
}

.buttons-single a {
  margin-bottom: 20px;
}

.buttons-multi a {
  margin-bottom: 10px;
  margin-right: 10px;
}

.buttons-inline a {

}

.buttons-stacked a {
  display: inline-block;
}

.buttons .btn-harmonic {
  color: #000000;
}

a {
  color: var(--mutedLightContent);
  transition: var(--transition);
  text-decoration: underline;
  text-decoration-skip: auto;
  text-decoration-color: var(--primary);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  letter-spacing: var(--h5LS);
}

a:hover {
  color: var(--lightContent);
  transition: var(--transition);
}

.no-underline {
  text-decoration: none !important;
}

/* -- Image, Video, Media Assets --*/

img {
  width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

@media screen and (max-width:500px) {
  #sp-content video {
    min-height: 500px !important;
    height: 70vh !important;
    width: 100%;
    max-height: 1000px !important;
    object-fit: cover;
  }
}

img.monochromatic {
	filter: grayscale(100%) saturate(150%) contrast(80%);
	-webkit-filter: grayscale(100%) saturate(150%) contrast(80%);
	transition: var(--transition5);
}

img.monochromatic:hover {
	filter: grayscale(0%) saturate(150%) contrast(80%);
	-webkit-filter: grayscale(0%) saturate(150%) contrast(80%);
	transition: var(--transition5);
}

.image-container.cropped {
  overflow: hidden;
}

.image-container.cropped.std {
  min-height: 800px !important;
  height: 90vh !important;
  max-height: 1200px !important;
}

@media screen and (max-width:500px) {
  .image-container.cropped.std {
    min-height: 400px !important;
    height: 70vh !important;
    max-height: 800px !important;
  }
}

.image-container.cropped.sm {
  min-height: 300px !important;
  height: 40vh !important;
  max-height: 600px !important;
}

.image-container.cropped.md {
  min-height: 500px !important;
  height: 60vh !important;
  max-height: 800px !important;
}

.image-container.cropped.lg {
  min-height: 700px !important;
  height: 80vh !important;
  max-height: 1200px !important;
}

.image-container.cropped.vp {
  min-height: 500px !important;
  height: 100vh !important;
}

.image-container.cropped img {
  object-fit: cover;
  height: 100% !important;
  width: 100% !important;
}

.rounded-gallery img {
  border-radius: var(--globalCardRadius) !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.asset-border-radius {
  border-radius: var(--globalCardRadius);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.asset-border-radius img, .asset-border-radius video {
  border-radius: var(--globalCardRadius);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.default-radius {
  border-radius: var(--globalCardRadius);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.circle-radius {
  border-radius: 100%;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* -- Masonry --*/

.grid-item {
  
}

/* -- Alerts --*/

.alert {
  border-radius: var(--globalCardRadius);
}

.alert.small {
  padding: 26px 25px 5px 20px;
}

.alert.small p {
  font-size: calc(var(--baseFontSize) * 0.8) !important;
  line-height: var(--h6LH);
}

.alert.default {
  padding: 30px 25px 15px 20px;
}

.alert.default p {
  font-size: var(--baseFontSize) !important;
}

.alert.large {
  padding: 30px 20px 15px 20px;
}

.alert.large p {
  font-size: calc(var(--baseFontSize) * 1.1) !important;
}

.alert-primary {
  background-color: var(--primary) !important;
  border: none !important;
}

.alert-primary .alert-content p, .alert-primary .alert-content h1, .alert-primary .alert-content h2, .alert-primary .alert-content h3, .alert-primary .alert-content h4, .alert-primary .alert-content h5, .alert-primary .alert-content h6, .alert-primary .alert-icon {
  color: var(--darkContent) !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.alert-primary a {
  color: var(--darkContent) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--darkContent) !important;
}

.alert-secondary {
  background-color: var(--secondary) !important;
  border: none !important;
}

.alert-secondary .alert-content p, .alert-secondary .alert-content h1, .alert-secondary .alert-content h2, .alert-secondary .alert-content h3, .alert-secondary .alert-content h4, .alert-secondary .alert-content h5, .alert-secondary .alert-content h6, .alert-secondary .alert-icon {
  color: var(--darkContent) !important;
  padding: 0 !important;
}

.alert-secondary a {
  color: var(--darkContent) !important;
  text-decoration: underline !important;
}

.alert-muted {
  background-color: var(--mutedBg) !important;
  border: none !important;
}

.alert-muted p, .alert-muted .alert-icon {
  color: var(--mutedLightContent) !important;
  padding: 0 !important;
}

.alert-muted a {
  color: var(--lightContent) !important;
  text-decoration: underline !important;
}

.alert-muted .btn-close {
  color: var(--lightContent) !important;
}

.alert-icon {
  max-width: 40px !important;
  font-size: 35px;
  margin-right: 20px;
  margin-top: -15px;
}

.alert-text {
  padding-right: 15px !important;
}

.alert .btn-close {
  margin-left: 30px;
  padding-right: 20px;
}

/* -- Announcement Bar --*/

.announcement-bar {
  
}

.announcement-bar .alert {
  padding: 0 !important;
  margin: 0 !important;
}

.announcement-bar .alert p, .announcement-bar .alert a {
  font-size: calc(var(--baseFontSize) * 0.8) !important;
  padding: 0;
  margin: 0;
}

/* -- Milestones -- */

.milestone {
  padding: 50px 0 0 0;
  margin: 50px 0 70px 0;
  border-top: solid 1px var(--lightContent);
  transition-delay: .1s;
}

@media only screen and (max-width:767px) {
  .milestone {
    padding: 0 !important;
    margin-left: 10px;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    border-top: none !important;
    border-left: solid 1px var(--lightContent);
  }
  
  .content-dark .milestone {
    border-left: solid 1px var(--darkContent);
  }
  
  .milestone div {
    padding: 13px 0 30px 50px;
  }
  
  .milestone::before {
    transform: translateX(-22px) !important;
  }
}

.milestone::before {
  content: "x";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50px;
  border: 1px solid var(--lightContent);
  height: 50px;
  width: 50px;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 10px;
  margin-left: -3px;
  color: var(--lightContent);
  background: var(--customBg);
  transform: translateY(-75px);
  font-weight: var(--pFW);
  font-size: calc(var(--baseFontSize) * 1);
}

.content-dark .milestone::before {
  border: 1px solid var(--darkContent);
  color: var(--darkContent);
}

.last-milestone {
  border-top: none !important;
  border-left: none !important;
}

#ms1::before {
  content: "1";
}

#ms2::before {
  content: "2";
}

#ms3::before {
  content: "3";
}


/* -- Carousel --*/

.swiper {
  width: 100%;
  overflow: visible !important;
}

.swiper-slide {
  background-color: gray;
  border-radius: var(--globalCardRadius);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
}

.swiper-slide-image {
  background-color: gray;
  border-radius: var(--globalCardRadius);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  outline: none !important;
}

.swiper-pagination {
  margin-bottom: 20px;
}

.swiper-scrollbar-container {
  position: absolute;
}

.swiper-scrollbar {
  margin-top: 40px;
  margin-bottom: 20px;
  height: 3px !important;
  width: 20%;
  background: rgba(245, 245, 245, 0.2) !important;
  background-color: rgba(245, 245, 245, 0.2) !important;
  -webkit-backdrop-filter: blur(80px) saturate(100%);
  backdrop-filter: blur(80px) saturate(100%);
  box-shadow: 0 2px 20px #000000cc;
}

.swiper-horizontal>.swiper-scrollbar {
  left: 0 !important;
  right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 90% !important;
}

.swiper-scrollbar-drag {
  background: rgba(245, 245, 245, 0.8) !important;
}

img.swiper-slide-image {
  height: auto;
  object-fit: cover !important;
}

.swiper-autoheight,
.swiper-autoheight .swiper-wrapper,
.swiper-autoheight .swiper-slide {
  height: 100% !important;
}

.swiper-pagination-bullet {
  background: rgba(245, 245, 245, 0.8) !important;
  background-color: rgba(245, 245, 245, 0.8) !important;
  -webkit-backdrop-filter: blur(80px) !important;
  backdrop-filter: blur(80px) !important;
  box-shadow: 0 5px 30px #000000;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* -- Slider -- */

.slider-container {
  margin-bottom: 80px !important;
}

.slider {
  position: relative;
}

.slide-height-sm {
  height: 300 !important;
  min-height: 300px !important;
}

.slide-height-md {
  height: 600px !important;
  min-height: 600px !important;
}

.slide-height-lg {
  height: 900px !important;
  min-height: 900px !important;
}

.slide-height-vp {
  height: 100vh !important;
  max-height: 100vh;
  min-height: 700px !important;
}

.slide-height-vp-nav {
  height: calc(100vh - 72px) !important;
  max-height: calc(100vh - 72px);
  min-height: 700px !important;
  overflow: hidden;
}

.slide {
  
}

.slide-wrapper {

}

.slide-content {
  padding-top: 20px;
  padding-bottom: 20px;
  height: 100%;
  width: 100%;
  background: none;
  position: absolute;
}

.slide-content.hero-mode {
  padding-top: 90px !important;
}

.slide-body {
  z-index: 999 !important;
  position: absolute;
}

.slide-text {
  width: 100%;
}

.slide-content .light {
  color: var(--darkContent) !important;
}

.slide-content .dark {
  color: var(--lightContent) !important;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-slider .slick-list {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}

/* Slider Pagination */

ul.slick-dots {
  padding: 0;
  margin-top: 30px;
}

ul.slick-dots li:before {
  content: none;
  position: relative;
  margin-left: 0;
}

.slider-nav-container {
  position: relative;
  z-index: 999;
}

.slider-nav-container.in {
  margin-top: -60px;
}

/* Dashes */

.slider-nav.dash {
  width: 100%;
}

.slider-nav.dash .align-left {
  margin-left: 0;
  margin-right: auto;
}

.slider-nav.dash .align-center {
  margin-left: auto;
  margin-right: auto;
}

.slider-nav.dash ul {
  display: flex;
  justify-content: space-evenly;
  gap: 12px;
  width: 100%;
  position: relative;
}

@media only screen and (min-width:787px) {
  .slider-nav.dash ul {
    max-width: 40%;
  }
}

.slider-nav.dash ul li {
  display: inline-block;
  padding: 0;
  cursor: pointer;
  transition: var(--transition3);
  flex-shrink: 1;
  flex-basis: 45px;
  height: 5px;
  background-color: var(--lightContent);
  border-radius: var(--globalInputRadius);
  opacity: 0.6;
}

.content-light .slider-nav.dash ul li {
  background-color: var(--lightContent);
}

.content-dark .slider-nav.dash ul li {
  background-color: var(--mutedDarkContent); 
}

@media only screen and (min-width:787px) and (max-width:1200px) {
  .slider-nav.dash ul li {
    flex-basis: 40px;
  }
}

@media only screen and (min-width:1201px) {
  .slider-nav.dash ul li {
    flex-basis: 100px;
  }
}

.slider-nav.dash ul li.slick-active {
  background-color: var(--lightContent);
  opacity: 1;
  flex-grow: 2;
  transition: var(--transition3);
}

.content-light .slider-nav.dash ul li.slick-active {
  background-color: var(--lightContent);
}

.content-dark .slider-nav.dash ul li.slick-active {
  background-color: var(--darkContent);
}

.in .slider-nav.dash ul li {
  background-color: var(--mutedLightContent);
}

.in .slider-nav.dash ul li.slick-active {
  background-color: var(--lightContent);
}

.slider-nav.dash ul li button {
  display: none;
}

.slider-nav.dash ul li.slick-active button {
  display: none;
}

/* Slider Arrows */


.slider-arrows-container {
  position: relative;
  margin-top: -57px; 
}

.slider-arrows-container.card-mode {
  margin-top: -65px;
}

.slider-arrows {
  position: relative;
}

.slider-arrow {
  color: var(--lightContent);
  background: none !important;
  border: none !important;
  padding: 0;
  position: absolute;
}

.slider-arrow i {
  font-size: 40px;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

/* Card Mode */

.enable-card-mode {
  margin: 0 15px;
}

.enable-card-mode-parent {
  margin: 0 -15px;
}

/* Card */

.card-icon {
  margin-bottom: 15px;
}

/* -- Prev Next -- */

.prev-next {
  overflow: hidden !important;
}

#prevNext h3 {
	color: var(--customContent) !important;
}

#prevNext {
  margin-top: 30vh;
  margin-bottom: 20vh;
}

#prevNext .row {
  z-index: 998;
}

#prevNext .sub-card {
  height: calc(var(--minCardHeight) * 1.4);
}

@media only screen and (max-width:767px) {
  #prevNext .sub-card {
    max-height: calc(var(--minCardHeight) * 0.65);
  }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (orientation: landscape) {
  #prevNext .sub-card {
    max-height: calc(var(--minCardHeight) * 1);
  }
}

#next h5, #prev h5 {
  margin-bottom: 10px !important;
}

.prev-next-card {
  height: 10vh;
  min-height: 400px;
  border-radius: var(--globalCardRadius) !important;
  overflow: hidden !important;
}

.prev-next-card-link {
  position: relative;
  overflow: hidden !important;
}

.prev-next-meta {
  z-index: 5;
  height: 10vh;
  min-height: 400px;
}

.prev-next-logo-container {
  position: absolute;
  width: 100%;
  height: 100%;
	z-index: 4;
}

.prev-next-logo {
  z-index: 999;
  -webkit-filter: brightness(90%);
}

.prev-next-logo.wide {
  width: 100%; 
  height: auto;
  max-width: 170px;
}

.prev-next-logo.square {
  width: auto; 
  height: 20vw;
  max-height: 250px;
}

.prev-next-image-overlay {
  content: "";
  z-index: 4;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.15);
  transition: var(--transition);
}

.prev-next-image-overlay::after {
  content: "";
  z-index: 3;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.3);
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
  -webkit-mask-image: linear-gradient(20deg, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 50%);
  transition: var(--transition);
}

.prev-next-image-container {
  z-index: 2;
  height: 100%;
  border-radius: var(--globalCardRadius) !important;
}

.prev-next .has-bg {
  width: 100%;
  height: 100%;
}

.prev-next .is-bg {
  object-position: center center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* -- Attributes / Label -- */

@media screen and (max-width:500px) {
  .sub-title {
    max-width: 70vw;
  }
}

.sub-attributes h6 {
  white-space: nowrap;
  opacity: 1;
}

/* -- Read More -- */

#sp-description {
  position: relative;
  max-height: 400px; /* Start with a fixed max-height */
  overflow: hidden;
  transition: max-height var(--transition5), -webkit-mask-image var(--transition5), mask-image var(--transition5);
  margin-bottom: 20px;
}

#sp-description.collapsed {
  overflow: hidden;
  max-height: 400px; /* Adjust to match your layout */
  transition: var(--transition5);
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
}

#sp-description.expanded {
  height: auto;
  max-height: 3000px; /* Large value to allow expansion, adjust if needed */
  transition: var(--transition5);
  -webkit-mask-image: none;
  mask-image: none;
}

.mol-btn {
  color: var(--customContent) !important;
  text-decoration-color: var(--molBtnColor) !important;
  opacity: 1;
  transition: var(--transition5);
}

.mol-btn:hover {
  opacity: 0.6;
  transition: var(--transition5);
}

/* -- Tag Filter -- */

.tag-filter-wrapper {
  overflow: visible !important;
}

.tag-filter-container {
  overflow: visible !important;
}

ul.tag-filter {
  padding-left: 0;
  padding: 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 10px;
  width: 100%;
  overflow-x: scroll;
  display: block;
  white-space: nowrap;
  width: 100%;
}

@media screen and (min-width:320px) and (max-width:480px) {
  ul.tag-filter {
    width: auto;
    overflow-x: auto;
  }
}

ul.tag-filter li {
  width: auto;
  display: inline-block;
}

ul.tag-filter li::before {
  content: " " !important;
}

ul.tag-filter li a.tag {
  display: flex;
  padding: 0 30px;
  height: 45px;
  align-items: center;
  margin: 0 8px 15px 0;
  font-size: calc(var(--baseFontSize) * 0.8);
  font-weight: 400;
  letter-spacing: var(--pLS);
  line-height: 20px;
  border-radius: var(--globalInputRadius);
  background: var(--mutedBgOp);
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
  color: var(--text);
  box-shadow: none !important;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  text-decoration: none !important;
}

ul.tag-filter li a.tag:hover {
  color: var(--text);
}

ul.tag-filter li a.tag.active-tag {
  background: var(--primary);
  color: #000000;
}

ul.tag-filter li a.tag.active-tag:hover {
  opacity: 1;
  text-decoration-color: #000000;
}


/* -- Cards -- */

.card {
  background: var(--mutedBg);
  border-radius: var(--globalCardRadius);
  border: none !important;
  height: 100%;
  padding: 45px;
}

@media screen and (max-width:500px) {
	.card {
		padding: 30px;
	}
}

.card h1,
.card h2,
.card h3,
.card h5,
.card h6 {
  padding-right: 20;
}

.card p:last-of-type {
  margin-bottom: 0 !important;
}

.cardImageContainer {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.cardImageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -- Spacing and Padding -- */

.r-mb {
  margin-bottom: 1.5rem;
}

@media only screen and (min-width:480px) {
  .r-mb {
    margin-bottom: 0;
  }
}

.mt-nc {
  margin-top: 5rem !important;
}

.pt-nc {
  padding-top: 5rem !important;
}

.pt-nc.pt-ab-nc {
  padding-top: 6rem !important;
}

.spacer {
  content: "";
  display: block;
  width: 100%;
}

.spacer .divider {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--lightContent);
  z-index: 99;
}

/* -- Footer -- */

.footer-nav a {
  margin-right: 20px;
  opacity: 1;
}

.footer-nav a:last-child {
  margin-right: 0;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-icon {
  margin-right: 20px;
}

.footer-icon:last-child {
  margin-right: 0;
}

.footer-icon i {
  display: inline-block;
  height: 32px;
  width: 32px;
  margin: 0;
  font-size: calc(var(--baseFontSize) * 1.3);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-icon:hover i {
  opacity: 1;
  transition: var(--transition);
}

.copyright-text {
  color: #80808066 !important;
}

/* -- Icon -- */

.icon-container {
  display: inline-block;
}

.icon-container.small {
  width: 25px;
  height: 25px;
}

.icon-container.medium {
  width: 50px;
  height: 50px;
}

.icon-container.large {
  width: 70px;
  height: 70px;
}

.icon-container .icon {
  width: 100%;
  height: 100%;
}

.icon-container .icon svg, .icon-container .icon i,  {
  width: 100%;
  height: 100%;
  
}

.icon-color-dynamic svg {
  fill: var(--lightContent);
}

.icon-color-primary svg {
  fill: var(--primary);
}

.icon-color-secondary svg {
  fill: var(--secondary);
}

.icon svg {
  height: 100%;
  width: 100%;
}

/* -- Rows and Columns --*/

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

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

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

.equal-height-cols {
  overflow: hidden;
}

@media only screen and (max-width:480px) {
  .equal-height-col {
    margin-bottom: 1.5rem !important;
  }

  .equal-height-col:last-of-type {
    margin-bottom: 0 !important;
  }
}

.equal-height-cols .image-container {
  height: 100% !important;
}

.equal-height-cols img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}

/* -- Custom Bootstrap Spacing -- */

/* ---- Margin ---- */

.my-6 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.mt-6 {
  margin-top: 5rem !important;
}

.mb-6 {
  margin-bottom: 5rem !important;
}

.my-20px {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mt-20px {
  margin-top: 20px !important;
}

.mb-20px {
  margin-bottom: 20px !important;
}

.my-exaggerate.small {
  margin-top: 10vh !important;
  margin-bottom: 10vh !important;
}

.mt-exaggerate.small {
  margin-top: 10vh !important;
}

.mb-exaggerate.small {
  margin-bottom: 10vh !important;
}

@media only screen and (min-width:1200px) {
  .my-exaggerate.small {
    margin-top: 20vh !important;
    margin-bottom: 20vh !important;
  }

  .mt-exaggerate.small {
    margin-top: 20vh !important;
  }

  .mb-exaggerate.small {
    margin-bottom: 20vh !important;
  }
}

.my-exaggerate.large {
  margin-top: 30vh !important;
  margin-bottom: 30vh !important;
}

.mt-exaggerate.large {
  margin-top: 30vh !important;
}

.mb-exaggerate.large {
  margin-bottom: 30vh !important;
}

@media and (min-width:1200px) {
  .my-exaggerate.large {
    margin-top: 40vh !important;
    margin-bottom: 40vh !important;
  }

  .mt-exaggerate.large {
    margin-top: 40vh !important;
  }

  .mb-exaggerate.large {
    margin-bottom: 40vh !important;
  }
}

/* ---- Padding ---- */

.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pt-6 {
  padding-top: 5rem !important;
}

.pb-6 {
  padding-bottom: 5rem !important;
}

.py-exaggerate.small {
  padding-top: 10vh !important;
  padding-bottom: 10vh !important;
}

.pt-exaggerate.small {
  padding-top: 10vh !important;
}

.pb-exaggerate.small {
  padding-bottom: 10vh !important;
}

@media only screen and (min-width:1200px) {
  .py-exaggerate.small {
    padding-top: 20vh !important;
    padding-bottom: 20vh !important;
  }

  .pt-exaggerate.small {
    padding-top: 20vh !important;
  }

  .pb-exaggerate.small {
    padding-bottom: 20vh !important;
  }
}

.py-exaggerate.large {
  padding-top: 30vh !important;
  padding-bottom: 30vh !important;
}

.pt-exaggerate.large {
  padding-top: 30vh !important;
}

.pb-exaggerate.large {
  padding-bottom: 30vh !important;
}

@media and (min-width:1200px) {
  .py-exaggerate.large {
    padding-top: 40vh !important;
    padding-bottom: 40vh !important;
  }

  .pt-exaggerate.large {
    padding-top: 40vh !important;
  }

  .pb-exaggerate.large {
    padding-bottom: 40vh !important;
  }
}


/* -- Tobii Lightbox -- */

.tobii {
  background: var(--bgOp) !important;
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  transition: var(--transition5);
	z-index: 9999 !important;
}

.tobii__btn--next, .tobii__btn--previous {
  background-color: none !important;
}

.tobii__btn--next,
.tobii__btn--previous,
.tobii__btn--close {
  outline: none !important;
  background-color: none !important;
}

.tobii__btn.tobii__btn--close {
  transform: scale(.8) translate(-80px, 60px);
  margin-right: 0;
  padding-right: 0;
  opacity: 1 !important;
}

@media only screen and (max-device-width: 460px) {
  .tobii__btn.tobii__btn--close {
    transform: scale(.75) translate(-20px, 30px);    
  }
}

body>div.tobii.tobii--theme-default>button.tobii__btn.tobii__btn--close>svg {
  stroke-width: 1;
  stroke: var(--lightContent) !important;
  opacity: 1;
}

.tobii__counter {
  transform: translate(55px, 55px);
  color: var(--lightContent) !important;
}

@media only screen and (max-device-width: 460px) {
  .tobii__counter {
    transform: translate(10px, 18px);   
  }
}

.tobii__btn svg {
  stroke-width: 1.5px;
}

.tobii__slide div figure img {
  max-height: 90vh !important;
  max-width: 92vw !important;
  border-radius: var(--globalCardRadius);
}

/* .tobii__slide [data-type] {
  max-height: 90vh !important;
  max-width: 92vw !important;
  border-radius: var(--globalAssetRadius);
} */

.tobii-zoom__icon {
  background-color: #00000000 !important;
  width: 25px !important;
  height: 25px !important;
}

.tobii-zoom__icon i {
  font-size: 25px !important;
}

figcaption.imgCaption {
  font-size: calc(var(--globalParagraphSize) * 0.8);
  font-weight: 400;
  letter-spacing: var(--pLS);
  line-height: 1.4;
  margin-top: 5px;
  margin-right: 15px;
  margin-bottom: 10px;
  margin-left: 10px;
  color: var(--lightContent);
  width: 94%;
}


/* -- Cookies -- */

#cookie-consent {
  padding-bottom: 0 !important;
}

#cookie_banner-wrapper {
  position: fixed;
  bottom: 0;
  padding: 20px 0 0 0 !important;
  background-color: var(--customBg);
  -webkit-backdrop-filter: var(--glass);
  backdrop-filter: var(--glass);
  z-index: 9949;
  border-top: solid 1px var(--customContentSuperOp);
}

/* -- Scrollbar -- */

 /* ::-webkit-scrollbar {
  background: transparent;
  overflow: visible;
  max-width: 5px;
  max-height: 5px;
  cursor: pointer;
  transition: var(--transition);
}

 ::-webkit-scrollbar-track-piece {
  background-color: var(--bg);
  transition: var(--transition);
  cursor: pointer;
}

 ::-webkit-scrollbar-corner {
  background: transparent;
  transition: var(--transition);
}

 ::-webkit-scrollbar-thumb {
  background-color: var(--lightContent);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}


 ::-webkit-scrollbar-thumb:hover {
  background-color: var(--mutedLightContent);
  transition: var(--transition);
} */

/* -- YouTube -- */

  .youtube-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 5px;
  }

  .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
  }

  .youtube-player img {
    object-fit: cover;
    display: block;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
  }

  .youtube-player img:hover {
    -webkit-filter: brightness(75%);
    filter: brightness(75%);
  }

  .youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url('//i.imgur.com/TxzC70f.png') no-repeat;
    cursor: pointer;
  }

/* -- Dynamics.css Port -- */

/* -- Hero -- */

.hero-height-sm {
  min-height: 60vh;
}

.hero-height-md {
  min-height: 70vh;
}

.hero-height-lg {
  min-height: 80vh;
}

.hero-height-vp {
  height: 100vh;
  max-height: 100vh;
  min-height: 700px;
}

.hero-height-vp-m {
  height: 100vh;
  max-height: 100vh;
  min-height: 700px;
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px) {
    .hero-height-vp-m {
      height: calc(100vh - 90px);
      max-height: calc(100vh - 90px);
      min-height: 700px;
    }
  }
  
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (orientation: landscape) {
  .hero-height-vp-m {
    min-height: 440px;
  }
}

.hero-height-auto {
  min-height: 200px;
  overflow: hidden;
}

.hero-height-vp-nav {
  height: calc(100vh - 72px);
  max-height: calc(100vh - 72px);
  min-height: 700px;
  overflow: hidden;
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (orientation: landscape) {
  .hero-height-vp-nav {
    min-height: 440px;
  }
}

.sp-hero {
  height: calc(100vh - 72px);
  max-height: calc(100vh - 72px);
  min-height: 700px;
  overflow: hidden;
}

@media screen and (min-width:320px) and (max-width:480px) {
  .sp-hero {
    min-height: 60vh;
    max-height: 60vh;
  }
}

.sp-hero-bg-media {
  will-change: transform;
}

#sp-hero-bg-fixed img:not(.screen-desktop), #sp-hero-bg-fixed video {
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0.65) 100%);
  transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (orientation: landscape) {
  #sp-hero-bg-fixed img, #sp-hero-bg-fixed video {
      -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.7) 100%);
  }
}

#sp-hero-bg-fixed {
  transition: all 0.5s cubic-bezier(.3,0,.25,1.01);
  filter: blur(0px) !important;
  -webkit-filter: blur(0px) !important;
  opacity: 1;
}

#sp-hero-bg-fixed.is-faded {
  transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
  opacity: var(--fadeAmount) !important;
}

#sp-hero-bg-fixed.is-blurred {
  transition: all 0.8s cubic-bezier(.3,0,.25,1.01);
  filter: blur(var(--blurAmount)) !important;
  -webkit-filter: blur(var(--blurAmount)) !important;
}

#sp-hero-bg-fixed.is-footer {
  transition: all 1.2s cubic-bezier(.3,0,.25,1.01);
  opacity: calc(var(--fadeAmount) - 0.5) !important;
  -webkit-filter: brightness(0.4);
  filter: brightness(0.4);
}

i.scroll-down-icon {
  font-size: 35px;
  margin-bottom: -5px;
}

/* -- SCREEN MOCKUP -- */

.screen-wrapper {
  transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
}

@media screen and (min-width:1398px) {
  .screen-wrapper {
    -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 1) 100%);
    transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
  }
}

.screen-container {
  overflow: visible;
  box-shadow: -90px 80px 200px #0000004a, -50px 40px 100px #00000018, -20px 20px 30px #20202011, -10px 15px 15px #0000000d, 90px -80px 150px #ffffff0d;
  top: 10vh;
  border-radius: var(--screenMockupRadius);
  position: relative;
  height: auto;
  width: 100%;
  padding: 0 !important;
  z-index: 2;
  /* -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.7) 100%); */
  transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
  mix-blend-mode: soft-light;
}

.screen-mask {
  border-radius: var(--screenMockupRadius);
  overflow: hidden;
}

.screen-desktop {
  width: 100%;
  height: auto;
  -webkit-filter: brightness(1.2);
  border-radius: var(--screenMockupRadius);
  opacity: 0.9;
  z-index: -1;
  transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
/*   border: solid 0.8px #ffffff0d; */
}

.screen-glare {
  display: block;
  position: absolute;
  background: linear-gradient(30deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.5) 75% ,rgba(255, 255, 255, 1) 100%);
  mix-blend-mode: luminosity;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  border-radius: var(--screenMockupRadius);
  z-index: 6;
  transition: all 2s cubic-bezier(.3,0,.25,1.01);
}

.screen-glare-scrolled {
  background: linear-gradient(27deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.5) 75% ,rgba(255, 255, 255, 1) 100%) !important;
  transition: all 2s cubic-bezier(.3,0,.25,1.01);
}

.screen-align {
  display: flex;
  align-items: center;
  align-content: center;
  transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
}

@media screen and (min-width:320px) and (max-width:1398px) {
  .screen-container {
    top: -50px;
    left: 20px;
    align-self: center;
    position: relative;
    height: auto;
    min-width: 700px;
    padding: 0 !important;
    transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
  }

  .screen-glare {
    transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
  }

  .screen-desktop {
    width: 100%;
    height: auto;
    transition: all 0.6s cubic-bezier(.3,0,.25,1.01);
  }
}

@media screen and (min-width:320px) and (max-width:1398px) and (orientation: landscape) {
  .screen-container {
    /* top: 80px !important; */
		left: 360px;
  }
}

.subtitle {
  max-width: 700px;
  padding-right: 8vw;
}

/* -- Margin extensions -- */

.my-6 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.mt-6 {
  margin-top: 5rem !important;
}

.mb-6 {
  margin-bottom: 5rem !important;
}

/* -- Spacers -- */

.spacer .h0 {
  height: 0px;
  min-height: 0px;
  max-height: 0px;
}

.spacer .h10 {
  height: 10px;
  min-height: 10px;
  max-height: 10px;
}

.spacer .h20 {
  height: 20px;
  min-height: 20px;
  max-height: 20px;
}

/* -- Hero shade opacity -- */

.hero-shade-opacity-0 {
  opacity: 0;
}

.hero-shade-opacity-1 {
  opacity: 0.1;
}

.hero-shade-opacity-2 {
  opacity: 0.2;
}

.hero-shade-opacity-3 {
  opacity: 0.3;
}

.hero-shade-opacity-4 {
  opacity: 0.4;
}

.hero-shade-opacity-5 {
  opacity: 0.5;
}

.hero-shade-opacity-6 {
  opacity: 0.6;
}

.hero-shade-opacity-7 {
  opacity: 0.7;
}

.hero-shade-opacity-8 {
  opacity: 0.8;
}

.hero-shade-opacity-9 {
  opacity: 0.9;
}

.hero-shade-opacity-10 {
  opacity: 1;
}

/* -- Text light colors -- */

.text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light h5, .text-light h6 {
  color: var(--lightContent) !important;
}

.text-light p, .text-white-70 > p, .text-light p, .text-white-50 > p {
  color: var(--mutedLightContent) !important;
}

.text-white-50, .text-white-70, .text-white-85, .text-white-90 {
  color: var(--mutedLightContent);
}

/* -- Custom Animations -- */

.animate-slow {
  transition: all ease-in-out 5s !important;
}

/* -- Container Widths -- */
	
@media (min-width: 900px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    width: 95vw;
    max-width: 1950px;
  }
}

@media (min-width: 1200px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    width: 95vw;
    max-width: 1950px;
  }
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    width: 95vw;
    max-width: 1950px;
  }
}

@media (min-width: 1500px) and (max-width: 1750px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    width: 95vw;
    max-width: 1950px;
  }
}

@media (min-width: 1751px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    width: 95vw;
    max-width: 1950px;
  }
}

/* -- Cookies -- */

.uniform__potty {
  position: absolute;
  left: -9999px;
}

/* -- Fonts -- */

/* -- Suisse Intl -- */

@font-face {
  font-family: 'suisse-intl';
  src: url('https://leogasga.co/assets/fonts/suisse-intl/SuisseIntl-ExtraLight.otf');
  font-style: normal;
  font-weight: 200;
}

@font-face {
  font-family: 'suisse-intl';
  src: url('https://leogasga.co/assets/fonts/suisse-intl/SuisseIntl-Light.otf');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'suisse-intl';
  src: url('https://leogasga.co/assets/fonts/suisse-intl/SuisseIntl-Regular.otf');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'suisse-intl';
  src: url('https://leogasga.co/assets/fonts/suisse-intl/SuisseIntl-Book.otf');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'suisse-intl';
  src: url('https://leogasga.co/assets/fonts/suisse-intl/SuisseIntl-Medium.otf');
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'suisse-intl';
  src: url('https://leogasga.co/assets/fonts/suisse-intl/SuisseIntl-SemiBold.otf');
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'suisse-intl';
  src: url('https://leogasga.co/assets/fonts/suisse-intl/SuisseIntl-Bold.otf');
  font-style: normal;
  font-weight: 800;
}

/* -- Instrument Serif -- */

@font-face {
  font-family: 'instrument-serif';
  src: url('../fonts/instrument-serif/InstrumentSerif-Regular.ttf');
  font-style: normal;
  font-weight: 400;
}

/* -- TT Interphases -- */

@font-face {
  font-family: 'interphases';
  src: url('../fonts/interphases/TTInterphasesPro-Regular.otf');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'interphases';
  src: url('../fonts/interphases/TTInterphasesPro-Medium.otf');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'interphases';
  src: url('../fonts/interphases/TTInterphasesPro-DemiBold.otf');
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'interphases';
  src: url('../fonts/interphases/TTInterphasesPro-Bold.otf');
  font-style: normal;
  font-weight: 700;
}

/* -- Right Grotesk -- */

@font-face {
  font-family: 'right';
  src: url('../fonts/right/RightGroteskText-Regular.otf');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'right';
  src: url('../fonts/right/RightGroteskText-Regular.otf');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'right';
  src: url('../fonts/right/RightGrotesk-TightMedium.otf');
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'right';
  src: url('../fonts/right/RightGrotesk-TightMedium.otf');
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'right';
  src: url('../fonts/right/RightGrotesk-TightMedium.otf');
  font-style: normal;
  font-weight: 800;
}