@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: Poppins;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  color: #121212;
  background: #fff;
  font-weight: 400;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
@media (max-width: 991.98px) {
  .select__title {
    font-size: 18px;
  }
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.link {
  font-weight: 500;
  color: rgba(18, 18, 18, 0.4);
  line-height: 1.5;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .link:hover {
    text-decoration: underline;
    color: rgba(97, 97, 97, 0.4);
  }
}

.title {
  font-size: 2.75rem;
  font-weight: 600;
}
.title span {
  color: #FF6428;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}
._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
._swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
._swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

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

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

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.header {
  position: fixed;
  z-index: 55;
  width: 100%;
  top: 0;
  left: 0;
}
.header::after {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  z-index: 10;
  background-color: #FFFFFF;
}
.header__body {
  display: flex;
  align-items: center;
  min-height: 154px;
}
@media (max-width: 991.98px) {
  .header__body {
    min-height: 100px;
  }
}
@media (max-width: 767.98px) {
  .header__body {
    min-height: 80px;
  }
}
@media (max-width: 767.98px) {
  .header__body {
    min-height: 50px;
  }
}
.header__logo {
  position: relative;
  z-index: 51;
  display: flex;
  column-gap: 12px;
  align-items: center;
  padding-right: 130px;
}
@media (max-width: 1200px) {
  .header__logo {
    padding-right: calc(45px + 85 * ((100vw - 320px) / 880));
  }
}
.header__image {
  width: 28px;
  height: 28px;
}
.header__text {
  line-height: 1.8;
  font-size: 1.5rem;
  font-weight: 600;
  color: inherit;
}
.menu__list {
  display: flex;
  align-items: center;
  row-gap: 5px;
  position: relative;
  z-index: 55;
  column-gap: 55px;
}
@media (max-width: 1200px) {
  .menu__list {
    column-gap: calc(20px + 35 * ((100vw - 320px) / 880));
  }
}
@media (min-width: 479.98px) {
  .menu__list {
    flex-wrap: wrap;
  }
}

.icon-menu {
  display: none;
}
@media (max-width: 479.98px) {
  .icon-menu {
    display: block;
    position: absolute;
    top: 17px;
    right: 10px;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 50;
  }
  .icon-menu span {
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  .icon-menu span:first-child {
    top: 0px;
  }
  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }
  .icon-menu._active span {
    transform: scale(0);
  }
  .icon-menu._active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .icon-menu._active span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

.menu__body {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 479.98px) {
  .menu__body {
    overflow: auto;
    padding: 70px 30px 30px 30px;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    transition: left 0.3s ease 0s;
  }
  .menu__body .menu__list {
    flex-direction: column;
    row-gap: 30px;
    align-items: start;
  }
  .menu__body .menu__list li {
    font-size: 2.5rem;
  }
  .menu__body._active {
    left: 0;
  }
}

.footer {
  color: rgba(18, 18, 18, 0.6);
  background: #EEE;
  padding-top: 80px;
  padding-bottom: 43px;
}
@media (max-width: 1200px) {
  .footer {
    padding-top: calc(50px + 30 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .footer {
    padding-bottom: calc(30px + 13 * ((100vw - 320px) / 880));
  }
}
.footer__container {
  display: grid;
  column-gap: 15px;
  grid-template-columns: minmax(auto, 220px) minmax(auto, 110px) minmax(auto, 110px) minmax(auto, 160px);
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footer__container {
    grid-template-columns: auto;
    row-gap: 50px;
  }
}
.footer__column {
  display: grid;
  row-gap: 20px;
  max-width: 220px;
}
.footer__logo {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin: 0px 0px 8px 0px;
}
.footer__logo-image {
  width: 40px;
  height: 40px;
}
.footer__logo-text {
  font-weight: 600;
  color: #121212;
  font-size: 2.5rem;
}
.footer__maill {
  color: inherit;
  line-height: 1.5;
  color: #666;
  position: relative;
  padding: 0px 0px 0px 44px;
}
.footer__maill::before {
  content: "";
  position: absolute;
  background: url(../img/footer/icons/maill.svg) 0 0 no-repeat;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
@media (any-hover: hover) {
  .footer__maill:hover {
    text-decoration: underline;
  }
}
.footer__map {
  color: inherit;
  line-height: 1.5;
  color: #666;
  position: relative;
  padding: 0px 0px 0px 44px;
}
.footer__map::before {
  content: "";
  position: absolute;
  background: url(../img/footer/icons/location.svg) 0 0 no-repeat;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
@media (any-hover: hover) {
  .footer__map:hover {
    text-decoration: underline;
  }
}
.footer__list {
  display: grid;
  row-gap: 20px;
}
.footer__copyright {
  text-align: center;
  padding-top: 80px;
}
@media (max-width: 1200px) {
  .footer__copyright {
    padding-top: calc(50px + 30 * ((100vw - 320px) / 880));
  }
}

.footer-column__pages {
  display: grid;
  row-gap: 20px;
  max-width: 110px;
}
.footer-column__product {
  max-width: 110px;
}

.list__link {
  color: inherit;
  line-height: 1.5;
}
@media (any-hover: hover) {
  .list__link:hover {
    text-decoration: underline;
  }
}

.list-title {
  color: #121212;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5; /* 27/18 */
  padding: 0px 0px 8px 0px;
}

.social-footer {
  max-width: 160px;
}
.social-footer__title {
  padding-bottom: 12px;
}
.social-footer__images {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
}
.page {
  flex: 1 1 auto;
}

.about {
  display: flex;
  flex-direction: row-reverse;
  padding-bottom: 125px;
}
@media (max-width: 1200px) {
  .about {
    padding-bottom: calc(30px + 95 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1212px) {
  .about {
    flex-direction: column-reverse;
  }
}
.about__image {
  position: relative;
  z-index: 55;
  max-width: 672px;
  overflow: hidden;
  border-radius: 0px 0px 151px 360px;
}
@media (max-width: 1330px) {
  .about__image {
    max-width: 580px;
  }
}
@media (max-width: 1212px) {
  .about__image {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0 auto;
    z-index: 5;
  }
}
.about__image img {
  max-width: 100%;
  max-height: 100%;
}
.about__body {
  padding-top: 234px;
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .about__body {
    padding-top: calc(80px + 154 * ((100vw - 320px) / 880));
  }
}
.about__title {
  font-size: 3.5rem;
  padding: 0px 0px 16px 0px;
}
@media (min-width: 1212px) {
  .about__title {
    max-width: 530px;
  }
}
@media (max-width: 479.98px) {
  .about__title {
    font-size: 2.5rem;
  }
}
.about__text {
  color: #666;
  font-weight: 500;
  padding: 0px 0px 33px 0px;
  line-height: 1.5;
}
@media (min-width: 1212px) {
  .about__text {
    max-width: 400px;
  }
}
.about__button {
  font-weight: 600;
  line-height: 1.5;
  display: inline-flex;
  border-radius: 40px;
  background: #ff6428;
  padding: 18px 48px;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.store {
  padding-top: 125px;
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .store {
    padding-top: calc(30px + 95 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .store {
    padding-bottom: calc(20px + 30 * ((100vw - 320px) / 880));
  }
}
.store__body {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
}
@media (max-width: 1200px) {
  .store__body {
    row-gap: calc(50px + 50 * ((100vw - 320px) / 880));
  }
}
.store__title {
  text-align: center;
}
.row-store__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row-store__header:not(:last-child) {
  margin: 0px 0px 32px 0px;
}
.row-store__header_title {
  line-height: 1.875;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  padding: 0px 15px 0px 0px;
}
.row-store__button {
  color: #868686;
  font-size: 1.25rem;
  line-height: 1.875;
  font-weight: 500;
  white-space: nowrap;
}
.row-store__body {
  display: grid;
  grid-template-columns: minmax(auto, 1fr) minmax(auto, 1fr) minmax(auto, 1fr);
  justify-content: center;
  column-gap: 47px;
}
@media (max-width: 1200px) {
  .row-store__body {
    column-gap: calc(0px + 47 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 767.98px) {
  .row-store__body {
    grid-template-columns: auto;
    row-gap: 47px;
  }
}
@media (max-width: 767.98px) and (max-width: 1200px) {
  .row-store__body {
    row-gap: calc(15px + 32 * ((100vw - 320px) / 880));
  }
}
.row-store__item {
  max-width: 364px;
  display: flex;
  flex-direction: column;
}
.row-store__image {
  display: inline-block;
  max-width: 364px;
  max-height: 190px;
  flex: 1 1 100%;
}
.row-store__image:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .row-store__image:not(:last-child) {
    margin-bottom: calc(0px + 40 * ((100vw - 320px) / 880));
  }
}
.row-store__image img {
  max-width: 100%;
  max-height: 100%;
}
.row-store__title {
  font-weight: 500;
  white-space: nowrap;
  color: inherit;
}
.row-store__title:not(:last-child) {
  margin: 0px 0px 7px 0px;
}
.row-store__price {
  color: #666;
  line-height: 1.3;
  font-size: 0.875rem;
}
.categories {
  padding-top: 50px;
  padding-bottom: 125px;
}
@media (max-width: 1200px) {
  .categories {
    padding-top: calc(20px + 30 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .categories {
    padding-bottom: calc(30px + 95 * ((100vw - 320px) / 880));
  }
}
.categories__title {
  text-align: center;
}
.categories__title:not(:last-child) {
  padding-bottom: 80px;
}
@media (max-width: 1200px) {
  .categories__title:not(:last-child) {
    padding-bottom: calc(50px + 30 * ((100vw - 320px) / 880));
  }
}
.categories__body {
  display: grid;
  grid-template-columns: minmax(auto, 25%) minmax(auto, 25%) minmax(auto, 25%) minmax(auto, 25%);
  align-items: center;
  gap: 70px;
}
@media (max-width: 1200px) {
  .categories__body {
    gap: calc(10px + 60 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 479.98px) {
  .categories__body {
    grid-template-columns: minmax(auto, 50%) minmax(auto, 50%);
  }
}
.item-categories {
  max-width: 220px;
  position: relative;
}
.item-categories__image {
  overflow: hidden;
  max-width: 220px;
}
.item-categories__image img {
  border-radius: 1.25rem;
  width: 100%;
}
.item-categories__link {
  position: absolute;
  z-index: 5;
  bottom: 7%;
  left: 65px;
  color: #fff;
  padding: 5px 5px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1.87;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .item-categories__link {
    left: calc(0px + 65 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 767.98px) {
  .item-categories__link {
    font-size: 1rem;
  }
}
.brands {
  padding-top: 125px;
  padding-bottom: 200px;
}
@media (max-width: 1200px) {
  .brands {
    padding-top: calc(30px + 95 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .brands {
    padding-bottom: calc(50px + 150 * ((100vw - 320px) / 880));
  }
}
.brands__title {
  text-align: center;
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .brands__title {
    padding-bottom: calc(50px + 50 * ((100vw - 320px) / 880));
  }
}
.brands__body {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 30px;
  cow-gap: 80px;
}
@media (max-width: 1200px) {
  .brands__body {
    column-gap: calc(15px + 15 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .brands__body {
    cow-gap: calc(15px + 65 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 767.98px) {
  .brands__body {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}
@media (max-width: 479.98px) {
  .brands__body {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}
.brands__item {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.whytry {
  background: #121212;
  color: #fff;
  padding-top: 90px;
  padding-bottom: 95px;
}
@media (max-width: 1200px) {
  .whytry {
    padding-top: calc(50px + 40 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .whytry {
    padding-bottom: calc(50px + 45 * ((100vw - 320px) / 880));
  }
}
.whytry__title {
  text-align: center;
}
.whytry__title:not(:last-child) {
  padding-bottom: 75px;
}
@media (max-width: 1200px) {
  .whytry__title:not(:last-child) {
    padding-bottom: calc(50px + 25 * ((100vw - 320px) / 880));
  }
}
.whytry__body {
  display: grid;
  grid-template-columns: minmax(auto, 1fr) minmax(auto, 1fr) minmax(auto, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  column-gap: 20px;
}
@media (max-width: 1200px) {
  .whytry__body {
    column-gap: calc(10px + 10 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 767.98px) {
  .whytry__body {
    grid-template-columns: auto;
    row-gap: 50px;
  }
}
@media (max-width: 767.98px) and (max-width: 1200px) {
  .whytry__body {
    row-gap: calc(35px + 15 * ((100vw - 320px) / 880));
  }
}
.whytry-item {
  max-width: 230px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  height: 100%;
}
.whytry-item__icon {
  border-radius: 20px;
  background: #262626;
  padding: 20px;
  display: inline-block;
}
.whytry-item__icon:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .whytry-item__icon:not(:last-child) {
    margin-bottom: calc(20px + 20 * ((100vw - 320px) / 880));
  }
}
.whytry-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.09rem;
  line-height: 1.68;
  text-transform: uppercase;
  flex: 1 1 auto;
}
.whytry-item__title:not(:last-child) {
  padding: 0px 0px 12px 0px;
}
.whytry-item__text {
  text-transform: capitalize;
  color: #666;
  line-height: 1.3;
  font-size: 0.875rem;
}

.reviews {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .reviews {
    padding-top: calc(50px + 70 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .reviews {
    padding-bottom: calc(50px + 50 * ((100vw - 320px) / 880));
  }
}
.reviews__title {
  text-align: center;
}
.reviews__title:not(:last-child) {
  padding-bottom: 110px;
}
@media (max-width: 1200px) {
  .reviews__title:not(:last-child) {
    padding-bottom: calc(50px + 60 * ((100vw - 320px) / 880));
  }
}
.slider-reviews__avatar {
  min-width: 326px;
  min-height: 341px;
  position: relative;
  padding: 0px 20px 0px 81px;
}
@media (max-width: 767.98px) {
  .slider-reviews__avatar {
    padding-bottom: 50px;
  }
}
@media (max-width: 479.98px) {
  .slider-reviews__avatar {
    padding: 0px 20px 0px 40px;
  }
}
.slider-reviews__avatar::before {
  content: "";
  position: absolute;
  overflow: hidden;
  width: 87.4%;
  height: 75.65%;
  z-index: 1;
  transform: rotate(-7.724deg);
  background: #ff6428;
  bottom: 21px;
  left: 28px;
  border-radius: 2.5rem 0rem 25rem 25rem;
  max-width: 285px;
  max-height: 258px;
}
@media (max-width: 1200px) {
  .slider-reviews__avatar::before {
    max-width: calc(200px + 85 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .slider-reviews__avatar::before {
    max-height: calc(180px + 78 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 991.98px) {
  .slider-reviews__avatar::before {
    bottom: 50px;
  }
}
.slider-reviews__avatar img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 10;
  border-radius: 50%;
}
.slider-reviews__info {
  max-width: 524px;
}
.slider-reviews__text {
  color: #666;
  font-size: 1.5rem;
  line-height: 1.6;
}
.slider-reviews__text:not(:last-child) {
  padding-bottom: 56px;
}
@media (max-width: 1200px) {
  .slider-reviews__text:not(:last-child) {
    padding-bottom: calc(35px + 21 * ((100vw - 320px) / 880));
  }
}
.slider-reviews__name {
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}
.slider-reviews__name:not(:last-child) {
  padding: 0px 0px 8px 0px;
}
.slider-reviews__who {
  color: #868686;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.09rem;
}

.swiper-slide__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px 100px 0px;
}
@media (max-width: 767.98px) {
  .swiper-slide__body {
    flex-direction: column;
  }
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
.swiper-pagination .swiper-pagination-bullet {
  border-radius: 20px;
  background: #000000;
  width: 10px;
  height: 16px;
  transition: all 0.3s ease 0s;
  align-items: center;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #FF6428;
  width: 12px;
  height: 24px;
  transform: rotate(-90deg);
}

.app {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  .app {
    padding-top: calc(50px + 70 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 1200px) {
  .app {
    padding-bottom: calc(30px + 30 * ((100vw - 320px) / 880));
  }
}
.app__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .app__container {
    flex-direction: column-reverse;
  }
}
@media (min-width: 991.98px) {
  .app__info {
    max-width: 516px;
  }
}
.app__title {
  color: #000;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.4;
  padding: 0px 0px 60px 0px;
}
@media (max-width: 479.98px) {
  .app__title {
    font-size: 2.5rem;
  }
}
.app__action {
  display: flex;
  align-items: center;
  column-gap: 26px;
}
@media (max-width: 479.98px) {
  .app__action {
    flex-direction: column;
    row-gap: 15px;
    align-items: start;
  }
}
.graphic-app {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 32px;
}
@media (max-width: 1200px) {
  .graphic-app {
    column-gap: calc(15px + 17 * ((100vw - 320px) / 880));
  }
}
.graphic-app::before {
  content: "";
  position: absolute;
  border-radius: 568px;
  background: #FF6428;
  width: 475px;
  height: 354px;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .graphic-app::before {
    width: 400px;
    height: 200px;
  }
}
@media (max-width: 479.98px) {
  .graphic-app::before {
    width: 0;
  }
}
.graphic-app__image {
  position: relative;
  z-index: 5;
  border-radius: 25px;
  max-width: 214px;
  max-height: 461px;
  overflow: hidden;
}
.graphic-app__image img {
  box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767.98px) {
  .graphic-app__image img {
    width: 100%;
    height: 100%;
  }
}
.graphic-app__image:first-child {
  margin: 0px 0px 142px 0px;
}