.h1 {
  margin-bottom: 60px;
  font-size: 64px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
@media screen and (max-width: 1600px) {
  .h1 {
    font-size: 52px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .h1 {
    font-size: 52px;
  }
}
@media screen and (max-width: 767px) {
  .h1 {
    font-size: 26px;
    margin-bottom: 60px;
  }
}

.h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .h2 {
    font-size: 24px;
  }
}

.h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .h3 {
    font-size: 16px;
  }
}

.h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .h4 {
    font-size: 16px;
  }
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

@font-face {
  font-family: "HeliosCond";
  src: url("../fonts/HeliosCond-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HeliosCond";
  src: url("../fonts/HeliosCond-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@layer reset {
  header *:not(svg):not(svg *):not(strong):not(em):not(b):not(del),
  main *:not(svg):not(svg *):not(strong):not(em):not(b):not(del),
  footer *:not(svg):not(svg *):not(strong):not(em):not(b):not(del),
  .modal *:not(svg):not(svg *):not(strong):not(em):not(b):not(del) {
    all: unset;
    display: revert;
    list-style: none;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: unset;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}

svg {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

button {
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

img {
  display: block;
  width: auto;
  max-width: 100%;
  overflow: clip;
  overflow-clip-margin: content-box;
}

.hidden {
  display: none !important;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "HeliosCond", sans-serif;
  font-style: normal;
  color: #351F17;
  height: 100%;
}

html {
  height: auto;
  -webkit-text-size-adjust: none;
}
html.disable-scrolling {
  overflow: hidden;
  margin-right: calc(-1 * (100vw - 100%));
}

html,
body {
  min-height: 100vh;
  -webkit-font-variant-ligatures: no-common-ligatures;
          font-variant-ligatures: no-common-ligatures;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  position: relative;
}

.main,
.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
  max-width: 1470px;
}
@media screen and (max-width: 1810px) {
  .container {
    max-width: 94%;
  }
}
@media screen and (max-width: 1080px) {
  .container {
    max-width: 100%;
  }
}

.section {
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 80px 0;
  }
}
.section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .section .container {
    gap: 40px;
  }
}
.section--main {
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section--main {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1488px) {
  .section--footer {
    padding-bottom: 228px;
  }
}
.section--grey {
  background-color: #F6F4F1;
}
.section--no-pt {
  padding-top: 0;
}

.section-heading {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-heading {
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .no-mob {
    display: none !important;
  }
}

.only-mob {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .only-mob {
    display: block !important;
  }
}

.custom-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: #F6F4F1;
  border-radius: 5px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: #1A1A1A;
  border-radius: 5px;
}

.map__placemark {
  position: absolute;
  z-index: -1;
  right: 50%;
  -webkit-transform: translateX(60%);
      -ms-transform: translateX(60%);
          transform: translateX(60%);
  background: #FFFFFF;
  padding: 12px;
  border-radius: 50px;
  -webkit-box-shadow: -5px 1px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: -5px 1px 6px 0 rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 700;
  line-height: 110%;
  white-space: nowrap;
}

.swiper-container {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.swiper-container .swiper-notification {
  display: none;
}
.swiper-container .swiper-slide {
  height: auto;
}

.swiper-controls,
.swiper-controls-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .swiper-controls,
  .swiper-controls-inner {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-controls-inner {
    margin-top: 10px;
  }
}

.swiper-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  right: 16px;
  top: 5px;
}
@media screen and (max-width: 991px) {
  .swiper-button-wrapper {
    display: none;
  }
}

.swiper-pagination,
.swiper-pagination-inner {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background-color: rgba(215, 215, 215, 0.5);
  opacity: 1;
  border-radius: 50px;
  -webkit-transition: background-color 0.3s ease, width 0.3s ease;
  -o-transition: background-color 0.3s ease, width 0.3s ease;
  transition: background-color 0.3s ease, width 0.3s ease;
}
.swiper-pagination-bullet-active {
  width: 50px;
  background-color: #351F17;
}
@media (hover: hover) and (pointer: fine) {
  .swiper-pagination-bullet:hover {
    background-color: #351F17;
  }
}

.swiper-button-prev,
.swiper-button-prev-inner,
.swiper-button-next,
.swiper-button-next-inner {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  border: 1px solid #351F17;
  border-radius: 50%;
  color: #351F17;
  background-color: #FFFFFF;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  -o-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.swiper-button-prev::after,
.swiper-button-prev-inner::after,
.swiper-button-next::after,
.swiper-button-next-inner::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-prev-inner,
  .swiper-button-next,
  .swiper-button-next-inner {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .swiper-button-prev:hover,
  .swiper-button-prev-inner:hover,
  .swiper-button-next:hover,
  .swiper-button-next-inner:hover {
    color: #EF231D;
    border-color: #EF231D;
  }
}

.swiper-button-next svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  color: #BFB290;
  border-color: #BFB290;
}

@media screen and (min-width: 1280px) {
  .swiper-cooperation .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
  .swiper-cooperation .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
  .swiper-cooperation .swiper-wrapper .swiper-slide:nth-child(1) {
    grid-area: 1/1/2/3;
  }
  .swiper-cooperation .swiper-wrapper .swiper-slide:nth-child(2) {
    grid-area: 1/3/2/5;
  }
  .swiper-cooperation .swiper-wrapper .swiper-slide:nth-child(3) {
    grid-area: 1/5/2/7;
  }
  .swiper-cooperation .swiper-wrapper .swiper-slide:nth-child(4) {
    grid-area: 2/1/3/4;
  }
  .swiper-cooperation .swiper-wrapper .swiper-slide:nth-child(5) {
    grid-area: 2/4/3/7;
  }
  .swiper-cooperation .swiper-controls {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .swiper-controls-inner {
    display: none;
  }
}

.products__slider {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .products__slider {
    margin-top: 0;
  }
}
.products__slider .swiper-products > .swiper-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .products__slider .swiper-products > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .products__slider .swiper-products > .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .products__slider .card-product__thumbs {
    display: none;
  }
}

.burger {
  z-index: 1;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #351F17;
}
@media (hover: hover) and (pointer: fine) {
  .burger:hover span {
    background-color: #6B0000;
  }
}
.burger span {
  position: absolute;
  left: 6px;
  width: 20px;
  height: 2px;
  border-radius: 50px;
  background-color: #FFFFFF;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.burger span:nth-child(1) {
  top: 8px;
}
.burger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.burger span:nth-child(3) {
  bottom: 8px;
}
.burger--open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.burger--open span:nth-child(2) {
  opacity: 0;
}
.burger--open span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  max-height: 1080px;
  min-height: 796px;
  padding-top: 118px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1600px) {
  .banner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-height: 700px;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: unset;
    max-height: 85vh;
  }
}
.banner__image, .banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}
.banner__mark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 158px;
}
@media screen and (max-width: 1080px) {
  .banner__mark {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .banner__mark {
    bottom: 82px;
    width: 77px;
  }
}
.banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-top: 50px;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .banner__content {
    gap: 30px;
  }
}
.banner__content .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.banner__subtitle {
  font-size: 28px;
  line-height: 120%;
}
@media screen and (max-width: 1600px) {
  .banner__subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .banner__subtitle {
    font-size: 16px;
  }
}

.inputholder {
  width: 100%;
  position: relative;
}
.inputholder__textarea {
  min-height: 103px;
}
@media screen and (max-width: 1600px) {
  .inputholder__textarea {
    min-height: 70px;
  }
}
.inputholder__error {
  position: absolute;
  font-size: 10px;
  line-height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 20px;
  bottom: 100%;
  padding: 1px 26px;
  background-color: #CD0000;
  color: #FFFFFF;
  background-color: #CD0000;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.inputholder.form-error .inputholder__error {
  visibility: visible;
  opacity: 1;
}
.inputholder__input, .inputholder__textarea {
  width: 100%;
  font-family: inherit;
  padding: 15px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  border: 1px solid transparent;
  color: #1A1A1A;
}
.inputholder__input::-webkit-input-placeholder, .inputholder__textarea::-webkit-input-placeholder {
  color: rgba(53, 31, 23, 0.5);
}
.inputholder__input::-moz-placeholder, .inputholder__textarea::-moz-placeholder {
  color: rgba(53, 31, 23, 0.5);
}
.inputholder__input:-ms-input-placeholder, .inputholder__textarea:-ms-input-placeholder {
  color: rgba(53, 31, 23, 0.5);
}
.inputholder__input::-ms-input-placeholder, .inputholder__textarea::-ms-input-placeholder {
  color: rgba(53, 31, 23, 0.5);
}
.inputholder__input::placeholder, .inputholder__textarea::placeholder {
  color: rgba(53, 31, 23, 0.5);
}
.inputholder__input.error, .inputholder__textarea.error {
  border-color: #CD0000 !important;
}
.inputholder__input.error::-webkit-input-placeholder, .inputholder__textarea.error::-webkit-input-placeholder {
  color: #CD0000;
}
.inputholder__input.error::-moz-placeholder, .inputholder__textarea.error::-moz-placeholder {
  color: #CD0000;
}
.inputholder__input.error:-ms-input-placeholder, .inputholder__textarea.error:-ms-input-placeholder {
  color: #CD0000;
}
.inputholder__input.error::-ms-input-placeholder, .inputholder__textarea.error::-ms-input-placeholder {
  color: #CD0000;
}
.inputholder__input.error::placeholder, .inputholder__textarea.error::placeholder {
  color: #CD0000;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 56px;
  padding: 20px 62px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
}
@media screen and (max-width: 1600px) {
  .button {
    font-size: 18px;
    width: 100%;
    padding: 20px 23px;
  }
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 16px;
    width: 100%;
    padding: 16px 23px;
  }
}
.button--primary {
  background-color: #EF231D;
  color: #FFFFFF;
}
@media (hover: hover) and (pointer: fine) {
  .button--primary:hover {
    background-color: #6B0000;
  }
}
.button--primary:active {
  background-color: #570101;
}
.button--search-result {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc(100% - 34px);
  padding: 15px 21px;
  gap: 36px;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #1A1A1A;
}
@media (hover: hover) and (pointer: fine) {
  .button--search-result:hover {
    background-color: #F3F3F3;
  }
}
.button[disabled], .button--disabled {
  background-color: #505050;
  color: #C5C5C5;
  pointer-events: none;
}

.button * {
  pointer-events: none;
}

.logo {
  width: 197px;
  height: 47px;
}
@media screen and (max-width: 1080px) {
  .logo {
    width: 136px;
    height: 32px;
  }
}
.logo svg {
  width: 100%;
  height: 100%;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-weight: 500;
}

.header {
  position: fixed;
  width: 100%;
  padding: 29px 0 22px;
  z-index: 100;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease, border-radius 0.3s ease;
  -o-transition: background-color 0.3s ease, border-radius 0.3s ease;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}
@media screen and (max-width: 1080px) {
  .header {
    padding: 23px 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header a:hover,
  .header .search-btn-open:hover,
  .header .search-btn-close:hover, .header__cross-icon:hover {
    color: #6B0000;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__cross-icon:hover {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (max-width: 1080px) {
  .header__nav, .header__mail, .header__phone, .header__search-logo, .header__cross-icon {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .header.menu-open .header__logo,
  .header.menu-open .search-btn-open {
    color: #351F17;
  }
  .header.menu-open .burger span {
    background-color: #351F17;
  }
  .header.menu-open .header__container {
    z-index: 1000;
  }
}
.header:has(.header__inputholder-search.active) {
  background-color: #FFFFFF;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media screen and (max-width: 1080px) {
  .header:has(.header__inputholder-search.active) {
    border-radius: 0;
  }
  .header:has(.header__inputholder-search.active) .header__logo,
  .header:has(.header__inputholder-search.active) .search-btn-close {
    color: #351F17;
  }
  .header:has(.header__inputholder-search.active) .burger span {
    background-color: #351F17;
  }
}
.header.header--white {
  background-color: #FFFFFF;
}
.header.header--white .header__logo,
.header.header--white .header__left,
.header.header--white .header__right,
.header.header--white .header__search-btn {
  color: #351F17;
}
.header.header--white .burger span {
  background-color: #351F17;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px;
  line-height: 120%;
}
.header__logo {
  color: #FFFFFF;
}
.header__right, .header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  color: #FFFFFF;
}
.header__search {
  background: #FFFFFF;
  border-radius: 40px;
  border: 1px solid #351F17;
  height: 60px;
  padding: 17.5px 60px 17.5px 24px;
}
.header__inputholder-search {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  right: -200%;
  top: -4px;
  width: 100%;
  opacity: 0;
  background-color: #FFFFFF;
  -webkit-transition: right 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  -o-transition: right 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transition: right 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  z-index: 100;
  pointer-events: none;
}
.header__inputholder-search.active {
  right: 0;
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 1080px) {
  .header__inputholder-search {
    padding: 16px 15px;
    right: 0;
    top: -200%;
  }
  .header__inputholder-search.active {
    top: 55px;
  }
}
.header__search-logo {
  width: 53px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__search-btn {
  width: 32px;
  height: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
}
.header__menu {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100vw;
  padding: 26px 16px 32px;
  opacity: 0;
  background-color: #FFFFFF;
  -webkit-transition: top 0.3s ease, opacity 0.3s ease;
  -o-transition: top 0.3s ease, opacity 0.3s ease;
  transition: top 0.3s ease, opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.header__menu.vis {
  top: 42px;
  opacity: 1;
  z-index: 100;
  pointer-events: all;
}
.header__overlay {
  content: "";
  position: absolute;
  inset: 0;
  height: 100vh;
  width: 100vw;
  background-color: #1A1A1A;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 99;
}
.header__overlay.vis {
  opacity: 0.5;
  visibility: visible;
  pointer-events: auto;
}
.header__search-icon {
  position: absolute;
  top: 50%;
  right: 94px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1080px) {
  .header__search-icon {
    right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header__search-icon {
    right: 34px;
    -webkit-transform: translateY(calc(-50% - 5px));
        -ms-transform: translateY(calc(-50% - 5px));
            transform: translateY(calc(-50% - 5px));
  }
}
.header__cross-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header__search-icon {
    display: none;
  }
}

.search-result {
  width: 100%;
  max-height: 377px;
  position: absolute;
  top: calc(100% + 12px);
  background: white;
  padding: 0 30px 18px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  pointer-events: none;
  -webkit-transition: opacity 0.3s 0.3s ease, -webkit-transform 0.3s 0.3s ease;
  transition: opacity 0.3s 0.3s ease, -webkit-transform 0.3s 0.3s ease;
  -o-transition: opacity 0.3s 0.3s ease, transform 0.3s 0.3s ease;
  transition: opacity 0.3s 0.3s ease, transform 0.3s 0.3s ease;
  transition: opacity 0.3s 0.3s ease, transform 0.3s 0.3s ease, -webkit-transform 0.3s 0.3s ease;
}
@media screen and (max-width: 1080px) {
  .search-result {
    top: 92px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .search-result {
    padding: 4px 15px 18px;
  }
}
.search-result.active {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: all;
}
.search-result__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  max-height: 280px;
  padding-right: 34px;
}
@media screen and (max-width: 767px) {
  .search-result__wrapper {
    padding-right: 22px;
  }
}
.search-result__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 15px 21px;
  border-radius: 7px;
}
@media (hover: hover) and (pointer: fine) {
  .search-result__item:hover {
    background: #F3F3F3;
  }
}
.search-result__image {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.search-result__title {
  font-size: 18px;
  line-height: 140%;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 723px;
  padding: 120px 280px 120px 40px;
  background-color: #FFFFFF;
  border-bottom-right-radius: 40px;
  z-index: 100;
  background-image: url(../img/image/menu-bg.svg);
  background-position: bottom left;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1600px) {
  .menu {
    width: 460px;
    padding: 120px 40px 80px;
  }
}
@media screen and (max-width: 767px) {
  .menu {
    width: 100%;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 94px 15px 180px;
  }
}
.menu.vis {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.menu__closer {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  color: #1A1A1A;
}
@media (hover: hover) and (pointer: fine) {
  .menu__closer:hover {
    color: #6B0000;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (max-width: 1080px) {
  .menu__closer {
    display: none;
  }
}
.menu__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  overflow: auto;
}
.menu__nav .nav__link {
  display: block;
  padding: 14px 24px;
  border-radius: 10px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .menu__nav .nav__link:hover {
    background-color: #F3F3F3;
  }
}
@media screen and (max-width: 1600px) {
  .menu__nav .nav__link {
    padding: 10px 24px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .menu__nav .nav__link {
    padding: 0;
    font-size: 16px;
  }
}
.menu__nav .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .menu__nav .nav__list {
    gap: 20px;
  }
}
.menu__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 0 24px;
  font-size: 24px;
}
@media screen and (max-width: 1600px) {
  .menu__contacts {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .menu__contacts {
    padding: 0;
    font-size: 16px;
  }
}

.overlay {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(20, 20, 20, 0.7);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 499px;
  width: calc(100% - 20px);
  max-height: 99vh;
  background-color: #FFFFFF;
  z-index: 111;
  border-radius: 40px;
}
@media screen and (max-width: 1600px) {
  .modal {
    max-width: 360px;
  }
}
.modal--callback {
  background-image: url("../img/image/menu-bg.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.modal:has(.feedback-thanks.vis) .modal__close {
  color: #FFFFFF;
}
.modal:has(.feedback-thanks.vis) .feedback {
  padding-top: 185px;
  padding-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .modal:has(.feedback-thanks.vis) .feedback {
    padding-top: 141px;
    padding-bottom: 141px;
  }
}
.modal .feedback-thanks__text {
  color: #351F17;
}
.modal .feedback {
  width: 100%;
  background-color: transparent;
  padding: 104px 40px 113px;
}
@media screen and (max-width: 1600px) {
  .modal .feedback {
    padding: 30px 30px 60px;
  }
}
@media screen and (max-width: 991px) {
  .modal .feedback {
    padding: 63px 15px 80px;
  }
}
.modal .feedback .h3 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: -16px;
}
@media screen and (max-width: 1600px) {
  .modal .feedback .h3 {
    margin-bottom: 0;
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .modal .feedback .h3 {
    margin-bottom: 4px;
    padding: 0;
  }
}
@media screen and (max-width: 1600px) {
  .modal .feedback .form {
    gap: 20px;
  }
}
.modal .feedback .form__send {
  margin-top: 0;
}
.modal .feedback .h3,
.modal .feedback .policy {
  color: #1A1A1A;
}
.modal .feedback .inputholder__input,
.modal .feedback .inputholder__textarea {
  background-color: #F3F3F3;
}
.modal .feedback .checkbox__title::before {
  border-color: #1A1A1A;
}
.modal.card-certificates {
  display: none;
  height: 95vh;
  padding-top: 85px;
  max-width: 644px;
  cursor: default;
}
.modal.card-certificates::after {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .modal.card-certificates:hover {
    background-color: #F6F4F1;
  }
}
.modal.card-certificates img {
  max-height: unset;
}
@media screen and (max-width: 991px) {
  .modal.card-certificates {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: unset;
    padding-left: 15px;
    padding-right: 15px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    border-radius: 0;
  }
}
@media screen and (max-width: 991px) {
  .modal.card-certificates img {
    height: 100%;
  }
}
@media screen and (max-width: 640px) {
  .modal.card-certificates img {
    height: unset;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .modal {
    width: 100%;
    max-width: unset;
    border-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
            transform: translate(0, 100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    top: auto;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 991px) {
  .modal--vis {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.modal__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.modal.modal-video {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1000px;
  width: 100%;
  padding: 0px;
  max-height: 95vh;
  top: 50%;
  bottom: auto;
}
@media screen and (max-width: 991px) {
  .modal.modal-video.modal--vis {
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.modal.modal-video .modal__close {
  color: #FFFFFF;
}
.modal__video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  color: #1A1A1A;
}
@media screen and (max-width: 1600px) {
  .modal__close {
    padding: 63px 15px 26px;
  }
}
.modal__close svg {
  width: 40px;
  height: 40px;
}
@media (hover: hover) and (pointer: fine) {
  .modal__close:hover {
    color: #6B0000;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (max-width: 1600px) {
  .modal__close {
    padding: 0;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
  }
  .modal__close svg {
    width: 32px;
    height: 32px;
  }
}
.modal__container {
  width: 100%;
  overflow: auto;
}
@media screen and (max-width: 991px) {
  .modal__container {
    padding: 0;
  }
}
.modal__thanks {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
}
.modal__thanks-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 110px;
}
@media screen and (max-width: 991px) {
  .modal__thanks-wrapper {
    gap: 32px;
  }
}
.modal__thanks-wrapper .button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.footer {
  background-color: #351F17;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url("../img/image/footer-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 1287px auto;
}
.footer__container {
  gap: 79px;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.footer__logo {
  width: 232px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 196px;
  }
}
.footer__nav .nav__list {
  max-height: 147px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 63px;
}
@media screen and (max-width: 540px) {
  .footer__nav .nav__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20px;
    max-height: unset;
  }
}
.footer__nav .nav__link {
  font-size: 28px;
}
@media screen and (max-width: 540px) {
  .footer__nav .nav__link {
    font-size: 16px;
    font-weight: 400;
  }
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.footer__contacts-title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 540px) {
  .footer__contacts-title {
    font-size: 18px;
  }
}
.footer__contacts-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: 12px;
  font-size: 20px;
}
@media screen and (max-width: 540px) {
  .footer__contacts-links {
    font-size: 16px;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 18px;
}
@media screen and (max-width: 540px) {
  .footer__social {
    font-size: 16px;
  }
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
@media screen and (max-width: 540px) {
  .footer__socials {
    gap: 20px;
  }
}
.footer__socials a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.footer__socials a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.footer__bottom {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.footer p {
  font-size: 14px;
}
.footer__links a:not(:last-child) {
  padding-right: 6px;
  border-right: 1px solid #FFFFFF;
}
.footer__links a:not(:first-child) {
  padding-left: 6px;
}
.footer__design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 540px) {
  .footer__design {
    gap: 10px;
  }
}

.cookie {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.cookie__body {
  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;
  gap: 24px;
  padding: 24px 80px;
  background-color: #FFFFFF;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 767px) {
  .cookie__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px 15px;
  }
}
.cookie__text {
  max-width: 1093px;
  font-size: 18px;
}
.cookie__text a {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cookie__text a:hover {
    color: #EF231D;
  }
}
.cookie__button {
  border: none;
}
@media screen and (max-width: 767px) {
  .cookie__button {
    width: 100%;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #351F17;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.social__item svg {
  color: #FFFFFF;
}
@media (hover: hover) and (pointer: fine) {
  .social__item:hover {
    background-color: #EF231D;
  }
}

.policy p {
  font-size: 12px;
  text-align: left;
}
.policy a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .policy a:hover {
    color: #6B0000;
  }
}

.feedback {
  width: 464px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 40px;
  background-color: #351F17;
  color: #FFFFFF;
  border-radius: 40px;
}
@media screen and (max-width: 1280px) {
  .feedback {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .feedback {
    border-radius: 20px;
    padding: 20px;
  }
}
.feedback .h3 {
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feedback .h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
}

.feedback-thanks {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feedback-thanks.vis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feedback-thanks__icon {
  width: 162px;
  height: 156px;
}
@media screen and (max-width: 991px) {
  .feedback-thanks__icon {
    width: 117px;
    height: 113px;
  }
}
.feedback-thanks__text {
  text-align: center;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
@media screen and (max-width: 540px) {
  .feedback-thanks__text {
    padding: 0 15px;
  }
}
.feedback-thanks__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .feedback-thanks__image {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
}
.feedback-thanks__image img {
  width: 100%;
  height: 269px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .feedback-thanks__image img {
    height: 201px;
  }
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .form {
    gap: 16px;
  }
}
.form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.form__send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .form__send {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
    margin-top: 7px;
  }
}
@media screen and (max-width: 767px) {
  .form__buttonholder {
    width: 100%;
  }
}
.form__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__policy:has(.error) .policy {
  color: #CD0000;
}

.card-partners {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
  padding: 24px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .card-partners {
    gap: 10px;
    padding: 8px;
  }
}
.card-partners__image {
  width: 98px;
  height: 98px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .card-partners__image {
    width: 60px;
    height: 60px;
  }
}

.section-partners {
  position: relative;
  padding-bottom: 211px;
  background-image: url("../img/image/partners-bg.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1280px) {
  .section-partners {
    padding-bottom: 284px;
  }
}
@media screen and (max-width: 767px) {
  .section-partners {
    padding-bottom: 134px;
    background-size: 225%;
  }
}
.section-partners .container {
  z-index: 1;
}
.section-partners::before, .section-partners::after {
  content: "";
  position: absolute;
  top: 0;
  width: 642px;
  height: 100%;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .section-partners::before, .section-partners::after {
    display: none;
  }
}
.section-partners::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#F6F4F1), to(rgba(246, 244, 241, 0)));
  background: -o-linear-gradient(left, #F6F4F1 0%, rgba(246, 244, 241, 0) 100%);
  background: linear-gradient(to right, #F6F4F1 0%, rgba(246, 244, 241, 0) 100%);
}
.section-partners::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#F6F4F1), to(rgba(246, 244, 241, 0)));
  background: -o-linear-gradient(right, #F6F4F1 0%, rgba(246, 244, 241, 0) 100%);
  background: linear-gradient(to left, #F6F4F1 0%, rgba(246, 244, 241, 0) 100%);
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, 230px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 1280px) {
  .partners {
    grid-template-columns: repeat(2, 230px);
  }
}
@media screen and (max-width: 767px) {
  .partners {
    grid-template-columns: repeat(2, 50%);
    gap: 18px 3px;
  }
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  padding: 40px;
  border-radius: 24px;
  background-color: #F6F4F1;
}
@media screen and (max-width: 991px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 20px;
    border-radius: 20px;
  }
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  max-width: 586px;
}
@media screen and (max-width: 767px) {
  .about__content {
    gap: 10px;
  }
}
.about__cards {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
@media screen and (max-width: 767px) {
  .about__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.container-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.about-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 12px);
          flex: 1 1 calc(50% - 12px);
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 40px;
  border-radius: 20px;
  background-color: #ffffff;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .about-card {
    padding: 16px;
    min-width: unset;
  }
}
.about-card:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.about-card__number {
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .about-card__number {
    font-size: 26px;
  }
}
.about-card__number--accent {
  color: #EF231D;
}
.about-card__description {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .about-card__description {
    font-size: 12px;
  }
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  cursor: pointer;
  color: #351F17;
}
@media screen and (max-width: 767px) {
  .video-play {
    width: 40px;
    height: 40px;
  }
}
.video-play__circle {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.video-play__text {
  position: absolute;
  width: 100px;
  height: 100px;
  -webkit-animation: rotateText 10s linear infinite;
          animation: rotateText 10s linear infinite;
}
@media screen and (max-width: 767px) {
  .video-play__text {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .video-play svg {
    width: 5px;
    height: 6.5px;
  }
}

@-webkit-keyframes rotateText {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateText {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.gallery {
  padding: 80px 0;
}
.gallery .h2 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 36px;
  text-align: center;
}
.gallery__hidden {
  display: none;
}
.gallery__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 57px;
  padding: 31px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
}
@media screen and (max-width: 1280px) {
  .gallery__link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .gallery__link {
    padding: 16px;
    font-size: 14px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .gallery__link svg {
    width: 47px;
    height: 47px;
  }
}
.gallery__grid {
  display: grid;
  grid-template-columns: 462px repeat(3, 1fr);
  grid-auto-rows: 267px;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 400px);
  }
}
@media screen and (max-width: 767px) {
  .gallery__grid {
    grid-template-rows: repeat(3, 330px);
  }
}
@media screen and (max-width: 540px) {
  .gallery__grid {
    grid-template-rows: repeat(3, 156px);
  }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
.gallery__item--large {
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 3;
}
.gallery__item--video {
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .gallery__item:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .gallery__item:nth-child(2) {
    grid-area: 3/1/4/3;
  }
  .gallery__item:nth-child(3) {
    grid-area: 1/2/2/3;
  }
  .gallery__item:nth-child(4) {
    grid-area: 2/1/3/2;
  }
  .gallery__item:nth-child(5) {
    grid-area: 2/2/3/3;
  }
}
.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.gallery__item:hover .gallery__img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.sertificates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 920px) {
  .sertificates {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.sertificates__tag {
  position: absolute;
  background-color: #FFFFFF;
  color: #351F17;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  z-index: 1;
}
.sertificates__tag--top {
  left: 42px;
  top: 118px;
  padding: 10px 25px;
  font-size: 14px;
  line-height: 110%;
  -webkit-box-shadow: 5px 1px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 5px 1px 6px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 540px) {
  .sertificates__tag--top {
    padding: 10px 17px;
    left: 5px;
    font-size: 12px;
  }
}
.sertificates__tag--bottom {
  right: 56px;
  bottom: 34px;
  padding: 17px 36px;
  font-size: 18px;
  line-height: 120%;
  -webkit-box-shadow: -5px 1px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: -5px 1px 6px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 540px) {
  .sertificates__tag--bottom {
    padding: 17px 25px;
    right: 8px;
    font-size: 16px;
  }
}
.sertificates__main {
  width: 525px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 920px) {
  .sertificates__main {
    width: 100%;
  }
}
.sertificates__main .card-certificates {
  background-image: url("../img/image/sertificat-bg.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .sertificates__main .card-certificates:hover .card-certificates__image {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (max-width: 540px) {
  .sertificates__main .card-certificates {
    padding-top: 64px;
  }
}
.sertificates__main .card-certificates__image {
  max-height: 385px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  -o-transition: transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}
@media screen and (max-width: 540px) {
  .sertificates__main .card-certificates__image {
    max-height: 330px;
  }
}
.sertificates__slider {
  width: calc(100% - 550px);
}
@media screen and (max-width: 920px) {
  .sertificates__slider {
    width: 100%;
  }
}

.card-certificates {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 370px;
  padding: 32px 0;
  background-color: #F6F4F1;
  border-radius: 20px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 540px) {
  .card-certificates {
    height: 360px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .card-certificates:hover {
    background-color: #CECECE;
  }
}
.card-certificates__image {
  max-height: 306px;
}

.terminals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.terminals .h3 {
  text-transform: uppercase;
}
.terminals__maps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 991px) {
  .terminals__maps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.terminals__map {
  overflow: hidden;
  width: 50%;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .terminals__map {
    width: 100%;
  }
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1180px) {
  .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  width: 578px;
  background-color: #F6F4F1;
  border-radius: 20px;
  padding: 40px;
  font-size: 28px;
  line-height: 120%;
  background-image: url("../img/image/contacts-bg.png");
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1180px) {
  .contacts__info {
    width: 100%;
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 991px) {
  .contacts__info {
    padding: 20px 20px 200px;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contacts__info {
    font-size: 18px;
    padding-bottom: 144px;
  }
}
.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .contacts__content {
    gap: 10px;
  }
}
.contacts__title {
  color: rgba(26, 26, 26, 0.5);
}
@media screen and (max-width: 767px) {
  .contacts__title {
    font-size: 20px;
  }
}
.contacts__map {
  width: calc(100% - 602px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .contacts__map {
    width: 100%;
    height: 359px !important;
  }
}
.contacts__map--no-touch {
  pointer-events: none;
}
.contacts__map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.section-logistics {
  background-image: url("../img/image/logistics-bg.png");
  background-repeat: no-repeat;
  background-position: left 50%;
  background-size: 963px 481px;
}
@media screen and (max-width: 991px) {
  .section-logistics {
    background-position: left bottom;
    padding-bottom: 232px;
  }
}
@media screen and (max-width: 767px) {
  .section-logistics {
    background-position: left bottom;
    background-size: 100%;
    padding-bottom: 156px;
  }
}

.logistics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1280px) {
  .logistics {
    gap: 25px;
  }
}
@media screen and (max-width: 991px) {
  .logistics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.logistics__left {
  max-width: 581px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .logistics__left {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .logistics__left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .logistics__left {
    gap: 10px;
  }
}
.logistics__logo {
  width: 175px;
}
@media screen and (max-width: 767px) {
  .logistics__logo {
    width: 165px;
  }
}
.logistics__subtitle {
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .logistics__subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.logistics__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .logistics__text {
    gap: 16px;
  }
}
.logistics__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.logistics__preview {
  position: relative;
  border-radius: 20px;
  height: 284px;
  overflow: hidden;
}
.logistics__preview img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.logistics__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 540px) {
  .logistics__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.logistics-card {
  padding: 24px;
  border-radius: 20px;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .logistics-card {
    padding: 20px;
  }
}
.logistics-card img {
  width: 52px;
  height: 52px;
}

.card-cooperation {
  padding: 24px;
  border-radius: 20px;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  height: 100%;
}
.card-cooperation__image {
  width: 52px;
  height: 52px;
}
.card-cooperation__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.card-cooperation__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
}

.cooperation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 52px;
}
@media screen and (max-width: 1280px) {
  .cooperation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cooperation .section-heading {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cooperation__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 1280px) {
  .cooperation__info {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .cooperation__cards .swiper-controls {
    display: none;
  }
}

.staff-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.staff-card__info {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: -18px;
}
.staff-card__photo {
  aspect-ratio: 11/12;
  border-radius: 20px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-card__position {
  padding: 12px;
  border-radius: 50px;
  background-color: #F3F3F3;
  font-size: 14px;
  line-height: 110%;
  font-weight: 700;
  -webkit-box-shadow: -5px 1px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: -5px 1px 6px 0 rgba(0, 0, 0, 0.15);
}
.staff-card__name {
  font-size: 24px;
  line-height: auto;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .staff-card__name {
    font-size: 20px;
  }
}

.card-product {
  display: block;
  text-decoration: none;
}
.card-product__title {
  font-size: 24px;
  font-weight: 700;
  width: 70%;
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .card-product__title {
    font-size: 20px;
  }
}
.card-product__image {
  width: 100%;
  aspect-ratio: 11/12;
  border-radius: 12px;
}
.card-product__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .card-product__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 15px;
  }
}
.card-product__thumbs {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: -20px;
}
.card-product__thumbs img {
  width: 65px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
}
.card-product__thumbs img.active {
  border: 2px solid #EAD0AC;
  -webkit-filter: brightness(0.9) sepia(0.5);
          filter: brightness(0.9) sepia(0.5);
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
}
.checkbox__title {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  background: transparent;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  -o-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.checkbox__title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.checkbox__input:hover + .checkbox__title::before, .checkbox__title:hover::before {
  border-color: #6B0000;
}
.checkbox__input:checked + .checkbox__title::before {
  border-color: #6B0000;
  background: #6B0000;
}
.checkbox__input:checked + .checkbox__title::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
/*# sourceMappingURL=style.css.map */
