:root {
  --color-text-primary: #573A2C;
  --color-text-white: #FFFFFF;
  --color-background-white: #FFFFFF;
  --color-background-hover: #F59727;
  --color-gray: #B4B4B4;
  --color-light-grayish-blue: #EEEEEF;
  --color-very-light-gray: #EAEAEA;
  --color-black-light: rgba(0, 0, 0, 0.6980392157);
  --color-black: #000000;
  --font-text: Gotham, sans-serif;
  --font-title: DaysOne, sans-serif;
  --font-text-64: 64px;
  --font-text-59: 59px;
  --font-text-58: 58px;
  --font-text-56: 56px;
  --font-text-48: 48px;
  --font-text-42: 42px;
  --font-text-40: 40px;
  --font-text-36: 36px;
  --font-text-32: 32px;
  --font-text-28: 28px;
  --font-text-26: 26px;
  --font-text-24: 24px;
  --font-text-23: 23px;
  --font-text-22: 22px;
  --font-text-20: 20px;
  --font-text-18: 18px;
  --font-text-16: 16px;
  --font-text-14: 14px;
  --font-text-12: 12px;
  --font-text-10: 10px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-text);
  font-size: var(--font-text-18);
  line-height: 1.2;
  color: var(--color-text-primary);
  background-color: var(--color-background-white);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DaysOne";
  src: url("../fonts/days-one/DaysOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 1024px) {
  .container {
    max-width: 1024px;
    margin: 0 20px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width: 460px) {
  .container {
    max-width: 343px;
    margin: 0 auto;
  }
}
@media (max-width: 360px) {
  .container {
    max-width: 320px;
  }
}

.section {
  padding: 60px 0;
}
.section__title {
  font-size: var(--font-text-40);
  font-weight: 700;
  color: var(--color-text-primary);
}
@media (max-width: 460px) {
  .section__title {
    font-size: 23px;
    line-height: 42px;
    height: 39px;
  }
}

.btn {
  background: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
  color: var(--color-text-white);
}
.btn-primary {
  display: block;
  height: 48px;
  padding: 16px 42px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: var(--font-text-16);
  line-height: var(--font-text-16);
  letter-spacing: 0px;
}
.btn:focus, .btn:hover {
  /* opacity: 0.85; */
  background: var(--color-background-hover);
  border: 1px solid var(--color-background-hover);
}
.btn__nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.btn__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 1px solid #E0E0E0;
  font-size: 34px;
  color: #463E3B;
  /* @include flex-center; */
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.hero-section {
  margin-top: 88px;
  padding: 0;
}
@media (max-width: 460px) {
  .hero-section {
    margin-top: 107px;
  }
}
.hero-section .container {
  max-width: 1304px;
}
@media (max-width: 460px) {
  .hero-section .container {
    max-width: 440px;
  }
}
@media (max-width: 360px) {
  .hero-section .container {
    max-width: 320px;
  }
}
.hero-section:has(.hero-detail) {
  margin-top: 94px;
}
.hero__logo {
  width: 100%;
  height: auto;
  max-height: 564px;
  overflow: hidden;
}
.hero__logo.hero-detail {
  /* width: 916px; */
}
.hero__logo img {
  width: 100%;
  margin: auto;
}
.hero__title {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .hero__title {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}
.hero__title.hero-detail {
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 18%;
  gap: 20px;
}
@media (max-width: 640px) {
  .hero__title.hero-detail {
    padding-left: 0px;
  }
}
.hero__title.hero-detail p {
  line-height: 30px;
}
.hero__title-button {
  display: none;
  width: 100%;
}
@media (max-width: 460px) {
  .hero__title-button {
    display: block;
  }
}
.hero__title-section {
  padding: 41px 0 50px 0;
}
.hero__title-section:has(.hero-detail) {
  padding: 24px 0 50px 0;
}
.hero__title h1 {
  font-weight: 400;
  font-size: var(--font-text-59);
  line-height: 57px;
  letter-spacing: 0%;
}
@media (max-width: 460px) {
  .hero__title h1 {
    font-size: 38px;
    line-height: 42px;
    letter-spacing: 0%;
  }
}
.hero__title p {
  font-weight: 400;
  font-size: var(--font-text-24);
  line-height: 20px;
  letter-spacing: 0%;
}
@media (max-width: 941px) {
  .hero__title p br {
    display: none;
  }
}
@media (max-width: 460px) {
  .hero__title p {
    font-size: 16px;
  }
}

.stats {
  padding: 60px 0 60px 0;
}
@media (max-width: 1170px) {
  .stats {
    padding: 9px 0 0px 0;
  }
}
.stats__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  height: 320px;
  margin-left: 7px;
}
@media (max-width: 955px) {
  .stats__wrapper {
    grid-template-columns: 338px;
    grid-template-rows: 273px;
    height: 100%;
  }
}
.stats__card {
  position: relative;
}
.stats__card::before {
  content: "";
  position: absolute;
  top: 22.41px;
  left: 15px;
  width: 363px;
  height: 300px;
  background-image: url(../img/background-stats-1.svg);
  -webkit-transform: rotate(22.11deg);
      -ms-transform: rotate(22.11deg);
          transform: rotate(22.11deg);
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media (max-width: 955px) {
  .stats__card--rat1 .h2 {
    margin-top: 91px !important;
    margin-left: -27px !important;
    margin-bottom: 4px !important;
  }
}
.stats__card--rat1 p {
  padding: 0 48px 0 60px;
}
@media (max-width: 1170px) {
  .stats__card--rat1 p {
    padding: 0 68px 0 71px;
  }
}
@media (max-width: 955px) {
  .stats__card--rat1 p {
    padding: 0px 95px 0 74px;
  }
}
.stats__card--rat1::before {
  top: 14px;
  left: 6px;
  width: 363px;
  height: 305px;
  background-image: url(../img/background-stats-1.svg);
  -webkit-transform: rotate(22.11deg);
      -ms-transform: rotate(22.11deg);
          transform: rotate(22.11deg);
}
@media (max-width: 1170px) {
  .stats__card--rat1::before {
    -webkit-transform: rotate(22.11deg) scale(0.82);
        -ms-transform: rotate(22.11deg) scale(0.82);
            transform: rotate(22.11deg) scale(0.82);
    top: 9.41px;
  }
}
@media (max-width: 955px) {
  .stats__card--rat1::before {
    top: 7px;
    left: -18px;
    -webkit-transform: rotate(22.11deg) scale(0.82);
        -ms-transform: rotate(22.11deg) scale(0.82);
            transform: rotate(22.11deg) scale(0.82);
  }
}
.stats__card--rat2 .h2 {
  margin-left: 6px;
  margin-bottom: 6px !important;
}
@media (max-width: 955px) {
  .stats__card--rat2 .h2 {
    margin-top: 47px !important;
    margin-left: -19px !important;
    margin-bottom: 4px !important;
  }
}
.stats__card--rat2 p {
  padding: 0 11px 0 42px;
}
@media (max-width: 1170px) {
  .stats__card--rat2 p {
    padding: 0px 3px 0 73px;
  }
}
@media (max-width: 955px) {
  .stats__card--rat2 p {
    padding: 0px 46px 0 29px;
  }
}
.stats__card--rat2-2::before {
  top: -18px;
  left: -1px;
  width: 391px;
  height: 365px;
  background-image: url(../img/background-stats-2-2.svg);
  -webkit-transform: rotate(134.11deg);
  -ms-transform: rotate(134.11deg);
  transform: rotate(366.11deg);
}
.stats__card--rat2::before {
  top: 0px;
  left: 19px;
  width: 354px;
  height: 365px;
  background-image: url(../img/background-stats-2.svg);
  -webkit-transform: rotate(131deg);
      -ms-transform: rotate(131deg);
          transform: rotate(131deg);
}
@media (max-width: 1170px) {
  .stats__card--rat2::before {
    -webkit-transform: rotate(134.11deg) scale(0.82);
        -ms-transform: rotate(134.11deg) scale(0.82);
            transform: rotate(134.11deg) scale(0.82);
    top: -9px;
  }
}
@media (max-width: 955px) {
  .stats__card--rat2::before {
    top: -11px;
    left: -1px;
    width: 329px;
    height: 238px;
    background-image: url(../img/background-stats-2-mobile.svg);
    -webkit-transform: rotate(0.11deg);
        -ms-transform: rotate(0.11deg);
            transform: rotate(0.11deg);
  }
}
@media (max-width: 955px) {
  .stats__card--rat3 {
    padding: 43px 39px 59px 39px;
  }
}
.stats__card--rat3 .h2 {
  margin-left: 7px;
  margin-bottom: 6px !important;
}
@media (max-width: 955px) {
  .stats__card--rat3 .h2 {
    margin-top: 72px !important;
    margin-left: -27px !important;
  }
}
.stats__card--rat3 p {
  padding: 0 62px 0 41px;
}
@media (max-width: 1170px) {
  .stats__card--rat3 p {
    padding: 0px 15px 0 64px;
  }
}
@media (max-width: 955px) {
  .stats__card--rat3 p {
    padding: 0px 0px 0 0px;
  }
}
.stats__card--rat3::before {
  top: 3px;
  left: -8px;
  width: 363px;
  height: 332px;
  background-image: url(../img/background-stats-3.svg);
  -webkit-transform: rotate(-47.89deg);
      -ms-transform: rotate(-47.89deg);
          transform: rotate(-47.89deg);
}
@media (max-width: 1170px) {
  .stats__card--rat3::before {
    -webkit-transform: rotate(-47.89deg) scale(0.82);
        -ms-transform: rotate(-47.89deg) scale(0.82);
            transform: rotate(-47.89deg) scale(0.82);
    top: -9px;
  }
}
@media (max-width: 955px) {
  .stats__card--rat3::before {
    top: 41px;
    left: -1px;
    width: 329px;
    height: 260px;
    background-image: url(../img/background-stats-3-mobile.svg);
    -webkit-transform: rotate(0.11deg);
        -ms-transform: rotate(0.11deg);
            transform: rotate(0.11deg);
  }
}
.stats__card .h2 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: var(--font-text-64);
  line-height: 58px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-top: 85px;
  margin-bottom: 16px;
}
@media (max-width: 1170px) {
  .stats__card .h2 {
    font-size: 52px;
    margin-top: 60px;
    margin-left: 48px;
  }
}
@media (max-width: 955px) {
  .stats__card .h2 {
    font-size: 42px;
    line-height: 51px;
    letter-spacing: 0%;
  }
}
.stats__card .h2 span {
  font-size: var(--font-text-48);
}
.stats__card p {
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
}
@media (max-width: 1040px) {
  .stats__card p br {
    display: none;
  }
}
@media (max-width: 1170px) {
  .stats__card p {
    font-size: 16px;
  }
}
@media (max-width: 955px) {
  .stats__card p {
    line-height: 17.55px;
    letter-spacing: 0%;
    text-align: center;
  }
}

.catalog {
  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;
}
.catalog__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  /* flex-wrap: wrap; */
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.catalog__filters::-webkit-scrollbar {
  width: 0;
  height: 0;
}
@media (max-width: 460px) {
  .catalog__filters {
    gap: 8px;
  }
}
.catalog__filters-btn {
  padding: 14px 20px;
  min-width: 78px;
  border-radius: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 400;
  font-size: var(--font-text-16);
  line-height: 16px;
  letter-spacing: 3%;
  text-align: center;
  border: 2px solid var(--color-very-light-gray);
  color: var(--color-black);
}
@media (max-width: 640px) {
  .catalog__filters-btn {
    padding: 16px 6px;
  }
}
.catalog__filters-btn:hover, .catalog__filters-btn.active {
  background: var(--color-gray);
  border: 2px solid var(--color-gray);
  color: var(--color-text-white);
}
.catalog__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  row-gap: 44px;
}
@media (max-width: 1024px) {
  .catalog__products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .catalog__products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 360px) {
  .catalog__products {
    grid-template-columns: 1fr;
  }
}
.catalog__product-card {
  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;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  border-radius: 20px;
}
.catalog__product-image {
  border-radius: 20px;
  background: var(--color-light-grayish-blue);
  width: 100%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.catalog__product-image img {
  height: 200px;
}
@media (max-width: 460px) {
  .catalog__product-image img {
    height: 130px;
  }
}
.catalog__product-body {
  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;
  min-height: 87px;
}
.catalog__product-title {
  font-family: var(--font-text);
  font-size: var(--font-text-18);
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--color-black);
}
@media (max-width: 460px) {
  .catalog__product-title {
    font-size: var(--font-text-16);
  }
}
.catalog__product-text {
  font-weight: 400;
  font-size: var(--font-text-16);
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--color-black-light);
}
.catalog__product-button {
  margin-top: auto;
  padding: 16px;
  width: 100%;
  border-radius: 12px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  font-weight: 700;
  font-size: var(--font-text-16);
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cta--section {
  padding: 98px 0;
}
@media (max-width: 460px) {
  .cta--section {
    padding: 22px 0;
  }
}
@media (max-width: 1024px) {
  .cta {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.cta::before {
  content: "";
  position: absolute;
  top: -76px;
  left: -137px;
  width: 100%;
  height: 590px;
  background-image: url(../img/content/cta/pattern-2.png);
  background-repeat: no-repeat;
}
@media (max-width: 460px) {
  .cta::before {
    top: 146px;
    left: -96px;
    background-image: url(../img/content/cta/where-to-buy-3.svg);
  }
}
.cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: auto;
  margin-bottom: 59px;
  gap: 33px;
  z-index: 1;
}
.cta__title {
  font-weight: 400;
  font-size: var(--font-text-42);
  line-height: 50px;
  letter-spacing: 0%;
}
@media (max-width: 460px) {
  .cta__title {
    font-size: var(--font-text-23);
    line-height: 27px;
  }
}
.cta__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 546px;
  height: 48px;
  padding: 16px 42px;
  border-radius: 12px;
  font-weight: 700;
  font-size: var(--font-text-16);
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
}
@media (max-width: 460px) {
  .cta__button {
    border-radius: 11px;
    font-size: 14px;
    line-height: 7px;
    width: 100%;
  }
}
.cta__images {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 460px) {
  .cta__images {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
}
.cta__image {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 460px) {
  .cta__image {
    width: inherit;
    height: inherit;
  }
}
.cta__image--cat {
  top: -97px;
  left: -14px;
}
@media (max-width: 460px) {
  .cta__image--cat {
    display: none;
  }
}
.cta__image--dog {
  top: -62px;
  left: -3px;
}
@media (max-width: 460px) {
  .cta__image--dog {
    display: none;
  }
}
.cta__image--mobile {
  display: none;
}
@media (max-width: 460px) {
  .cta__image--mobile {
    display: block;
  }
}

.reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
.reviews__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.reviews__wpapper {
  overflow: hidden;
  width: 100%;
}
.reviews__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 18px;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.reviews__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  /* justify-content: space-between; */
  height: 206px;
  padding: 40px 26px;
  border-radius: 20px;
  background-color: rgba(245, 245, 245, 0.6);
  overflow-x: auto;
  /* scrollbar-width: thin; */
  scrollbar-width: none;
}
@media (max-width: 1024px) {
  .reviews__card {
    min-width: calc(50% - 10px) !important;
    padding: 29px 19px;
  }
}
@media (max-width: 640px) {
  .reviews__card {
    min-width: 100% !important;
    padding: 29px 19px;
  }
}
.reviews__card::-webkit-scrollbar {
  display: none;
}
.reviews__card > p {
  font-weight: 400;
  line-height: 116%;
  letter-spacing: 0%;
}
.where {
  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: 460px) {
  .where {
    gap: 0px;
  }
}
.where-section {
  padding: 0 0 60px 0;
}
.where__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 680px) {
  .where__wrapper {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.where__col {
  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;
}
.where__col-title {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: var(--font-text-24);
  line-height: 50px;
  letter-spacing: 0%;
  color: #000000;
}
@media (max-width: 460px) {
  .where__col-title {
    font-size: var(--font-text-16);
    height: 26px;
  }
}
.where__col-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: 18px;
}
.where__col-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(224, 224, 224, 0.6980392157);
  padding: 15px 7px;
  height: 60px;
  border-radius: 50px;
  cursor: pointer;
}
@media (max-width: 460px) {
  .where__col-item {
    padding: 5px;
    height: 48px;
  }
}
.where__col-item:hover {
  background: var(--color-background-hover);
}
@media (max-width: 460px) {
  .where__col-icon {
    width: 38px;
    height: 38px;
  }
}
.where__col-text {
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -2%;
  /* font-variant: small-caps; */
}
@media (max-width: 460px) {
  .where__col-text {
    font-size: var(--font-text-16);
  }
}
@media (max-width: 460px) {
  .where__col-arrow {
    width: 38px;
    height: 38px;
  }
}

.partners {
  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;
}
@media (max-width: 460px) {
  .partners {
    gap: 14px;
  }
}
.partners__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.partners__slider {
  overflow: hidden;
  width: 100%;
}
.partners__slider-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 18px;
  height: 117px;
}
@media (max-width: 460px) {
  .partners__slider-cards {
    gap: 10px;
    height: 100%;
  }
}
.partners__card {
  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: 274px;
  height: 112px;
  background: #FFFFFF;
  border: 2px solid rgba(59, 41, 31, 0.2);
  border-radius: 11.2747px;
}
@media (max-width: 768px) {
  .partners__card {
    min-width: calc(33.3333333333% - 13px) !important;
  }
}
@media (max-width: 640px) {
  .partners__card {
    min-width: calc(50% - 13px) !important;
  }
}
@media (max-width: 460px) {
  .partners__card {
    min-width: 100% !important;
  }
}
.partners__card img {
  max-height: 100px;
  /* height: 100%; */
}
@media (max-width: 460px) {
  .partners__card img {
    max-height: 65px;
  }
}
.partners__card:hover, .partners__card:focus {
  border: 2px solid var(--color-background-hover);
}

@media (max-width: 740px) {
  [data-overlay=true]::before {
    content: "";
    position: absolute;
    top: -36px;
    left: 0px;
    width: 100%;
    height: 100vh;
    opacity: 0.66;
    background-color: #000000;
    z-index: -1;
  }
}

.header {
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 460px) {
  .header {
    padding: 37px 0 23px 0;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 740px) {
  .header__wrapper-overlay::before {
    content: "";
    position: absolute;
    top: -36px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.66;
    background-color: #000000;
    z-index: -1;
  }
}
.header--white {
  background-color: #FFFFFF;
}
.header__wrapper:has(.burger--open) .header__logo {
  position: relative;
  top: 35px;
  left: 25px;
}
.header__wrapper:has(.burger--open) .header__social {
  display: block;
}
.header__logo {
  z-index: 2;
}
@media (max-width: 740px) {
  .header__nav {
    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: 10px;
    border-top-left-radius: 33px;
    border-top-right-radius: 33px;
    visibility: hidden;
    opacity: 1;
    position: absolute;
    top: -100%;
    left: 0;
    height: 100vh;
    width: 100%;
    padding: 90px 20px;
    background-color: #FFFFFF;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    z-index: 1;
    /* height: calc(100vh - 180px); */
    height: 100vh;
    margin-right: -10px;
    padding-right: 10px;
  }
}
.header__social {
  display: none;
}
.header__social-btn svg {
  border-radius: 100px;
  border: 1px solid #EAEAEA;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
}
@media (max-width: 740px) {
  .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    max-width: 335px;
  }
}
.nav__link {
  font-weight: 400;
  font-size: var(--font-text-md);
  /* line-height: 150%; */
  letter-spacing: -7%;
  color: var(--color-text-primary);
  /* transition: var(--transition); */
}
@media (max-width: 740px) {
  .nav__link {
    padding: 20px;
    height: 59px;
    border-bottom: 2px solid #F5F5F5;
  }
}
.nav__link:hover, .nav__link:focus {
  color: #FCE0BE;
}

.burger {
  display: none;
  z-index: 1;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 740px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.burger--open {
  top: 34px;
  left: -11px;
  border: 1px solid #EAEAEA;
  border-radius: 100px;
  padding: 17px;
}
.burger--open:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.burger--open span:nth-child(1) {
  left: 5px;
  top: 50% !important;
  -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) {
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.burger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.burger span:nth-child(1) {
  top: 5px;
}
.burger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.burger span:nth-child(3) {
  bottom: 5px;
}

.vis {
  visibility: visible;
  top: 36px;
}

.footer {
  background-color: #573A2C;
  color: #FFFFFF;
  margin-top: 60px;
  padding: 40px 0;
}
.footer__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: 60px;
}
.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 960px) {
  .footer__item:has(.footer__logo) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    gap: 32px;
  }
}
.footer__logo {
  height: 60px;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media (max-width: 460px) {
  .footer__nav {
    display: none;
  }
}
.footer__link {
  font-weight: 400;
  font-size: var(--font-text-16);
  line-height: 150%;
  letter-spacing: -1.1%;
}
.footer__link:hover, .footer__link:focus {
  color: #FCE0BE;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media (max-width: 460px) {
  .footer__socials {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.footer__social-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
.footer__social:hover, .footer__social:focus {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.footer__btn {
  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: 16px 64px;
  background: #FFFFFF;
  border-radius: 48px;
  font-weight: 700;
  font-size: var(--font-text-16);
  line-height: 16px;
  letter-spacing: 0px;
  color: #573A2C;
}
.footer__btn:hover, .footer__btn:focus {
  background: #FCE0BE;
}
.footer__legal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 960px) {
  .footer__legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 12px;
  }
}
.footer__legal-link {
  font-weight: 400;
  font-size: var(--font-text-14);
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.footer__legal-link:hover, .footer__legal-link:focus {
  color: #FCE0BE;
}
@media (max-width: 768px) {
  .footer__legal-link {
    text-underline-offset: 2px;
    line-height: 1.3;
  }
}
@media (max-width: 768px) {
  .footer__legal {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__copyright {
  position: relative;
  margin-top: -34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-weight: 400;
  font-size: var(--font-text-14);
  line-height: 100%;
  letter-spacing: 0%;
}
@media (max-width: 460px) {
  .footer__copyright {
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* height: calc(var(--vh, 1vh) * 100); */
  background: rgba(0, 0, 0, 0.7);
}

.modal {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-height: 90vh;
  background-color: #FFFFFF;
  z-index: 102;
  border-radius: 20px;
}
.modal__product {
  width: 80%;
  height: 85vh;
  max-height: unset;
}
@media (max-width: 1024px) {
  .modal__product {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .modal__product {
    width: 75%;
  }
}
@media (max-width: 460px) {
  .modal__product {
    width: 100%;
  }
}
.modal__content {
  height: 100%;
}
.modal__form {
  max-width: 580px;
}
@media (max-width: 768px) {
  .modal__form {
    right: 0;
    bottom: auto;
    width: 78%;
  }
}
@media (max-width: 460px) {
  .modal__form {
    right: 0;
    bottom: auto;
    width: 100%;
  }
}
.modal__map {
  width: 70%;
}
@media (max-width: 1024px) {
  .modal__map {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .modal__map {
    right: 0;
    bottom: auto;
    width: 100%;
  }
}
.modal__map-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: 18px;
  width: 100%;
  height: calc(97vh - 100px);
  border-radius: 20px;
  padding: 32px;
}
@media (max-width: 460px) {
  .modal__map-content {
    padding: 16px;
  }
}
.modal__map-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.modal__map-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60%;
  height: 60px;
  padding: 15px 7px;
  border-radius: 10px;
  border: 2px solid #EAEAEA;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -1.1%;
  font-variant: small-caps;
  color: #3B291F;
}
@media (max-width: 460px) {
  .modal__map-input {
    width: 100%;
  }
}
.modal__map-input input {
  width: 100%;
  height: 100%;
  outline: 0;
  border: 0px;
}
.modal__map-map {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.modal__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: var(--font-text-32);
  line-height: 28px;
  letter-spacing: 0%;
  color: #3B291F;
}
@media (max-width: 768px) {
  .modal__title {
    font-size: var(--font-text-24);
    width: calc(100% - 40px);
  }
}
.modal__close {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: -58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #B4B4B4;
  border-radius: 50px;
}
@media (max-width: 460px) {
  .modal__close {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
    top: 5px;
    right: 4px;
  }
}
.open {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}

.form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding: 32px;
}
@media (max-width: 768px) {
  .form {
    padding: 16px;
  }
}
@media (max-width: 460px) {
  .form {
    right: 0;
    bottom: auto;
  }
}
.form__header--left {
  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__header--right {
  cursor: pointer;
  position: absolute;
  right: -59px;
  top: 0px;
}
@media (max-width: 460px) {
  .form__header--right {
    right: 4px;
    top: 9px;
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
  }
}
.form__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #B4B4B4;
  border-radius: 50px;
}
.form__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: var(--font-text-32);
  color: #573A2C;
}
@media (max-width: 460px) {
  .form__title {
    font-size: var(--font-text-20);
  }
}
.form__text {
  font-weight: 400;
  color: #573A2C;
}
@media (max-width: 460px) {
  .form__text {
    font-size: var(--font-text-16);
  }
}
.form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media (max-width: 460px) {
  .form__body {
    gap: 9px;
  }
}
.form__field textarea {
  resize: none;
}
.form__field input,
.form__field textarea {
  width: 100%;
  height: 46px;
  gap: 10px;
  border-radius: 10px;
  padding: 12px;
  background-color: #EAEAEA;
  outline: 0;
  border: 0px;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: var(--font-text-18);
  line-height: 100%;
  letter-spacing: 0%;
  cursor: pointer;
}
.form__field input::-webkit-input-placeholder, .form__field textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6980392157);
}
.form__field input::-moz-placeholder, .form__field textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6980392157);
}
.form__field input:-ms-input-placeholder, .form__field textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6980392157);
}
.form__field input::-ms-input-placeholder, .form__field textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6980392157);
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.6980392157);
}
.form__field input:hover, .form__field input:focus,
.form__field textarea:hover,
.form__field textarea:focus {
  background-color: #FCE0BE;
}
.form__field textarea {
  height: 142px;
}
.form__check {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.form__check input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border: 0px;
  width: 24px;
  height: 24px;
  outline: 0;
}
.form__check input::before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-image: url("../img/icon/icon-checkbox-unchecked.svg");
}
.form__check input:checked::before {
  background-image: url("../img/icon/icon-checkbox-checked.svg");
}
.form__check input[disabled]::before {
  background-image: url("../img/icon/icon-checkbox-disabled.svg");
}
.form__check input[disabled]:checked::before {
  background-image: url("../img/icon/icon-checkbox-checked-disabled.svg");
}
.form__check label {
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font-text-16);
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.form__check label a {
  text-decoration: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.form__check label a:hover, .form__check label a:focus {
  color: #FCE0BE;
}
.form__captcha {
  height: 78px;
  background: #D9D9D9;
}
.form__btn {
  width: 176px;
  height: 48px;
  padding: 16px 42px;
  gap: 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: var(--font-text-16);
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
  margin-top: 9px;
}

.thanks {
  display: none;
  width: 488px;
  padding: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.thanks__title {
  position: relative;
  top: -9px;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: var(--font-text-32);
  line-height: 40px;
  letter-spacing: 0%;
  color: #573A2C;
}
.thanks__text {
  position: relative;
  top: -15px;
  width: calc(100% - 21px);
  font-weight: 400;
  text-align: center;
  color: #573A2C;
}
.thanks__button > * {
  display: block;
  padding: 16px 41px;
  border-radius: 12px;
  font-weight: 700;
  font-size: var(--font-text-16);
  line-height: var(--font-text-16);
}

.container-product {
  padding: 32px 20px 32px 32px;
  overflow: hidden;
}
@media (max-width: 860px) {
  .container-product {
    height: inherit;
  }
}
@media (max-width: 768px) {
  .container-product {
    padding: 20px;
  }
}
@media (max-width: 460px) {
  .container-product {
    padding: 16px 10px 16px 16px;
    width: 100%;
    overflow-x: auto;
  }
}

.content__product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  padding: 0px;
  height: 100%;
}
@media (max-width: 860px) {
  .content__product {
    display: block;
    overflow-y: auto;
    scrollbar-color: #AAAAAA #FFFFFF;
    scrollbar-width: thin;
    height: 100%;
  }
}
.content__product-left {
  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: 10px;
  overflow: hidden;
}
.content__product-img {
  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;
  background-color: #EEEEEF;
  padding: 39px;
  border-radius: 28px;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}
.content__product-img img {
  margin: auto;
}
@media (max-height: 1092px) {
  .content__product-img img {
    max-height: 55.5555555556vh;
  }
}
@media (max-height: 650px) {
  .content__product-img img {
    max-height: 50vh;
  }
}
@media (max-height: 580px) {
  .content__product-img img {
    max-height: 33.3333333333vh;
  }
}
@media (max-height: 380px) {
  .content__product-img img {
    max-height: 25vh;
  }
}
.content__product-rigth {
  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;
  padding-right: 65px;
  line-height: 20px;
  letter-spacing: 0%;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: calc(97vh - 100px);
  scrollbar-color: #AAAAAA #FFFFFF;
  scrollbar-width: thin;
  color: #3B291F;
}
@media (max-width: 1240px) {
  .content__product-rigth {
    padding-right: 15px;
  }
}
@media (max-width: 860px) {
  .content__product-rigth {
    overflow: hidden;
    padding-right: 0px;
    max-height: 40000px;
    margin-top: 20px;
  }
}
.content__product h2 {
  font-weight: 400;
  font-size: var(--font-text-32);
  line-height: 38px;
  letter-spacing: 0%;
}
.content__product h3 {
  font-family: var(--font-text);
  font-size: var(--font-text-18);
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0%;
}
.content__product strong {
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0%;
}
.content__product ul {
  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: 12px;
  margin-left: 0px;
}
.content__product ul li {
  position: relative;
  margin-left: 43px;
}
.content__product ul li::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -42px;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon/ul-li-marker-jackdaw.svg);
  background-repeat: no-repeat;
  height: 100%;
  top: calc(50% - 12px);
}
.content__product table {
  font-weight: 400;
  font-size: var(--font-text-16);
  line-height: 14.13px;
  letter-spacing: 0px;
  border-collapse: separate;
  border-spacing: 7px 12px;
}
@media (max-width: 640px) {
  .content__product table {
    font-size: 13px;
    line-height: 9.59px;
  }
}
@media (max-width: 460px) {
  .content__product table {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .content__product table {
    font-size: 10px;
  }
}
@media (max-width: 320px) {
  .content__product table {
    font-size: 8px;
  }
}
.content__product table.dark-blue td {
  background-color: rgba(17, 96, 159, 0.1882352941);
}
.content__product table.dark-blue td:nth-child(even) {
  background-color: rgba(17, 96, 159, 0.3019607843);
}
.content__product table.pale-orange td {
  background-color: #FDEAD4;
}
.content__product table.pale-orange td:nth-child(even) {
  background-color: #FFD7A9;
}
.content__product table.pale-orange thead td {
  background-color: #EEEEEF;
}
.content__product table.pale-orange thead td:nth-child(even) {
  background-color: #DEDEE1;
}
.content__product table caption,
.content__product table tr {
  height: 43px;
}
.content__product table tr:has(th) {
  height: 15px;
}
@media (max-width: 460px) {
  .content__product table tr:has(th) {
    height: 29px;
  }
}
.content__product table caption,
.content__product table td {
  padding: 15px 3px;
  text-align: center;
  border-radius: 42px;
}
@media (max-width: 320px) {
  .content__product table caption,
  .content__product table td {
    border-radius: 8px;
  }
}
.content__product table caption {
  font-weight: 700;
  background-color: #EEEEEF;
}
.content__product table thead tr {
  font-weight: 700;
}
.content__product table thead tr:has(td:nth-last-child(4):first-child),
.content__product table thead tr:has(td:nth-last-child(3):first-child),
.content__product table thead tr:has(td:nth-last-child(2):first-child) {
  font-weight: 400;
}
.content__product table thead td {
  background-color: #EEEEEF;
}
.content__product table td {
  background-color: #FDEAD4;
}
.content__product table th {
  padding: 0px;
  font-weight: 400;
  text-align: center;
  background-color: #FFFFFF;
}

.cookie {
  display: none;
  position: fixed;
  bottom: 50px;
  left: 0;
  width: 100%;
  z-index: 100;
}
.cookie__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  max-width: 420px;
  /* box-shadow: 3px 5px 16.9px 0px #00000026; */
  -webkit-box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.6);
          box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.6);
}
@media (max-width: 460px) {
  .cookie__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
    gap: 10px;
    max-width: 220px;
  }
}
.cookie__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: 8px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cookie__text-title {
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0%;
  color: #000000;
}
.cookie__text-text {
  font-weight: 400;
  font-size: var(--font-text-16);
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(0, 0, 0, 0.6980392157);
}
.cookie__text-text:hover {
  color: #FCE0BE;
}
.cookie .btn {
  font-weight: 700;
  font-size: var(--font-text-16);
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
}

.filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 57px;
}
.filter-section {
  padding: 22px 0;
}
.filter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  .filter__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.filter__item input {
  padding: 15px 1px;
  border-radius: 48px;
  width: 100%;
  height: 100%;
  border: 0px;
  outline: 0;
}
.filter__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 48px;
  border: 2px solid #EAEAEA;
  width: 64.2%;
}
@media (max-width: 640px) {
  .filter__search {
    width: 100%;
  }
}
.filter__tags {
  width: 64.2%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: var(--font-text-16);
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
}
@media (max-width: 640px) {
  .filter__tags {
    width: 100%;
    gap: 5px;
  }
}
@media (max-width: 360px) {
  .filter__tags {
    grid-template-columns: 1fr;
  }
}
.filter__tags button {
  height: 48px;
  border-radius: 48px;
  padding: 16px 24px;
  color: #000000;
}

.catalog__block {
  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;
}
.catalog__block:not(:last-child) {
  margin-bottom: 88px;
}
.catalog__cat h3 {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: var(--font-text-24);
  line-height: 50px;
  letter-spacing: 0%;
  color: #000000;
}
.catalog__item:not(:last-child) {
  margin-bottom: 44px;
}
.catalog__item h4 {
  font-weight: 400;
  font-size: var(--font-text-40);
  line-height: 40px;
  letter-spacing: 0%;
  color: #573A2C;
  margin-bottom: 21px;
}
.catalog__item-box {
  display: grid;
  grid-template-columns: 61.29% 1fr;
  gap: 10px;
  padding: 18px;
  background-color: #EEEEEF;
  border-radius: 22px;
}
@media (max-width: 891px) {
  .catalog__item-box {
    grid-template-columns: 1fr 324px;
  }
}
@media (max-width: 640px) {
  .catalog__item-box {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 360px) {
  .catalog__item-box {
    padding: 12px;
  }
}
.catalog__item-box_left {
  padding: 18px;
  background-color: #FFFFFF;
  border-radius: 12px;
}
.catalog__item-box_left h5 {
  margin: 5px 0 26px 0;
  font-family: var(--font-text);
  font-size: var(--font-text-18);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #000000;
}
.catalog__item-box_left p {
  font-weight: 400;
  line-height: 122%;
  letter-spacing: 0.4%;
  color: #000000;
}
@media (max-width: 460px) {
  .catalog__item-box_left p {
    font-size: var(--font-text-16);
  }
}
.catalog__item-box_rigth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media (max-width: 360px) {
  .catalog__item-box_rigth {
    gap: 12px;
  }
}
.catalog__item-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px;
  border-radius: 12px;
  background-color: #FFFFFF;
}
.catalog__item-product > * {
  pointer-events: none;
}
@media (max-width: 1024px) {
  .catalog__item-product {
    gap: 5px;
  }
}
.catalog__item-product-img {
  min-width: 64px;
  width: 64px;
  height: 80px;
}
@media (max-width: 360px) {
  .catalog__item-product-img {
    height: 60px;
    /* width: 64px; */
    min-width: 44px;
  }
}
.catalog__item-product img {
  /* width: inherit; */
  height: inherit;
  margin: auto;
}
.catalog__item-product h5 {
  font-family: var(--font-text);
  font-size: var(--font-text-18);
  font-weight: 700;
  line-height: 114%;
  letter-spacing: 0.4%;
  color: #000000;
}
@media (max-width: 460px) {
  .catalog__item-product h5 {
    font-size: var(--font-text-16);
  }
}
@media (max-width: 360px) {
  .catalog__item-product h5 {
    font-size: var(--font-text-14);
  }
}
.catalog__item-product svg {
  border-radius: 100px;
  border: 1px solid #E0E0E0;
}
.catalog__item-product:hover svg {
  background-color: #B4B4B4;
  border: 1px solid #B4B4B4;
}

body:has(.four_hundred_four) .footer {
  margin-top: 0px;
}

.four_hundred_four {
  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: end;
  gap: 32px;
  height: 91vh;
  background-image: url(../img/404.jpg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1440px;
  margin: auto;
  padding-bottom: 104px;
}
.four_hundred_four::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  background-image: url(../img/404.jpg);
}
.four_hundred_four h1 {
  font-weight: 400;
  font-size: 59px;
  line-height: 57px;
  letter-spacing: 0%;
  color: #573A2C;
}
.four_hundred_four p {
  font-weight: 400;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #573A2C;
}

#icon-social-vk-style rect {
  fill: #FFFFFF;
}
#icon-social-vk-style path {
  fill: #573A2C;
}
#icon-social-vk-style:hover rect {
  fill: #0077FF;
}
#icon-social-vk-style:hover path {
  fill: #FFFFFF;
}

#icon-social-email-style rect {
  fill: #FFFFFF;
}
#icon-social-email-style path {
  fill: #573A2C;
}
#icon-social-email-style:hover path {
  fill: #F59727;
}

#icon-form-close-style rect {
  fill: #FFFFFF;
}
#icon-form-close-style:hover rect {
  fill: rgba(255, 255, 255, 0.2);
}
/*# sourceMappingURL=style.css.map */
