:root {
  --color-plombir: #FFFFFF;
  --color-ligth: #F8F8F8;
  --color-bck: #F4F1E6;
  --color-cacao: #998D87;
  --color-choco: #5C4339;
  --color-black: #000000;
  --color-yellow: #EFB921;
  --color-yellow-accent: #FFA903;
  --color-brand: #FF5A00;
  --color-red: #B02942;
  --color-brand-secondary: #B5C2E7;
  --color-gradient-up: linear-gradient(360deg, #F5F2E7 0%, #FFFEFA 107.99%);
  --color-gradient-down: linear-gradient(360deg, #F5F2E7 0%, #FCFAF2 107.99%);
  --color-opacity-up: #FFFFFF4D;
}

.header {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: 56px;
  width: calc(100vw - 112px);
  display: flex;
  align-items: flex-end;
  gap: 24px;
  background: transparent;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .header {
    --header-top: clamp(18px, 1.8vw, 34px);
    --header-side: clamp(16px, 2.9vw, 56px);
    --header-gap: clamp(14px, 1.25vw, 24px);
    --header-nav-gap: clamp(18px, 3vw, 56px);
    --header-nav-size: clamp(14px, 1.05vw, 20px);
    --header-lang-size: 12px;
    --header-marker: clamp(8px, 0.5vw, 9px);
    --header-logo-w: clamp(88px, 7vw, 140px);
    --header-logo-h: clamp(28px, 2vw, 40px);
    top: var(--header-top);
    left: var(--header-side);
    width: calc(100vw - var(--header-side) * 2);
    gap: var(--header-gap);
  }
}
.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
.header__logo svg {
  width: var(--header-logo-w, 140px);
  height: var(--header-logo-h, 40px);
  display: block;
}
.header__burger {
  display: none;
  transition: transform 0.3s ease;
}
body.burger-menu-open .header__burger {
  transform: rotate(90deg);
}
.header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.header__nav-list {
  display: flex;
  align-items: flex-end;
  gap: var(--header-nav-gap, 56px);
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-plombir);
  font-family: "Inter";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .header__nav-list {
    font-size: var(--header-nav-size);
  }
}
.header__nav-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #998D87;
}
.header__nav-link--active {
  color: var(--color-brand);
}
.header__lang {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.header__lang-btn {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--color-plombir);
  font-family: "Inter";
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}
.header__lang-btn:hover {
  opacity: 0.85;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .header__lang-btn {
    font-size: var(--header-lang-size);
    line-height: 1.2;
  }
}
.header__lang-marker {
  width: var(--header-marker, 9px);
  height: var(--header-marker, 9px);
  border-radius: 999px;
  background: var(--color-bck);
  display: block;
  opacity: 0.2;
}
.header__lang-btn--active .header__lang-marker {
  background: var(--color-brand);
  opacity: 1;
}
@media (max-width: 949px) {
  .header {
    top: 16px;
    left: 16px;
    width: calc(100vw - 32px);
    align-items: center;
    gap: 12px;
  }
  .header__burger {
    display: inline-flex;
    margin-left: auto;
  }
  .header__nav {
    display: none;
  }
  .header__lang {
    display: none;
  }
  .header__logo img {
    width: 96px;
    height: auto;
  }
}
@media (min-width: 950px) {
  .header__burger {
    display: none !important;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .header__logo svg {
    width: 111px;
    height: auto;
  }
}
.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9215686275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px clamp(16px, 2.9vw, 56px);
  z-index: 1000;
  align-items: center;
  animation: slideDown 0.3s ease forwards;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .header--fixed {
    padding: clamp(12px, 1.2vw, 16px) clamp(16px, 2.9vw, 56px);
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .header--fixed {
    padding: 12px 16px;
  }
}
.header--fixed .header__nav-list {
  color: var(--color-black);
  transition: color 0.3s ease;
}
.header--fixed .header__lang-btn {
  color: var(--color-black);
  transition: color 0.3s ease;
}
.header--fixed .header__lang-marker {
  background: var(--color-cacao);
}
.header--fixed .header__lang-btn--active .header__lang-marker {
  background: var(--color-brand);
}
.header--fixed .header__burger {
  background: transparent;
}
.header--fixed .header__burger .burger-button__line {
  background: var(--color-brand);
}
.header--fixed .header__logo .logo-animatic svg {
  fill: var(--color-brand);
  transition: fill 0.3s ease;
}
.header--fixed .header__logo .logo-animatic svg path {
  fill: var(--color-brand);
  transition: fill 0.3s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero {
  width: 100%;
  min-height: 100svh;
  padding: 359px 56px 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 0, 0, 0.33), rgba(15, 0, 0, 0.33)), linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 22.6%);
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero {
    height: clamp(565px, 53.6458333333vw, 1030px);
    min-height: 565px;
    padding: clamp(180px, 18.7vw, 358px) clamp(16px, 2.9vw, 56px) 160px;
    gap: clamp(24px, 2.3vw, 44px);
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .hero {
    padding: 120px 16px 54px;
    gap: 40px;
    min-height: 100svh;
  }
}
.hero__image {
  max-width: clamp(240px, 24.7vw, 475px);
  position: relative;
  z-index: 2;
}
@media (min-width: 360px) and (max-width: 768px) {
  .hero__image {
    margin-top: auto;
    max-width: 146px;
    margin-bottom: -16px;
  }
}
.hero__heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  gap: 12px;
}
.hero__heading h1 {
  font-family: "Tovari Sans Bold";
  font-size: clamp(48px, 4vw, 76px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-plombir);
}
.hero__heading h1 br {
  display: none;
}
.hero__heading span {
  font-family: "Inter";
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-plombir);
}
@media (min-width: 360px) and (max-width: 768px) {
  .hero__heading {
    max-width: 100%;
    gap: 4px;
  }
  .hero__heading h1 {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
  }
  .hero__heading h1 br {
    display: block;
  }
  .hero__heading span {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
  }
}
.hero__bottom {
  margin-top: clamp(16px, 2.6vw, 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(12px, 1.25vw, 24px);
  position: relative;
  z-index: 2;
}
@media (min-width: 360px) and (max-width: 768px) {
  .hero__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 0;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .hero .hero-tabs {
    display: none;
  }
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero__bottom-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 40px;
  z-index: 2;
  color: var(--color-plombir);
  pointer-events: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .hero__bottom-svg {
    max-height: 24px;
  }
}

.accent-button {
  cursor: pointer;
  border-radius: 36px;
  background: var(--color-ligth);
  max-width: max-content;
  padding: 2px;
  display: flex;
  align-items: center;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .accent-button {
    border-radius: clamp(22px, 1.9vw, 36px);
    padding: clamp(2px, 0.2vw, 2px);
  }
}
.accent-button__icon {
  background: var(--color-brand);
  width: 72px;
  height: 72px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .accent-button__icon {
    width: clamp(48px, 3.75vw, 72px);
    height: clamp(48px, 3.75vw, 72px);
  }
}
.accent-button__icon img {
  display: block;
  transition: opacity 0.3s ease;
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: 51px;
  height: 51px;
}
.accent-button__icon img:first-child {
  opacity: 1;
  width: 12px;
  height: 12px;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .accent-button__icon img:first-child {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .accent-button__icon img:first-child {
    width: 12px;
    height: 12px;
  }
}
.accent-button__icon img:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.accent-button:hover .accent-button__icon img:first-child {
  opacity: 0;
}
.accent-button:hover .accent-button__icon img:nth-child(2) {
  opacity: 1;
}
.accent-button__label {
  padding: 28.5px 30px 28.5px 18px;
  color: var(--color-black);
  font-family: "Inter";
  font-size: 16px;
  font-weight: 600;
  line-height: 0.95;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .accent-button__label {
    padding: clamp(14px, 1.5vw, 28.5px) clamp(16px, 1.6vw, 30px) clamp(14px, 1.5vw, 28.5px) clamp(12px, 1vw, 18px);
    font-size: clamp(14px, 0.85vw, 16px);
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .accent-button {
    width: max-content;
    height: 44px;
    padding: 2px 12px 2px 2px;
    gap: 12px;
    flex-shrink: 0;
    border-radius: 1000px;
  }
  .accent-button__icon {
    width: 40px;
    height: 40px;
  }
  .accent-button__label {
    padding: 0;
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
  }
}

.hero-tabs {
  display: flex;
  gap: 63.5px;
  align-items: center;
  margin-right: 0;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs {
    gap: clamp(16px, 3.3vw, 63.5px);
  }
}
.hero-tabs__item {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 15px;
  position: relative;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__item {
    gap: clamp(10px, 0.8vw, 15px);
  }
}
.hero-tabs__item-marker {
  width: 40px;
  height: 40px;
  background: var(--color-yellow-accent);
  border-radius: 100%;
  position: relative;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__item-marker {
    width: clamp(24px, 2.1vw, 40px);
    height: clamp(24px, 2.1vw, 40px);
  }
}
.hero-tabs__item span {
  color: var(--color-plombir);
  font-family: "Inter";
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__item span {
    font-size: clamp(16px, 1.55vw, 30px);
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__item:hover span {
    opacity: 0;
    visibility: hidden;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__item:hover .hero-tabs__item-marker {
    opacity: 0;
    visibility: hidden;
  }
}
.hero-tabs__hover-popup {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 13px);
  transform: translateX(-50%) translateY(10px);
  width: 461px;
  height: 493px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 10;
  transform-origin: bottom center;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__hover-popup {
    width: clamp(230px, 24vw, 461px);
    height: clamp(246px, 25.7vw, 493px);
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .hero-tabs__hover-popup {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .hero-tabs__hover-popup {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__hover-popup--left {
    transform: translateX(-65%) translateY(10px);
    transform-origin: bottom center;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__item-marker:hover ~ .hero-tabs__hover-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__item-marker:hover ~ .hero-tabs__hover-popup--left {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-65%) translateY(0);
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__item:hover .hero-tabs__hover-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__item:hover .hero-tabs__hover-popup--left {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-65%) translateY(0);
  }
}
.hero-tabs__hover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-tabs__hover-content {
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 350.858px;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__hover-content {
    width: clamp(175px, 18.3vw, 350.858px);
    gap: clamp(12px, 1.25vw, 24px);
    bottom: clamp(60px, 6.25vw, 120px);
  }
}
.hero-tabs__hover-title {
  font-family: "Tovari Sans Bold";
  font-size: 49px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--color-plombir);
  text-align: center;
  margin: 0;
  white-space: pre-line;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__hover-title {
    font-size: clamp(24px, 2.55vw, 49px);
  }
}
.hero-tabs__hover-button {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-brand);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 20;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .hero-tabs__hover-button {
    width: clamp(36px, 3.75vw, 72px);
    height: clamp(36px, 3.75vw, 72px);
    bottom: clamp(-33px, 13px + 1.05vw - 1.875vw - 30px, -23px);
    transform: translateX(-50%);
  }
}
.hero-tabs__hover-button-icon {
  display: block;
  transition: opacity 0.3s ease;
}
.hero-tabs__hover-button-icon--default {
  opacity: 1;
  display: flex;
}
.hero-tabs__hover-button-icon--hover {
  opacity: 0;
  display: none;
}
.hero-tabs__hover-button:hover .hero-tabs__hover-button-icon--default {
  opacity: 0;
  display: none;
}
.hero-tabs__hover-button:hover .hero-tabs__hover-button-icon--hover {
  opacity: 1;
  display: flex;
}
@media (min-width: 360px) and (max-width: 768px) {
  .hero-tabs {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .hero-tabs {
    display: none;
  }
}

.brands-slider {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .brands-slider {
    display: block;
    padding-top: 20px;
    width: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands-slider {
    display: block;
    padding-top: 20px;
    width: 100%;
  }
}
.brands-slider__container {
  width: 100%;
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands-slider__container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.brands-slider__swiper {
  width: 100%;
  overflow-y: visible !important;
  display: flex;
  flex-direction: column;
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands-slider__swiper {
    width: auto;
    max-width: 100%;
  }
}
.brands-slider__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands-slider__swiper .swiper-wrapper {
    justify-content: center;
    gap: 12px;
  }
}
.brands-slider__swiper .swiper-slide {
  width: 223px;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands-slider__swiper--visible {
    overflow: visible !important;
  }
}
.brands-slider__pagination {
  position: static !important;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  transform: none !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands-slider__pagination {
    display: none;
  }
}
.brands-slider__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-bck);
  border-radius: 6px;
  opacity: 1;
  margin: 0;
  transition: all 0.3s;
}
.brands-slider__pagination .swiper-pagination-bullet-active {
  background: var(--color-bck);
  position: relative;
}
.brands-slider__pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--color-choco);
  border-radius: 50%;
}
.brands-slider .hero-tabs__hover-popup {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 223px;
  height: 237px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: block;
}
.brands-slider .hero-tabs__hover-content {
  position: absolute;
  left: 20.5px;
  top: 151px;
  transform: none;
  width: 174px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brands-slider .hero-tabs__hover-title {
  font-family: "Inter";
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-plombir);
  text-align: center;
  margin: 0 0 8px 0;
  white-space: pre-line;
}
.brands-slider .hero-tabs__hover-button {
  position: absolute;
  left: 50%;
  top: 209.6px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  margin: 0;
}
.brands-slider .hero-tabs__hover-button img {
  width: 12px;
  height: 12px;
}

.footer {
  box-sizing: border-box;
  width: 100%;
  background: var(--color-brand);
  border-top: 1px solid #EBEBEB;
  position: relative;
  overflow: hidden;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .footer {
    margin-top: 80px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .footer {
    margin-top: 60px !important;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .footer {
    margin-top: 50px !important;
  }
}
.footer__panel {
  background: var(--color-plombir);
  border-radius: 0 0 33px 33px;
  padding: 56px;
  position: relative;
  z-index: 2;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 289px;
}
.footer__menu {
  display: flex;
  gap: 99px;
}
.footer__nav {
  width: auto;
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}
.footer__nav-link {
  display: block;
  width: auto;
  text-align: left;
  text-decoration: none;
  color: var(--color-choco);
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #000000;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__contacts-title {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--color-choco);
  transition: color 0.3s ease;
  cursor: pointer;
}
.footer__contacts-title:hover {
  color: #FF5A00;
}
.footer__contacts-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__contacts-details {
  display: flex;
  gap: 16px;
  color: var(--color-black);
  font-family: "Inter";
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer__contacts-details:hover {
  color: #FF5A00;
}
.footer__phone {
  width: max-content;
  text-decoration: none;
  color: var(--color-black);
  font-family: "Inter";
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.04em;
  transition: color 0.3s ease;
}
.footer__phone:hover {
  color: #FF5A00;
}
.footer__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__social {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__social-title {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--color-choco);
  text-align: right;
}
.footer__social-list {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 23.2927px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-decoration: none;
}
.footer__social-link:hover {
  opacity: 0.85;
}
.footer__social-icon {
  width: 44px;
  height: 44px;
  display: block;
  background: transparent;
  border-radius: 23.2927px;
}
.footer__social-icon--img {
  object-fit: contain;
}
.footer__social-link--tg {
  border: 1px solid var(--color-bck);
  background-color: var(--color-plombir);
  transition: border-color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__social-icon--tg {
  background: var(--color-plombir) url("../../assets/images/footer-social-tg-default.svg") center center/17px 15px no-repeat;
  border-radius: 50%;
  transition: background-color 0.3s ease, background-image 0.3s ease;
}
.footer__social-link--tg:hover {
  border-color: transparent;
  background-color: var(--color-brand);
}
.footer__social-link--tg:hover .footer__social-icon--tg {
  background-color: var(--color-brand);
  background-image: url("../../assets/images/footer-social-tg-hover.svg");
  border-color: var(--color-brand);
}
.footer__social-link--vk {
  border: 1px solid var(--color-bck);
  background-color: var(--color-plombir);
  transition: border-color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.footer__social-icon--vk {
  background: var(--color-plombir) url("../../assets/images/footer-social-vk-default.svg") center center/21px 12px no-repeat;
  border-radius: 50%;
  transition: background-color 0.3s ease, background-image 0.3s ease;
}
.footer__social-link--vk:hover {
  border-color: transparent;
  background-color: var(--color-brand);
}
.footer__social-link--vk:hover .footer__social-icon--vk {
  background-color: var(--color-brand);
  background-image: url("../../assets/images/footer-social-vk-hover.svg");
  border-color: var(--color-brand);
}
.footer__made {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 8px;
  opacity: 0.4;
}
.footer__made-text {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--color-cacao);
}
.footer__made-logo {
  width: 48px;
  height: 24px;
  display: block;
  border-radius: 4px;
  transition: filter 0.3s ease;
}
.footer__made a:hover .footer__made-logo {
  filter: brightness(0) saturate(0);
}
.footer__animatic {
  position: absolute;
  left: 496px;
  top: 519px;
  width: 928px;
  height: 232px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  border-radius: 18px;
  width: 100%;
  height: 1000;
}
.footer__animatic svg {
  width: 100%;
  height: auto;
}
.footer__legal {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 764px;
  z-index: 3;
}
.footer__copyright {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--color-plombir);
}
.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__legal-link {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--color-plombir);
  text-decoration: none;
}
.footer__legal-link:hover {
  opacity: 0.85;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .footer {
    --footer-pad: clamp(16px, 2.9vw, 56px);
    --footer-radius: clamp(18px, 1.7vw, 33px);
    --footer-gap-xl: clamp(24px, 15vw, 289px);
    --footer-gap-lg: clamp(20px, 5.2vw, 99px);
    --footer-gap-md: clamp(14px, 1.25vw, 24px);
    --footer-text: clamp(16px, 1.1vw, 20px);
    --footer-phone: clamp(20px, 1.7vw, 30px);
    --footer-social: clamp(36px, 2.3vw, 44px);
    --footer-animatic-w: clamp(400px, 48.3vw, 928px);
    --footer-animatic-h: clamp(100px, 12.1vw, 232px);
    min-height: clamp(600px, 50vw, 964px);
  }
  .footer__panel {
    padding: var(--footer-pad);
    border-radius: 0 0 var(--footer-radius) var(--footer-radius);
  }
  .footer__top {
    gap: var(--footer-gap-xl);
  }
  .footer__menu {
    gap: var(--footer-gap-lg);
  }
  .footer__nav-list {
    gap: var(--footer-gap-md);
  }
  .footer__nav-link {
    font-size: var(--footer-text);
    width: auto;
    text-align: left;
  }
  .footer__contacts {
    gap: var(--footer-gap-md);
  }
  .footer__contacts-title {
    font-size: var(--footer-text);
  }
  .footer__contacts-info {
    gap: var(--footer-gap-md);
  }
  .footer__phone {
    font-size: var(--footer-phone);
  }
  .footer__social-title {
    font-size: var(--footer-text);
  }
  .footer__copyright {
    font-size: var(--footer-text);
  }
  .footer__legal-link {
    font-size: var(--footer-text);
  }
  .footer__social-link {
    width: var(--footer-social);
    height: var(--footer-social);
    border-radius: 999px;
  }
  .footer__social-icon {
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }
  .footer__made-logo {
    width: clamp(40px, 2.5vw, 48px);
    height: clamp(20px, 1.3vw, 24px);
  }
  .footer__animatic {
    display: block;
    left: 50%;
    top: auto;
    bottom: clamp(100px, 11vw, 213px);
    transform: translateX(-50%);
    width: clamp(400px, 48.3vw, 928px);
    height: auto;
    aspect-ratio: 4/1;
  }
  .footer__legal {
    position: absolute;
    left: var(--footer-pad);
    right: var(--footer-pad);
    bottom: var(--footer-pad);
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: clamp(16px, 4vw, 40px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .footer {
    --footer-animatic-w: clamp(400px, 45vw, 700px);
    --footer-animatic-h: clamp(100px, 11.25vw, 175px);
  }
  .footer__animatic {
    left: 50%;
    top: auto;
    bottom: clamp(100px, 12vw, 180px);
    transform: translateX(-50%);
    width: clamp(400px, 45vw, 700px);
    height: auto;
    aspect-ratio: 4/1;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .footer {
    width: 100%;
    height: 894px;
    margin: 0 auto;
  }
  .footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100px;
    width: 1424px;
    height: 912px;
    background: var(--color-brand);
    pointer-events: none;
    z-index: 0;
  }
  .footer__panel {
    position: absolute;
    left: 0;
    top: -1px;
    transform: none;
    width: 100%;
    height: 608px;
    padding: 40px 0;
    border-radius: 0 0 24px 24px;
    z-index: 2;
  }
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
  }
  .footer__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
  }
  .footer__nav {
    width: 100%;
  }
  .footer__nav-list {
    width: 218px;
    gap: 0;
  }
  .footer__nav-link {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 12px 16px;
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
    border-radius: 1000px;
  }
  .footer__contacts {
    width: 100%;
    padding: 0 16px;
    gap: 12px;
  }
  .footer__contacts-title {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }
  .footer__contacts-info {
    width: 100%;
    max-width: 259px;
    gap: 24px;
  }
  .footer__contacts-details {
    width: 100%;
    max-width: 259px;
    height: 25px;
    align-items: center;
    gap: 16px;
    font-family: "Inter";
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    text-decoration: none;
  }
  .footer__contacts-details img {
    width: 24px;
    height: 24px;
    display: block;
  }
  .footer__phone {
    width: 100%;
    max-width: 259px;
    font-family: "Inter";
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
  }
  .footer__right {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
    padding: 0 16px;
  }
  .footer__social {
    width: 162px;
    gap: 12px;
  }
  .footer__social-title {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: left;
  }
  .footer__social-list {
    justify-content: flex-start;
    gap: 12px;
  }
  .footer__made {
    opacity: 0.4;
  }
  .footer__made-text {
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.02em;
  }
  .footer__made-logo {
    width: 44px;
    height: 22px;
  }
  .footer__animatic {
    display: block;
    position: absolute;
    left: 50%;
    top: calc(50% + 254.5px);
    transform: translate(-50%, -50%);
    width: 192px;
    height: 48px;
    z-index: 2;
  }
  .footer__animatic-image {
    width: 192px;
    height: 48px;
    display: block;
  }
  .footer__legal {
    position: absolute;
    left: 0;
    top: 789px;
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 2;
  }
  .footer__copyright {
    width: min(327px, 100%);
    height: 44px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: var(--color-plombir);
    text-align: center;
    margin: 0 auto;
  }
  .footer__legal-links {
    width: min(268px, 100%);
    height: 44px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
  }
  .footer__legal-link {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: var(--color-plombir);
    text-align: center;
  }
}

.burger-button {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--color-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  border: 0;
  transition: transform 0.3s ease, opacity 0.2s ease;
  position: relative;
}
.burger-button__line {
  width: 16px;
  height: 3px;
  background: var(--color-plombir);
  border-radius: 999px;
  display: block;
  position: absolute;
  left: 50%;
  transition: transform 0.3s ease;
  transform: translateX(-50%);
}
.burger-button__line:first-child {
  top: calc(47% - 3px);
}
.burger-button__line:last-child {
  top: calc(50% + 3px);
}
body.burger-menu-open .burger-button__line {
  top: 50%;
}
body.burger-menu-open .burger-button__line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
body.burger-menu-open .burger-button__line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.burger-menu__close .burger-button__line {
  top: 50%;
}
.burger-menu__close .burger-button__line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger-menu__close .burger-button__line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.burger-button:hover {
  opacity: 0.9;
}

.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--color-bck);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.burger-menu--open {
  opacity: 1;
  visibility: visible;
}
.burger-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1001;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.burger-menu__nav {
  margin-top: 72px;
  padding: 0 16px;
  flex: 1;
}
.burger-menu__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.burger-menu__nav-item {
  width: 100%;
}
.burger-menu__nav-link {
  display: flex;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: var(--color-black);
  font-family: "Inter";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.2px;
  transition: color 0.2s ease;
  width: 100%;
}
.burger-menu__nav-link:hover {
  opacity: 0.7;
}
.burger-menu__nav-link--active {
  color: var(--color-brand);
}
.burger-menu__lang {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0 32px;
  margin-bottom: 26px;
  width: 118px;
}
.burger-menu__lang-btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: var(--color-black);
  font-family: "Inter";
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: opacity 0.2s ease;
  width: 100%;
}
.burger-menu__lang-btn:hover {
  opacity: 0.7;
}
.burger-menu__lang-marker {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-cacao);
  display: block;
  flex-shrink: 0;
}
.burger-menu__lang-btn--active .burger-menu__lang-marker {
  background: var(--color-brand);
}
.burger-menu__lang-label {
  display: block;
}
@media (min-width: 360px) and (max-width: 768px) {
  .burger-menu__close {
    right: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .burger-menu__close {
    top: 16px;
    right: clamp(16px, 8vw, 160px);
  }
  .burger-menu__nav {
    padding-left: clamp(16px, 4vw, 40px);
  }
  .burger-menu__nav-link {
    width: auto;
    max-width: 247px;
  }
  .burger-menu__lang {
    padding-left: clamp(16px, 4vw, 40px);
  }
}
@media (min-width: 1025px) {
  .burger-menu__close {
    top: 16px;
    right: 304px;
  }
  .burger-menu__nav {
    padding-left: 0;
  }
  .burger-menu__nav-link {
    width: 247px;
  }
  .burger-menu__lang {
    padding-left: 0;
  }
}

@media (min-width: 360px) and (max-width: 768px) {
  .accent-button__icon img {
    width: 12px;
    height: 12px;
  }
}
.video-slider {
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider {
    min-height: auto;
    height: 640px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider {
    min-height: auto;
    height: 640px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider {
    max-height: 944px;
  }
}
.video-slider__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.video-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 0, 0, 0.33), rgba(15, 0, 0, 0.33)), linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 22.6%);
  z-index: 1;
  pointer-events: none;
}
.video-slider__container {
  position: relative;
  padding: 248px 56px 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 100%;
  z-index: 2;
  min-height: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__container {
    padding: 40px 16px 0;
    gap: 0;
    height: 640px;
    overflow: hidden;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__container {
    padding: 40px 16px 0;
    gap: 0;
    height: 640px;
    overflow: hidden;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__container {
    padding: clamp(120px, 12.9vw, 248px) clamp(16px, 2.9vw, 56px) 48px;
    gap: clamp(48px, 5vw, 96px);
  }
}
.video-slider__slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
  width: 100%;
  display: none;
}
.video-slider__slide--active {
  opacity: 1;
  visibility: visible;
  display: block;
  pointer-events: auto;
}
.video-slider__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 120px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 129px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__info {
    gap: clamp(20px, 2.1vw, 40px);
  }
}
.video-slider__content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__content {
    gap: 12px;
    width: 100%;
    margin-bottom: 0;
    order: 1;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__content {
    gap: 12px;
    width: 100%;
    margin-bottom: 0;
    order: 1;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__content {
    gap: clamp(32px, 3.3vw, 64px);
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__button-wrapper {
    margin-top: -113px;
    width: 100%;
    max-width: 269px;
    order: 3;
    flex-shrink: 0;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__button-wrapper {
    margin-top: 40px;
    display: none !important;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__button-wrapper {
    margin-top: 0;
    width: 100%;
    max-width: 269px;
    order: 3;
    display: flex !important;
    flex-shrink: 0;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__button-wrapper--desktop {
    display: flex !important;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__button-wrapper--desktop {
    display: none !important;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__button-wrapper--desktop {
    display: none !important;
  }
}
.video-slider__title {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__title {
    gap: 12px;
    margin-bottom: 0;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__title {
    gap: 12px;
    margin-bottom: 0;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__title {
    gap: clamp(12px, 1.25vw, 24px);
  }
}
.video-slider__heading {
  font-family: "Tovari Sans Bold";
  font-size: 76px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-plombir);
  margin: 0;
  white-space: pre-wrap;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__heading {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
    width: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__heading {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
    width: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__heading {
    font-size: clamp(38px, 4vw, 76px);
    max-width: 620px;
  }
}
.video-slider__description {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-plombir);
  margin: 0;
  max-width: 648px;
  letter-spacing: -0.03em;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__description {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__description {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__description {
    font-size: clamp(16px, 1.1vw, 20px);
  }
}
.video-slider__stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
  flex-shrink: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: fit-content;
    margin-top: 0;
    order: 2;
    max-width: 300px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: fit-content;
    margin-top: 0;
    order: 2;
    max-width: 500px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__stats {
    gap: clamp(16px, 1.7vw, 32px);
  }
}
.video-slider__fact {
  background: var(--color-bck);
  border-radius: 272px;
  width: 352px;
  height: 352px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__fact {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__fact {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__fact {
    width: clamp(200px, 18.3vw, 352px);
    height: clamp(200px, 18.3vw, 352px);
    border-radius: clamp(136px, 14.2vw, 272px);
    gap: clamp(8px, 0.8vw, 16px);
    padding: 0 clamp(8px, 0.8vw, 16px);
  }
}
.video-slider__fact-mobile {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__fact-mobile {
    display: flex;
    background: var(--color-bck);
    border-radius: 36px;
    padding: 8px 16px;
    gap: 8px;
    align-items: center;
    text-align: left;
    width: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__fact-mobile {
    display: flex;
    background: var(--color-bck);
    border-radius: 36px;
    padding: 8px 16px;
    gap: 8px;
    align-items: center;
    text-align: left;
    width: 100%;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__fact-mobile-value {
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    line-height: 0.95;
    color: var(--color-brand);
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__fact-mobile-value {
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    line-height: 0.95;
    color: var(--color-brand);
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__fact-mobile-text {
    font-family: "Inter";
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-choco);
    letter-spacing: -0.03em;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__fact-mobile-text {
    font-family: "Inter";
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-choco);
    letter-spacing: -0.03em;
  }
}
.video-slider__fact-number {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  width: 100px;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__fact-number {
    gap: clamp(3px, 0.3vw, 6px);
    width: clamp(60px, 5.2vw, 100px);
  }
}
.video-slider__fact-value {
  font-family: "Tovari Sans Bold";
  font-size: 120px;
  font-weight: 700;
  line-height: 0.7;
  color: var(--color-brand);
  height: 90px;
  letter-spacing: -0.02em;
  width: 122px;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__fact-value {
    font-size: clamp(60px, 6.25vw, 120px);
    height: clamp(45px, 4.7vw, 90px);
    width: clamp(61px, 8.35vw, 160px);
  }
}
.video-slider__fact-label {
  font-family: "Inter";
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-brand);
  letter-spacing: -0.04em;
  min-width: max-content;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__fact-label {
    font-size: clamp(18px, 1.6vw, 30px);
  }
}
.video-slider__fact-description {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-choco);
  margin: 0;
  max-width: 278px;
  letter-spacing: -0.03em;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__fact-description {
    font-size: clamp(14px, 1.1vw, 20px);
    max-width: 100%;
  }
}
.video-slider__stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__stats-list {
    gap: 8px;
    align-items: flex-start;
    width: 100%;
    order: 3;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__stats-list {
    gap: 8px;
    align-items: flex-start;
    width: 100%;
    order: 3;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__stats-list {
    gap: clamp(8px, 0.8vw, 16px);
  }
}
.video-slider__stat-item {
  background: var(--color-bck);
  border-radius: 36px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__stat-item {
    border-radius: 36px;
    padding: 8px 16px;
    gap: 8px;
    width: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__stat-item {
    border-radius: 36px;
    padding: 8px 16px;
    gap: 8px;
    width: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__stat-item {
    border-radius: clamp(18px, 1.9vw, 36px);
    padding: clamp(4px, 0.4vw, 8px) clamp(8px, 0.8vw, 16px);
    gap: clamp(4px, 0.4vw, 8px);
  }
}
.video-slider__stat-value {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-brand);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__stat-value {
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.02em;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__stat-value {
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.02em;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__stat-value {
    font-size: clamp(14px, 1.1vw, 20px);
  }
}
.video-slider__stat-text {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-choco);
  letter-spacing: -0.03em;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__stat-text {
    font-family: "Inter";
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__stat-text {
    font-family: "Inter";
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__stat-text {
    font-size: clamp(12px, 0.85vw, 16px);
  }
}
.video-slider__controls {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__controls {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: calc(100% - 32px);
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    order: 4;
    flex-shrink: 0;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__controls {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: calc(100% - 32px);
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 32px;
    left: 16px;
    right: 16px;
    order: 4;
    flex-shrink: 0;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__controls {
    gap: clamp(20px, 2.1vw, 40px);
  }
}
.video-slider__bullets {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__bullets {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    order: 1;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__bullets {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    order: 1;
  }
}
.video-slider__bullet {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__bullet {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    border: none;
    background: var(--color-bck);
    cursor: pointer;
    padding: 4px;
    transition: background 0.3s;
    position: relative;
    flex-shrink: 0;
  }
  .video-slider__bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
  }
  .video-slider__bullet--active {
    background: var(--color-bck);
  }
  .video-slider__bullet--active::after {
    background: var(--color-choco);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__bullet {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    border: none;
    background: var(--color-bck);
    cursor: pointer;
    padding: 4px;
    transition: background 0.3s;
    position: relative;
    flex-shrink: 0;
  }
  .video-slider__bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
  }
  .video-slider__bullet--active {
    background: var(--color-bck);
  }
  .video-slider__bullet--active::after {
    background: var(--color-choco);
  }
}
.video-slider__divider {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  --progress-width: 0%;
}
.video-slider__divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--progress-width, 0%);
  height: 100%;
  background: var(--color-plombir);
  border-radius: 100px;
  will-change: width;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__divider {
    flex: none;
    width: 100%;
    height: 6px;
    order: 2;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__divider {
    flex: none;
    width: 100%;
    height: 6px;
    order: 2;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__divider {
    height: clamp(4px, 0.3vw, 6px);
  }
}
.video-slider__navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-slider__navigation {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .video-slider__navigation {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__navigation {
    gap: clamp(12px, 1.25vw, 24px);
  }
}
.video-slider__arrow {
  width: 72px;
  height: 72px;
  border-radius: 1000px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
  position: relative;
}
.video-slider__arrow:hover:not(:disabled) {
  opacity: 1;
}
.video-slider__arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.video-slider__arrow-icon {
  display: block;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-slider__arrow-icon--default {
  opacity: 1;
  width: auto;
  height: auto;
  max-width: calc(100% - 32px);
  max-height: calc(100% - 32px);
}
.video-slider__arrow-icon--hover {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.video-slider__arrow:hover:not(:disabled) .video-slider__arrow-icon--default {
  opacity: 0;
}
.video-slider__arrow:hover:not(:disabled) .video-slider__arrow-icon--hover {
  opacity: 1;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-slider__arrow {
    width: clamp(48px, 3.75vw, 72px);
    height: clamp(48px, 3.75vw, 72px);
    padding: clamp(10px, 0.8vw, 16px);
  }
}
.video-slider__arrow--left {
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}
.video-slider__arrow--left:not(:disabled) {
  background: var(--color-brand);
}
.video-slider__arrow--right {
  background: var(--color-brand);
  transition: background 0.3s ease;
}
.video-slider__arrow--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.video-text {
  width: 100%;
  position: relative;
  background: var(--color-plombir);
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text {
    padding: 64px 16px 73px 16px;
  }
}
.video-text__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 160px 217px 32px 217px;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__container {
    gap: 48px;
    padding: 0;
    width: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-text__container {
    gap: clamp(36px, 3.75vw, 72px);
    padding: clamp(80px, 8.3vw, 160px) clamp(40px, 11.3vw, 217px) clamp(16px, 1.7vw, 32px) clamp(40px, 11.3vw, 217px);
  }
}
.video-text__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__photo {
    padding: 16px 0;
  }
}
.video-text__video {
  width: 308px;
  height: 308px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__video {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-text__video {
    width: clamp(154px, 16vw, 308px);
    height: clamp(154px, 16vw, 308px);
  }
}
.video-text__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
.video-text__text-wrapper {
  width: 100%;
  height: 309px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__text-wrapper {
    width: 100%;
    height: auto;
    min-height: 350px;
    align-items: center;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-text__text-wrapper {
    height: clamp(200px, 20.8vw, 400px);
  }
}
.video-text__text {
  font-family: "Tovari Sans Bold";
  font-size: 76px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-brand);
  margin: 0;
  text-align: center;
  position: absolute;
  width: 1484px;
  max-width: 100%;
  white-space: pre-wrap;
  line-height: 0.9;
  transition: opacity 0.8s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-text__text--desktop {
    font-size: clamp(38px, 4vw, 76px);
    width: clamp(742px, 77.3vw, 1484px);
    display: block;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__text--desktop {
    display: none;
  }
}
.video-text__text--mobile {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__text--mobile {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
    position: absolute;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: auto;
  }
}
.video-text__text--first {
  opacity: 1;
}
.video-text__text--second {
  opacity: 0;
}
.video-text__text--third {
  opacity: 0;
}
.video-text__text--fourth {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-text__text--fourth {
    gap: clamp(8px, 0.83vw, 16px);
  }
}
.video-text__title {
  font-family: "Tovari Sans Bold";
  font-size: 76px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-brand);
  margin: 0;
  text-align: center;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-text__title {
    font-size: clamp(38px, 4vw, 76px);
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__title {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
  }
}
.video-text__caption {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
  text-align: center;
  max-width: 796px;
  letter-spacing: -0.6px;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-text__caption {
    font-size: clamp(14px, 1.05vw, 20px);
    max-width: clamp(398px, 41.5vw, 796px);
    letter-spacing: clamp(-0.3px, -0.03vw, -0.6px);
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__caption {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.48px;
    max-width: 100%;
  }
}
.video-text__line {
  margin: 0;
  line-height: 0.9;
  display: block;
}
.video-text__line--spacer {
  height: 30px;
  margin: 0;
}
.video-text__icon-wrapper {
  display: inline-block;
  vertical-align: baseline;
  margin: 0 0.15em;
  position: relative;
  top: 0.1em;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__icon-wrapper {
    display: none;
  }
}
.video-text__icon {
  display: inline-block;
  width: 101.703px;
  height: 53px;
  object-fit: contain;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .video-text__icon {
    width: clamp(50.85px, 5.3vw, 101.703px);
    height: clamp(26.5px, 2.76vw, 53px);
  }
}
.video-text__icon--mobile {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .video-text__icon--mobile {
    display: block;
    position: relative;
    width: 44px;
    height: 23px;
    margin: 0 auto;
  }
}

.product-card {
  position: relative;
  width: 620px;
  height: 867px;
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card {
    width: 100%;
    height: 459px;
    border-radius: 24px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card {
    width: clamp(310px, 32.3vw, 620px);
    height: clamp(433.5px, 45.2vw, 867px);
    border-radius: clamp(18px, 1.9vw, 36px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card {
    width: 100%;
    height: 459px;
    border-radius: 24px;
  }
}
.product-card__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: clamp(18px, 1.9vw, 36px);
  overflow: hidden;
}
.product-card__base-color {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: clamp(18px, 1.9vw, 36px);
  overflow: hidden;
}
.product-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__image img {
    object-fit: contain;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__image img {
    object-fit: contain;
  }
}
.product-card__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 345px;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__wave {
    height: 172.5px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__wave {
    height: clamp(172.5px, 17.95vw, 345px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__wave {
    height: 172.5px;
  }
}
.product-card__wave svg {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: bottom center;
}
.product-card--yellow:hover, .product-card--blue:hover, .product-card--brown:hover {
  overflow: visible;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card:hover .product-card__wave {
    height: clamp(241.5px, 25.15vw, 483px);
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card:hover .product-card__wave {
    height: 241.5px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card:hover .product-card__wave {
    height: 241.5px;
  }
}
.product-card__gradient {
  position: absolute;
  inset: 0;
  z-index: 3;
  height: 100%;
  transition: background 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.product-card--yellow:hover .product-card__gradient {
  background: #EF9F00;
  opacity: 0.5;
}
.product-card--blue:hover .product-card__gradient {
  background: #B4C2E5;
  opacity: 0.5;
}
.product-card--brown:hover .product-card__gradient {
  background: #B02942;
  opacity: 0.5;
}
.product-card__decoration {
  position: absolute;
  width: 1952.715px;
  height: 1952.715px;
  left: -852.67px;
  top: -537.19px;
  transform: rotate(350.782deg);
  z-index: 3;
  pointer-events: none;
  opacity: 0.15;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: width 0.4s ease, height 0.4s ease, left 0.4s ease, top 0.4s ease, transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__decoration {
    width: clamp(976px, 101.7vw, 1952.715px);
    height: clamp(976px, 101.7vw, 1952.715px);
    left: clamp(-426px, -44.4vw, -852.67px);
    top: clamp(-268px, -28vw, -537.19px);
  }
}
.product-card__bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background-color: #fac600;
  z-index: 1;
  pointer-events: none;
  transition: height 0.4s ease, background-color 0.4s ease;
  border-radius: 0 0 36px 36px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__bottom-shape {
    border-radius: 0 0 24px 24px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__bottom-shape {
    border-radius: 0 0 clamp(18px, 1.9vw, 36px) clamp(18px, 1.9vw, 36px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__bottom-shape {
    border-radius: 0 0 24px 24px;
  }
}
.product-card__content {
  position: absolute;
  left: 40px;
  top: 643px;
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 4;
  transition: top 0.4s ease, bottom 0.4s ease;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__content {
    bottom: auto;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__content {
    left: 16px;
    top: 273px;
    width: 295px;
    gap: 28px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__content {
    left: clamp(20px, 2.1vw, 40px);
    top: clamp(321.5px, 33.5vw, 643px);
    width: calc(100% - 48px);
    gap: clamp(14px, 1.5vw, 28px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__content {
    left: 16px;
    top: 273px;
    width: 295px;
    gap: 28px;
  }
}
.product-card__content--top-643 {
  top: 643px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__content--top-643 {
    top: 305px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__content--top-643 {
    top: clamp(321.5px, 33.5vw, 643px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__content--top-643 {
    top: 273px;
  }
}
.product-card__content--top-712 {
  top: 712px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__content--top-712 {
    top: 338px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__content--top-712 {
    top: clamp(356px, 37.1vw, 712px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__content--top-712 {
    top: 305px;
  }
}
.product-card__header {
  display: flex;
  flex-direction: column;
  gap: 84px;
  transition: gap 0.4s ease;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__header {
    gap: 24px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__header {
    gap: clamp(42px, 4.4vw, 84px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__header {
    gap: 24px;
  }
}
.product-card__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-plombir);
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__title {
    gap: clamp(4px, 0.4vw, 8px);
  }
}
.product-card__year {
  display: none;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.03em;
  margin: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__year {
    font-family: "Inter";
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__year {
    font-size: clamp(14px, 0.85vw, 16px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__year {
    font-family: "Inter";
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }
}
.product-card__name {
  font-family: "Tovari Sans Bold";
  font-size: 76px;
  font-weight: 700;
  line-height: 0.9;
  margin: 0;
  white-space: pre-wrap;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__name {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
    width: 256px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__name {
    font-size: clamp(38px, 4vw, 76px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__name {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
    width: 256px;
  }
}
.product-card__logo {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__logo {
    display: block;
    background: var(--color-plombir);
    border-radius: 24px;
    width: 64px;
    height: 64px;
    position: absolute;
    top: 16px;
    left: 16px;
    flex-shrink: 0;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__logo {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__logo {
    display: block;
    background: var(--color-plombir);
    border-radius: 24px;
    width: 64px;
    height: 64px;
    position: absolute;
    top: 16px;
    left: 16px;
    flex-shrink: 0;
  }
}
.product-card__logo-image {
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  inset: 11.43px;
  max-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__logo-image img {
  max-height: 49px;
}
.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__body {
    gap: clamp(14px, 1.5vw, 28px);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
}
.product-card__description {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-plombir);
  letter-spacing: -0.03em;
  margin: 0;
  padding: 0;
  white-space: pre-wrap;
  line-height: 1.5;
  height: auto;
  min-height: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__description {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__description {
    font-size: clamp(14px, 0.85vw, 16px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__description {
    display: none;
  }
}
.product-card__button {
  width: max-content;
  display: none;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card__button {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card__button {
    display: block;
  }
  .product-card__button .accent-button {
    height: auto;
    padding: 2px 12px 2px 2px;
    gap: 12px;
  }
  .product-card__button .accent-button__icon {
    width: 40px;
    height: 40px;
  }
  .product-card__button .accent-button__label {
    padding: 0;
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card__button {
    display: block;
  }
  .product-card__button .accent-button {
    height: auto;
    padding: 2px 12px 2px 2px;
    gap: 12px;
  }
  .product-card__button .accent-button__icon {
    width: 40px;
    height: 40px;
  }
  .product-card__button .accent-button__label {
    padding: 0;
    font-family: "Inter";
    font-size: 14px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
}

.brands {
  width: 100%;
  position: relative;
  background: var(--color-plombir);
}
@media (min-width: 360px) and (max-width: 768px) {
  .brands {
    padding: 64px 16px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .brands {
    padding: 80px 0;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands {
    padding: 64px 16px;
  }
}
.brands__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .brands__container {
    gap: 40px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .brands__container {
    gap: clamp(28px, 2.9vw, 56px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands__container {
    gap: 40px;
  }
}
.brands__cards {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 360px) and (max-width: 768px) {
  .brands__cards {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .brands__cards {
    gap: clamp(6px, 0.6vw, 12px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands__cards {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
.brands__button {
  width: max-content;
}
@media (min-width: 360px) and (max-width: 768px) {
  .brands__button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .brands__button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.product-card {
  cursor: pointer;
  position: relative;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card {
    cursor: default;
    pointer-events: none;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card {
    cursor: default;
    pointer-events: none;
  }
}
.product-card--yellow .product-card__base-color {
  background: var(--color-yellow);
}
.product-card--yellow .product-card__image {
  position: absolute;
  height: 85.87%;
  left: -6.49%;
  top: 14.07%;
  width: 112.98%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.product-card--yellow .product-card__gradient {
  background: linear-gradient(180deg, rgba(250, 198, 0, 0) 71.574%, #fac600 100%);
  position: relative;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--yellow .product-card__gradient {
    background: linear-gradient(180deg, rgba(250, 198, 0, 0) 32.212%, #fac600 100%);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--yellow .product-card__gradient {
    background: linear-gradient(180deg, rgba(250, 198, 0, 0) 32.212%, #fac600 100%);
  }
}
.product-card--yellow .product-card__gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fac600;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.product-card--yellow .product-card__gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 198, 0, 0.27);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.product-card--yellow .product-card__decoration {
  border-radius: 50%;
  opacity: 1;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--yellow .product-card__decoration {
    width: 644.495px;
    height: 644.495px;
    left: -159.4px;
    top: -23px;
    transform: rotate(350.782deg);
    background-color: rgba(250, 198, 0, 0.3);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--yellow .product-card__decoration {
    width: 644.495px;
    height: 644.495px;
    left: -159.4px;
    top: -23px;
    transform: rotate(350.782deg);
    background-color: rgba(250, 198, 0, 0.3);
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--yellow .product-card__decoration {
    opacity: 0.7;
  }
}
.product-card--yellow .product-card__bottom-shape {
  position: absolute;
  inset: 0;
  background-color: #fac600;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.product-card--yellow .product-card__bottom-shape-mask {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--yellow .product-card__bottom-shape {
    clip-path: url(#bottom-shape-clip-yellow);
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--yellow .product-card__bottom-shape {
    height: 40%;
    top: auto;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--yellow .product-card__bottom-shape {
    height: 40%;
    top: auto;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--yellow:hover .product-card__content--top-643 {
    top: 11%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) and (min-width: 1025px) and (max-width: 1439px) {
  .product-card--yellow:hover .product-card__content--top-643 {
    top: 5%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--yellow:hover .product-card__header {
    gap: clamp(6px, 0.6vw, 12px);
  }
  .product-card--yellow:hover .product-card__body {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .product-card--yellow:hover .product-card__decoration {
    width: clamp(1351px, 141vw, 2703.004px);
    height: clamp(1351px, 141vw, 2703.004px);
    left: clamp(-287px, -30vw, -575.86px);
    top: clamp(-489px, -51vw, -978.36px);
    transform: rotate(326.82deg);
    opacity: 1;
    background-color: rgba(250, 198, 0, 0.8);
  }
  .product-card--yellow:hover .product-card__bottom-shape {
    height: 70.8%;
  }
  .product-card--yellow:hover .product-card__button {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .product-card--yellow:hover .product-card__gradient::before {
    opacity: 1;
  }
  .product-card--yellow:hover .product-card__gradient::after {
    opacity: 1;
  }
  .product-card--yellow:hover .product-card__logo--round.product-card__logo--desktop {
    display: flex !important;
    opacity: 1 !important;
  }
  .product-card--yellow:hover .product-card__logo--round:not(.product-card__logo--desktop) {
    display: none !important;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--yellow .product-card__logo--round {
    position: absolute;
    top: 16px;
    left: 16px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--yellow .product-card__logo--round {
    display: block;
    position: absolute;
    top: 16px;
    left: 16px;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--yellow .product-card__logo--round.product-card__logo--desktop {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--yellow .product-card__logo--round.product-card__logo--desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-plombir);
    border-radius: clamp(40px, 4.17vw, 40px);
    width: clamp(56px, 5.8vw, 112px);
    height: clamp(56px, 5.8vw, 112px);
    flex-shrink: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--yellow .product-card__logo--round:not(.product-card__logo--desktop) {
    opacity: 1;
    transition: opacity 0.4s ease;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--yellow .product-card__logo--round.product-card__logo--desktop .product-card__logo-image {
    position: absolute;
    left: clamp(10px, 1vw, 20px);
    top: clamp(10px, 1vw, 20px);
    width: clamp(36px, 3.75vw, 72px);
    height: clamp(36px, 3.75vw, 72px);
    inset: auto;
    max-height: none;
  }
  .product-card--yellow .product-card__logo--round.product-card__logo--desktop .product-card__logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: none;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--yellow .product-card__logo--round .product-card__logo-image {
    inset: 11.43px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--yellow .product-card__logo--round .product-card__logo-image {
    inset: 11.43px;
  }
}
.product-card--blue .product-card__background {
  background: #b7d2f0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--blue .product-card__background {
    background: #a9bae3;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--blue .product-card__background {
    background: #a9bae3;
  }
}
.product-card--blue .product-card__image {
  background-color: rgba(183, 210, 240, 0.8);
}
.product-card--blue .product-card__gradient {
  background: linear-gradient(180deg, rgba(155, 181, 255, 0) 67.391%, #9bb5ff 100%);
  position: relative;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--blue .product-card__gradient {
    background: linear-gradient(180deg, rgba(155, 181, 255, 0) 51.923%, #9bb5ff 100%);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--blue .product-card__gradient {
    background: linear-gradient(180deg, rgba(155, 181, 255, 0) 51.923%, #9bb5ff 100%);
  }
}
.product-card--blue .product-card__gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b7d2f0;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.product-card--blue .product-card__gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(155, 181, 255, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.product-card--blue .product-card__decoration--blue {
  width: 1747.766px;
  height: 1747.766px;
  left: -659px;
  top: -430px;
  transform: rotate(347.906deg);
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--blue .product-card__decoration--blue {
    width: 735.162px;
    height: 735.162px;
    left: -283px;
    top: -55.59px;
    transform: rotate(345.634deg);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--blue .product-card__decoration--blue {
    width: 735.162px;
    height: 735.162px;
    left: -283px;
    top: -55.59px;
    transform: rotate(345.634deg);
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--blue .product-card__decoration--blue {
    width: clamp(873px, 91vw, 1747.766px);
    height: clamp(873px, 91vw, 1747.766px);
    left: clamp(-329px, -34.3vw, -659px);
    top: clamp(-215px, -22.4vw, -430px);
    opacity: 0.7;
    transition: width 0.4s ease, height 0.4s ease, left 0.4s ease, top 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--blue:hover .product-card__content--top-712 {
    top: clamp(161px, 16.8vw, 322px);
  }
  .product-card--blue:hover .product-card__header {
    gap: clamp(6px, 0.6vw, 12px);
  }
  .product-card--blue:hover .product-card__body {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .product-card--blue:hover .product-card__decoration--blue {
    width: clamp(1037px, 108vw, 2075.165px);
    height: clamp(1037px, 108vw, 2075.165px);
    left: clamp(-485px, -50.5vw, -970px);
    top: clamp(-323px, -33.7vw, -646px);
    transform: rotate(347.906deg);
    opacity: 1;
    background-color: rgba(155, 181, 255, 0.6);
  }
  .product-card--blue:hover .product-card__button {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .product-card--blue:hover .product-card__gradient {
    background: linear-gradient(180deg, rgba(155, 181, 255, 0) 50.481%, #9bb5ff 100%);
  }
  .product-card--blue:hover .product-card__gradient::before {
    opacity: 1;
  }
  .product-card--blue:hover .product-card__gradient::after {
    opacity: 1;
  }
  .product-card--blue:hover .product-card__logo--rect.product-card__logo--desktop {
    display: flex !important;
    opacity: 1 !important;
  }
  .product-card--blue:hover .product-card__logo--rect:not(.product-card__logo--desktop) {
    display: none !important;
  }
}
.product-card--blue .product-card__logo--rect {
  width: 209px;
  border-radius: 40px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--blue .product-card__logo--rect {
    position: absolute;
    width: 120px;
    height: 64px;
    border-radius: 24px;
    top: 16px;
    left: 16px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--blue .product-card__logo--rect {
    display: none;
    width: clamp(104.5px, 10.9vw, 209px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--blue .product-card__logo--rect {
    display: block;
    position: absolute;
    width: 120px;
    height: 64px;
    border-radius: 24px;
    top: 16px;
    left: 16px;
  }
}
.product-card--blue .product-card__logo--rect.product-card__logo--desktop {
  display: none;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--blue .product-card__logo--rect.product-card__logo--desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-plombir);
    border-radius: clamp(40px, 4.17vw, 40px);
    width: clamp(104.5px, 10.9vw, 209px);
    height: clamp(56px, 5.8vw, 112px);
    flex-shrink: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--blue .product-card__logo--rect:not(.product-card__logo--desktop) {
    opacity: 1;
    transition: opacity 0.4s ease;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--blue .product-card__logo--rect.product-card__logo--desktop .product-card__logo-image {
    position: absolute;
    left: clamp(8.5px, 0.9vw, 17px);
    top: clamp(12px, 1.25vw, 24px);
    width: clamp(84.5px, 8.8vw, 169px);
    height: clamp(32px, 3.3vw, 64px);
    inset: auto;
    max-height: none;
  }
  .product-card--blue .product-card__logo--rect.product-card__logo--desktop .product-card__logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: none;
  }
}
.product-card--blue .product-card__logo--rect .product-card__logo-image {
  inset: 24px 17px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--blue .product-card__logo--rect .product-card__logo-image {
    inset: 13.71px 9.71px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--blue .product-card__logo--rect .product-card__logo-image {
    inset: 13.71px 9.71px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--blue .product-card__logo--rect .product-card__logo-image {
    inset: clamp(12px, 1.25vw, 24px) clamp(8.5px, 0.9vw, 17px);
  }
}
.product-card--brown .product-card__background {
  background: #532124;
  transition: background 0.4s ease;
}
.product-card--brown .product-card__image {
  background-color: rgba(83, 33, 36, 0.8);
}
.product-card--brown .product-card__gradient {
  background: linear-gradient(180deg, rgba(104, 42, 45, 0) 47.036%, rgb(104, 42, 45) 92.952%);
  position: relative;
}
.product-card--brown .product-card__gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #682a2d;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.product-card--brown .product-card__gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(176, 41, 66, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.product-card--brown .product-card__decoration--brown {
  width: 1938px;
  height: 1938px;
  left: -343px;
  top: -769px;
  transform: rotate(270deg);
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--brown .product-card__decoration--brown {
    width: 1014px;
    height: 1014px;
    left: -213.71px;
    top: -425.71px;
    transform: rotate(264.694deg);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--brown .product-card__decoration--brown {
    width: 1014px;
    height: 1014px;
    left: -213.71px;
    top: -425.71px;
    transform: rotate(264.694deg);
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--brown .product-card__decoration--brown {
    width: clamp(969px, 101vw, 1938px);
    height: clamp(969px, 101vw, 1938px);
    left: clamp(-171px, -17.9vw, -343px);
    top: clamp(-384px, -40vw, -769px);
    opacity: 0.7;
    transition: width 0.4s ease, height 0.4s ease, left 0.4s ease, top 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--brown:hover .product-card__background {
    background: #562326;
  }
  .product-card--brown:hover .product-card__content--top-712 {
    top: 15%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) and (min-width: 1025px) and (max-width: 1439px) {
  .product-card--brown:hover .product-card__content--top-712 {
    top: 5%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) and (min-width: 1700px) and (max-width: 1920px) {
  .product-card--brown:hover .product-card__content--top-712 {
    top: 20.5%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--brown:hover .product-card__header {
    gap: clamp(6px, 0.6vw, 12px);
  }
  .product-card--brown:hover .product-card__body {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .product-card--brown:hover .product-card__decoration--brown {
    width: clamp(1076px, 112vw, 2152.211px);
    height: clamp(1076px, 112vw, 2152.211px);
    left: clamp(-235px, -24.5vw, -470.11px);
    top: clamp(-521px, -54.3vw, -1042.11px);
    transform: rotate(263.255deg);
    opacity: 1;
    background-color: rgba(176, 41, 66, 0.6);
  }
  .product-card--brown:hover .product-card__button {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .product-card--brown:hover .product-card__gradient::before {
    opacity: 1;
  }
  .product-card--brown:hover .product-card__gradient::after {
    opacity: 1;
  }
  .product-card--brown:hover .product-card__logo--round.product-card__logo--desktop {
    display: flex !important;
    opacity: 1 !important;
  }
  .product-card--brown:hover .product-card__logo--round:not(.product-card__logo--desktop) {
    display: none !important;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--brown .product-card__logo--round {
    position: absolute;
    top: 16px;
    left: 16px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--brown .product-card__logo--round {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--brown .product-card__logo--round {
    display: block;
    position: absolute;
    top: 16px;
    left: 16px;
  }
}
.product-card--brown .product-card__logo--round.product-card__logo--desktop {
  display: none;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--brown .product-card__logo--round.product-card__logo--desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-plombir);
    border-radius: clamp(40px, 4.17vw, 40px);
    width: clamp(56px, 5.8vw, 112px);
    height: clamp(56px, 5.8vw, 112px);
    flex-shrink: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--brown .product-card__logo--round:not(.product-card__logo--desktop) {
    opacity: 1;
    transition: opacity 0.4s ease;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--brown .product-card__logo--round.product-card__logo--desktop .product-card__logo-image {
    position: absolute;
    left: clamp(4.5px, 0.5vw, 9px);
    top: clamp(6px, 0.6vw, 12px);
    width: clamp(47px, 4.9vw, 94px);
    height: clamp(43.5px, 4.5vw, 87px);
    inset: auto;
    max-height: none;
  }
  .product-card--brown .product-card__logo--round.product-card__logo--desktop .product-card__logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: none;
  }
}
.product-card--brown .product-card__logo--round .product-card__logo-image {
  inset: 12px 9px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .product-card--brown .product-card__logo--round .product-card__logo-image {
    inset: 6.86px 5.14px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .product-card--brown .product-card__logo--round .product-card__logo-image {
    inset: 6.86px 5.14px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .product-card--brown .product-card__logo--round .product-card__logo-image {
    inset: clamp(6px, 0.6vw, 12px) clamp(4.5px, 0.5vw, 9px);
  }
}

.smile-animation {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .smile-animation {
    margin-bottom: 80px;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .smile-animation {
    margin-bottom: 64px;
  }
}
.smile-animation__container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  flex-wrap: nowrap;
  will-change: transform;
}
@media (min-width: 360px) and (max-width: 768px) {
  .smile-animation__container {
    gap: 12px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .smile-animation__container {
    gap: 24px;
  }
}
.smile-animation__item {
  position: relative;
  flex-shrink: 0;
}
.smile-animation__circle {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .smile-animation__circle {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .smile-animation__circle {
    width: 440px;
    height: 440px;
  }
}
.smile-animation__circle--flipped {
  transform: scaleY(-1);
}
.smile-animation__ellipse {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.smile-animation__vector {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-card {
  position: relative;
  width: 440px;
  height: 590px;
  border-radius: 94px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: width 0.3s ease, transform 0.3s ease;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card {
    width: 328px;
    height: 420px;
    border-radius: 48px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-card {
    width: clamp(220px, 22.9vw, 440px);
    height: clamp(295px, 30.7vw, 590px);
    border-radius: clamp(47px, 4.9vw, 94px);
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-card:hover {
    width: 587px;
    width: clamp(293.5px, 30.6vw, 587px);
  }
  .news-card:hover .news-card__gradient {
    opacity: 1;
  }
  .news-card:hover .news-card__content {
    opacity: 1;
  }
  .news-card:hover .news-card__image img,
  .news-card:hover .news-card__image-fallback {
    transform: scale(1.1);
  }
  .news-card:hover .news-card__video {
    opacity: 1;
  }
}
.news-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card__image {
    left: -46.02%;
    width: 192.05%;
    top: 0;
    right: auto;
    bottom: auto;
  }
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }
}
.news-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card__video {
    position: static;
  }
}
.news-card__image-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.3s ease;
}
.news-card__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 360px;
  background: linear-gradient(180deg, rgba(44, 36, 36, 0) 0%, rgba(9, 9, 9, 0.704) 71.158%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card__gradient {
    height: 360px;
    opacity: 1;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-card__gradient {
    height: clamp(180px, 18.75vw, 360px);
  }
}
.news-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 40px 48px 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card__content {
    padding: 0 16px 32px 16px;
    gap: 14px;
    opacity: 1;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-card__content {
    padding: 0 clamp(20px, 2.1vw, 40px) clamp(24px, 2.5vw, 48px);
    gap: clamp(7px, 0.7vw, 14px);
  }
}
.news-card__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-card__meta {
    gap: clamp(8px, 0.8vw, 16px);
  }
}
.news-card__tag {
  background: var(--color-brand);
  padding: 0 16px;
  border-radius: 36px;
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-plombir);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card__tag {
    padding: 2px 12px 4px 12px;
    border-radius: 36px;
    font-family: "Inter";
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-card__tag {
    padding: 0 clamp(8px, 0.8vw, 16px);
    border-radius: clamp(18px, 1.9vw, 36px);
    font-size: clamp(14px, 1.05vw, 20px);
  }
}
.news-card__date {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-plombir);
  letter-spacing: -0.03em;
  margin: 0;
  white-space: nowrap;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card__date {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-card__date {
    font-size: clamp(14px, 1.05vw, 20px);
  }
}
.news-card__title {
  font-family: "Inter";
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-plombir);
  letter-spacing: -0.04em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 70px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card__title {
    font-family: "Inter";
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    max-height: 53px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-card__title {
    font-size: clamp(18px, 1.6vw, 30px);
    max-height: clamp(40px, 3.65vw, 70px);
  }
}
.news-card__description {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-plombir);
  letter-spacing: -0.03em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-card__description {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
    width: 296px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-card__description {
    font-size: clamp(14px, 1.05vw, 20px);
  }
}

.news-events {
  width: 100%;
  position: relative;
  background: var(--color-plombir);
}
.news-events__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-events__container {
    padding: 0 0 64px 0;
    gap: 40px;
    align-items: flex-start;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-events__container {
    gap: clamp(28px, 2.9vw, 64px);
    margin-bottom: 80px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .news-events__container {
    margin-bottom: 0;
  }
}
.news-events__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 1265px;
  max-width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-events__header {
    gap: 16px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 16px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-events__header {
    width: clamp(632.5px, 65.9vw, 1265px);
    gap: clamp(8px, 0.8vw, 16px);
  }
}
.news-events__title {
  font-family: "Tovari Sans Bold";
  font-size: 76px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-black);
  margin: 0;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-events__title {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-events__title {
    font-size: clamp(38px, 4vw, 76px);
  }
}
.news-events__description {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  letter-spacing: -0.03em;
  margin: 0;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-events__description {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-events__description {
    font-size: clamp(14px, 1.05vw, 20px);
  }
}
.news-events__cards {
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-events__cards {
    display: none;
  }
}
.news-events__cards:active {
  cursor: grabbing;
}
.news-events__cards::-webkit-scrollbar {
  display: none;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .news-events__cards {
    gap: clamp(12px, 1.25vw, 24px);
    padding-left: clamp(17.6px, 1.75vw, 44.5px);
    padding-right: clamp(17.6px, 1.75vw, 44.5px);
    scroll-padding-left: clamp(17.6px, 1.75vw, 44.5px);
    scroll-padding-right: clamp(17.6px, 1.75vw, 44.5px);
  }
}
.news-events__swiper-wrapper {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .news-events__swiper-wrapper {
    display: block;
    width: 100%;
  }
}
.news-events__swiper {
  width: 100%;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.news-events__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
}
.news-events__swiper .swiper-slide {
  width: 328px;
  height: auto;
  flex-shrink: 0;
}
.news-events__swiper .swiper-slide .news-card {
  width: 100%;
  height: 420px;
  position: relative;
  z-index: 1;
}
.news-events__swiper .swiper-slide.swiper-slide-next {
  z-index: 2;
}
.news-events__swiper .swiper-slide.swiper-slide-next .news-card {
  z-index: 2;
}
.news-events__pagination {
  position: static !important;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  transform: none !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
}
.news-events__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-bck);
  border-radius: 6px;
  opacity: 1;
  margin: 0;
}
.news-events__pagination .swiper-pagination-bullet-active {
  background: var(--color-bck);
  position: relative;
}
.news-events__pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--color-choco);
  border-radius: 50%;
}
.news-events__button {
  width: max-content;
  margin: 0 auto;
}

.career {
  position: relative;
  width: 100%;
  min-height: 1240px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 47px;
  overflow: hidden;
  overflow-x: hidden;
}
.career__main {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 1240px;
  z-index: 1;
}
.career__bg {
  position: absolute;
  z-index: 0;
}
.career__bg--ellipse-1 {
  left: 50%;
  top: 47px;
  width: 649px;
  height: 649px;
  transform: translateX(calc(-50% - 336px)) rotate(180deg) scaleY(-1);
  background: linear-gradient(355deg, #F5F2E7 -133.12%, #FFF 159.57%);
  border-radius: 50%;
}
.career__bg--ellipse-2 {
  left: 50%;
  top: 52px;
  width: 3345px;
  height: 1107px;
  transform: translateX(-50%);
  overflow: hidden;
}
.career__bg--svg {
  left: 50%;
  bottom: 81px;
  width: 1920px;
  height: 554px;
  transform: translateX(-50%);
  overflow: hidden;
}
.career__bg-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}
.career__content {
  position: relative;
  z-index: 1;
  background: var(--color-plombir);
  border-radius: 97px;
  padding: 80px 74px;
  width: 758px;
  margin: 0 auto;
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.career__title {
  font-family: "Tovari Sans Bold";
  font-size: 76px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-black);
  margin: 0;
}
.career__benefits {
  display: flex;
  flex-direction: column;
  width: 534px;
}
.career__benefit {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.career__benefit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.career__benefit-title {
  font-family: "Inter";
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-black);
  letter-spacing: -1.2px;
  margin: 0;
  flex: 1;
}
.career__benefit-icon {
  width: 24px;
  height: 24px;
  border-radius: 20px;
  background: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  padding: 8px;
  transition: transform 0.3s ease;
}
.career__benefit-icon::before, .career__benefit-icon::after {
  content: "";
  position: absolute;
  background: var(--color-plombir);
  transition: opacity 0.3s ease, transform 0.3s ease;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.career__benefit-icon::before {
  width: 12px;
  height: 2px;
}
.career__benefit-icon--plus::after {
  width: 2px;
  height: 12px;
  opacity: 1;
}
.career__benefit-icon--minus::after {
  width: 0;
  height: 0;
  opacity: 0;
}
.career__benefit-content {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}
.career__benefit-text {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-choco);
  letter-spacing: -0.48px;
  margin: 0;
  padding-top: 12px;
}
.career__divider {
  width: 100%;
  height: 1px;
  margin: 16px 0 16px 0;
  padding: 0;
  border: 0;
  background: var(--color-choco);
  opacity: 0.2;
}
@media (min-width: 360px) and (max-width: 768px) {
  .career__divider {
    margin-bottom: 16px;
  }
}
.career__actions {
  display: flex;
  align-items: center;
  gap: 48px;
}
.career__action-button {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-ligth);
  border-radius: 1000px;
  padding: 2px 30px 2px 2px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.career__action-button:hover {
  opacity: 0.9;
}
.career__action-text {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 600;
  line-height: 0.95;
  color: var(--color-black);
  letter-spacing: -0.32px;
  white-space: nowrap;
}
.career__arrow-down {
  transform: rotate(90deg);
}
.career__hh-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-brand);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.career__hh-btn:hover {
  opacity: 0.9;
}
.career__hh-icon {
  width: 32px;
  height: 21px;
  display: block;
  object-fit: contain;
}
.career__hh-text {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-plombir);
}
.career__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.career__image {
  position: absolute;
  overflow: visible;
}
.career__image--1 {
  left: 99.65px;
  top: 190.65px;
  width: 390.694px;
  height: 390.694px;
  transform: rotate(335.414deg);
}
.career__image--2 {
  left: 1230px;
  top: 86px;
  width: 549.857px;
  height: 571.674px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(14.89deg);
}
.career__image--3 {
  left: 100px;
  top: 715px;
  width: 463.493px;
  height: 475.58px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(335.993deg);
}
.career__image--4 {
  left: 1129px;
  width: 387.094px;
  height: 387.094px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(9.229deg);
  border-radius: 50%;
  overflow: hidden;
}
.career__image-img {
  width: 442.999px;
  height: 473.75px;
  object-fit: contain;
  display: block;
}
.career__image-video-player {
  width: 387.094px;
  height: 387.094px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}
.career__image-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  pointer-events: none;
  z-index: 1;
}
.career__image-progress-bg {
  transition: none;
}
.career__image-progress-bar {
  transition: stroke-dashoffset 0.1s linear;
}
.career__image--4 .career__image-img {
  width: 387.094px;
  height: 387.094px;
}
.career__image-video-wrapper {
  position: absolute;
  left: 138.91px;
  top: 228.96px;
  width: 313px;
  height: 313px;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career__image-video {
  position: absolute;
  left: 138.91px;
  top: 228.96px;
  width: 313px;
  height: 313px;
  object-fit: cover;
  display: block;
  z-index: 2;
}
.career__image-video-player--2 {
  width: 313px;
  height: 313px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}
.career__image-progress--2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  pointer-events: none;
  z-index: 1;
}
.career__image-ellipse {
  position: absolute;
  pointer-events: none;
}
.career__image-ellipse-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.career__image--1 .career__image-ellipse {
  position: absolute;
  width: 294.776px;
  height: 294.776px;
  top: 2.18%;
  right: 0;
  bottom: 29.71%;
  left: 63.47%;
}
.career__image-ellipse--4 {
  position: absolute;
  left: 1170.08px;
  top: 821.57px;
  width: 362px;
  height: 362px;
  pointer-events: none;
}
.career__messages {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.career__message {
  position: absolute;
}
.career__message--1 {
  left: 1386.08px;
  top: 773px;
  width: 329.367px;
  height: 132px;
}
.career__message--2 {
  left: 1594.82px;
  top: 222.73px;
  width: 302.059px;
  height: 157px;
}
.career__message-bubble {
  position: absolute;
  background: linear-gradient(to top, #f5f2e7 0%, #fffefa 107.99%);
  border-radius: 39px;
  padding: 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: visible;
  z-index: 2;
}
.career__message--1 .career__message-bubble {
  left: 11.54px;
  top: 0.49px;
  width: auto;
  min-width: fit-content;
  min-height: 62px;
  transform: rotate(351.157deg);
}
.career__message--2 .career__message-bubble {
  left: 23.76px;
  top: 29.21px;
  width: auto;
  min-width: fit-content;
  min-height: 62px;
  height: auto;
  transform: rotate(3.413deg);
}
.career__message-name {
  font-family: "Calibri", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-brand);
  letter-spacing: -0.6px;
  margin: 0;
}
.career__message-text {
  font-family: "Calibri", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-choco);
  letter-spacing: -0.6px;
  margin: 0;
}
.career__message-arrow {
  position: absolute;
  width: 79px;
  height: 36.59px;
  z-index: 1;
}
.career__message-arrow-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.career__message--1 .career__message-arrow {
  left: 5.51px;
  top: 62px;
  width: 80.661px;
  height: 40.331px;
  transform: rotate(357.255deg);
}
.career__message--2 .career__message-arrow {
  left: 0;
  top: 62px;
  width: 83.96px;
  height: 49.141px;
  transform: rotate(9.511deg);
}
@media (min-width: 759px) and (max-width: 1920px) {
  .career {
    min-height: clamp(800px, 64.6vw, 1240px);
    padding-top: clamp(30px, 2.4vw, 47px);
  }
  .career__main {
    min-height: clamp(800px, 64.6vw, 1240px);
  }
  .career__bg--ellipse-1 {
    left: 50%;
    top: clamp(30px, 2.4vw, 47px);
    width: clamp(400px, 33.8vw, 649px);
    height: clamp(400px, 33.8vw, 649px);
    transform: translateX(calc(-50% - clamp(200px, 17.5vw, 336px))) rotate(180deg) scaleY(-1);
    background: linear-gradient(355deg, #F5F2E7 -133.12%, #FFF 159.57%);
  }
  .career__bg--ellipse-2 {
    left: 50%;
    top: clamp(33px, 2.7vw, 52px);
    width: clamp(2000px, 174.2vw, 3345px);
    height: clamp(600px, 57.7vw, 1107px);
    transform: translateX(-50%);
  }
  .career__bg--svg {
    bottom: clamp(50px, 4.2vw, 81px);
    width: clamp(1200px, 100vw, 1920px);
    height: clamp(300px, 28.85vw, 554px);
  }
  .career__bg-image {
    width: 100%;
    height: 100%;
  }
  .career__content {
    border-radius: clamp(60px, 5.05vw, 97px);
    padding: clamp(50px, 4.2vw, 80px) clamp(45px, 3.85vw, 74px);
    width: clamp(600px, 39.5vw, 758px);
    margin-top: clamp(60px, 4.7vw, 90px);
    gap: clamp(45px, 3.75vw, 72px);
  }
  .career__title {
    font-size: clamp(48px, 3.96vw, 76px);
  }
  .career__benefits {
    width: clamp(420px, 27.8vw, 534px);
  }
  .career__benefit {
    gap: clamp(10px, 0.83vw, 16px);
  }
  .career__benefit-title {
    font-size: clamp(24px, 1.56vw, 30px);
    letter-spacing: clamp(-0.8px, -0.06vw, -1.2px);
  }
  .career__benefit-content {
    max-height: none;
    opacity: 1;
  }
  .career__benefit[aria-expanded=true] .career__benefit-content {
    max-height: none;
    opacity: 1;
  }
  .career__actions {
    gap: clamp(30px, 2.5vw, 48px);
  }
  .career__action-button {
    gap: clamp(12px, 0.94vw, 18px);
    padding: clamp(2px, 0.1vw, 2px) clamp(20px, 1.56vw, 30px) clamp(2px, 0.1vw, 2px) clamp(2px, 0.1vw, 2px);
  }
  .career__action-text {
    font-size: clamp(14px, 0.83vw, 16px);
    letter-spacing: clamp(-0.2px, -0.02vw, -0.32px);
  }
  .career__hh-btn {
    width: clamp(56px, 3.75vw, 72px);
    height: clamp(56px, 3.75vw, 72px);
  }
  .career__hh-icon {
    width: clamp(25px, 1.67vw, 32px);
    height: clamp(16px, 1.09vw, 21px);
  }
  .career__hh-text {
    font-size: clamp(14px, 0.83vw, 16px);
  }
  .career__image--1 {
    left: clamp(60px, 5.2vw, 99.65px);
    top: clamp(120px, 9.9vw, 190.65px);
    width: clamp(250px, 20.3vw, 390.694px);
    height: clamp(250px, 20.3vw, 390.694px);
  }
  .career__image-video-wrapper {
    left: clamp(85px, 7.2vw, 138.91px);
    top: clamp(145px, 11.9vw, 228.96px);
    width: clamp(200px, 16.3vw, 313px);
    height: clamp(200px, 16.3vw, 313px);
    border-radius: 50%;
  }
  .career__image-video {
    left: clamp(85px, 7.2vw, 138.91px);
    top: clamp(145px, 11.9vw, 228.96px);
    width: clamp(200px, 16.3vw, 313px);
    height: clamp(200px, 16.3vw, 313px);
  }
  .career__image-video-player--2 {
    width: clamp(200px, 16.3vw, 313px);
    height: clamp(200px, 16.3vw, 313px);
    border-radius: 50%;
  }
  .career__image-progress--2 {
    width: calc(100% - clamp(8px, 0.8vw, 16px));
    height: calc(100% - clamp(8px, 0.8vw, 16px));
  }
  .career__image-ellipse--4 {
    left: clamp(740px, 60.9vw, 1170.08px);
    top: clamp(520px, 42.8vw, 821.57px);
    width: clamp(230px, 18.9vw, 362px);
    height: clamp(230px, 18.9vw, 362px);
  }
  .career__image--2 {
    left: clamp(735px, 61.9vw, 1230px);
    top: clamp(55px, 4.5vw, 86px);
    width: clamp(350px, 28.6vw, 549.857px);
    height: clamp(370px, 29.8vw, 571.674px);
  }
  .career__image-img {
    width: clamp(280px, 23.1vw, 442.999px);
    height: clamp(300px, 24.7vw, 473.75px);
  }
  .career__image--3 {
    left: clamp(60px, 5.2vw, 100px);
    top: clamp(450px, 37.2vw, 715px);
    width: clamp(300px, 24.1vw, 463.493px);
    height: clamp(310px, 24.8vw, 475.58px);
  }
  .career__image--3 .career__image-img {
    width: clamp(220px, 17.9vw, 343.688px);
    height: clamp(235px, 19.2vw, 367.545px);
  }
  .career__image--4 {
    left: clamp(700px, 63.8vw, 1230px);
    top: clamp(480px, 40.6vw, 780.57px);
    width: clamp(250px, 20.2vw, 387.094px);
    height: clamp(250px, 20.2vw, 387.094px);
    border-radius: 50%;
  }
  .career__image-video-player {
    width: clamp(250px, 20.2vw, 387.094px);
    height: clamp(250px, 20.2vw, 387.094px);
    border-radius: 50%;
  }
  .career__image-progress {
    width: calc(100% - clamp(8px, 0.8vw, 16px));
    height: calc(100% - clamp(8px, 0.8vw, 16px));
  }
  .career__message--1 {
    left: clamp(800px, 77.2vw, 1458.08px);
    top: clamp(500px, 40.3vw, 773px);
    width: clamp(200px, 17.2vw, 329.367px);
    height: clamp(80px, 6.9vw, 132px);
  }
  .career__message--2 {
    left: clamp(900px, 83.1vw, 1594.82px);
    top: clamp(150px, 11.6vw, 222.73px);
    width: clamp(180px, 15.7vw, 302.059px);
    height: clamp(100px, 8.2vw, 157px);
  }
  .career__message-bubble {
    border-radius: clamp(25px, 2vw, 39px);
    padding: clamp(10px, 0.83vw, 16px) clamp(25px, 2.1vw, 40px);
    gap: clamp(2px, 0.2vw, 4px);
  }
  .career__message-name, .career__message-text {
    font-size: clamp(14px, 1.04vw, 20px);
    letter-spacing: clamp(-0.4px, -0.03vw, -0.6px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .career {
    min-height: auto;
    padding-top: 27px;
    padding-bottom: 120px;
    overflow-x: hidden;
  }
  .career__main {
    min-height: auto;
    position: relative;
    width: 100%;
    overflow: visible;
  }
  .career__bg--svg {
    left: 50%;
    bottom: -75px;
    width: 100%;
    height: 316px;
    transform: translateX(-50%);
  }
  .career__content {
    border-radius: clamp(48px, 17.1vw, 64px);
    padding: clamp(48px, 12.8vw, 64px) clamp(16px, 4.3vw, 16px);
    width: 60%;
    margin: 0 auto;
    gap: clamp(32px, 10.7vw, 40px);
    position: relative;
    z-index: 1;
    order: 1;
    box-sizing: border-box;
  }
  .career__title {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
  }
  .career__benefits {
    width: 100%;
  }
  .career__benefit {
    gap: 12px;
    width: 100%;
  }
  .career__benefit-header {
    gap: 12px;
  }
  .career__benefit-title {
    font-family: "Inter";
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
  }
  .career__benefit-icon {
    width: 24px;
    height: 24px;
  }
  .career__benefit-text {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.48px;
    padding-top: 0;
  }
  .career__divider {
    margin-top: 12px;
  }
  .career__actions {
    gap: 24px;
    flex-wrap: wrap;
  }
  .career__hh-btn {
    width: 40px;
    height: 40px;
  }
  .career__hh-icon {
    width: 18px;
    height: 12px;
  }
  .career__images {
    display: block;
    position: static;
    width: 0;
    height: 0;
    margin: 0;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
  }
  .career__image--2, .career__image--3 {
    display: none;
  }
  .career__image--4 {
    display: flex;
    position: absolute;
    left: 0;
    bottom: -110px;
    left: 16px;
    width: clamp(120px, 32vw, 146px);
    height: clamp(120px, 32vw, 146px);
    transform: rotate(15deg);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto;
  }
  .career__image-video-wrapper {
    display: flex;
    position: absolute;
    right: clamp(13.5px, 3.6vw, 13.5px);
    top: clamp(-15px, -4vw, -15px);
    width: clamp(90px, 24vw, 106px);
    height: clamp(90px, 24vw, 106px);
    left: auto !important;
    border-radius: 50%;
    overflow: hidden;
    transform: rotate(-15deg);
    z-index: 2;
    pointer-events: auto;
  }
  .career__image-video-player--2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  .career__image-progress--2 {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
  .career__image-video-player {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  .career__image-progress {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
  .career__messages {
    display: none;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .career {
    min-height: auto;
    padding-top: 27px;
    padding-bottom: 120px;
    overflow-x: hidden;
  }
  .career__main {
    min-height: auto;
    position: relative;
    width: 100%;
    overflow: visible;
  }
  .career__bg--svg {
    left: 50%;
    bottom: -75px;
    width: 956px;
    height: 316px;
    transform: translateX(-50%);
  }
  .career__content {
    border-radius: clamp(48px, 17.1vw, 64px);
    padding: clamp(48px, 12.8vw, 64px) clamp(16px, 4.3vw, 16px);
    width: 100%;
    margin: 0;
    gap: clamp(32px, 10.7vw, 40px);
    position: relative;
    z-index: 1;
    order: 1;
    box-sizing: border-box;
  }
  .career__title {
    font-family: "Tovari Sans Bold";
    font-size: 36px;
    font-weight: 700;
    line-height: 0.9;
  }
  .career__benefits {
    width: 100%;
  }
  .career__benefit {
    gap: 12px;
    width: 100%;
  }
  .career__benefit-header {
    gap: 12px;
  }
  .career__benefit-title {
    font-family: "Inter";
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
  }
  .career__benefit-icon {
    width: 24px;
    height: 24px;
  }
  .career__benefit-text {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.48px;
    padding-top: 0;
  }
  .career__divider {
    margin-top: 12px;
  }
  .career__actions {
    gap: 24px;
    flex-wrap: wrap;
  }
  .career__hh-btn {
    width: 40px;
    height: 40px;
  }
  .career__hh-icon {
    width: 18px;
    height: 12px;
  }
  .career__images {
    display: block;
    position: static;
    width: 0;
    height: 0;
    margin: 0;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
  }
  .career__image--2, .career__image--3 {
    display: none;
  }
  .career__image--4 {
    display: flex;
    position: absolute;
    left: 0;
    bottom: -110px;
    left: 16px;
    width: clamp(120px, 32vw, 146px);
    height: clamp(120px, 32vw, 146px);
    transform: rotate(15deg);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto;
  }
  .career__image-video-wrapper {
    display: flex;
    position: absolute;
    right: clamp(13.5px, 3.6vw, 13.5px);
    top: clamp(-15px, -4vw, -15px);
    width: clamp(90px, 24vw, 106px);
    height: clamp(90px, 24vw, 106px);
    left: auto !important;
    border-radius: 50%;
    overflow: hidden;
    transform: rotate(-15deg);
    z-index: 2;
    pointer-events: auto;
  }
  .career__image-video-player--2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  .career__image-progress--2 {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
  .career__image-video-player {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  .career__image-progress {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
  .career__messages {
    display: none;
  }
}

.numbers {
  position: relative;
  width: 100%;
  background: var(--color-plombir);
  padding: 0;
  overflow: hidden;
}
.numbers__container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 908px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 56px;
  padding-top: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__container {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 64px 16px;
    gap: 40px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__container {
    min-height: clamp(600px, 47.3vw, 908px);
    padding: 0 clamp(40px, 4.9vw, 56px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__container {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 64px 16px;
    gap: 48px;
  }
}
.numbers__stats {
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 402px;
  padding-top: 209.92px;
  position: relative;
  z-index: 2;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__stats {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__stats {
    gap: clamp(48px, 5vw, 96px);
    width: clamp(300px, 20.9vw, 402px);
    padding-top: clamp(100px, 10.9vw, 209.92px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__stats {
    display: none;
  }
}
.numbers__stat {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: auto;
    margin-top: 7px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__stat {
    gap: clamp(20px, 2.1vw, 40px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: auto;
    margin-top: 7px;
  }
}
.numbers__number {
  font-family: "Tovari Sans Bold";
  font-size: 120px;
  font-weight: 700;
  line-height: 0.7;
  color: var(--color-brand);
  margin: 0;
  white-space: nowrap;
  letter-spacing: -2.4px;
  flex-shrink: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__number {
    font-family: "Tovari Sans Bold";
    font-size: 80px;
    font-weight: 700;
    line-height: 0.7;
    letter-spacing: -1.6px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__number {
    font-size: clamp(60px, 6.25vw, 120px);
    letter-spacing: clamp(-1.2px, -0.125vw, -2.4px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__number {
    font-family: "Tovari Sans Bold";
    font-size: 90px;
    font-weight: 700;
    line-height: 0.7;
    letter-spacing: -1.8px;
  }
}
.numbers__text {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
  letter-spacing: -0.6px;
  flex: 1;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__text {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.48px;
    width: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__text {
    font-size: clamp(14px, 1.05vw, 20px);
    letter-spacing: clamp(-0.3px, -0.03vw, -0.6px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__text {
    font-family: "Inter";
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.54px;
    width: 100%;
  }
}
.numbers__swiper-wrapper {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__swiper-wrapper {
    display: flex;
    flex-direction: column;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    order: 3;
    align-items: center;
    gap: 0;
    padding: 5px 0 0 0;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__swiper-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    order: 3;
    align-items: center;
    gap: 0;
    padding: 0;
  }
}
.numbers__mobile-button {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__mobile-button {
    display: flex;
    width: 100%;
    margin-top: 40px;
    justify-content: center;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__mobile-button {
    display: flex;
    width: 100%;
    margin-top: 40px;
    justify-content: center;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__desktop-button {
    display: none;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__desktop-button {
    display: none;
  }
}
.numbers__swiper {
  width: 100%;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
  }
  .numbers__swiper .swiper-slide {
    width: auto;
    height: auto;
    flex-shrink: 0;
    max-width: calc(100vw - 16px);
  }
  .numbers__swiper .swiper-slide:last-child {
    padding-right: 16px;
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
  }
  .numbers__swiper .swiper-slide {
    width: auto;
    height: auto;
    flex-shrink: 0;
  }
}
.numbers__pagination {
  position: static !important;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  transform: none !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
}
.numbers__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-bck);
  border-radius: 6px;
  opacity: 1;
  margin: 0;
  transition: all 0.3s;
}
.numbers__pagination .swiper-pagination-bullet-active {
  background: var(--color-bck);
  position: relative;
}
.numbers__pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--color-choco);
  border-radius: 50%;
}
.numbers__video-wrapper {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1073px;
  height: 908px;
  z-index: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__video-wrapper {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 360px;
    height: 304px;
    order: 2;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__video-wrapper {
    width: clamp(600px, 55.9vw, 1073px);
    height: clamp(400px, 47.3vw, 908px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__video-wrapper {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 500px;
    height: 420px;
    order: 2;
  }
}
.numbers__video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: transparent;
}
.numbers__video-mask-svg {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.numbers__video-mask-svg path {
  shape-rendering: auto;
}
.numbers__video-masked {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(3.827deg) scale(0.81);
  width: 884px;
  height: 780px;
  clip-path: url(#video-mask-path);
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__video-masked {
    position: relative;
    left: auto;
    top: auto;
    transform: rotate(3.827deg) scale(0.81);
    width: 360px;
    height: 304px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__video-masked {
    width: clamp(442px, 46vw, 884px);
    height: clamp(390px, 40.6vw, 780px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__video-masked {
    position: relative;
    left: auto;
    top: auto;
    transform: rotate(3.827deg) scale(0.81);
    width: 500px;
    height: 420px;
  }
}
.numbers__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: rotate(-3.827deg);
  transform-origin: center center;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__video {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__video {
    width: 100%;
    height: 100%;
  }
}
.numbers__video-overlay {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 101.88%);
  pointer-events: none;
  z-index: 2;
}
.numbers__play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 3;
  padding: 0;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__play-button {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__play-button {
    width: clamp(40px, 4.2vw, 80px);
    height: clamp(40px, 4.2vw, 80px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__play-button {
    width: 60px;
    height: 60px;
  }
}
.numbers__play-icon {
  width: 100%;
  height: 100%;
  display: block;
  transition: fill 0.3s ease;
}
.numbers__play-icon circle {
  transition: fill 0.3s ease;
}
.numbers__play-button:hover .numbers__play-icon circle {
  fill: var(--color-yellow);
}
.numbers__about {
  display: flex;
  flex-direction: column;
  gap: 130px;
  width: 440px;
  padding-top: 209.92px;
  position: relative;
  z-index: 2;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__about {
    width: 100%;
    padding-top: 0;
    gap: 16px;
    order: 1;
    align-items: center;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__about {
    gap: clamp(65px, 6.8vw, 130px);
    width: clamp(300px, 22.9vw, 440px);
    padding-top: clamp(100px, 10.9vw, 209.92px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__about {
    width: 100%;
    padding-top: 0;
    gap: 24px;
    order: 1;
    align-items: center;
  }
}
.numbers__about-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__about-header {
    gap: 12px;
    width: 100%;
    align-items: flex-start;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__about-header {
    gap: clamp(20px, 2.1vw, 40px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__about-header {
    gap: 24px;
    width: 100%;
    align-items: flex-start;
  }
}
.numbers__about-title {
  font-family: "Inter";
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-black);
  margin: 0;
  letter-spacing: -1.2px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__about-title {
    font-family: "Inter";
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    width: 100%;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__about-title {
    font-size: clamp(20px, 1.56vw, 30px);
    letter-spacing: clamp(-0.6px, -0.06vw, -1.2px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__about-title {
    font-family: "Inter";
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
    width: 100%;
  }
}
.numbers__about-button {
  display: flex;
  align-items: center;
  background: var(--color-ligth);
  border-radius: 1000px;
  padding: 2px 30px 2px 2px;
  width: max-content;
  cursor: pointer;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__about-button {
    gap: clamp(9px, 0.94vw, 18px);
    padding: clamp(2px, 0.1vw, 2px) clamp(15px, 1.56vw, 30px) clamp(2px, 0.1vw, 2px) clamp(2px, 0.1vw, 2px);
  }
}
.numbers__about-button .accent-button {
  margin: 0;
  flex-shrink: 0;
}
.numbers__about-button-text {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 600;
  line-height: 0.95;
  color: var(--color-black);
  white-space: nowrap;
  letter-spacing: -0.32px;
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__about-button-text {
    font-size: clamp(14px, 0.85vw, 16px);
    letter-spacing: clamp(-0.16px, -0.017vw, -0.32px);
  }
}
.numbers__about-text {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-cacao);
  margin: 0;
  width: 339px;
  letter-spacing: -0.6px;
}
@media (min-width: 360px) and (max-width: 768px) {
  .numbers__about-text {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.48px;
    width: 100%;
    order: 2;
  }
}
@media (min-width: 759px) and (max-width: 1920px) {
  .numbers__about-text {
    font-size: clamp(14px, 1.05vw, 20px);
    width: clamp(250px, 17.7vw, 339px);
    letter-spacing: clamp(-0.3px, -0.03vw, -0.6px);
  }
}
@media (min-width: 759px) and (max-width: 1024px) {
  .numbers__about-text {
    font-family: "Inter";
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.54px;
    width: 100%;
    order: 2;
  }
}

:root {
  box-sizing: border-box;
  font: normal normal 400 16px/1 sans-serif;
}

*,
::before,
::after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
  overscroll-behavior: none;
  padding: 0;
  margin: 0;
}

html,
body {
  height: 100%;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
header,
picture {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border: none;
}

svg:not(:root) {
  overflow: visible;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-font-smoothing: antialiased;
}

hr {
  height: 0;
  overflow: visible;
  box-sizing: content-box;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  line-height: 0;
  font-size: 75%;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
}

table {
  border-collapse: collapse;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/Inter/Inter-Regular.woff") format("woff"), url("../assets/fonts/Inter/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/Inter/Inter-Medium.woff") format("woff"), url("../assets/fonts/Inter/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/Inter/Inter-SemiBold.woff") format("woff"), url("../assets/fonts/Inter/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Tovari Sans Bold";
  src: url("../assets/fonts/Tovari/tovari-sans.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
.page-data {
  display: flex;
  flex-direction: column;
  width: 100%;
}