@charset "UTF-8";
:root {
  --font-family: "Jeko-Bold", sans-serif;
  --black-family: "Jeko-Black", sans-serif;
  --semibold-family: "Jeko-SemiBold", sans-serif;
  --light-family: "Jeko-Light", sans-serif;
  --second-family: "Leonov SP", sans-serif;
  --third-family: "Inter", sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --white-color: #fff;
  --main: #C3107B;
  --second: #92B93B;
  --gray: #7E868E;
  --body-bg: #f8f8f8;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Regular.otf");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Jeko-Bold";
  src: url("../fonts//jeko-bold.ttf");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Jeko-Black";
  src: url("../fonts//jeko-black.ttf");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Jeko-SemiBold";
  src: url("../fonts//jeko-semi-bold.ttf");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Jeko-Light";
  src: url("../fonts//jeko-light.ttf");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Leonov SP";
  src: url("../fonts//LeonovSP.otf");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:not([class]) {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media screen and (pointer: fine) {
  html {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
  }
}
body,
html {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

body {
  background-color: var(--body-bg);
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  position: relative;
  width: 100%;
  max-width: 115rem;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 576px) {
  .container {
    padding: 0 2rem;
  }
}

.site-container {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

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

a {
  text-decoration: none;
  color: unset;
}

.hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Victor Mono", sans-serif;
}
.btn-reset:focus-visible {
  outline: none;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}
.input-reset:focus-visible {
  outline: none;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  overflow-x: hidden;
  overflow-y: scroll;
}

.display-none {
  display: none !important;
}

.title {
  font-size: 4.8rem;
  text-transform: uppercase;
  color: var(--main);
}
@media (max-width: 576px) {
  .title {
    font-size: 2.6rem;
  }
}

.btn {
  background-color: var(--second);
  color: var(--white-color);
  padding: 1.5rem 4.5rem;
  border-radius: 3rem;
  font-family: var(--semibold-family);
  font-size: 1.8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

input {
  outline: none;
}

textarea {
  outline: none;
}

section {
  scroll-margin-block: 3rem;
}

html {
  --refRes: 1350;
  font-size: calc(100vw / var(--refRes) * 10);
}
@media (max-width: 530px) {
  html {
    --refRes: 390 !important;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 2.3rem 0;
  z-index: 100;
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  width: 10rem;
  height: 4.8rem;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10rem;
}
@media (max-width: 576px) {
  .header__menu {
    display: none;
  }
}
.header__menu-item {
  font-size: 1.6rem;
  color: var(--white-color);
  font-family: var(--black-family);
  text-transform: uppercase;
}
.header__burger {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background-color: var(--white-color);
}
.header__burger.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.header__burger-btn {
  position: relative;
  width: 2.5rem;
  height: 2rem;
  display: none;
}
@media (max-width: 576px) {
  .header__burger-btn {
    display: block;
  }
}
.header__burger-btn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white-color);
  right: 0;
}
.header__burger-btn span:nth-child(1) {
  top: 0;
}
.header__burger-btn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.header__burger-btn span:nth-child(3) {
  width: 60%;
  bottom: 0;
}
.header__burger-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2.3rem 2rem;
}
.header__burger-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5rem;
  padding-top: 10rem;
}
.header__burger-link {
  display: block;
  font-family: var(--semibold-family);
  font-size: 2.4rem;
  text-transform: uppercase;
  text-align: center;
}

.footer {
  margin-top: 7rem;
}
@media (max-width: 576px) {
  .footer {
    margin-top: 5rem;
  }
}
.footer__warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  width: 73.2rem;
  margin: 0 auto;
  margin-bottom: 6.4rem;
}
@media (max-width: 576px) {
  .footer__warning {
    width: 100%;
    margin-bottom: 4.8rem;
  }
}
.footer__warning p {
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  color: var(--gray);
}
.footer__main {
  background-color: var(--second);
  font-family: var(--third-family);
  color: var(--white-color);
  padding: 3.6rem 0;
  font-size: 1.2rem;
}
.footer__main-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .footer__main-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.3rem;
  }
}
.footer__main-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 576px) {
  .footer__main-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.8rem;
  }
}
.footer__main-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}
.footer__telegram a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.footer__design-text {
  opacity: 0.44;
}
.footer__design-logo {
  width: 5rem;
  height: 2.6rem;
}

.main-banner {
  height: 65rem;
}
@media (max-width: 576px) {
  .main-banner {
    height: 80.4rem;
  }
}
.main-banner_wrapper {
  position: relative;
  height: 100%;
}
.main-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 576px) {
  .main-banner__bg {
    display: none;
  }
}
.main-banner__bg_mobile {
  display: none;
}
@media (max-width: 576px) {
  .main-banner__bg_mobile {
    display: block;
  }
}
.main-banner__text {
  padding-top: 18.4rem;
  color: var(--white-color);
  font-family: var(--second-family);
  max-width: 45rem;
}
@media (max-width: 576px) {
  .main-banner__text {
    padding-top: 25.9rem;
    max-width: 33.5rem;
  }
}
.main-banner__text-title {
  font-size: 4.4rem;
  margin-bottom: 3.7rem;
}
@media (max-width: 576px) {
  .main-banner__text-title {
    font-size: 3.4rem;
    text-align: center;
    margin-bottom: 2.2rem;
  }
}
.main-banner__text-slogan {
  font-size: 3.4rem;
}
@media (max-width: 576px) {
  .main-banner__text-slogan {
    font-size: 2.6rem;
    text-align: center;
  }
}
.main-banner__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  height: 100%;
}
.main-banner__bottom_wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 7.3rem;
  background-color: var(--main);
}
.main-banner__bottom-icon {
  width: 100%;
  height: 100%;
}
.main-banner__bottom-text {
  font-family: var(--second-family);
  font-size: 2.4rem;
  color: var(--white-color);
}
.main-banner__bottom-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto !important;
}
.main-banner__bottom-item_image {
  width: 3rem;
  height: 5rem;
}

.advantage {
  margin-top: 9.1rem;
}
@media (max-width: 576px) {
  .advantage {
    margin-top: 6.1rem;
    height: 53.2rem;
  }
}
.advantage__title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.advantage__description {
  font-size: 1.4rem;
  text-align: center;
  color: var(--gray);
  margin-bottom: 8.5rem;
}
@media (max-width: 576px) {
  .advantage__description {
    margin-bottom: 2.5rem;
  }
}
.advantage__blot {
  position: absolute;
  top: 5.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 55.9rem;
  height: 60.3rem;
}
@media (max-width: 576px) {
  .advantage__blot {
    display: none;
  }
}
.advantage__bottle {
  position: absolute;
  width: 32.9rem;
  height: 41.7rem;
  top: 16rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 576px) {
  .advantage__bottle {
    display: none;
  }
}
.advantage__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .advantage__row {
    display: none;
  }
}
.advantage__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4.4rem;
}
.advantage__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.advantage__item:nth-child(2) {
  margin-left: 1rem;
}
.advantage__item:nth-child(3) {
  margin-left: 3rem;
}
.advantage__item-content {
  width: 28.3rem;
}
.advantage__item-title {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--second);
  text-align: right;
  margin-bottom: 1rem;
}
.advantage__item-description {
  font-size: 1.4rem;
  text-align: right;
  color: var(--gray);
}
.advantage__item-icon {
  width: 5rem;
  height: 6.3rem;
  -o-object-fit: fill;
  object-fit: fill;
}
.advantage__column.right .advantage__item-title {
  text-align: left;
}
.advantage__column.right .advantage__item-description {
  text-align: left;
}
.advantage__column.right .advantage__item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.advantage__column.right .advantage__item:nth-child(2) {
  margin-right: 1rem;
  margin-left: 0;
}
.advantage__column.right .advantage__item:nth-child(3) {
  margin-right: 3rem;
  margin-left: 0;
}
.advantage__mobile {
  position: relative;
  display: none;
}
@media (max-width: 576px) {
  .advantage__mobile {
    display: block;
  }
}
.advantage__mobile .advantage__blot {
  display: block;
  position: absolute;
  top: -8rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 100%;
  height: 50rem;
}
.advantage__mobile .advantage__bottle {
  display: block;
  position: absolute;
  top: 0rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 27.2rem;
  height: 34.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.advantage__mobile-item {
  position: absolute;
  width: 3.9rem;
  height: 5rem;
  padding-top: 1.1rem;
}
.advantage__mobile-item:nth-of-type(1) {
  top: 4rem;
  left: 9rem;
}
.advantage__mobile-item:nth-of-type(2) {
  top: 11.5rem;
  left: 4rem;
}
.advantage__mobile-item:nth-of-type(3) {
  top: 27rem;
  left: 4.5rem;
}
.advantage__mobile-item:nth-of-type(4) {
  top: 3rem;
  right: 5.5rem;
}
.advantage__mobile-item:nth-of-type(5) {
  top: 14rem;
  right: 5rem;
}
.advantage__mobile-item:nth-of-type(6) {
  top: 25.5rem;
  right: 7rem;
}
.advantage__mobile-item.active p {
  color: var(--second);
}
.advantage__mobile-item p {
  position: relative;
  text-align: center;
  font-family: var(--black-family);
  color: var(--gray);
  font-size: 1.8rem;
  z-index: 2;
}
.advantage__mobile-item_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.advantage__mobile-content {
  position: absolute;
  top: 9.5rem;
  left: 9rem;
  background-color: var(--white-color);
  padding: 1rem 1.7rem 1.3rem 1rem;
  border-radius: 1rem;
  font-family: var(--semibold-family);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7rem;
  width: 15.4rem;
  z-index: 5;
}
.advantage__mobile-content-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.advantage__mobile-content-title {
  font-size: 1.2rem;
  color: var(--second);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.advantage__mobile-content-description {
  font-size: 1.2rem;
  color: var(--gray);
}

.tastes {
  margin-top: 14rem;
}
@media (max-width: 576px) {
  .tastes {
    margin-top: 6rem;
  }
}
.tastes__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .tastes__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    gap: 3rem;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    margin-bottom: 3rem;
  }
}
.tastes__filters {
  background-color: #EDEDED;
  border-radius: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
@media (max-width: 576px) {
  .tastes__filters {
    width: 100%;
    height: 5rem;
  }
}
.tastes__filters-item {
  padding: 1.4rem 7.5rem;
  font-size: 1.8rem;
  color: black;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 10rem;
}
@media (max-width: 576px) {
  .tastes__filters-item {
    padding: 0;
    width: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.tastes__filters-item.active {
  color: var(--white-color);
  opacity: 1;
  background-color: var(--main);
}
.tastes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.6rem;
}
@media (max-width: 576px) {
  .tastes__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    gap: 1.5rem;
  }
}
.tastes__card {
  width: 26.7rem;
  min-height: 44.8rem;
  background-color: #EDEDED;
  border-radius: 3rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .tastes__card {
    width: 100%;
    min-height: 30rem;
  }
}
.tastes__card_hidden {
  display: none;
}
.tastes__card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
  opacity: 0.1;
}
.tastes__card-bottle {
  width: 22rem;
  height: 22rem;
  position: absolute;
  top: 0.7rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -o-object-fit: contain;
  object-fit: contain;
}
.tastes__card-content {
  position: relative;
  background-color: var(--white-color);
  border-radius: 3rem;
  padding: 2rem;
  z-index: 2;
  min-height: 28.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 16.4rem;
}
@media (max-width: 576px) {
  .tastes__card-content {
    min-height: 13.6rem;
  }
}
.tastes__card-name {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.tastes__card-description {
  font-family: var(--light-family);
  font-size: 1.6rem;
}
@media (max-width: 576px) {
  .tastes__card-description_desk {
    display: none;
  }
}
.tastes__card-description-mobile {
  display: none;
}
@media (max-width: 576px) {
  .tastes__card-description-mobile {
    display: block;
  }
}
.tastes__card-description-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
}
.tastes__card-description-head-text {
  font-family: var(--semibold-family);
  font-size: 1.6rem;
}
.tastes__card-description-head-arrow {
  width: 1.4rem;
  height: 0.8rem;
}
.tastes__card-description-head.active .tastes__card-description-head-arrow {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.tastes__card-description-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
  overflow: hidden;
}
.tastes__card-description-content.active {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.tastes__card-description-content-wrapper {
  min-height: 0;
}
.tastes__card-description-content-text {
  font-family: var(--light-family);
  font-size: 1.4rem;
  padding-top: 1rem;
}
.tastes__card-parameters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1rem;
}
@media (max-width: 576px) {
  .tastes__card-parameters {
    margin-top: 1.4rem;
  }
}
.tastes__card-parameters-item {
  font-size: --semibold-family/10rem;
  font-size: 1.2rem;
  color: var(--white-color);
  padding: 0.6rem 1rem;
  background-color: var(--main);
  border-radius: 1.5rem;
}
.tastes__more {
  margin: 0 auto;
  margin-top: 4rem;
  width: 21.8rem;
}

.tastes-banner {
  margin-top: 9rem;
}
@media (max-width: 576px) {
  .tastes-banner {
    margin-top: 6rem;
  }
}
.tastes-banner__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 576px) {
  .tastes-banner__description {
    margin-bottom: 3rem;
  }
}
.tastes-banner__description p {
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  color: var(--gray);
}
.tastes-banner__banner {
  position: relative;
  background-color: black;
  border-radius: 3rem;
  width: 100%;
  height: 36rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .tastes-banner__banner {
    height: 40.5rem;
  }
}
.tastes-banner__banner-blot {
  width: 60.1rem;
  height: 36rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .tastes-banner__banner-blot {
    height: 23.3rem;
  }
}
.tastes-banner__banner-crown {
  width: 8.9rem;
  height: 10.9rem;
  position: absolute;
  top: 5.3rem;
  left: 7.3rem;
}
@media (max-width: 576px) {
  .tastes-banner__banner-crown {
    width: 5.3rem;
    height: 6.5rem;
    top: 2.5rem;
    left: 2.1rem;
  }
}
.tastes-banner__banner-lightning {
  width: 8.4rem;
  height: 11.8rem;
  position: absolute;
  top: 21.8rem;
  right: 6.8rem;
}
@media (max-width: 576px) {
  .tastes-banner__banner-lightning {
    width: 5rem;
    height: 7rem;
    top: unset;
    bottom: 2.3rem;
    right: 1.5rem;
  }
}
.tastes-banner__banner-title {
  position: relative;
  font-size: 4.6rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 2rem;
  z-index: 3;
}
@media (max-width: 576px) {
  .tastes-banner__banner-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}
.tastes-banner__banner-description {
  position: relative;
  font-family: var(--second-family);
  font-size: 4.8rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
  z-index: 3;
}
@media (max-width: 576px) {
  .tastes-banner__banner-description {
    font-size: 2.4rem;
  }
}

.form {
  margin-top: 9rem;
}
@media (max-width: 576px) {
  .form {
    margin-top: 6rem;
  }
}
.form__title {
  max-width: 42.4rem;
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .form__title {
    margin-bottom: 4.6rem;
  }
}
.form__inputs {
  background-color: var(--white-color);
  border-radius: 3rem;
  padding: 3.9rem 4.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}
@media (max-width: 576px) {
  .form__inputs {
    padding: 2.5rem 2.3rem;
  }
}
.form__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 16rem 1fr;
  grid-template-columns: 16rem 1fr;
  gap: 3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    width: 100%;
  }
}
.form__item-label {
  font-family: var(--semibold-family);
  font-size: 1.8rem;
}
@media (max-width: 576px) {
  .form__item-label {
    font-size: 1.6rem;
  }
}
.form__item-input {
  width: 32.1rem;
  height: 4.4rem;
  border-radius: 2rem;
  padding: 1.2rem 2rem;
  background-color: #ededed;
  border: none;
  font-family: var(--light-family);
  font-size: 1.6rem;
}
@media (max-width: 576px) {
  .form__item-input {
    width: 100%;
    height: 4.1rem;
    font-size: 1.4rem;
    border-radius: 1.5rem;
    padding: 1.2rem 1.5rem;
  }
}
.form__item-input_wrapper {
  position: relative;
}
.form__item-review {
  width: 86.2rem;
  height: 17rem;
  border-radius: 2rem;
  padding: 1.5rem 2rem;
  background-color: #ededed;
  border: none;
  font-family: var(--light-family);
  font-size: 1.6rem;
  resize: none;
}
@media (max-width: 576px) {
  .form__item-review {
    width: 100%;
    height: 14.7rem;
    font-size: 1.4rem;
    border-radius: 1.5rem;
    padding: 1.2rem 1.5rem;
  }
}
.form__btn {
  width: 20rem;
  height: 5.2rem;
  margin: 0 auto;
  margin-top: 3.3rem;
}

.custom-select {
  position: relative;
  font-family: var(--light-family);
  font-size: 1.6rem;
}
@media (max-width: 576px) {
  .custom-select {
    font-size: 1.4rem;
  }
}

.select-header {
  width: 32.1rem;
  height: 4.4rem;
  background-color: #ededed;
  border-radius: 2rem;
  padding: 1.2rem 2rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .select-header {
    width: 100%;
    height: 4.1rem;
    border-radius: 1.5rem;
  }
}

.selected-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrow {
  width: 1.4rem;
  height: 0.7rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 1rem;
  margin-top: 0.5rem;
  padding: 0;
  list-style: none;
  display: none;
  z-index: 100;
  max-height: 20rem;
  overflow-y: auto;
}

.select-options li {
  padding: 1rem 1.5rem;
  cursor: pointer;
}

.select-options li:hover {
  background-color: #f0f0f0;
}

.custom-select.active .select-options {
  display: block;
}

.custom-select.active .arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.custom-checkbox {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 3.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: var(--light-family);
  font-size: 1.6rem;
}
.custom-checkbox a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--main);
}

/* Скрываем стандартный чекбокс */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Создаём кастомный чекбокс */
.checkmark {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  border: 0.2rem solid var(--second);
  border-radius: 0.5rem; /* Скругление углов */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Когда чекбокс отмечен */
/* Создаём галочку (скрытую по умолчанию) */
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

/* Показываем галочку при выбранном чекбоксе */
.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

/* Стиль галочки */
.custom-checkbox .checkmark::after {
  left: 0.6rem;
  top: 0.2rem;
  width: 0.7rem;
  height: 1.4rem;
  border: solid var(--second);
  border-width: 0 0.2rem 0.2rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .custom-checkbox .checkmark::after {
    top: 0.2rem;
    left: 0.7rem;
  }
}
@media (max-width: 576px) {
  .custom-checkbox .checkmark::after {
    left: 0.6rem;
    top: 0.2rem;
  }
}

.error-message {
  color: #ff0000;
  font-family: var(--semibold-family);
  font-size: 12px;
  white-space: nowrap;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.success-message {
  color: var(--second);
  font-size: 16px;
  text-align: center;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
/*# sourceMappingURL=main.css.map */