/* HERO - style */
.hero {
  height: 100dvh;
  background-color: var(--color-warm-white);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 6em 2em 3em;
  overflow: hidden;
}

.hero__pinned .container-fluid {
  position: relative;
  z-index: 5;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 35%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000000),
    to(transparent)
  );
  background: -o-linear-gradient(top, #000000 0%, transparent 100%);
  background: linear-gradient(to bottom, #000000 0%, transparent 100%);
  z-index: 4;
  opacity: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000000),
    to(transparent)
  );
  background: -o-linear-gradient(bottom, #000000 0%, transparent 100%);
  background: linear-gradient(to top, #000000 0%, transparent 100%);
  z-index: 4;
  opacity: 0;
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.hero.is--active-aft::before,
.hero.is--active-aft::after {
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.hero-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 20%);
  -ms-transform: translate(-50%, 20%);
  transform: translate(-50%, 20%);
  top: 29%;
  opacity: 0;
}

.hero-title h2 {
  font-family: "PP Playground", sans-serif;
  font-size: 253px;
  line-height: 364px;
  font-weight: 500;
  color: var(--color-tamarillo);
  margin-top: -150px;
  margin-left: -50px;
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
}

.hero-text {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 40%);
  -ms-transform: translate(-50%, 40%);
  transform: translate(-50%, 40%);
  bottom: 50px;
  opacity: 0;
}

/* .hero-text::before {
  content: "";
  position: absolute;
  top: -45%;
  left: 50%;
  transform: translateX(-50%);
  width: 3em;
  height: 3em;
  background-image: url("../img/scroll-indicator.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  animation: floatIndicator 2s ease-in-out infinite;
}

@keyframes floatIndicator {
  0%,
  100% {
    transform: translate(-50%, -10px);
  }
  50% {
    transform: translate(-50%, 10px);
  }
} */

.hero-text p {
  text-align: center;
  text-transform: uppercase;
  color: var(--color-tamarillo);
  font-weight: 600;
}

.hero__text {
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  max-width: 45em;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.hero__text.is--active {
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.is--active .hero-text,
.is--active .hero-title {
  opacity: 1;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  -webkit-transition: all 0.6s ease-out 0.8s;
  -o-transition: all 0.6s ease-out 0.8s;
  transition: all 0.6s ease-out 0.8s;
}

.hero-loader-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
  -ms-transform: translate(-50%, -60%);
  transform: translate(-50%, -60%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  width: 248px;
  height: 323px;
  z-index: 2;
}

.is--active .hero-loader-img {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s ease-out 0.8s;
  -o-transition: all 0.6s ease-out 0.8s;
  transition: all 0.6s ease-out 0.8s;
}

.hero__text :where(h1, h2, h4, h4, h5, h6) {
  color: var(--color-warm-white);
}

.hero__text h6 {
  margin-bottom: 1em;
  font-family: "Oswald", sans-serif;
}

.hero__button {
  margin-top: 2em;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 3;
  opacity: 0;
  width: 248px;
  height: 323px;
}

@keyframes resizeVideo {
  0% {
    width: 248px;
    height: 323px;
  }
  100% {
    width: 100vw;
    height: 100dvh;
  }
}

.hero.is--active video {
  opacity: 1;
  -webkit-transition: opacity 0s ease-out 1.4s;
  -o-transition: opacity 0s ease-out 1.4s;
  transition: opacity 0s ease-out 1.4s;

  /* Trigger animation */
  animation: resizeVideo 0.6s ease-out 2.2s forwards;
}

.hero.is--active::before,
.hero.is--active::after,
.hero.is--active .hero__text {
  opacity: 1;
  -webkit-transition: all 0.4s ease-out 2.8s;
  -o-transition: all 0.4s ease-out 2.8s;
  transition: all 0.4s ease-out 2.8s;
}

/* .hero-pin {
  height: 3000px;
} */

@media only screen and (max-width: 991px) {
  .hero {
    padding: 6em 20px 3em;
  }
}

@media only screen and (max-width: 575px) {
  .hero-title h2 {
    font-size: 60vw;
  }
}

/* HISTORY - style */
.history-pin {
  overflow: hidden;
  position: relative;
}

.history {
  min-height: 8000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.history__wrap {
  min-height: 100dvh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: 0;
}

.history-text {
  text-align: center;
  margin-bottom: 40px;
}

.history-text p {
  color: var(--color-black);
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.history-camera {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.history-heading {
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
  text-align: center;
}

.history-heading h2 {
  font-family: "PP Playground", sans-serif;
  font-size: 253px;
  line-height: 364px;
  font-weight: 500;
  color: var(--color-tamarillo);
  margin-top: -150px;
  margin-left: -110px;
}

.history-film {
  background-color: var(--color-black);
  -webkit-clip-path: ellipse(300% 40% at 50% 50%);
  clip-path: ellipse(300% 40% at 50% 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  min-height: 100dvh;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  position: absolute;

  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  z-index: 2;
  -webkit-transform-origin: center !important;
  -ms-transform-origin: center !important;
  transform-origin: center !important;
  margin-top: 80px;
}

.history-film__img {
  width: 100%;
  text-align: center;
}

.history-film__img img {
  height: 100%;
  width: 100%;
  max-width: 70%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  /* -webkit-filter: grayscale(100%);
  filter: grayscale(100%); */
}

.history-film::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--color-black)),
    to(transparent)
  );
  background: -o-linear-gradient(left, var(--color-black) 0%, transparent 100%);
  background: linear-gradient(
    to right,
    var(--color-black) 0%,
    transparent 100%
  );
  z-index: 3;
}

.history-film::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(var(--color-black)),
    to(transparent)
  );
  background: -o-linear-gradient(
    right,
    var(--color-black) 0%,
    transparent 100%
  );
  background: linear-gradient(to left, var(--color-black) 0%, transparent 100%);
  z-index: 3;
}

.history-film__item {
  min-width: 50vw;
  height: 80vh;
  background-color: var(--color-black-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px 0px;
}

.history-film__item.large {
  min-width: 100vw;
}

.history-film__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 50px 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: calc(100% - 120px);
}

.history-film__text {
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px 0px;
}
.history-film__content h2 {
  font-family: "PP Playground", sans-serif;
  font-size: 8em;
  line-height: 1;
  font-weight: 500;
  color: var(--color-warm-white);
}

.history-film__text--last h2 {
  font-size: 5em;
}

.history-film__content p {
  font-size: 1em;
  line-height: 1.467;
  font-weight: 500;
  color: var(--color-warm-white);
  text-transform: uppercase;
}

.history-film__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.history-film__dots li {
  width: 3.05vw;
  height: 3.05vw;
  background-color: var(--color-black);
}

.history-film-mask {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
}

.history-film-mask::before {
  content: "";
  position: absolute;
  top: calc(50px + 3.05vw);
  z-index: 2;
  left: 0;
  width: 100vw;
  height: 80px;
  background-image: url("../img/mask-vector.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-position-y: top;
  background-size: cover;
}

.history-film-mask::after {
  content: "";
  position: absolute;
  bottom: calc(50px + 3.05vw);
  z-index: 2;
  left: 0;
  width: 100vw;
  height: 80px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url("../img/mask-vector.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-position-y: top;
  background-size: cover;
}

@media only screen and (max-width: 1280px) {
  .history-film__img img {
    max-width: 80%;
  }
  .history-film-mask::before {
    top: calc(30px + 4vw);
  }

  .history-film-mask::after {
    bottom: calc(30px + 4vw);
  }
}

@media only screen and (max-width: 991px) {
  .history-film__item {
    min-width: 80vw;
  }

  .history-film__img img {
    max-width: 100%;
    width: auto;
  }

  .history-film-mask::before,
  .history-film-mask::after {
    height: 8vh;
    background-size: contain;
  }
  .history-film__content {
    padding: 20px 20px;
  }

  .history-film__item.large {
    min-width: 160vw;
  }

  .history-film__dots li {
    width: 4vw;
    height: 4vw;
  }

  .history-film-mask::before {
    top: calc(50px + 4vw);
  }

  .history-film-mask::after {
    bottom: calc(50px + 4vw);
  }

  .history-film__text {
    max-width: 56.8%;
  }

  .history-spacer {
    height: 10em;
  }
}

@media only screen and (max-width: 767px) {
  .history-film__content h2 {
    font-size: 8.06em;
	  margin-bottom: 10px;
  }

  .history-film__text--last h2 {
    font-size: 5.06em;
  }

  .history-film__text--last {
    max-width: 80%;
  }

  .history-film__content p {
    font-size: 0.9593em;
  }

  .history-film__item {
    min-width: 100vw;
  }

  .history-film__item.large {
    min-width: 200vw;
  }

  .history-film__dots li {
    width: 6.1vw;
    height: 6.1vw;
  }

  .history-film-mask::before {
    top: calc(50px + 6.1vw);
  }

  .history-film-mask::after {
    bottom: calc(50px + 6.1vw);
  }

  .history-film-mask::before,
  .history-film-mask::after {
    height: 8vh;
    background-size: 250%;
  }
	
	.history-film__text {
		max-width: 65%;
	}
	
	.history-film__content p {
    font-size: 1.4em;
}
}

@media only screen and (max-width: 575px) {
  .history-heading h2 {
    font-size: 50vw;

    margin-top: -170px;
    margin-left: -20px;
  }
}

/* FAQ - style */

.our-faq {
  padding: 10em 2em;
  overflow: hidden;
}

.our-faq__text {
  margin-bottom: 3em;
  text-transform: uppercase;
  text-align: center;
}

.our-faq__text h2 {
  margin-bottom: 14px;
  color: var(--color-tamarillo);
}

.our-faq__wrap-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2em;
}

.our-faq__item {
  background-color: var(--color-green);
  padding: 8px;
  -webkit-mask: var(--mask-corner-cut-circles-1);

  width: 100%;
}

.our-faq__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}

.our-faq__top h4 {
  color: var(--color-warm-white);
  font-size: 1.575em;
  line-height: 1.2;
  margin: 0.25em 0 0;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.our-faq__icon {
  width: 54px;
  min-width: 54px;
  height: 54px;
  background-color: var(--color-warm-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Migra", sans-serif;
  color: var(--color-warm-white);
  font-size: 2.5em;
  line-height: 1;
  position: relative;
  -webkit-mask: var(--mask-corner-cut-circles-5px);
}

.our-faq__icon::after,
.our-faq__icon::before {
  content: "";
  border-bottom: 2px solid var(--color-tamarillo);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  border-radius: 0px;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.our-faq__item--active .our-faq__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.our-faq__item--active .our-faq__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.our-faq__bottom {
  background-color: var(--color-warm-white);
  inset: 100% 0% auto;
  margin-top: 10px;
  padding: 40px 45px;
  display: none;
  -webkit-mask: var(--mask-corner-cut-circles-1);
}

.our-faq__bottom > * {
  color: var(--color-black-light);
}

.our-faq__bottom p a {
  text-decoration: none;
  color: var(--color-tamarillo);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.our-faq__bottom p a:hover {
  text-decoration: underline;
}

.our-faq__bottom p:first-of-type {
  text-indent: 5em;
}

.our-faq__item--active .our-faq__top h4 {
  color: var(--color-warm-white);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media only screen and (max-width: 1440px) {
  .our-faq__bottom {
    padding: 25px 30px;
  }

  .our-faq__item {
    padding: 5px;
  }

  .our-faq__icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .our-faq__top {
    gap: 25px;
  }
}

@media only screen and (max-width: 1280px) {
  .our-faq__icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .our-faq__bottom {
    padding: 20px 25px;
  }
}

@media only screen and (max-width: 991px) {
  .our-faq {
    padding: 10em 20px;
  }

  .our-faq__text {
    text-align: left;
    max-width: 30em;
  }
  .our-faq__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 25px;
  }

  .our-faq__icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .our-faq__icon::after,
  .our-faq__icon::before {
    border-width: 2px;
  }
}

@media only screen and (max-width: 767px) {
  .our-faq__top {
    gap: 16px;
  }

  .our-faq__bottom {
    padding: 15px 12px;
  }

  .our-faq__item {
    padding: 5px 5px 5px 5px;
  }
  .our-faq__top {
    padding-left: 12px;
  }

  .our-faq__item {
    border-radius: 6px;
    padding: 3px;
  }

  .our-faq__icon {
    border-radius: 6px;
  }

  .our-faq__icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .our-faq__icon::after,
  .our-faq__icon::before {
    border-width: 1px;
  }
}

@media only screen and (max-width: 575px) {
  .our-faq__icon {
    border-radius: 5px;
  }
}

/* PRODUCTS - style */

.products {
  height: 2500px;
  width: 100vw;
  position: relative;
  margin-bottom: 5em;
}

.products__wrap {
  text-transform: uppercase;

  position: relative;
  height: 100dvh;
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products__text {
  text-align: center;
  max-width: 30em;
  opacity: 1;
  position: relative;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.products__text h6 {
  margin-bottom: 1em;
  font-family: "Oswald", sans-serif;
  color: var(--color-gold);
}

.products__text h2 {
  color: var(--color-tamarillo);
  font-size: 4.1em;
}

.products__text p {
  margin-top: 0.5em;
  font-weight: 500;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-black);
}

.products__assets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  z-index: 3;
  position: relative;
  width: 100vw;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  height: 200vh;
}

.products__assets img {
  background-color: var(--color-warm-white);
  width: 100%;
}

.products__assets-item {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  position: absolute;

  -ms-flex-preferred-size: 30em;
  flex-basis: 30em;
  margin-bottom: 0px;
  width: 30em;
}

.products__assets-item:nth-child(1) {
  z-index: 9;
}
.products__assets-item:nth-child(2) {
  z-index: 2;
}
.products__assets-item:nth-child(3) {
  z-index: 3;
}
.products__assets-item:nth-child(4) {
  z-index: 4;
}
.products__assets-item:nth-child(5) {
  z-index: 5;
}
.products__assets-item:nth-child(6) {
  z-index: 6;
}
.products__assets-item:nth-child(7) {
  z-index: 7;
}

@media only screen and (max-width: 1440px) {
  .products {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .products__assets-item {
    width: 25em;
  }

  .products__text h6 {
    margin-bottom: 0.5em;
  }
  .products__text p {
    font-size: 1.15em;
  }
  .products__text h2 {
    font-size: 3em;
  }
  .products__text h6 {
    font-size: 1.3em;
  }
}

@media only screen and (max-width: 575px) {
  .products__text h2 {
    font-size: 2.7em;
  }
}

@media only screen and (max-width: 479px) {
  .products__text h2 {
    font-size: 2.3em;
  }
  .products__text p {
    font-size: 1.1em;
  }
}

/* TEAM - style */
.our-team {
  padding: 10em 20px;
  overflow: hidden;
  position: relative;
}

.our-team__content {
  max-width: 800px;
  margin: 0 auto;
}

.our-team__image-slider {
  overflow: visible;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.our-team__image-slider .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  width: 18em;
  border-radius: var(--border-box);
  overflow: hidden;
}

.team-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: auto;
  opacity: 1;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: opacity 0.6s, -webkit-filter 0.6s;
  transition: opacity 0.6s, -webkit-filter 0.6s;
  -o-transition: filter 0.6s, opacity 0.6s;
  transition: filter 0.6s, opacity 0.6s;
  transition: filter 0.6s, opacity 0.6s, -webkit-filter 0.6s;
  width: 100%;
  overflow: hidden;
  margin-bottom: 45px;
}

.team-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: contain;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 100%;
}

.our-team__text h6 {
  font-family: "Oswald", sans-serif;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.our-team__text h4 {
  color: var(--color-tamarillo);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.our-team__text p {
  color: var(--color-black);

  -webkit-transition: all 0.3s ease-out;

  -o-transition: all 0.3s ease-out;

  transition: all 0.3s ease-out;
}

.our-team__text {
  opacity: 0;
  width: 18em;
  margin: 0 auto;
}

.swiper-slide-active .our-team__text {
  opacity: 1;
  -webkit-transition: all 0.3s ease-out 0.2s;
  -o-transition: all 0.3s ease-out 0.2s;
  transition: all 0.3s ease-out 0.2s;
}

@media only screen and (max-width: 1440px) {
  .our-team__text,
  .our-team__image-slider .swiper-slide {
    width: 22em;
  }
}

@media only screen and (max-width: 1280px) {
  .our-team__text,
  .our-team__image-slider .swiper-slide {
    width: 25em;
  }
}

@media only screen and (max-width: 575px) {
  .our-team__text,
  .our-team__image-slider .swiper-slide {
    width: 80vw;
  }
}

/* GALLERY - style*/

.our-gallery {
  position: relative;
  overflow: hidden;
  min-height: 11000px;
}

.our-gallery__title {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100vw;
  overflow: hidden;
}

.our-gallery__title h2 {
  font-family: "PP Playground", sans-serif;
  font-size: 253px;
  line-height: 364px;
  font-weight: 500;
  color: var(--color-tamarillo);
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
}

.gallery {
  position: absolute;
  width: 100vw;
  height: 100%;
  z-index: 3;
  max-width: 1920px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gallery-block {
  position: absolute;
  width: 25%;
  height: auto;
  -webkit-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.gallery-block.active {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
}

.gallery-block img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-mask: var(--mask-corner-cut-circles-2);
}

.gallery-block:nth-child(1) {
  top: -3%;
  left: 10%;
  width: 20%;
}
.gallery-block:nth-child(2) {
  top: -2%;
  right: 12%;
}
.gallery-block:nth-child(3) {
  top: 2%;
  left: 5%;

  width: 15%;
}
.gallery-block:nth-child(4) {
  top: 1%;
  left: 34%;
  width: 25%;
}
.gallery-block:nth-child(5) {
  top: 4%;
  right: 10%;
  width: 20%;
}
.gallery-block:nth-child(6) {
  top: 7%;
  left: 8%;
  width: 30%;
}
.gallery-block:nth-child(7) {
  top: 9%;
  right: 33%;
  width: 23%;
}
.gallery-block:nth-child(8) {
  top: 10%;
  right: 3%;
}
.gallery-block:nth-child(9) {
  top: 14%;
  left: 5%;
  width: 20%;
}
.gallery-block:nth-child(10) {
  top: 16%;
  right: 5%;
  width: 20%;
}
.gallery-block:nth-child(11) {
  top: 15%;
  left: 33%;
  width: 32%;
}
.gallery-block:nth-child(12) {
  top: 21%;
  right: 7%;
  width: 22%;
}
.gallery-block:nth-child(13) {
  top: 23%;
  left: 39%;
}
.gallery-block:nth-child(14) {
  top: 19%;
  left: 5%;
}
.gallery-block:nth-child(15) {
  top: 26.5%;
  right: 5%;
}
.gallery-block:nth-child(16) {
  top: 29.5%;
  left: 41%;
}
.gallery-block:nth-child(17) {
  top: 26%;
  left: 2%;
}
.gallery-block:nth-child(18) {
  top: 33%;
  right: 3%;

  width: 20%;
}
.gallery-block:nth-child(19) {
  top: 32.5%;
  left: 7%;
}
.gallery-block:nth-child(20) {
  top: 36%;
  left: 38%;
  width: 28%;
}
.gallery-block:nth-child(21) {
  top: 47%;
  left: 3%;
  width: 35%;
}

.gallery-block:nth-child(22) {
  top: 47%;
  right: 32%;
  width: 25%;
}

.gallery-block:nth-child(23) {
  top: 40%;
  right: 5%;
  width: 24%;
}

.gallery-block:nth-child(24) {
  top: 47.5%;
  right: 5%;
  width: 20%;
}

.gallery-block:nth-child(25) {
  top: 40%;
  left: 5%;
  width: 30%;
}

.gallery-block:nth-child(26) {
  top: 54%;
  left: 10%;
  width: 35%;
}

.gallery-block:nth-child(27) {
  top: 55%;
  right: 2%;
  width: 37%;
}

.gallery-block:nth-child(28) {
  top: 64%;
  left: 5%;
  width: 20%;
}

.gallery-block:nth-child(29) {
  top: 65%;
  left: 30%;
  width: 31%;
}
.gallery-block:nth-child(30) {
  top: 64.5%;
  right: 4%;
  width: 27%;
}
.gallery-block:nth-child(31) {
  top: 75%;
  left: 8%;
  width: 40%;
}
.gallery-block:nth-child(32) {
  top: 76%;
  right: 2%;
  width: 40%;
}

@media only screen and (max-width: 991px) {
  .our-gallery {
    min-height: 11000px;
  }
}

@media only screen and (max-width: 767px) {
  .our-gallery {
    min-height: 15000px;
  }

  .gallery-block {
    width: 30%;
  }

  .gallery-block:nth-child(1) {
    left: 5%;
    width: 38%;
  }
  .gallery-block:nth-child(2) {
    right: 7%;
    width: 40%;
  }
  .gallery-block:nth-child(3) {
    left: 4%;
    top: 1.2%;
    width: 38%;
  }
  .gallery-block:nth-child(4) {
    left: 52%;
    width: 37%;
  }
  .gallery-block:nth-child(5) {
    right: 3%;
    width: 48%;
  }
  .gallery-block:nth-child(6) {
    left: 3%;
    width: 36%;
    top: 5%;
  }
  .gallery-block:nth-child(7) {
    right: 32%;
    width: 60%;
    top: 8%;
  }
  .gallery-block:nth-child(8) {
    right: 7%;
    top: 12.5%;
    width: 40%;
  }
  .gallery-block:nth-child(9) {
    left: 5%;
    width: 40%;
    top: 13.5%;
  }
  .gallery-block:nth-child(10) {
    right: 3%;
    width: 43%;
    top: 16%;
  }
  .gallery-block:nth-child(11) {
    left: 2%;
    width: 44%;
    top: 17%;
  }
  .gallery-block:nth-child(12) {
    right: 2%;
    width: 40%;
    top: 19.5%;
  }
  .gallery-block:nth-child(13) {
    left: 40%;
    top: 22.5%;
    width: 40%;
  }
  .gallery-block:nth-child(14) {
    left: 3%;
    top: 21%;
  }
  .gallery-block:nth-child(15) {
    right: 2%;
    width: 26%;
    top: 26%;
  }
  .gallery-block:nth-child(16) {
    left: 18%;
    top: 27%;
    width: 35%;
  }
  .gallery-block:nth-child(17) {
    left: 2%;
    height: 30vh;
    top: 24.5%;
  }
  .gallery-block:nth-child(18) {
    right: 3%;
    top: 29.5%;
    width: 31%;
  }
  .gallery-block:nth-child(19) {
    left: 5%;
    width: 42%;
    top: 30%;
  }

  .gallery-block:nth-child(20) {
    top: 33.5%;
    left: auto;
    width: 45%;
    right: 8%;
  }
  .gallery-block:nth-child(21) {
    top: 37.5%;
    left: 3%;
    width: 55%;
  }

  .gallery-block:nth-child(22) {
    top: 41%;
    right: 5%;
    width: 45%;
  }

  .gallery-block:nth-child(23) {
    top: 45.5%;
    right: 5%;
    width: 33%;
  }

  .gallery-block:nth-child(24) {
    top: 44.5%;
    left: 5%;
    width: 45%;
    right: auto;
  }

  .gallery-block:nth-child(25) {
    top: 49%;
    left: 15%;
    width: 70%;
  }

  .gallery-block:nth-child(26) {
    top: 54%;
    left: 10%;
    width: 35%;
  }

  .gallery-block:nth-child(27) {
    top: 55%;
    right: 2%;
    width: 45%;
  }

  .gallery-block:nth-child(28) {
    top: 58%;
    left: 5%;
    width: 62%;
  }

  .gallery-block:nth-child(29) {
    top: 63%;
    left: 21%;
    width: 59%;
  }
  .gallery-block:nth-child(30) {
    top: 68.5%;
    right: 4%;
    width: 64%;
  }
  .gallery-block:nth-child(31) {
    top: 74%;
    left: 4%;
    width: 60%;
  }
  .gallery-block:nth-child(32) {
    top: 79.5%;
    right: 2%;
    width: 70%;
  }
}

@media only screen and (max-width: 575px) {
  .our-gallery {
    min-height: 9000px;
  }

  .our-gallery__title h2 {
    font-size: 50vw;
  }
}

/* SERVICES - style */

.services-green {
  background-color: var(--color-green);
  position: relative;
  -webkit-mask: var(--mask-edge-scoop-vertical);
}

.services {
  padding: 10em 2em;
  position: relative;
}

.services .container-fluid {
  position: relative;
}

.services__text {
  margin-bottom: 5em;
}

.services__text * {
  color: var(--color-warm-white);
  max-width: 21em;
}

.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3em;
}

.services__list h2 {
  font-family: "PP Playground", sans-serif;
  font-size: 6em;
  line-height: 1;
  font-weight: 500;
  color: var(--color-warm-white);
  position: relative;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.text-underline {
  position: relative;
  display: inline-block;
  line-height: 0.8;
  max-width: 45%;
}

.text-underline::before {
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid var(--color-warm-white);
  width: 100%;
  position: absolute;
  z-index: 1;
}

.text-underline::after {
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid var(--color-gold-dark);
  width: 0%;
  z-index: 2;
  position: absolute;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.services__list-item.is--active h2 {
  color: var(--color-gold-dark);
}

.services__list-item.is--active .text-underline::after {
  width: 100%;
}

.service-price {
  font-family: "Oswald", sans-serif;
  font-size: 62px;
  line-height: 1;
  font-weight: 500;
}

@media only screen and (min-width: 992px) {
  .services__img {
    width: 40%;
    right: 2em;
    position: absolute;
    z-index: 2;
    top: -40px;
    opacity: 1;
    -webkit-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
    right: 0;
    visibility: hidden;
  }

  .services__img img {
    width: 100%;
    height: 0%;
    -o-object-fit: cover;
    object-fit: cover;

    -webkit-mask: var(--mask-corner-cut-circles-3);
    -webkit-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
  }

  .services__list-item h2:hover ~ .pin-spacer .services__img {
    visibility: visible;
    -webkit-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
  }

  .services__list-item h2:hover ~ .pin-spacer .services__img img {
    height: 100%;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }

  .services__list-item:hover h2 {
    color: var(--color-gold-dark);
  }

  .services__list-item:hover .text-underline::after {
    width: 100%;
  }

  .service-price {
    position: absolute;
    bottom: 1em;
    right: 1em;
    color: var(--color-warm-white);
    z-index: 3;
    opacity: 0;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
  }

  .services__list-item h2:hover ~ .pin-spacer .services__img .service-price {
    opacity: 1;
    -webkit-transition: all 0.3s ease 0.3s;
    -o-transition: all 0.3s ease 0.3s;
    transition: all 0.3s ease 0.3s;
  }
}

@media only screen and (max-width: 1600px) {
  .service-price {
    font-size: 58px;
  }
}
@media only screen and (max-width: 1536px) {
  .service-price {
    font-size: 52px;
  }
}
@media only screen and (max-width: 1440px) {
  .service-price {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1280px) {
  .service-price {
    font-size: 42px;
  }
}

@media only screen and (max-width: 991px) {
  .services {
    padding: 10em 20px;
  }

  .services__list-item {
    position: relative;
    z-index: 2;
  }

  .services__img {
    width: 100%;
    height: 0;
    display: inline-block;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
    position: relative;
    margin-top: 20px;
  }

  .services__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-mask: var(--mask-corner-cut-circles-3);
  }
  .service-price {
    font-size: 38px;
  }

  .services__list h2 {
    font-size: 8em;
  }

  .service-price {
    position: absolute;
    bottom: 1em;
    right: 1em;
    color: var(--color-warm-white);
    z-index: 3;
    opacity: 0;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
  }

  .services__list-item.is--active .service-price {
    opacity: 1;
    -webkit-transition: all 0.3s ease 0.2s;
    -o-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.2s;
  }

  .text-underline {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .service-price {
    font-size: 32px;
  }

  .services__list-item.is--active .services__img {
    height: 50vw;
  }

  .services__list h2 {
    font-size: 6em;
  }
}

@media only screen and (max-width: 575px) {
  .service-price {
    font-size: 30px;
  }

  .services__list h2 {
    font-size: 5em;
  }
}

/* APP - style */

.mockup {
  padding: 10em 2em;
  background-color: var(--color-tamarillo);
  -webkit-mask: var(--mask-edge-scoop-vertical);
  position: relative;
}

.mockup__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.75em;
}

.mockup__text {
  width: calc(50% - 3.75em / 2);
}

.mockup__text :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 14px;
  max-width: 9em;
  color: var(--color-warm-white);
  text-transform: uppercase;
}

.mockup__text p {
  max-width: 24em;
  font-size: 1.2em;
  color: var(--color-warm-white);
}

.m-btn {
  color: var(--color-warm-white);
  text-transform: uppercase;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2em;
}

.m-btn-text {
  margin-left: 6px;
  text-decoration: underline;
}

.mockup__image {
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.mockup__image video {
  width: 100%;
  -webkit-mask: var(--mask-corner-cut-circles-3);
}

.mockup__image img {
  max-width: 32em;
}

.mockup__buttons {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
  max-width: 23.91em;
}

.mockup__buttons.visible-991 {
  display: none;
}

.mockup__buttons .m-btn--icon img {
  max-width: 1.5em;
}
@media only screen and (max-width: 991px) {
  .mockup {
    padding: 10em 20px;
  }
  .mockup__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 3em;
  }

  .mockup__text {
    width: 100%;
    padding-top: 0;
  }

  .mockup__text :where(h1, h2, h3, h4, h5, h6) {
    max-width: 100%;
  }

  .mockup__text p {
    max-width: 23em;
  }

  .mockup__buttons.visible-991 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .mockup__buttons .m-btn {
    width: 100%;
    max-width: 100%;
  }

  .mockup__buttons.hidden-991 {
    display: none;
  }

  .mockup__image {
    width: 100%;
  }
  .mockup__image,
  .mockup__image img {
    max-width: 100%;
  }

  .mockup__buttons {
    margin-top: 2.5em;
  }
}

/* TESTIMONIAL - style */
.testimonial {
  padding: 10em 0em;
  position: relative;
  overflow: hidden;
}

.testimonial__text {
  margin-bottom: 5em;
  padding: 0em 2em;
}

.testimonial__text :where(h1, h2, h3, h4, h5, h6) {
  color: var(--color-tamarillo);
  max-width: 7em;
}

.testimonial__text p {
  color: var(--color-black);
  max-width: 21em;
}

.testimonial .swiper-slide {
  padding-top: 3.6em;
}

.testimonial .swiper {
  overflow: visible;
}

.testimonial-box {
  padding: 0px 30px;
  height: 30em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.testimonial-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  -webkit-mask: var(--mask-corner-cut-circles-3);
}

.testimonial-box__image {
  position: absolute;
  top: -3.6em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 2;
}

.testimonial-box__text {
  position: relative;
}

.testimonial-box__image img {
  width: 100%;
  max-width: 6em;
}

.testimonial-box__image h6 {
  text-transform: uppercase;
  color: var(--color-black);
  margin-top: 20px;
  font-family: "Oswald", sans-serif;
}

.testimonial__wrap .testimonial-slider {
  padding-left: 2em;
  padding-right: 2em;
}

.testimonial .swiper-pagination {
  position: relative;
  bottom: 0;
  top: 0;
  text-align: left;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5em;
  z-index: 1;
}

.testimonial .swiper-pagination-bullet {
  background: transparent;
  margin: 0 !important;
  width: 2.5em;
  height: 2em;
  border-radius: 0;
  background-image: url(../img/dot.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 991px) {
  .testimonial__wrap .testimonial-slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial__text {
    padding: 0px 20px;
    text-align: center;
  }

  .testimonial__text > * {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial .swiper-slide {
    padding-top: 6em;
  }

  .testimonial-box__image {
    top: -6em;
  }

  .testimonial-box__image img {
    max-width: 10em;
  }

  .testimonial-box {
    height: 35em;
  }

  .testimonial .swiper-pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 575px) {
  .testimonial-box__image h6 {
    margin-top: 12px;
  }

  .testimonial .swiper-pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/*SPLIT TEXT - style*/

.text-transition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0px 20px;
  position: relative;
  min-height: 100vh;
}

.text-transition__content {
  max-width: 890px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.text-transition__img {
  position: absolute;
  right: -3%;
  bottom: -5%;
  height: 100dvh;
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.text-transition__img img {
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 50vh;
}

.text-transition h2 {
  color: var(--color-green-mid);
  font-size: clamp(30px, calc(100vh / 21.6), 50px);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1.15;
}

img#transition-arrow {
  -webkit-transform: rotate(-25deg) scale(0) scaleY(-1);
  -ms-transform: rotate(-25deg) scale(0) scaleY(-1);
  transform: rotate(-25deg) scale(0) scaleY(-1);
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  height: 28%;
  position: absolute;
  right: 23%;
  bottom: 16%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.hidden-overflow {
  overflow: hidden;
}

.text-transition__img.is--active #transition-arrow {
  opacity: 1;
  -webkit-transform: rotate(-25deg) scale(1) scaleY(-1);
  -ms-transform: rotate(-25deg) scale(1) scaleY(-1);
  transform: rotate(-25deg) scale(1) scaleY(-1);
}

@media only screen and (max-width: 1440px) {
  img#transition-arrow {
    height: 26%;
    right: 25%;
    bottom: 18%;
  }
}

@media only screen and (max-width: 1024px) {
  .text-transition__img {
    position: relative;
    height: auto;
  }

  .text-transition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .text-transition__img img {
    max-height: 40vh;
  }

  img#transition-arrow {
    height: 50%;
    right: 45%;
    bottom: auto;
    top: -5%;
  }
}
@media only screen and (max-width: 991px) {
  .text-transition__content {
    padding: 0;
  }
  .text-transition h2 {
    font-size: clamp(25px, 2.6045vw, 50px);
  }
}

@media only screen and (max-height: 575px) {
  .text-transition h2 {
    font-size: clamp(20px, calc(100vh / 21.6), 50px);
  }
}

@media only screen and (max-width: 575px) {
  .text-transition__img {
    right: -12%;
  }

  img#transition-arrow {
    height: 50%;
    left: 20%;
    right: auto;
    bottom: auto;
    top: -5%;
  }

  .text-transition {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .text-transition__content {
    padding-top: 180px;
  }
}

/* TRACK - style */

.track {
  background-color: var(--color-green);
  overflow: hidden;
}

.track__list {
  padding: 2em 0px;
}

.track__list-item {
  color: var(--color-warm-white);
  font-size: 1.3em;
  font-weight: 500;
  width: auto;
  white-space: nowrap;
  padding-right: 2.5em;
  position: relative;
}

.track__list-item::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-warm-white);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(1.25em - 6px);
}

.track .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.trackSwiper,
.trackSwiper * {
  pointer-events: none !important;
}

@media only screen and (max-width: 767px) {
  .track__list-item::before {
    width: 5px;
    height: 4px;
    right: calc(1.25em - 3px);
  }
}

/* ASMR - style */

.asmr {
  padding: 10em 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100dvh;
  position: relative;
}

.asmr::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.58);
}

#asmr-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  -webkit-filter: blur(11px);
  filter: blur(11px);
}

.asmr__wrap {
  width: 100%;

  position: relative;
  z-index: 4;
  max-width: 991px;
}

.asmr__text :where(h1, h2, h3, h4, h5, h6) {
  text-transform: uppercase;
  color: var(--color-warm-white);
  margin-bottom: 26px;
}

.asmr__text {
  text-align: center;
}

.asmr__text h6 {
  margin-bottom: 12px;
  font-family: "Oswald", sans-serif;
}

.asmr__video {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.asmr__video video {
  width: 100%;
  height: 100%;
  -webkit-mask: var(--mask-corner-cut-circles-3);
}

.asmr__yt {
  position: absolute;
  z-index: 3;
  right: 3em;
  bottom: 3em;
  max-width: 8em;
}

.asmr__button {
  margin-top: 22px;
}

@media only screen and (max-width: 991px) {
  .asmr {
    padding: 10em 20px;
    margin-top: 0;
  }

  .asmr__wrap,
  .asmr__video {
    max-width: 100%;
  }

  .asmr__yt {
    bottom: 1.5em;
    right: 1.5em;
  }
}

/*404 - style*/

.not-found {
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 20px 80px 20px;
  text-align: center;
  position: relative;
}

.not-found__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.not-found__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found h1 {
  font-family: "PP Playground", sans-serif;
  font-size: 20em;
  font-weight: 500;
  color: var(--color-tamarillo);
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);
}

.not-found h3 {
  margin-bottom: 24px;
  max-width: 12em;
  margin-left: auto;
  margin-right: auto;
}

.not-found__fly {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--color-green);
  color: var(--color-warm-white);
  text-transform: uppercase;
  padding: 1em 20px;
  z-index: 100;
  text-align: center;
}

.bricko-snow {
  position: absolute;
  top: -10%;
  left: 0;
  z-index: -1;
  transform: rotate(180deg);
}

.bricko-snow svg {
  width: 100%;
}

.uppercase-404 {
  text-transform: uppercase;
  margin-top: 16px;
}

.not-found__img {
  max-width: 13em;
  margin-top: -11.5%;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .not-found__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25vh;
  }
  .not-found__img {
    margin-top: -17.5%;
  }
}

@media only screen and (max-width: 767px) {
  .not-found {
    overflow: hidden;
  }

  .not-found h1 {
    font-size: 60vw;
  }
  .not-found__img {
    margin-top: -32%;
    max-width: 40vw;
  }
}

@media only screen and (max-width: 575px) {
  .not-found h1 {
    font-size: 86vw;
  }

  .not-found__img {
    margin-top: -42%;
    max-width: 50vw;
  }

  .not-found__text {
    margin-top: 10vh;
  }
}

/* WPML */

.main-navigation ul.wpml-language-switcher {
  margin-top: 2em;
}

.wpml-language-switcher img {
  width: 1em;
  height: 0.672em;
  object-fit: cover;
  -webkit-mask: var(--mask-corner-cut-circles-5px);
}

.main-navigation ul.wpml-language-switcher li a {
  color: var(--color-tamarillo);
  font-size: 1.25em;
  font-family: "Oswald", sans-serif;
}

.main-navigation ul.wpml-language-switcher li a:hover,
.main-navigation ul.wpml-language-switcher li.active a {
  color: var(--color-gold) !important;
}

/*As seen on*/
.as-seen-on {
  padding: 10em 0 2em 0;
  overflow: hidden;
}
.as-seen-on__text {
  margin-bottom: 4em;
  padding: 0em 2em;
}

.as-seen-on__text :where(h1, h2, h3, h4, h5) {
  color: var(--color-tamarillo);
  text-transform: uppercase;
  max-width: 10em;
}

.as-seen-on__text h6 {
  font-family: "Oswald", sans-serif;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1em;
}

.as-seen-on-slider {
  padding-left: 2em;
  padding-right: 2em;
  overflow: visible;
}

.as-seen-on-item .img-corner-cut {
  width: 100%;
}

.img-corner-cut img {
  -webkit-mask: var(--mask-corner-cut-circles-3);
  width: 100%;
}

.as-seen-on-item {
  position: relative;
}

.as-seen-on-item a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
}

img.img-logo-float {
  position: absolute;
  left: 50%;
  top: 2em;
  z-index: 1;
  transform: translateX(-50%);
  /* max-width: 6.65em; */
  height: 2em;
}

.item-title-float {
  position: absolute;
  left: 2em;
  bottom: 2em;
  z-index: 1;
  right: 2em;
  font-size: 1em;
  line-height: 1.215;
  text-transform: uppercase;
  color: var(--color-warm-white);
  text-decoration: none;
  text-align: center;
  font-family: "Oswald", sans-serif;
  transition: all 0.4s ease-out;
}

.as-seen-on-item a:hover .item-title-float {
  color: var(--color-gold);
}

.recognized-list {
  overflow: hidden;
  padding-top: 9em;
}

.recognized-list-item {
  width: auto;
  padding-right: 5em;
}

.recognized-list-item {
}

.recognizedSwiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.recognized-list-items.swiper-wrapper {
  align-items: center;
}

.recognized-list-item img {
  display: block;
}

.recognizedSwiper,
.recognizedSwiper * {
  pointer-events: none !important;
}

.recognized-text {
  text-align: center;
  padding: 4.5em 20px 0px 20px;
  text-transform: uppercase;
}

.recognized-text p {
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .as-seen-on__text {
    padding: 0px 20px;
    margin-bottom: 1em;
  }

  .as-seen-on-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hidden-on-load {
  visibility: hidden;
}
