@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body, html {
  background-color: #F8F8F6;
}

:root {
  --heading-font-family: "Raleway", sans-serif; /* Шрифт для заголовков */
  --body-font-family: "M PLUS 1p", sans-serif; /* Шрифт для основного текста */
  --font-size-large: 42px;
  --font-size-medium: 32px;
  --fs-medium-resize: clamp(28px, 5vw, 32px);
  --font-size-xmedium: 26px;
  --font-size-xsmedium: 22px;
  --font-size-regular: 18px;
  --fs-regular-resize: clamp(16px, 3vw, 18px);
  --font-size-small: 16px;
  --font-size-xsmall: 14px;
  --resize-padding-top: clamp(80px, 16vw, 140px);
  --resize-padding-bottom: clamp(80px, 16vw, 140px);
}

body.lock {
  position: relative;
}
body.lock::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

h1, h2, h3, h4, h5, a {
  color: #122947;
}

.pt {
  padding-top: 107px;
}

.container {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

._flyImg._ibg {
  opacity: 1;
  position: fixed;
  z-index: 100;
  transition: 1s ease 0s;
  -webkit-transition: 1s ease 0s;
  -moz-transition: 1s ease 0s;
  -ms-transition: 1s ease 0s;
  -o-transition: 1s ease 0s;
}

.br {
  display: block;
  width: 100%;
  height: 20px;
}

.background-style::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 670px;
  top: 0;
  left: 0;
  background-color: #F4F1ED;
  z-index: -1;
}

.accordion__item-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion__item-trigger:hover {
  cursor: pointer;
}
.accordion__span-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.accordion__target-span-vertical {
  display: block;
  position: absolute;
  height: 12px;
  width: 1px;
  background: #122947;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  -webkit-transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  -moz-transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  -ms-transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  -o-transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.accordion__target-span-vertical.active {
  width: 0;
  height: 0;
}
.accordion__target-span-horizontal {
  display: block;
  height: 1px;
  width: 12px;
  background: #122947;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.navigation-instructions__wrrap {
  font-family: var(--body-font-family);
  font-weight: 400;
  color: #122947;
  text-align: center;
}

.checkbox {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.checkbox__input[type=checkbox] {
  display: none;
}
.checkbox__input[type=checkbox]:checked ~ .checkbox__choice-radio:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #122947;
  left: 52%;
  top: 48%;
  transform: translate(-52%, -48%);
  -webkit-transform: translate(-52%, -48%);
  -moz-transform: translate(-52%, -48%);
  -ms-transform: translate(-52%, -48%);
  -o-transform: translate(-52%, -48%);
}
.checkbox__choice-radio {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid #CDCDCD;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.choice-radio {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid #CDCDCD;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 15px;
  cursor: pointer;
  position: relative;
}
.burger.active {
  justify-content: center;
  height: 24px;
}
.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #122947;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.burger.active .burger__line-top {
  position: absolute;
  transform: rotate(45deg);
}
.burger.active .burger__line-center {
  opacity: 0;
}
.burger.active .burger__line-bottom {
  position: absolute;
  transform: rotate(-45deg);
}

.menu-list {
  display: flex;
  font-family: var(--body-font-family);
  font-weight: 400;
}
.menu-list li {
  margin-right: 35px;
}
.menu-list li:last-child {
  margin-right: 0;
}

.menu-item {
  font-size: var(--font-size-small);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.menu-item:hover {
  border-bottom: 1px solid #122947;
}

.header__bg {
  padding-top: 175px;
  padding-bottom: 70px;
  background: url(../img/bg.jpg) center center no-repeat;
  background-size: cover;
}
.header__navigation-wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__navigation {
  padding-top: 26px;
  padding-bottom: 26px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
  transition: background-color 0.3s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
}
.header__navigation.scrol {
  background-color: #f8f8f6;
}
.header__navigation.active {
  background-color: #f8f8f6 !important;
  border-bottom: 1px solid #DBDCE0;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__right-content {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header__login-users {
  cursor: pointer;
}
.header__shop-cart {
  position: relative;
  cursor: pointer;
}
.header__product {
  font-family: var(--heading-font-family);
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  background-color: #122947;
  color: #ffffff;
  position: absolute;
  top: -6px;
  right: -6px;
  padding-top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.header__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header__content-item {
  position: relative;
  width: clamp(130px, 32vw, 330px);
}
.header__content-img {
  position: relative;
  width: 100%;
  height: clamp(170px, 42vw, 422px);
}
.header__content-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
}
.header__button-wrapp {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.header__button-wrapp:hover .header__button-rows {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}
.header__button {
  font-family: var(--body-font-family);
  font-size: clamp(12px, 2.3vw, 16px);
  font-weight: 500;
  opacity: 1;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.header__button:hover {
  border-bottom: 1px solid #122947;
}
.header__button::after {
  content: "";
  position: absolute;
  inset: 0;
}
.header__button.fade-out {
  opacity: 0;
}
.header__button-rows {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.header__description {
  text-align: center;
  margin-top: 61px;
}
.header__description h1 {
  font-family: var(--heading-font-family);
  font-size: clamp(42px, 4vw, 55px);
  font-weight: 500;
  text-transform: uppercase;
}
.header__description h3 {
  margin-top: 18px;
  font-family: var(--body-font-family);
  font-size: var(--fs-regular-resize);
  font-weight: 500;
  line-height: 145%;
}
.header__description .btn {
  margin-top: clamp(30px, 6vw, 40px);
}
.header__shop {
  margin-bottom: 30px;
}
@keyframes focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.focus-in {
  animation: focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  -webkit-animation: focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/* Стили для анимации исчезновения изображения */
@keyframes focus-out {
  0% {
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    filter: blur(12px);
    opacity: 0;
  }
}
.focus-out {
  animation: focus-out 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  -webkit-animation: focus-out 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.scale-up-center {
  animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) infinite alternate both;
}

.nav__language-btn-wrapp {
  position: relative;
  padding: 4px 0 4px 0;
}
.nav__language-btn-wrapp:hover .nav__language-hover {
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.nav__language-info, .nav__language-hover {
  font-family: var(--body-font-family);
  font-size: var(--font-size-small);
  font-weight: 400;
  color: #122947;
}
.nav__language-info {
  color: #122947;
  cursor: default;
}
.nav__language-list {
  position: fixed;
  padding-bottom: 5px;
  overflow: hidden;
  visibility: hidden;
}
.nav__language-hover {
  cursor: pointer;
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  -webkit-transition: transform 0.3s ease, visibility 0.3s ease;
  -moz-transition: transform 0.3s ease, visibility 0.3s ease;
  -ms-transition: transform 0.3s ease, visibility 0.3s ease;
  -o-transition: transform 0.3s ease, visibility 0.3s ease;
  transform: translateY(-32px);
  -webkit-transform: translateY(-32px);
  -moz-transform: translateY(-32px);
  -ms-transform: translateY(-32px);
  -o-transform: translateY(-32px);
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 401px;
}
.cart-list__text {
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: var(--font-size-small);
}
.cart-list__img {
  flex: 0 0 100px;
  height: 100px;
  position: relative;
  background: rgba(217, 217, 217, 0.35);
}
.cart-list__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cart-list__title {
  font-family: var(--heading-font-family);
  font-size: var(--font-size-small);
  font-weight: 500;
  -webkit-line-clamp: 1;
  margin: 0px 0px 0.4375em 0px;
}
.cart-list__subtitle {
  font-family: var(--body-font-family);
  font-size: var(--font-size-xsmall);
  font-weight: 400;
  -webkit-line-clamp: 3;
  margin: 0px 0px 0.625em 0px;
}
.cart-list__title, .cart-list__subtitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #122947;
  transition: color 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
}
.cart-list__quantity-wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.cart-list__quantity {
  font-family: var(--heading-font-family);
  font-weight: 500;
  font-size: var(--font-size-xsmall);
  color: #000000;
  opacity: 0.5;
}
.cart-list__quantity span {
  font-size: var(--font-size-small);
  font-weight: 400;
}
.cart-list__delete {
  display: flex;
  width: 28px;
  height: auto;
  padding: 7px;
  cursor: pointer;
}
.cart-list__path {
  fill: #122947;
}
.cart-list__item {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  gap: 15px;
}

.form-login {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 106px;
  right: 0;
  width: 100%;
  max-width: 447px;
  height: calc(100vh - 107px);
  border-top: 1px solid #DBDCE0;
  background: #F8F8F6;
  padding: 15px;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  z-index: 5;
  visibility: hidden;
  transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
  -webkit-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
  -moz-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
  -ms-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
  -o-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
}
.form-login.active {
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.form-login__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 355px;
  width: 100%;
}
.form-login__title {
  font-family: var(--heading-font-family);
  font-size: var(--fs-medium-resize);
  font-weight: 500;
  text-align: center;
}
.form-login__container-input {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-login__user {
  font-family: var(--heading-font-family);
  font-weight: 400;
  font-size: var(--font-size-xsmall);
  color: #122947;
  border: 1px solid #122947;
  padding: 15px 10px;
  background: #f8f8f6;
  outline: none;
  transition: box-shadow 0.2s ease;
  -webkit-transition: box-shadow 0.2s ease;
  -moz-transition: box-shadow 0.2s ease;
  -ms-transition: box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
}
.form-login__user:hover {
  box-shadow: 0px 0px 1px 1px #122947;
}

.cart-header__body {
  background: #F8F8F6;
  border-top: 1px solid #DBDCE0;
  position: absolute;
  top: 106px;
  right: 0;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  padding: 15px;
  z-index: 5;
  overflow: auto;
  overscroll-behavior: none;
  height: calc(100vh - 106px);
  visibility: hidden;
  transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
  -webkit-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
  -moz-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
  -ms-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
  -o-transition: transform 0.4s ease 0s, visibility 0.4s ease 0s;
}
.cart-header__body.activetelem {
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.cart-header__praice, .cart-header__praice-set {
  margin-top: 20px;
  text-align: end;
}
.cart-header__btn-wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
  padding-bottom: 55px;
}
.cart-header__text {
  font-family: var(--heading-font-family);
  font-size: var(--font-size-regular);
  font-weight: 500;
  margin-bottom: 20px;
}
.cart-header__error {
  display: none;
  font-family: var(--heading-font-family);
  color: red;
  text-align: center;
  font-size: var(--font-size-small);
  font-weight: 500;
  margin-top: 20px;
}

.praice {
  font-family: var(--body-font-family);
  font-size: var(--font-size-xsmall);
  font-weight: 500;
  color: #122947;
}

.praice-span {
  font-size: var(--font-size-small);
}

.null-cart {
  font-family: var(--heading-font-family);
  font-size: var(--font-size-medium);
  font-weight: 400;
  color: #122947;
  text-align: center;
  line-height: 122%;
}

.catalog__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 11px 27px;
  border-radius: 2px;
  border: 1px solid #B3BAC1;
  background: transparent;
  font-family: var(--body-font-family);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: #122947;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  outline: none;
  cursor: pointer;
}
.btn:hover {
  background: #122947;
  border: 1px solid #122947;
  color: #ffffff;
}

.bestseller {
  padding-top: var(--resize-padding-top);
  padding-bottom: var(--resize-padding-bottom);
  overflow: hidden;
}
.bestseller__container {
  margin-left: auto;
  padding-left: 15px;
  max-width: 1360px;
}
.bestseller__wrapp {
  display: flex;
  align-items: center;
  gap: 30px;
}
.bestseller__content .btn {
  margin-top: 40px;
}
.bestseller__big-text {
  font-family: var(--heading-font-family);
  font-size: var(--fs-medium-resize);
  font-weight: 500;
}
.bestseller__sub-text {
  font-family: var(--body-font-family);
  font-size: var(--fs-regular-resize);
  font-weight: 400;
  width: 242px;
  margin-top: 30px;
}
.bestseller__product-wrapp {
  max-width: 1017px;
}
.bestseller__product-wrapp.swiper {
  margin-left: auto;
  margin-right: 0;
}
.bestseller__cart-wrapp {
  display: flex;
}
.bestseller__cart {
  background: rgba(217, 217, 217, 0.35);
  padding: 30px;
  text-align: center;
  position: relative;
  min-height: 350px;
  max-width: 350px;
}
.bestseller__cart.swiper-slide {
  overflow: hidden;
  height: auto;
}
.bestseller__cart-img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.bestseller__title {
  margin-top: 40px;
  font-family: var(--heading-font-family);
  font-size: var(--font-size-small);
  font-weight: 500;
}
.bestseller__subtitle {
  margin-top: 10px;
  color: #9A9DA0;
  font-family: var(--body-font-family);
  font-size: var(--font-size-xsmall);
  font-weight: 400;
}
.bestseller__description {
  display: inline-block;
  margin-top: 10px;
  color: #9A9DA0;
  font-family: var(--body-font-family);
  font-size: var(--font-size-xsmall);
  font-weight: 400;
  text-align: justify;
  line-height: 150%;
}
.bestseller__button {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  font-family: var(--body-font-family);
  font-size: var(--font-size-xsmall);
  font-weight: 400;
  border-bottom: 1px solid #122947;
  line-height: 23px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.bestseller__button:hover {
  border-bottom: 0;
}
.bestseller__navigation-btn {
  display: flex;
  margin-top: 25px;
  margin-right: 7.3%;
  justify-content: end;
}
.bestseller__navigation-btn .swiper-button :hover {
  cursor: pointer;
}
.bestseller .button-prev {
  margin-right: 32px;
}

.result {
  padding-top: var(--resize-padding-top);
  padding-bottom: var(--resize-padding-bottom);
  background: #F4F1ED;
}
.result__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.result__before-and-after-scrolling {
  width: clamp(240px, 28vw, 296px);
}
.result__img {
  width: auto;
  height: clamp(325px, 38vw, 400px);
}
.result .twentytwenty-handle {
  height: 30px;
  width: 30px;
  margin-left: -17px;
  margin-top: -17px;
}
.result__big-text {
  font-family: var(--heading-font-family);
  font-size: clamp(25px, 3.2vw, 32px);
  font-weight: 500;
  max-width: 617px;
}
.result__sub-text {
  font-family: var(--body-font-family);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  max-width: 470px;
  margin-top: 30px;
}

.individual-care {
  padding-top: var(--resize-padding-top);
  padding-bottom: var(--resize-padding-bottom);
  overflow: hidden;
}
.individual-care__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: clamp(60px, 7.8vw, 100px);
  padding-bottom: clamp(60px, 7.8vw, 100px);
  padding-left: clamp(60px, 7.8vw, 100px);
  z-index: 2;
}
.individual-care__big-text {
  font-family: var(--heading-font-family);
  font-size: var(--fs-medium-resize);
  font-weight: 500;
  width: 347px;
}
.individual-care__subtext {
  font-family: var(--body-font-family);
  font-size: var(--fs-regular-resize);
  font-weight: 400;
  width: 330px;
  margin-top: 40px;
}
.individual-care__big-img {
  width: clamp(398px, 51vw, 670px);
  height: clamp(403px, 49vw, 451px);
}
.individual-care__big-img img {
  height: 100%;
}

.about {
  padding-top: var(--resize-padding-top);
  padding-bottom: var(--resize-padding-bottom);
  background: url(../img/bg2.jpg) center center no-repeat;
  background-size: cover;
}
.about__wrapp {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__bigtext {
  font-family: var(--heading-font-family);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 500;
  max-width: 991px;
  text-align: center;
  line-height: 135%;
}

.work {
  padding-top: var(--resize-padding-top);
  padding-bottom: var(--resize-padding-bottom);
}
.work__content-wrapp {
  display: flex;
  align-items: center;
  gap: 50px;
}
.work__img-wrapp {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
}
.work__img {
  width: 100%;
  height: 100%;
}
.work__content .btn {
  margin-top: 40px;
}
.work__bigtext {
  font-family: var(--heading-font-family);
  font-size: var(--fs-medium-resize);
  font-weight: 500;
}
.work__subtext {
  font-family: var(--body-font-family);
  font-size: var(--fs-regular-resize);
  font-weight: 400;
  max-width: 404px;
  margin-top: 30px;
}
.work__social {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.work__social:hover {
  opacity: 0.8;
}

.cart-set {
  position: relative;
  padding-bottom: var(--resize-padding-bottom);
}
.cart-set__big-text {
  font-family: var(--heading-font-family);
  font-weight: 500;
  color: #122947;
  font-size: var(--fs-medium-resize);
  text-align: center;
}
.cart-set__wrapp {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.cart-set__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 35px 15px;
  background: #F4F1ED;
  max-width: 363px;
}
.cart-set__title {
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: var(--font-size-regular);
}
.cart-set__scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 30px;
  width: 100%;
}
.cart-set__error {
  font-family: var(--body-font-family);
  position: absolute;
  background: #ffffff;
  color: #122947;
  padding: 15px;
  font-size: var(--fs-regular-resize);
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.cart-set__scroll-text {
  font-family: var(--heading-font-family);
  font-weight: 500;
  font-size: var(--font-size-small);
}
.cart-set__product-wrapp {
  margin-top: 20px;
}
.cart-set__product-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 300px;
  overflow-y: scroll;
  overscroll-behavior: none;
}
.cart-set-product__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-set-product__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cart-set-product__category {
  font-family: var(--heading-font-family);
  font-size: var(--fs-regular-resize);
  font-weight: 500;
}
.cart-set-product__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-set__choice-wrrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-set-wrapp__img.product__img {
  position: relative;
  top: 0;
  width: 105px;
  height: 105px;
  min-height: auto;
  background-color: rgba(217, 217, 217, 0.35);
}
.cart-set-state__text {
  font-family: var(--heading-font-family);
  font-size: var(--font-size-small);
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
}
.cart-set-list__img.catalog__img {
  position: relative;
}
.cart-set-list__img.hold {
  opacity: 0.5;
}
.cart-set-product__content {
  width: 100%;
}
.cart-set-product__title.hold, .cart-set-product__subtitle.hold {
  opacity: 0.5;
}
.cart-set-product__subtitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.cart-set__priceWrapp.product__add-to-baske {
  margin-top: 20px;
}
.cart-set__product-price {
  font-family: var(--body-font-family);
  font-size: var(--font-size-xmedium);
  font-weight: 500;
  color: #122947;
}
.cart-set__price.catalog__price {
  text-align: inherit;
}

.product__add-to-baske {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 45px;
  width: 100%;
}
.product__choice-item {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.footer__text a {
  display: inline-block;
  font-family: var(--body-font-family);
  font-size: var(--font-size-regular);
  font-weight: 400;
}
.footer__icon-link {
  height: 20px;
}
.footer__icon-link-telegram {
  height: 24px;
}
.footer__icon {
  height: auto;
}
.footer__icon-telegram {
  width: 24px;
}
.footer__icon-instagram {
  width: 20px;
}
.footer__bottom {
  background: #F4F1ED;
  padding-top: 40px;
}
.footer__bottom-wrapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 40px;
  gap: 30px;
}
.footer__menu {
  display: flex;
  align-items: center;
}
.footer__logo {
  margin-right: 58px;
}
.footer__bottom-social {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__note {
  padding: 20px 0 20px 0;
  border-top: 1px solid #D1D1D1;
}
.footer__security {
  display: flex;
  align-items: center;
  color: #959595;
  font-family: var(--body-font-family);
  font-size: 12px;
  font-weight: 400;
}
.footer__security svg {
  margin: 0 5px 0 5px;
}