.mb-01 {
  margin-bottom: 0.25rem;
}
.mb-02 {
  margin-bottom: 0.5rem;
}
.mb-03 {
  margin-bottom: 0.75rem;
}
.mb-04 {
  margin-bottom: 1rem;
}
.mb-05 {
  margin-bottom: 1.25rem;
}
.mb-06 {
  margin-bottom: 1.5rem;
}
.mb-07 {
  margin-bottom: 2rem;
}
.mb-08 {
  margin-bottom: 2.5rem;
}
.mb-09 {
  margin-bottom: 3rem;
}
.mb-10 {
  margin-bottom: 3.375rem;
}
.mb-11 {
  margin-bottom: 4rem;
}
.mb-12 {
  margin-bottom: 4.5rem;
}
.mb-13 {
  margin-bottom: 5rem;
}
.mb-14 {
  margin-bottom: 6rem;
}

.scroller {
  height: 100vh;
}

[data-scrollbar] {
  display: block;
  position: relative;
}

.scroll-content {
  transform: translate3d(0, 0, 0);
}

.scrollbar-track {
  position: absolute;
  opacity: 0;
  z-index: 1;
  background: #3A0C53;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: opacity 0.5s 0.5s ease-out;
}

.scrollbar-track.show,
.scrollbar-track:hover {
  opacity: 1;
  transition-delay: 0s;
}

.scrollbar-track-x {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.scrollbar-track-y {
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
}

.scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 0;
}

@font-face {
  font-family: "sequel";
  src: url("../assets/fonts/OGJ-Type-Design-Sequel-100-Wide-85-Wide.ttf");
}
@font-face {
  font-family: "DINPro";
  src: url("../assets/fonts/FontsFree-Net-DINPro-1.ttf");
}
html {
  scroll-behavior: smooth;
}

.ts-font-sequel {
  font-family: "sequel";
}

.ts-body {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
}

body {
  font-family: sans-serif;
  font-family: "DINPro";
}

.ts-wrapper {
  width: 100%;
  overflow: hidden;
}

.rounded-pill {
  border-radius: 50rem;
}

.mw-100 {
  max-width: 100%;
}

.mw-450 {
  max-width: 450px;
}
.mw-820 {
  max-width: 820px;
}

.mx-auto {
  margin-inline: auto;
}

.w-100 {
  width: 100%;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

.gap-4 {
  gap: 1.5rem;
}

.ts-mw-100 {
  max-width: 100%;
}

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

.text-decoration-none {
  text-decoration: none;
}

.ts-btn {
  padding: 12px 2rem;
  font-size: 20px;
}

.ts-btn-green {
  background-color: #4db160;
  border: 1px solid #4db160;
  color: white;
}

.ts-form-control {
  padding: 14px;
  border: none;
  background: rgba(47, 170, 80, 0.1);
  color: #706a6a;
}
.ts-form-control:focus {
  border: none;
  outline: none;
}

.ts-fs-1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}
.ts-fs-2 {
  font-size: 5rem;
}
.ts-fs-3 {
  font-size: 4rem;
}
.ts-fs-4 {
  font-size: 3rem;
}
.ts-fs-5 {
  font-size: clamp(1.25rem, 5vw, 2rem);
}
.ts-fs-6 {
  font-size: 1.5rem;
}
.ts-fs-7 {
  font-size: 1.25rem;
}
.ts-fs-8 {
  font-size: 1.125rem;
}
.ts-fs-9 {
  font-size: 0.875rem;
}

.ts-text-white {
  color: white;
}
.ts-text-primary {
  color: rgb(234, 82, 122);
}
.ts-text-green {
  color: #4db160;
}
.ts-text-gray-2 {
  color: #626362;
}

.ts-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.ts-navbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: clamp(0.5rem, 3vw, 0.75rem);
  padding-inline: clamp(0.5rem, 4vw, 2rem);
}
.ts-navbar__logo {
  width: clamp(120px, 13vw, 180px);
}
.ts-navbar__burger {
  width: clamp(30px, 4vw, 50px);
}

.ts-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #f9a146;
}
.ts-hero__video {
  width: 100%;
  height: 100vh;
}
.ts-hero__text {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 100%;
}
.ts-hero .video-background {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.ts-hero .video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  transform: translate(-50%, -50%);
}
@media (min-aspect-ratio: 16/9) {
  .ts-hero .video-background iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .ts-hero .video-background iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}

.ts-animation-section {
  height: 100vh;
  width: 100%;
  position: relative;
}
.ts-animation-section-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.ts-animation-section-footer__content {
  position: relative;
  z-index: 10;
  padding-bottom: 5rem;
}
.ts-animation-section-footer-img {
  position: absolute;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
}
.ts-animation-section-footer-img__1 {
  z-index: 1;
}
.ts-animation-section-footer-img__2 {
  z-index: 2;
}
.ts-animation-section-footer-img__3 {
  z-index: 3;
}

.ts-section-1 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ts-section-1__text-1 {
  height: 10px;
}
.ts-section-1__img-text--wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ts-section-1-ii {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.ts-section-1-ii__img-1, .ts-section-1-ii__img-2 {
  position: relative;
}
.ts-section-1-ii__img-1-wrapper, .ts-section-1-ii__img-2-wrapper {
  position: relative;
}
.ts-section-1-ii__img-1 {
  margin-top: 150px;
}
.ts-section-1-ii__img-1-i-wrapper {
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
}
.ts-section-1-ii__img-2-wrapper {
  position: relative;
  margin-bottom: 150px;
}
.ts-section-1-ii__img-2-i-wrapper {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
}
.ts-section-1-ii__img-2-ii-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-80%, 100%);
}
@media (max-width: 1200px) {
  .ts-section-1-ii__img-2-wrapper {
    position: relative;
    margin-bottom: 0;
  }
  .ts-section-1-ii__img-1 {
    margin-top: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
}
@media (max-width: 992px) {
  .ts-section-1 .ts-animation-section-footer-img {
    height: 200px;
    width: auto;
    min-width: 100%;
  }
}

.ts-section-2 {
  display: grid;
  place-items: center;
}
.ts-section-2__images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}
.ts-section-2 .ts-melon-2-container,
.ts-section-2 .ts-melon {
  width: 100%;
}
.ts-section-2 .ts-melon-bg-2-container,
.ts-section-2 .ts-melon-bg-2 {
  width: 100%;
}
.ts-section-2 .ts-melon,
.ts-section-2 .ts-melon-bg {
  position: relative;
}
.ts-section-2 .ts-melon .ts-melon-2-container,
.ts-section-2 .ts-melon .ts-melon-bg-2-container,
.ts-section-2 .ts-melon-bg .ts-melon-2-container,
.ts-section-2 .ts-melon-bg .ts-melon-bg-2-container {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translateX(-50%);
}
.ts-section-2 .ts-colorant-arrow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 40%;
  top: 8%;
}

.ts-section-3 {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ts-section-3__images {
  position: relative;
}
.ts-section-3 .ts-belgian-brand-arrow-wrapper {
  position: absolute;
  left: 0;
  bottom: 20%;
  transform: translateX(-100%);
}
.ts-section-3 .ts-strawberry-container-wrapper {
  position: absolute;
  right: 0;
  bottom: 10%;
  transform: translateX(50%);
}
.ts-section-3 .ts-bubble-container {
  position: absolute;
  right: 45%;
  bottom: 15%;
  transform: translateX(50%);
}
.ts-section-3 .ts-animation-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.ts-section-3 .ts-animation-footer .ts-section-3-footer-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .ts-section-3 .ts-strawberry-1 {
    max-width: 70%;
  }
  .ts-section-3 .ts-strawberry-container-wrapper {
    transform: translateX(30%);
  }
  .ts-section-3 .ts-strawberry-container-wrapper .ts-strawberry {
    max-width: 50%;
  }
  .ts-section-3 .ts-bubble {
    max-width: 50%;
  }
  .ts-section-3 .ts-bubble-container {
    right: 30%;
  }
}

.ts-section-4 {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-section-4__images {
  position: relative;
}
.ts-section-4 .ts-peach-arrow {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
}
.ts-section-4 .ts-peach-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30%;
  z-index: 10;
}
.ts-section-4 .ts-bubble-container {
  position: absolute;
  right: 0;
  bottom: 0;
}
.ts-section-4 .ts-animation-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: end;
  z-index: -1;
}
@media (max-width: 991px) {
  .ts-section-4 .ts-peach .ts-peach-1 {
    max-width: 85%;
  }
  .ts-section-4 .ts-peach-container {
    transform: translateY(20%);
    left: -40%;
  }
  .ts-section-4 .ts-peach-container .ts-peach {
    max-width: 35%;
  }
  .ts-section-4 .ts-peach-arrow {
    top: 97%;
  }
  .ts-section-4 .ts-peach-arrow .ts-peach {
    max-width: 70%;
  }
  .ts-section-4 .ts-bubble {
    max-width: 50%;
  }
  .ts-section-4 .ts-bubble-container {
    right: 18%;
    bottom: -35%;
  }
}

.ts-section-5 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.ts-section-5__images {
  position: relative;
}
.ts-section-5 .ts-sparklink-arrow {
  position: absolute;
  left: 0;
  bottom: 20%;
  transform: translate(-50%, 20%);
}
.ts-section-5 .ts-bubble-container {
  position: absolute;
  right: 10%;
  bottom: 20%;
  transform: translateY(50%);
}
.ts-section-5 .ts-sparklink-container {
  position: absolute;
  top: 15%;
  transform: translateY(-50%);
  right: 30%;
  z-index: 10;
}
.ts-section-5 .ts-animation-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: end;
  z-index: -1;
}
@media (max-width: 1200px) {
  .ts-section-5 .ts-sparklink-arrow {
    transform: translate(-20%, 20%);
    bottom: -10%;
  }
  .ts-section-5 .ts-sparklink-arrow .ts-sparklink {
    max-width: 75%;
  }
}
@media (max-width: 991px) {
  .ts-section-5 .ts-sparklink-1 {
    max-width: 85%;
  }
  .ts-section-5 .ts-sparklink-container {
    right: 20%;
  }
  .ts-section-5 .ts-sparklink-container .ts-sparklink {
    max-width: 45%;
  }
  .ts-section-5 .ts-sparklink-arrow {
    bottom: -10%;
  }
  .ts-section-5 .ts-sparklink-arrow .ts-sparklink {
    max-width: 60%;
  }
  .ts-section-5 .ts-bubble-container {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
  }
  .ts-section-5 .ts-bubble-container .ts-bubble {
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .ts-section-5 .ts-sparklink-arrow {
    bottom: -28%;
  }
  .ts-section-5 .ts-sparklink-arrow .ts-sparklink {
    max-width: 60%;
  }
}

.ts-section-6 {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ts-section-6__images {
  position: relative;
}
.ts-section-6 .ts-mojito-arrow-wrapper {
  position: absolute;
  right: 20%;
  bottom: 0;
  transform: translateY(50%);
}
.ts-section-6 .ts-mojito-container-wrapper {
  position: absolute;
  top: 60%;
  transform: translate(70%, -50%);
  right: 0;
  z-index: 10;
}
.ts-section-6 .ts-animation-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: end;
  z-index: -1;
}
@media (max-width: 991px) {
  .ts-section-6 .ts-mojito {
    max-width: 85%;
    margin: auto;
  }
  .ts-section-6 .ts-mojito-container-wrapper {
    transform: translate(26%, -29%);
  }
  .ts-section-6 .ts-mojito-container-wrapper .ts-mojito {
    max-width: 55%;
  }
  .ts-section-6 .ts-mojito-arrow-wrapper {
    bottom: -51%;
  }
}

.ts-new-letter {
  padding-block: 5rem;
  padding-inline: 1rem;
}
.ts-new-letter form {
  width: 450px;
  max-width: calc(100% - 2rem);
}

.ts-footer {
  background-color: rgb(0, 0, 0);
  padding-block: 2.25rem 1rem;
}
.ts-footer__nav {
  display: grid;
  gap: 1.5rem;
}
.ts-footer__nav .ts-footer-vr {
  margin-left: 2rem;
  display: none;
}
@media (min-width: 576px) {
  .ts-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .ts-footer__nav .ts-footer-vr {
    display: block;
  }
  .ts-footer__nav-1 {
    display: flex;
    justify-content: end;
  }
  .ts-footer__nav-2 {
    margin-left: 2rem;
    text-align: start;
  }
}/*# sourceMappingURL=index.css.map */