@charset "UTF-8";
/* Шрифт */
/* Цвет */
/* Фон */
/* Бордер */
/* Тень */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
}

body {
  font-family: "Lato", sans-serif;
}

section {
  min-height: 600px;
}

.wrapper {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  min-height: 100vh;
}

footer {
  flex: 0 0 auto;
}

a {
  display: flex;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

input {
  outline: none;
}

button {
  outline: none;
  cursor: pointer;
}

.center {
  padding-left: calc(50% - 570px);
  padding-right: calc(50% - 570px);
}

.header {
  position: relative;
  min-height: 75px;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left, .header__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
.header__logo {
  width: 45px;
  height: 38px;
}
.header__search {
  width: 28px;
  height: 30px;
}
.header__menu {
  width: 32px;
  height: 24px;
  cursor: pointer;
}
.header__account, .header__trash {
  width: 30px;
  height: 30px;
}
.header__popup {
  padding: 15px 25px;
  width: 200px;
  height: 600px;
  display: none;
  position: absolute;
  overflow-y: scroll;
  top: 75px;
  right: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 6px 4px 35px #000;
}
.header__popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.header__popup__close:hover {
  fill: #f16d7f;
}
.header__popup__img {
  width: 100%;
  height: 100%;
  fill: #222;
}
.header__popup__header {
  font-size: 14px;
  line-height: 17px;
  color: #009688;
  margin-top: 20px;
  text-transform: uppercase;
}
.header__popup__header_color {
  color: #f16d7f;
}
.header__popup__menu {
  margin-top: 16px;
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header__popup__list, .header__popup__link {
  color: #222;
  font-size: 14px;
  line-height: 17px;
}
.header__popup__list:hover, .header__popup__link:hover {
  color: #03a9f4;
}
.header__popup__active {
  display: block;
}

.promo {
  position: relative;
  background: #f1e4e6;
  display: flex;
  padding-left: calc(50% - 800px);
  padding-right: calc(50% - 800px);
}
.promo__img {
  width: 50%;
  display: flex;
}
.promo__descriptions {
  width: 50%;
}
.promo__content {
  margin-top: 40%;
  border-left: 12px solid #f16d7f;
  padding-left: 16px;
  animation: text-pop-up-left 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.promo__heading {
  font-weight: 900;
  font-size: 48px;
  line-height: 58px;
  color: #222;
  text-transform: uppercase;
}
.promo__text {
  font-size: 32px;
  line-height: 38px;
  color: #222;
  text-transform: uppercase;
}
.promo__span {
  color: #f16d7f;
}
.promo {
  /* animation tracking-in-contract-bck */
}
@keyframes text-pop-up-left {
  0% {
    transform: translateX(0);
    transform-origin: 50% 50%;
  }
  100% {
    transform: translateX(-50px);
    transform-origin: 50% 50%;
  }
}

.sales {
  padding-top: 64px;
  padding-bottom: 96px;
}
.sales__top {
  display: flex;
  justify-content: space-between;
}
.sales__bottom {
  margin-top: 30px;
}
.sales__item {
  width: 30%;
  height: 250px;
  position: relative;
}
.sales__item_big {
  width: 100%;
  height: 180px;
}
.sales__description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sales__text {
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.sales__heading {
  color: #f16d7f;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  text-transform: uppercase;
}

.product {
  padding-bottom: 96px;
}
.product_page {
  margin-top: 64px;
}
.product__heading {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: #222;
}
.product__info {
  margin-top: 8px;
  font-size: 14px;
  line-height: 17px;
  color: #9f9f9f;
  text-align: center;
}
.product__box {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 32px;
}
.product__items {
  width: 360px;
  background: #f8f8f8;
  position: relative;
  transition: 0.8s;
}
.product__items:hover {
  transition: 0.8s;
  transform: scale(1.05);
  box-shadow: 8px 8px 8px 8px #000;
  background: #d3d3d3;
}
.product__items:hover .product__img {
  filter: brightness(25%);
}
.product__items:hover .product__button {
  align-items: center;
  display: flex;
  border: 1px solid #fff;
  box-shadow: 0 0 5px #fff;
  animation: slide-in-fwd-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.product__img {
  height: 450px;
}
.product__button {
  position: absolute;
  top: 188px;
  left: 112px;
  right: 112px;
  display: none;
  border: 1px solid #fff;
  box-shadow: 1px 1px 1px 1px #fff;
  background: #f16d7f;
  font-weight: 700;
}
.product__button:hover {
  align-items: center;
  display: flex;
  transition: 0.8s;
}
.product__button__img {
  padding-right: 5px;
  position: relative;
  top: 0px;
  fill: #fff;
}
.product__addtocard__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #fff;
}
.product__descriptions {
  padding: 25px 16px;
}
.product__link__heading {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: #222;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.8s;
}
.product__link__heading:hover {
  transition: 0.8s;
  transform: scale(1.1);
  margin-left: 5px;
  color: #009688;
}
.product__text {
  margin-top: 12px;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #222;
  transition: 0.8s;
}
.product__text:hover {
  font-weight: 700;
  transition: 0.8s;
  transform: scale(1.1);
  margin-left: 15px;
  color: #ed143d;
}
.product__price {
  display: inline-block;
  margin-top: 18px;
  font-size: 16px;
  line-height: 19px;
  color: #222;
  transition: 0.8s;
}
.product__price:hover {
  transition: 0.8s;
  transform: scale(1.2);
  font-weight: 700;
  color: #03a9f4;
}
.product__block__button {
  width: 212px;
  border: 1px solid #f26376;
  display: flex;
  margin: 48px auto 0;
}
.product__block__button:hover .product__button__link {
  background: #f16d7f;
  color: #fff;
  transform: scale(1.2);
  transition: 0.8s;
}
.product__button__link {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 16px;
  line-height: 19px;
  color: #f16d7f;
  text-align: center;
  padding: 15px 5px;
  transition: 0.8s;
}
.product {
  /* animation slide-in-fwd-top */
}
@keyframes slide-in-fwd-top {
  0% {
    transform: translateZ(-1400px) translateY(-800px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

.feature {
  background: #222;
  min-height: 340px;
}
.feature__content {
  min-height: inherit;
  display: flex;
  justify-content: space-between;
}
.feature__items {
  width: 360px;
  padding-top: 104px;
  padding-bottom: 104px;
}
.feature__img {
  margin: 0 auto;
  width: 50px;
  height: 40px;
}
.feature__icon {
  -o-object-fit: contain;
     object-fit: contain;
}
.feature__heading {
  margin-top: 16px;
  font-size: 19.96px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
.feature__text {
  margin-top: 16px;
  font-weight: 300;
  font-size: 13.972px;
  line-height: 17px;
  text-align: center;
  color: #fff;
}

.subscribe {
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: 448px;
  background: url("img/recall-bg.jpg") no-repeat center/cover;
  display: flex;
  justify-content: space-between;
}
.subscribe__info {
  width: 48%;
}
.subscribe__address {
  width: 48%;
  margin-top: 52px;
}
.subscribe__img {
  margin: 0 auto;
  width: 96px;
  height: 96px;
}
.subscribe__text {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #222;
  margin-top: 30px;
}
.subscribe__field {
  padding-left: 22px;
  padding-right: 22px;
  background: #e1e1e1;
  border-radius: 24px 0 0 24px;
  height: 49px;
  font-size: 14px;
  line-height: 17px;
  color: #222;
  opacity: 0.67;
}
.subscribe__heading {
  font-weight: bold;
  font-size: 24px;
  line-height: 167.2%;
  text-align: center;
  text-transform: uppercase;
  color: #222;
}
.subscribe__text_form {
  margin-top: 10px;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #222;
}
.subscribe__form {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.subscribe__button {
  width: 100px;
  background: #f16d7f;
  height: 49px;
  border-radius: 0 24px 24px 0;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #fff;
}
.subscribe__button:hover {
  background: #e05c6e;
}

.footer {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #222;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copyright {
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}
.footer__right {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
}
.footer__link {
  width: 32px;
  height: 32px;
}
.footer__img {
  width: inherit;
  height: inherit;
  padding: 8px;
  background: #fff;
}
.footer__img:hover {
  fill: #fff;
  background: #f16d7f;
}

.breadcrumbs {
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 150px;
  background: #f1e4e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumbs__heading {
  font-size: 24px;
  line-height: 29px;
  color: #f16d7f;
  text-transform: uppercase;
}
.breadcrumbs__right {
  display: flex;
  gap: 5px;
}
.breadcrumbs__link {
  font-size: 14px;
  line-height: 17px;
  color: #222;
  text-transform: uppercase;
}
.breadcrumbs__link:not(:last-child)::after {
  content: "/";
  margin-left: 5px;
}
.breadcrumbs__link:last-child {
  font-weight: 700;
  color: #f16d7f;
}
.breadcrumbs__link:not(:last-child):hover {
  color: #03a9f4;
}

.product__menu {
  position: relative;
}
.product__filter {
  position: absolute;
  padding: 16px;
  top: -10px;
  left: 0;
  z-index: 5;
}
.product__filter[open] {
  width: 375px;
  background: #fff;
  box-shadow: 6px 4px 35px #000;
}
.product__filter[open] .product__filter__main__header {
  color: #f16d7f;
  fill: #f16d7f;
}
.product__filter__main__header, .product__filter__header {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #222;
  text-transform: uppercase;
  cursor: pointer;
}
.product__filter__main__header_inner, .product__filter__header_inner {
  padding: 10px;
  padding-left: 12px;
  border-left: 5px solid #009688;
  font-size: 14px;
  line-height: 17px;
}
.product__filter__header {
  color: #009688;
}
.product__filter__img {
  margin-left: 11px;
}
.product__filter:hover .product__filter__main__header {
  color: #f16d7f;
  fill: #f16d7f;
}
.product__filter__header:hover {
  color: #f16d7f;
  border-left: 5px solid #f16d7f;
}
.product__filter__menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 17px;
}
.product__filter__link {
  color: #222;
}
.product__filter__link:hover {
  color: #03a9f4;
}
.product__filter__block__inner {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product__filter__inner[open] .product__filter__header {
  color: #f16d7f;
  border-left: 5px solid #f16d7f;
}
.product__hr {
  background: #ebebeb;
  height: 1px;
}
.product__menu {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.product__menu__list {
  padding-bottom: 5px;
  position: relative;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #222;
  cursor: pointer;
}
.product__menu__list::after {
  content: url("img/catalog/arrow.svg");
  margin-left: 10px;
}
.product__menu__list:hover .product__dropdown__menu {
  display: flex;
}
.product__dropdown__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  width: 80px;
  background: #fff;
  box-shadow: 6px 4px 35px #000;
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 5;
}
.product__dropdown__menu__label {
  display: flex;
}
.product__dropdown__menu__text {
  font-size: 14px;
  line-height: 16px;
  color: #222;
}
.product input {
  display: none;
}
.product .fake {
  position: relative;
  height: 16px;
  width: 16px;
  display: inline-block;
  border: 1px solid #222;
  margin-right: 8px;
}
.product .fake::before {
  content: "*";
  font-size: 32px;
  position: absolute;
  top: 5px;
  left: 1px;
  opacity: 0;
  color: #f16d7f;
}
.product input:checked + .fake::before {
  opacity: 1;
}
.product__paginations {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 48px auto 0;
  padding: 12px;
  width: 285px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}
.product__paginations__link {
  font-size: 16px;
  line-height: 19px;
  color: #222;
}
.product__paginations__link:hover {
  font-weight: 700;
  color: #f16d7f;
}
.product__paginations__img:hover {
  fill: #f16d7f;
}

.slider {
  position: relative;
  background: #f7f7f7;
}
.slider__wrapper {
  height: 800px;
  animation: rotate-vert-center 5s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.slider__inner {
  height: inherit;
}
.slider__photo {
  -o-object-fit: contain;
     object-fit: contain;
}
.slider__navigations__prev, .slider__navigations__next {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 40%;
  width: 50px;
  height: 50px;
  fill: #222;
  border: 3px solid #eaeaea;
}
.slider__navigations__prev {
  left: 5%;
}
.slider__navigations__next {
  right: 5%;
}
.slider__navigations__prev__img, .slider__navigations__next__img {
  width: 75%;
  height: 75%;
}
.slider__navigations__prev__img:hover, .slider__navigations__next__img:hover {
  fill: #f16d7f;
  cursor: pointer;
}
.slider {
  /* animation rotate-vert-center */
}
@keyframes rotate-vert-center {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.merchendise {
  padding-bottom: 96px;
}
.merchendise__box {
  padding: 64px 15px;
  background: #fff;
  min-height: 600px;
  transform: translateY(-50px);
  box-shadow: 0 0 10px #000;
}
.merchendise__descriptions {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.merchendise__header {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #f16d7f;
  text-transform: uppercase;
}
.merchendise__hr {
  margin: 12px 0;
  width: 64px;
  border: 3px solid #f16d7f;
}
.merchendise__heading {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #222;
  text-transform: uppercase;
}
.merchendise__text {
  width: 555px;
  margin-top: 48px;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #222;
}
.merchendise__price {
  margin-top: 32px;
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: #f16d7f;
}
.merchendise__hr_low {
  width: 640px;
  margin: 64px 0;
  border: 1px solid #eaeaea;
}
.merchendise__sort {
  display: flex;
  justify-content: center;
}
.merchendise__sort__menu {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.merchendise__sort__list {
  font-size: 14px;
  line-height: 17px;
  color: #222;
  text-transform: uppercase;
  cursor: pointer;
}
.merchendise__sort__list::after {
  content: url("img/product/arrow.svg");
  margin-left: 10px;
}
.merchendise__block__button {
  width: 212px;
  margin: 48px auto 0;
  border: 1px solid #f16d7f;
  display: flex;
  justify-content: center;
}
.merchendise__button {
  padding: 15px 5px;
  padding-left: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #f16d7f;
  text-align: center;
  transition: 0.8s;
}
.merchendise__button__img {
  width: 27px;
  height: 25px;
  position: absolute;
  top: 12px;
  left: 25px;
  fill: #f16d7f;
}
.merchendise__button:hover {
  transition: 0.8s;
  transform: scale(1.2);
  background: #f16d7f;
  color: #fff;
}
.merchendise__button:hover .merchendise__button__img {
  fill: #fff;
}

.shopping__cart {
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  justify-content: space-between;
}
.shopping__cart__left {
  width: 650px;
}
.shopping__cart__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.shopping__cart__item {
  display: flex;
  height: 300px;
  box-shadow: 17px 19px 24px #000;
  transition: 0.8s;
}
.shopping__cart__item:hover {
  transform: scale(1.05);
  transition: 0.8s;
}
.shopping__cart__img {
  width: 40%;
}
.shopping__cart__info {
  padding: 25px;
  width: 60%;
  position: relative;
}
.shopping__cart__header {
  display: inline-block;
  font-size: 24px;
  line-height: 29px;
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s;
}
.shopping__cart__header:hover {
  color: #009688;
  cursor: pointer;
  transition: 0.5s;
  transform: scale(1.05);
}
.shopping__cart__heading {
  margin-top: 16px;
  font-size: 24px;
  line-height: 29px;
  color: #222;
  text-transform: uppercase;
}
.shopping__cart__descriptions {
  margin-top: 32px;
}
.shopping__cart__text {
  margin-top: 10px;
  font-size: 22px;
  line-height: 26px;
  color: #222;
}
.shopping__cart__text_color {
  color: #f16d7f;
}
.shopping__cart__quantity {
  font-size: 18px;
  line-height: 22px;
  color: #222;
  border: 1px solid #eaeaea;
  width: 35px;
  height: 35px;
  text-align: center;
  margin-left: 16px;
}
.shopping__cart__close {
  position: absolute;
  top: 28px;
  right: 22px;
  cursor: pointer;
}
.shopping__cart__svg {
  width: 18px;
  height: 18px;
  transition: 0.5s;
}
.shopping__cart__svg:hover {
  fill: #f16d7f;
  transition: 0.5s;
  transform: scale(1.3);
}
.shopping__cart__block__buttons {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}
.shopping__cart__button {
  border: 1px solid #222;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #222;
  width: 230px;
  height: 50px;
  background: #fff;
  cursor: pointer;
  transition: 0.5s;
  text-transform: uppercase;
}
.shopping__cart__button:hover {
  color: #fff;
  background: #f16d7f;
  border: none;
  transition: 0.5s;
  transform: scale(1.1);
}
.shopping__cart__right {
  width: 360px;
}
.shopping__cart__right__form__top {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shopping__cart__right__form__bottom {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
  min-height: 220px;
  margin-top: 56px;
  background: #f5f3f3;
}
.shopping__cart__right__header {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #222;
  text-transform: uppercase;
}
.shopping__cart__input {
  padding: 0 18px;
  width: 100%;
  height: 45px;
  border: 1px solid #222;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  color: #222;
}
.shopping__cart__button__right {
  width: 102px;
  height: 36px;
  font-weight: 300;
  font-size: 11px;
  line-height: 13px;
  border: 1px solid #222;
  color: #222;
  background: #fff;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.5s;
}
.shopping__cart__button__right:hover {
  color: #fff;
  background: #f16d7f;
  border: 0;
  margin-left: 10px;
  transition: 0.5s;
  transform: scale(1.2);
}
.shopping__cart__heading__buy, .shopping__cart__heading__total__buy {
  font-size: 14px;
  line-height: 13px;
  color: #222;
  font-weight: 300;
  text-transform: uppercase;
}
.shopping__cart__heading__buy_span, .shopping__cart__heading__total__buy_span {
  margin-left: 10px;
}
.shopping__cart__heading__total__buy {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}
.shopping__cart__heading__total__buy_span {
  color: #f16d7f;
}
.shopping__cart__hr {
  width: 100%;
  height: 1px;
  background: #222;
}
.shopping__cart__button__buy {
  width: 275px;
  height: 50px;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  background: #f16d7f;
  margin: 0 auto;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.5s;
}
.shopping__cart__button__buy:hover {
  transition: 0.5s;
  transform: scale(1.1);
}

.info {
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  justify-content: space-between;
}
.info__left {
  width: 35%;
}
.info__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #222;
}
.info__input {
  margin-top: 20px;
  width: 100%;
  height: 45px;
  border: 1px solid #222;
  padding: 0 16px;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
}
.info__gender {
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.info__info {
  font-weight: 300;
  font-size: 11px;
  line-height: 13px;
  color: #222;
}
.info [type=radio] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.info__password {
  margin-top: 30px;
  width: 100%;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  color: #222;
}
.info__button {
  margin-top: 36px;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 16px 25px;
  background: #f16d7f;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  text-transform: uppercase;
  transition: 0.5s;
}
.info__button:hover {
  background: #f16d7f;
  transition: 0.5s;
  transform: scale(1.1);
}
.info__photo {
  width: 18px;
  height: 10px;
}
.info__right {
  width: 55%;
}
.info__header, .info__right__text {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: #222;
}
.info__right__text {
  margin-top: 22px;
  text-transform: none;
}
.info__menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: #222;
}
.info__list {
  display: flex;
}
.info__list::before {
  content: url("img/registration/ok.svg");
  padding-right: 22px;
}

@media (max-width: 1149px) {
  .center {
    padding-left: calc(50% - 368px);
    padding-right: calc(50% - 368px);
  }
  .header__popup {
    height: 500px;
  }
  .promo {
    min-height: 500px;
    justify-content: space-between;
  }
  .promo__img {
    width: 40%;
  }
  .promo__heading {
    font-size: 44px;
    line-height: 52px;
  }
  .promo__text {
    font-size: 24px;
    line-height: 28px;
  }
  .sales__item {
    width: 32%;
    height: 230px;
  }
  .sales__item_big {
    width: 100%;
    height: 180px;
  }
  .product__box {
    row-gap: 20px;
  }
  .shopping__cart {
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  .shopping__cart__left {
    width: 100%;
  }
  .shopping__cart__item {
    height: 335px;
  }
  .shopping__cart__right {
    width: 60%;
  }
  .info {
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  .info__left, .info__right {
    width: 60%;
  }
  .info__right__text, .info__list {
    font-size: 16px;
    line-height: 19px;
  }
  .feature {
    min-height: auto;
  }
  .feature__content {
    flex-direction: column;
    align-items: center;
  }
  .feature__items {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .subscribe {
    padding-top: 64px;
    padding-bottom: 64px;
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }
  .subscribe__text__text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .center {
    padding-left: calc(50% - 180px);
    padding-right: calc(50% - 180px);
  }
  .header__search, .header__account, .header__trash {
    display: none;
  }
  .header__popup {
    height: 375px;
  }
  .breadcrumbs {
    flex-direction: column;
    justify-content: space-evenly;
  }
  .promo {
    min-height: 375px;
    display: flex;
    align-items: center;
  }
  .promo__content {
    margin-top: 0;
    margin-left: 25%;
  }
  .promo__img {
    display: none;
  }
  .promo__descriptions {
    width: 100%;
  }
  .promo__heading {
    font-size: 38px;
    line-height: 46px;
  }
  .promo__text {
    font-size: 20px;
    line-height: 24px;
  }
  .sales {
    padding-bottom: 64px;
  }
  .sales__top {
    flex-direction: column;
    gap: 30px;
  }
  .sales__item {
    width: 100%;
  }
  .sales__item_big {
    height: 230px;
  }
  .slider__wrapper {
    height: 500px;
  }
  .merchendise__box {
    padding: 32px 15px;
    min-height: auto;
  }
  .merchendise__text {
    margin-top: 32px;
    width: 100%;
  }
  .merchendise__hr_low {
    width: 100%;
    margin: 32px 0;
  }
  .merchendise__sort__menu {
    gap: 8px;
  }
  .merchendise__sort__list {
    font-size: 13px;
  }
  .product {
    padding-bottom: 64px;
  }
  .product__box {
    row-gap: 48px;
  }
  .product__box_product {
    margin-top: 0;
  }
  .product__filter {
    top: 30px;
    left: -8px;
  }
  .product__menu {
    width: 100%;
    justify-content: space-between;
  }
  .shopping__cart {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .shopping__cart__item {
    flex-direction: column;
    height: auto;
  }
  .shopping__cart__img {
    width: 100%;
    height: 300px;
  }
  .shopping__cart__photo {
    -o-object-fit: fill;
       object-fit: fill;
  }
  .shopping__cart__info {
    width: 100%;
  }
  .shopping__cart__block__buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .shopping__cart__right {
    width: 100%;
  }
  .info {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .info__left, .info__right {
    width: 100%;
  }
  .subscribe__info, .subscribe__address {
    width: 100%;
  }
  .footer {
    flex-direction: column-reverse;
    justify-content: space-around;
    min-height: 150px;
  }
}/*# sourceMappingURL=style.css.map */