:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1600px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --dark-color: #fff;
  --white: #FFF;
  --gray: #B8B8B8;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page {
  height: 100%;
  scroll-behavior: smooth;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  color: #4C1E0F;
  line-height: 1;
  background: #DED2CA;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

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

a {
  text-decoration: none;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.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;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
  width: 100%;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

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

.page--ios .dis-scroll {
  position: relative;
}

.site-container {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: hidden;
}

.title2 {
  color: #4C1E0F;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
}
@media (max-width: 1023px) {
  .title2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .title2 {
    font-size: 25px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 0;
  z-index: 1000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .header {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 25px 0;
  }
}
.header--active {
  background: #DED2CA;
  padding: 20px 0;
}
@media (max-width: 1023px) {
  .header--active {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .header--active {
    padding: 10px 0;
  }
}
.header--active .header__logo {
  width: 60px;
}
@media (max-width: 1023px) {
  .header--active .header__logo {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .header--active .header__logo {
    width: 40px;
  }
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  -webkit-filter: drop-shadow(3px 7px 4px rgba(88, 88, 88, 0.25));
  filter: drop-shadow(3px 7px 4px rgba(88, 88, 88, 0.25));
  border-radius: 50%;
  width: 118px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .header__logo {
    width: 90px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 60px;
  }
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .header__left {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .header__nav ul {
    gap: 20px;
  }
}
.header__nav ul a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #4C1E0F;
  font-family: Geologica;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .header__nav ul a {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .header__nav ul a:hover {
    -webkit-text-decoration-color: currentColor;
    text-decoration-color: currentColor;
  }
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .header__right {
    gap: 20px;
  }
}
.header__tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .header__tels {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .header__tels {
    display: none;
  }
}
.header__tels a {
  color: #4C1E0F;
  font-family: Geologica;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}
@media (max-width: 1200px) {
  .header__tels a {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .header__tels a:hover {
    -webkit-text-decoration-color: currentColor;
    text-decoration-color: currentColor;
  }
}
.header__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .header__soc {
    gap: 9px;
  }
}
@media (max-width: 767px) {
  .header__soc {
    gap: 8px;
  }
}
.header__soc a {
  display: block;
  width: 35px;
  height: auto;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .header__soc a {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .header__soc a {
    width: 25px;
  }
}
.header__soc a img {
  display: block;
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  .header__soc a:hover {
    opacity: 0.8;
  }
}
.header__btnBurger {
  display: none;
  width: 23px;
  height: auto;
}
@media (max-width: 767px) {
  .header__btnBurger {
    display: block;
  }
}

.headerBurger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 2000;
  background: #CEBDB2;
  padding: 30px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.headerBurger.active {
  opacity: 1;
  pointer-events: all;
}
.headerBurger__btnClose {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 33px;
  height: auto;
}
.headerBurger__btnClose svg {
  display: block;
  width: 100%;
  height: auto;
}
.headerBurger__top {
  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;
}
.headerBurger__logo {
  display: block;
  width: 135px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  -webkit-filter: drop-shadow(3.381px 7.89px 4.508px rgba(88, 88, 88, 0.25));
  filter: drop-shadow(3.381px 7.89px 4.508px rgba(88, 88, 88, 0.25));
}
.headerBurger__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.headerBurger .footer__inf, .headerBurger .footer__inf2 {
  max-width: 300px;
  margin: 0 auto;
}
.headerBurger__bottom {
  margin-top: 50px;
  padding-top: 50px;
  position: relative;
}
.headerBurger__bottom::after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #4C1E0F;
}
.headerBurger__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.headerBurger__nav ul a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  color: #4C1E0F;
  text-align: center;
  font-family: Geologica;
  font-size: 23px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}
.headerBurger__soc {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.headerBurger__soc a {
  display: block;
  width: 50px;
}
.headerBurger__soc a img {
  display: block;
  width: 100%;
  height: auto;
}

.footer {
  background: #CEBDB2;
}
.footer__top {
  padding: 40px 0 70px;
}
.footer__bottom {
  padding: 25px 0 30px;
  border-top: 1px solid #434244;
}
.footer__botWrap {
  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: 15px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__botWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.footer__policy {
  color: #92140C;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer__policy:hover {
    -webkit-text-decoration-color: currentColor;
    text-decoration-color: currentColor;
  }
}
.footer__dev {
  color: #92140C;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.footer__dev a {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer__dev a:hover {
    -webkit-text-decoration-color: currentColor;
    text-decoration-color: currentColor;
  }
}
.footer__topWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__topWrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer__topLogo {
  display: block;
  width: 121px;
}
.footer__topLogo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 767px) {
  .footer__soc {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
.footer__soc a {
  display: block;
  width: 50px;
  height: auto;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
@media (hover: hover) {
  .footer__soc a:hover {
    opacity: 0.8;
  }
}
.footer__soc a img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__inf {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .footer__inf {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer__inf {
    gap: 40px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
}
.footer__infAddr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #4C1E0F;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}
.footer__infAddr img {
  display: block;
  width: 19px;
  height: auto;
}
.footer__infText {
  color: rgba(76, 30, 15, 0.85);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.footer__inf2 {
  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 (max-width: 767px) {
  .footer__inf2 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
  }
}
.footer__inf2Tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #4C1E0F;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}
@media (hover: hover) {
  .footer__inf2Tel:hover {
    -webkit-text-decoration-color: currentColor;
    text-decoration-color: currentColor;
  }
}
.footer__inf2Tel img {
  display: block;
  width: 20px;
  height: auto;
}
.footer__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #4C1E0F;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}
.footer__time img {
  display: block;
  width: 20px;
  height: auto;
}

.mainWindow {
  padding: 180px 0 200px;
  background: #DED2CA;
  position: relative;
  overflow: hidden;
  background-position: bottom left;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100svh;
}
@media (max-width: 1023px) {
  .mainWindow {
    padding: 150px 0 170px;
  }
}
@media (max-width: 767px) {
  .mainWindow {
    padding: 120px 0 140px;
    min-height: initial;
  }
}
.mainWindow__title {
  color: #8B442D;
  font-size: 100px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px;
  max-width: 970px;
}
@media (max-width: 1023px) {
  .mainWindow__title {
    font-size: 67px;
    margin-bottom: 30px;
    max-width: 75%;
  }
}
@media (max-width: 767px) {
  .mainWindow__title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
.mainWindow__descr {
  color: #4C1E0F;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 80px;
  max-width: 750px;
}
@media (max-width: 1023px) {
  .mainWindow__descr {
    font-size: 21px;
    margin-bottom: 45px;
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .mainWindow__descr {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.mainWindow__link {
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  background: #C01F14;
  padding: 26px 52px;
  color: var(--white, #FFF);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .mainWindow__link {
    padding: 18px 36px;
    font-size: 20px;
    border-radius: 35px;
  }
}
@media (max-width: 767px) {
  .mainWindow__link {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 10px;
  }
}
@media (hover: hover) {
  .mainWindow__link:hover {
    background: #FFF;
    color: #92140C;
  }
}
.mainWindow__img {
  position: absolute;
  bottom: 0;
  right: 90px;
  width: 952px;
  max-width: 50%;
}
@media (max-width: 1200px) {
  .mainWindow__img {
    right: -20px;
  }
}
@media (max-width: 767px) {
  .mainWindow__img {
    right: -60px;
    max-width: 60%;
  }
}
.mainWindow .container {
  position: relative;
  z-index: 2;
}

.about {
  padding: 140px 0;
  background: #EFE6E1;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .about {
    padding: 95px 0;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 50px 0;
  }
}
.about__img {
  position: absolute;
  top: 0;
  height: 100%;
  right: calc(50vw - 30px);
  width: calc((100vw - 30px) / 2 - 30px);
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center left;
  object-position: center left;
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 767px) {
  .about__img {
    right: initial;
    left: -5%;
  }
}
.about__cont {
  max-width: calc(50% - 30px);
  margin-left: auto;
}
@media (max-width: 767px) {
  .about__cont {
    max-width: 65%;
  }
}
.about__title {
  margin-bottom: 46px;
}
@media (max-width: 1023px) {
  .about__title {
    margin-bottom: 33px;
  }
}
@media (max-width: 767px) {
  .about__title {
    margin-bottom: 20px;
  }
}
.about__descr {
  color: #4C1E0F;
  font-size: 30px;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
}
@media (max-width: 1023px) {
  .about__descr {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .about__descr {
    font-size: 13px;
  }
}
.about__wr {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px 44px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .about__wr {
    margin-top: 33px;
    gap: 15px 29px;
  }
}
@media (max-width: 767px) {
  .about__wr {
    margin-top: 20px;
    gap: 10px 14px;
  }
}
.about__link {
  border-radius: 30px;
  background: #FFF;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 70px;
  color: #92140C;
  font-size: 26px;
  font-weight: 400;
  line-height: 120%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
@media (max-width: 1023px) {
  .about__link {
    padding: 11px 47px;
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .about__link {
    padding: 6px 24px;
    font-size: 12px;
  }
}
@media (hover: hover) {
  .about__link:hover {
    color: #fff;
    background: #92140C;
  }
}
.about__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media (max-width: 1023px) {
  .about__nav {
    gap: 21px;
  }
}
@media (max-width: 767px) {
  .about__nav {
    gap: 10px;
  }
}
.about__navBtn {
  border-radius: 40px;
  background: #92140C;
  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;
  padding: 13px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .about__navBtn {
    padding: 8px;
  }
}
@media (max-width: 767px) {
  .about__navBtn {
    padding: 4px;
  }
}
@media (hover: hover) {
  .about__navBtn:hover {
    opacity: 0.8;
  }
}
.about__navBtn svg {
  display: block;
  width: 24px;
  height: auto;
}
@media (max-width: 1023px) {
  .about__navBtn svg {
    width: 18px;
  }
}
@media (max-width: 767px) {
  .about__navBtn svg {
    width: 12px;
  }
}
.about__slider {
  margin-top: 60px;
  overflow: visible;
}
@media (max-width: 1023px) {
  .about__slider {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .about__slider {
    margin-top: 20px;
  }
}
.about__slide {
  width: 582px;
  max-width: 40vw;
}
.about__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 582/266;
}

.reviews {
  padding: 110px 0 160px;
  background-position: bottom right;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .reviews {
    padding: 70px 0 130px;
  }
}
@media (max-width: 767px) {
  .reviews {
    padding: 30px 0 100px;
    overflow: hidden;
    background-size: contain;
  }
}
.reviews__title {
  color: #92140C;
  font-size: 60px;
  font-weight: 700;
  line-height: 110%;
  margin: 0 0 20px;
}
@media (max-width: 1023px) {
  .reviews__title {
    font-size: 42px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .reviews__title {
    font-size: 25px;
    margin-bottom: 12px;
  }
}
.reviews__descr {
  color: #4C1E0F;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  margin: 0 0 60px;
  max-width: 810px;
}
@media (max-width: 1023px) {
  .reviews__descr {
    font-size: 19px;
    margin-bottom: 45px;
    max-width: 570px;
  }
}
@media (max-width: 767px) {
  .reviews__descr {
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 330px;
  }
}
.reviews__sliderWr {
  position: relative;
}
@media (max-width: 767px) {
  .reviews__slider {
    overflow: visible;
  }
}
.reviews__slide {
  border-radius: 10px;
  background: #FFF;
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 30px;
  height: auto;
}
@media (max-width: 1023px) {
  .reviews__slide {
    padding: 35px 25px;
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .reviews__slide {
    padding: 30px 20px;
    gap: 30px;
    width: 310px;
  }
}
.reviews__slide:nth-child(even) {
  background: #92140C;
}
.reviews__slide:nth-child(even) .reviews__name {
  color: var(--white, #FFF);
}
.reviews__slide:nth-child(even) .reviews__topDescr {
  color: var(--gray, #B8B8B8);
}
.reviews__slide:nth-child(even) .reviews__text {
  color: var(--white, #FFF);
}
.reviews__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: 20px;
}
@media (max-width: 1023px) {
  .reviews__content {
    gap: 18px;
  }
}
@media (max-width: 767px) {
  .reviews__content {
    gap: 16px;
  }
}
.reviews__top {
  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;
}
.reviews__nameReit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.reviews__name {
  color: #92140C;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 1023px) {
  .reviews__name {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .reviews__name {
    font-size: 16px;
  }
}
.reviews__reit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .reviews__reit {
    gap: 4px;
  }
}
.reviews__reit svg {
  display: block;
  width: 12px;
  height: auto;
}
@media (max-width: 1023px) {
  .reviews__reit svg {
    width: 11px;
  }
}
@media (max-width: 767px) {
  .reviews__reit svg {
    width: 10px;
  }
}
.reviews__topDescr {
  color: #4C1E0F;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
}
@media (max-width: 1023px) {
  .reviews__topDescr {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .reviews__topDescr {
    font-size: 12px;
  }
}
.reviews__text {
  color: #92140C;
  font-size: 15px;
  font-weight: 500;
  line-height: 160%;
  margin: 0;
}
@media (max-width: 1023px) {
  .reviews__text {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .reviews__text {
    font-size: 12px;
  }
}
.reviews__img {
  display: block;
  width: 55px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .reviews__img {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .reviews__img {
    width: 45px;
  }
}
.reviews__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: calc(100% + 140px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1750px) {
  .reviews__nav {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .reviews__nav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.reviews__nav button {
  display: block;
  width: 50px;
  height: auto;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .reviews__nav button:hover svg {
    fill: #fff;
  }
}
.reviews__nav button svg {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: transparent;
}

.stocks {
  padding: 80px 0;
  background: #EFE6E1;
}
@media (max-width: 1023px) {
  .stocks {
    margin: 65px 0;
  }
}
@media (max-width: 767px) {
  .stocks {
    margin: 50px 0;
  }
}
.stocks__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 600px) {
  .stocks__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.stocks__cont {
  width: 600px;
}
@media (max-width: 1023px) {
  .stocks__cont {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .stocks__cont {
    width: 300px;
  }
}
@media (max-width: 600px) {
  .stocks__cont {
    width: 100%;
  }
}
.stocks__img {
  display: block;
  width: calc(100% - 600px);
  height: auto;
}
@media (max-width: 1023px) {
  .stocks__img {
    width: calc(100% - 400px);
  }
}
@media (max-width: 767px) {
  .stocks__img {
    width: calc(100% - 300px);
  }
}
@media (max-width: 600px) {
  .stocks__img {
    width: 100%;
  }
}
.stocks__title {
  color: #4C1E0F;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .stocks__title {
    font-size: 42px;
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .stocks__title {
    font-size: 25px;
    margin-bottom: 14px;
  }
}
.stocks__descr {
  color: #4C1E0F;
  font-size: 30px;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
}
@media (max-width: 1023px) {
  .stocks__descr {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .stocks__descr {
    font-size: 14px;
  }
}
.stocks__link {
  margin: 50px 0 0;
  border-radius: 30px;
  background: #92140C;
  padding: 15px 70px;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
@media (hover: hover) {
  .stocks__link:hover {
    color: #92140C;
    background: #fff;
  }
}
@media (max-width: 1023px) {
  .stocks__link {
    font-size: 22px;
    padding: 11px 52px;
    margin-top: 37px;
  }
}
@media (max-width: 767px) {
  .stocks__link {
    font-size: 14px;
    padding: 7px 35px;
    margin-top: 25px;
  }
}

.prih {
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.prih__title {
  color: #FFF;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 1300px;
}
@media (max-width: 1023px) {
  .prih__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .prih__title {
    font-size: 20px;
  }
}

.what {
  padding: 120px 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #DED2CA;
}
@media (max-width: 1023px) {
  .what {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .what {
    padding: 60px 0;
  }
}
.what__title {
  color: #4C1E0F;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 80px;
}
@media (max-width: 1023px) {
  .what__title {
    margin-bottom: 60px;
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .what__title {
    margin-bottom: 40px;
    font-size: 25px;
  }
}
.what__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 120px 80px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .what__list {
    gap: 60px 20px;
  }
}
@media (max-width: 767px) {
  .what__list {
    gap: 30px 20px;
  }
}
.what__item {
  padding: 50px 0 0 40px;
  position: relative;
  counter-increment: list;
  width: calc(50% - 40px);
  max-width: 710px;
}
@media (max-width: 1023px) {
  .what__item {
    padding: 35px 0 0 30px;
    width: calc(50% - 10px);
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .what__item {
    padding: 20px 0 0 20px;
  }
}
@media (max-width: 600px) {
  .what__item {
    width: 100%;
  }
}
.what__item::after {
  content: counter(list, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(146, 20, 12, 0.31);
  font-size: 86px;
  font-weight: 700;
  line-height: 100%;
  z-index: 0;
}
@media (max-width: 1023px) {
  .what__item::after {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .what__item::after {
    font-size: 44px;
  }
}
.what__name {
  color: #4C1E0F;
  font-size: 35px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .what__name {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .what__name {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.what__text {
  color: #4C1E0F;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
}
@media (max-width: 1023px) {
  .what__text {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .what__text {
    font-size: 14px;
  }
}

.zakaz {
  padding: 70px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1023px) {
  .zakaz {
    padding: 55px 0;
  }
}
@media (max-width: 767px) {
  .zakaz {
    padding: 40px 0;
  }
}
.zakaz__title {
  color: #FFF;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 20px;
}
@media (max-width: 1023px) {
  .zakaz__title {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .zakaz__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.zakaz__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .zakaz__wr {
    gap: 20px 40px;
  }
}
@media (max-width: 767px) {
  .zakaz__wr {
    gap: 10px 20px;
  }
}
@media (max-width: 600px) {
  .zakaz__wr {
    -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;
  }
}
.zakaz__wr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid var(--gray, #B8B8B8);
  padding: 20px 30px;
  color: #FFF;
  font-size: 30px;
  font-weight: 300;
  line-height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .zakaz__wr a {
    font-size: 22px;
    padding: 14px 22px;
  }
}
@media (max-width: 767px) {
  .zakaz__wr a {
    font-size: 13px;
    padding: 9px 14px;
  }
}
@media (hover: hover) {
  .zakaz__wr a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #92140C;
  }
}

.mainProds {
  padding: 160px 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1023px) {
  .mainProds {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .mainProds {
    padding: 60px 0;
  }
}
.mainProds__title {
  color: #4C1E0F;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 30px;
  text-align: center;
}
@media (max-width: 1023px) {
  .mainProds__title {
    margin-bottom: 20px;
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .mainProds__title {
    margin-bottom: 10px;
    font-size: 25px;
  }
}
.mainProds__link {
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  border-radius: 50px;
  background: #C01F14;
  padding: 26px 53px;
  color: var(--white, #FFF);
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .mainProds__link {
    padding: 18px 35px;
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .mainProds__link {
    padding: 9px 18px;
    font-size: 10px;
    margin-bottom: 20px;
  }
}
@media (hover: hover) {
  .mainProds__link:hover {
    color: #C01F14;
    background: #fff;
  }
}
.mainProds__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 80px;
}
@media (max-width: 1023px) {
  .mainProds__wr {
    gap: 40px 50px;
  }
}
@media (max-width: 767px) {
  .mainProds__wr {
    gap: 30px 20px;
  }
}
@media (max-width: 600px) {
  .mainProds__wr {
    -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;
  }
}
.mainProds__card {
  width: calc(50% - 40px);
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .mainProds__card {
    width: calc(50% - 25px);
  }
}
@media (max-width: 767px) {
  .mainProds__card {
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .mainProds__card {
    width: 100%;
    max-width: 300px;
  }
}
@media (hover: hover) {
  .mainProds__card:hover .mainProds__decLink {
    border-color: transparent;
  }
}
.mainProds__img {
  display: block;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .mainProds__img {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .mainProds__img {
    margin-bottom: 20px;
  }
}
.mainProds__img img {
  display: block;
  width: 100%;
  aspect-ratio: 758/817;
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
}
.mainProds__name {
  color: #4C1E0F;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 auto 30px;
  max-width: 450px;
}
@media (max-width: 1023px) {
  .mainProds__name {
    font-size: 27px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .mainProds__name {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .mainProds__name {
    max-width: 200px;
  }
}
.mainProds__decLink {
  color: #92140C;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border-bottom: 1.5px dashed #92140C;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .mainProds__decLink {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .mainProds__decLink {
    font-size: 10px;
  }
}

.mainWind {
  padding: 260px 0 200px;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100svh;
}
@media (max-width: 1023px) {
  .mainWind {
    min-height: initial;
    padding: 190px 0 0;
  }
}
@media (max-width: 767px) {
  .mainWind {
    padding: 120px 0 0;
  }
}
.mainWind__content {
  margin-left: auto;
  max-width: 840px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .mainWind__content {
    width: 100%;
    max-width: initial;
  }
}
.mainWind__title {
  color: #8B442D;
  text-align: center;
  font-size: 100px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px;
}
@media (max-width: 1023px) {
  .mainWind__title {
    font-size: 68px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .mainWind__title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
.mainWind__descr {
  color: #4C1E0F;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  margin: 0 auto;
  max-width: 670px;
}
@media (max-width: 1023px) {
  .mainWind__descr {
    max-width: 100%;
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .mainWind__descr {
    font-size: 14px;
  }
}
.mainWind__imgDec {
  position: absolute;
  bottom: 0;
  left: 0;
  max-height: 100%;
  max-width: 55%;
  -o-object-position: bottom left;
  object-position: bottom left;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 1;
  display: block;
}
@media (max-width: 1500px) {
  .mainWind__imgDec {
    max-width: 45%;
  }
}
@media (max-width: 1023px) {
  .mainWind__imgDec {
    position: static;
    width: 85%;
    max-width: 600px;
  }
}
.products {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 130px 0 150px;
}
@media (max-width: 1023px) {
  .products {
    padding: 80px 0 115px;
  }
}
@media (max-width: 767px) {
  .products {
    padding: 30px 0 80px;
  }
}
.products__title {
  color: #4C1E0F;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 35px;
  text-align: center;
}
@media (max-width: 1023px) {
  .products__title {
    margin-bottom: 25px;
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .products__title {
    margin-bottom: 15px;
    font-size: 25px;
  }
}
.products__nav {
  background: #EFE6E1;
}
.products__navWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .products__navWrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    overflow: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.products__navWrap button {
  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;
  color: #4C1E0F;
  font-family: Geologica;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  padding: 30px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .products__navWrap button {
    font-size: 19px;
    padding: 21px 16px;
  }
}
@media (max-width: 767px) {
  .products__navWrap button {
    font-size: 14px;
    padding: 13px 12px;
  }
}
@media (hover: hover) {
  .products__navWrap button:hover {
    background: #92140C;
    color: #FFF;
  }
}
.products__navWrap button.active {
  background: #92140C;
  color: #FFF;
}
.products__productsWr {
  margin-top: 80px;
}
@media (max-width: 1023px) {
  .products__productsWr {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .products__productsWr {
    margin-top: 40px;
  }
}
.products__products--mt {
  margin-top: 200px;
}
@media (max-width: 1023px) {
  .products__products--mt {
    margin-top: 125px;
  }
}
@media (max-width: 767px) {
  .products__products--mt {
    margin-top: 50px;
  }
}
.products__productsName {
  color: #92140C;
  font-size: 35px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 60px;
}
@media (max-width: 1023px) {
  .products__productsName {
    margin-bottom: 45px;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .products__productsName {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
.products__productsDescr {
  color: #4C1E0F;
  font-size: 30px;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 100px;
  max-width: 920px;
}
@media (max-width: 1023px) {
  .products__productsDescr {
    font-size: 22px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .products__productsDescr {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.products__prWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px 20px;
}
@media (max-width: 1023px) {
  .products__prWr {
    gap: 50px 20px;
  }
}
@media (max-width: 767px) {
  .products__prWr {
    gap: 20px;
  }
}
.products__prod {
  width: calc(25% - 15px);
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: calc(33.3333333333% - 13.3333333333px);
  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 (max-width: 1023px) {
  .products__prod {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media (max-width: 600px) {
  .products__prod {
    width: calc(50% - 10px);
    max-width: initial;
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }
}
.products__prodImg {
  display: block;
  width: 100%;
  aspect-ratio: 385/455;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .products__prodImg {
    border-radius: 23px;
    margin-bottom: 21px;
  }
}
@media (max-width: 767px) {
  .products__prodImg {
    border-radius: 16px;
    margin-bottom: 12px;
  }
}
.products__prodName {
  color: #92140C;
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  margin: 0 0 24px;
}
@media (max-width: 1023px) {
  .products__prodName {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
@media (max-width: 767px) {
  .products__prodName {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.products__prodText {
  color: #4C1E0F;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  font-variant: small-caps;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .products__prodText {
    font-size: 15px;
    margin-bottom: 21px;
  }
}
@media (max-width: 767px) {
  .products__prodText {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.products__prodText span {
  color: #92140C;
}
.products__prodBtn {
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  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: 100%;
  padding: 14px 30px;
  border-radius: 30px;
  background: #92140C;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .products__prodBtn {
    padding: 10px 25px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .products__prodBtn {
    padding: 7px 20px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .products__prodBtn:hover {
    background: #fff;
    color: #92140C;
  }
}

.predz {
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 110px 0 150px;
}
@media (max-width: 1023px) {
  .predz {
    padding: 80px 0 115px;
  }
}
@media (max-width: 767px) {
  .predz {
    padding: 30px 0 80px;
  }
}
.predz__title {
  background: #EFE6E1;
  padding: 24px 40px;
  color: #92140C;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 50px;
  text-align: center;
}
@media (max-width: 1023px) {
  .predz__title {
    padding: 16px 30px;
    font-size: 42px;
    margin-bottom: 38px;
  }
}
@media (max-width: 767px) {
  .predz__title {
    padding: 8px 20px;
    font-size: 25px;
    margin-bottom: 26px;
  }
}
.predz__descr {
  color: #4C1E0F;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .predz__descr {
    font-size: 21px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .predz__descr {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.predz__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .predz__wr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .predz__wr {
    gap: 20px;
  }
}
.predz__text {
  width: calc(100% - 500px);
  padding: 40px 0 40px 120px;
  position: relative;
  color: #92140C;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 1023px) {
  .predz__text {
    width: 100%;
    padding: 35px 0;
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .predz__text {
    padding: 30px 0;
    font-size: 14px;
  }
}
.predz__text span {
  position: relative;
  z-index: 2;
}
.predz__text::after {
  content: "";
  border-radius: 30px;
  background: #EFE6E1;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1023px) {
  .predz__text::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 0;
  }
}
.predz__left {
  width: 460px;
  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 (max-width: 1023px) {
  .predz__left {
    gap: 35px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .predz__left {
    gap: 30px;
  }
}
.predz__tels {
  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 (max-width: 1023px) {
  .predz__tels {
    gap: 13px;
  }
}
@media (max-width: 767px) {
  .predz__tels {
    gap: 10px;
  }
}
.predz__tels a {
  border-radius: 30px;
  background: #92140C;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 44px;
  color: #FFF;
  font-family: Geologica;
  font-size: 30px;
  font-weight: 300;
  line-height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .predz__tels a {
    font-size: 24px;
    padding: 11px 35px;
  }
}
@media (max-width: 767px) {
  .predz__tels a {
    font-size: 18px;
    padding: 8px 26px;
  }
}
@media (hover: hover) {
  .predz__tels a:hover {
    color: #92140C;
    background: #fff;
  }
}
.predz__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 60px;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .predz__soc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px 50px;
  }
}
@media (max-width: 767px) {
  .predz__soc {
    gap: 40px;
  }
}
.predz__soc a {
  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: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #92140C;
  text-align: center;
  font-size: 29px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 1023px) {
  .predz__soc a {
    gap: 16px;
    width: calc(50% - 30px);
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  .predz__soc a {
    gap: 12px;
    width: calc(50% - 20px);
    font-size: 16px;
  }
}
@media (hover: hover) {
  .predz__soc a:hover span {
    text-decoration: underline;
  }
}
.predz__soc a svg {
  display: block;
  width: 70px;
  height: auto;
  margin: 0 auto 0;
}
@media (max-width: 1023px) {
  .predz__soc a svg {
    width: 55px;
  }
}
@media (max-width: 767px) {
  .predz__soc a svg {
    width: 40px;
  }
}
.predz__soc a span {
  color: #92140C;
  text-align: center;
  font-family: Geologica;
  font-size: 22px;
  font-weight: 300;
  line-height: 100%;
  display: block;
  text-align: center;
  word-break: break-all;
}
@media (max-width: 1023px) {
  .predz__soc a span {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .predz__soc a span {
    font-size: 14px;
  }
}

.contacts {
  padding: 320px 0 160px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1023px) {
  .contacts {
    padding: 225px 0 115px;
  }
}
@media (max-width: 767px) {
  .contacts {
    padding: 130px 0 70px;
  }
}
.contacts__title {
  color: #8B442D;
  font-size: 100px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px;
  text-align: center;
}
@media (max-width: 1023px) {
  .contacts__title {
    margin-bottom: 25px;
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .contacts__title {
    margin-bottom: 10px;
    font-size: 25px;
  }
}
.contacts__descr {
  color: #4C1E0F;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  margin: 0 auto 100px;
  max-width: 880px;
}
@media (max-width: 1023px) {
  .contacts__descr {
    font-size: 21px;
    margin-bottom: 50px;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .contacts__descr {
    font-size: 14px;
    margin-bottom: 0;
    max-width: 400px;
  }
}
.contacts__map {
  margin-top: 80px;
}
@media (max-width: 1023px) {
  .contacts__map {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .contacts__map {
    margin-top: 40px;
  }
}
.contacts__t2 {
  width: 900px;
  margin-left: auto;
  margin-bottom: -60px;
  padding: 35px 0 35px 185px;
  position: relative;
  color: #8B442D;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 1023px) {
  .contacts__t2 {
    font-size: 35px;
    padding: 25px 0 25px 130px;
    width: 600px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .contacts__t2 {
    font-size: 20px;
    padding: 14px 0 14px 75px;
    margin-bottom: 25px;
    width: 340px;
  }
}
.contacts__t2 span {
  position: relative;
  z-index: 2;
}
.contacts__t2::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
  border-radius: 30px 0 0 30px;
  background: #EFE6E1;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  height: 100%;
}
@media (max-width: 1023px) {
  .contacts__t2::after {
    border-radius: 21px 0 0 21px;
  }
}
@media (max-width: 767px) {
  .contacts__t2::after {
    border-radius: 12px 0 0 12px;
  }
}
.contacts__map2 {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 30px;
  -webkit-box-shadow: 6px 7px 9px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 6px 7px 9px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
@media (max-width: 767px) {
  .contacts__map2 {
    height: 450px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0;
  }
}
.contacts__map2 iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.contacts__content {
  position: relative;
}
.contacts__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 50%;
  gap: 35px;
  position: relative;
  padding: 170px 0;
  z-index: 3;
}
@media (max-width: 1440px) {
  .contacts__cards {
    padding: 80px 0;
  }
}
@media (max-width: 1023px) {
  .contacts__cards {
    padding: 50px 60px;
    width: 100%;
    border-radius: 21px;
    background: #EFE6E1;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .contacts__cards {
    padding: 30px 40px;
    border-radius: 12px;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .contacts__cards {
    -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;
  }
}
.contacts__cards::after {
  content: "";
  display: block;
  height: 100%;
  width: 100vw;
  border-radius: 0 30px 30px 0;
  background: #EFE6E1;
  position: absolute;
  z-index: 4;
  top: 0;
  right: -170px;
}
@media (max-width: 1440px) {
  .contacts__cards::after {
    right: -80px;
  }
}
@media (max-width: 1023px) {
  .contacts__cards::after {
    content: none;
  }
}
.contacts__card {
  border-radius: 30px;
  background: #8B442D;
  position: relative;
  z-index: 6;
  width: calc(50% - 17.5px);
  padding: 60px 40px;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 1440px) {
  .contacts__card {
    padding: 40px 30px;
  }
}
@media (max-width: 1023px) {
  .contacts__card {
    padding: 35px 30px;
    gap: 15px;
    border-radius: 21px;
    width: calc(50% - 12.5px);
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .contacts__card {
    padding: 30px;
    gap: 10px;
    border-radius: 12px;
    font-size: 16px;
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .contacts__card {
    width: 190px;
  }
}
.contacts__card img {
  display: block;
  width: 89px;
  height: auto;
}
@media (max-width: 1023px) {
  .contacts__card img {
    width: 65px;
  }
}
@media (max-width: 767px) {
  .contacts__card img {
    width: 40px;
  }
}
.contacts__card span {
  color: #FFF;
  text-align: center;
  font-family: Geologica;
  font-size: 26px;
  font-weight: 300;
  line-height: 100%;
  word-break: break-all;
}
@media (max-width: 1023px) {
  .contacts__card span {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .contacts__card span {
    font-size: 12px;
  }
}
@media (hover: hover) {
  .contacts a.contacts__card:hover span {
    text-decoration: underline;
  }
}
.contacts__imgDec {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50vw;
  z-index: 4;
  right: calc((100vw - 1600px) / -2);
  display: block;
}
@media (max-width: 1630px) {
  .contacts__imgDec {
    right: -15px;
    max-width: 600px;
    width: 100vw;
  }
}
@media (max-width: 1023px) {
  .contacts__imgDec {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-left: auto;
    margin-right: -15px;
  }
}
.sertificats {
  padding: 130px 0 100px;
}
@media (max-width: 1023px) {
  .sertificats {
    padding: 95px 0 80px;
  }
}
@media (max-width: 767px) {
  .sertificats {
    padding: 60px 0;
  }
}
.sertificats__title {
  color: #92140C;
  font-family: Geologica;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin: 0 0 34px;
}
@media (max-width: 1023px) {
  .sertificats__title {
    font-size: 42px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .sertificats__title {
    font-size: 25px;
    margin-bottom: 14px;
  }
}
.sertificats__descr {
  color: #4C1E0F;
  font-family: Geologica;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  margin: 0 0 90px;
  max-width: 1260px;
}
@media (max-width: 1023px) {
  .sertificats__descr {
    margin-bottom: 65px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .sertificats__descr {
    margin-bottom: 40px;
    font-size: 14px;
  }
}
.sertificats__descr b {
  font-weight: 700;
}
.sertificats__inf {
  color: #4C1E0F;
  font-family: Geologica;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  margin: 90px 0 0;
}
@media (max-width: 1023px) {
  .sertificats__inf {
    margin-top: 65px;
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .sertificats__inf {
    margin-top: 40px;
    font-size: 12px;
  }
}
.sertificats__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 70px;
}
@media (max-width: 1023px) {
  .sertificats__list {
    gap: 32px 50px;
  }
}
@media (max-width: 767px) {
  .sertificats__list {
    gap: 25px 30px;
  }
}
@media (max-width: 600px) {
  .sertificats__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sertificats__list div {
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 55px 70px;
  color: #FFF;
  text-align: center;
  font-family: Geologica;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 30px;
  background: #8B442D;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1023px) {
  .sertificats__list div {
    padding: 40px 50px;
    font-size: 43px;
    border-radius: 21px;
  }
}
@media (max-width: 767px) {
  .sertificats__list div {
    padding: 25px 30px;
    font-size: 26px;
    border-radius: 12px;
  }
}

.pokupki {
  padding: 140px 0;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .pokupki {
    padding: 105px 0 100px;
  }
}
@media (max-width: 767px) {
  .pokupki {
    padding: 70px 0 60px;
  }
}
.pokupki__title {
  color: #92140C;
  text-align: center;
  font-family: Geologica;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin: 0 auto 60px;
  max-width: 1150px;
}
@media (max-width: 1023px) {
  .pokupki__title {
    margin-bottom: 40px;
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .pokupki__title {
    margin-bottom: 25px;
    font-size: 25px;
  }
}
.pokupki__descr {
  color: #4C1E0F;
  text-align: center;
  font-family: Geologica;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  margin: 0 auto 20px;
  max-width: 1150px;
}
@media (max-width: 1023px) {
  .pokupki__descr {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .pokupki__descr {
    font-size: 14px;
  }
}
.pokupki__descr span {
  color: #92140C;
  font-weight: 700;
}
.pokupki__img {
  display: block;
  width: 100%;
  max-width: 942px;
  margin: 0 auto 34px;
  border-radius: 170px;
}
@media (max-width: 1023px) {
  .pokupki__img {
    border-radius: 115px;
    margin-bottom: 29px;
  }
}
@media (max-width: 767px) {
  .pokupki__img {
    border-radius: 60px;
    margin-bottom: 24px;
  }
}
.pokupki__descr2 {
  color: #4C1E0F;
  text-align: center;
  font-family: Geologica;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  max-width: 1150px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .pokupki__descr2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .pokupki__descr2 {
    font-size: 14px;
  }
}
.pokupki__descr2 b {
  font-weight: 700;
}

.sales {
  padding: 110px 0 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .sales {
    padding: 85px 0 70px;
  }
}
@media (max-width: 767px) {
  .sales {
    padding: 60px 0;
  }
}
.sales__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .sales__wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .sales__wrap {
    gap: 30px 40px;
  }
}
@media (max-width: 600px) {
  .sales__wrap {
    -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;
  }
}
.sales__card {
  width: calc(50% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) {
  .sales__card {
    gap: 21px;
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .sales__card {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .sales__card {
    width: 260px;
  }
}
.sales__imgWr {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .sales__imgWr {
    border-radius: 21px;
  }
}
@media (max-width: 767px) {
  .sales__imgWr {
    border-radius: 12px;
  }
}
.sales__imgWr img {
  display: block;
  width: 100%;
  aspect-ratio: 63/69;
}
.sales__name {
  position: absolute;
  font-family: Geologica;
  bottom: 35%;
  left: 10%;
  width: 80%;
  border-radius: 30px;
  background: rgba(76, 30, 15, 0.88);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 20px;
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  margin: 0;
}
@media (max-width: 1023px) {
  .sales__name {
    font-size: 21px;
    padding: 13px 15px;
    border-radius: 21px;
    bottom: 30%;
  }
}
@media (max-width: 767px) {
  .sales__name {
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 12px;
  }
}
.sales__text {
  color: #4C1E0F;
  text-align: center;
  font-family: Geologica;
  font-size: 25px;
  font-weight: 500;
  line-height: 120%;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .sales__text {
    font-size: 20px;
    width: calc(100% - 75px);
  }
}
@media (max-width: 767px) {
  .sales__text {
    font-size: 15px;
    width: calc(100% - 50px);
  }
}

.sale {
  padding: 150px 0 240px;
  background: #EFE6E1;
}
@media (max-width: 1023px) {
  .sale {
    padding: 170px 0 145px;
  }
}
@media (max-width: 767px) {
  .sale {
    padding: 190px 0 50px;
  }
}
.sale__cont {
  max-width: 950px;
}
.sale__title {
  color: #4C1E0F;
  font-family: Geologica;
  font-size: 60px;
  font-weight: 500;
  line-height: 120%;
  margin: 0 0 50px;
}
@media (max-width: 1023px) {
  .sale__title {
    font-size: 42px;
    margin-bottom: 37px;
  }
}
@media (max-width: 767px) {
  .sale__title {
    font-size: 25px;
    margin-bottom: 24px;
  }
}
.sale__descr {
  color: #4C1E0F;
  font-family: Geologica;
  font-size: 32px;
  font-weight: 300;
  line-height: 120%;
  margin: 0 0 50px;
}
@media (max-width: 1023px) {
  .sale__descr {
    margin-bottom: 35px;
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  .sale__descr {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.sale__inf {
  border-radius: 30px;
  border: 3px solid #4C1E0F;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 35px;
  color: #4C1E0F;
  font-family: Geologica;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 1023px) {
  .sale__inf {
    padding: 12px 27px;
    font-size: 23px;
    border-width: 2px;
  }
}
@media (max-width: 767px) {
  .sale__inf {
    padding: 10px 20px;
    font-size: 15px;
  }
}

.slpr {
  padding: 240px 0 230px;
  position: relative;
}
@media (max-width: 1023px) {
  .slpr {
    padding: 185px 0 160px;
  }
}
@media (max-width: 767px) {
  .slpr {
    padding: 130px 0 90px;
  }
}
.slpr__cont {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.slpr__title {
  color: #8B442D;
  font-size: 100px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px;
}
@media (max-width: 1023px) {
  .slpr__title {
    margin-bottom: 30px;
    font-size: 67px;
  }
}
@media (max-width: 767px) {
  .slpr__title {
    margin-bottom: 20px;
    font-size: 35px;
  }
}
.slpr__descr {
  color: #4C1E0F;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 60px;
}
@media (max-width: 1023px) {
  .slpr__descr {
    margin-bottom: 40px;
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .slpr__descr {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.slpr__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: 30px;
}
@media (max-width: 1023px) {
  .slpr__links {
    gap: 21px;
  }
}
@media (max-width: 767px) {
  .slpr__links {
    gap: 12px;
  }
}
.slpr__links a {
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  background: #C01F14;
  color: var(--white, #FFF);
  font-family: Geologica;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 25px 80px;
}
@media (hover: hover) {
  .slpr__links a:hover {
    background: #fff;
    color: #C01F14;
  }
}
@media (max-width: 1023px) {
  .slpr__links a {
    padding: 18px 55px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .slpr__links a {
    padding: 12px 30px;
    font-size: 14px;
  }
}
.slpr__decor {
  position: absolute;
  right: 50px;
  bottom: 0;
  width: 55%;
  -webkit-transform: translateY(320px);
  -ms-transform: translateY(320px);
  transform: translateY(320px);
  z-index: 1;
  display: block;
  height: auto;
}
@media (max-width: 1600px) {
  .slpr__decor {
    -webkit-transform: translateY(160px);
    -ms-transform: translateY(160px);
    transform: translateY(160px);
  }
}
@media (max-width: 1023px) {
  .slpr__decor {
    right: 0;
  }
}
@media (max-width: 767px) {
  .slpr__decor {
    width: 75%;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
  }
}

.ds {
  padding: 150px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .ds {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .ds {
    padding: 50px 0;
  }
}
.ds__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 150px;
}
@media (max-width: 1023px) {
  .ds__wrap {
    gap: 100px;
  }
}
@media (max-width: 767px) {
  .ds__wrap {
    gap: 50px;
  }
}
.ds__title {
  color: #92140C;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 120px;
}
@media (max-width: 1023px) {
  .ds__title {
    margin-bottom: 80px;
    font-size: 39px;
  }
}
@media (max-width: 767px) {
  .ds__title {
    margin-bottom: 40px;
    font-size: 18px;
    text-align: center;
  }
}
.ds__title2 {
  color: #4C1E0F;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 50px;
}
@media (max-width: 1023px) {
  .ds__title2 {
    margin-bottom: 40px;
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .ds__title2 {
    margin-bottom: 30px;
    font-size: 25px;
  }
}
.ds__sliderWr {
  position: relative;
}
@media (max-width: 1200px) {
  .ds__slider {
    overflow: visible;
  }
}
.ds__sliderNav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% + 40px);
  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;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 1650px) {
  .ds__sliderNav {
    display: none;
  }
}
.ds__sliderPrev, .ds__sliderNext {
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 55px;
  pointer-events: all;
}
@media (hover: hover) {
  .ds__sliderPrev:hover, .ds__sliderNext:hover {
    background-color: #fff;
  }
}
.ds__sliderPrev svg, .ds__sliderNext svg {
  display: block;
  width: 100%;
  height: auto;
}
.ds__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}
.ds__slide.swiper-slide-next {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media (max-width: 1200px) {
  .ds__slide.swiper-slide-next {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@media (max-width: 1200px) {
  .ds__slide.swiper-slide-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.ds__slideImg {
  display: block;
  width: 100%;
  aspect-ratio: 52/61;
  border-radius: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .ds__slideImg {
    margin-bottom: 35px;
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .ds__slideImg {
    margin-bottom: 30px;
    border-radius: 20px;
  }
}
.ds__slideName {
  color: #92140C;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  margin: 0 0 26px;
}
@media (max-width: 1023px) {
  .ds__slideName {
    margin-bottom: 19px;
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ds__slideName {
    margin-bottom: 12px;
    font-size: 21px;
  }
}
.ds__slideDescr {
  color: #4C1E0F;
  text-align: center;
  font-size: 23px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  margin: 0 0 40px;
}
@media (max-width: 1023px) {
  .ds__slideDescr {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .ds__slideDescr {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.ds__slideBtn {
  border-radius: 41.895px;
  background: #92140C;
  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;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 80px;
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .ds__slideBtn {
    padding: 15px 60px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .ds__slideBtn {
    padding: 10px 40px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .ds__slideBtn:hover {
    background: #fff;
    color: #92140C;
  }
}

.ds2 {
  padding: 120px 0 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .ds2 {
    padding: 85px 0 145px;
  }
}
@media (max-width: 767px) {
  .ds2 {
    padding: 50px 0 90px;
  }
}
.ds2__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 150px;
}
@media (max-width: 1023px) {
  .ds2__wrap {
    gap: 100px;
  }
}
@media (max-width: 767px) {
  .ds2__wrap {
    gap: 50px;
  }
}
.ds2__orormlTitle {
  color: #92140C;
  font-size: 38px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 70px;
}
@media (max-width: 1023px) {
  .ds2__orormlTitle {
    margin-bottom: 50px;
    font-size: 31px;
  }
}
@media (max-width: 767px) {
  .ds2__orormlTitle {
    margin-bottom: 30px;
    font-size: 25px;
  }
}
.ds2__orormlWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px 80px;
}
@media (max-width: 1023px) {
  .ds2__orormlWrap {
    gap: 20px 40px;
  }
}
@media (max-width: 767px) {
  .ds2__orormlWrap {
    gap: 10px 30px;
  }
}
.ds2__orormlCard {
  width: calc(33.3333333333% - 53.3333333333px);
  padding: 60px 0 0 50px;
  position: relative;
  counter-increment: list;
}
@media (max-width: 1360px) {
  .ds2__orormlCard {
    width: calc(50% - 40px);
  }
}
@media (max-width: 1023px) {
  .ds2__orormlCard {
    padding-top: 50px;
    padding-left: 45px;
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .ds2__orormlCard {
    padding-top: 40px;
    padding-left: 40px;
    width: calc(50% - 15px);
  }
}
@media (max-width: 600px) {
  .ds2__orormlCard {
    width: 100%;
  }
}
.ds2__orormlCard > * {
  position: relative;
  z-index: 2;
}
.ds2__orormlCard::after {
  content: counter(list, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  font-size: 118px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .ds2__orormlCard::after {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .ds2__orormlCard::after {
    font-size: 82px;
  }
}
.ds2__orormlName {
  color: #92140C;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  font-variant: small-caps;
  margin: 0 0 24px;
}
@media (max-width: 1023px) {
  .ds2__orormlName {
    margin-bottom: 20px;
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .ds2__orormlName {
    margin-bottom: 16px;
    font-size: 22px;
  }
}
.ds2__orormlText {
  color: #4C1E0F;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  font-variant: small-caps;
  margin: 0;
}
@media (max-width: 1023px) {
  .ds2__orormlText {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .ds2__orormlText {
    font-size: 13px;
  }
}
.ds2__orormlTels {
  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;
  margin-top: 32px;
}
@media (max-width: 1023px) {
  .ds2__orormlTels {
    margin-top: 29px;
    gap: 13px;
  }
}
@media (max-width: 767px) {
  .ds2__orormlTels {
    margin-top: 26px;
    gap: 10px;
  }
}
.ds2__orormlTels a {
  border-radius: 30px;
  background: #92140C;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  color: #FFF;
  font-family: Geologica;
  font-size: 30px;
  font-weight: 300;
  line-height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .ds2__orormlTels a {
    padding: 12px 34px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ds2__orormlTels a {
    padding: 9px 28px;
    font-size: 18px;
  }
}
@media (hover: hover) {
  .ds2__orormlTels a:hover {
    background: #fff;
    color: #92140C;
  }
}
.ds2__napitkiTitle {
  color: #92140C;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  padding: 20px;
  margin: 0 0 30px;
  background: #EFE6E1;
}
@media (max-width: 1023px) {
  .ds2__napitkiTitle {
    padding: 15px;
    font-size: 42px;
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .ds2__napitkiTitle {
    padding: 10px;
    font-size: 25px;
    margin-bottom: 15px;
  }
}
.ds2__nav {
  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: 20px;
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .ds2__nav {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .ds2__nav {
    gap: 12px;
  }
}
.ds2__napitkiPrev, .ds2__napitkiNext {
  display: block;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .ds2__napitkiPrev:hover, .ds2__napitkiNext:hover {
    opacity: 0.8;
  }
}
@media (max-width: 1023px) {
  .ds2__napitkiPrev, .ds2__napitkiNext {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .ds2__napitkiPrev, .ds2__napitkiNext {
    width: 30px;
  }
}
.ds2__napitkiPrev svg, .ds2__napitkiNext svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .ds2__napitkiSlider {
    overflow: visible;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.ds2__napitkiSlide {
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ds2__napitkiSlide:nth-child(even) {
  margin-top: 100px;
}
@media (max-width: 1023px) {
  .ds2__napitkiSlide:nth-child(even) {
    margin-top: 85px;
  }
}
@media (max-width: 767px) {
  .ds2__napitkiSlide:nth-child(even) {
    margin-top: 70px;
  }
}
.ds2__napitkiImg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 39/58;
  -o-object-fit: cover;
  object-fit: cover;
	border-radius: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .ds2__napitkiImg {
    margin-bottom: 17px;
  }
}
@media (max-width: 767px) {
  .ds2__napitkiImg {
    margin-bottom: 14px;
  }
}
.ds2__napitkiName {
  color: #92140C;
  font-size: 34px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  margin: 0 0 25px;
}
@media (max-width: 1023px) {
  .ds2__napitkiName {
    margin-bottom: 18px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ds2__napitkiName {
    margin-bottom: 11px;
    font-size: 14px;
  }
}
.ds2__napitkiDescr {
  color: #4C1E0F;
  font-size: 19px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .ds2__napitkiDescr {
    margin-bottom: 21px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .ds2__napitkiDescr {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.ds2__napitkiLink {
  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: 100%;
  border-radius: 32px;
  background: #FFF;
  padding: 14px 30px;
  color: #92140C;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .ds2__napitkiLink {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 19px;
    padding: 10px 30px;
  }
}
@media (max-width: 767px) {
  .ds2__napitkiLink {
    font-size: 14px;
    padding: 6px 30px;
  }
}
@media (hover: hover) {
  .ds2__napitkiLink:hover {
    background: #92140C;
    color: #fff;
  }
}