/*
    RESET
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Abhaya Libre";
  font-weight: 800;
  src: url("fonts/AbhayaLibre-ExtraBold.ttf");
}
@font-face {
  font-family: "Abhaya Libre";
  font-weight: 500;
  src: url("fonts/AbhayaLibre-Medium.ttf");
}
html {
  overscroll-behavior: none;
}

body {
  overflow-x: clip;
  position: relative;
  background-color: transparent;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10;
}

body.gradient::after {
  background: linear-gradient(270deg, #37AA47 0%, #00A0DF 100.01%);
}

body.background-1::after {
  background-color: #ECE9DE;
}

body > * {
  position: relative;
  z-index: 100;
}

body {
  background: #0099ff;
}

.scroll-prompt {
  position: absolute;
  bottom: 15vh;
  left: 50%;
  z-index: 100;
  transition: 1s opacity ease-out;
}

.scroll-prompt .scroll-prompt-shape {
  position: relative;
  animation: slidedown 2.25s infinite;
}

.scroll-prompt .scroll-prompt-shape:before,
.scroll-prompt .scroll-prompt-shape:after {
  content: "";
  display: block;
  position: absolute;
  width: 2em;
  height: 0.2em;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 0 0.25em 0.25em 0;
  transform-origin: bottom left;
}

.scroll-prompt .scroll-prompt-shape:before {
  transform: scaleX(-1) rotate(-45deg);
}

.scroll-prompt .scroll-prompt-shape:after {
  transform: rotate(-45deg);
}

@keyframes slidedown {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
    transform: translate(0, 80px);
  }
  100% {
    opacity: 0;
    transform: translate(0, 80px);
  }
}
.hero {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.hero__container {
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}

.hero__text {
  grid-column: 2/3;
  color: #FFF;
  text-align: center;
  font-family: Helvetica;
  font-size: 12px;
  font-size: 0.6vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero__link {
  display: block;
}

.hero__link:nth-of-type(1) {
  grid-column: 1/2;
}

.hero__link:nth-of-type(2) {
  grid-column: 4/5;
  padding-right: 20%;
}

.hero__link:nth-of-type(3) {
  grid-column: 5/6;
}

.hero__link img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero__footer {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 20px 40px 20px 20px;
  right: 0;
  display: grid;
  gap: 0.1%;
  width: 100%;
  max-width: 100vw;
  margin-left: auto;
  align-items: center;
  margin-right: auto;
  grid-template-columns: 13% 14% 1fr 11.45% 10%;
}

.hero__logo {
  position: fixed;
  top: 88px;
  top: 9%;
  left: 0;
  right: 0;
  display: flex;
  gap: 50px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hero__logo img {
  width: 207px;
  display: block;
  width: 17.9vw;
  height: auto;
}

.hero__logo h1 {
  color: var(--czlowiek-obrysy, #FFF);
  font-family: "Abhaya Libre";
  font-size: 48px;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 800;
  line-height: 118%;
  /* 56.64px */
}

.hero__figure {
  position: fixed;
  top: 14%;
  left: 50%;
  transform: translateX(-48%);
}

.hero__figure svg {
  width: 29vw;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero__textWrapper {
  color: #FFF;
  text-align: center;
  opacity: 0;
  font-family: "Abhaya Libre";
  font-size: 48px;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 586px;
  width: 30.525vw;
}

.hero__main {
  position: relative;
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translate(-50%);
}

.hero__main img {
  position: absolute;
  top: 27vh;
  left: 50%;
  transform: translateX(-48%);
  width: 63vw;
}

.hero__main--mobile {
  display: none;
}

.hero__main__mobile {
  display: none;
}

.hero__main__box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-family: "Abhaya Libre";
  text-decoration: none;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.hero__main__box svg {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero__main__box--1 {
  left: 210px;
  top: 350px;
  left: 23%;
  top: 36.5vh;
}

.hero__main__box--1 span {
  animation: bounce linear 2s forwards infinite 1s;
}

.hero__main__box--2 {
  left: 1005px;
  top: 382px;
  left: 64.4%;
  top: 39.5vh;
}

.hero__main__box--2 span {
  animation: bounce linear 2s forwards infinite;
}

.hero__main__box--3 {
  left: 83px;
  top: 544px;
  left: 16.4%;
  top: 56vh;
}

.hero__main__box--3 span {
  animation: bounce linear 2s forwards infinite;
}

.hero__main__box--4 {
  left: 1103px;
  top: 571px;
  left: 69.4%;
  top: 59vh;
}

.hero__main__box--4 span {
  animation: bounce linear 2s forwards infinite 1s;
}

@media (max-width: 1300px) {
  .hero__main__box--1 {
    left: 210px;
    top: 350px;
    left: 14%;
    top: 36.5vh;
  }
  .hero__main__box--1 span {
    animation: bounce linear 2s forwards infinite 1s;
  }
  .hero__main__box--2 {
    left: 1005px;
    top: 382px;
    left: 71.4%;
    top: 39.5vh;
  }
  .hero__main__box--2 span {
    animation: bounce linear 2s forwards infinite;
  }
  .hero__main__box--3 {
    left: 83px;
    top: 544px;
    left: 7.4%;
    top: 56vh;
  }
  .hero__main__box--3 span {
    animation: bounce linear 2s forwards infinite;
  }
  .hero__main__box--4 {
    left: 1103px;
    top: 571px;
    left: 76.4%;
    top: 59vh;
  }
  .hero__main__box--4 span {
    animation: bounce linear 2s forwards infinite 1s;
  }
}
@media (max-width: 1000px) {
  .hero__logo {
    flex-direction: column;
    top: 50px;
    gap: 65px;
  }
  .hero__logo h1 {
    text-align: center;
    color: var(--czlowiek-obrysy, #FFF);
    text-align: center;
    font-family: "Abhaya Libre ExtraBold";
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 118%;
    /* 56.64px */
  }
  .hero__main {
    display: flex;
    flex-direction: row;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    align-items: flex-start;
    gap: 95px;
    top: 35vh;
    border: none;
    height: 100vh;
  }
  .hero__main > .hero__main__box {
    display: none;
  }
  .hero__main__box {
    position: relative;
    left: 0 !important;
    top: 0 !important;
    transform: none;
    flex-shrink: 0;
    padding: 20px;
    scroll-snap-align: center;
  }
  .hero__main__box span {
    color: #FFF;
    text-align: center;
    font-family: "Abhaya Libre";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }
  .hero__main__mobile {
    padding: 0 15vw;
    display: flex;
    flex-direction: row;
    gap: 95px;
    overflow-x: scroll;
    overflow-y: clip;
    scroll-snap-type: x mandatory;
  }
  .hero__main__mobile::-webkit-scrollbar {
    display: none;
  }
  .hero__main > img {
    top: 20vh;
    position: absolute;
    width: 80vw;
  }
}
@media (max-width: 900px) {
  .hero__main {
    top: 27vh;
  }
  .hero__main > img {
    top: 17vh;
    transform: translate(-45%);
    width: 100vw;
  }
  .hero__main + .hero__footer {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .hero__main + .hero__footer .hero__link:nth-of-type(1) {
    width: 193px;
    position: absolute;
    left: 20px;
    bottom: 250px;
    z-index: 2;
  }
  .hero__main + .hero__footer .hero__link:nth-of-type(2) {
    width: 142px;
    height: 94px;
    position: absolute;
    right: 20px;
    bottom: 250px;
    z-index: 2;
    padding: 0;
  }
  .hero__main + .hero__footer .hero__link:nth-of-type(2) img {
    width: 100%;
    height: 100%;
    max-width: unset;
  }
  .hero__main + .hero__footer .hero__link:nth-of-type(3) {
    width: 170px;
    position: absolute;
    right: 20px;
    bottom: 170px;
  }
  .hero__main + .hero__footer .hero__text {
    color: #FFF;
    text-align: center;
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    left: 20px;
    bottom: 170px;
    width: 200px;
    position: absolute;
  }
}
@media (max-width: 500px) {
  .hero__main + .hero__footer {
    transform: translateY(100px);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.choose {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-items: center;
  padding-bottom: 50px;
}

.choose__container {
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}

.choose__footer {
  position: absolute;
  bottom: 2.026vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 16px;
}

.choose__footer .choose__text {
  color: #FFF;
  text-align: center;
  font-family: Helvetica;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 200px;
  margin: 0;
}

.choose__logo {
  margin-left: auto;
  margin-right: auto;
  padding-right: 5%;
  justify-self: center;
}

.choose__flex {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 64px;
  gap: 3.35vw;
  width: 100%;
  max-width: 1300px;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}

.choose__flex__box {
  text-decoration: none;
  cursor: pointer;
}

.choose__flex__box:nth-of-type(4) svg {
  height: 310px;
  height: 31.5vh;
  margin-top: -0.8vh;
}

.choose__flex__box:nth-of-type(5) svg {
  height: 28.5vh;
  margin-top: 2.2vh;
}

.choose__flex svg {
  height: 300px;
  height: 30.5vh;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: translateX(-0.3vw);
}

.choose__flex__header {
  color: #FFF;
  font-family: "Abhaya Libre";
  display: block;
  text-align: center;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-left: auto;
  margin-right: auto;
  font-size: 36px;
  font-size: 1.85vw;
  max-width: 220px;
  max-width: 11.5vw;
  margin-top: 30px;
  margin-top: 3vh;
}

.choose__header {
  color: #FFF;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 48px;
  font-size: 4.8vh;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.choose__text {
  margin-left: auto;
  margin-right: auto;
  color: #FFF;
  text-align: center;
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: 24px;
  font-size: 1.22vw;
  margin-top: 33px;
  max-width: 650px;
  max-width: 33.87vw;
  padding-left: 0.521vw;
  padding-right: 0.521vw;
}

.card {
  position: relative;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  height: 100lvh;
}

.card__logo {
  display: block;
  cursor: pointer;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 120;
  transition: all 1s ease-in-out;
  display: flex;
  flex-direction: row;
  top: calc(100vh - 76px);
  top: calc(100vh - 8%);
  justify-content: center;
}

.card__logo img {
  width: 121px;
  height: 36px;
  width: 6.3vw;
  height: auto;
  display: block;
}

.card__content {
  opacity: 0;
  display: none;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 2;
  top: 0;
  left: 0;
}

.card__content--1 {
  z-index: 50;
  display: flex;
  padding-left: 40%;
}

.card__content--1 > .card__svg {
  position: absolute;
  left: -200px;
  top: 100px;
  transform: none;
}

.card__content--1 h1 {
  color: #000;
  font-size: 96px;
  font-size: 5vw;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  color: #000;
  width: 46vw;
  font-family: "Abhaya Libre";
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.card__content--1 ul {
  color: #000;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin-left: 50px;
  line-height: 30px;
  width: 46vw;
}

.card__content--1 p {
  color: #000;
  font-family: Helvetica;
  font-size: 24px;
  font-size: 1.11vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  width: 880px;
  width: 46vw;
  color: #000;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
}

.card__content--1 p:first-of-type {
  margin-top: 50px;
}

.card__content--2 {
  z-index: 60;
  display: flex;
}

.card__content--2::after {
  content: "";
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #00A0DF;
}

.card__content--2 > * {
  z-index: 61;
}

.card__content--2 h2 {
  color: #FFF;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 48px;
  font-size: 2.45vw;
  font-style: normal;
  font-weight: 800;
  max-width: 31.2vw;
  margin-left: auto;
  margin-right: auto;
  line-height: normal;
}

.card__content--2 p {
  color: #FFF;
  font-family: Helvetica;
  font-size: 24px;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  max-width: 880px;
  max-width: 45.84vw;
  margin-left: auto;
  margin-top: 40px;
  margin-top: 4.06vh;
  margin-right: auto;
}

.card__content--3 {
  z-index: 70;
  display: flex;
}

.card__content--3::after {
  content: "";
  inset: 0;
  z-index: 72;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #37AA47;
}

.card__content--3 > * {
  z-index: 73;
}

.card__content--3 h2 {
  color: #FFF;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 48px;
  font-size: 2.45vw;
  font-style: normal;
  font-weight: 800;
  max-width: 1066px;
  width: 100%;
  max-width: 80vw;
  padding-left: 40vw;
  margin-left: auto;
  margin-right: auto;
  color: #FFF;
  font-family: "Abhaya Libre";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px;
  /* 91.667% */
  line-height: 1;
  text-align: left;
}

.card__content--3 p {
  margin-top: 30px;
  color: #FFF;
  font-family: "Abhaya Libre";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px;
  max-width: 80vw;
  padding-right: 10vw;
  padding-left: 40vw;
}

.card__content--3 svg {
  position: absolute;
  bottom: -83px;
  bottom: -2vh;
  top: 125px;
  top: 12.5vh;
  height: 100%;
  width: 50vw;
  left: 0%;
}

.card__content--4 {
  z-index: 80;
  display: flex;
  padding-top: 5.1282vh;
}

.card__content--4::after {
  content: "";
  inset: 0;
  z-index: 82;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: #DCD8C9;
}

.card__content--4 > * {
  z-index: 83;
}

.card__content--4 h2 {
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 64px;
  font-size: 3.32vw;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 96px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.card__content--4 h2 + img {
  margin-top: 20px;
  margin-top: 2.0513vh;
  display: block;
  width: 280px;
  width: 14.584vw;
}

.card__content--4 h3 {
  margin-top: 30px;
  margin-top: 3.077vh;
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 36px;
  font-size: 1.85vw;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  max-width: 900px;
}

.card__content--4 h3 + p {
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 20px;
  font-size: 1.05vw;
  font-style: normal;
  font-weight: 800;
  max-width: 470px;
  max-width: 24.5vw;
  width: 100%;
  line-height: normal;
  margin-top: 35px;
  margin-top: 3.5897vh;
}

.card__button {
  border: 1px solid #000000;
  border-radius: 20px;
  height: 4.616vh;
  min-height: 4.616vh;
  display: flex;
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.041vw;
  align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 20px;
  font-size: 2vh;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-decoration: none;
  text-decoration: underline;
  margin-top: 2.13vh;
  margin-bottom: 2vh;
}

.card__button + p {
  color: #000;
  text-align: center;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 600px;
}

.card__questionMarks {
  color: #FFF;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 96px;
  font-size: 5vw;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.card__svg {
  position: fixed;
  left: 50%;
  transform: translateX(calc(-50% + 2vw));
  top: 12vh;
  z-index: 20;
}

.card__svg svg {
  width: 55.6vw;
  height: auto;
}

.card__headers {
  position: fixed;
  top: 0;
  left: 0%;
  padding-top: 30vh;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.card__header {
  width: 76vw;
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 5vw;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  opacity: 0;
}

.card__logos {
  display: grid;
  grid-template-columns: 132px 164px 112px;
  grid-template-columns: 12vw 12vw 12vw;
  gap: 20px;
  gap: 2vw;
  align-items: center;
  margin-top: 120px;
  margin-top: 12.3vh;
}

.card__logos img {
  width: 100%;
  display: block;
  height: auto;
}

.card__logos p {
  color: #000;
  text-align: center;
  font-family: Helvetica;
  font-size: 8px;
  font-size: 0.7vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1200px) {
  .choose__flex {
    max-width: 90vw;
  }
}
@media (max-width: 1100px) {
  .choose__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
  }
  .choose__flex svg {
    height: 20vh;
  }
  .choose__flex__box {
    width: 150px;
  }
  .choose__flex__box:nth-of-type(4) svg, .choose__flex__box:nth-of-type(5) svg {
    height: 21vh;
  }
  .choose__flex__box:nth-of-type(5) svg {
    height: 19vh;
    margin-top: 1vh;
  }
  .choose__footer {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .hero {
    height: 100lvh;
  }
  .hero__logo {
    top: 20px;
  }
  .hero__logo img {
    width: 120px;
  }
  .hero__footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    top: 100svh;
    bottom: unset;
    transform: translateY(-100%);
  }
  .hero__text {
    grid-column: 1/4;
    grid-row: 2/3;
    font-size: 12px;
  }
  .hero__link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .hero__link img {
    max-width: 100%;
  }
  .hero__link:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .hero__link:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .hero__link:nth-of-type(3) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .hero__figure {
    transform: translateX(calc(-50% + 16px));
    top: 20vh;
  }
  .hero__figure svg {
    width: unset;
    height: 90vh;
  }
  .hero__textWrapper {
    padding: 0 20px;
    font-size: 24px;
    line-height: 110%;
    width: 100%;
    max-width: 100%;
  }
  .choose {
    overflow: visible;
    height: unset;
    padding-top: 40px;
  }
  .choose__header {
    font-size: 32px;
    line-height: 1.1;
    display: block;
    width: 100%;
    max-width: 100vw;
    padding: 0 20px;
  }
  .choose__text {
    font-size: 20px;
    line-height: 1.1;
    display: block;
    width: 100%;
    margin: 0;
    margin-top: 20px;
    max-width: 100vw;
    padding: 0 20px;
  }
  .choose__flex__header {
    font-size: 18px;
    line-height: 1.1;
    margin-top: 10px;
    text-align: center;
    max-width: 100%;
  }
  .choose__logo img {
    width: 120px;
  }
  .choose__footer {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    margin-top: 40px;
  }
  .card {
    height: 100lvh;
  }
  .card__svg {
    top: 0;
    bottom: 0;
    transform: translate(-48%, 0);
    width: 150vw;
  }
  .card__svg svg {
    height: 100vh;
    width: 100%;
  }
  .card__logo {
    top: calc(100vh - 60px);
  }
  .card__logo img {
    width: 120px;
  }
  .card__content {
    height: 100lvh;
  }
  .card__headers {
    padding-top: 5vh;
    justify-content: flex-start;
  }
  .card__logos {
    grid-template-columns: 132px 164px 112px;
    gap: 20px;
  }
  .card__logos p {
    font-size: 10px;
  }
  .card__header {
    font-size: 60px;
  }
  .card__questionMarks {
    font-size: 80px;
  }
  .card__content--1 h1 {
    font-size: 60px;
    width: 100%;
  }
  .card__content--1 p {
    font-size: 20px;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }
  .card__content--2 h2 {
    font-size: 32px;
    width: 100%;
    max-width: 100%;
  }
  .card__content--2 p {
    font-size: 20px;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }
  .card__content--3 h2 {
    max-width: 100%;
    padding: 0px 20px;
    font-size: 32px;
  }
  .card__content--3 svg {
    stroke-width: 0.5;
  }
  .card__content--4 h2 {
    font-size: 48px;
    max-width: 100%;
    padding: 0 20px;
  }
  .card__content--4 h2 + img {
    width: 100%;
    max-width: 270px;
  }
  .card__content--4 h3 {
    font-size: 32px;
    max-width: 100%;
    padding: 0 20px;
  }
  .card__content--4 h3 + p {
    font-size: 18px;
    max-width: 100%;
    padding: 0 20px;
  }
}
.scrollIcon {
  position: fixed;
  right: 20px;
  width: 200px;
  height: 200px;
  top: 50%;
  transform: translatey(-50%);
}

@media (max-width: 500px) {
  .scroll-prompt {
    bottom: 25vh;
  }
  .scrollIcon {
    transform: none;
    top: 0;
    width: 150px;
    height: 150px;
    right: 0;
  }
  .card__headers {
    padding-top: 20lvh;
  }
  .card__header {
    max-width: 100vw;
    padding-bottom: 10px;
    font-size: 40px;
  }
  .card__logos {
    grid-template-columns: 200px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    grid-template-rows: auto auto auto;
    margin-bottom: 40px;
  }
  .card__logos img {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  .card__content--1 {
    padding-top: 0;
  }
  .card__content--1 h1 {
    font-size: 40px;
  }
  .card__content--1 p {
    margin-top: 20px;
    line-height: 1.4;
    font-size: 16px;
  }
  .card__content--2 {
    padding-top: 0;
  }
  .card__content--2 p {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 20px;
    padding: 0 20px;
    max-width: 100%;
  }
  .card__content--2 h2 {
    font-size: 26px;
    line-height: 1.4;
    padding: 0 20px;
    max-width: 100%;
  }
  .card__content--3 {
    padding-top: 0;
  }
  .card__content--3 h2 {
    line-height: 1.4;
    font-size: 26px;
    padding: 0 20px;
    max-width: 100%;
  }
  .card__content--3 h2 br {
    display: none;
  }
  .card__content--4 {
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
  }
  .card__content--4 h2 {
    font-size: 26px;
    margin-top: auto;
  }
  .card__content--4 h2 + img {
    width: 100%;
    max-width: 250px;
  }
  .card__content--4 h3 {
    font-size: 22px;
  }
  .card__content--4 h3 p {
    font-size: 16px;
  }
  .card__logos {
    grid-template-columns: 1fr 1fr;
    margin-top: auto;
    padding-top: 20px;
  }
  .card__logos p {
    grid-column: 1/3;
    grid-row: 2/3;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .card__logo {
    top: calc(100vh - 50px);
  }
}
.plain {
  background: #ECE9DE;
}

.help {
  padding: 66px 0px 0px 28px;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 40px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.help h1 {
  color: #000;
  font-family: "Abhaya Libre";
  font-size: 64px;
  line-height: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.help h2 {
  margin-top: 20px;
  color: #000;
  font-family: "Abhaya Libre ";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.help__svg {
  position: relative;
  height: 100%;
}

.help__svg img {
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 66px;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  aspect-ratio: 640/916;
}

.help__cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.help__cta .hero__link {
  width: 280px;
}

.help__cta .card__button {
  margin-top: 0;
}

.help__text {
  margin-top: 30px;
  max-width: 560px;
}

.help__text b {
  color: #000;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.help__text p {
  margin-top: 20px;
  color: #000;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.help__footer {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 30px;
}

.help__footer .help__link:nth-of-type(1) img {
  width: 155px;
  display: block;
}

.help__footer .help__text {
  color: #000;
  text-align: center;
  font-family: Helvetica;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 230px;
  margin-top: 14px;
}

.help__buttons {
  margin-top: 30px;
}

.help__buttons h3 {
  color: #000;
  font-family: "Abhaya Libre";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.gradient__button {
  margin-top: 24px;
  margin-bottom: 24px;
  border: none;
  color: #FFF;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Abhaya Libre";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  padding: 13px 30px;
  display: block;
  cursor: pointer;
  border-radius: 30.5px;
  background: var(--tlo, linear-gradient(270deg, #37AA47 0%, #00A0DF 143.01%));
}

.gradient__button:hover {
  background: var(--tlo, linear-gradient(90deg, #37AA47 0%, #00A0DF 143.01%));
}

@media (max-width: 1200px) {
  .help {
    grid-template-columns: 1fr;
    justify-content: center;
    padding: 66px 20px 20px;
  }
  .help__svg {
    display: none;
  }
  .help__content {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .help h1,
  .help h2 {
    text-align: center;
  }
  .help__cta {
    justify-content: center;
  }
  .help__text {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
  .help__text p,
  .help__text b {
    text-align: center !important;
    display: block;
  }
  .help__buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .help__buttons h3 {
    text-align: center;
  }
}
@media (max-width: 650px) {
  .help__cta {
    flex-direction: column;
    gap: 30px;
  }
  .help__footer {
    gap: 1px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
  .help__footer .help__link {
    margin-left: auto;
    margin-right: auto;
  }
}
.quiz {
  position: relative;
  height: 100dvh;
  width: 100vw;
  display: grid;
}

.quiz__svg {
  width: 878px;
  margin-top: 80px;
  margin-left: -100px;
}

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

.quiz__logo {
  position: absolute;
  top: 50px;
  right: 70px;
}

.quiz__logo img {
  filter: invert(1);
  width: 158px;
  height: 47px;
}

.quiz__footer {
  position: absolute;
  bottom: 20px;
  right: 50px;
  width: 600px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.quiz__link {
  width: 218px;
  height: 69px;
}

.quiz__link img {
  width: 218px;
  height: 69px;
  display: block;
}

.quiz__text {
  color: #000;
  font-family: Helvetica;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.quiz__content {
  width: 600px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 30vh;
}

.quiz .question__number {
  color: #000;
  font-family: "Abhaya Libre";
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.quiz .question__name {
  color: #000;
  font-family: "Abhaya Libre";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 20px;
  display: block;
}

.quiz .question__buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 65px;
}

.quiz .question__buttons button {
  width: 250px;
}

@media (max-width: 1200px) {
  .quiz__content {
    right: 10%;
    left: unset;
  }
  .quiz__svg {
    margin-left: -250px;
  }
}
@media (max-width: 1000px) {
  .quiz {
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow: hidden;
  }
  .quiz__svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 500px;
    width: 100%;
    margin: 0;
    max-width: 800px;
  }
  .quiz__content {
    position: static;
    order: 2;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    max-width: 100%;
  }
  .quiz__logo {
    position: static;
    order: 1;
    margin-left: auto;
  }
  .quiz__footer {
    order: 3;
    position: static;
    margin-top: auto;
    margin-left: auto;
    justify-content: space-between;
    width: 100%;
  }
  .quiz__footer .quiz__text {
    width: 202px;
  }
  .quiz__footer .quiz__link img {
    width: 187px;
  }
  .quiz .question__name {
    color: #000;
    font-family: "Abhaya Libre";
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .quiz .question__number {
    color: #000;
    font-family: "Abhaya Libre";
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
}
@media (max-width: 650px) {
  .quiz__svg {
    transform: translateX(-45%);
    z-index: -1;
  }
}
.final {
  padding: 50px 32px 20px;
  display: flex;
  flex-direction: column;
}

.final__logo {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-contentP;
}

.final__logo img {
  width: 158px;
  display: block;
  height: 47px;
  filter: invert(1);
}

.final__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.final__content h1 {
  margin-top: 95px;
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 1000px;
}

.final__cta {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.final__cta > a {
  width: 281px;
  height: 89px;
}

.final__cta > a img {
  width: 100%;
}

.final__cta p {
  max-width: 400px;
  width: 100%;
  color: #000;
  font-family: "Abhaya Libre";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.final__text {
  margin-top: 60px;
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.final__more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.final__more h2 {
  color: #000;
  text-align: center;
  font-family: "Abhaya Libre";
  max-width: 600px;
  width: 100%;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.final__footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.final__footer .final__text {
  color: #000;
  text-align: center;
  font-family: Helvetica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 416px;
  margin: 0;
}

.final__link:nth-of-type(1) {
  width: 337.231px;
  height: 150.732px;
}

.final__link:nth-of-type(1) img {
  width: 100%;
  display: block;
}

.final__link:nth-of-type(2) {
  width: 286.135px;
  height: 191.608px;
}

.final__link:nth-of-type(2) img {
  width: 100%;
  display: block;
}

@media (max-width: 1000px) {
  .final__cta {
    flex-direction: column;
  }
  .final__cta p {
    text-align: center;
    width: 100%;
    max-width: 600px;
  }
  .final__footer {
    flex-direction: column;
    gap: 10px;
  }
  .final__link {
    width: 200px !important;
    height: auto !important;
  }
  .final__link img {
    width: 200px !important;
    height: auto !important;
  }
}