@charset "UTF-8";
/* $font-btn: 'Blair', sans-serif;
$font-h1: 'Blair', sans-serif; */
h1 {
  font-family: "Area Extended", sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 120%;
  text-transform: uppercase;
  /* max-width: 700px; */
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 150%;
  text-transform: none;
  margin-bottom: 0.4rem;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 0;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #d8d8d8 #666666;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: var(--primary);
}

*::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 16px;
  border: 0px none #ffffff;
}

.btn {
  display: block;
  font-family: "Area Extended", sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: bold;
  height: 2rem;
  padding: 0.25rem 1.25rem;
  border: 1.5px solid var(--white);
  border-radius: 1rem;
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.btn:hover, .btn:focus {
  border-color: var(--secondary);
  box-shadow: inherit;
}

.link {
  display: block;
  text-transform: uppercase;
  position: relative;
  font-size: 0.7rem;
  font-weight: bold;
  line-height: 1.05rem;
  padding-left: 0.6rem;
  border-bottom: 1px solid var(--white);
  cursor: pointer;
}
@media (max-width: 767px) {
  .link {
    font-size: 1rem;
  }
}
.link::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/next.svg");
  background-repeat: no-repeat;
  background-size: 0.45rem 0.45rem;
  background-position: center;
  width: 0.45rem;
  height: 1.05rem;
}
.link:hover, .link:focus {
  border-color: var(--secondary);
  box-shadow: inherit;
}
.link:hover::before, .link:focus::before {
  background-image: url("../images/next-red.svg");
}

#lvi-sila {
  position: relative;
}

.sticky-container {
  /* background-color: rgb(197, 215, 209); */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* padding: 2rem 0; */
  /* padding: 3rem 0 0;
  */
}
.sticky-container .content {
  width: 43%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sticky-container .content {
    width: 100%;
    padding-bottom: calc(60vh - 6.75rem);
    padding-top: 3rem;
    opacity: 0;
  }
  .sticky-container .content.run {
    opacity: 1;
    transition: opacity 0.25s ease;
  }
}
.sticky-container .spacer {
  width: 34rem;
  height: 100vh;
  display: none;
  background-color: aquamarine;
  /* @include mobile {
      height: calc(60vh - 6.75rem);
      width: 100%;
      display: block;
  } */
}
.sticky-container .sticky-element {
  /* padding-top: 3rem; */
  display: flex;
  align-items: flex-start;
  align-content: center;
  justify-content: center;
  width: 41.8%;
  height: calc(100vh - 3rem);
  transition: top 0.3s ease;
  position: relative;
  z-index: 5;
  /* background-color: beige; */
  /* z-index: 100; */
  /* &>div {
      position: relative;
      max-width: 100%;
      height: calc(100% - 5rem);
      aspect-ratio: 2558.3 / 4400;
  } */
}
@media (max-width: 767px) {
  .sticky-container .sticky-element {
    padding-top: 0;
    height: calc(60vh - 6.75rem);
    width: 25rem !important;
    /* background-color: $var-white; */
    position: absolute;
    /* padding-top: 1rem; */
    margin-top: -1px;
    top: 40vh;
    /* background: rgb(0,24,79);
    background: -moz-linear-gradient(180deg, rgba(0,24,79,0) 0%, rgba(0,11,52,1) 48%);
    background: -webkit-linear-gradient(180deg, rgba(0,24,79,0) 0%, rgba(0,11,52,1) 48%);
    background: linear-gradient(180deg, rgba(0,24,79,0) 0%, rgba(0,11,52,1) 30%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000b34",endColorstr="#00184f",GradientType=1); */
  }
}
.sticky-container .sticky-element.fixed {
  position: fixed;
  top: auto;
  bottom: 0;
  /* Přilíná ke spodku obrazovky */
  right: 0;
  left: auto;
}
.sticky-container .sticky-element.bottom {
  position: absolute;
  bottom: 0;
  top: auto;
  left: auto;
  right: 0;
}
@media (max-width: 767px) {
  .sticky-container .sticky-element.bottom {
    bottom: 40vh;
  }
}

.grad {
  width: 100%;
  height: calc(100vh - 8rem);
  bottom: 0;
  transition: top 0.3s ease;
  /* background-color: rgba(255, 192, 203, 0.5); */
  transition: 0.5s;
  background: rgb(0, 24, 79);
  background: -moz-linear-gradient(180deg, rgba(0, 24, 79, 0) 0%, rgb(0, 11, 52) 48%);
  background: -webkit-linear-gradient(180deg, rgba(0, 24, 79, 0) 0%, rgb(0, 11, 52) 48%);
  background: linear-gradient(180deg, rgba(0, 24, 79, 0) 0%, rgb(0, 11, 52) 30%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000b34", endColorstr="#00184f", GradientType=1);
  display: none;
}
@media (max-width: 767px) {
  .grad {
    display: block;
  }
}
.grad.fixed {
  position: fixed;
  top: auto;
  bottom: 0;
  /* Přilíná ke spodku obrazovky */
  right: 0;
  left: auto;
}
.grad.bottom {
  position: absolute;
  bottom: 0;
  top: auto;
  left: auto;
  right: 0;
  background: rgb(0, 24, 79);
  background: -moz-linear-gradient(180deg, rgba(0, 24, 79, 0) 0%, rgb(0, 24, 79) 30%, rgb(0, 24, 79) 87%, rgba(0, 24, 79, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 24, 79, 0) 0%, rgb(0, 24, 79) 30%, rgb(0, 24, 79) 87%, rgba(0, 24, 79, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 24, 79, 0) 0%, rgb(0, 24, 79) 30%, rgb(0, 24, 79) 87%, rgba(0, 24, 79, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00184f", endColorstr="#00184f", GradientType=1);
}
@media (max-width: 767px) {
  .grad.bottom {
    bottom: 40vh;
  }
}

.content {
  z-index: 1;
}

.sticky-element {
  z-index: 5;
}

.grad {
  z-index: 4;
}

#spot {
  position: relative;
  width: 100%;
  /* min-height: 80vh; */
  /* Full viewport height */
}

.video-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  /* min-height: 80vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper video {
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.2rem;
  height: 7.2rem;
  background: url("../images/play-button.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
  z-index: 10;
}

.video-wrapper video.playing + .play-button {
  display: none;
}

.hero {
  height: 100vh;
  position: relative;
}
.hero .middle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100vh;
  text-align: center;
  text-shadow: 0 0 10px #00184F, 0px 0px 14px rgba(0, 24, 79, 0.5);
}
.hero .middle a .link::before {
  content: "";
  position: absolute;
  background-image: url("../images/next.svg");
  background-repeat: no-repeat;
  width: 1rem;
  left: 1rem;
  height: 1rem;
}
.hero p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .hero p {
    font-size: 1.3rem;
  }
}

.bgimage {
  /* background-image: url("../images/hero_bg.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), linear-gradient(0deg, rgba(19, 74, 177, 0.50) 0%, rgba(19, 74, 177, 0.50) 100%), url("../images/hero_bg.gif") lightgray 50% / cover no-repeat;
  background-blend-mode: normal, hard-light, normal;*/
  /*  filter: blur(5px);  */
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -10; */
  opacity: 1;
}
.bgimage div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 24, 79, 0.5) 0%, rgba(0, 24, 79, 0) 33.72%);
}

.lion {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-position: left center;
  /* opacity: .5;
  transform: scaleX(-1);
  filter: brightness(0.8) contrast(1.2) saturate(1.5);
  background-blend-mode: color-dodge; */
}
@media (max-width: 767px) {
  .lion {
    object-position: center center;
  }
}

#lvi-sila article {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#lvi-sila h1 {
  font-size: 1.4rem;
  line-height: 2.17rem;
}
#lvi-sila p {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
}
#lvi-sila p + p {
  margin-top: 1rem;
}

#lottie-container {
  width: 100%;
  height: 100%;
}

@keyframes flyAnimation {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20vw);
  }
  100% {
    transform: translateX(0);
  }
}
#slider-section {
  padding-top: 6rem;
}

#next,
#next2,
#prew,
#prew2 {
  background-image: url("../images/prew.svg");
  background-size: 1.1913rem 1.1913rem;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 6rem;
  /* background-color: pink; */
  cursor: pointer;
  z-index: 400;
}

#next,
#next2 {
  transform: rotate(180deg);
}

.slierd-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 100;
}
.slierd-bottom .text-slider {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 6rem;
}
.slierd-bottom #bottlespacer2 {
  display: block;
  width: 50%;
  min-height: 78vh;
  /* background-color: rgba(221, 160, 221, 0.247); */
}
@media (max-width: 1200px) {
  .slierd-bottom #bottlespacer2 {
    min-height: 40vh;
    width: 100%;
  }
}
.slierd-bottom .texts {
  margin-top: 5rem;
  width: 50%;
}
@media (max-width: 1200px) {
  .slierd-bottom .texts {
    width: 100%;
  }
}

.text-slider-wraper {
  padding: 0 0 0 1rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .text-slider-wraper {
    padding: 0;
    order: 3;
  }
  .text-slider-wraper .flex {
    justify-content: center;
  }
}

.text-slider-content {
  width: 100%;
  min-height: 19rem;
}
@media (max-width: 767px) {
  .text-slider-content {
    min-height: 24rem;
  }
}
.text-slider-content h1 {
  font-size: 1.8rem;
  line-height: 120%;
  padding-right: 2.5rem;
  margin-bottom: 1rem;
}
.text-slider-content h2 {
  font-size: 1.1rem;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 767px) {
  .text-slider-content h2 {
    font-size: 1.4rem;
  }
}
.text-slider-content p {
  font-size: 0.7rem;
  line-height: 150%;
}
@media (max-width: 767px) {
  .text-slider-content p {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .text-slider-content {
    text-align: center;
  }
}

.text-slider-container {
  margin-left: 2.75rem;
  display: flex;
  justify-content: space-between;
  transition: opacity 0.25s ease;
}
@media (max-width: 1200px) {
  .text-slider-container {
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .text-slider-container #prew2 {
    order: 1;
    width: 50%;
  }
  .text-slider-container #next2 {
    order: 2;
    width: 50%;
  }
}
.text-slider-container #prew2,
.text-slider-container #next2 {
  background-size: 1.2rem 1.2rem;
  width: 3rem;
  height: 3rem;
}

.slider-bottom-p1,
#bottlespacer1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 24.8rem;
  width: 100%;
  position: relative;
  z-index: 99;
  /* overflow: hidden; */
}
@media (max-width: 767px) {
  .slider-bottom-p1,
  #bottlespacer1 {
    height: 17.2rem;
  }
}

.slider-bottom-p1.fly {
  transition: 0.5s;
}

.fly {
  transition: 0.5s;
  /* .twist-bottles {
      animation: flyAnimation .5s ease-in-out;

      @include down-desktop {
          animation: none;
      }
  } */
}

.slider-bottom-p1.fly #prew,
.slider-bottom-p1.fly #next,
.slider-bottom-p1.position-bottlespacer2 #prew,
.slider-bottom-p1.position-bottlespacer2 #next {
  opacity: 0;
}

.slider-bottom-p1.position-bottlespacer1 #prew,
.slider-bottom-p1.position-bottlespacer1 #next {
  transition: 0.5s;
}
@media (max-width: 1200px) {
  .slider-bottom-p1.position-bottlespacer1 #prew,
  .slider-bottom-p1.position-bottlespacer1 #next {
    display: none;
  }
}

.content-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.twist-bottles {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 27rem;
}

.twist-bottles img {
  position: absolute;
  transition: transform 1s ease-in-out, z-index 1s ease-in-out, opacity 1s ease-in-out, filter 1s ease-in-out;
  transform-origin: center;
  opacity: 0;
  width: auto;
  height: 100%;
  filter: blur(0);
  /* Výchozí hodnota */
}

.slider-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 7.65rem;
  text-align: center;
  margin-bottom: 3.95rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .slider-top {
    text-align: left;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .slider-top {
    text-align: left;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
.slider-top .slider-top-left,
.slider-top .slider-top-right {
  width: 50%;
}
@media (max-width: 1200px) {
  .slider-top .slider-top-left,
  .slider-top .slider-top-right {
    width: 100%;
  }
}
.slider-top h2 {
  font-size: 1.1rem;
  line-height: 1.65rem;
}
@media (max-width: 767px) {
  .slider-top h2 {
    font-size: 1.4rem;
  }
}
.slider-top p {
  font-size: 0.7rem;
  line-height: 150%;
}
@media (max-width: 767px) {
  .slider-top p {
    font-size: 1rem;
  }
}

/* Základní styl pro viditelné obrázky */
.main_bottle {
  z-index: 300;
  transform: scale(1) translateX(0);
  opacity: 1;
  filter: blur(0);
}

.side.left {
  z-index: 200;
  /* transform: scale(0.75) translateX(calc(-11.5rem / 2)); */
  transform: scale(0.75) translateX(-14.5rem);
  /* Odsazení vlevo */
  opacity: 1;
  filter: blur(1px);
}
@media (max-width: 767px) {
  .side.left {
    transform: scale(0.85) translateX(-3.5rem);
  }
}

.side.right {
  z-index: 200;
  /* transform: scale(0.75) translateX(calc(11.5rem / 2)); */
  transform: scale(0.75) translateX(14.5rem);
  /* Odsazení vpravo */
  opacity: 1;
  filter: blur(1px);
}
@media (max-width: 767px) {
  .side.right {
    transform: scale(0.85) translateX(3.5rem);
  }
}

.twist-bottles {
  transition: 0.5s;
  transform-origin: center bottom;
}

.position-bottlespacer1 .twist-bottles {
  transform: scale(1);
}

.position-bottlespacer2 .twist-bottles {
  transform: scale(2);
}
.position-bottlespacer2 .side.left {
  transform: scale(0.75) translateX(-7rem) translateY(3rem);
}
@media (max-width: 1200px) {
  .position-bottlespacer2 .side.left {
    transform: scale(0.85) translateX(-3.5rem) translateY(0rem);
  }
}
.position-bottlespacer2 .side.right {
  transform: scale(0.75) translateX(7rem) translateY(3rem);
}
@media (max-width: 1200px) {
  .position-bottlespacer2 .side.right {
    transform: scale(0.85) translateX(3.5rem) translateY(0rem);
  }
}

/* @keyframes flyAnimationLeft {
    0% {
        transform: scale(0.75) translateX(-14.5rem);
    }

    100% {
        transform: scale(0.75) translateX(-7rem) translateY(3rem);
    }
}

@keyframes flyAnimationRight {
    0% {
        transform: scale(0.75) translateX(14.5rem);
    }

    100% {
        transform: scale(0.75) translateX(7rem) translateY(3rem);
    }
}

.position-bottlespacer2.fly,
.position-bottlespacer1.fly {
    .twist-bottles {
        transform: scale(2);

        @include down-desktop {
            transform: scale(1);
        }
    }

    .side.left {
        transition: 0s;
        animation: flyAnimationLeft .5s ease-out;

        @include down-desktop {
            animation: none;
        }
    }

    .side.right {
        transition: 0s;
        animation: flyAnimationRight .5s ease-out;

        @include down-desktop {
            animation: none;
        }
    }
}

.position-bottlespacer1.fly {
    .twist-bottles {
        transform: scale(1);

        @include down-desktop {
            transform: scale(1);
        }
    }
} */
#jak-horcik-pomaha {
  padding: 9rem 0 7rem;
}
#jak-horcik-pomaha h1 {
  font-size: 1.8rem;
  line-height: 120%;
  margin-bottom: 2.35rem;
}
#jak-horcik-pomaha h2 {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 150%;
}
@media (max-width: 767px) {
  #jak-horcik-pomaha h2 {
    font-size: 1.4rem;
  }
}
#jak-horcik-pomaha p {
  font-size: 0.7rem;
  line-height: 150%;
}
@media (max-width: 767px) {
  #jak-horcik-pomaha p {
    font-size: 1rem;
  }
}
#jak-horcik-pomaha .btn {
  margin-top: 4.5rem;
}

.about .text-container {
  gap: 4.6rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about .text-container {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .about .text-container {
    flex-direction: column;
    gap: 2rem;
  }
}
.about article {
  opacity: 1;
  width: 33%;
}
@media (max-width: 991px) {
  .about article {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about article {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about article {
    width: 100%;
  }
}
.about article h3 {
  margin-bottom: 1rem;
}

#dotazy {
  padding-top: 2rem;
}
#dotazy h1 {
  font-size: 1.8rem;
  line-height: 120%;
  margin-bottom: 0;
}
#dotazy p.bold {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #dotazy p.bold {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  #dotazy p.bold {
    margin-bottom: 1rem;
  }
}

.OpenClose {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  rotate: 0deg;
  transition: rotate 0.3s ease;
  user-select: none;
}
@media (max-width: 767px) {
  .OpenClose {
    top: 1rem;
    right: 2rem;
  }
}

.QA-Open {
  rotate: 45deg;
  transition: rotate 0.3s ease;
}

.QA-container-right,
.QA-container-left {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media (max-width: 1200px) {
  .QA-container-right,
  .QA-container-left {
    width: 100%;
  }
}

.QA-container-bottom {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .QA-container-bottom {
    text-align: center;
    display: flex;
  }
}

.QA-container-left {
  gap: 1.55rem;
}
@media (max-width: 1200px) {
  .QA-container-left {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .QA-container-left h3 {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}

.QA-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.45rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .QA-content {
    margin: 0 0.55rem;
    gap: 0.5rem;
  }
}

.QA-answer {
  display: none;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

.QA-content-item img {
  cursor: pointer;
}

.QA {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 2rem;
  margin-top: 5rem;
  margin-bottom: 2.2rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .QA {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .QA {
    flex-direction: column;
  }
}

.QA-content-item {
  display: flex;
  position: relative;
  justify-content: start;
  align-items: flex-start;
  flex-direction: column;
  padding: 1rem;
  border: solid 1.5px #fff;
  border-radius: 1.8rem;
  cursor: pointer;
  gap: 1rem;
  /* @include mobile {
      border-radius: 2rem;
  } */
}
.QA-content-item h3 {
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .QA-content-item h3 {
    font-size: 1.2rem;
  }
}
.QA-content-item p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  line-height: 150%;
}
@media (max-width: 767px) {
  .QA-content-item p {
    font-size: 1rem;
  }
}
.QA-content-item p strong {
  font-weight: 700;
}
.QA-content-item h2 {
  padding: 0;
  margin: 0;
}

.water {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.5;
  transform: scaleX(-1);
  filter: brightness(0.8) contrast(1.2) saturate(1.5);
  background-blend-mode: color-dodge;
}

.ripple {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

section a,
.QA-content-item,
.btn,
#next,
#next2,
#prew,
#prew2,
#spot,
#home {
  position: relative;
  z-index: 500;
}

main {
  padding: 160px 0 0;
  min-height: 300vh;
}
@media (max-width: 991px) {
  main {
    padding: 95px 0 0;
  }
}