@charset "UTF-8";
:root {
  --f-body: "Gilroy";
  --c-white: #ffffff;
  --c-white-rgb: 255, 255, 255;
  --c-yellow: #fcc92e;
  --c-yellow-l: #fffaeb;
  --c-dark: #222222;
  --c-dark-2: #273048;
}

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Black"), local("Gilroy-Black"), url("../fonts/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Extrabold"), local("Gilroy-Extrabold"), url("../fonts/Gilroy-Extrabold.woff2") format("woff2"), url("../fonts/Gilroy-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Semibold"), local("Gilroy-Semibold"), url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Vasek";
  src: local("Vasek"), local("Vasek-Italic"), url("../fonts/Vasek-Italic.woff2") format("woff2"), url("../fonts/Vasek-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--f-body);
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: 500;
  color: var(--c-dark);
  overflow-x: hidden;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  font-family: inherit;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: inherit;
}
@media (min-width: 1200px) {
  li {
    margin-bottom: 16px;
    padding-left: 34px;
  }
}
li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--c-yellow);
  border-radius: 50%;
}
@media (min-width: 1200px) {
  li::before {
    width: 18px;
    height: 18px;
  }
}

a {
  font-family: inherit;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: inherit;
  color: var(--c-white);
  text-decoration: none;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-family: var(--f-body);
  font-weight: 800;
  color: var(--c-dark-2);
}

h1 span, h2 span, h3 span {
  color: var(--c-yellow);
}

h1 {
  font-size: clamp(28px, 5vw, 72px);
  line-height: 95%;
}

h2 {
  font-size: clamp(28px, 3.35vw, 48px);
}

h3 {
  font-size: clamp(22px, 1vw, 36px);
}

p {
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1200px) {
  .menu__list {
    flex-direction: row;
    gap: 40px;
  }
}

.contact {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  /*justify-content: space-between;*/
  align-items: center;
}

.contact-link {
  display: block;
}

.contact-link span {
  display: block;
  font-family: inherit;
  font-size: 12px;
  color: rgba(var(--c-white-rgb), 0.4);
}

.button {
  width: max-content;
  display: block;
  color: var(--c-dark);
  background-color: var(--c-yellow);
  border-radius: clamp(8px, 1vw, 12px);
  border: none;
  cursor: pointer;
}

.header {
  max-width: 1392px;
  margin: 0 10px;
  padding-top: 102px;
  padding-bottom: 163px;
  background-color: var(--c-yellow-l);
  background-image: url("../images/bg_header.png");
  background-position: right top 165px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
}
@media (min-width: 1200px) {
  .header {
    margin: 0 24px;
    padding-top: 126px;
    padding-bottom: 134px;
    border-radius: 32px;
  }
}
@media (min-width: 1440px) {
  .header {
    margin: 0 auto;
  }
}

.header__bar {
  max-width: 1180px;
  margin-bottom: clamp(32px, 4.2vw, 56px);
  padding: 12px 16px;
  position: fixed;
  top: 0;
  left: 10px;
  right: 10px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: var(--c-dark-2);
  border-radius: 0 0 20px 20px;
}
@media (min-width: 1200px) {
  .header__bar {
    margin: 0 auto clamp(32px, 4.2vw, 56px);
    padding: 14px 24px;
    left: 24px;
    right: 24px;
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
}

.header__animation {
  width: 100%;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  max-height: 0;
  transition: all 0.75s ease;
}
@media (min-width: 1200px) {
  .header__animation {
    max-height: unset;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 56px;
  }
}

.header__bar:has(.open-menu:checked) .header__animation {
  max-height: 300px;
  margin-top: 12px;
  transition: max-height margin-top 1s ease;
}

.header__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__open-menu {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--c-yellow);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 5C3 4.44772 3.44772 4 4 4H16C16.5523 4 17 4.44772 17 5C17 5.55228 16.5523 6 16 6H4C3.44772 6 3 5.55228 3 5Z' fill='%23111827' /%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3 10C3 9.44772 3.44772 9 4 9H16C16.5523 9 17 9.44772 17 10C17 10.5523 16.5523 11 16 11H4C3.44772 11 3 10.5523 3 10Z' fill='%23111827' /%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 15C9 14.4477 9.44772 14 10 14H16C16.5523 14 17 14.4477 17 15C17 15.5523 16.5523 16 16 16H10C9.44772 16 9 15.5523 9 15Z' fill='%23111827' /%3E%3C/svg%3E");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}
@media (min-width: 1200px) {
  .header__open-menu {
    display: none;
  }
}

.header__bar:has(.open-menu:checked) .header__open-menu {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683418 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683418 10.0976 1.31658 9.70711 1.70711L6.41421 5L9.70711 8.29289C10.0976 8.68342 10.0976 9.31658 9.70711 9.70711C9.31658 10.0976 8.68342 10.0976 8.29289 9.70711L5 6.41421L1.70711 9.70711C1.31658 10.0976 0.683418 10.0976 0.292893 9.70711C-0.0976311 9.31658 -0.0976311 8.68342 0.292893 8.29289L3.58579 5L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='%23273048'/%3E%3C/svg%3E");
  background-size: 10px;
}

.header__entry {
  max-width: 1180px;
  margin: 0 clamp(16px, 4vw, 106px) clamp(32px, 3.35vw, 48px);
}
@media (min-width: 1200px) {
  .header__entry {
    margin-right: auto;
    margin-left: auto;
  }
}

.header__title {
  margin-bottom: clamp(16px, 3.35vw, 40px);
}

.header__entry-button {
  padding: clamp(19px, 2.25vw, 27px) clamp(28px, 5vw, 57px);
  position: relative;
}
.header__entry-button::after {
  content: "Работаем только \aс ведущими пивоварнями";
  white-space: pre;
  position: absolute;
  top: -23px;
  left: calc(100% + 18px);
  font-family: "Vasek", serif;
  font-size: clamp(28px, 5.4vw, 64px);
  font-style: italic;
  transform: rotate(-15deg);
}
@media (min-width: 1200px) {
  .header__entry-button::after {
    top: -5px;
    left: calc(100% + 32px);
  }
}

.header:has(input:checked) .header__bar {
  z-index: 20;
}

.service {
  padding-top: 15px;
  max-width: 1392px;
  margin: 0 auto clamp(60px, 8.5vw, 120px);
}

.service__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, clamp(138px, 22.42vw, 280px));
  grid-auto-rows: 1fr;
  justify-content: center;
  gap: 16px;
}

.service__item {
  padding: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  background-color: var(--c-yellow-l);
  border-radius: 16px;
}
@media (min-width: 1200px) {
  .service__item {
    border-radius: 0 0 16px 16px;
    flex-wrap: nowrap;
    align-items: center;
  }
}

.service__img {
  width: clamp(42px, 4.7vw, 56px);
  height: clamp(42px, 4.7vw, 56px);
  flex-shrink: 0;
}

.service__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.service__entry {
  font-size: clamp(12px, 1.5vw, 16px);
  text-align: center;
}
@media (min-width: 1200px) {
  .service__entry {
    text-align: left;
  }
}

.price {
  max-width: 1392px;
  margin: 0 10px clamp(60px, 8.5vw, 120px);
  padding: clamp(40px, 6.68vw, 80px) 0;
  font-size: clamp(14px, 1.5vw, 18px);
  background-color: var(--c-yellow-l);
  background-image: url("../images/bg_price.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
}
@media (min-width: 1200px) {
  .price {
    margin: 0 24px clamp(60px, 8.5vw, 120px);
    border-radius: 32px;
  }
}
@media (min-width: 1440px) {
  .price {
    margin: 0 auto clamp(60px, 8.5vw, 120px);
  }
}

.price__header {
  max-width: 1180px;
  margin: 0 clamp(16px, 4vw, 106px) clamp(32px, 3.35vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1200px) {
  .price__header {
    margin-right: auto;
    margin-left: auto;
  }
}

.price__title {
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .price__title {
    margin-bottom: 18px;
  }
}

.price__header-button {
  display: none;
}
@media (min-width: 1200px) {
  .price__header-button {
    width: max-content;
    padding: 27px 40px;
    display: block;
    border: 2px solid var(--c-yellow);
    border-radius: 12px;
  }
}

.price__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 380px));
  grid-auto-rows: 1fr;
  justify-content: center;
  justify-items: center;
  row-gap: clamp(24px, 3.1vw, 40px);
  column-gap: 20px;
}

.price__item {
  width: clamp(300px, 31.667vw, 380px);
  height: clamp(95px, 11vw, 130px);
  position: relative;
  border-radius: 16px;
  background-color: var(--c-dark-2);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--c-white);
}

.price__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(95px, 9.92vw, 133px);
  height: clamp(119px, 14vw, 167px);
  left: clamp(12px, 1.4vw, 16px);
}

.price__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price__entry {
  margin: clamp(10px, 2vw, 14px) 0 10px clamp(123px, 11.5vw, 159px);
}

.price__name {
  display: block;
  margin-bottom: clamp(6px, calc(4px + 0.6vw), 12px);
}

.price__button {
  padding: clamp(13px, 1vw, 16px) clamp(12px, 1vw, 14px);
  font-size: clamp(12px, 1.5vw, 16px);
}

.vendor {
  max-width: 1392px;
  margin: 0 10px clamp(60px, 8.5vw, 120px);
  padding: clamp(40px, 6.68vw, 80px) 0;
  background-color: var(--c-yellow-l);
  background-image: url("../images/bg_vendor_zip.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
}
@media (min-width: 1200px) {
  .vendor {
    margin: 0 24px clamp(60px, 8.5vw, 120px);
    border-radius: 32px;
  }
}
@media (min-width: 1440px) {
  .vendor {
    margin: 0 auto clamp(60px, 8.5vw, 120px);
  }
}

.vendor__header {
  max-width: 1180px;
  margin: 0 clamp(16px, 4vw, 106px) clamp(32px, 3.35vw, 48px);
}
@media (min-width: 1200px) {
  .vendor__header {
    margin-right: auto;
    margin-left: auto;
  }
}

.vendor__list {
  max-width: 1180px;
  margin: 0 16px;
  /*display: grid;*/
  flex-wrap: wrap;
  display: flex;
  grid-template-columns: repeat(auto-fill, clamp(146px, 14.6vw, 180px));
  grid-auto-rows: 1fr;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 20px);
}
@media (min-width: 1200px) {
  .vendor__list {
    margin-right: auto;
    margin-left: auto;
  }
}

.vendor__item {
  border-radius: 16px;
  background-color: var(--c-white);
  overflow: hidden;
}

.vendor__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.draft {
  max-width: 1392px;
  margin: 0 10px clamp(60px, 8.5vw, 120px);
  padding: clamp(40px, 6.68vw, 80px) clamp(16px, 4vw, 106px) 240px;
  position: relative;
  background-color: var(--c-yellow-l);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .draft {
    margin: 0 24px clamp(60px, 8.5vw, 120px);
    padding-bottom: 80px;
    padding-right: 106px;
    padding-left: 106px;
    border-radius: 32px;
  }
}
@media (min-width: 1440px) {
  .draft {
    margin: 0 auto clamp(60px, 8.5vw, 120px);
  }
}
.draft::before {
  content: "";
  width: 1392px;
  height: 675px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/draft_bg_1.png");
  background-position: top 0 left 0;
  background-repeat: no-repeat;
  background-size: 50% auto;
}
.draft::after {
  content: "";
  width: 1392px;
  height: 675px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: url("../images/draft_bg_2.png"), url("../images/draft_bg_3.png");
  background-position: bottom 0 left 0, bottom -35px right -10px;
  background-repeat: no-repeat;
  background-size: 35% auto, 30% auto;
}
@media (min-width: 1200px) {
  .draft::after {
    background-size: 35% auto, 45% auto;
  }
}

.draft h2,
.draft h3 {
  margin-bottom: clamp(16px, 2vw, 24px);
}

.draft__col1 {
  max-width: 1180px;
  margin-bottom: clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 5;
}

.draft__col2 {
  max-width: 825px;
  position: relative;
  z-index: 5;
}

.privilege {
  max-width: 1392px;
  margin: 0 10px clamp(60px, 8.5vw, 120px);
  padding: clamp(40px, 6.68vw, 80px) clamp(16px, 4vw, 106px) clamp(65px, 9.5vw, 107px);
  position: relative;
  background-color: var(--c-yellow-l);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .privilege {
    margin: 0 24px clamp(60px, 8.5vw, 120px);
    padding-right: 106px;
    padding-left: 106px;
    border-radius: 32px;
  }
}
@media (min-width: 1440px) {
  .privilege {
    margin: 0 auto clamp(60px, 8.5vw, 120px);
  }
}
.privilege::before {
  content: "";
  width: 1392px;
  height: 808px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-image: url("../images/privilege_bg_1_zip.png");
  background-position: top 0 left 0;
  background-repeat: no-repeat;
  background-size: 10% auto;
}
@media (min-width: 1200px) {
  .privilege::before {
    height: 100%;
    background-position: bottom 0 left 0;
    background-size: 41% auto;
  }
}
.privilege::after {
  content: "";
  width: 1392px;
  height: 808px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: url("../images/privilege_bg_2_zip.png");
  background-position: bottom 0 right 0;
  background-repeat: no-repeat;
  background-size: 15% auto;
}
@media (min-width: 1200px) {
  .privilege::after {
    height: 100%;
    background-size: 47% auto;
  }
}

.privilege__entry {
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}

.privilege__title {
  margin-bottom: clamp(16px, 2vw, 24px);
}

.privilege__stat {
  margin-bottom: clamp(16px, 2vw, 24px);
  position: relative;
  z-index: 5;
}

.privilege__stat-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, clamp(300px, 31.65vw, 380px));
  grid-auto-rows: 1fr;
  justify-content: center;
  gap: clamp(16px, 1.5vw, 20px);
}

.privilege__stat-item {
  padding: clamp(30px, 3vw, 42px) clamp(16px, 2vw, 25px);
  display: flex;
  column-gap: 25px;
  font-size: clamp(14px, 1.5vw, 20px);
  color: var(--c-white);
  border-radius: 16px;
  background-color: var(--c-dark-2);
}
@media (min-width: 1200px) {
  .privilege__stat-item {
    border-radius: 20px;
  }
}

.privilege__stat-item .count {
  font-size: clamp(46px, 5.2vw, 62px);
  color: var(--c-yellow);
  line-height: normal;
}

.privilege__form {
  width: clamp(300px, 31.65vw, 380px);
  margin: 0 auto;
  padding: clamp(24px, 2.5vw, 32px) clamp(12px, 2vw, 24px) clamp(47px, 5.08vw, 73px);
  position: relative;
  z-index: 5;
  background-color: var(--c-dark-2);
  border-radius: 16px;
}
.privilege__form-message {
  padding: 10px;
  text-align: center;
}
.privilege__form-title {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
  color: #fcc92e;
}
@media (min-width: 1200px) {
  .privilege__form {
    border-radius: 24px;
  }
}

.privilege__form input, .privilege__form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 15px 16px;
  display: block;
  font-size: 14px;
  font-family: var(--f-body);
  color: var(--c-white);
  background-color: var(--c-dark-2);
  border: 1px solid rgba(var(--c-white-rgb), 0.2);
  border-radius: 12px;
}
.privilege__form input::placeholder, .privilege__form textarea::placeholder {
  color: var(--c-white);
  opacity: .5;
}
@media (min-width: 1200px) {
  .privilege__form input {
    margin-bottom: 8px;
    border-radius: 16px;
  }
}

.privilege__form p {
  font-size: 10px;
  color: rgba(var(--c-white-rgb), 0.2);
  text-align: center;
}
@media (min-width: 1200px) {
  .privilege__form p {
    font-size: 13px;
  }
}

.privilege__form a {
  font-size: 10px;
  color: var(--c-yellow);
}
@media (min-width: 1200px) {
  .privilege__form a {
    font-size: 13px;
  }
}

.privilege__form button {
  padding: clamp(19px, 2vw, 27px) clamp(28px, 3vw, 38px);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  font-size: clamp(12px, 1.5vw, 18px);
}

.footer {
  margin: 0 10px;
}

.footer__bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  background-color: var(--c-dark-2);
  border-radius: 20px;
}
@media (min-width: 1200px) {
  .footer__bar {
    border-radius: 20px 20px 0 0;
  }
}

.footer__top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1200px) {
  .footer__top {
    width: max-content;
  }
}

.footer__menu {
  display: none;
}
@media (min-width: 1200px) {
  .footer__menu {
    margin-right: auto;
    display: block;
  }
}

.footer__contact {
  display: none;
}
@media (min-width: 1200px) {
  .footer__contact {
    display: block;
  }
}

.footer__button-top {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--c-yellow);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5V19M12 5L18 11M12 5L6 11' stroke='%23273048' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  border: none;
}
@media (min-width: 1200px) {
  .footer__button-top {
    display: none;
  }
}

