@font-face {
  font-family: Helvetica;
  src: url('../fonts/Helvetica.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Helvetica;
  src: url('../fonts/Helvetica-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dolce Caffe';
  src: url('../fonts/DolceCaffe-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --main-font: 'Dolce Caffe', sans-serif;
  --second-font: 'Helvetica', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: var(--main-font);
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  min-width: 360px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #181d42;
  background-color: #fffcf9;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}
a:focus {
  outline: 0;
}

button,
input,
label,
select,
textarea {
  font-family: var(--main-font);
  border: none;
}

button {
  border: none;
  outline: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes floatRotate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
.container {
  max-width: 2560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.header {
  padding: 28px 0 23px;
  position: relative;
}
@media (max-width: 1280px) {
  .header {
    padding: 18px 0 0;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
}
@media (max-width: 1280px) {
  .header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
}
.header__logo {
  position: relative;
  z-index: 10;
}
@media (max-width: 1280px) {
  .header__logo {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 110px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: absolute;
  z-index: 10;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 826px;
  width: 100%;
}
@media (max-width: 1600px) {
  .header__nav {
    justify-content: flex-end;
    gap: 45px;
  }
}
@media (max-width: 1280px) {
  .header__nav {
    position: static;
    justify-content: flex-end;
    transform: none;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__link {
  font-size: 32px;
  line-height: 129%;
  color: #fff;
  font-weight: 400;
}
.header__link:hover {
  text-shadow: 0 4px 4px red;
}
@media (max-width: 992px) {
  .header__link {
    font-size: 26px;
  }
}
.header__menu {
  display: none;
}
@media (max-width: 768px) {
  .header__menu {
    display: block;
    padding: 0;
    background: 0 0;
  }
}

.main {
  max-width: 100%;
  overflow-x: hidden;
  background: url(../assets/main-bg-2.png) center/cover no-repeat #fff;
}
@media (max-width: 768px) {
  .main {
    background-image: url(../assets/main-bg-mobile.png);
    background-size: 100% auto;
    background-position: bottom;
  }
}

.footer {
  padding: 83px 0 96px;
  margin-top: -120px;
  background: url(../assets/footer-bg-2.png) center top no-repeat;
  background-size: cover;
}
@media (max-width: 1280px) {
  .footer {
    width: 100%;
    padding: 54px 0 30px;
  }
}
.footer__link,
.footer__material,
.footer__register,
.footer__social {
  font-weight: 400;
  line-height: 129%;
  color: #fff;
}
.footer__align {
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 1280px) {
  .footer__align {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 1280px) {
  .footer .footer__image {
    width: 100%;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 100px;
}
@media (max-width: 1280px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 24px;
  margin-bottom: 24px;
}
@media (max-width: 1280px) {
  .footer__social {
    font-size: 14px;
    gap: 14px;
    margin-bottom: 17px;
  }
}
@media (max-width: 1280px) {
  .footer__social img {
    width: 27px;
  }
}
.footer__register {
  font-size: 24px;
  max-width: 720px;
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 1280px) {
  .footer__register {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.footer__material {
  font-size: 24px;
  margin: 0;
}
@media (max-width: 1280px) {
  .footer__material {
    max-width: 271px;
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.footer__link {
  display: block;
  font-size: 24px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
@media (max-width: 1280px) {
  .footer__link {
    text-align: left;
    font-size: 14px;
  }
}

.header-mobile {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.header-mobile__link {
  font-weight: 400;
  line-height: 129%;
  color: #fff;
}

.header-mobile {
  position: fixed;
  z-index: 1000;
  top: 0;
  background: url(../assets/header-mobile-bg.jpg) center/cover no-repeat #000;
  padding: 18px 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: 0.3s;
  opacity: 0;
}

.header-mobile.active {
  transform: translateX(0);
  opacity: 1;
}

.header-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 221px;
  padding-right: 13px;
}

.header-mobile__close {
  padding: 0;
  background: 0 0;
}

.header-mobile__top .header__logo {
  width: 109px;
}

.header-mobile__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
  width: 100%;
}

.header-mobile__link {
  font-size: 32px;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  margin: 10% auto;
  padding: 20px;
  max-width: 720px;
}

.close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute; /* Позволяет позиционировать элемент */
  top: 10px;
  right: -5px;
}
.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#videoPlayer {
  min-height: 390px;
}

@media (max-width: 768px) {
  #videoPlayer {
    min-height: 190px;
  }
}
.footer__image {
  z-index: 2;
  position: relative;
}

.footer__fruit {
  position: absolute;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.pineapple {
  left: 10%;
  top: 44%;
  z-index: 1;
  animation-name: floatRotate;
  animation-delay: 0.5s;
  max-height: 174px;
}

.raspberry {
  left: 0;
  top: 38%;
  z-index: 1;
  animation-name: float;
  animation-delay: 2s;
}

.cherry {
  left: 0;
  top: 59%;
  z-index: 1;
  animation-name: floatRotate;
  animation-delay: 1.5s;
  max-width: 334px;
}

.orange {
  right: 13%;
  top: 51%;
  animation-name: float;
  animation-delay: 0.7s;
  max-height: 150px;
}

.strawberry {
  right: 14%;
  top: 40%;
  animation-name: floatRotate;
  animation-delay: 1.2s;
}

.currant1 {
  top: 0;
  left: 20%;
  animation-name: float;
  animation-delay: 1s;
}

.currant2 {
  top: -5%;
  left: 35%;
  animation-name: floatRotate;
  animation-delay: 0.1s;
}

.currant3 {
  top: 4%;
  right: 20%;
  animation-name: float;
  animation-delay: 2s;
}

@media (max-width: 992px) {
  .footer__fruit {
    width: 14%;
  }
  .currant1,
  .currant2,
  .currant3 {
    width: 20px;
  }
  .raspberry {
    top: 39%;
  }
  .cherry {
    top: 75%;
    left: 10%;
  }
  .orange {
    top: 75%;
    right: 10%;
  }
}
.roles {
  padding-bottom: 160px;
}
@media (max-width: 1280px) {
  .roles {
    padding-bottom: 144px;
  }
}
.roles__title {
  font-size: 72px;
  text-align: center;
  color: #d11938;
  margin-bottom: 109px;
}
@media (max-width: 1280px) {
  .roles__title {
    font-size: 36px;
    margin-bottom: 37px;
  }
}
.roles__name {
  margin: 0;
  font-size: 36px;
  text-align: center;
  color: #000;
}
@media (max-width: 1280px) {
  .roles__name {
    font-size: 16px;
  }
}
.roles__name,
.roles__title {
  font-weight: 400;
  line-height: 129%;
}
.roles__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px 77px;
  max-width: 1443px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .roles__block {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px 28px;
    max-width: 920px;
  }
}
@media (max-width: 768px) {
  .roles__block {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .roles__block {
    max-width: 320px;
  }
}
.roles__image {
  margin-bottom: 50px;
}
@media (max-width: 1280px) {
  .roles__image {
    margin-bottom: 18px;
  }
}

.story {
  margin-bottom: 200px;
  padding-top: 148px;
}
@media (max-width: 1280px) {
  .story {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .story {
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  .story {
    padding-top: 70px;
  }
}
.story__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 1280px) {
  .story__grid {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .story__grid {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .story__grid {
    gap: 60px;
  }
}
.story__image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 790px;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .story__image {
    flex: 0 1 auto;
  }
}
.story__image .phone__image {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  width: 300px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 992px) {
  .story__image .phone__image {
    width: 240px;
  }
}
@media (max-width: 576px) {
  .story__image .phone__image {
    width: 120px;
  }
}
.story__image .fruits__image {
  position: absolute;
  z-index: 0;
  display: block;
  max-width: 100%;
  width: 790px;
  height: auto;
  transition: transform ease-out 0.5s;
  will-change: transform;
}
@media (max-width: 1280px) {
  .story__image .fruits__image {
    width: 700px;
  }
}
@media (max-width: 992px) {
  .story__image .fruits__image {
    width: 600px;
  }
}
@media (max-width: 768px) {
  .story__image .fruits__image {
    width: 480px;
  }
}
@media (max-width: 576px) {
  .story__image .fruits__image {
    width: 360px;
  }
}
.story__wrapper {
  flex: 0 1 728px;
}
@media (max-width: 1280px) {
  .story__wrapper {
    flex: 0 1 auto;
  }
}
.story__title {
  font-weight: 400;
  font-size: 72px;
  line-height: 129%;
  color: #d11938;
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .story__title {
    margin-bottom: 30px;
    font-size: 60px;
  }
}
@media (max-width: 992px) {
  .story__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .story__title {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .story__title {
    font-size: 36px;
  }
}
.story__text {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 27px;
  line-height: 140%;
  color: #000;
  margin: 0;
}
@media (max-width: 1280px) {
  .story__text {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .story__text {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .story__text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .story__text {
    font-size: 15px;
  }
}

.watch {
  padding: 32px 0 250px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .watch {
    padding: 32px 0 100px;
  }
}
.watch .container {
  position: relative;
}
.watch__controls-prev,
.watch__controls-next {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 25px;
  aspect-ratio: 5/8;
  background: url(../assets/arrow.svg) center/contain no-repeat;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.75));
  cursor: pointer;
}
@media (max-width: 992px) {
  .watch__controls-prev,
  .watch__controls-next {
    width: 16px;
  }
}
.watch__controls-prev.swiper-button-disabled,
.watch__controls-next.swiper-button-disabled {
  opacity: 0;
}
.watch__controls-prev {
  left: 20px;
  transform: translate3d(0, -50%, 0);
}
.watch__controls-next {
  right: 20px;
  transform: translate3d(0, -50%, 0) rotate(180deg);
}
.watch .swiper {
  overflow: visible;
}
.watch .swiper-wrapper {
  align-items: stretch;
  will-change: transform;
}
.watch .swiper-slide {
  height: auto;
}
.watch .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 21px;
  margin-top: 46px;
  display: none;
}
@media (max-width: 992px) {
  .watch .swiper-pagination {
    display: flex;
  }
}
.watch .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 18px !important;
  border-radius: 100%;
  background-color: #720187;
  opacity: 1;
  transition: 0.3s;
}
.watch .swiper-pagination-bullet-active {
  width: 21px;
  height: 21px;
}
.watch__item {
  max-width: 410px;
  width: 100%;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
@media (max-width: 1280px) {
  .watch__item {
    border-radius: 24px;
  }
}
.watch__item:hover {
  transform: translateY(-20px);
}
.watch__item:hover::before {
  opacity: 1;
}
.watch__item:hover::after {
  opacity: 1;
  background-size: cover;
}
.watch__item:hover .watch__hover {
  opacity: 1;
  z-index: 11;
}
.watch__item:hover .watch__main {
  opacity: 0;
}
.watch__item:after,
.watch__item:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.watch__item::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='444' height='768' viewBox='0 0 444 768' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_414_1659)'%3E%3Cellipse cx='137.25' cy='685.812' rx='974.837' ry='516.864' transform='rotate(-36.0789 137.25 685.812)' fill='%2386B236' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_414_1659' x='-1057.6' y='-374.215' width='2389.7' height='2120.05' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix' /%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape' /%3E%3CfeGaussianBlur stdDeviation='175' result='effect1_foregroundBlur_414_1659' /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
  opacity: 0;
  transition: 0.3s;
}
.watch__item::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='410' height='596' viewBox='0 0 410 596' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_414_1564)'%3E%3Cellipse cx='148.556' cy='624.7' rx='377.133' ry='199.958' transform='rotate(-36.0789 148.556 624.7)' fill='%236F952C' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_414_1564' x='-528.289' y='0.0136719' width='1353.69' height='1249.37' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix' /%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape' /%3E%3CfeGaussianBlur stdDeviation='175' result='effect1_foregroundBlur_414_1564' /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
  background-position: bottom;
  transition: 0.3s;
}
.watch__item.second::before {
  background-image: url("data:image/svg+xml,%3Csvg width='444' height='768' viewBox='0 0 444 768' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_414_1634)'%3E%3Cellipse cx='137.25' cy='685.812' rx='974.837' ry='516.864' transform='rotate(-36.0789 137.25 685.812)' fill='%23D11938' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_414_1634' x='-1057.6' y='-374.215' width='2389.7' height='2120.05' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix' /%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape' /%3E%3CfeGaussianBlur stdDeviation='175' result='effect1_foregroundBlur_414_1634' /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}
.watch__item.second::after {
  background-image: url("data:image/svg+xml,%3Csvg width='410' height='596' viewBox='0 0 410 596' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_414_1598)'%3E%3Cellipse cx='148.556' cy='624.7' rx='377.133' ry='199.958' transform='rotate(-36.0789 148.556 624.7)' fill='%23D11938' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_414_1598' x='-528.289' y='0.0136719' width='1353.69' height='1249.37' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix' /%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape' /%3E%3CfeGaussianBlur stdDeviation='175' result='effect1_foregroundBlur_414_1598' /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}
.watch__item.third::before {
  background-image: url("data:image/svg+xml,%3Csvg width='444' height='768' viewBox='0 0 444 768' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_414_1684)'%3E%3Cellipse cx='137.25' cy='685.812' rx='974.837' ry='516.864' transform='rotate(-36.0789 137.25 685.812)' fill='%23720187' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_414_1684' x='-1057.6' y='-374.215' width='2389.7' height='2120.05' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix' /%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape' /%3E%3CfeGaussianBlur stdDeviation='175' result='effect1_foregroundBlur_414_1684' /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}
.watch__item.third::after {
  background-image: url("data:image/svg+xml,%3Csvg width='410' height='596' viewBox='0 0 410 596' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_414_1611)'%3E%3Cellipse cx='148.556' cy='624.7' rx='377.133' ry='199.958' transform='rotate(-36.0789 148.556 624.7)' fill='%23720187' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_414_1611' x='-528.289' y='0.0136719' width='1353.69' height='1249.37' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix' /%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape' /%3E%3CfeGaussianBlur stdDeviation='175' result='effect1_foregroundBlur_414_1611' /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}
.watch__item.fourth::before {
  background-image: url("data:image/svg+xml,%3Csvg width='444' height='768' viewBox='0 0 444 768' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_414_1709)'%3E%3Cellipse cx='137.25' cy='685.812' rx='974.837' ry='516.864' transform='rotate(-36.0789 137.25 685.812)' fill='%23F58117' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_414_1709' x='-1057.6' y='-374.215' width='2389.7' height='2120.05' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix' /%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape' /%3E%3CfeGaussianBlur stdDeviation='175' result='effect1_foregroundBlur_414_1709' /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}
.watch__item.fourth::after {
  background-image: url("data:image/svg+xml,%3Csvg width='410' height='564' viewBox='0 0 410 564' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_414_1536)'%3E%3Cellipse cx='148.555' cy='592.7' rx='332.425' ry='176.253' transform='rotate(-36.0789 148.555 592.7)' fill='%23F58117' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_414_1536' x='-489.543' y='0.577148' width='1276.2' height='1184.25' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix' /%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape' /%3E%3CfeGaussianBlur stdDeviation='175' result='effect1_foregroundBlur_414_1536' /%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}
.watch__main {
  position: relative;
  z-index: 10;
  padding: 24px;
  transition: 0.3s;
}
@media (max-width: 1280px) {
  .watch__main {
    padding: 15px 13px 32px;
  }
}
.watch__top {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  margin-bottom: 250px;
  transition: 0.3s;
}
@media (max-width: 1280px) {
  .watch__top {
    gap: 6px;
  }
}
.watch__title {
  font-weight: 400;
  font-size: 72px;
  line-height: 129%;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
.watch__title__small {
  font-weight: 400;
  font-size: 30px;
  line-height: 129%;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1280px) {
  .watch__title {
    font-size: 40px;
  }
}
.watch__align {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
@media (max-width: 1280px) {
  .watch__align {
    margin-bottom: 30px;
  }
}
.watch__suptitle {
  font-family: var(--second-font);
  font-weight: 700;
  font-size: 27px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  margin-bottom: 31px;
}
@media (max-width: 1280px) {
  .watch__suptitle {
    font-size: 15px;
    margin-bottom: 27px;
  }
}
.watch__caption {
  font-weight: 400;
  font-size: 48px;
  line-height: 129%;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media (max-width: 1280px) {
  .watch__caption {
    font-size: 26px;
    padding: 0 15px;
  }
}
.watch__description {
  font-family: var(--second-font);
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
}
@media (max-width: 1280px) {
  .watch__description {
    font-size: 20px;
    font-size: 15px;
  }
}
.watch__bottom {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 32px;
  font-weight: 400;
  line-height: 129%;
  color: #fff;
}
@media (max-width: 1280px) {
  .watch__bottom {
    font-size: 26px;
    gap: 14px;
  }
}
@media (max-width: 1280px) {
  .watch__bottom img {
    width: 54px;
  }
}
.watch__hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 1280px) {
  .watch__hover {
    padding: 20px 16px 30px;
  }
}
.watch__hover .watch__top {
  display: none;
}
.watch__hover .watch__caption {
  margin-bottom: 30px;
}
@media (max-width: 1280px) {
  .watch__hover .watch__battery,
  .watch__hover .watch__lines {
    display: none;
  }
}
@media (max-width: 1280px) {
  .watch__hover .watch__align {
    margin-bottom: 0;
  }
}
@media (max-width: 1280px) {
  .watch__hover .watch__suptitle {
    margin-bottom: 16px;
  }
}
.watch__first {
  display: flex;
  align-items: center;
}
.watch__close {
  padding: 0;
  background: 0 0;
  display: none;
}
@media (max-width: 1280px) {
  .watch__close {
    display: block;
  }
}
@media (max-width: 1280px) {
  .watch__play img {
    width: 70px;
  }
}
@media (max-width: 1280px) {
  .watch__lines {
    width: 16px;
  }
}
@media (max-width: 1280px) {
  .watch__battery {
    width: 24px;
  }
}

.hero {
  padding-bottom: 100px;
  background: url(../assets/hero-bg-purple-2.webp) top right/cover no-repeat #000;
}
@media (max-width: 1280px) {
  .hero {
    padding-bottom: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
  }
}
@media (max-width: 992px) {
  .hero {
    padding-bottom: 60px;
    background: url(../assets/hero-bg-mobile.jpg) top/100% no-repeat;
  }
}

.intro {
  padding-top: 84px;
}
@media (max-width: 1280px) {
  .intro {
    padding-top: 300px;
  }
}
@media (max-width: 992px) {
  .intro {
    padding-top: 680px;
  }
}
@media (max-width: 768px) {
  .intro {
    padding-top: 500px;
  }
}
@media (max-width: 576px) {
  .intro {
    padding-top: 300px;
  }
}
.intro__image {
  margin-bottom: 64px;
}
@media (max-width: 1600px) {
  .intro__image {
    width: 320px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1280px) {
  .intro__image {
    width: 220px;
  }
}
@media (max-width: 576px) {
  .intro__image {
    width: 200px;
    margin-bottom: 16px;
  }
}
.intro__flex {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 19px;
}
@media (max-width: 1600px) {
  .intro__flex {
    gap: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 992px) {
  .intro__flex {
    gap: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .intro__flex {
    gap: 10px;
  }
}
.intro__tag {
  font-size: 32px;
  color: #ffffff;
}
@media (max-width: 1600px) {
  .intro__tag {
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  .intro__tag {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .intro__tag {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .intro__tag {
    font-size: 16px;
  }
}
.intro__dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #ffffff;
}
@media (max-width: 1600px) {
  .intro__dot {
    width: 6px;
    height: 6px;
  }
}
.intro__rating {
  display: flex;
  justify-content: center;
  padding: 10px 5px 10px 12px;
  font-size: 32px;
  line-height: 110%;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  border: 2px solid #fff;
  border-radius: 12px;
}
@media (max-width: 1600px) {
  .intro__rating {
    padding: 6px 4px 4px 8px;
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  .intro__rating {
    font-size: 20px;
    border-radius: 6px;
  }
}
@media (max-width: 992px) {
  .intro__rating {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .intro__rating {
    font-size: 16px;
  }
}
.intro__description {
  max-width: 640px;
  width: 100%;
  margin-bottom: 60px;
  font-family: var(--second-font);
  font-size: 27px;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
}
@media (max-width: 1600px) {
  .intro__description {
    max-width: 420px;
    font-size: 16px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1280px) {
  .intro__description {
    max-width: 330px;
  }
}
@media (max-width: 992px) {
  .intro__description {
    max-width: 640px;
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .intro__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.intro__watch {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 43px 60px 41px 36px;
  color: #ffffff;
  font-size: 32px;
  line-height: 110%;
  border-radius: 86px;
  background: #d11938;
}
@media (max-width: 1600px) {
  .intro__watch {
    padding: 20px 32px;
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .intro__watch {
    padding: 16px 24px;
    font-size: 16px;
  }
}
@media (max-width: 1600px) {
  .intro__watch img {
    width: 16px;
  }
}
