@charset "UTF-8";

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

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

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

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

@font-face {
  font-family: SFProDisplay;
  font-display: swap;
  src: url("../new_fonts/SFProDisplay-Semibold.woff2") format("woff2"),
    url("../new_fonts/SFProDisplay-Semibold.woff") format("woff");
  font-weight: 600;
  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;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: normal;
  color: #130a31;
  font-size: 14px;
  font-family: "SFProDisplay";
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

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;
}

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

.content {
  padding: 50px 0;
}

.title {
  color: #130a31;
  font-family: Benzin;
  font-size: 24px;
  margin-bottom: 24px;
}

/*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;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid #f3f3f3;
  background: #fff;
}

.header.active::before {
  position: absolute;
  content: "";
  height: 100dvh;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(19, 10, 49, 0.5);
}

.header.active .header__search label,
.header.active .header__city-active,
.header.active .header__basket {
  background: #ffffff;
}

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

.header__logo {
  display: flex;
  flex-shrink: 0;
  width: 85px;
}

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

.header__items {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid #f3f3f3;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 8px;
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
  transition: 0.2s ease-in-out;
}

.header__social:hover {
  border-color: #33245e;
}

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

.header__social-col {
  display: flex;
  flex-direction: column;
}

.header__social-col span:nth-child(1) {
  font-size: 14px;
  color: #130a31;
}

.header__social-col span:nth-child(2) {
  font-size: 12px;
  opacity: 0.5;
}

.header__feedback {
  display: block;
  padding: 10px 24px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  background: #33245e;
  transition: 0.2s ease-in-out;
}

.header__feedback:hover {
  background: #130a31;
}

.header__bot {
  display: flex;
  align-items: center;
  padding-top: 8px;
}

.header__nav {
  margin-right: auto;
}

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

.header__nav-link {
  padding: 10px 16px;
  transition: 0.2s ease-in-out;
  border-radius: 8px;
}

.header__nav-link:hover {
  background: #f3f3f3;
}

.header__search {
  position: relative;
  margin-right: 10px;
}

.header__search label {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.header__search-submit {
  width: 16px;
  height: 16px;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.header__search-input {
  width: 320px;
  border: none;
  outline: none;
  padding: 0;
  font-size: 14px;
}

.header__search-input::-moz-placeholder {
  color: #a4a4a4;
}

.header__search-input:-ms-input-placeholder {
  color: #a4a4a4;
}

.header__search-input::placeholder {
  color: #a4a4a4;
}

.header__city {
  position: relative;
  margin-right: 8px;
}

.header__city-active {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #130a31;
  padding: 8px 16px;
  height: 36px;
  border-radius: 8px;
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
  transition: border 0.2s ease-in-out;
}

.header__city-active:hover {
  border: 1px solid #33245e;
}

.header__city-active svg {
  flex-shrink: 0;
}

.header__city-other {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid #ffffff;
  background: #ffffff;
  box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05),
    0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  width: 166px;
  display: none;
}

.header__city-other.active {
  display: block;
}

.header__city-list {
  display: flex;
  flex-direction: column;
}

.header__city-item a {
  display: block;
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.2s ease-in-out;
}

.header__city-item a:hover {
  background: #f3f3f3;
}

.header__basket {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #f3f3f3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.2s ease-in-out;
  border: 1px solid #f3f3f3;
}

.header__basket:hover {
  border: 1px solid #33245e;
}

.header__basket-count {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  background: #a964f4;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 2px;
  right: 2px;
  display: none;
}

.header__basket-count.active {
  display: flex;
}

.mob__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #f3f3f3;
  display: none;
}

.mob__menu.active {
  display: block;
}

.mob__menu-container {
  padding-top: 100px;
  padding-bottom: 36px;
}

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

.footer {
  margin-top: auto;
  background: #130a31;
  color: #ffffff;
}

.footer__container {
  padding-top: 100px;
  padding-bottom: 24px;
}

.footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  grid-gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #a964f4;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  width: 85px;
  height: 72px;
  flex-shrink: 0;
}

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

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

.footer__socials a {
  display: flex;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
}

.footer__socials a:hover {
  transform: scale(1.1);
}

.footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  align-items: start;
}

.footer__col {
  padding-left: 16px;
  border-left: 1px solid #a964f4;
}

.footer__col-title {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
}

.footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.footer__list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

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

.footer__list li a:hover {
  color: #a964f4;
}

.footer__block {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}

.footer__bot {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  color: #a4a4a4;
}

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

.footer__bot a:hover {
  color: #a964f4;
}

.footer__copy {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.footer__bot-left {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  font-size: 12px;
}

.footer__bot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  gap: 12px;
}

.breadcrumbs__container {
  padding: 24px 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: 20px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #a964f4;
  border-radius: 50%;
  right: -12px;
}

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

.breadcrumbs__list-link:hover {
  color: #33245e;
}

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

.modal-basket,
.modal-feedback {
  position: fixed;
  inset: 0;
  background: rgba(12, 0, 15, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.modal-basket.active,
.modal-feedback.active {
  display: flex;
  z-index: 5;
}

.modal-basket__block {
  width: 100%;
  max-width: 410px;
  margin: 0 16px;
}

.modal-basket__form {
  position: relative;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
}

.modal-basket__title {
  margin-bottom: 24px;
  font-family: Benzin;
  font-size: 24px;
}

.modal-basket__close,
.modal-feedback__close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}

.modal-basket__col {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 16px;
}

.modal-basket__col input,
.modal-basket__col textarea {
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid #a4a4a4;
  outline: none;
}

.modal-basket__col textarea {
  height: 150px;
  resize: none;
}

.modal-basket__col input::-moz-placeholder {
  color: #a4a4a4;
}

.modal-basket__col input:-ms-input-placeholder {
  color: #a4a4a4;
}

.modal-basket__col input::placeholder {
  color: #a4a4a4;
}

.modal-basket__submit {
  display: block;
  width: 100%;
  border-radius: 8px;
  padding: 15px;
  background: #33245e;
  color: #ffffff;
  transition: 0.2s ease-in-out;
  margin-bottom: 16px;
}

.modal-basket__submit:hover {
  background: #130a31;
}

.modal-basket__confirm {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.modal-basket__confirm input {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}

.modal-basket__confirm input:checked + svg path:nth-child(2) {
  opacity: 1;
}

.modal-basket__confirm svg path:nth-child(2) {
  opacity: 0;
}

.modal-basket__confirm a {
  text-decoration: underline;
}

.hero {
  position: relative;
}

.hero__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__images .swiper-slide {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: #f3f3f3;
}

.hero__images .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right;
  object-position: right;
  padding-right: 100px;
}

.hero__container {
  position: relative;
  z-index: 1;
  height: calc(100dvh - 122px);
  max-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__text {
  margin-left: 0;
  max-width: 800px;
  width: 100%;
}

.hero__text .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__text-item {
  margin-bottom: 8px;
  font-size: 32px;
  color: #33245e;
  font-family: Benzin;
}

.hero__text-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  background: #33245e;
  color: #ffffff;
  transition: 0.2s ease-in-out;
}

.hero__text-link:hover {
  background: #130a31;
}

.hero__pagination {
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 20px !important;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero__pagination .swiper-pagination-bullet {
  margin: 0;
  background: #a4a4a4;
  transition: 0.2s ease-in-out;
}

.hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #a964f4;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  z-index: 2;
  transition: 0.2s ease-in-out;
}

.hero__arrow:hover {
  transform: translateY(-50%) scale(1.2);
}

.hero__arrow.prev {
  left: 16px;
}

.hero__arrow.next {
  right: 16px;
}

.benefits__container {
  padding-top: 100px;
  padding-bottom: 50px;
}

.benefits__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 24px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 24px 16px;
  border-radius: 16px;
  background: #f3f3f3;
}

.benefits__item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(151, 71, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits__item-img img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}

.benefits__item-title {
  font-size: 16px;
  font-weight: 700;
}

.best {
  overflow: hidden;
}

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

.best__title {
  margin-bottom: 0;
}

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

.best__arrow {
  display: flex;
  transition: 0.2s ease-in-out;
}

.best__arrow:hover {
  transform: scale(1.2);
}

.best__item {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  transition: 0.2s ease-in-out;
  height: auto;
}

.best__item svg rect {
  transition: 0.2s ease-in-out;
}

.best__item:hover svg rect {
  fill: #a964f4;
}

.best__item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.best__item-title {
  font-size: 16px;
  font-weight: 700;
}

.best__item-arrow {
  display: flex;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.best__item-text {
  font-size: 14px;
  margin-bottom: 16px;
}

.best__item-img {
  border-radius: 8px;
  height: 150px;
  overflow: hidden;
  margin-top: auto;
}

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

.classic__block {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 490px 1fr;
  grid-template-columns: 490px 1fr;
  grid-gap: 10px;
}

.classic__container {
  position: relative;
}

.classic__container::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(0deg, #fff 31.25%, rgba(255, 255, 255, 0) 100%);
}

.classic__container.active::before {
  display: none;
}

.classic__text {
  line-height: 170%;
  max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}
.classic__text.active {
    max-height: 10000px; /* достаточно большое значение, чтобы показать всё */
}

.classic__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.classic__text.active::after {
  opacity: 0;
}
.classic__text-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.classic__hidden {
  display: none;
  padding-bottom: 24px;
}

.classic__hidden.active {
  display: block;
}

.classic__btn {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  padding: 24px 36px;
  background: #33245e;
  color: #ffffff;
  font-size: 16px;
  z-index: 1;
  transition: 0.2s ease-in-out;
}

.classic__btn:hover {
  background: #130a31;
}

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

.classic__btn.active span:nth-child(1) {
  display: none;
}

.classic__btn.active span:nth-child(2) {
  display: block;
}

.work__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [6];
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 24px;
}

.work__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e7e7e7;
}

.work__item.active {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.work__item.active .work__item-img {
  display: block;
}

.work__item.active .work__item-text {
  display: block;
}

.work__item.active .work__item-link {
  display: inline-flex;
}

.work__item-link.desktop {
  display: none;
}

.work__item-img {
  display: none;
  border-radius: 8px;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

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

.work__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(151, 71, 255, 0.1);
  color: #a964f4;
  font-size: 24px;
  margin-bottom: 16px;
}

.work__item-title {
  font-size: 16px;
  font-weight: 700;
}

.work__item-text {
  margin-bottom: 16px;
  margin-top: 8px;
  display: none;
}

.work__item-link {
  display: inline-flex;
  padding: 11px 24px;
  border-radius: 8px;
  background: #33245e;
  color: #ffffff;
  transition: 0.2s ease-in-out;
  display: none;
}

.work__item-link:hover {
  background: #130a31;
}

.package__container {
  padding-top: 50px;
  padding-bottom: 100px;
}

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

.package__item {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
}

.package__item-col {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.package__item-title {
  font-size: 24px;
  font-family: Benzin;
}

.package__item-link {
  padding: 12px 24px;
  display: inline-flex;
  background: #33245e;
  color: #ffffff;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.package__item-link:hover {
  background: #130a31;
}

.package__item-link svg {
  display: none;
}

.faq {
  background: #33245e;
  color: #ffffff;
}

.faq__container {
  padding: 100px 0;
}

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

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

.faq__title {
  color: #ffffff;
  margin-bottom: 8px;
}

.faq__desc {
  line-height: 150%;
  font-size: 16px;
  max-width: 553px;
}

.faq__socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.faq__social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 16px;
  border-radius: 8px;
  border: 1px solid #f3f3f3;
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
}

.faq__social svg path {
  transition: 0.2s ease-in-out;
}

.faq__social:hover {
  background: #ffffff;
  color: #33245e;
}

.faq__social:hover svg path {
  stroke: #33245e;
}

.faq__main-accordeons {
  display: flex;
  flex-direction: column;
}

.faq__main-accordeon {
  padding: 36px 0;
  border-bottom: 1px solid #a964f4;
}

.faq__main-accordeon:nth-child(1) {
  border-top: 1px solid #a964f4;
}

.faq__main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 18px;
  line-height: 133%;
}

.faq__main-title.active svg path:nth-child(1) {
  display: none;
}

.faq__main-body {
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 150%;
  max-width: 954px;
}

.feedback {
  padding-top: 100px;
}

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

.feedback__image {
  display: flex;
}

.feedback__block {
  padding-bottom: 100px;
  padding-top: 50px;
}

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

.feedback__row:last-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}

.feedback__row:last-child p {
  color: #a4a4a4;
}

.feedback__row:last-child p a {
  text-decoration: underline;
}

.feedback__row input {
  padding: 15px 16px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #a4a4a4;
  color: #a4a4a4;
  font-size: 14px;
}

.feedback__row button {
  width: 100%;
  padding: 15px 16px;
  background: #33245e;
  border: none;
  outline: none;
  text-align: center;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.feedback__row button:hover {
  background: #130a31;
}

.page__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
  padding-bottom: 42px;
}

.sidebar {
  background: #ffffff;
}

.sidebar__title {
  font-family: Benzin;
  font-size: 16px;
  padding: 16px 0;
  border-right: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
}

.sidebar__clear {
  display: flex;
  padding: 16px;
  text-align: center;
  background: #33245e;
  font-size: 16px;
  font-family: Benzin;
  color: #ffffff;
  transition: 0.2s ease-in-out;
}

.sidebar__clear:hover {
  background: #130a31;
}

.sidebar .siderbar-body {
  font-size: 16px;
  border-right: 1px solid #f3f3f3;
}

.sidebar .siderbar-body > .category {
  border-bottom: 1px solid var(--Gray-main, #f3f3f3);
}

.sidebar .category {
  position: relative;
  cursor: pointer;
}

.sidebar .category:not(.has-children) {
  padding: 16px;
}

.sidebar .category .active {
  display: inline-block;
  color: #fff;
  background: #33245e;
  padding: 14px 20px;
  border-radius: 10px;
}

.sidebar .category .non-clickable {
  pointer-events: none;
}

.sidebar .siderbar-body > .category:last-child {
  margin-bottom: 0;
}

.sidebar .category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
}

.sidebar .category-arrow {
  background: url("../img/category-arrow.png") center/contain no-repeat;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  top: 0;
  left: 0;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.sidebar .category {
  color: #130a31;
  font-size: 16px;
}

.sidebar .category a:hover {
  text-decoration: underline;
}

.sidebar .category.has-children.open > .category-row .category-arrow {
  transform: rotate(180deg);
}

.sidebar .subcategories {
  display: none;
  margin-left: 20px;
}

.sidebar .category.open > .subcategories {
  display: block;
}

.sidebar__mobile {
  display: none;
}

.catalog__header {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  justify-content: space-between;
  padding: 14px 0;
  border-right: 1px solid var(--Gray-main, #f3f3f3);
  border-bottom: 1px solid var(--Gray-main, #f3f3f3);
}

.catalog__titles {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
}

.catalog__title {
  font-size: 16px;
  font-family: Benzin;
  color: #130a31;
  line-height: 180%;
}

.catalog__desc {
  font-size: 14px;
  line-height: 114%;
}

.catalog__elems {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.catalog__elems-btn {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  outline: none;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  border-radius: 8px;
}

.catalog__elems-btn svg path {
  transition: 0.2s ease-in-out;
}

.catalog__elems-btn:hover {
  background: #a964f4;
}

.catalog__elems-btn:hover svg path {
  stroke: #ffffff;
}

.catalog__wp {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 47px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #009951;
  color: #ffffff;
  transition: 0.2s ease-in-out;
}

.catalog__wp:hover {
  background: #016436;
}

.catalog__biglink {
  width: calc(100% - 24px);
  display: flex;
  justify-content: center;
  padding: 16px;
  border-radius: 8px;
  background: #f3f3f3;
  margin-left: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  transition: 0.2s ease-in-out;
}

.catalog__biglink:hover {
  background: #33245e;
  color: #ffffff;
}

.catalog__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  padding-top: 24px;
  padding-left: 24px;
}

.catalog__item {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #f3f3f3;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.catalog__item:hover .catalog__item-list {
  opacity: 1;
}

.catalog__item-header {
  height: 100%;
  padding: 16px 24px 12px 24px;
  border-bottom: 1px solid #f3f3f3;
}

.catalog__item-title {
  font-family: Benzin;
  font-size: 16px;
  margin-bottom: 4px;
}

.catalog__item-title img,
.catalog__item-title svg {
  display: none;
}

.catalog__item-text {
  line-height: 115%;
}

.catalog__item-img {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 170px;
}

.catalog__item-img img {
  max-height: 100%;
}

.catalog__item-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #ffffff;
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.catalog__item-list li a {
  display: flex;
  padding: 15px 16px;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.catalog__item-list li a:hover {
  background: #33245e;
  color: #ffffff;
}

.share__block {
  position: relative;
}

.share__block-btn {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  outline: none;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  border-radius: 8px;
}

.share__block-btn svg path {
  transition: 0.2s ease-in-out;
}

.share__block-btn:hover {
  background: #a964f4;
}

.share__block-btn:hover svg path {
  stroke: #ffffff;
}

.share__block-btn span {
  display: none;
}

.share__block-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  display: none;
  right: 0;
  top: 100%;
  z-index: 3;
  width: 300px;
  row-gap: 4px;
  background: #ffffff;
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05),
    0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
}

.share__block-menu.active {
  display: flex;
}

.share__block-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.share__block-menu a:hover {
  background: #f3f3f3;
}

.share__block-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  transition: 0.2s ease-in-out;
}

.share__block-menu button:hover {
  background: #f3f3f3;
}

.filter__catalog {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

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

.filter__remove {
  padding: 10px;
  border-radius: 8px;
  background: #33245e;
  color: #ffffff;
  transition: 0.2s ease-in-out;
  border: none;
  outline: none;
  cursor: pointer;
}

.filter__remove:hover {
  background: #130a31;
}

.filter__more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 35px;
  border-radius: 8px;
  background: #33245e;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s ease-in-out;
}

.filter__more:hover {
  background: #130a31;
}

.filter__more svg {
  transition: 0.2s ease-in-out;
}

.filter__more.active svg {
  transform: rotate(180deg);
}

.filter-block-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.filter-block-item.hidden {
  display: none;
}

.filter-block-col {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.filter-block-col.active input {
  color: #130a31;
  border-color: #130a31;
}

.filter-block-col input {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #a4a4a4;
  color: #a4a4a4;
  width: 100%;
}

.filter-block-radios {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 2;
  border-radius: var(--borderRadiusLG, 8px);
  border: 1px solid var(--White, #fff);
  background: var(--White, #fff);
  box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05),
    0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  padding: 4px;
  display: none;
}

.filter-block-radios-list {
  max-height: 224px;
  overflow: auto;
}

.filter-block-radios-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.filter-block-radios-list label:hover {
  background: rgba(0, 0, 0, 0.04);
}

.filter-block-radios-list label input {
  display: none;
}

.filter-block-radios-list label input:checked + div svg path:nth-child(1) {
  stroke: #33245e;
}

.filter-block-radios-list label input:checked + div svg path:nth-child(2) {
  opacity: 1;
}

.filter-block-radios-list label div {
  display: flex;
}

.filter-block-radios-list label div svg path {
  transition: 0.2s ease-in-out;
}

.filter-block-radios-list label div svg path:nth-child(1) {
  stroke: #a4a4a4;
}

.filter-block-radios-list label div svg path:nth-child(2) {
  opacity: 0;
}

.filter-block-radio-submit {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.filter-block-radio-submit button {
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  cursor: pointer;
}

.filter-block-radio-submit button:nth-child(1) {
  background: #33245e;
  color: #ffffff;
  transition: 0.2s ease-in-out;
}

.filter-block-radio-submit button:nth-child(1):hover {
  background: #130a31;
}

.filter-block-radio-submit button:nth-child(2) {
  background: #f3f3f3;
}

.product-table {
  font-size: 16px;
}

.product-table__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-table__row--head {
  background: #f3f3f3;
  padding: 8px 24px;
  padding-right: 0;
}

.product-table__col {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 8px 24px;
  padding-right: 0;
  border-bottom: 1px solid rgba(51, 36, 94, 0.2);
}

.product-table__cell {
  display: flex;
}

.product-table__cell--name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 2;
  min-width: 200px;
  flex-direction: column;
  gap: 6px;
}

.product-table__cell--name a {
  font-weight: 700;
  /* font-size: 16px; */
}

.product-table__cell--dynamic {
  flex: 1;
}

.product-table__cell--action {
  flex: 0 0 140px;
  justify-content: center;
}

.product-table__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a964f4;
  font-weight: 700;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}

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

.product-table__toggle svg {
  transition: 0.2s ease-in-out;
}

.product-table__toggle.active svg {
  transform: rotate(180deg);
}

.product-table__toggle.active span:nth-child(1) {
  display: none;
}

.product-table__toggle.active span:nth-child(2) {
  display: block;
}

.product-table__btn {
  padding: 15px 5px;
  width: 100%;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #f3f3f3;
  transition: 0.2s ease-in-out;
}

.product-table__btn.active {
  pointer-events: none;
}

.product-table__btn.hidden {
  display: none;
}

.product-table__btn:hover {
  background: #33245e;
  color: #ffffff;
}

.product-table__counters {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}

.product-table__counters.active {
  display: flex;
}

.product-table__counters button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f3f3f3;
  border: none;
  outline: none;
  cursor: pointer;
}

.product-table__counters button svg {
  transition: 0.2s ease-in-out;
}

.product-table__counters button:hover svg {
  transform: scale(1.4);
}

.product-table__counters span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #33245e;
  color: #ffffff;
}

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

.product-specs--hidden {
  display: none;
}

.product-specs__image {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f3f3f3;
}

.product-specs__image img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-specs__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-specs__info table {
  border: none;
}

.product-specs__info table tr td {
  border: none;
  width: 50%;
  padding: 5px 0;
}

.product-specs__info table tr td:nth-child(1) {
    color: #a4a4a4;
}

.product-specs__item {
  display: flex;
  align-items: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px 24px;
  align-content: start;
}

.product-specs__item strong {
  font-weight: 400;
  color: #a4a4a4;
}

.product__container {
  gap: 24px;
}

.product__header {
  border: none;
  padding: 0;
  margin-bottom: 24px;
}

.product__header .catalog__titles {
  padding-left: 0;
}

.product__title {
  font-size: 20px;
}

.product__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 300px;
  grid-template-columns: 1fr 300px;
  grid-gap: 24px;
  margin-bottom: 24px;
}

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

.product__image-item {
  width: 100%;
  height: 320px;
  border: 1px solid #33245e;
}

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

.product__image-desc {
  font-size: 12px;
  color: #a4a4a4;
}

.product__elems {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
}

.product__elems-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 16px;
  border-radius: 8px;
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
}

.product__elems-btn.wp {
  background: #009951;
  transition: 0.2s ease-in-out;
}

.product__elems-btn.wp:hover {
  background: #016436;
}

.product__elems-btn.buy {
  background: #33245e;
  transition: 0.2s ease-in-out;
  padding: 0px 16px;
}

.product__elems-btn.buy:hover {
  background: #130a31;
}

.product__elems span {
  padding: 15px 16px;
}
button.product__elems-btn.buy.js-buy.active {
    padding: 15px;
}
.product__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.product__tab {
  padding: 15px 24px;
  border-radius: 8px;
  background: #f3f3f3;
  transition: 0.2s ease-in-out;
}

.product__tab:hover {
  background: #33245e;
  color: #ffffff;
}

.product__tab.active {
  background: #33245e;
  color: #ffffff;
}

.product__content-title {
  font-family: Benzin;
  font-size: 16px;
}

.product__content-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr;
  grid-template-columns: 200px 1fr;
  align-items: center;
  grid-gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid rgba(51, 36, 94, 0.2);
  border-bottom: 1px solid rgba(51, 36, 94, 0.2);
}

.product__content-row:nth-child(odd) {
  background: rgba(51, 36, 94, 0.05);
}

.product__content-row a {
  padding: 8px;
  background: #33245e;
  color: #ffffff;
  border-radius: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: 0.2s ease-in-out;
}
.product__content-row a span{
  color: #ffffff !important;
}
.product__content-row a:hover {
  background: #130a31;
}

.product__content-text {
  line-height: 150%;
}

.product__content-item {
  display: none;
}

.product__content-item.active {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.product__recomend {
  margin-top: 64px;
}

.basket__container {
  padding-bottom: 100px;
}

.basket__file {
  display: inline-flex;
  align-items: center;
  padding: 15px 16px;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #33245e;
  margin-bottom: 16px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.basket__file:hover {
  border-color: #a964f4;
}

.basket__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 410px;
  grid-template-columns: 1fr 410px;
  grid-gap: 24px;
}

.basket__items {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.basket__item {
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  border-bottom: 1px solid #f3f3f3;
}

.basket__item:nth-child(1) {
  border-top: 1px solid #f3f3f3;
}

.basket__item-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-right: auto;
}

.basket__item-desc {
  color: #a4a4a4;
}

.basket__item-counters {
  display: flex;
  align-items: center;
  margin-left: 10px;
  margin-right: 4px;
}

.basket__item-counters span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #33245e;
  color: #ffffff;
}

.basket__item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #f3f3f3;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.basket__item-btn:hover {
  background: #a4a4a4;
}

.basket__item-btn:nth-child(1) {
  border-radius: 8px 0px 0px 8px;
}

.basket__item-btn:nth-child(3) {
  border-radius: 0px 8px 8px 0px;
}

.basket__item-size {
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: 48px;*/
  height: 48px;
  flex-shrink: 0;
  margin-right: 24px;
  border-radius: 8px;
  border: 1px solid #a4a4a4;
  text-align: center;
  text-align-last: center;
}

.basket__item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #f3f3f3;
  border-radius: 8px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.basket__item-remove:hover {
  background: #a4a4a4;
}

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

.basket__selected {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #33245e;
  border-radius: 8px;
  color: #ffffff;
  margin-bottom: 24px;
}

.basket__selected label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.basket__selected label input:checked + svg path:nth-child(2) {
  opacity: 1;
}

.basket__selected label svg path:nth-child(2) {
  opacity: 0;
}

.basket__selected label a {
  text-decoration: underline;
}

.basket__selected-title {
  font-family: Benzin;
  font-size: 24px;
}

.basket__selected-counter {
  margin-bottom: 24px;
}

.basket__selected-btn {
  padding: 15px;
  width: 100%;
  background: #a964f4;
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: 0.2s ease-in-out;
}

.basket__selected-btn:hover {
  background: #130a31;
}

.basket__conditions {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.basket__condition {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.basket__condition-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #f3f3f3;
}

.basket__condition-img img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

.basket__condition-col {
  display: flex;
  flex-direction: column;
}

.basket__condition-title {
  padding: 14px 0;
  font-size: 18px;
}

.basket__condition-text {
  color: #a4a4a4;
  line-height: 130%;
}

.contact__container {
  padding-bottom: 100px;
}

.contact__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr 410px;
  grid-template-columns: 300px 1fr 410px;
  grid-gap: 24px;
}

.contact__left {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.contact__left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.contact__left-col a,
.contact__left-col div {
  font-size: 20px;
}

.contact__left-col a {
  transition: 0.2s ease-in-out;
}

.contact__left-col a:hover {
  color: #a964f4;
}

.contact__props {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  background: #33245e;
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.contact__props:hover {
  background: #130a31;
}

.contact__center {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.contact__center iframe {
  width: 100%;
  height: 100%;
}

.contact__form {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
  background: #f3f3f3;
}

.contact__form-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-family: Benzin;
}

.contact__form-col {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 16px;
}

.contact__form-col input,
.contact__form-col textarea {
  padding: 9px 16px;
  border-radius: 4px;
  border: 1px solid #a4a4a4;
  outline: none;
  background: transparent;
}

.contact__form-col textarea {
  height: 125px;
  resize: none;
}

.contact__form-file {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  color: #a4a4a4;
  border: 1px solid #a4a4a4;
  border-radius: 4px;
  cursor: pointer;
}

.contact__form-file input {
  display: none;
}

.contact__form-submit {
  display: block;
  width: 100%;
  border-radius: 8px;
  padding: 15px;
  background: #33245e;
  color: #ffffff;
  transition: 0.2s ease-in-out;
  margin-bottom: 16px;
}

.contact__form-submit:hover {
  background: #130a31;
}

.contact__form-confirm {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact__form-confirm input {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}

.contact__form-confirm input:checked + svg path:nth-child(2) {
  opacity: 1;
}

.contact__form-confirm svg path:nth-child(2) {
  opacity: 0;
}

.contact__form-confirm a {
  text-decoration: underline;
}

.services__container {
  padding-bottom: 100px;
}

.services__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}

.services__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  transition: .2s ease-in-out;
}

.services__item:hover {
  border-color: #130a31;
}

.services__item-title {
  font-family: Benzin;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.services__item-text {
  margin-bottom: 16px;
}

.services__item-link {
  display: inline-flex;
  padding: 10px 24px;
  color: #ffffff;
  background: #33245e;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.services__item-link:hover {
  background: #130a31;
}

.service {
  background: #f3f3f3;
  overflow: hidden;
}

.service__container {
  position: relative;
  padding: 70px 0;
  z-index: 2;
}

.service__container img {
  position: absolute;
  right: 0;
  top: 30%;
  z-index: -1;
}

.service__preview-title {
  max-width: 800px;
  font-size: 32px;
  color: #33245e;
}

.service__preview-text {
  margin-bottom: 24px;
  line-height: 120%;
  font-size: 20px;
  max-width: 600px;
}

.service__preview-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #33245e;
  border-radius: 8px;
  padding: 10px 24px;
  color: #ffffff;
  transition: 0.2s ease-in-out;
}

.service__preview-btn:hover {
  background: #130a31;
}

.calc__container {
  padding-bottom: 100px;
}

.calc__block {
  border-radius: 8px;
  padding: 24px;
  background: #f3f3f3;
}

.calc__fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 400px;
  grid-template-columns: 1fr 1fr 400px;
  grid-gap: 24px;
}

.calc__selectors {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.calc__selectors select {
  padding: 8px 16px;
  background: transparent;
  border-radius: 4px;
  border: 1px solid #a4a4a4;
  height: 36px;
}

.calc__fields-col {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.calc__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.calc__inputs input {
  padding: 8px 16px;
  background: transparent;
  border-radius: 4px;
  border: 1px solid #a4a4a4;
  height: 36px;
}

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

.calc__types-row {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.calc__types-row.active .calc__types-img {
  border-color: #33245e;
}

.calc__types-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid #a4a4a4;
  background: #f3f3f3;
}

.calc__weight {
  width: 394px;
  text-align: center;
  padding: 15px;
  background: #33245e;
  color: #ffffff;
  transition: 0.2s ease-in-out;
  margin-top: 24px;
  border-radius: 8px;
}

.calc__weight:hover {
  background: #130a31;
}

.wrap_calculator_results {
  margin-top: 24px;
}

.wrap_table_calculator {
  overflow: auto;
}

.wrap_table_calculator table {
  width: 100%;
  min-width: 992px;
}

.wrap_table_calculator table th {
  text-align: left;
}

.wrap_table_calculator table th,
.wrap_table_calculator table td {
  padding: 5px;
}

.results-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.results-btns a,
.results-btns button {
  padding: 15px;
  color: #ffffff;
  cursor: pointer;
  background: #33245e;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.results-btns a:hover,
.results-btns button:hover {
  background: #130a31;
}

.blog__container {
  padding-bottom: 100px;
}

.blog__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}

.blog__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  transition: 0.2s ease-in-out;
  min-height: 170px;
}

.blog__item svg rect {
  transition: 0.2s ease-in-out;
}

.blog__item:hover svg rect {
  fill: #a964f4;
}

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

.blog__item-header svg {
  flex-shrink: 0;
}

.blog__item-title {
  font-size: 16px;
  font-weight: 700;
}

.blog__item-text {
  margin-bottom: 16px;
}

.blog__item-img {
  width: 100%;
  height: 150px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 8px;
}

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

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.pagination li.active a {
  background: #eee8ff;
}

.pagination li.disable {
  opacity: 0.5;
  pointer-events: none;
}

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

.pagination li a:hover {
  background: #eee8ff;
}

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

.info__title div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(151, 71, 255, 0.1);
}

.info__title div img {
  width: 32px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.info__block {
  border-radius: 16px;
  background: #f3f3f3;
  padding: 24px 16px;
  font-size: 16px;
}

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

.info__block ul li {
  list-style-type: none;
  font-weight: 700;
}

.gost__container {
  padding-bottom: 100px;
}

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

.gost__form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gost__form label {
  width: 560px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--Gray, #a4a4a4);
}

.gost__form label input {
  width: 100%;
  border: none;
  outline: none;
}

.gost__form label input::-moz-placeholder {
  color: #a4a4a4;
}

.gost__form label input:-ms-input-placeholder {
  color: #a4a4a4;
}

.gost__form label input::placeholder {
  color: #a4a4a4;
}

.gost__submit {
  height: 52px;
  padding: 10px 24px;
  color: #ffffff;
  background: #a964f4;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.gost__submit:hover {
  background: #130a31;
}

.gost__net {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gost__net-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.gost__net-btn.active {
  border: 1px solid #33245e;
}

.gost__items {
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
}

.gost__items.board {
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
}

.gost__items.board .gost__item-title {
  margin-bottom: 16px;
}

.gost__items.board .gost__item-text {
  margin-bottom: 16px;
}

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

.gost__items.column .gost__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.gost__items.column .gost__item-title {
  margin-bottom: 16px;
}

.gost__item {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
}

.gost__items.column .gost__item {
  flex-direction: row;
}

.gost__item-title {
  font-size: 16px;
  font-weight: 700;
}

.gost__item-elems {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 16px;
}

.gost__item-btn {
  padding: 10px 24px;
  border-radius: 8px;
}

.gost__item-view {
  background: #33245e;
  color: #ffffff;
  width: 100%;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.gost__item-view:hover {
  background: #130a31;
}

.gost__item-load {
  background: #f3f3f3;
  transition: 0.2s ease-in-out;
}

.gost__item-load:hover {
  background: #a4a4a4;
}

.text__container {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 170%;
}

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

  .hero__text {
    max-width: 500px;
  }

  .hero__text-item {
    font-size: 24px;
  }

  .package__item-title {
    font-size: 20px;
  }

  .calc__weight {
    width: 356px;
  }
}

@media (max-width: 1240px) {
  .benefits__items {
    grid-template-columns: repeat(3,1fr);
  }
  .container {
    max-width: 992px;
  }

  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: #33245e;
    margin-left: 8px;
  }

  .burger svg {
    pointer-events: none;
  }

  .burger svg:nth-child(2) {
    display: none;
  }

  .burger.active svg:nth-child(1) {
    display: none;
  }

  .burger.active svg:nth-child(2) {
    display: block;
  }

  .header__container {
    position: relative;
    z-index: 2;
    padding: 14px 0;
  }

  .header__logo {
    position: relative;
    z-index: 2;
    width: 66px;
    margin-right: auto;
  }

  .header__top {
    display: none;
  }

  .header__socials {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: #33245e;
    border-radius: 8px;
    row-gap: 10px;
  }

  .header__feedback {
    background: #a964f4;
  }

  .header__bot {
    padding-top: 0;
    justify-content: flex-end;
  }

  .header__bot .header__nav {
    display: none;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 16px;
    margin-bottom: 16px;
  }

  .header__nav-link {
    padding: 10px 0;
    font-size: 16px;
  }

  .header__search {
    width: 100%;
  }

  .header__search label {
    background: #f3f3f3;
    height: 36px;
    border-radius: 8px;
    padding: 0 16px;
  }

  .header__search label input {
    background: transparent;
    width: 100%;
  }

  .header__city-active {
    font-size: 0;
    gap: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
  }

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

  .footer__container {
    padding-top: 56px;
  }

  .hero__arrow {
    display: none;
  }

  .benefits__container {
    padding-top: 50px;
  }

  .benefits__items {
    grid-gap: 16px;
  }

  .package__item-title {
    font-size: 16px;
  }

  .faq__container {
    padding: 50px 0;
  }

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

  .feedback {
    padding: 50px 0;
  }

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

  .feedback__image {
    display: none;
  }

  .feedback__block {
    padding: 0;
  }

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

  .catalog__titles {
    padding-left: 15px;
  }

  .catalog__biglink {
    margin-left: 15px;
    width: calc(100% - 15px);
  }

  .catalog__items {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
    padding-left: 15px;
    padding-top: 15px;
  }

  .filter__catalog {
    padding-left: 15px;
  }

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

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

  .basket__selected {
    padding: 24px 16px;
  }

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

  .contact__center {
    height: 350px;
  }

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

  .services__item-title {
    font-size: 20px;
  }

  .calc__weight {
    width: 232px;
  }

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

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

@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: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .content {
    padding: 25px 0;
  }

  .title {
    margin-bottom: 16px;
  }

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

  .footer__left {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

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

  .footer__block {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

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

  .footer__copy {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .footer__bot-right {
    align-items: flex-start;
  }

  .breadcrumbs__container {
    padding: 24px 0;
  }

  .classic__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

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

  .work__item {
    background: #f3f3f3;
    border: none;
  }

  .work__item.active {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .work__item-img {
    display: none !important;
  }

  .work__item-text {
    display: block !important;
  }

  .work__item-link {
    display: none !important;
  }

  .page__container {
    -ms-grid-columns: 250px 1fr;
    grid-template-columns: 250px 1fr;
  }

  .product-table__cell--dynamic {
    display: none;
  }

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

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

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

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

  .service__container {
    padding-top: 24px;
    padding-bottom: 0;
  }

  .service__container img {
    position: static;
    margin-top: 10px;
  }

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

  .service__preview-text {
    font-size: 18px;
  }

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

  .calc__types-img {
    width: 40px;
    height: 40px;
  }

  .calc__types-img svg {
    width: 20px;
    height: 20px;
  }

  .gost__form {
    width: 100%;
  }

  .gost__form label {
    width: 100%;
  }

  .gost__net {
    display: none;
  }

  .gost__items.board {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .work__item-link.desktop {
    display: flex !important;
    text-align: center;
    margin-top: 20px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .benefits__items {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }

  .package__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 8px;
  }

  .package__item {
    padding: 16px;
    align-items: flex-end;
  }

  .package__item-link {
    font-size: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .package__item-link svg {
    display: block;
  }

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

  .faq__socials a:nth-child(3) {
    background: #ffffff;
    color: #33245e;
  }

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

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

@media (max-width: 576px) {
  .best__items {
    overflow: unset;
  }

  .best__item {
    position: relative;
  }

  .best__item-title {
    position: relative;
    z-index: 1;
    color: #ffffff;
  }

  .best__item-arrow {
    position: relative;
    z-index: 1;
  }

  .best__item-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
    margin-bottom: 0;
  }

  .best__item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .best__item-img::before {
    position: absolute;
    content: "";
    background: linear-gradient(
      0deg,
      rgba(19, 10, 49, 0.8) 0%,
      rgba(19, 10, 49, 0.8) 100%
    );
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

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

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

  .sidebar {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    /* height: calc(100% - 84px); */
    display: flex;
    flex-direction: column;
  }

  .sidebar__title {
    display: none;
  }

  .sidebar .siderbar-body {
    height: 100%;
    overflow: auto;
  }

  .sidebar__mobile {
    display: flex;
    width: 100%;
    background: #130a31;
    padding: 12px 16px;
  }

  .sidebar__mobile.active {
    background: #f3f3f3;
  }

  .sidebar__mobile-open {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 100%;
    right: 16px;
    background: #130a31;
    width: 40px;
    height: 40px;
    border-radius: 8px 8px 0px 0px;
  }

  .sidebar__mobile-open.active svg:nth-child(2) {
    display: block;
  }

  .sidebar__mobile-open.active svg:nth-child(1) {
    display: none;
  }

  .sidebar__mobile-open svg:nth-child(2) {
    display: none;
  }

  .sidebar__mobile-elems {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
  }

  .sidebar__mobile-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--White, #fff);
    background: transparent;
    font-family: Benzin;
    font-size: 16px;
    color: #ffffff;
    padding: 0 16px;
  }

  .sidebar__mobile-btn.active {
    border-radius: 8px;
    border: 1px solid var(--Main, #33245e);
    color: #33245e;
  }

  .sidebar__mobile-btn.active svg:nth-child(2) {
    display: block;
  }

  .sidebar__mobile-btn.active svg:nth-child(1) {
    display: none;
  }

  .sidebar__mobile-btn svg:nth-child(2) {
    display: none;
  }

  .sidebar__mobile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  .sidebar__mobile-link svg {
    width: 100%;
    height: 100%;
  }

  .catalog__header {
    border: 0;
  }

  .catalog__titles {
    padding-left: 0;
  }

  .catalog__wp {
    display: none;
  }

  .catalog__biglink {
    margin-left: 0;
    width: 100%;
  }

  .catalog__items {
    padding-left: 0;
    padding-top: 0;
    gap: 16px;
  }

  .catalog__item-header {
    display: flex;
    flex-direction: column;
    padding: 16px;
    max-height: 260px;
  }

  .catalog__item-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }

  .catalog__item-title img {
    width: 36px;
    height: 36px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .catalog__item-title svg {
    width: 36px;
    height: 36px;
    margin-left: auto;
    transition: 0.2s ease-in-out;
  }

  .catalog__item-title.active svg {
    transform: rotate(90deg);
  }

  .catalog__item-title img,
  .catalog__item-title svg {
    display: block;
    flex-shrink: 0;
  }

  .catalog__item-text {
    display: none;
  }

  .catalog__item-img {
    display: none;
  }

  .catalog__item-list {
    position: static;
    opacity: 1;
    padding: 0;
    display: none;
  }

  .catalog__item-list.active {
    display: flex;
  }

  .share__block-menu {
    right: unset;
    left: 0;
    width: 200px;
  }

  .filter__catalog {
    padding-left: 0;
    flex-direction: column;
    gap: 16px;
  }

  .filter__left {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px 8px;
  }

  .filter__more {
    width: 100%;
  }

  .product-table__row--head {
    display: none;
  }

  .product-table__col {
    padding-left: 0;
  }

  .product-table__cell--name {
    min-width: 150px;
  }

  .product-table__btn {
    padding: 8px 12px;
  }

  .product-table__counters button {
    width: 30px;
    height: 30px;
  }

  .product-table__counters span {
    width: 30px;
    height: 30px;
  }

  .product-specs__image {
    height: 150px;
  }

  .product__image-item {
    height: 180px;
  }

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

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

  .blog__item-title {
    color: #ffffff;
  }

  .blog__item-text {
    color: #ffffff;
  }

  .blog__item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .blog__item-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 10, 49, 0.8);
  }
}

@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) {
  .hero__images .swiper-slide img {
    padding-right: 0;
  }
  .hero__container {
    max-height: 550px;
    justify-content: flex-start;
    padding-top: 45px;
  }
  .modal-basket__title {
    font-size: 20px;
  }

  .basket__item {
    padding-left: 0;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .basket__item-col {
    width: 100%;
  }

  .basket__item-counters {
    margin-left: 0;
  }

  .basket__item-size {
    margin-right: auto;
  }
}
