@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/geometria");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.header {
  background-color: #fff;
  padding: 20px 0px;
  border-radius: 0px 0px 20px 20px;
  box-shadow: 0px 4px 20px 0px rgba(62, 63, 59, 0.07);
  top: 0;
  position: sticky;
  z-index: 50;
}
@media (max-width: 640px) {
  .header {
    padding: 12px 0px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .header__inner > nav:nth-child(2) {
    order: 3;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__logo img {
  width: 100%;
}
@media (max-width: 1536px) {
  .header__logo img {
    max-width: 180px;
  }
}
@media (max-width: 992px) {
  .header__logo img {
    max-width: 160px;
  }
}
@media (max-width: 768px) {
  .header__logo img {
    max-width: 98px;
  }
}

@media (max-width: 640px) {
  .menu {
    display: none;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 70px;
       column-gap: 70px;
}
@media (max-width: 1280px) {
  .menu__list {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}
@media (max-width: 1024px) {
  .menu__list {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (max-width: 640px) {
  .menu__list {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.menu__list-item {
  font-size: 18px;
  position: relative;
}
@media (max-width: 992px) {
  .menu__list-item {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .menu__list-item {
    font-size: 14px;
  }
}
.menu__list-item:hover .submenu {
  opacity: 1;
  max-height: 350px;
  padding: 10px;
}
.menu__list-item:hover .menu__list-arrow {
  transform: scaleY(-1);
  transition: transform 0.3s ease;
}
.menu__list .submenu {
  display: block;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #acb98b;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  font-weight: 400;
  padding: 0;
  min-width: 300px;
  z-index: 100;
  border-radius: 10px;
  transition: opacity 0.4s ease;
}
@media (max-width: 1024px) {
  .menu__list .submenu {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .menu__list .submenu {
    font-size: 14px;
  }
}
.menu__list .submenu__item {
  padding: 5px 10px;
  width: 100%;
}
.menu__list .submenu__item a {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.menu__list .submenu__item a img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.menu__list .submenu__item:hover > a img {
  transform: scaleY(-1);
}
.menu__list .submenu__item > a:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
.menu__list .submenu__item .sub-submenu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding-left: 20px;
  font-size: 16px;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  row-gap: 9px;
}
@media (max-width: 1024px) {
  .menu__list .submenu__item .sub-submenu {
    font-size: 14px;
  }
}
.menu__list .submenu__item .sub-submenu li:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
.menu__list .submenu__item:hover .sub-submenu {
  max-height: 500px;
  opacity: 1;
}
.menu__list-link {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media (max-width: 768px) {
  .menu__list-link {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media (max-width: 1280px) {
  .nav__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 1024px) {
  .nav__list {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (max-width: 992px) {
  .nav__list {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.nav__list-item {
  position: relative;
}
.nav__list-link {
  display: block;
}
.nav__list-icon {
  width: 25px;
  height: 25px;
}
@media (max-width: 992px) {
  .nav__list-icon {
    width: 23px;
    height: 23px;
  }
}
@media (max-width: 768px) {
  .nav__list-icon {
    width: 19px;
    height: 19px;
  }
}
.nav__list-number {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #acb98b;
  color: white;
  top: -5px;
  right: -10px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  font-weight: 500;
  padding: 4px;
  font-size: 13px;
  border-radius: 50%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .nav__list-number {
    width: 19px;
    height: 19px;
    min-width: 19px;
    font-size: 11px;
    padding: 3px;
  }
}
@media (max-width: 640px) {
  .nav__list-number {
    right: -8px;
    width: 17px;
    height: 17px;
    min-width: 17px;
    font-size: 10px;
    padding: 2px;
  }
}
.nav__list .search {
  display: flex;
  align-items: center;
}
.nav__list .search .nav__search-input {
  display: none;
  position: absolute;
  bottom: -57px;
  left: -90px;
  width: 284px;
  padding: 5px 10px;
  font-size: 16px;
  border: 1px solid #acb98b;
  border-radius: 10px;
  color: #1c1a19;
  height: 55px;
}
@media (max-width: 1280px) {
  .nav__list .search .nav__search-input {
    bottom: -37px;
    left: -90px;
    width: 200px;
    padding: 5px 10px;
    height: 35px;
    font-size: 16px;
    transform: scale(0.875);
    transform-origin: left center;
  }
}
.nav__list .search:hover .nav__search-input {
  display: block;
  z-index: 5;
}
@media (max-width: 600px) {
  .nav__list .search .nav__search-input {
    position: absolute;
    left: -182px;
    bottom: -5px;
  }
}

.header__burger {
  display: none;
}
@media (max-width: 640px) {
  .header__burger {
    position: relative;
    display: block;
    width: 18px;
    height: 13px;
    z-index: 100;
  }
  .header__burger span {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
    left: 0;
    transition: all 0.3s;
  }
  .header__burger span:nth-child(1) {
    top: 0;
  }
  .header__burger span:nth-child(2) {
    top: 6px;
  }
  .header__burger span:nth-child(3) {
    bottom: 0;
  }
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 6px;
  }
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 6px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 250px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 9px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  padding: 13px;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
}
.mobile-menu.active {
  left: 0;
}
@media (min-width: 641px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu__nav {
  margin: 30px 0 0;
  overflow: auto;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  margin-bottom: 35px;
}
.mobile-menu__list span {
  font-weight: 400;
}

.catalog-item {
  position: relative;
}

.catalog-toggle {
  background: none;
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.catalog-toggle img {
  transition: transform 0.3s ease;
}
.catalog-toggle.active img {
  transform: scaleY(-1);
}

.catalog-popup-wrapper {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  display: flex;
  max-height: 300px;
}
.catalog-popup-wrapper.active {
  max-height: 0;
}

.catalog-popup {
  display: flex;
  flex-direction: column;
  background-color: #acb98b;
  border-radius: 8px;
  padding: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.catalog-popup__item {
  font-size: 15px;
  padding: 5px 0;
  color: #fff;
  font-weight: 400;
}
.catalog-popup__item span {
  display: flex;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
}
.catalog-popup__item span img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.catalog-popup__item:hover span img {
  transform: scaleY(-1);
}
.catalog-popup__item .catalog-popup__sublist {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 7px;
  font-size: 14px;
}
.catalog-popup__item:hover .catalog-popup__sublist {
  max-height: 600px;
  opacity: 1;
}

.social-media__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}
.social-media__list a {
  display: block;
}
.social-media__list img {
  width: 30px;
  height: 30px;
}

.mobile-menu__social {
  gap: 10px;
}

.mobile-menu__marketplace {
  gap: 15px;
  margin-bottom: 85px;
}
.mobile-menu__marketplace li {
  font-size: 14px;
}

.footer {
  background: url("../images/bg-footer.webp") lightgray 50%/cover no-repeat;
  background-position: center;
  box-shadow: 4px 0px 20px 0px rgba(62, 63, 59, 0.07);
  border-radius: 20px 20px 0px 0px;
  padding: 42px 0;
}
.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 42px;
}
@media (max-width: 1024px) {
  .footer__logo {
    margin-bottom: 35px;
  }
}
@media (max-width: 640px) {
  .footer__logo {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .footer__logo img {
    width: 160px;
  }
}
@media (max-width: 479px) {
  .footer__logo img {
    width: 120px;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.footer__details h4,
.footer__details h6 {
  font-size: 20px;
}
@media (max-width: 1024px) {
  .footer__details h4,
  .footer__details h6 {
    font-size: 16px;
  }
}
.footer__details p {
  font-size: 16px;
}
@media (max-width: 1024px) {
  .footer__details p {
    font-size: 13px;
  }
}
.footer__details-links {
  margin-top: 20px;
  font-size: 18px;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
@media (max-width: 1024px) {
  .footer__details-links {
    margin-top: 15px;
    font-size: 14px;
    row-gap: 6px;
  }
}
@media (max-width: 640px) {
  .footer__details-links {
    margin-top: 10px;
  }
}
.footer__menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .footer__menu-list {
    font-size: 16px;
    row-gap: 16px;
  }
}
@media (max-width: 640px) {
  .footer__menu-list {
    row-gap: 10px;
  }
}
.footer__networks span {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .footer__networks span {
    font-size: 16px;
  }
}
.footer__social-list {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .footer__social-list {
    -moz-column-gap: 14px;
         column-gap: 14px;
    margin-top: 7px;
  }
}
.footer__social-link {
  width: 100%;
  display: block;
}
.footer__social-link img {
  width: 36px;
  height: 36px;
}
@media (max-width: 1024px) {
  .footer__social-link img {
    width: 28px;
    height: 28px;
  }
}
.footer__marketplaces {
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .footer__marketplaces {
    margin-top: 18px;
  }
}
.footer__marketplaces-list {
  margin-top: 16px;
  max-width: 336px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .footer__marketplaces-list {
    margin-top: 13px;
    max-width: 298px;
  }
}
.footer__marketplaces-item {
  font-size: 14px;
  transition: text-shadow 0.3s ease, -webkit-text-decoration 0.3s ease;
  transition: text-shadow 0.3s ease, text-decoration 0.3s ease;
  transition: text-shadow 0.3s ease, text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
.footer__marketplaces-item:hover {
  text-shadow: 0 0 0.8px currentColor;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  height: 60vh;
  min-height: 480px;
}
@media (max-width: 479px) {
  .hero {
    height: auto;
  }
}
.hero__wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.hero__slide {
  min-width: 100%;
  position: relative;
}
.hero__slide-image {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 60vh;
  min-height: 480px;
}
@media (max-width: 479px) {
  .hero__slide-image {
    height: auto;
  }
}
.hero__slide .banner-desktop {
  display: block;
}
@media (max-width: 990px) {
  .hero__slide .banner-desktop {
    display: none;
  }
}
.hero__slide .banner-tablet {
  display: none;
}
@media (max-width: 990px) and (min-width: 480px) {
  .hero__slide .banner-tablet {
    display: block;
  }
}
.hero__slide .banner-mobile {
  display: none;
}
@media (max-width: 479px) {
  .hero__slide .banner-mobile {
    display: block;
  }
}
.hero__slide .slide-1,
.hero__slide .slide-2 {
  -o-object-position: 26% center;
     object-position: 26% center;
}
@media (max-width: 479px) {
  .hero__slide .slide-1,
  .hero__slide .slide-2 {
    -o-object-position: center 100%;
       object-position: center 100%;
  }
}
.hero__slide .slide-3 {
  -o-object-position: 82% 100%;
     object-position: 82% 100%;
}
@media (max-width: 479px) {
  .hero__slide .slide-3 {
    -o-object-position: center 100%;
       object-position: center 100%;
  }
}
.hero__slide .slide-4 {
  -o-object-position: 59% center;
     object-position: 59% center;
}
@media (max-width: 479px) {
  .hero__slide .slide-4 {
    -o-object-position: center 100%;
       object-position: center 100%;
  }
}
.hero__slide .hero__container {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  transform: none;
  height: 73%;
}
@media (min-width: 991px) {
  .hero__slide .hero__container {
    top: 50%;
    transform: translateY(-50%);
  }
}
.hero__slide .hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 60px;
  height: 100%;
}
@media (max-width: 990px) {
  .hero__slide .hero__content {
    margin-left: 0;
    justify-content: start;
  }
}
@media (max-width: 479px) {
  .hero__slide .hero__content p {
    line-height: 14px;
  }
}
.hero__slide .hero__content p:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 479px) {
  .hero__slide .hero__content p:not(:last-child) {
    margin-bottom: 10px;
  }
}
.hero__slide .hero__content h1 {
  font-size: 73px;
  font-weight: 400;
}
@media (max-width: 1536px) {
  .hero__slide .hero__content h1 {
    font-size: 65px;
  }
}
@media (max-width: 1280px) {
  .hero__slide .hero__content h1 {
    font-size: 57px;
  }
}
@media (max-width: 1024px) {
  .hero__slide .hero__content h1 {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .hero__slide .hero__content h1 {
    font-size: 32px;
  }
}
.hero__slide .hero__content h1 img {
  max-width: 400px;
  margin-bottom: 20px;
}
@media (max-width: 1536px) {
  .hero__slide .hero__content h1 img {
    max-width: 350px;
  }
}
@media (max-width: 1280px) {
  .hero__slide .hero__content h1 img {
    max-width: 300px;
  }
}
@media (max-width: 1024px) {
  .hero__slide .hero__content h1 img {
    max-width: 250px;
  }
}
@media (max-width: 640px) {
  .hero__slide .hero__content h1 img {
    max-width: 200px;
    margin-bottom: 10px;
  }
}
@media (max-width: 479px) {
  .hero__slide .hero__content h1 img {
    max-width: 160px;
  }
}
.hero__slide .hero__content p {
  font-size: 33px;
  max-width: 890px;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  font-weight: 500;
  max-width: 490px;
  line-height: 110%;
}
@media (max-width: 1536px) {
  .hero__slide .hero__content p {
    font-size: 24px;
    max-width: 430px;
  }
}
@media (max-width: 1280px) {
  .hero__slide .hero__content p {
    font-size: 18px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 1024px) {
  .hero__slide .hero__content p {
    font-size: 16px;
    -moz-column-gap: 8px;
         column-gap: 8px;
    max-width: 338px;
  }
}
@media (max-width: 990px) {
  .hero__slide .hero__content p {
    max-width: 270px;
    font-size: 15px;
  }
}
@media (max-width: 479px) {
  .hero__slide .hero__content p {
    font-size: 13px;
    max-width: 248px;
  }
}
.hero__button {
  background-color: #c5d1aa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 320px;
  min-height: 50px;
  margin-top: 32px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .hero__button {
    font-size: 16px;
    width: 280px;
    min-height: 40px;
  }
}
@media (max-width: 479px) {
  .hero__button {
    width: 160px;
    margin-top: 22px;
  }
}
@media (max-width: 400px) {
  .hero__button {
    width: 140px;
    min-height: 30px;
    margin-top: 10px;
    font-size: 14px;
  }
}
.hero__button:hover {
  scale: 1.05;
}
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  padding: 10px;
  font-size: 24px;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: black;
  cursor: pointer;
}
.hero__arrow:hover {
  background-color: #c5d1aa;
}
@media (max-width: 1280px) {
  .hero__arrow {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 640px) {
  .hero__arrow {
    width: 33px;
    height: 33px;
    padding: 0;
  }
}
@media (max-width: 479px) {
  .hero__arrow {
    top: 65%;
  }
}
.hero__pagination {
  position: absolute;
  bottom: 5px;
  justify-content: center;
}
.hero__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 7px !important;
}
.hero__pagination .swiper-pagination-bullet-active {
  background-color: #acb98b;
}

.br-text-mobile {
  display: none;
}
@media (max-width: 990px) {
  .br-text-mobile {
    display: block;
  }
}

.ditalir__title {
  text-align: center;
  font-size: 45px;
  text-transform: uppercase;
  margin: 80px auto 45px auto;
}
@media (max-width: 1536px) {
  .ditalir__title {
    margin: 70px 0 40px 0;
    font-size: 40px;
  }
}
@media (max-width: 1280px) {
  .ditalir__title {
    font-size: 32px;
    margin: 50px 0 40px 0;
  }
}
@media (max-width: 992px) {
  .ditalir__title {
    font-size: 24px;
    margin: 40px 0 30px 0;
  }
}
@media (max-width: 768px) {
  .ditalir__title {
    font-size: 22px;
    margin: 35px 0 25px 0;
  }
}
@media (max-width: 640px) {
  .ditalir__title {
    font-size: 21px;
    margin: 32px 0 23px 0;
  }
}
@media (max-width: 479px) {
  .ditalir__title {
    font-size: 18px;
  }
}
.ditalir__title span {
  color: #c5d1aa;
  font-style: italic;
  font-weight: 400;
}
.ditalir__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}
@media (max-width: 1440px) {
  .ditalir__content {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .ditalir__content {
    grid-template-columns: 1fr;
  }
}
.ditalir__composition, .ditalir__skin {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 80px;
}
@media (max-width: 1440px) {
  .ditalir__composition, .ditalir__skin {
    row-gap: 40px;
  }
}
@media (max-width: 768px) {
  .ditalir__composition, .ditalir__skin {
    flex-direction: row;
    max-width: 100%;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 479px) {
  .ditalir__composition, .ditalir__skin {
    flex-direction: column;
    max-width: 100%;
    row-gap: 10px;
  }
}
.ditalir__composition-text, .ditalir__skin-text {
  font-size: 22px;
}
@media (max-width: 1536px) {
  .ditalir__composition-text, .ditalir__skin-text {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .ditalir__composition-text, .ditalir__skin-text {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .ditalir__composition-text, .ditalir__skin-text {
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  .ditalir__composition-text, .ditalir__skin-text {
    padding: 0;
  }
}
.ditalir__composition-text span, .ditalir__skin-text span {
  color: #acb98b;
  font-weight: 500;
}
.ditalir__composition-image {
  transition: 0.3s ease;
}
.ditalir__composition-image:hover {
  filter: drop-shadow(10px 10px 2px rgb(172, 185, 139));
}
.ditalir__composition-image img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 200px;
  max-height: 200px;
}
@media (max-width: 1440px) {
  .ditalir__composition-image img {
    max-width: 150px;
    max-height: 150px;
  }
}
@media (max-width: 1024px) {
  .ditalir__composition-image img {
    max-width: 100px;
    max-height: 100px;
  }
}
.ditalir__cover {
  max-width: 839px;
  max-height: 786px;
  display: flex;
  justify-content: center;
}
.ditalir__cover-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 412px;
}
@media (max-width: 992px) {
  .ditalir__cover-image {
    min-width: 235px;
  }
}
@media (max-width: 768px) {
  .ditalir__cover-image {
    max-width: 400px;
  }
}
.ditalir__skin-image {
  transition: 0.3s ease;
}
.ditalir__skin-image:hover {
  filter: drop-shadow(10px 10px 2px rgb(172, 185, 139));
}
.ditalir__skin-image img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 200px;
  max-height: 200px;
}
@media (max-width: 1440px) {
  .ditalir__skin-image img {
    max-width: 150px;
    max-height: 150px;
  }
}
@media (max-width: 1024px) {
  .ditalir__skin-image img {
    max-width: 100px;
    max-height: 100px;
  }
}

.certificates {
  margin: 32px 0;
}
@media (min-width: 641px) {
  .certificates {
    margin: 40px 0;
  }
}
@media (min-width: 769px) {
  .certificates {
    margin: 40px 0 48px;
  }
}
@media (min-width: 1025px) {
  .certificates {
    margin: 40px 0 80px;
  }
}
.certificates__content {
  text-align: center;
  font-size: 16px;
}
@media (min-width: 769px) {
  .certificates__content {
    font-size: 18px;
  }
}
@media (min-width: 1281px) {
  .certificates__content {
    font-size: 26px;
  }
}
@media (min-width: 1537px) {
  .certificates__content {
    font-size: 28px;
  }
}
.certificates__text {
  margin-bottom: 22px;
  text-transform: uppercase;
}
.certificates__text .mobile-br {
  display: none;
}
@media (max-width: 479px) {
  .certificates__text .mobile-br {
    display: inline;
  }
}
@media (max-width: 1024px) {
  .certificates__text {
    margin-bottom: 14px;
  }
}
.certificates__text span {
  color: #c5d1aa;
  font-style: italic;
  font-weight: 500;
}
.certificates__list {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media (max-width: 1024px) {
  .certificates__list {
    margin-top: 22px;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (max-width: 640px) {
  .certificates__list {
    font-size: 16px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 479px) {
  .certificates__list {
    flex-direction: column;
    row-gap: 18px;
  }
}
.certificates__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  transition: 0.3s;
}
.certificates__item:hover {
  color: #8c9a68;
}
.certificates__item:hover img {
  opacity: 1;
}
.certificates__item img {
  opacity: 0;
  transition: 0.3s;
  width: 22px;
  height: 22px;
}
@media (max-width: 1280px) {
  .certificates__item img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .certificates__item img {
    width: 15px;
    height: 15px;
  }
}

.modal {
  z-index: 100;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  max-height: 100%;
  padding: 30px;
  width: 778px;
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleUp 0.3s ease forwards;
}
@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
  .modal-content {
    width: 600px;
  }
}
@media (max-width: 640px) {
  .modal-content {
    padding: 20px 5px;
  }
}
.modal-content p {
  font-size: 18px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .modal-content p {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  background-color: transparent;
}

.certificate-slider__slide {
  width: 100%;
}
.certificate-slider__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.certificate__slider {
  width: 450px;
}
@media (max-width: 1024px) {
  .certificate__slider {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .certificate__slider {
    width: 300px;
  }
}
@media (max-width: 479px) {
  .certificate__slider {
    width: 250px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

.certificate-button-next,
.certificate-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
@media (max-width: 1280px) {
  .certificate-button-next,
  .certificate-button-prev {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 768px) {
  .certificate-button-next,
  .certificate-button-prev {
    width: 33px;
    height: 33px;
    padding: 0;
    font-size: 18px;
  }
}
.certificate-button-next:hover,
.certificate-button-prev:hover {
  background-color: #c5d1aa;
}

.catalog {
  margin-top: 33px;
  position: relative;
  width: 100%;
}
@media (min-width: 480px) {
  .catalog {
    margin-top: 50px;
  }
}
@media (min-width: 641px) {
  .catalog {
    margin-top: 65px;
  }
}
@media (min-width: 993px) {
  .catalog {
    margin-top: 70px;
  }
}
@media (min-width: 1025px) {
  .catalog {
    margin-top: 100px;
  }
}
.catalog__title-charm, .catalog__title-babylang {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 479px) {
  .catalog__title-charm, .catalog__title-babylang {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.catalog__title-charm:hover img, .catalog__title-babylang:hover img {
  transition: opacity 0.3s ease;
  opacity: 1;
}
.catalog__title-charm img, .catalog__title-babylang img {
  opacity: 0;
  max-width: 30px;
  max-height: 30px;
}
@media (max-width: 479px) {
  .catalog__title-charm img, .catalog__title-babylang img {
    max-width: 19px;
    max-height: 19px;
  }
}
.catalog__title-charm:hover {
  color: #8c9a68;
}
.catalog__title-babylang:hover {
  color: #E58CB5;
}
.catalog .cover-charm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(142, 139, 140, 0.4) 15.39%, rgba(40, 39, 39, 0.4) 87.08%);
  z-index: 1;
}
.catalog .cover-babyland::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(142, 139, 140, 0.1) 15.39%, rgba(40, 39, 39, 0.1) 87.08%);
  z-index: 1;
}
.catalog__cover {
  min-width: 100%;
  position: relative;
}
.catalog__cover-image {
  width: 100%;
  height: 60vh;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@media (max-width: 1280px) {
  .catalog__cover-image {
    height: 50vh;
  }
}
@media (max-width: 768px) {
  .catalog__cover-image {
    height: 40vh;
  }
}
@media (max-width: 479px) {
  .catalog__cover-image {
    height: 30vh;
  }
}
.catalog__cover .content-charm {
  position: absolute;
  top: 60px;
  right: 55px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 640px) {
  .catalog__cover .content-charm {
    top: 40px;
    right: 25px;
  }
}
@media (max-width: 479px) {
  .catalog__cover .content-charm {
    top: 10px;
    right: 10px;
  }
}
.catalog__cover .content-charm img {
  max-width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .catalog__cover .content-charm img {
    max-width: 310px;
  }
}
@media (max-width: 640px) {
  .catalog__cover .content-charm img {
    max-width: 230px;
  }
}
.catalog__cover .content-charm p {
  padding: 10px 80px;
  text-align: center;
  color: #fdfdfd;
  font-size: 22px;
  font-weight: 400;
  background-color: rgba(197, 209, 170, 0.5);
}
@media (max-width: 1536px) {
  .catalog__cover .content-charm p {
    font-size: 18px;
    padding: 10px 70px;
  }
}
@media (max-width: 640px) {
  .catalog__cover .content-charm p {
    font-size: 16px;
    padding: 10px 40px;
  }
}
.catalog__cover .content-babyland {
  position: absolute;
  top: 60px;
  left: 55px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 640px) {
  .catalog__cover .content-babyland {
    top: 40px;
    left: 25px;
  }
}
@media (max-width: 479px) {
  .catalog__cover .content-babyland {
    top: 10px;
    left: 10px;
  }
}
.catalog__cover .content-babyland img {
  max-width: 80%;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .catalog__cover .content-babyland img {
    max-width: 310px;
  }
}
@media (max-width: 640px) {
  .catalog__cover .content-babyland img {
    max-width: 230px;
  }
}
.catalog__cover .content-babyland p {
  padding: 10px 80px;
  text-align: center;
  color: #fdfdfd;
  font-size: 22px;
  font-weight: 400;
  background-color: rgba(83, 118, 186, 0.68);
}
@media (max-width: 1536px) {
  .catalog__cover .content-babyland p {
    font-size: 18px;
    padding: 10px 70px;
  }
}
@media (max-width: 640px) {
  .catalog__cover .content-babyland p {
    font-size: 16px;
    padding: 10px 40px;
  }
}

.catalog__slider {
  position: absolute;
  overflow: hidden;
  max-width: 892px;
  right: 50px;
  bottom: -297px;
}
@media (max-width: 1280px) {
  .catalog__slider {
    max-width: 711px;
    bottom: -230px;
  }
}
.catalog__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.catalog__slider .slider__arrow--left {
  left: 0;
}
.catalog__slider .slider__arrow--right {
  right: 0;
}
.catalog__products {
  display: flex;
  align-items: center;
  gap: 40px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .catalog__products {
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .catalog__products {
    flex-direction: column;
    align-items: center;
  }
}
.catalog__product {
  position: relative;
  border-radius: 16px;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 15px;
  max-width: 100%;
  max-height: 100%;
  transition: 0.3s ease;
  cursor: pointer;
}
@media (max-width: 900px) {
  .catalog__product {
    flex: 0 0 auto;
  }
}
@media (max-width: 479px) {
  .catalog__product {
    padding: 10px;
  }
}
.catalog__product:hover {
  background-color: #fff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.07);
}
.catalog__product:hover .catalog__product-actions {
  opacity: 1;
}
.catalog__product:hover .catalog__product-more {
  opacity: 1;
}
.catalog__product-actions {
  display: flex;
  align-items: center;
  justify-content: right;
  -moz-column-gap: 7px;
       column-gap: 7px;
  opacity: 0;
  transition: 0.3s ease;
}
.catalog__product-actions button:hover {
  transform: scale(1.2);
}
.catalog__product-actions button img {
  width: 90%;
}
@media (max-width: 1280px) {
  .catalog__product-actions button img {
    width: 23px;
    height: 23px;
  }
}
.catalog__product-actions button svg {
  width: 90%;
}
@media (max-width: 1280px) {
  .catalog__product-actions button svg {
    width: 28px;
    height: 28px;
  }
}
.catalog__product-actions button svg.active path {
  fill: #c5d1aa;
  stroke: #c5d1aa;
}
.catalog__product-image {
  margin: 11px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .catalog__product-image {
    height: 190px;
  }
}
@media (max-width: 479px) {
  .catalog__product-image {
    height: 140px;
    margin: 0;
  }
}
.catalog__product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog__product-text {
  font-size: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
@media (max-width: 1536px) {
  .catalog__product-text {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .catalog__product-text {
    font-size: 16px;
  }
}
.catalog__product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
}
@media (max-width: 1536px) {
  .catalog__product-info {
    margin: 15px 0;
  }
}
@media (max-width: 479px) {
  .catalog__product-info {
    margin: 7px 0;
  }
}
.catalog__product-info-price {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1536px) {
  .catalog__product-info-price {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .catalog__product-info-price {
    font-size: 14px;
  }
}
.catalog__product-info-mg {
  color: #858282;
  font-size: 18px;
}
@media (max-width: 1536px) {
  .catalog__product-info-mg {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .catalog__product-info-mg {
    font-size: 12px;
  }
}
.catalog__product-more {
  transition: 0.3s ease;
  opacity: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  height: 44px;
  background-color: #c5d1aa;
  border-radius: 10px;
}
@media (max-width: 1536px) {
  .catalog__product-more {
    font-size: 16px;
  }
}
.catalog__product-more:hover {
  background-color: #acb98b;
}

.more-babyland-btn {
  background-color: pink !important;
}
.more-babyland-btn:hover {
  background-color: #E58CB5 !important;
}

.catalog-slider__body {
  position: relative;
}
.catalog-slider__content {
  margin-top: -176px;
  max-width: 1041px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (min-width: 1820px) {
  .catalog-slider__content {
    margin-right: 241px;
  }
}
@media (max-width: 1280px) {
  .catalog-slider__content {
    margin-top: -146px;
  }
}
@media (max-width: 479px) {
  .catalog-slider__content {
    margin-top: -115px;
  }
}
.catalog-slider__slider-body {
  max-width: 870px;
}
@media (min-width: 320px) and (max-width: 479.98px) {
  .catalog-slider__slider-body {
    max-height: 899px;
  }
}
.catalog-slider__button {
  display: none;
}
@media (min-width: 1820px) {
  .catalog-slider__button {
    display: inline-block;
  }
}
.catalog-slider__button-responsive {
  display: none;
}
@media (min-width: 480px) and (max-width: 1820px) {
  .catalog-slider__button-responsive {
    display: inline-block;
  }
}
.catalog-slider__navigation-mobile {
  margin-top: 10px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 480px) {
  .catalog-slider__navigation-mobile {
    display: none;
  }
}
.catalog-slider__navigation-mobile button {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.catalog-slider__button-next, .catalog-slider__button-prev {
  width: 60px;
  height: 60px;
  font-size: 24px;
}
@media (max-width: 1280px) {
  .catalog-slider__button-next, .catalog-slider__button-prev {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 768px) {
  .catalog-slider__button-next, .catalog-slider__button-prev {
    width: 33px;
    height: 33px;
    padding: 0;
    font-size: 18px;
  }
}
.catalog-slider__button-next button, .catalog-slider__button-prev button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}
.catalog-slider__button-next button:hover, .catalog-slider__button-prev button:hover {
  background-color: #c5d1aa;
}

.trust {
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/leaf.webp") no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.trust__items {
  align-items: center;
}
.trust__item {
  text-align: center;
}
.trust__item-image {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 479px) {
  .trust__item-image {
    width: 90%;
  }
}
.trust__item-image:hover {
  transform: scale(1.1);
}
.trust__item-name {
  margin-top: 28px;
  font-size: 28px;
  font-weight: 300;
}
@media (max-width: 1536px) {
  .trust__item-name {
    margin-top: 22px;
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  .trust__item-name {
    margin-top: 18px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .trust__item-name {
    margin-top: 16px;
    font-size: 16px;
  }
}
.trust__item-cover {
  max-width: 940px;
  position: absolute;
  top: -129px;
  left: -135px;
}
.trust__buttons {
  position: relative;
  justify-content: center;
  max-width: 91px;
  margin: 29px auto;
  font-weight: 700;
  font-size: 14px;
  display: none;
}
@media (max-width: 1024px) {
  .trust__buttons {
    display: flex;
  }
}
.trust__buttons button {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.trust-slider {
  width: 100%;
  position: relative;
}

.principles {
  margin: 32px 0;
}
@media (min-width: 641px) {
  .principles {
    margin: 40px 0;
  }
}
@media (min-width: 769px) {
  .principles {
    margin: 48px 0;
  }
}
@media (min-width: 1025px) {
  .principles {
    margin: 80px 0;
  }
}
.principles__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .principles .reverse {
    flex-direction: column-reverse;
  }
}
.principles__item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
}
@media (max-width: 1024px) {
  .principles__item {
    flex-direction: column;
  }
}
.principles__item-info {
  max-width: 540px;
}
@media (max-width: 1024px) {
  .principles__item-info {
    max-width: 100%;
  }
}
.principles__item-title {
  color: #38312D;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 1536px) {
  .principles__item-title {
    font-size: 25px;
  }
}
@media (max-width: 1280px) {
  .principles__item-title {
    font-size: 18px;
  }
}
.principles__item-text {
  font-size: 20px;
}
@media (max-width: 1536px) {
  .principles__item-text {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .principles__item-text {
    font-size: 16px;
  }
}
.principles__item-text span {
  color: #acb98b;
  font-weight: 500;
}
@media (max-width: 1536px) {
  .principles .small-image img {
    max-width: 500px;
    max-height: 273px;
  }
}
.principles__item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 550px;
  position: relative;
  aspect-ratio: 2/1;
  min-width: 500px;
}
@media (max-width: 768px) {
  .principles__item-image {
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .principles__item-image {
    min-width: 300px;
    max-width: 350px;
  }
}
.principles__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  -o-object-fit: contain;
     object-fit: contain;
}
.principles__proud {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 30px;
}
@media (min-width: 480px) {
  .principles__proud {
    font-size: 18px;
    margin-top: 40px;
  }
}
@media (min-width: 1025px) {
  .principles__proud {
    font-size: 21px;
  }
}
@media (min-width: 1281px) {
  .principles__proud {
    font-size: 25px;
  }
}
@media (min-width: 1537px) {
  .principles__proud {
    font-size: 28px;
    margin-top: 55px;
  }
}
.principles__proud span {
  color: #acb98b;
  font-style: italic;
  font-weight: 400;
}

.principles__item-image .hover {
  opacity: 0;
}

.principles__item-image:hover .default {
  opacity: 0;
}

.principles__item-image:hover .hover {
  opacity: 1;
}

.articles {
  margin: 32px 0;
}
@media (min-width: 641px) {
  .articles {
    margin: 40px 0;
  }
}
@media (min-width: 769px) {
  .articles {
    margin: 48px 0;
  }
}
@media (min-width: 1025px) {
  .articles {
    margin: 80px 0;
  }
}
.articles__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 1536px) {
  .articles__top {
    margin-bottom: 45px;
  }
}
@media (max-width: 1280px) {
  .articles__top {
    margin-bottom: 35px;
  }
}
@media (max-width: 1024px) {
  .articles__top {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .articles__top {
    font-size: 26px;
    margin-bottom: 22px;
  }
}
@media (max-width: 640px) {
  .articles__top {
    flex-direction: column;
    row-gap: 10px;
    align-items: start;
  }
}
@media (max-width: 479px) {
  .articles__top {
    margin-bottom: 10px;
  }
}
.articles__all {
  color: #c5d1aa;
  font-size: 21px;
  font-weight: 500;
}
.articles__all:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 1536px) {
  .articles__all {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .articles__all {
    font-size: 16px;
  }
}
.articles__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}

.article-card {
  width: 100%;
  height: 100%;
  position: relative;
  perspective: 1000px;
}
.article-card__link {
  display: block;
  width: 100%;
  height: 100%;
}
.article-card__front, .article-card__back {
  backface-visibility: hidden;
  border-radius: 10px;
  transition: transform 0.5s;
}
.article-card__front {
  transform: rotateY(0deg);
}
.article-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: rotateY(180deg);
  top: 0;
  left: 0;
}
@media (max-width: 1536px) {
  .article-card__back {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .article-card__back {
    padding: 10px;
  }
}
.article-card.flipped .article-card__front {
  transform: rotateY(180deg);
}
.article-card.flipped .article-card__back {
  transform: rotateY(360deg);
}
.article-card img {
  width: 100%;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-card h3 {
  color: #38312D;
  font-size: 21px;
  font-weight: 700;
  margin-top: 20px;
}
@media (max-width: 1536px) {
  .article-card h3 {
    font-size: 18px;
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .article-card h3 {
    font-size: 16px;
    margin-top: 16px;
  }
}
.article-card p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #38312D;
  font-size: 16px;
  padding: 7px 0;
}
@media (max-width: 479px) {
  .article-card p {
    font-size: 15px;
    padding: 5px 0;
  }
}
.article-card__read-more {
  color: #acb98b;
  font-size: 16px;
  font-weight: 400;
}
.article-card__read-more:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 479px) {
  .article-card__read-more {
    font-size: 15px;
  }
}

.about {
  padding-bottom: 40px;
}
@media (min-width: 480px) {
  .about {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .about {
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  .about {
    padding-bottom: 90px;
  }
}
.about__text {
  font-size: 16px;
  margin-bottom: 25px;
}
@media (min-width: 769px) {
  .about__text {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .about__text {
    margin-bottom: 15px;
  }
}
@media (min-width: 1537px) {
  .about__text {
    font-size: 26px;
  }
}
.about__text span {
  color: #c5d1aa;
  font-weight: 600;
}
.about__items {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media (max-width: 1280px) {
  .about__items {
    row-gap: 32px;
  }
}
@media (max-width: 640px) {
  .about__items {
    row-gap: 25px;
  }
}
.about .about-reverce {
  grid-template-areas: "image text ";
}
@media (max-width: 768px) {
  .about .about-reverce {
    grid-template-areas: "text" "image";
  }
}
.about__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  grid-template-areas: "text image ";
}
@media (max-width: 1536px) {
  .about__item {
    gap: 32px;
  }
}
@media (max-width: 1280px) {
  .about__item {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .about__item {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image";
  }
}
.about__item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: image;
}
@media (max-width: 768px) {
  .about__item-image {
    max-width: 288px;
    max-height: 288px;
    margin: 0 auto;
  }
}
.about__item-image img {
  width: 95%;
  max-width: 95%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__item-info {
  grid-area: text;
}
.about__item-info-title {
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 1536px) {
  .about__item-info-title {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .about__item-info-title {
    font-size: 16px;
  }
}
.about__item-info-text {
  font-size: 18px;
}
@media (max-width: 1280px) {
  .about__item-info-text {
    font-size: 16px;
  }
}
.about__item-info-text span {
  color: #acb98b;
  font-weight: 500;
}
.about__cetificates {
  margin: 70px 0;
}

.about__contacts {
  font-size: 21px;
}
@media (max-width: 1636px) {
  .about__contacts {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .about__contacts {
    font-size: 16px;
  }
}
.about__contacts-title {
  font-size: 45px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .about__contacts-title {
    font-size: 40px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  .about__contacts-title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .about__contacts-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
.about__contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media (max-width: 640px) {
  .about__contacts-content {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}
.about__contacts-service h6 {
  font-weight: 500;
  margin-bottom: 10px;
}
.about__contacts-social a span {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.about__contacts-social__list {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 10px;
}
.about__contacts-social__list img {
  width: 36px;
  height: 36px;
}
@media (max-width: 1024px) {
  .about__contacts-social__list {
    -moz-column-gap: 14px;
         column-gap: 14px;
    margin-top: 7px;
  }
}

.favorite {
  margin: 32px 0;
}
@media (min-width: 641px) {
  .favorite {
    margin: 40px 0;
  }
}
@media (min-width: 769px) {
  .favorite {
    margin: 48px 0;
  }
}
@media (min-width: 1025px) {
  .favorite {
    margin: 50px 0 80px 0;
  }
}
.favorite__top {
  display: flex;
  justify-content: space-between;
  row-gap: 10px;
  margin-bottom: 10px;
  align-items: start;
  flex-direction: column;
}
@media (min-width: 480px) {
  .favorite__top {
    margin-bottom: 22px;
  }
}
@media (min-width: 769px) {
  .favorite__top {
    margin-bottom: 32px;
  }
}
@media (min-width: 1025px) {
  .favorite__top {
    margin-bottom: 35px;
  }
}
@media (min-width: 1281px) {
  .favorite__top {
    margin-bottom: 45px;
  }
}
@media (min-width: 1537px) {
  .favorite__top {
    margin-bottom: 60px;
  }
}
@media (min-width: 640px) {
  .favorite__top {
    align-items: center;
    flex-direction: row;
  }
}
.favorite__clear {
  color: #c5d1aa;
  font-size: 21px;
  font-weight: 500;
}
.favorite__clear:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 1536px) {
  .favorite__clear {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .favorite__clear {
    font-size: 16px;
  }
}
.favorite__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 20px;
}
@media (min-width: 480px) {
  .favorite__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 993px) {
  .favorite__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1281px) {
  .favorite__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
  }
}
@media (min-width: 1537px) {
  .favorite__items {
    gap: 40px 20px;
  }
}
.favorite__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 16px;
}
.favorite__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.favorite__item:hover .favorite__item-info, .favorite__item:hover .favorite__item-details, .favorite__item:hover .favorite__item-details__mg {
  scale: 1.05;
}
.favorite__item-image {
  position: relative;
  border-radius: 20px;
  background-color: #f7f4f1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 50px 0;
}
@media (max-width: 1440px) {
  .favorite__item-image {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .favorite__item-image {
    padding: 30px 0;
  }
}
@media (max-width: 479px) {
  .favorite__item-image {
    padding: 20px 0;
  }
}
.favorite__item-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 240px;
  height: 290px;
}
@media (max-width: 1280px) {
  .favorite__item-image img {
    width: 200px;
    height: 250px;
  }
}
@media (max-width: 479px) {
  .favorite__item-image img {
    width: 190px;
    height: 240px;
  }
}
.favorite__item-actions {
  top: 30px;
  right: 30px;
  position: absolute;
  cursor: pointer;
}
.favorite__item-actions .hover {
  color: #c5d1aa;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .favorite__item-actions .hover {
    font-size: 16px;
  }
}
@media (max-width: 1536px) {
  .favorite__item-actions {
    top: 20px;
    right: 20px;
  }
}
.favorite__item-actions .hover {
  display: none;
}
.favorite__item-actions:hover .default {
  display: none;
}
.favorite__item-actions:hover .hover {
  display: block;
}
.favorite__item-info {
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  transition: 0.3s ease;
}
.favorite__item-info:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  text-decoration-thickness: 1px;
}
@media (max-width: 1536px) {
  .favorite__item-info {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .favorite__item-info {
    font-size: 16px;
  }
}
.favorite__item-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: 0.3s ease;
}
@media (max-width: 1280px) {
  .favorite__item-details {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .favorite__item-details {
    font-size: 15px;
  }
}
.favorite__item-details__price {
  font-family: Roboto;
  font-weight: 600;
}
.favorite__item-details__mg {
  color: #858282;
  font-weight: 300;
}
.favorite__item-add {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  border-radius: 10px;
  background-color: #c5d1aa;
  transition: background-color 0.3s ease;
}
@media (max-width: 1280px) {
  .favorite__item-add {
    height: 45px;
  }
}
.favorite__item-add:hover {
  background: #acb98b;
}
.favorite__item-remove {
  display: none;
  color: #c5d1aa;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .favorite__item-remove {
    display: block;
  }
}

.favorite__items-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 50px;
}
.favorite__items-pagination .arrow {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease;
}
.favorite__items-pagination .arrow:hover {
  background-color: #c5d1aa;
}
@media (max-width: 1536px) {
  .favorite__items-pagination .arrow {
    flex: 0 0 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .favorite__items-pagination .arrow {
    flex: 0 0 30px;
    height: 30px;
    font-size: 16px;
  }
}
.favorite__items-pagination .num {
  color: #555355;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .favorite__items-pagination .num {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .favorite__items-pagination .num {
    font-size: 14px;
  }
}
.favorite__items-pagination .active {
  font-weight: 600;
}

.payment-delivery {
  padding-bottom: 40px;
}
@media (min-width: 480px) {
  .payment-delivery {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .payment-delivery {
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  .payment-delivery {
    padding-bottom: 90px;
  }
}
.payment-delivery__text {
  font-size: 16px;
  margin-bottom: 25px;
}
@media (min-width: 769px) {
  .payment-delivery__text {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .payment-delivery__text {
    margin-bottom: 15px;
  }
}
@media (min-width: 1537px) {
  .payment-delivery__text {
    font-size: 26px;
  }
}
.payment-delivery__text span {
  color: #c5d1aa;
  font-weight: 600;
}
.payment-delivery__info {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 992px) {
  .payment-delivery__info {
    flex-direction: column;
    row-gap: 40px;
  }
}
.payment-delivery__info-tabs {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media (max-width: 1024px) {
  .payment-delivery__info-tabs {
    row-gap: 10px;
  }
}
@media (max-width: 768px) {
  .payment-delivery__info-tabs {
    row-gap: 8px;
  }
}
.payment-delivery__info-tab {
  text-align: left;
  width: 450px;
  border: none;
  background-color: transparent;
  font-size: 18px;
  font-weight: 500;
}
.payment-delivery__info-tab.active {
  color: #acb98b;
}
@media (max-width: 1280px) {
  .payment-delivery__info-tab {
    font-size: 17px;
    width: 305px;
  }
}
@media (max-width: 1024px) {
  .payment-delivery__info-tab {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .payment-delivery__info-tab {
    width: 100%;
  }
}
.payment-delivery__info-text {
  display: none;
  font-size: 18px;
}
@media (max-width: 1536px) {
  .payment-delivery__info-text {
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  .payment-delivery__info-text {
    font-size: 16px;
  }
}
.payment-delivery__info-text div {
  margin-bottom: 20px;
}
.payment-delivery__info-text div h6 {
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .payment-delivery__info-text div h6 {
    margin-bottom: 18px;
    margin-bottom: 8px;
  }
}
@media (max-width: 1280px) {
  .payment-delivery__info-text div p {
    margin-bottom: 18px;
  }
}
@media (max-width: 1024px) {
  .payment-delivery__info-text div p {
    margin-bottom: 16px;
  }
}
.payment-delivery__info-text.active {
  display: block;
}

.payment-delivery__marketplaces {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1440px) {
  .payment-delivery__marketplaces {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .payment-delivery__marketplaces {
    margin-top: 40px;
  }
}
.payment-delivery__marketplaces-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  max-width: 992px;
}
@media (min-width: 641px) {
  .payment-delivery__marketplaces-title {
    font-size: 18px;
  }
}
@media (min-width: 1025px) {
  .payment-delivery__marketplaces-title {
    font-size: 24px;
  }
}
@media (min-width: 1537px) {
  .payment-delivery__marketplaces-title {
    font-size: 28px;
  }
}
.payment-delivery__marketplaces-icons {
  max-width: 1250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .payment-delivery__marketplaces-icons {
    margin-top: 30px;
  }
}
.payment-delivery__marketplaces-icons a {
  transition: transform 0.3s ease;
}
.payment-delivery__marketplaces-icons a:hover {
  transform: scale(1.1);
}
@media (max-width: 479px) {
  .payment-delivery__marketplaces-icons img {
    max-width: 300px;
  }
}

.contacts {
  padding-bottom: 90px;
}
@media (max-width: 1024px) {
  .contacts {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .contacts {
    padding-bottom: 50px;
  }
}
@media (max-width: 479px) {
  .contacts {
    padding-bottom: 40px;
  }
}
.contacts__content {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  font-size: 21px;
}
@media (max-width: 1536px) {
  .contacts__content {
    font-size: 18px;
    row-gap: 24px;
  }
}
@media (max-width: 1024px) {
  .contacts__content {
    font-size: 16px;
    row-gap: 20px;
  }
}
@media (max-width: 768px) {
  .contacts__content {
    row-gap: 16px;
  }
}
.contacts__subtitle {
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 1536px) {
  .contacts__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .contacts__subtitle {
    font-size: 20px;
  }
}
.contacts__info-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (max-width: 1536px) {
  .contacts__info-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .contacts__info-title {
    font-size: 16px;
  }
}
.contacts__service-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (max-width: 1536px) {
  .contacts__service-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .contacts__service-title {
    font-size: 16px;
  }
}
.contacts__links-social {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contacts__links-social img {
  width: 36px;
  height: 36px;
}

.contacts__form {
  max-width: 706px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacts__form-title {
  text-align: left;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
  margin-top: 70px;
}
@media (max-width: 1536px) {
  .contacts__form-title {
    font-size: 24px;
    margin-top: 50px;
  }
}
@media (max-width: 1024px) {
  .contacts__form-title {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.contacts__form-inputs {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 100%;
}
.contacts__form-inputs input,
.contacts__form-inputs select {
  font-size: 16px;
  border-radius: 10px;
  background: #f1f1f1;
  padding: 17px 16px;
}
@media (max-width: 1024px) {
  .contacts__form-inputs input,
  .contacts__form-inputs select {
    padding: 15px 14px;
  }
}
.contacts__form-inputs select {
  font-weight: 400;
  color: black;
}
.contacts__form button {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  width: 320px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #c5d1aa;
  transition: 0.3s ease;
}
.contacts__form button:hover {
  background: #acb98b;
}
@media (max-width: 1280px) {
  .contacts__form button {
    height: 45px;
  }
}

.expert-articles {
  padding-bottom: 40px;
}
@media (min-width: 480px) {
  .expert-articles {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .expert-articles {
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  .expert-articles {
    padding-bottom: 90px;
  }
}
.expert-articles__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.expert-articles__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .expert-articles__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .expert-articles__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.expert-articles__item {
  display: flex;
  flex-direction: column;
}
.expert-articles__item img {
  border-radius: 10px;
  width: 100%;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
.expert-articles__item h3 {
  color: #38312D;
  font-size: 21px;
  font-weight: 700;
  margin-top: 24px;
}
@media (max-width: 1440px) {
  .expert-articles__item h3 {
    margin-top: 20px;
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .expert-articles__item h3 {
    margin-top: 10px;
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .expert-articles__item h3 {
    margin-top: 8px;
  }
}
.expert-articles__item p {
  color: #38312D;
  font-size: 16px;
  margin: 8px 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
@media (max-width: 768px) {
  .expert-articles__item p {
    margin: 6px 0 3px;
  }
}
.expert-articles__item-more {
  color: #acb98b;
  font-size: 16px;
  font-weight: 400;
}
.expert-articles__item-more:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.expert-articles__items-more {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  width: 320px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #c5d1aa;
  margin: 40px 0 32px;
  transition: background-color 0.3s ease;
}
.expert-articles__items-more:hover {
  background-color: #acb98b;
}
@media (max-width: 1280px) {
  .expert-articles__items-more {
    width: 300px;
    height: 45px;
  }
}
.expert-articles__items-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 50px;
}
.expert-articles__items-pagination .arrow {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease;
}
.expert-articles__items-pagination .arrow:hover {
  background-color: #c5d1aa;
}
@media (max-width: 1536px) {
  .expert-articles__items-pagination .arrow {
    flex: 0 0 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .expert-articles__items-pagination .arrow {
    flex: 0 0 30px;
    height: 30px;
    font-size: 16px;
  }
}
.expert-articles__items-pagination .num {
  color: #555355;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .expert-articles__items-pagination .num {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .expert-articles__items-pagination .num {
    font-size: 14px;
  }
}
.expert-articles__items-pagination .active {
  font-weight: 600;
}

.article__image {
  display: flex;
  align-items: center;
  max-height: 841px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1536px) {
  .article__image {
    max-height: 650px;
  }
}
@media (max-width: 1280px) {
  .article__image {
    max-height: 600px;
  }
}
.article__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 60vh;
}
@media (max-width: 1024px) {
  .article__image img {
    max-height: 420px;
  }
}
@media (max-width: 640px) {
  .article__image img {
    height: 320px;
  }
}
.article__text {
  font-size: 18px;
  max-width: 1070px;
  margin: 32px auto;
}
@media (max-width: 1280px) {
  .article__text {
    font-size: 16px;
  }
}
.article__share {
  max-width: 323px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.article__share-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .article__share-title {
    font-size: 21px;
    margin-bottom: 14px;
  }
}
@media (max-width: 768px) {
  .article__share-title {
    font-size: 16px;
  }
}
.article__share-links {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.article__share-links img {
  width: 36px;
  height: 36px;
}
.article__contacts {
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 32px auto;
}
.article__contacts h5 {
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .article__contacts h5 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .article__contacts h5 {
    font-size: 16px;
  }
}
.article__contacts a {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  width: 320px;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: #c5d1aa;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}
.article__contacts a:hover {
  background-color: #acb98b;
}
@media (max-width: 768px) {
  .article__contacts a {
    width: 300px;
    height: 45px;
    margin-top: 15px;
  }
}

.catalogCharm {
  padding-bottom: 90px;
}
@media (max-width: 1024px) {
  .catalogCharm {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .catalogCharm {
    padding-bottom: 50px;
  }
}
@media (max-width: 479px) {
  .catalogCharm {
    padding-bottom: 40px;
  }
}
.catalogCharm__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 640px) {
  .catalogCharm__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.catalogCharm__popups {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 640px) {
  .catalogCharm__popups {
    width: 100%;
    justify-content: right;
    margin-bottom: 20px;
  }
}
.catalogCharm__filter, .catalogCharm__subcategories {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 18px;
  border: none;
}
.catalogCharm__filter img, .catalogCharm__subcategories img {
  transition: transform 0.3s ease;
}
.catalogCharm__filter.active img, .catalogCharm__subcategories.active img {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .catalogCharm__filter, .catalogCharm__subcategories {
    font-size: 17px;
  }
}
@media (max-width: 640px) {
  .catalogCharm__filter, .catalogCharm__subcategories {
    font-size: 16px;
  }
}
.catalogCharm__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}
@media (max-width: 1536px) {
  .catalogCharm__items {
    gap: 30px 20px;
  }
}
@media (max-width: 1280px) {
  .catalogCharm__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .catalogCharm__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .catalogCharm__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalogCharm__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 16px;
}
.catalogCharm__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.catalogCharm__item svg.active path {
  fill: #c5d1aa;
  stroke: #c5d1aa;
}
.catalogCharm__item:hover .catalogCharm__item-info, .catalogCharm__item:hover .catalogCharm__item-details, .catalogCharm__item:hover .catalogCharm__item-details__mg {
  scale: 1.05;
}
.catalogCharm__item-image {
  position: relative;
  border-radius: 20px;
  background-color: #f7f4f1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 50px 0;
}
@media (max-width: 1440px) {
  .catalogCharm__item-image {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .catalogCharm__item-image {
    padding: 30px 0;
  }
}
@media (max-width: 479px) {
  .catalogCharm__item-image {
    padding: 20px 0;
  }
}
.catalogCharm__item-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 240px;
  height: 290px;
}
@media (max-width: 1280px) {
  .catalogCharm__item-image img {
    width: 200px;
    height: 250px;
  }
}
@media (max-width: 479px) {
  .catalogCharm__item-image img {
    width: 190px;
    height: 240px;
  }
}
.catalogCharm__item-like {
  top: 30px;
  right: 30px;
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.catalogCharm__item-like:hover {
  transform: scale(1.2);
}
@media (max-width: 1536px) {
  .catalogCharm__item-like {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .catalogCharm__item-like {
    width: 28px;
    height: 28px;
  }
}
.catalogCharm__item-info {
  font-size: 20px;
  transition: 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.catalogCharm__item-info:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  text-decoration-thickness: 1px;
}
@media (max-width: 1280px) {
  .catalogCharm__item-info {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .catalogCharm__item-info {
    font-size: 16px;
  }
}
.catalogCharm__item-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: 0.3s ease;
}
@media (max-width: 1280px) {
  .catalogCharm__item-details {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .catalogCharm__item-details {
    font-size: 15px;
  }
}
.catalogCharm__item-details__price {
  font-family: Roboto;
  font-weight: 600;
}
.catalogCharm__item-details__mg {
  color: #858282;
  font-weight: 300;
}
.catalogCharm__item-add {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  border-radius: 10px;
  background-color: #c5d1aa;
  transition: background-color 0.3s ease;
}
@media (max-width: 1280px) {
  .catalogCharm__item-add {
    height: 45px;
  }
}
.catalogCharm__item-add:hover {
  background: #acb98b;
}
.catalogCharm__items-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 50px;
}
.catalogCharm__items-pagination .arrow {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease;
}
.catalogCharm__items-pagination .arrow:hover {
  background-color: #c5d1aa;
}
@media (max-width: 1536px) {
  .catalogCharm__items-pagination .arrow {
    flex: 0 0 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .catalogCharm__items-pagination .arrow {
    flex: 0 0 30px;
    height: 30px;
    font-size: 16px;
  }
}
.catalogCharm__items-pagination .num {
  color: #555355;
  font-family: Roboto;
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .catalogCharm__items-pagination .num {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .catalogCharm__items-pagination .num {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .catalogCharm__items-pagination .num {
    font-size: 14px;
  }
}
.catalogCharm__items-pagination .active {
  font-weight: 600;
}

.catalogCharm__filter-popup,
.catalogCharm__subcategories-popup {
  position: absolute;
  z-index: 10;
  top: 80%;
  right: 0;
  width: 280px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(62, 63, 59, 0.07);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 16px;
}
@media (max-width: 479px) {
  .catalogCharm__filter-popup,
  .catalogCharm__subcategories-popup {
    font-size: 15px;
    padding: 20px;
  }
}
.catalogCharm__filter-popup.active,
.catalogCharm__subcategories-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.catalogCharm__filter-popup__content,
.catalogCharm__subcategories-popup__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalogCharm__filter-popup h3,
.catalogCharm__subcategories-popup h3 {
  color: #384255;
  font-weight: 700;
}
.catalogCharm__filter-popup label,
.catalogCharm__subcategories-popup label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #384255;
  font-weight: 300;
  cursor: pointer;
}
.catalogCharm__filter-popup label:hover,
.catalogCharm__subcategories-popup label:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
.catalogCharm__filter-popup li:hover,
.catalogCharm__subcategories-popup li:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
.catalogCharm__filter-popup input[type=checkbox],
.catalogCharm__subcategories-popup input[type=checkbox] {
  accent-color: #acb98b;
  cursor: pointer;
}
.catalogCharm__filter-popup__clear,
.catalogCharm__subcategories-popup__clear {
  margin-top: 10px;
  padding: 8px;
  background: none;
  border-radius: 10px;
  border: 1px solid #acb98b;
  color: #acb98b;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.catalogCharm__filter-popup__clear:hover,
.catalogCharm__subcategories-popup__clear:hover {
  background: #8c9a68;
  color: white;
}
.catalogCharm__filter-popup .line,
.catalogCharm__subcategories-popup .line {
  margin: 15px 0;
  height: 1px;
  align-self: stretch;
  border-radius: 1px;
  background: rgba(133, 143, 164, 0.2);
}

.catalogBabylang {
  padding-bottom: 40px;
}
@media (min-width: 480px) {
  .catalogBabylang {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .catalogBabylang {
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  .catalogBabylang {
    padding-bottom: 90px;
  }
}
.catalogBabylang__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.catalogBabylang__filter {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 20px;
  border: none;
}
.catalogBabylang__filter img {
  transition: transform 0.3s ease;
}
.catalogBabylang__filter.active img {
  transform: rotate(180deg);
}
@media (max-width: 1280px) {
  .catalogBabylang__filter {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .catalogBabylang__filter {
    font-size: 16px;
  }
}
.catalogBabylang__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}
@media (max-width: 1536px) {
  .catalogBabylang__items {
    gap: 30px 20px;
  }
}
@media (max-width: 1280px) {
  .catalogBabylang__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .catalogBabylang__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .catalogBabylang__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalogBabylang__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 16px;
}
.catalogBabylang__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.catalogBabylang__item svg.active path {
  fill: #c5d1aa;
  stroke: #c5d1aa;
}
.catalogBabylang__item:hover .catalogBabylang__item-info, .catalogBabylang__item:hover .catalogBabylang__item-details, .catalogBabylang__item:hover .catalogBabylang__item-details__mg {
  scale: 1.05;
}
.catalogBabylang__item-image {
  position: relative;
  background: center/cover no-repeat url("../images/card-babyland.webp");
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 50px 0;
}
@media (max-width: 1440px) {
  .catalogBabylang__item-image {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .catalogBabylang__item-image {
    padding: 30px 0;
  }
}
@media (max-width: 479px) {
  .catalogBabylang__item-image {
    padding: 20px 0;
  }
}
.catalogBabylang__item-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 240px;
  height: 290px;
}
@media (max-width: 1280px) {
  .catalogBabylang__item-image img {
    width: 200px;
    height: 250px;
  }
}
@media (max-width: 479px) {
  .catalogBabylang__item-image img {
    width: 190px;
    height: 240px;
  }
}
.catalogBabylang__item-like {
  top: 30px;
  right: 30px;
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.catalogBabylang__item-like:hover {
  transform: scale(1.2);
}
@media (max-width: 1536px) {
  .catalogBabylang__item-like {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .catalogBabylang__item-like {
    width: 28px;
    height: 28px;
  }
}
.catalogBabylang__item-info {
  font-size: 20px;
  transition: 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.catalogBabylang__item-info:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  text-decoration-thickness: 1px;
}
@media (max-width: 1280px) {
  .catalogBabylang__item-info {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .catalogBabylang__item-info {
    font-size: 16px;
  }
}
.catalogBabylang__item-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: 0.3s ease;
}
@media (max-width: 1280px) {
  .catalogBabylang__item-details {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .catalogBabylang__item-details {
    font-size: 15px;
  }
}
.catalogBabylang__item-details__price {
  font-family: Roboto;
  font-weight: 600;
}
.catalogBabylang__item-details__mg {
  color: #858282;
  font-weight: 300;
}
.catalogBabylang__item-add {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  border-radius: 10px;
  background-color: #e5afc8;
  transition: background-color 0.3s ease;
}
@media (max-width: 1280px) {
  .catalogBabylang__item-add {
    height: 45px;
  }
}
.catalogBabylang__item-add:hover {
  background: #E58CB5;
}
.catalogBabylang__items-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 50px;
}
.catalogBabylang__items-pagination .arrow {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease;
}
.catalogBabylang__items-pagination .arrow:hover {
  background-color: #c5d1aa;
}
@media (max-width: 1536px) {
  .catalogBabylang__items-pagination .arrow {
    flex: 0 0 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .catalogBabylang__items-pagination .arrow {
    flex: 0 0 30px;
    height: 30px;
    font-size: 16px;
  }
}
.catalogBabylang__items-pagination .num {
  color: #555355;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .catalogBabylang__items-pagination .num {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .catalogBabylang__items-pagination .num {
    font-size: 14px;
  }
}
.catalogBabylang__items-pagination .active {
  font-weight: 600;
}

.catalogBabylang__filter-popup {
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  width: 280px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(62, 63, 59, 0.07);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 16px;
}
@media (max-width: 479px) {
  .catalogBabylang__filter-popup {
    font-size: 15px;
    padding: 20px;
  }
}
.catalogBabylang__filter-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.catalogBabylang__filter-popup__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalogBabylang__filter-popup h3 {
  color: #384255;
  font-weight: 700;
}
.catalogBabylang__filter-popup label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #384255;
  font-weight: 300;
  cursor: pointer;
}
.catalogBabylang__filter-popup input[type=checkbox] {
  accent-color: #e5afc8;
  cursor: pointer;
}
.catalogBabylang__filter-popup__clear {
  margin-top: 10px;
  padding: 8px;
  background: none;
  border-radius: 10px;
  border: 1px solid #e5afc8;
  color: #E58CB5;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.catalogBabylang__filter-popup__clear:hover {
  background: #E58CB5;
  color: white;
}
.catalogBabylang__filter-popup .line {
  margin: 15px 0;
  height: 1px;
  align-self: stretch;
  border-radius: 1px;
  background: rgba(133, 143, 164, 0.2);
}

.partners {
  padding-bottom: 90px;
  width: 100%;
}
@media (max-width: 1024px) {
  .partners {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .partners {
    padding-bottom: 50px;
  }
}
@media (max-width: 479px) {
  .partners {
    padding-bottom: 40px;
  }
}
.partners__subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media (min-width: 769px) {
  .partners__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .partners__subtitle {
    margin-bottom: 15px;
  }
}
@media (min-width: 1281px) {
  .partners__subtitle {
    font-size: 26px;
  }
}
@media (min-width: 1537px) {
  .partners__subtitle {
    font-size: 28px;
  }
}
.partners__texts {
  font-size: 16px;
  margin-bottom: 25px;
}
@media (min-width: 769px) {
  .partners__texts {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .partners__texts {
    margin-bottom: 15px;
  }
}
@media (min-width: 1537px) {
  .partners__texts {
    font-size: 26px;
  }
}
.partners__texts span {
  color: #c5d1aa;
  font-weight: 600;
}
.partners__banner {
  width: 100%;
}
.partners__banner img {
  width: 100%;
  max-height: 70vh;
  min-height: 216px;
  -o-object-fit: cover;
     object-fit: cover;
}
.partners__choice-title {
  margin: 32px 0 18px;
}
@media (min-width: 480px) {
  .partners__choice-title {
    margin: 40px 0 18px !important;
  }
}
@media (min-width: 1025px) {
  .partners__choice-title {
    margin: 50px 0 22px !important;
  }
}
@media (min-width: 1281px) {
  .partners__choice-title {
    margin: 60px 0 22px !important;
  }
}
@media (min-width: 1441px) {
  .partners__choice-title {
    margin: 100px 0 32px !important;
  }
}
.partners__choice-items {
  max-width: 992px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 1280px) {
  .partners__choice-items {
    row-gap: 20px;
  }
}
@media (max-width: 479px) {
  .partners__choice-items {
    row-gap: 16px;
  }
}
.partners__choice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.partners__choice-item__text {
  max-width: 670px;
}
.partners__choice-item__text h5 {
  color: #38312D;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 1536px) {
  .partners__choice-item__text h5 {
    font-size: 25px;
  }
}
@media (max-width: 1280px) {
  .partners__choice-item__text h5 {
    font-size: 18px;
  }
}
.partners__choice-item__text p {
  font-size: 20px;
}
@media (max-width: 1536px) {
  .partners__choice-item__text p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .partners__choice-item__text p {
    font-size: 16px;
  }
}
.partners__choice-item__image {
  width: 150px;
  height: 150px;
  transition: 0.3s ease;
}
.partners__choice-item__image:hover {
  filter: drop-shadow(10px 10px 2px rgb(172, 185, 139));
}
@media (max-width: 640px) {
  .partners__choice-item__image {
    width: 190px;
  }
}
.partners__choice-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.partners__how {
  margin-top: 95px;
  position: relative;
  background-image: url("../images/leaf.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.partners__how-title {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .partners__how-title {
    font-size: 35px;
  }
}
@media (min-width: 769px) {
  .partners__how-title {
    font-size: 40px;
  }
}
@media (min-width: 1281px) {
  .partners__how-title {
    font-size: 45px;
  }
}
@media (min-width: 1537px) {
  .partners__how-title {
    margin-bottom: 16px;
  }
}
.partners__how-form {
  max-width: 700px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(185, 169, 140, 0.2);
}
@media (max-width: 1280px) {
  .partners__how-form {
    padding: 32px;
  }
}
@media (max-width: 479px) {
  .partners__how-form {
    padding: 16px;
  }
}
.partners__how-form__text {
  text-align: center;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .partners__how-form__text {
    font-size: 16px;
  }
}
.partners__how-form__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin: 24px 0;
  width: 100%;
}
@media (max-width: 768px) {
  .partners__how-form__inputs {
    margin: 18px 0;
  }
}
.partners__how-form__inputs input {
  width: 100%;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 17px 16px;
}
@media (max-width: 479px) {
  .partners__how-form__inputs input {
    padding: 15px 14px;
  }
}
.partners__how-form button {
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  background: #c5d1aa;
  display: flex;
  width: 320px;
  height: 50px;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.partners__how-form button:hover {
  background-color: #acb98b;
}
@media (max-width: 1280px) {
  .partners__how-form button {
    width: 300px;
    height: 45px;
  }
}

.cart {
  padding-bottom: 40px;
}
@media (min-width: 480px) {
  .cart {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .cart {
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  .cart {
    padding-bottom: 90px;
  }
}
.cart__top {
  display: flex;
  justify-content: space-between;
  row-gap: 10px;
  margin-bottom: 10px;
  align-items: start;
  flex-direction: column;
}
@media (min-width: 480px) {
  .cart__top {
    margin-bottom: 22px;
  }
}
@media (min-width: 769px) {
  .cart__top {
    margin-bottom: 32px;
  }
}
@media (min-width: 1025px) {
  .cart__top {
    margin-bottom: 35px;
  }
}
@media (min-width: 1281px) {
  .cart__top {
    margin-bottom: 45px;
  }
}
@media (min-width: 1537px) {
  .cart__top {
    margin-bottom: 60px;
  }
}
@media (min-width: 640px) {
  .cart__top {
    align-items: center;
    flex-direction: row;
  }
}
.cart__clear {
  color: #c5d1aa;
  font-size: 21px;
  font-weight: 500;
}
.cart__clear:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 1536px) {
  .cart__clear {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .cart__clear {
    font-size: 16px;
  }
}
.cart__content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  grid-template-areas: "left right";
}
@media (max-width: 768px) {
  .cart__content {
    grid-template-columns: 1fr;
    grid-template-areas: "right" "left";
  }
}
.cart__items {
  grid-area: left;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.cart__item {
  border-radius: 10px;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  max-width: 907px;
  padding-right: 5px;
  transition: 0.3s ease;
}
.cart__item:hover {
  background-color: #f9f9f9;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.cart__item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 479px) {
  .cart__item-content {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.cart__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 479px) {
  .cart__item-image img {
    width: 100px;
  }
}
.cart__item-top {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  .cart__item-top {
    flex-direction: column;
    row-gap: 1px;
  }
}
@media (max-width: 768px) {
  .cart__item-top {
    row-gap: 8px;
  }
}
.cart__item-texts {
  width: 100%;
}
.cart__item-name {
  font-size: 21px;
}
.cart__item-name:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  text-decoration-thickness: 1px;
}
@media (max-width: 1536px) {
  .cart__item-name {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .cart__item-name {
    font-size: 16px;
  }
}
.cart__item-mg {
  color: #858282;
  font-size: 16px;
}
@media (max-width: 1280px) {
  .cart__item-mg {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .cart__item-mg {
    margin-top: 8px;
    text-align: left;
  }
}
.cart__item-controls {
  display: flex;
  align-items: center;
  -moz-column-gap: 90px;
       column-gap: 90px;
}
@media (max-width: 1440px) {
  .cart__item-controls {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (max-width: 1280px) {
  .cart__item-controls {
    flex-direction: column-reverse;
    row-gap: 16px;
  }
}
.cart__item-count {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  border-radius: 8px;
  border: 1px solid #858282;
  padding: 0px 12px;
}
.cart__item-count span {
  font-size: 16px;
  font-weight: 400;
}
.cart__item-count button {
  font-size: 23px;
  transition: transform 0.3s ease;
}
.cart__item-count button:hover {
  transform: scale(1.5);
}
@media (max-width: 640px) {
  .cart__item-count button {
    font-size: 20px;
  }
}
.cart__item-price {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .cart__item-price {
    font-size: 16px;
  }
}
.cart__item-actions {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.cart__item-actions button {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.cart__item-actions button:hover {
  transform: scale(1.2);
}
.cart__item-actions button svg.active path {
  fill: #c5d1aa;
  stroke: #c5d1aa;
}
.cart__details {
  grid-area: right;
  max-width: 760px;
  font-size: 18px;
  position: sticky;
  top: 75px;
  align-self: start;
}
@media (max-width: 768px) {
  .cart__details {
    position: static;
  }
}
@media (max-width: 1280px) {
  .cart__details {
    font-size: 16px;
  }
}
.cart__details-content {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(197, 209, 170, 0.5);
}
@media (max-width: 1280px) {
  .cart__details-content {
    padding: 32px 24px;
  }
}
@media (max-width: 640px) {
  .cart__details-content {
    padding: 24px 15px;
  }
}
@media (max-width: 479px) {
  .cart__details-content {
    padding: 15px 10px;
    row-gap: 20px;
  }
}
.cart__details-title {
  font-size: 20px;
}
@media (max-width: 1536px) {
  .cart__details-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .cart__details-title {
    font-size: 16px;
  }
}
.cart__details-sums {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.cart__details-sum, .cart__details-del {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart__details-free__sums {
  display: flex;
  align-items: center;
  -moz-column-gap: 44px;
       column-gap: 44px;
}
@media (max-width: 1280px) {
  .cart__details-free__sums {
    -moz-column-gap: 34px;
         column-gap: 34px;
  }
}
.cart__details-free__sum {
  width: 198px;
  border-radius: 10px;
  background-color: #d9d9d9;
  padding: 5px 0;
}
.cart__details-free__sum span {
  border-radius: 10px;
  background-color: #fbf0f0;
  color: #38312D;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  padding: 6px;
}
.cart__details-free__text {
  font-size: 13px;
}
.cart__details-promo {
  font-family: Roboto;
  font-size: 16px;
  padding: 17px 16px;
  border-radius: 10px;
  background: #fff;
  width: 100%;
}
@media (max-width: 479px) {
  .cart__details-promo {
    padding: 15px 14px;
  }
}
.cart__details-line {
  height: 1px;
  background-color: #000;
}
.cart__details-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .cart__details-total {
    font-size: 16px;
  }
}
.cart__details-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}
@media (max-width: 1440px) {
  .cart__details-buttons {
    flex-direction: column;
    margin-top: 20px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .cart__details-buttons {
    flex-direction: row;
  }
}
@media (max-width: 479px) {
  .cart__details-buttons {
    flex-direction: column;
  }
}
.cart__details-buttons__checkout, .cart__details-buttons__order {
  display: block;
  border-radius: 10px;
  border: 2px solid #acb98b;
  font-size: 16px;
  font-weight: 500;
  padding: 1px;
  height: 50px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cart__details-buttons__checkout:hover, .cart__details-buttons__order:hover {
  background-color: #acb98b;
}
@media (max-width: 1440px) {
  .cart__details-buttons__checkout, .cart__details-buttons__order {
    width: 100%;
    height: 45px;
  }
}
@media (max-width: 479px) {
  .cart__details-buttons__checkout, .cart__details-buttons__order {
    padding: 14px 15px;
  }
}
.cart__details-buttons__checkout {
  border: none;
  background-color: #c5d1aa;
}

.cabinet {
  padding-bottom: 90px;
}
@media (max-width: 1024px) {
  .cabinet {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .cabinet {
    padding-bottom: 50px;
  }
}
@media (max-width: 479px) {
  .cabinet {
    padding-bottom: 40px;
  }
}
.cabinet__data {
  margin-bottom: 62px;
}
.cabinet__data-profile {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width: 1024px) {
  .cabinet__data-profile {
    row-gap: 10px;
  }
}
.cabinet__data-profile__field {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  font-size: 18px;
}
@media (max-width: 1280px) {
  .cabinet__data-profile__field {
    font-size: 16px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.cabinet__data-profile__label {
  color: #acb98b;
  font-weight: 700;
  white-space: nowrap;
}
.cabinet__data-profile__input {
  display: none;
  width: 100%;
  padding: 1px 5px;
  border: 1px solid #acb98b;
  border-radius: 5px;
}
.cabinet__data-profile__edit {
  width: 100%;
  height: 50px;
  background-color: #c5d1aa;
  border-radius: 10px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-size: 16px;
}
@media (max-width: 1280px) {
  .cabinet__data-profile__edit {
    height: 45px;
  }
}
.cabinet__data-profile__edit:hover {
  background-color: #acb98b;
}
.cabinet__data-profile.editing .cabinet__data-profile__value {
  display: none;
}
.cabinet__data-profile.editing .cabinet__data-profile__input {
  display: block;
}
.cabinet__history-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .cabinet__history-top {
    margin-bottom: 22px;
  }
}
@media (max-width: 640px) {
  .cabinet__history-top {
    flex-direction: column;
    align-items: start;
  }
}
.cabinet__history-all {
  color: #c5d1aa;
  font-size: 18px;
  font-weight: 500;
}
.cabinet__history-all:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 1024px) {
  .cabinet__history-all {
    font-size: 16px;
  }
}
.cabinet__orders {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (max-width: 479px) {
  .cabinet__orders {
    row-gap: 16px;
  }
}
.cabinet__order {
  display: flex;
  align-items: start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-size: 18px;
  border-bottom: 1px solid #38312D;
  padding-bottom: 32px;
}
@media (max-width: 1280px) {
  .cabinet__order {
    flex-direction: column;
    row-gap: 16px;
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .cabinet__order {
    padding-bottom: 16px;
  }
}
.cabinet__order-info {
  display: flex;
}
.cabinet__order-info__image img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1280px) {
  .cabinet__order-info__image img {
    width: 190px;
    height: 190px;
  }
}
@media (max-width: 768px) {
  .cabinet__order-info__image img {
    width: 141px;
    height: 141px;
  }
}
@media (max-width: 640px) {
  .cabinet__order-info__image img {
    width: 120px;
    height: 120px;
  }
}
.cabinet__order-info__texts h3 {
  font-weight: 500;
  margin-bottom: 8px;
}
.cabinet__order-info__texts p {
  max-width: 217px;
  min-width: 217px;
  width: 100%;
}
@media (max-width: 1280px) {
  .cabinet__order-info__texts p {
    max-width: 400px;
  }
}
.cabinet__order-details {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
@media (max-width: 479px) {
  .cabinet__order-details {
    font-size: 14px;
  }
}
.cabinet__order-details th {
  font-weight: 700;
}
.cabinet__order-details td {
  padding-top: 32px;
}
@media (max-width: 1024px) {
  .cabinet__order-details td {
    padding-top: 20px;
  }
}
.cabinet__notify {
  margin-top: 66px;
}
.cabinet__notify-items {
  display: flex;
  flex-direction: column;
}
.cabinet__notify-item {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  font-size: 16px;
  padding: 16px 0;
}
@media (max-width: 1024px) {
  .cabinet__notify-item {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .cabinet__notify-item {
    -moz-column-gap: 11px;
         column-gap: 11px;
  }
}
@media (max-width: 479px) {
  .cabinet__notify-item {
    flex-direction: column;
    row-gap: 10px;
  }
}
.cabinet__notify-item__date {
  font-weight: 500;
}
.cabinet__notify-item__texts {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.cabinet__notify-item__text-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  font-size: 16px;
  padding-left: 25px;
  font-style: italic;
}
.cabinet__notify-item__text-answer.active {
  max-height: 400px;
}
.cabinet__notify-item__toggle {
  color: #acb98b;
  font-weight: 500;
  align-self: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.cabinet__out {
  display: flex;
  justify-content: center;
  margin-top: 65px;
}
.cabinet__out-btn {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 33px;
  border-radius: 10px;
  background-color: #c5d1aa;
  transition: background-color 0.3s ease;
}
.cabinet__out-btn:hover {
  background-color: #acb98b;
}
@media (max-width: 1024px) {
  .cabinet__out-btn {
    padding: 10px 30px;
  }
}

.search-results {
  padding-bottom: 90px;
}
@media (max-width: 1024px) {
  .search-results {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .search-results {
    padding-bottom: 50px;
  }
}
@media (max-width: 479px) {
  .search-results {
    padding-bottom: 40px;
  }
}
.search-results__title {
  margin: 32px 0 !important;
}
@media (max-width: 479px) {
  .search-results__title {
    margin: 24px 0 !important;
  }
}
.search-results__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}
@media (max-width: 1536px) {
  .search-results__items {
    gap: 30px 20px;
  }
}
@media (max-width: 1280px) {
  .search-results__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .search-results__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .search-results__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search-results__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 16px;
}
.search-results__item svg.active path {
  fill: #c5d1aa;
  stroke: #c5d1aa;
}
.search-results__item:hover .search-results__item-info, .search-results__item:hover .search-results__item-details, .search-results__item:hover .search-results__item-details__mg {
  scale: 1.05;
}
.search-results__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.search-results__item-image {
  position: relative;
  border-radius: 20px;
  background-color: #f7f4f1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 50px 0;
}
@media (max-width: 1440px) {
  .search-results__item-image {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .search-results__item-image {
    padding: 30px 0;
  }
}
@media (max-width: 479px) {
  .search-results__item-image {
    padding: 20px 0;
  }
}
.search-results__item-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 240px;
  height: 290px;
}
@media (max-width: 1280px) {
  .search-results__item-image img {
    width: 200px;
    height: 250px;
  }
}
@media (max-width: 479px) {
  .search-results__item-image img {
    width: 190px;
    height: 240px;
  }
}
.search-results__item-like {
  top: 30px;
  right: 30px;
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.search-results__item-like:hover {
  transform: scale(1.2);
}
@media (max-width: 1536px) {
  .search-results__item-like {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .search-results__item-like {
    width: 28px;
    height: 28px;
  }
}
.search-results__item-info {
  font-size: 20px;
  transition: 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.search-results__item-info:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  text-decoration-thickness: 1px;
}
@media (max-width: 1280px) {
  .search-results__item-info {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .search-results__item-info {
    font-size: 16px;
  }
}
.search-results__item-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: 0.3s ease;
}
@media (max-width: 1280px) {
  .search-results__item-details {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .search-results__item-details {
    font-size: 15px;
  }
}
.search-results__item-details__price {
  font-family: Roboto;
  font-weight: 600;
}
.search-results__item-details__mg {
  color: #858282;
  font-weight: 300;
}
.search-results__item-add {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  border-radius: 10px;
  background-color: #c5d1aa;
  transition: background-color 0.3s ease;
}
@media (max-width: 1280px) {
  .search-results__item-add {
    height: 45px;
  }
}
.search-results__item-add:hover {
  background: #acb98b;
}
.search-results__items-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 50px;
}
.search-results__items-pagination .arrow {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease;
}
.search-results__items-pagination .arrow:hover {
  background-color: #c5d1aa;
}
@media (max-width: 1536px) {
  .search-results__items-pagination .arrow {
    flex: 0 0 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .search-results__items-pagination .arrow {
    flex: 0 0 30px;
    height: 30px;
    font-size: 16px;
  }
}
.search-results__items-pagination .num {
  color: #555355;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .search-results__items-pagination .num {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .search-results__items-pagination .num {
    font-size: 14px;
  }
}
.search-results__items-pagination .active {
  font-weight: 600;
}

.product__slider-content {
  position: sticky;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 385px;
  max-height: 660px;
  top: 80px;
}
@media (max-width: 768px) {
  .product__slider-content {
    min-width: 100%;
    position: static;
  }
}

.product__slider-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background: #f7f4f1;
  width: 489px;
  height: 600px;
}
@media (max-width: 1536px) {
  .product__slider-main {
    width: 400px;
    height: 450px;
  }
}
@media (max-width: 479px) {
  .product__slider-main {
    height: 390px;
  }
}
.product__slider-main__wrapper {
  align-items: center;
}
.product__slider-main__slide {
  cursor: zoom-in;
}
.product__slider-main__slide:hover img {
  transform: scale(1.8);
}
@media (max-width: 768px) {
  .product__slider-main__slide:hover img {
    transform: none;
  }
}
.product__slider-main__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s ease;
}
.product__slider-main__like {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  border: none;
  background: none;
  transition: transform 0.3s ease;
}
@media (max-width: 479px) {
  .product__slider-main__like {
    top: 16px;
    right: 16px;
  }
}
.product__slider-main__like:hover {
  transform: scale(1.2);
}
.product__slider-main__like svg.active path {
  fill: #c5d1aa;
  stroke: #c5d1aa;
}

.product__slider-preview {
  width: 100px;
  height: 600px;
}
@media (max-width: 1536px) {
  .product__slider-preview {
    height: 450px;
  }
}
@media (max-width: 479px) {
  .product__slider-preview {
    height: 390px;
  }
}
.product__slider-preview__swiper {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__slider-preview__slide {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.product__slider-preview__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 479px) {
  .product__slider-preview__slide img {
    height: 85px;
  }
}

.product {
  padding-bottom: 90px;
}
@media (max-width: 1024px) {
  .product {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .product {
    padding-bottom: 50px;
  }
}
@media (max-width: 479px) {
  .product {
    padding-bottom: 40px;
  }
}
.product__content {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .product__content {
    grid-template-columns: 1fr;
  }
}
.product__info-content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width: 640px) {
  .product__info-content {
    row-gap: 12px;
  }
}
.product__info-name {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1536px) {
  .product__info-name {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .product__info-name {
    font-size: 16px;
  }
}
.product__info-ml {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .product__info-ml {
    font-size: 16px;
  }
}
.product__info-price {
  font-size: 21px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .product__info-price {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .product__info-price {
    font-size: 16px;
  }
}
.product__info-text {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .product__info-text {
    font-size: 16px;
  }
}
.product__info-count {
  width: 85px;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  border-radius: 8px;
  border: 1px solid #858282;
  padding: 0px 12px;
}
.product__info-count span {
  font-size: 16px;
  font-weight: 400;
}
.product__info-count button {
  font-size: 23px;
  transition: transform 0.3s ease;
}
.product__info-count button:hover {
  transform: scale(1.5);
}
@media (max-width: 640px) {
  .product__info-count button {
    font-size: 20px;
  }
}
.product__info-add {
  font-size: 16px;
  font-weight: 500;
  width: 320px;
  padding: 16px 17px;
  border-radius: 10px;
  background-color: #c5d1aa;
  transition: background-color 0.3s ease;
}
.product__info-add:hover {
  background-color: #acb98b;
}
@media (max-width: 479px) {
  .product__info-add {
    width: 100%;
    padding: 14px 15px;
  }
}

.product__info-desc {
  margin-top: 52px;
}
@media (max-width: 640px) {
  .product__info-desc {
    margin-top: 42px;
  }
}
.product__info-desc__items {
  display: flex;
  flex-direction: column;
}
.product__info-desc__item {
  border-block: 0.5px solid #acb98b;
  margin-bottom: -0.5px;
}
.product__info-desc__item.product__info-desc__item-active {
  border-color: transparent;
}
.product__info-desc__button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  text-align: left;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .product__info-desc__button {
    padding: 11px 0;
  }
}
.product__info-desc__button-text {
  flex: 1 1 auto;
  color: #333;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .product__info-desc__button-text {
    font-size: 17px;
  }
}
.product__info-desc__button-arrow {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  font-size: 30px;
  text-align: center;
}
@media (max-width: 1024px) {
  .product__info-desc__button-arrow {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .product__info-desc__button-arrow {
    font-size: 22px;
  }
}
.product__info-desc__collapse {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  font-size: 18px;
}
@media (max-width: 768px) {
  .product__info-desc__collapse {
    font-size: 16px;
  }
}
.product__info-desc__item-active .product__info-desc__collapse {
  grid-template-rows: 1fr;
}

.order {
  padding-bottom: 40px;
}
@media (min-width: 480px) {
  .order {
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  .order {
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  .order {
    padding-bottom: 90px;
  }
}
.order__content {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  grid-template-areas: "left right";
}
@media (max-width: 768px) {
  .order__content {
    grid-template-columns: 1fr;
    grid-template-areas: "right" "left";
  }
}
.order__delivery {
  grid-area: left;
  max-width: 920px;
}
.order__methods-variants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 1536px) {
  .order__methods-variants {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 1024px) {
  .order__methods-variants {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.order__methods-variants .order__method {
  border-radius: 10px;
  border: 1px solid #38312D;
  padding: 16px 13px;
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}
.order__methods-variants .order__method-label {
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  font-size: 18px;
  font-weight: 500;
}
.order__methods-variants .order__method-label input {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.order__methods-variants .order__method-info, .order__methods-variants .order__method-price {
  font-size: 18px;
}
.order__methods-variants .order__method-info h5, .order__methods-variants .order__method-price h5 {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .order__methods-variants .order__method-info h5, .order__methods-variants .order__method-price h5 {
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  .order__methods-variants .order__method-info p, .order__methods-variants .order__method-price p {
    font-size: 16px;
  }
}
.order__methods-point {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.order__methods-point__title {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .order__methods-point__title {
    font-size: 17px;
  }
}
.order__methods-point__address {
  width: 100%;
  padding: 17px 16px;
  border-radius: 10px;
  background: #f2f2f2;
  color: #a2a1a1;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .order__methods-point__address {
    padding: 15px 14px;
    font-size: 16px;
  }
}
.order__methods-point__choice {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 479px) {
  .order__methods-point__choice {
    flex-direction: column;
    row-gap: 16px;
  }
}
.order__methods-point__choice select,
.order__methods-point__choice button {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #38312D;
  padding: 15px 13px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: inherit;
}
@media (max-width: 1024px) {
  .order__methods-point__choice select,
  .order__methods-point__choice button {
    font-size: 16px;
  }
}
.order__data {
  margin-top: 120px;
}
@media (max-width: 1440px) {
  .order__data {
    margin-top: 100px;
  }
}
@media (max-width: 1280px) {
  .order__data {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .order__data {
    margin-top: 50px;
  }
}
.order__data-title {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .order__data-title {
    font-size: 35px;
  }
}
@media (min-width: 769px) {
  .order__data-title {
    font-size: 40px;
  }
}
@media (min-width: 1281px) {
  .order__data-title {
    font-size: 45px;
  }
}
@media (min-width: 1537px) {
  .order__data-title {
    margin-bottom: 16px;
  }
}
.order__data input {
  width: 100%;
  font-size: 18px;
  padding: 17px 16px;
  border-radius: 10px;
  background: #f2f2f2;
}
@media (max-width: 1024px) {
  .order__data input {
    font-size: 16px;
    padding: 15px 14px;
  }
}
.order__data-content {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.order__data-name__title, .order__data-address__title, .order__data-contacts__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .order__data-name__title, .order__data-address__title, .order__data-contacts__title {
    font-size: 17px;
  }
}
.order__data-name__inputs, .order__data-address__inputs, .order__data-contacts__inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
@media (max-width: 479px) {
  .order__data-name__inputs, .order__data-address__inputs, .order__data-contacts__inputs {
    grid-template-columns: 1fr;
  }
}
.order__data-name .three-cols, .order__data-address .three-cols, .order__data-contacts .three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
  grid-column: span 2;
}
@media (max-width: 479px) {
  .order__data-name .three-cols, .order__data-address .three-cols, .order__data-contacts .three-cols {
    grid-column: span 1;
    gap: 16px;
  }
}
@media (max-width: 450px) {
  .order__data-name .three-cols, .order__data-address .three-cols, .order__data-contacts .three-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.order__payment {
  margin-top: 120px;
}
@media (max-width: 1440px) {
  .order__payment {
    margin-top: 100px;
  }
}
@media (max-width: 1280px) {
  .order__payment {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .order__payment {
    margin-top: 50px;
  }
}
.order__payment-title {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .order__payment-title {
    font-size: 35px;
  }
}
@media (min-width: 769px) {
  .order__payment-title {
    font-size: 40px;
  }
}
@media (min-width: 1281px) {
  .order__payment-title {
    font-size: 45px;
  }
}
@media (min-width: 1537px) {
  .order__payment-title {
    margin-bottom: 16px;
  }
}
.order__payment-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
@media (max-width: 479px) {
  .order__payment-content {
    grid-template-columns: 1fr;
  }
}
.order__payment-content label {
  border-radius: 10px;
  border: 1px solid #38312D;
  padding: 16px 13px;
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
}
.order__payment-content label input {
  width: 16px;
  height: 16px;
}
.order__comment {
  margin-top: 120px;
}
@media (max-width: 1440px) {
  .order__comment {
    margin-top: 100px;
  }
}
@media (max-width: 1280px) {
  .order__comment {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .order__comment {
    margin-top: 50px;
  }
}
.order__comment-title {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .order__comment-title {
    font-size: 35px;
  }
}
@media (min-width: 769px) {
  .order__comment-title {
    font-size: 40px;
  }
}
@media (min-width: 1281px) {
  .order__comment-title {
    font-size: 45px;
  }
}
@media (min-width: 1537px) {
  .order__comment-title {
    margin-bottom: 16px;
  }
}
.order__comment textarea {
  width: 100% !important;
  height: 170px !important;
  padding: 17px 16px;
  font-size: 18px;
  border-radius: 10px;
  background: #f2f2f2;
  resize: none;
}
@media (max-width: 1024px) {
  .order__comment textarea {
    padding: 15px 14px;
    font-size: 16px;
  }
}
.order__details {
  grid-area: right;
  max-width: 760px;
  font-size: 18px;
  position: sticky;
  top: 75px;
  align-self: start;
}
@media (max-width: 768px) {
  .order__details {
    position: static;
  }
}
@media (max-width: 1280px) {
  .order__details {
    font-size: 16px;
  }
}
.order__details-content {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(197, 209, 170, 0.5);
}
@media (max-width: 1280px) {
  .order__details-content {
    padding: 32px 24px;
  }
}
@media (max-width: 640px) {
  .order__details-content {
    padding: 24px 15px;
  }
}
@media (max-width: 479px) {
  .order__details-content {
    padding: 15px 10px;
    row-gap: 20px;
  }
}
.order__details-title {
  font-size: 20px;
}
@media (max-width: 1536px) {
  .order__details-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .order__details-title {
    font-size: 16px;
  }
}
.order__details-sums {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.order__details-sum, .order__details-del {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order__details-promo {
  font-family: Roboto;
  font-size: 16px;
  padding: 17px 16px;
  border-radius: 10px;
  background: #fff;
  width: 100%;
}
@media (max-width: 479px) {
  .order__details-promo {
    padding: 15px 14px;
  }
}
.order__details-line {
  height: 1px;
  background-color: #000;
}
.order__details-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .order__details-total {
    font-size: 16px;
  }
}
.order__details-btn {
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  background: #acb98b;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order__details-btn:active {
  background: #c5d1aa;
}
@media (max-width: 1280px) {
  .order__details-btn {
    height: 45px;
  }
}

.modal-map {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.modal-map__content {
  position: relative;
  overflow: hidden;
  max-width: 1225px;
  max-height: 744px;
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  width: 100%;
  animation: scaleUp 0.3s ease forwards;
}
@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 479px) {
  .modal-map__content {
    padding: 10px;
  }
}
.modal-map__flex {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .modal-map__flex {
    grid-template-columns: 1fr;
  }
}
.modal-map__address h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .modal-map__address h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .modal-map__address h3 {
    font-size: 18px;
  }
}
.modal-map__address ul {
  max-height: 550px;
  overflow: auto;
}
@media (max-width: 1280px) {
  .modal-map__address ul {
    max-height: 355px;
  }
}
.modal-map__address ul :hover {
  background: #e2e8d4;
  transition: 0.3s ease;
}
.modal-map__address ul li {
  font-size: 16px;
  padding: 16px 24px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .modal-map__address ul li {
    padding: 14px;
  }
}
@media (max-width: 479px) {
  .modal-map__address ul li {
    padding: 10px;
  }
}
.modal-map__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 40px;
  z-index: 10;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
@media (max-width: 470px) {
  .modal-map__close {
    font-size: 45px;
    top: 10px;
    right: 10px;
  }
}

#map {
  width: 100%;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  #map {
    height: 400px;
  }
}
@media (max-width: 375px) {
  #map {
    height: 300px;
  }
}

.ordered {
  padding-bottom: 90px;
}
@media (max-width: 1024px) {
  .ordered {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .ordered {
    padding-bottom: 50px;
  }
}
@media (max-width: 479px) {
  .ordered {
    padding-bottom: 40px;
  }
}
.ordered__content {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .ordered__content {
    font-size: 16px;
  }
}
.ordered__tnx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background: rgba(197, 209, 170, 0.2);
  padding: 24px 32px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .ordered__tnx {
    padding: 20px 28px;
  }
}
@media (max-width: 640px) {
  .ordered__tnx {
    padding: 16px 8px;
    row-gap: 8px;
    flex-direction: column;
    justify-content: center;
  }
}
.ordered__tnx span {
  color: #000;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .ordered__tnx span {
    font-size: 16px;
  }
}
.ordered__tnx a {
  color: #acb98b;
  font-size: 16px;
}
.ordered__tnx a:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.ordered__item {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .ordered__item {
    row-gap: 16px;
  }
}
@media (max-width: 479px) {
  .ordered__item {
    row-gap: 8px;
  }
}
.ordered__item-total {
  font-weight: 500;
}
.ordered__method {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.ordered__method span:first-child {
  font-weight: 500;
}
.ordered__data {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .ordered__data {
    row-gap: 16px;
  }
}
@media (max-width: 479px) {
  .ordered__data {
    row-gap: 8px;
  }
}
.ordered__data-content {
  display: flex;
  flex-direction: column;
  max-width: 923px;
  row-gap: 17px;
}
@media (max-width: 1024px) {
  .ordered__data-content {
    row-gap: 15px;
  }
}
@media (max-width: 479px) {
  .ordered__data-content {
    row-gap: 8px;
  }
}
.ordered__data-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ordered__data-info span:first-child {
  font-weight: 500;
}
@media (max-width: 479px) {
  .ordered__data-info {
    -moz-column-gap: 12px;
         column-gap: 12px;
    justify-content: start;
    align-items: start;
  }
}
.ordered__data-title, .ordered__method-title, .ordered__item-title {
  font-size: 40px;
  text-transform: uppercase;
}
@media (max-width: 1536px) {
  .ordered__data-title, .ordered__method-title, .ordered__item-title {
    font-size: 34px;
  }
}
@media (max-width: 1280px) {
  .ordered__data-title, .ordered__method-title, .ordered__item-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .ordered__data-title, .ordered__method-title, .ordered__item-title {
    font-size: 22px;
  }
}

.popular {
  padding-bottom: 90px;
}
@media (max-width: 1024px) {
  .popular {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .popular {
    padding-bottom: 50px;
  }
}
@media (max-width: 479px) {
  .popular {
    padding-bottom: 40px;
  }
}
.popular__title {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .popular__title {
    font-size: 35px;
  }
}
@media (min-width: 769px) {
  .popular__title {
    font-size: 40px;
  }
}
@media (min-width: 1281px) {
  .popular__title {
    font-size: 45px;
  }
}
@media (min-width: 1537px) {
  .popular__title {
    margin-bottom: 16px;
  }
}
.popular__product {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  height: 100%;
}
.popular__product-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.popular__product-like {
  position: absolute;
  background: transparent;
  top: 20px;
  right: 20px;
  transition: 0.3s ease;
}
.popular__product-like:hover {
  transform: scale(1.2);
}
@media (max-width: 1280px) {
  .popular__product-like svg {
    width: 28px;
    height: 28px;
  }
}
.popular__product-like svg.active path {
  fill: #c5d1aa;
  stroke: #c5d1aa;
}
.popular__product-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  border-radius: 20px;
  background: #f7f4f1;
  height: 100%;
}
@media (max-width: 1440px) {
  .popular__product-image {
    padding: 40px 0;
  }
}
@media (max-width: 1280px) {
  .popular__product-image {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .popular__product-image {
    padding: 25px 0;
  }
}
@media (max-width: 479px) {
  .popular__product-image {
    padding: 15px 0;
  }
}
.popular__product-image img {
  max-width: 205px;
  max-height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 479px) {
  .popular__product-image img {
    max-width: 170px;
    max-height: 200px;
  }
}
.popular__product-text {
  font-size: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 5px;
}
.popular__product-text:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  text-decoration-thickness: 1px;
}
@media (max-width: 1536px) {
  .popular__product-text {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .popular__product-text {
    font-size: 16px;
  }
}
.popular__product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
}
@media (max-width: 1280px) {
  .popular__product-info {
    margin: 15px 0;
  }
}
@media (max-width: 479px) {
  .popular__product-info {
    margin: 7px 0;
  }
}
.popular__product-info-price {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .popular__product-info-price {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .popular__product-info-price {
    font-size: 14px;
  }
}
.popular__product-info-mg {
  color: #858282;
  font-size: 16px;
}
@media (max-width: 1280px) {
  .popular__product-info-mg {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .popular__product-info-mg {
    font-size: 12px;
  }
}
.popular__product-more {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  min-height: 44px;
  border-radius: 10px;
  transition: 0.3s ease;
  background-color: #c5d1aa;
}
@media (max-width: 640px) {
  .popular__product-more {
    min-height: 40px;
  }
}
.popular__product-more:hover {
  background-color: #acb98b;
}

.popular-slider__slider-body {
  height: 100%;
}
.popular-slider__slide {
  height: auto;
}
.popular-slider__navigation {
  margin-top: 32px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .popular-slider__navigation {
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-top: 24px;
  }
}
@media (max-width: 769px) {
  .popular-slider__navigation {
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin-top: 18px;
  }
}
.popular-slider__navigation button {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #c5d1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease;
}
.popular-slider__navigation button:hover {
  background-color: #c5d1aa;
}
@media (max-width: 1280px) {
  .popular-slider__navigation button {
    flex: 0 0 52px;
    height: 52px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .popular-slider__navigation button {
    flex: 0 0 28px;
    height: 28px;
    font-size: 14px;
  }
}

.auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.auth-modal__content {
  border-radius: 20px;
  background: rgba(166, 174, 147, 0.8);
  padding: 50px;
  position: relative;
  min-width: 300px;
  max-width: 544px;
  width: 100%;
  text-align: center;
  animation: scaleUp 0.3s ease forwards;
}
@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
  .auth-modal__content {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .auth-modal__content {
    padding: 20px;
  }
}
@media (max-width: 649px) {
  .auth-modal__content {
    padding: 15px;
  }
}
.auth-modal__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
}

.auth-modal__form-title {
  text-align: left;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  margin: 24px 0;
}
@media (max-width: 1024px) {
  .auth-modal__form-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .auth-modal__form-title {
    font-size: 24px;
  }
}
@media (max-width: 649px) {
  .auth-modal__form-title {
    font-size: 21px;
  }
}
.auth-modal__form-text {
  text-align: left !important;
  font-weight: 300 !important;
}
.auth-modal__form-regText {
  margin: 24px 0;
  text-align: left !important;
  font-weight: 300 !important;
}
.auth-modal__form p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.auth-modal__form p a {
  color: #363d24;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .auth-modal__form p {
    font-size: 16px;
  }
}
.auth-modal__form-inputs {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 100%;
}
.auth-modal__form-inputs input {
  width: 100%;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 17px 16px;
}
@media (max-width: 479px) {
  .auth-modal__form-inputs input {
    padding: 15px 14px;
  }
}
.auth-modal__form-submit {
  width: 100%;
  border-radius: 10px;
  background-color: #acb98b;
  display: flex;
  height: 56px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  margin: 24px 0;
  transition: background-color 0.3s ease;
}
.auth-modal__form-submit:hover {
  background-color: #8c9a68;
}
@media (max-width: 1024px) {
  .auth-modal__form-submit {
    font-size: 16px;
    height: 50px;
  }
}

.auth-modal.active {
  display: flex;
}

.auth-modal__form {
  display: none;
}

.auth-modal__form.active {
  display: block;
}

.modal-product__card {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.modal-product__card.active {
  display: flex;
}
.modal-product__card-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-radius: 20px;
  background: rgba(197, 209, 170, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 50px;
  max-width: 1346px;
  overflow: auto;
  animation: scaleUp 0.3s ease forwards;
}
@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 1536px) {
  .modal-product__card-content {
    max-width: 1145px;
    padding: 40px;
  }
}
@media (max-width: 1024px) {
  .modal-product__card-content {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .modal-product__card-content {
    padding: 24px;
  }
}
@media (max-width: 640px) {
  .modal-product__card-content {
    grid-template-columns: 1fr;
    padding: 5px 14px;
    max-height: 863px;
    gap: 12px;
  }
}
@media (max-width: 479px) {
  .modal-product__card-content {
    max-height: 660px;
    gap: 6px;
  }
}
@media (max-width: 380px) {
  .modal-product__card-content {
    max-height: 555px;
  }
}
.modal-product__card-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  padding: 0;
  font-size: 35px;
  width: 20px;
  height: 20px;
  color: #fff;
  font-weight: 500;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .modal-product__card-close {
    position: sticky;
    top: 0;
    margin-left: auto;
  }
}
.modal-product__card-info {
  color: #fff;
}
.modal-product__card-texts {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width: 640px) {
  .modal-product__card-texts {
    row-gap: 10px;
  }
}
@media (max-width: 479px) {
  .modal-product__card-texts {
    row-gap: 5px;
  }
}
.modal-product__card-name {
  font-size: 21px;
  font-weight: 500;
}
@media (max-width: 1536px) {
  .modal-product__card-name {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .modal-product__card-name {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .modal-product__card-name {
    font-size: 15px;
  }
}
.modal-product__card-nums {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-product__card-nums span {
  font-size: 21px;
  font-weight: 500;
}
@media (max-width: 1536px) {
  .modal-product__card-nums span {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .modal-product__card-nums span {
    font-size: 15px;
  }
}
.modal-product__card-desc {
  font-size: 18px;
}
@media (max-width: 1280px) {
  .modal-product__card-desc {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .modal-product__card-desc {
    font-size: 15px;
  }
}
.modal-product__card-count {
  width: 85px;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  border-radius: 8px;
  border: 1px solid #fff;
  padding: 0px 12px;
}
.modal-product__card-count span {
  font-size: 16px;
  font-weight: 400;
}
.modal-product__card-count button {
  font-size: 23px;
  transition: transform 0.3s ease;
}
.modal-product__card-count button:hover {
  transform: scale(1.5);
}
@media (max-width: 640px) {
  .modal-product__card-count button {
    font-size: 20px;
  }
}
.modal-product__card-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 992px) {
  .modal-product__card-btns {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 479px) {
  .modal-product__card-btns {
    gap: 8px;
  }
}
.modal-product__card-btns button {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  transition: background-color 0.3s ease;
}
@media (max-width: 1280px) {
  .modal-product__card-btns button {
    height: 45px;
  }
}
@media (max-width: 992px) {
  .modal-product__card-btns button {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .modal-product__card-btns button {
    height: 40px;
    font-size: 15px;
  }
}
@media (max-width: 479px) {
  .modal-product__card-btns button {
    height: 33px;
    font-size: 14px;
  }
}
.modal-product__card-btns button:first-child {
  background-color: #c5d1aa;
  color: black;
}
.modal-product__card-btns button:first-child:hover {
  background-color: #acb98b;
}
.modal-product__card-btns button:last-child {
  border: 2px solid #c5d1aa;
  background-color: transparent;
  color: #fff;
}
.modal-product__card-btns button:last-child:hover {
  background-color: #c5d1aa;
}
.modal-product__card-link {
  text-align: right;
}
.modal-product__card-link a {
  border-bottom: 1px solid #fff;
  font-size: 15px;
  color: #fff;
}
.modal-product__card-share {
  margin-top: 40px;
}
@media (max-width: 640px) {
  .modal-product__card-share {
    margin-top: 20px;
  }
}
.modal-product__card-share h5 {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .modal-product__card-share h5 {
    font-size: 15px;
  }
}
.modal-product__card-share div {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-top: 16px;
}
@media (max-width: 479px) {
  .modal-product__card-share div {
    margin-top: 5px;
  }
}
.modal-product__card-share div img {
  width: 36px;
  height: 36px;
}
@media (max-width: 479px) {
  .modal-product__card-share div img {
    width: 25px;
    height: 25px;
  }
}

.modal-product__slider-content {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-height: 660px;
}
@media (max-width: 768px) {
  .modal-product__slider-content {
    min-width: 100%;
  }
}
@media (max-width: 479px) {
  .modal-product__slider-content {
    max-height: 300px;
  }
}

.modal-product__slider-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background: #f7f4f1;
  width: 489px;
  height: 660px;
}
@media (max-width: 1536px) {
  .modal-product__slider-main {
    width: 400px;
    height: 500px;
  }
}
@media (max-width: 992px) {
  .modal-product__slider-main {
    height: 300px;
  }
}
@media (max-width: 479px) {
  .modal-product__slider-main {
    height: 200px;
  }
}
.modal-product__slider-main__wrapper {
  align-items: center;
}
.modal-product__slider-main__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  position: relative;
  cursor: zoom-in;
}
.modal-product__slider-main__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s ease;
  will-change: transform;
  transform-origin: center center;
}
@media (max-width: 640px) {
  .modal-product__slider-main__slide img {
    max-height: 355px;
  }
}
@media (max-width: 479px) {
  .modal-product__slider-main__slide img {
    height: 200px;
  }
}
.modal-product__slider-main__like {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  border: none;
  background: none;
  transition: transform 0.3s ease;
}
@media (max-width: 479px) {
  .modal-product__slider-main__like {
    top: 16px;
    right: 16px;
  }
}
@media (any-hover: hover) {
  .modal-product__slider-main__like:hover {
    transform: scale(1.2);
  }
}
.modal-product__slider-main__like svg.active path {
  fill: #c5d1aa;
  stroke: #c5d1aa;
}

.modal-product__slider-preview {
  width: 100px;
  height: 600px;
}
@media (max-width: 1536px) {
  .modal-product__slider-preview {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .modal-product__slider-preview {
    height: 300px;
  }
}
@media (max-width: 479px) {
  .modal-product__slider-preview {
    height: 200px;
  }
}
.modal-product__slider-preview__swiper {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal-product__slider-preview__slide {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.modal-product__slider-preview__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 640px) {
  .modal-product__slider-preview__slide img {
    height: 80px;
  }
}
@media (max-width: 479px) {
  .modal-product__slider-preview__slide img {
    height: 55px;
  }
}

.error {
  margin: 120px 0;
}
@media (max-width: 640px) {
  .error {
    margin: 90px 0;
  }
}
.error__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  max-width: 874px;
  margin: 0 auto;
}
.error__title {
  color: #38312D;
  font-size: 70px;
  font-weight: 500;
}
@media (min-width: 641px) {
  .error__title {
    font-size: 80px;
  }
}
@media (min-width: 769px) {
  .error__title {
    font-size: 100px;
  }
}
@media (min-width: 1281px) {
  .error__title {
    font-size: 120px;
  }
}
.error__subtitle {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 641px) {
  .error__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .error__subtitle {
    font-size: 20px;
  }
}
@media (min-width: 1281px) {
  .error__subtitle {
    font-size: 25px;
  }
}
.error__text {
  font-size: 16px;
  margin: 8px 0 24px;
}
@media (min-width: 641px) {
  .error__text {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .error__text {
    font-size: 22px;
  }
}
.error__toHome {
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  background-color: #c5d1aa;
  padding: 15px 30px;
  display: block;
  max-width: 425px;
  transition: background-color 0.3s ease;
}
.error__toHome:hover {
  background-color: #acb98b;
}
@media (min-width: 480px) {
  .error__toHome {
    font-size: 18px;
    padding: 15px 50px;
  }
}

* {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100% !important;
  min-width: 360px !important;
}

body {
  text-rendering: optimizeLegibility;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  /* -webkit-text-size-adjust: 100%; */
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea {
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
  transition: transform 0.3s ease;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  user-drag: none;
  -webkit-user-drag: none;
  pointer-events: none; /* Отключает события мыши */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

[class*=__container] {
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
@media (min-width: 768px) {
  [class*=__container] {
    padding: 0 40px;
  }
}

body {
  font-family: "Geometria", sans-serif;
  background: url("../images/background-image.webp") lightgray 1.195px -40.499px/107.89% 104.028%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #1c1a19;
  font-weight: 300;
}

body.no-scroll {
  overflow: hidden !important;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main {
  flex-grow: 1;
}

.title-section {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .title-section {
    margin-bottom: 20px;
  }
}
@media (min-width: 769px) {
  .title-section {
    font-size: 25px;
  }
}
@media (min-width: 1025px) {
  .title-section {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1281px) {
  .title-section {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1537px) {
  .title-section {
    margin-bottom: 40px;
  }
}

.breadcrumbs {
  margin: 16px 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-size: 12px;
  font-weight: 400;
}
.breadcrumbs a img {
  width: 20px;
  height: 20px;
}
@media (min-width: 480px) {
  .breadcrumbs a img {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 480px) {
  .breadcrumbs {
    margin: 25px 0;
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .breadcrumbs {
    margin: 30px 0;
  }
}
@media (min-width: 1537px) {
  .breadcrumbs {
    margin: 50px 0;
    font-size: 16px;
  }
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip:hover .tooltip__text {
  visibility: visible;
  opacity: 1;
}
.tooltip__text {
  visibility: hidden;
  opacity: 0;
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 7px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 10;
  bottom: 125%; /* Появляется над иконкой */
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s;
  font-size: 14px;
  pointer-events: none;
  white-space: normal;
}
.tooltip__text::after {
  content: "";
  position: absolute;
  top: 100%; /* стрелка вниз */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.page-title {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (min-width: 769px) {
  .page-title {
    font-size: 25px;
  }
}
@media (min-width: 1025px) {
  .page-title {
    font-size: 30px;
  }
}
@media (min-width: 1281px) {
  .page-title {
    font-size: 40px;
  }
}
@media (min-width: 1537px) {
  .page-title {
    margin-bottom: 16px;
  }
}/*# sourceMappingURL=index.css.map */