:root {
  --sparsit-green: #00B7A1;
  --sparsit-dark-gray: #222;
  --sparsit-white: #fff;
  --sparsit-light-gray: #888;
  --sparsit-dark-green: #2c5d60;
  --sparsit-black: #000;
  --sparsit-background: #111;
  --sparsit-slate: #48768e;
  --sparsit-muted-green: #698;
}

/******* FLEX GRID ******/
/******* BEHÖVS DESSA? ****

.flexOuterWrapper {
  display: flex;
  margin: 30px auto 0 auto;
}

.u-flexItem {
  margin: 0 3% 3% 0;
}

.flexInnerContainer {
  display: flex;
  flex-direction: row;

  .flex-column {

  }
}

****** END FLEX GRID *******/
.u-flex {
  display: flex;
}

.u-flexItem {
  display: block;
}

.u-flexRowReverse {
  flex-direction: row-reverse !important;
}

.u-flexRow {
  flex-flow: row wrap;
}

.u-flexColumn {
  flex-flow: column wrap;
}

.u-flexCenter {
  justify-content: center;
  margin: 0 auto;
}

.u-flexLeft {
  justify-content: left;
}

.u-flexColToRow {
  flex-direction: column;

  @media (min-width: 540px) {
    flex-direction: row;
  }
}

.u-flexRowToCol {
  flex-direction: row;

  @media (min-width: 540px) {
    flex-direction: column;
  }
}

.u-flexRight {
  justify-content: right;
}

.u-flexEven {
  justify-content: space-evenly;
}

.u-flexVertCenter {
  align-content: center;

  & > * {
    margin: auto;
    height: fit-content;
  }
}

.u-flexAlignBottom {
  align-items: end;
}

.u-flexAlignCenter {
  align-items: center;
}

.u-flexWrap {
  flex-wrap: wrap;
}

.u-last {
  margin-right: 0 !important;
}

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

.u-cover {
  img {
    object-fit: cover;
  }
}

.u-contain {
  img {
    object-fit: contain;
  }
}

.u-centered {
  margin: 0 auto !important;
}

.u-border {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.u-alignRight {
  text-align: right;
}

.u-noOverflow {
  overflow: hidden;
}

.u-mobile {
  display: none;

  @media (min-width: 540px) {
    display: inline-block;
  }
}

.u-fullscreen {
  width: 130%;
  margin: 80px -15% 0 -15%;
}

.u-mobileHide {
  display: none;

  @media (min-width: 540px) {
    display: inline-block;
  }
}

.u-desktopHide {
  display: inline-block;

  @media (min-width: 540px) {
    display: none;
  }
}

.u-sticky {
  position: sticky;
}

.u-gap20 {
  gap: 20px;
}

.u-gap40 {
  gap: 40px;
}

.u-gap60 {
  gap: 60px;
}

/*** NARROW (Default) ******/
.u-sizeFull {
  width: 100%;
}

.u-size2of3 {
  width: 65%;
}

.u-size1of2, .u-size2of4 {
  width: 48.5%;
}

.u-size1of3 {
  width: 31.3333%;
}

.u-size1of4 {
  width: 22.75%;
}

.u-size3of4 {
  width: 71%;
}

.u-size1of5 {
  width: 17%;
}

.u-size2of5 {
  width: 37%;
}

.u-size3of5 {
  width: 57%;
}

.u-size4of5 {
  width: 77%;
}

/********* MEDIUM ***********/
@media (min-width: 700px) {
  .u-size-md-Full {
    width: 100% !important;
  }

  .u-size-md-1of2, .u-size-md-2of4 {
    width: 48.5% !important;
  }

  .u-size-md-1of3 {
    width: 30.9219% !important;
    /* border: 1px solid color(srgb 0.519 1 0.442 / 0.304); */
  }

  .u-size-md-2of3 {
    width: 65.6666% !important;
  }

  .u-size-md-1of4 {
    width: 22.75% !important;
  }

  .u-size-md-1of5 {
    width: 17% !important;
  }

  .u-size-md-2of5 {
    width: 34% !important;
  }

  .u-size-md-3of5 {
    width: 51% !important;
  }
}

/*********** WIDE ***********/
@media (min-width: 1080px) {
  .u-size-xl-Full {
    width: 100% !important;
  }

  .u-size-xl-2of3 {
    width: 65.6666% !important;
  }

  .u-size-xl-1of2, .u-size-xl-2of4 {
    width: 48.5% !important;
  }

  .u-size-xl-1of3 {
    width: 31.3333% !important;
  }

  .u-size-xl-1of4 {
    width: 22.75% !important;
  }

  .u-size-xl-3of4 {
    width: 68.25% !important;
  }

  .u-size-xl-1of5 {
    width: 17% !important;
  }
}

/******* END UTILITY CLASSES ******/

/******* COMPONENTS ****/




hr {
	height: 10px;
	width: 100%;
	border: none;
	background-color: var(--sparsit-dark-gray);
	margin: 20% auto 10% auto;
	
	&.compact {
		margin: 5% auto 10% auto;
	}
}

nav {
  padding: 1.5% 5%;
  margin: 0 -5%;
  position: fixed;
  top: 0;
  background-color: var(--sparsit-white);
  color: var(--sparsit-black);
  z-index: 10000;

  .menu-item {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0);

    &:hover {
      border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    }
  }
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: var(--sparsit-background);
  /* background-color: #1e475d; /* Background color */
  /* background-image: url('img.png'); /* Background image */
  background-size: cover;
  background-position: center;
  font-style: normal;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;

  @media (min-width: 540px) {
    font-weight: 100;
  }
}

canvas {
  display: block;
  position: relative;
  width: 200px;
  height: 330px;
  margin-bottom: -150px;
  z-index: 0;
  bottom: 10%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);

  @media (min-width: 540px) {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 300px;
    height: 430px;
    margin-bottom: -301px;
  }
}

body.s3-game, body.s3-rt {
	canvas {
		position: absolute;
		top: 120%;
	}
}

body.s3-photo {
	canvas {
		position: absolute;
		top: 160%;
	}
}

main {
  padding-top: 10%;
}

.contentWrapper {
  width: 80%;
  margin: 0 auto;
  max-width: 900px;
  
  &.narrow {
	/* width: 40%; */
	margin-bottom: 5%;
  }

  h2, h3{
    margin-bottom: 40px !important;
  }
  
  h4 {
	  margin-bottom: 10px !important;
	}
  
  .illu {
    width: 100%;
    height: auto;
    margin-bottom: 40px;

     img.medium {
        height: 40px;
		width: auto;
        margin: 0 auto 0px auto;
      }

      img.large {
        width: 350px;
        margin: 0 auto 40px auto;
      }
	  
	  img.mega {
		  width: 450px;
		  margin: 0 auto 40px auto;
		}
  }
  
  .platformLogo {
	  height: 60px;
	  width: auto;
  }
}

.prodLogo {
	
	margin-top: 50px;
	
	&> div {
		border-top: 10px solid var(--sparsit-dark-gray);
	}
	
	.illu {
		margin-top: 35px;
		margin-bottom: 30px;
	}
	
	h3 {
		margin-bottom: 10px !important;
	}
} 

.animations-wrapper {
	margin: 10% auto !important;
	width: 40%;
	
	@media (max-width: 1080px) {
	  width: 60%;
	}
	
	@media (max-width: 700px) {
	  width: 75%;
	}
	
	&.large {
		width: 180%;
		margin-left: -25%;
		
		.left {
			margin-left: -18%;
			margin-right: 5%;
			width: 34%;
		}
		
		.right {
			margin-left: -10%;
		}
	}
	
	.left {
		margin-left: 0%;
	}
	
	.right {
		margin-left: -10%;
	}
}

img.animation {
	  width: 40%;
	  height: auto;
	  display: inline-block;
	  margin: -5% -20%;
	  
	  &.small {
		width: 30%;
	  }
  }

.animation-text {
	width: 85%;
}
  
figure {
  margin-bottom: 40px;
}

figcaption {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 40px;

  @media (min-width: 540px) {
    width: 50%;
  }
}

.image-container {
  &:has(+ figcaption) + figcaption {
    margin-top: -65px;
  }
}

num {
  background-color: var(--sparsit-green);
  padding: 5px 5px;
  border-radius: 100%;
  font-weight: 900;
  color: var(--sparsit-white);
  margin-right: 4px;
  border: 1px solid var(--sparsit-green);
  font-size: 0.8rem;
}

.logo {
  width: 120px;
  height: auto;
  z-index: 1000;
  margin-bottom: 40px;

  @media (min-width: 540px) {
    width: 180px;
    height: auto;
    z-index: 1000;
  }
}

.intro {
  position: relative;
  z-index: 100;
  margin-bottom: 10%;

  h2 {
    margin: 0 !important;
    font-size: 28px;

    @media (min-width: 540px) {
      font-size: 36px;
    }
  }
}

.test {
  background-color: var(--sparsit-slate);
}

ul {
  margin-bottom: 20px;
  display: block;
  font-size: 90%;

  li {
    padding: 5px 0 0 0;
  }

  &.lined {
    li {
      border-bottom: 1px var(--sparsit-green) solid;
    }
  }
}

.box {
  width: 100%;
}

.u-flex {
  &:has(.box) {
    gap: 40px;
  }
}

.fact {
  margin-bottom: 130px !important;

  .stats {
    font-size: 7rem;
    font-weight: 900;
    font-family: "Chakra Petch", sans-serif;
    line-height: 1;

    span {
      display: block;
      font-size: 1.5rem;
    }
  }
}

.illu {
  margin-bottom: 30px;

  img {
    width: 80px;
  }
}

.separator {
  display: block;
  height: 100px;
}

footer {
  padding: 7% 0 10% 0;
  border-top: 1px dotted var(--sparsit-green);
  width: 80%;
  margin: 10% auto 0 auto;

  .logo {
    width: 50px;
    margin-bottom: 5%;
  }

  h3 {
    margin-top: 0;
  }
}

/************************************
      TYPOGRAPHY
************************************/
h1, h2, h3, h4, h5, h6 {
  margin: 20px 0 20px 0;
  line-height: 1.2;
}

h4, h5, h6 {
  margin: 20px 0 5px 0;
}

h1, h2, h3 {
  font-family: "Chakra Petch", sans-serif;
}

h1 {
  font-size: 45px;
  line-height: 1;
  font-weight: 400;
  /* overflow: hidden; /* Hide overflowing letters */
  white-space: normal;
  /* Prevent line breaks */
  /* border-right: .15em solid orange; /* Add a border that will represent the cursor */

  @media (min-width: 540px) {
    font-size: 70px;
  }
}

h2 {
  font-size: 36px;
  line-height: 1.3;

  &.strapline {
    font-size: 90%;
    font-family: "IBM Plex Mono", monospace;
    color: var(--sparsit-green);
  }
}

.footer {
  h3 {
    margin: 0 !important;
  }
}

h3 {
  font-size: 22px;

  &.strapline {
    font-size: 90%;
    font-family: "IBM Plex Mono", monospace;
  }
}

h4 {
	font-weight: 700;
}

.preamble {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
}

p {
  &.stats {
    display: inline-block;
  }

  & + p {
    margin-top: 20px;

    &.preamble {
      margin-top: 0;
    }
  }
}

/************************************
      NAVIGATION
************************************/
.container {
  width: 100%;
  height: 100%;
}

.hamburger-menu {
  width: 40px;
  height: 30px;
  cursor: pointer;
  top: 50px;
  right: 50px;
  z-index: 1000;

  &:hover {
    .line {
      color: red;
      border: 4px solid red;
    }
  }

  .line {
    &.dotted {
      background-color: transparent;
      border-bottom: 2px dotted var(--sparsit-muted-green);
    }
  }
}

.line {
  width: 100%;
  height: 2px;
  background-color: var(--sparsit-white);
  margin: 4px 0;
  border-bottom: 2px solid var(--sparsit-white);
  /* Change to dotted */
}

.navigation {
  position: absolute;
  top: 0;
  right: -110%;
  /* initially hidden */
  width: 80%;
  height: 100%;
  background-color: var(--sparsit-dark-green);
  transition: right 0.3s ease;
  padding: 150px 10% 10% 10%;
  height: 100vh;
  z-index: 900;
  display: none;

  @media (min-width: 540px) {
    width: 30%;
    right: -50%;
  }

  &.open {
    right: 0;
    display: block;
  }

  a {
    display: block;
    margin: 0 auto;
    color: var(--sparsit-white);
    text-decoration: none;
    text-align: right;
    width: 80%;
  }
}

/************************************
            HOVER IMAGES
*************************************/
.image-trigger {
  position: absolute;
  top: 50px;
  left: 40%;
  z-index: 100;
  animation: fadeIn 2s;
}

.image-container,
.video-container {
  &:hover {
    .image-trigger {
      display: none;
      animation: fadeOut 2s;
    }
  }
}

.image-container {
  &.large {
    width: 130% !important;
    margin: 5% auto 5% -15% !important;
    max-width: 1200px;
    padding-bottom: 0;
  }

  position: relative;
  display: block;
  width: 100%;
  margin: 5% auto;
  max-width: 900px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.bottom-image, .top-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.bottom-image {
  position: relative;
}

.top-image {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.cursor {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999;
  display: none;
}

/************************************
      HOVER VIDEOS
*************************************/
.video-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 5% auto;
  max-width: 1400px;
  aspect-ratio: 16/9;
  max-height: 600px;
  cursor: url("/imgs/cursor.svg") 28 28, pointer;

  .credits {
    position: absolute;
    bottom: -30px;
    font-size: 0.7rem;
    color: var(--sparsit-light-gray);
  }
}

body.s3-rt {
	.video-container {
	  aspect-ratio: 30/9;
	}
}

.bottom-video,
.top-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-video {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  /* Ensure the top video does not interfere with the cursor events */
}

.cursor {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

/************************************
	  PAGE SPECIFIC
*************************************/

body {
	&.s3-game, &.s3-rt, &.s3-photo {
		.intro {
		  margin-bottom: 1%;
	}
}

/************************************
      BENCHMARK TABLE
*************************************/
.benchmark-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 5% auto;
  position: relative;
}

.benchmark-scroll {
  overflow-x: auto;
  margin-left: 140px;

  @media (min-width: 540px) {
    overflow-x: visible;
    margin-left: 0;
  }
}

#benchmark {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 500px;

  @media (min-width: 540px) {
    min-width: auto;
  }

  thead {
    th {
      padding: 15px 20px;
      text-align: left;
      font-family: "Chakra Petch", sans-serif;
      font-weight: 600;
      border-bottom: 3px solid var(--sparsit-green);

      &.highlight {
        background-color: rgba(0, 183, 161, 0.15);
      }
    }
  }

  tbody {
    tr {
      &.section-header td {
        padding: 25px 20px 10px 20px;
        font-weight: 700;
        border-top: 1px dashed var(--sparsit-green);
		
		&:nth-child(n+2) {
		  border-left: 1px solid var(--sparsit-dark-green);
		}
      }

      &.data-row td {
        padding: 8px 20px;

        &:nth-child(n+2) {
          border-left: 1px solid var(--sparsit-dark-green);
        }
      }

      &.section-last td {
        padding-bottom: 20px;
      }
    }

    td {
      vertical-align: top;

      &.highlight {
        background-color: rgba(0, 183, 161, 0.15);
        font-weight: 600;
      }

      &.metric {
        position: absolute;
        left: 0;
        width: 140px;
        background-color: var(--sparsit-background);
        z-index: 10;

        @media (min-width: 540px) {
          position: static;
          width: auto;
          background-color: transparent;
        }
      }

      span.unit {
        color: var(--sparsit-light-gray);
      }
    }
  }
}

/************************************
      NAVIGATION OVERLAY
*************************************/

/* Hamburger Button */
.hamburger {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 22px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--sparsit-white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  &.active {
    span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 3px);
    }
    span:nth-child(2) {
      opacity: 0;
    }
    span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
  }
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: #010101;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;

  &.open {
    opacity: 1;
    visibility: visible;
  }
}

.nav-overlay__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;

  @media (min-width: 768px) {
    padding: 40px 150px;
  }
}

.nav-overlay__logo {
  img {
    height: 36px;
    width: auto;
  }
}

.nav-overlay__close {
  position: relative;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;

  span {
    position: absolute;
    width: 32px;
    height: 3px;
    background-color: var(--sparsit-white);
    border-radius: 2px;
    left: 50%;
    top: 50%;

    &:first-child {
      transform: translate(-50%, -50%) rotate(45deg);
    }
    &:last-child {
      transform: translate(-50%, -50%) rotate(-45deg);
    }
  }
}

.nav-overlay__content {
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 60px;

  @media (min-width: 768px) {
    flex-direction: column;
    justify-content: space-between;
    /* padding: 60px 150px; */
	width: 200px;
	margin: 0 auto;
  }
}

.nav-overlay__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.nav-overlay__label {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--sparsit-white);
  margin-bottom: 20px;
  
  @media (min-width: 768px) {
  	margin-bottom: 20%;
  }
}

.nav-overlay__solutions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--sparsit-green);
  
  @media (min-width: 768px) {
	 gap: 50px;
	 padding-bottom: 30%;
  }
}

.nav-overlay__solution-item {
  display: block;

  img {
    height: 30px;
    width: auto;
    transition: opacity 0.2s ease;
	
	@media (min-width: 768px) {
		height: 70px;
	}
  }

  &:hover img {
    opacity: 0.8;
  }
}

.nav-overlay__link {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 300;
  font-size: 30px;
  color: var(--sparsit-white);
  text-decoration: none;
  padding: 0 0 10px 0;
  border-bottom: 1px dashed var(--sparsit-green);
  transition: color 0.2s ease;

  &:hover {
    color: var(--sparsit-green);
  }
}

.nav-overlay__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.nav-overlay__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;

  a {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 300;
    font-size: 19px;
    color: var(--sparsit-white);
    text-decoration: none;
    transition: color 0.2s ease;

    &:hover {
      color: var(--sparsit-green);
    }
  }
}

.nav-overlay__icon {
  width: 20px;
  height: 20px;
  color: var(--sparsit-white);
}

.nav-overlay__social {
  display: flex;
  gap: 25px;
  margin-top: 24px;
}

.nav-overlay__social-link {
  display: block;
}

.nav-overlay__social-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--sparsit-dark-green);
  transform: rotate(45deg);
  border-radius: 4px;
  transition: background-color 0.2s ease;

  svg {
    width: 20px;
    height: 20px;
    color: var(--sparsit-white);
    transform: rotate(-45deg);
  }

  &:hover {
    background-color: var(--sparsit-green);
  }
}

/************************************
      COMPARISON SLIDER (CURTAIN)
*************************************/
.comparison-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 5% auto;
  max-width: 900px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;

  &.large {
    width: 130% !important;
    margin: 5% auto 5% -15% !important;
    max-width: 1400px;
  }
}

.comparison-container .comparison-bottom,
.comparison-container .comparison-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

.comparison-container .comparison-bottom {
  position: relative;
}

.comparison-container .comparison-top {
  clip-path: inset(0 0 0 50%);
}

/* Video-specific styles for comparison container */
.comparison-container.comparison-video {
  aspect-ratio: 16/9;
  max-height: 600px;
  
  &.large {
		width: 100% !important;
		margin: 5% auto !important;
	}
}

.comparison-container.comparison-video .comparison-bottom,
.comparison-container.comparison-video .comparison-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-container .comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--sparsit-dark-green);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}

.comparison-container .comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  /* background-color: var(--sparsit-white); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 11;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;

  &:hover {
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  img {
	width: 30px;
	height: 30px;
	color: var(--sparsit-dark-gray);
	pointer-events: none;
  }
}

.comparison-container.dragging .comparison-handle {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.comparison-container .comparison-label {
  position: absolute;
  bottom: 15px;
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--sparsit-white);
  font-size: 0.75rem;
  font-family: "IBM Plex Mono", monospace;
  border-radius: 4px;
  pointer-events: none;
  z-index: 5;
}

.comparison-container .comparison-label--left {
  left: 15px;
}

.comparison-container .comparison-label--right {
  right: 15px;
}

/************************************
      ADVANTAGES SECTION
*************************************/
.contentWrapper .advantages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 80px auto 0 auto;
  min-height: 450px;
  /* scale: 0.8; */
  width: 80%;  
}

.advantages__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.advantages__line {
  flex: 1;
  max-width: 327px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--sparsit-green) 50%, transparent 100%);
}

.advantages__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: var(--sparsit-white);
  white-space: nowrap;
}

.advantages__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 40px;
  width: 100%;
  max-width: 730px;
}

.advantages__item {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.3;
  
  @media (min-width: 540px) {
	.advantages__label {
	  font-size: 45px;
	}
  
	.advantages__item {
	  gap: 20px;
	}
  }
}

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

.advantages__description {
  display: none;
  max-width: 862px;
  width: 80%;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.advantages__description.visible {
  display: block;
  opacity: 1;
}

.advantages__icon {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.advantages__icon--laptop {
  width: 80px;
  height: auto;
}

.advantages__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.advantages__label {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  line-height: 1.3;
  color: var(--sparsit-white);
  white-space: nowrap;
  
  @media (min-width: 540px) {
	.advantages__label {
	  font-size: 45px;
	}
  }
}

@media (max-width: 700px) {
  .advantages__grid {
    justify-content: center;
  }

  .advantages__item {
    width: 100%;
    justify-content: center;
  }

  .advantages__header {
    gap: 15px;
  }

  .advantages__line {
    max-width: 80px;
  }
}

