@charset "UTF-8";

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_bold.woff2") format("woff2"), url("../fonts/gotham_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_medium.woff2") format("woff2"), url("../fonts/gotham_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_regular.woff2") format("woff2"), url("../fonts/gotham_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Gropled;
  font-display: swap;
  src: url("../fonts/Gropled-Bold.woff2") format("woff2"), url("../fonts/Gropled-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

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

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #ffffff;
  font-size: 18px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url("../img/bg-body.jpg") top center/cover no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  background-color: #210b49;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 75px 0;
}

.title {
  color: #ffffff;
  font-size: 30px;
  line-height: 113%;
  font-weight: 700;
  margin-bottom: 50px;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #ffffff;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background: rgba(33, 11, 73, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header__container {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 85px;
  flex-shrink: 0;
  margin-right: 60px;
}

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

.header__nav {
  margin-right: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.header__nav-link.active {
  color: #02DED4;
}

.header__nav-link:hover {
  color: #02DED4;
}

.header__search {
  width: 245px;
  flex-shrink: 1;
}

.header__search form {
  width: 100%;
}

.header__search form label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 20.5px;
  border: 1px solid #02DED4;
  background: rgba(255, 255, 255, 0);
}

.header__search form label button {
  border: none;
  outline: none;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.header__search form label input {
  width: 100%;
  flex-shrink: 1;
  font-size: 16px;
  color: #fff;
}

.header__search form label input::-moz-placeholder {
  color: #fff;
}

.header__search form label input:-ms-input-placeholder {
  color: #fff;
}

.header__search form label input::placeholder {
  color: #fff;
}

.header__basket {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 30px;
  border-radius: 20.5px;
  background: #02DED4;
  padding: 10px 20px;
  font-size: 16px;
  box-shadow: 0 0 20px #02ded4;
  color: #111;
  transition: 0.2s ease-in-out;
  flex-shrink: 0;
}

.header__basket span {
  position: absolute;
  right: 10px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #02DED4;
}

.header__basket span.active {
  display: flex;
}

.header__basket:hover {
  transform: scale(1.1);
}

.header__basket img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.header-space {
  padding-top: 111px;
}

.footer {
  margin-top: auto;
  background: #000;
}

.footer__container {
  position: relative;
  padding: 50px 0;
  display: flex;
  align-items: flex-start;
}

.footer__container::after {
  position: absolute;
  content: "";
  width: 130px;
  height: 110px;
  z-index: -1;
  bottom: 100%;
  right: 0;
  background: url("../img/decor-4.png") center/contain no-repeat;
}

.footer__col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-right: 100px;
  width: 215px;
  flex-shrink: 0;
}

.footer__col span {
  font-size: 14px;
  opacity: 0.5;
  color: #ffffff;
  line-height: 142%;
}

.footer__logo {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 9px;
  overflow: hidden;
}

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

.footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__nav-title {
  color: #02DED4;
  font-size: 20px;
  font-weight: 700;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.footer__nav-list li {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  gap: 10px;
  max-width: 300px;
  line-height: 125%;
}

.footer__nav-list li svg {
  flex-shrink: 0;
}

.footer__nav-list li a {
  transition: 0.2s ease-in-out;
}

.footer__nav-list li a:hover {
  color: #02DED4;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer__bot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 14px;
  color: #ffffff;
}

.footer__bot-container a,
.footer__bot-container span {
  opacity: 0.5;
}

.footer__bot-container a {
  transition: 0.2s ease-in-out;
}

.footer__bot-container a:hover {
  color: #02DED4;
}

.breadcrumbs__container {
  padding: 50px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  font-size: 14px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #979797;
  transition: 0.2s ease-in-out;
}

.breadcrumbs__list-link:hover {
  color: #02DED4;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #FFF;
}

.hero {
  margin-top: 80px;
}

.hero__slider {
  position: relative;
  height: 450px;
  width: 100%;
}

.hero__slider-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 40px;
  overflow: hidden;
}

.hero__slider-img {
  position: absolute;
  width: 100%;
  height: 100%;
}

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

.hero__slider-text {
  position: relative;
  z-index: 2;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  max-width: 350px;
  margin-left: 120px;
  font-family: Gropled;
}

.hero__slider-arrows {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.hero__slider-arrow {
  display: flex;
}

.hero__slider-pagination {
  position: absolute;
  bottom: 40px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  right: unset !important;
  z-index: 2;
}

.hero__slider-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  transition: 0.2s ease-in-out;
}

.hero__slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.box__container {
  padding-top: 100px;
  padding-bottom: 75px;
}

.box__title {
  text-align: center;
}

.box__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
}

.box__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 300px;
  border-radius: 40px;
  padding: 50px;
}

.box__item:nth-child(1) {
  background: url("../img/box-1.jpg") center/cover no-repeat;
}

.box__item:nth-child(1) .box__item-link {
  background: linear-gradient(180deg, #ED5565 -13.41%, #D62839 100%);
}

.box__item:nth-child(2) {
  background: url("../img/box-2.jpg") center/cover no-repeat;
}

.box__item:nth-child(2) .box__item-link {
  background: linear-gradient(0deg, #0B9BD0 0%, #4FC1E9 100%);
}

.box__item-title {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 84px;
}

.box__item-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.box__item-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 15px 40px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 33px;
  transition: 0.2s ease-in-out;
}

.box__item-link:hover {
  transform: scale(1.1);
}

.box__item-img {
  position: absolute;
  right: 20px;
  bottom: 0;
}

.trend {
  background: url("../img/trend-bg.png") right center/contain no-repeat;
}

.trend__title {
  position: relative;
  text-align: center;
  z-index: 2;
}

.trend__items {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.trend__items::before {
  position: absolute;
  content: "";
  bottom: 100%;
  left: 30px;
  width: 130px;
  height: 110px;
  background: url("../img/decor-1.png") center/contain no-repeat;
}

.trend__item {
  position: relative;
  padding: 40px;
  background: url("../img/trend-card.jpg") center/cover no-repeat;
  border-radius: 40px;
  height: 290px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.trend__item:hover {
  transform: translateY(-10px);
}

.trend__item:hover img {
  transform: scale(1.05);
}

.trend__item-title {
  position: relative;
  font-size: 25px;
  font-weight: 700;
  max-width: 130px;
  z-index: 2;
}

.trend__item-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 100%;
}

.trend__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s ease-in-out;
}

.hit__title {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hit__items {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  grid-auto-rows: 287px;
}

.hit__items::before {
  position: absolute;
  content: "";
  bottom: 100%;
  left: 30px;
  width: 130px;
  height: 110px;
  background: url("../img/decor-2.png") center/contain no-repeat;
}

.hit__item {
  display: flex;
  align-items: flex-end;
  padding: 40px;
  position: relative;
  background: url("../img/hit-bg.jpg") center/cover no-repeat;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.hit__item:hover {
  transform: translateY(-10px);
}

.hit__item:hover img {
  transform: scale(1.05);
}

.hit__item:nth-child(1) {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.hit__item-title {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 700;
  max-width: 105px;
}

.hit__item-img {
  position: absolute;
  top: 0;
  right: 0;
  max-height: 100%;
  height: 100%;
}

.hit__item-img img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s ease-in-out;
}

.about__container {
  position: relative;
  padding-top: 75px;
  padding-bottom: 150px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 70px;
}

.about__container::before {
  position: absolute;
  content: "";
  width: 130px;
  height: 110px;
  z-index: -1;
}

.about__container::before {
  right: 0;
  top: 50px;
  background: url("../img/decor-3.png") center/contain no-repeat;
}

.about__image {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.about__image::before {
  display: block;
  content: "";
}

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

.about__image::before {
  padding-top: 100%;
}

.about__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__title {
  margin-bottom: 20px;
}

.about__text {
  margin-bottom: 55px;
  line-height: 144%;
  font-size: 18px;
}

.about__link {
  padding: 15px 46px;
  border-radius: 100px;
  background: #02DED4;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  box-shadow: 0 0 20px #02ded4;
}

.section__container {
  padding-bottom: 150px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}

.pagination li:not(.arrow) a {
  border: 1px solid #02DED4;
}

.pagination li:not(.arrow) a:hover {
  background: #02DED4;
}

.products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.products__title {
  margin-bottom: 0;
}

.products__select-wrapper {
  position: relative;
}

.products__select-wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50px;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/select-arrow.svg) center no-repeat;
  pointer-events: none;
}

.products__select {
  padding: 12px 20px;
  padding-right: 50px;
  border-radius: 100px;
  background: #02DED4;
  font-size: 16px;
  font-weight: 500;
  -webkit-appearance: none;
}

.products__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 288px 1fr;
  grid-template-columns: 288px 1fr;
  grid-gap: 30px;
  align-items: start;
}

.products__block.not-filter {
  grid-template-columns: 1fr;
}

.products__filter {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  background: url("../img/blue-bg.jpg") center/cover no-repeat;
  border-radius: 20px;
  padding: 50px 30px;
}

.products__filter-title {
  font-size: 30px;
  font-weight: 700;
}

.products__filter-fields {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
}

.products__filter-subtitle {
  font-weight: 700;
  font-size: 18px;
}

.products__filter-field {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.products__filter-field input {
  display: none;
}

.products__filter-field input:checked + div {
  background: #02DED4;
}

.products__filter-field input:checked + div svg {
  opacity: 1;
}

.products__filter-field div {
  border-radius: 6px;
  border: 1px solid #02DED4;
  background: rgba(217, 217, 217, 0);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products__filter-field div svg {
  opacity: 0;
}

.products__filter-price {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.products__filter-price_numbers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 15px;
  border-radius: 8px;
  border: 1px solid #02DED4;
  background: rgba(255, 255, 255, 0.2);
}

.products__filter-price_numbers input {
  width: 40%;
  font-size: 14px;
  color: #ffffff;
}

.products__filter-price_numbers input::-webkit-inner-spin-button,
.products__filter-price_numbers input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.products__filter-range .irs--flat {
  height: 10px;
}

.products__filter-range .irs--flat .irs-bar {
  height: 3px;
  background: #02ded4;
  top: 0;
}

.products__filter-range .irs--flat .irs-handle {
  top: 20px;
  width: 13px;
  height: 13px;
  background: #02DED4;
  border-radius: 50%;
  cursor: pointer;
  top: -5px;
}

.products__filter-range .irs--flat .irs-handle i {
  display: none;
}

.products__filter-range .irs--flat .irs-line {
  background: #ffffff;
  height: 1px;
  top: 1px;
}

.products__filter-submit {
  border-radius: 100px;
  background: #02DED4;
  padding: 12px;
  box-shadow: 0 0 20px #02ded4;
  transition: 0.2s ease-in-out;
}

.products__filter-submit:hover {
  transform: scale(1.04);
}

.products__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  width: 100%;
}

.products__item {
  background: url("../img/blue-bg.jpg") center/cover no-repeat;
  border-radius: 40px;
  overflow: hidden;
}

.products__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 0 0 40px 40px;
  padding: 15px;
  margin-bottom: 20px;
}

.products__item-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.products__item-block {
  display: flex;
  flex-direction: column;
  padding: 0 30px 30px 30px;
}

.products__item-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 111%;
  transition: 0.2s ease-in-out;
}

.products__item-name:hover {
  color: #02DED4;
}

.products__item-price {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #02DED4;
  line-height: 110%;
}

.products__item-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20.5px;
  background: #02DED4;
  padding: 10px;
  font-size: 14px;
  box-shadow: 0 0 10px #02ded4;
  transition: 0.2s ease-in-out;
  height: 41px;
}

.products__item-buy:hover {
  transform: scale(1.04);
}

.products__item-buy span {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.products__item-buy span:nth-child(2) {
  display: none;
}

.products__item-buy.disable {
  pointer-events: none;
  background: #d9d9dd;
  color: #000;
  box-shadow: none;
}

.products__item-buy.disable span:nth-child(1) {
  display: none;
}

.products__item-buy.disable span:nth-child(2) {
  display: block;
}

.product__block {
  display: flex;
  justify-content: space-between;
}

.product__image {
  width: 48%;
  position: relative;
  overflow: hidden;
  background: url("../img/product-bg.jpg") center/cover no-repeat;
  border-radius: 40px;
}

.product__image::before {
  display: block;
  content: "";
}

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

.product__image img {
  width: auto;
  height: auto;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
}

.product__image::before {
  padding-top: 80%;
}

.product__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 48%;
}

.product__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
}

.product__price {
  font-size: 30px;
  color: #02DED4;
  font-weight: 700;
  margin-bottom: 20px;
}

.product__art {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 125%;
}

.product__avail {
  margin-bottom: 125px;
  font-size: 16px;
  color: #02DED4;
  text-transform: uppercase;
}

.product__counter {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 50px;
}

.product__counter span {
  color: #02DED4;
  font-size: 16px;
}

.product__counter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}

.product__counter-btn:hover {
  transform: scale(1.1);
}

.product__counter-btn svg {
  pointer-events: none;
}

.product__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20.5px;
  background: #02DED4;
  padding: 12px 50px;
  font-size: 14px;
  box-shadow: 0 0 10px #02ded4;
  transition: 0.2s ease-in-out;
  color: #000;
}

.product__buy:hover {
  transform: scale(1.04);
}

.product__buy span {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.product__buy span:nth-child(2) {
  display: none;
}

.product__buy.disable {
  pointer-events: none;
  background: #d9d9dd;
  color: #000;
  box-shadow: none;
}

.product__buy.disable span:nth-child(1) {
  display: none;
}

.product__buy.disable span:nth-child(2) {
  display: block;
}

.product__desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 125%;
}

.product__tabs {
  margin-top: 50px;
}

.product__tabs-header {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

.product__tabs-header::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 130px;
  height: 110px;
  background: url("../img/decor-3.png") center/contain no-repeat;
  z-index: -1;
}

.product__tabs-header_item {
  border-bottom: 1px solid #fff;
  transition: 0.2s ease-in-out;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: -1px;
  padding-bottom: 20px;
  width: 250px;
}

.product__tabs-header_item.active {
  color: #02DED4;
  border-color: #02DED4;
}

.product__tabs-block {
  display: none;
}

.product__tabs-block.active {
  display: block;
}

.product__tabs-desc {
  max-width: 610px;
}

.product__tabs-desc p {
  font-size: 16px;
  line-height: 190%;
}

.product__tabs-video {
  margin-top: 50px;
}

.product__tabs-video h3 {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 700;
}

.product__tabs-video_item {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.product__tabs-video_item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.product__tabs-video_item img:nth-child(1) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__tabs-video_item img:nth-child(2) {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
}

.product__tabs-char ul {
  max-width: 610px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.product__tabs-char ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product__tabs-char ul li span {
  font-weight: 500;
  font-size: 16px;
}

.product__tabs-reviews {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.product__tabs-reviews_title {
  margin-bottom: 30px;
  font-size: 30px;
  color: #02ded4;
  font-weight: 700;
}

.product__tabs-reviews_block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  align-items: start;
}

.product__tabs-reviews_items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.product__review {
  border-radius: 20px;
  padding: 20px;
  background: rgba(2, 222, 212, 0.2);
}

.product__review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.product__review-name {
  font-size: 16px;
  font-weight: 700;
}

.product__review-date {
  font-size: 13px;
  color: #02DED4;
}

.product__review-text {
  line-height: 128%;
  font-size: 14px;
}

.product__review-images {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.product__review-images img {
  width: 85px;
  height: 85px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.product__form {
  display: flex;
  flex-direction: column;
  padding: 50px 80px;
  border-radius: 20px;
  background: rgba(2, 222, 212, 0.2);
}

.product__form-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 700;
}

.product__field {
  padding: 12px 20px;
  font-size: 14px;
  color: #000;
  border-radius: 8px;
  border: 1px solid #02DED4;
  background: #FFF;
  outline: none;
  margin-bottom: 15px;
}

.product__field.textarea {
  height: 100px;
}

.product__file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  padding: 12px;
  border-radius: 6px;
  border: 1px dashed #02DED4;
  background: rgba(2, 222, 212, 0.36);
}

.product__file svg {
  flex-shrink: 0;
}

.product__file input {
  display: none;
}

.product__submit {
  margin-top: 20px;
  padding: 14px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 100px;
  background: #02DED4;
  transition: 0.2s ease-in-out;
}

.product__submit:hover {
  transform: scale(1.04);
}

.recomend__container {
  padding-bottom: 150px;
}

.recomend__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.recomend__title {
  margin-bottom: 0;
}

.recomend__arrows {
  display: flex;
  align-items: center;
  gap: 15px;
}

.recomend__arrow {
  display: flex;
}

.company__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.company__left {
  width: 46%;
}

.company__title {
  margin-bottom: 30px;
}

.company__text {
  font-size: 16px;
  line-height: 190%;
  margin-bottom: 20px;
}

.company__images {
  width: 48%;
  height: auto;
  margin: 0;
}

.company__images .company__images-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  width: auto;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
}

.company__images .company__images-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.company__images .company__images-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.company__images-slide {
  height: auto;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
}

.deliv__block {
  position: relative;
  background: url("../img/deliv-bg.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  padding: 100px 80px;
  border-radius: 40px;
}

.deliv__block-title {
  width: 48%;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
}

.deliv__block-text {
  width: 48%;
  line-height: 150%;
  font-size: 16px;
}

.deliv__block-img {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0;
}

.deliv__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  margin-top: 30px;
}

.deliv__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px;
  border: 1px solid #02DED4;
  border-radius: 30px;
}

.deliv__item-title {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
}

.deliv__item-text {
  line-height: 150%;
  font-size: 16px;
}

.deliv__item-text ul li p {
  display: inline-block;
}

.contact__block {
  background: url("../img/hit-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-radius: 20px;
  padding: 30px;
}

.contact__block-map {
  width: 48%;
  border-radius: 20px;
  height: 420px;
  overflow: hidden;
}

.contact__block-map iframe {
  width: 100%;
  height: 100%;
}

.contact__block-info {
  width: 48%;
}

.contact__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.contact__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  border-radius: 20px;
  background: rgba(2, 222, 212, 0.2);
  padding: 25px;
}

.contact__item-title {
  font-size: 16px;
  font-weight: 500;
}

.contact__item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease-in-out;
  font-size: 14px;
  line-height: 142%;
}

.contact__item-link:hover {
  color: #02DED4;
}

.contact__item-link svg {
  flex-shrink: 0;
}

.contact__item-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact__item-socials a {
  display: flex;
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
}

.contact__item-socials a:hover {
  transform: scale(1.1);
}

.politics__title {
  text-align: center;
}

.politics__text {
  opacity: 0.8;
  font-size: 14px;
  line-height: 165%;
}

.notfound__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.basket__title {
  text-align: center;
}

.basket__title.disabled {
  display: none;
}

.basket__title-empty {
  text-align: center;
  display: none;
}

.basket__title-empty.active {
  display: block;
}

.basket__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 395px;
  grid-template-columns: 1fr 395px;
  grid-gap: 30px;
  align-items: start;
}

.basket__block.disabled {
  display: none;
}

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

.basket__item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.basket__item:nth-child(1) {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.basket__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: url("../img/hit-bg.jpg") center/cover no-repeat;
  flex-shrink: 0;
  margin-right: 55px;
  border-radius: 20px;
  overflow: hidden;
}

.basket__item-img img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.basket__item-col {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-right: 80px;
  max-width: 200px;
}

.basket__item-name {
  font-size: 18px;
  font-weight: 500;
}

.basket__item-art {
  font-size: 16px;
}

.basket__item-counter {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 80px;
}

.basket__item-counter span {
  color: #02DED4;
  font-size: 16px;
}

.basket__item-btn {
  display: flex;
}

.basket__item-price {
  margin-right: auto;
  font-size: 20px;
  font-weight: 700;
  color: #02DED4;
}

.basket__item-remove {
  display: flex;
  flex-shrink: 0;
}

.basket__order {
  display: flex;
  flex-direction: column;
  padding: 50px;
  background: url("../img/hit-bg.jpg") center/cover no-repeat;
  border-radius: 20px;
}

.basket__order-title {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
}

.basket__order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.basket__order-row span:nth-child(1) {
  font-size: 16px;
}

.basket__order-row span:nth-child(2) {
  font-size: 18px;
  font-weight: 700;
}

.basket__item-total {
  display: flex;
  align-items: center;
  margin-top: 30px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.basket__item-total span:nth-child(1) {
  font-size: 30px;
  font-weight: 700;
}

.basket__item-total span:nth-child(2) {
  font-size: 18px;
  font-weight: 700;
  color: #02DED4;
}

.basket__item-order {
  margin-top: 150px;
  border-radius: 20.5px;
  background: #02DED4;
  padding: 12px 50px;
  font-size: 14px;
  box-shadow: 0 0 10px #02ded4;
  text-align: center;
  transition: 0.2s ease-in-out;
  color: #000;
}

.basket__item-order:hover {
  transform: scale(1.04);
}

.basket__item-order span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.basket__item-order span:nth-child(2) {
  display: none;
}

.form {
  background: url("../img/hit-bg.jpg") center/cover no-repeat;
}

.form.disabled {
  display: none;
}

.form__container {
  padding: 100px 0;
}

.form form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.form__block {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: 100%;
  max-width: 500px;
}

.form__title {
  text-align: center;
}

.form__field {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.form__field input {
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #02DED4;
  background: #FFF;
}

.form__field-title {
  font-size: 16px;
  font-weight: 500;
}

.form__field-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.form__field-row label {
  position: relative;
  cursor: pointer;
}

.form__field-row label input {
  display: none;
}

.form__field-row label input:checked + div {
  background: #02DED4;
}

.form__field-row label div {
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #02DED4;
  background: #FFF;
  color: #000;
}

.form__submit {
  border-radius: 20.5px;
  background: #02DED4;
  padding: 12px 50px;
  font-size: 14px;
  box-shadow: 0 0 10px #02ded4;
  text-align: center;
  transition: 0.2s ease-in-out;
  color: #000;
}

.form__submit:hover {
  transform: scale(1.04);
}

.form__submit span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form__submit span:nth-child(2) {
  display: none;
}

.fix-about {
  position: fixed;
  left: -48px;
  bottom: 100px;
  transform: rotate(-90deg);
  background: #02DED4;
  padding: 14px 40px;
  border-radius: 0 0 20px 20px;
  z-index: 2;
  color: #111;
  font-size: 18px;
  text-transform: uppercase;
  transition: .2s ease-in-out;
}

.fix-about:hover {
  background: #0B9BD0;
}

.unbox {
  overflow: hidden;
}

.unbox__slider {
  overflow: unset;
}

.unbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.unbox__title {
  color: #FFF;
  font-size: 45px;
  font-weight: 700;
  line-height: 118%;
  max-width: 800px;
}

.unbox__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.unbox__slide {
  position: relative;
  height: 530px;
  width: 256px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}

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

.unbox__slide::before {
  position: absolute;
  content: '';
  width: 55px;
  height: 55px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/video-icon.png") center/contain no-repeat;
  z-index: 2;
}

.unbox__arrow {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 25px;
  border-radius: 100px;
  border: 1px solid #02DED4;
  color: #FFF;
  font-size: 18px;
  text-transform: uppercase;
}

.unbox__arrow svg {
  flex-shrink: 0;
}

.form__checked {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form__checked input {
  flex-shrink: 0;
}

.form__checked span {
  font-size: 14px;
}

.form__checked span a {
  text-decoration: underline;
}

@media (max-width: 1360px) {
  .container {
    max-width: 1240px;
  }

  .header__logo {
    margin-right: 30px;
  }
}

@media (max-width: 1240px) {
  .unbox__title {
    font-size: 32px;
    max-width: 600px;
  }
  .unbox__arrow {
    font-size: 14px;
    padding: 12px 20px;
  }
  .header__basket span {
    right: -5px;
    top: -5px;
  }
  .container {
    max-width: 992px;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 26px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 20px;
    margin-right: 0;
  }

  .header__logo {
    width: 80px;
    height: 80px;
    margin-right: auto;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(33, 11, 73, 0.5);
    padding: 40px 0;
    display: none;
  }

  .header__nav.active {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
  }

  .header__basket {
    font-size: 0;
    gap: 0;
    padding: 10px;
  }

  .header-space {
    padding-top: 81px;
  }

  .footer__col {
    margin-right: 30px;
  }

  .footer__nav-list li {
    max-width: 200px;
  }

  .hero__slider {
    height: 350px;
  }

  .hero__slider-text {
    font-size: 32px;
    margin-left: 60px;
  }

  .box__item {
    padding: 25px;
    height: 220px;
  }

  .box__item-title {
    width: 150px;
    height: 55px;
  }

  .box__item-img {
    width: 200px;
  }

  .trend__item {
    padding: 25px;
  }

  .hit__items {
    grid-auto-rows: 200px;
  }

  .about__container {
    padding-top: 50px;
  }

  .products__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .deliv__block {
    padding: 50px;
  }

  .deliv__block-title {
    font-size: 24px;
  }

  .deliv__item {
    padding: 25px;
  }

  .deliv__item-title {
    font-size: 24px;
  }

  .contact__block {
    flex-direction: column-reverse;
    row-gap: 30px;
  }

  .contact__block-map {
    width: 100%;
  }

  .contact__block-info {
    width: 100%;
  }

  .contact__block-title {
    margin-bottom: 25px;
  }

  .basket__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .basket__order {
    padding: 25px;
  }

  .basket__order-title {
    font-size: 22px;
  }

  .basket__item-order {
    margin-top: 30px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992px) {

  body {
    font-size: 16px;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer__col {
    margin-right: 0;
    align-items: center;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer__nav-list {
    align-items: center;
  }

  .footer__nav-list li {
    max-width: unset;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bot-container {
    flex-direction: column;
    row-gap: 20px;
  }

  .breadcrumbs__container {
    padding: 30px 0 50px 0;
  }

  .hero__slider-text {
    margin-left: 30px;
    font-size: 26px;
  }

  .hero__slider-text {
    text-shadow: 0 0 3px #000;
    max-width: 220px;
  }

  .hero__slider-arrows {
    display: none;
  }

  .trend__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .trend__item {
    height: 200px;
  }

  .trend__item-img {
    height: 100%;
  }

  .hit__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .hit__item:nth-child(1) {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }

  .about__text {
    font-size: 16px;
  }

  .products__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .products__filter {
    padding: 25px;
    row-gap: 15px;
  }

  .products__filter-title {
    font-size: 24px;
  }

  .products__filter-fields {
    row-gap: 10px;
  }

  .products__filter-subtitle {
    font-size: 16px;
  }

  .product__block {
    flex-direction: column;
    row-gap: 30px;
  }

  .product__image {
    width: 100%;
    max-width: 500px;
  }

  .product__info {
    width: 100%;
  }

  .product__avail {
    margin-bottom: 30px;
  }

  .product__counter {
    margin-bottom: 30px;
  }

  .product__tabs-header_item {
    width: auto;
    padding-right: 10px;
    font-size: 13px;
  }

  .product__tabs-reviews_title {
    font-size: 24px;
  }

  .product__tabs-reviews_block {
    display: flex;
    flex-direction: column-reverse;
  }

  .product__tabs-reviews_items {
    width: 100%;
  }

  .product form {
    width: 100%;
  }

  .product__form {
    width: 100%;
    padding: 25px;
  }

  .product__form-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .form__container {
    padding: 50px 0;
  }

  .form__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .box__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .hit__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .hit__item:nth-child(1) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .about__container {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 50px;
  }

  .about__image {
    width: 100%;
  }

  .about__text {
    margin-bottom: 30px;
  }

  .company__container {
    flex-direction: column;
    row-gap: 0;
  }

  .company__left {
    width: 100%;
  }

  .company__images {
    width: 100%;
    max-width: 500px;
  }

  .deliv__block {
    padding: 25px;
  }

  .deliv__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .deliv__item-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .contact__block-map {
    height: 350px;
  }

  .contact__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .basket__item {
    flex-direction: column;
    row-gap: 25px;
  }

  .basket__item-img {
    margin-right: 0;
  }

  .basket__item-col {
    margin-right: 0;
    text-align: center;
  }

  .basket__item-counter {
    margin-right: 0;
  }

  .basket__item-price {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .unbox__slide {
    height: 400px;
    width: 200px;
  }
  .hero__slider-img::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.25);
  }
  .hero__slider-img img {
    object-position: -420px;
  }
  .header__logo {
    margin-right: 15px;
  }

  .header__logo {
    width: 60px;
    height: 60px;
  }

  .header__search {
    margin-left: auto;
  }

  .header__search form label {
    padding: 10px;
  }

  .header__search form label input {
    font-size: 14px;
  }

  .header__basket {
    margin-left: 15px;
  }

  .header-space {
    padding-top: 61px;
  }

  .box__item-link {
    padding: 12px 20px;
    font-size: 14px;
  }

  .box__item-img {
    width: 150px;
  }

  .products__header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }

  .products__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .product__tabs-header::before {
    display: none;
  }

  .deliv__block {
    padding-bottom: 0;
    padding-top: 35px;
  }

  .deliv__block-title {
    width: 100%;
  }

  .deliv__block-text {
    width: 100%;
  }

  .deliv__block-img {
    position: static;
    width: 100%;
    margin-top: 50px;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hit__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .hit__item:nth-child(1) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
}