.main {
  position: relative;
}

.main__bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
}

.main__bg img,
.main__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main__bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(12, 14, 16, 0.95)), to(rgba(12, 14, 16, 0.24)));
  background: linear-gradient(180deg, rgba(12, 14, 16, 0.95) 0%, rgba(12, 14, 16, 0.24) 100%);
  z-index: 1;
}

.main.hidden {
  overflow: hidden;
}

.main__wrapper {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 75px;
  padding-bottom: 75px;
}

.main__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.main__left-init {
  overflow: hidden;
}

.main__title {
  font-weight: 400;
  font-size: 54px;
  line-height: 110%;
  color: #fff;
}

.main__desc {
  margin: 18px 0 0;
  color: #fff;
}

.main__btns {
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 35px;
}

.main__btns a + a {
  margin-left: 20px;
}

.main__nav {
  margin-left: auto;
}

.main__prev, .main__next {
  width: 60px;
  height: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}

.main__next {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.main__right {
  width: 320px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 90px;
  min-width: 0;
}

.main__right-init {
  overflow: hidden;
}

.main__right-init .swiper-slide {
  height: 320px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px;
  overflow: hidden;
}

.main__right-init .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}

.header {
  position: relative;
  z-index: 30;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.header.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}

.header.sticky, .header.header-white {
  background-color: #fff;
}

.header.sticky .header__top-menu a,
.header.sticky .header__mail, .header.header-white .header__top-menu a,
.header.header-white .header__mail {
  color: #888888;
}

.header.sticky .header__address, .header.header-white .header__address {
  border-color: #E2E2E2;
  color: #000;
}

.header.sticky .header__address svg, .header.header-white .header__address svg {
  stroke: #000;
}

.header.sticky .header__tel svg, .header.header-white .header__tel svg {
  fill: #000;
}

.header.sticky .header__tel,
.header.sticky .header__menu-btns--service---btn,
.header.sticky .header__main-menu a, .header.header-white .header__tel,
.header.header-white .header__menu-btns--service---btn,
.header.header-white .header__main-menu a {
  color: #000;
}

.header.sticky .header__main, .header.header-white .header__main {
  border-color: #E9E9E9;
}

.header.sticky .header__menu-btns, .header.header-white .header__menu-btns {
  border-color: #E2E2E2;
}

.header.sticky .header__top, .header.header-white .header__top {
  padding: 5px 0;
}

.header.sticky .header__main, .header.header-white .header__main {
  padding: 10px 0;
}

.header.sticky .header__logo img, .header.header-white .header__logo img {
  -webkit-filter: none;
          filter: none;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__top {
  padding: 20px 0;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.header__top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 0;
  gap: 20px;
}

.header__top-menu a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.header__top-menu a:hover {
  color: #fff;
}

.header__mail {
  font-weight: 700;
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.header__mail:hover {
  color: rgba(255, 255, 255, 0.6);
}

.header__address {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.header__address svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 9px;
}

.header__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.header__tel svg {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 3px;
  fill: #fff;
}

.header__tel:hover {
  color: #fff;
}

.header__main {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header__logo img {
  width: 240px;
  height: auto;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.header__menu-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  display: flex;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 5px 0;
}

.header__menu-btns > div {
  height: 100%;
  position: relative;
  padding-bottom: 4px;
}

.header__menu-btns > div:hover .header__menu-hidden {
  opacity: 1;
  visibility: visible;
}

.header__menu-btns a {
  height: 100%;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.header__menu-btns--catalog---btn {
  background-color: var(--accent);
  padding: 0 20px 0 9px;
  border-radius: 2px;
}

.header__menu-btns--catalog---btn svg {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 18px;
}

.header__menu-btns--service {
  padding-left: 25px;
}

.header__menu-btns--service---btn {
  background: transparent;
  padding: 0;
  margin-right: 20px;
}

.header__main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  font-size: 0;
  list-style-type: none;
  gap: 24px;
}

.header__main-menu a {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
}

.header__main-menu a:hover {
  color: #fff;
  text-decoration: underline;
}

.header__contact-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.header__contact-btns a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 26px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  padding: 0 7px;
}

.header__contact-btns a svg {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}

.header__contact-btns--whats {
  background: #26C642;
}

.header__contact-btns--tg {
  background: #1098DC;
}

.header__menu-hidden {
  position: absolute;
  left: 0;
  top: 100%;
  font-size: 0;
  padding: 0;
  margin: 0;
  list-style-type: none;
  background: #FFFFFF;
  -webkit-box-shadow: 4px 4px 34px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 34px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 24px 28px;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  opacity: 0;
  visibility: hidden;
	display: grid;
	gap: 10px 30px;
	grid-template-columns: repeat(2,1fr);
}



.header__menu-hidden a {
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.header__menu-hidden a::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 2.625L9.625 7L5.25 11.375' stroke='%232030F8' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.header__menu-hidden a:hover {
  color: var(--accent);
}

.header__menu-hidden a:hover::before {
  opacity: 1;
  visibility: visible;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  background-color: #E22828;
  padding: 0 35px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.btn:hover {
  opacity: 0.9;
  color: #fff;
}

.btn-transparent {
  background-color: transparent;
  border: 1px solid #fff;
}

.btn-transparent:hover {
  background-color: #fff;
  color: #000;
}

.btn-48 {
  height: 48px;
}

.btn-60 {
  height: 60px;
}

.sale {
  margin-top: 110px;
}

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

.sale__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  min-height: 210px;
  background: #F5F5F5;
  border-radius: 6px;
  overflow: hidden;
}

.sale__item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sale__item-date {
  font-size: 12px;
  color: #BAB8B8;
}

.sale__item-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  color: #000;
  margin-top: 11px;
  margin-bottom: 15px;
}

.sale__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}

.sale__item-price span {
  margin-left: 1px;
  width: 35px;
  height: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #E22828;
  border-radius: 6px;
}

.sale__item-price span svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
}

.sale__item-price--value {
  background: #E22828;
  border-radius: 6px;
  height: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  padding: 0 15px;
}

.sale__item-image {
  width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-mask-image: url("../images/mask-item.svg");
          mask-image: url("../images/mask-item.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: 0 50%;
          mask-position: 0 50%;
  height: 100%;
  position: relative;
}

.sale__item-image::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

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

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

.services__item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 25px 20px 20px;
  text-decoration: none;
  min-height: 190px;
}

.services__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(284.77deg, rgba(20, 24, 28, 0) 7.43%, rgba(14, 17, 20, 0.9) 89.37%);
  z-index: 1;
}

.services__item > img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.services__item > div {
  position: relative;
  z-index: 3;
}

.services__item:hover > img {
  transform: scale(1.15) translate(-50%, -50%);
}

.services__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: #fff;
  margin-bottom: 20px;
}

.services__item-detail {
  position: relative;
  padding-left: 47px;
  min-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services__item-detail--icon {
  position: absolute;
  width: 35px;
  height: 35px;
  background: #FFFFFF;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.services__item-detail--icon svg {
  width: 17px;
  height: 17px;
  stroke: #000;
}

.services__item-detail--price {
  font-size: 17px;
  line-height: 1;
  color: #fff;
}

.services__item-detail--desc {
  font-size: 12px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.services .services__wrapper {
  margin-top: 35px;
}

.services__bottom {
  display: none;
}

.services__bottom .btn {
  border: 0;
}

.s-title {
  font-size: 40px;
  line-height: 110%;
  font-weight: 400;
  margin: 0;
}

.s-title.s-title--mb {
  margin-bottom: 25px;
}

.s-desc {
  margin: 10px 0 0;
  color: #BDBDBD;
}

.mt100 {
  margin-top: 100px;
}

.appointment__wrapper {
  position: relative;
  margin-top: 35px;
}

.appointment__init {
  overflow: hidden;
}

.appointment__item {
  height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 20px 60px 20px 20px;
  position: relative;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.appointment__item > img {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 54px;
  height: 54px;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.appointment__item:hover {
  background-color: var(--accent);
}

.appointment__item:hover > img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.appointment__item:hover .appointment__item-title,
.appointment__item:hover .appointment__item-price {
  color: #fff;
}

.appointment__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  color: #000000;
}

.appointment__item-price {
  font-size: 14px;
  color: var(--accent);
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

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

.advantages .advantages__item:nth-child(1),
.advantages .advantages__item:nth-child(6) {
  grid-column: span 2;
}

.advantages .advantages__item:nth-child(1) .advantages__title,
.advantages .advantages__item:nth-child(6) .advantages__title {
  color: #fff;
}

.advantages .advantages__item:nth-child(3),
.advantages .advantages__item:nth-child(4) {
  background-color: transparent;
}

.advantages__item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #F5F5F5;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 210px;
}

.advantages__item-bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.advantages__item-bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 24, 28, 0)), to(rgba(20, 24, 28, 0.5)));
  background: linear-gradient(180deg, rgba(20, 24, 28, 0) 0%, rgba(20, 24, 28, 0.5) 100%);
  z-index: 1;
}

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

.advantages__icon {
  position: relative;
  z-index: 5;
  width: 60px;
  height: 60px;
  margin-left: -5px;
}

.advantages__icon img {
  max-width: 100%;
  max-height: 100%;
}

.advantages__title {
  position: relative;
  z-index: 5;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  color: #000000;
}

.catalog__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.catalog__item {
  background: #F5F5F5;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  text-decoration: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 135px;
  padding: 22px 160px 22px 30px;
}

.catalog__item > img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}

.catalog__item-count {
  font-size: 17px;
  color: var(--accent);
}

.catalog__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  color: #000;
  margin-top: 17px;
}

.prev,
.next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background: #F1F1F1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}

.prev {
  left: -60px;
}

.next {
  right: -60px;
}

.projects__wrapper {
  position: relative;
}

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

.projects__slider {
  margin-top: 30px;
  overflow: hidden;
}

.projects__item {
  position: relative;
  height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 40px 80px 40px;
  text-decoration: none;
  outline: none;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
}

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

.projects__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(18.01%, rgba(20, 24, 28, 0)), color-stop(74.22%, rgba(20, 24, 28, 0.72)));
  background: linear-gradient(180deg, rgba(20, 24, 28, 0) 18.01%, rgba(20, 24, 28, 0.72) 74.22%);
  z-index: 2;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.projects__item:hover {
  color: #fff;
}

.projects__item:hover::before {
  top: 50%;
}

.projects__item-content {
  position: relative;
  z-index: 3;
}

.projects__item-icon {
  width: 60px;
  height: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--accent);
  z-index: 3;
  position: absolute;
  left: 0;
  bottom: 0;
}

.projects__item-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.projects__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
}

.projects__item-desc {
  font-size: 14px;
  line-height: 120%;
  margin-top: 9px;
}

.projects__bottom {
  display: none;
  justify-content: center;
  padding-top: 30px;
}

.top__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.top__title-btn {
  white-space: nowrap;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  padding: 0 30px;
  border: 1px solid var(--accent);
  height: 48px;
}

.top__title-btn:hover {
  background-color: var(--accent);
  color: #fff;
}

.form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* overflow: hidden; */
  background: #F5F5F5;
  border-radius: 6px;
  position: relative;
  padding: 55px 0 70px 70px;
}

.form__description {
  content: attr(data-text);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
  height: 210px;
  padding: 20px 20px 20px 100px;
  background-color: var(--accent);
  font-size: 14px;
  color: #fff;
}

.form__description p {
  margin-bottom: 0;
}

.form__left {
  width: 705px;
  margin-right: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.form__title {
  font-size: 40px;
  line-height: 110%;
}

.form__title span {
  color: var(--accent);
}

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

.form__input input {
  border: none;
  background-color: transparent;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 0;
  width: 100%;
  padding-bottom: 11px;
  border-bottom: 1px solid #CECECE;
  height: 35px;
}

.form__input-title {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 8px;
}

.form__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.form__btns button {
  border: none;
  min-width: 240px;
}

.form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #9F9F9F;
}

.form__checkbox a {
  color: #9F9F9F;
}

.form__checkbox svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 9px;
}

.form__checkbox .error {
  width: 100%;
  font-weight: 400;
}

.form-checkbox {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 9px;
  border-radius: 50%;
  overflow: hidden;
}

.form-checkbox + span {
  max-width: calc(100% - 33px);
}

.form-checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.form-checkbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" id="check"%3E%3Cpath d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z" stroke="black" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3C/svg%3E');
}

.form-checkbox:has(:checked)::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" id="check"%3E%3Cpath d="M16.125 9.75L10.625 15L7.875 12.375" stroke="black" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3Cpath d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z" stroke="black" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3C/svg%3E');
}

.form__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  z-index: 2;
  margin-bottom: -70px;
}

.form__right img {
  max-width: 295px;
  max-height: 100%;
}

.partners__wrapper {
  position: relative;
  margin-top: 30px;
}

.partners__slider {
  overflow: hidden;
  margin-top: -40px;
  padding: 40px;
  margin-left: -40px;
  width: calc(100% + 80px);
}

.partners .swiper-slide {
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  opacity: 0;
  visibility: hidden;
}

.partners .swiper-slide-visible {
  opacity: 1;
  visibility: visible;
}

.partners__item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFFFFF;
  -webkit-box-shadow: 4px 4px 54px rgba(0, 0, 0, 0.06);
          box-shadow: 4px 4px 54px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}

.partners__item-logo {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners__item-logo img {
  max-width: 100%;
  max-height: 100%;
}

.partners__item-title {
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.partners__item-desc {
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  color: #B8B8C9;
  margin-top: 5px;
}

.types__wrapper {
  margin-top: 35px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.types__item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  padding: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.types__item > div,
.types__item > ul,
.types__item a {
  position: relative;
  z-index: 3;
}

.types__item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(284.77deg, rgba(20, 24, 28, 0.29) 7.43%, rgba(20, 24, 28, 0.8) 89.37%);
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.types__item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(32, 48, 248, 0.8);
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  opacity: 0;
  visibility: hidden;
}

.types__item ul {
  padding: 0;
  margin: 50px 0 30px;
  list-style-type: none;
}

.types__item ul li + li {
  margin-top: 10px;
}

.types__item ul a {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.types__item ul a::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 3.75L13.75 10L7.5 16.25' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.types__item ul a:hover {
  text-decoration: underline;
}

.types__item .btn {
  margin-top: auto;
}

.types__item:hover::before {
  right: 100%;
}

.types__item:hover::after {
  opacity: 1;
  visibility: visible;
}

.types__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
}

.types__item-price {
  font-size: 17px;
  line-height: 120%;
  margin-top: 17px;
}

.footer {
  margin-top: 80px;
  padding-top: 75px;
  border-top: 1px solid #E6E6E6;
  padding-bottom: 30px;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__search {
  position: relative;
  font-size: 14px;
}

.footer__search svg {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 24px;
  height: 24px;
}

.footer__search input {
  width: 100%;
  background: #F5F5F5;
  border-radius: 6px;
  border: none;
  padding: 15px 10px 15px 44px;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 15px;
}

.footer__links a {
  height: 96px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  color: #9F9F9F;
  text-decoration: none;
  background: #F5F5F5;
  border-radius: 6px;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.footer__links a img {
  height: 20px;
  width: auto;
  max-width: 100%;
  margin-bottom: 17px;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.footer__links a:hover {
  background-color: var(--accent);
  color: #fff;
}

.footer__links a:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 35px;
}

.footer__item-title {
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 19px;
  color: var(--accent);
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0;
}

.footer ul a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  color: #000000;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  text-decoration: none;
}

.footer ul a:hover {
  color: var(--accent);
}

.footer ul a.all {
  color: #B6B6B6;
}

.footer ul li + li {
  margin-top: 12px;
}

.footer__contacts-item {
  position: relative;
  padding-left: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__contacts-item svg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
}

.footer__contacts-item + div {
  margin-top: 20px;
}

.footer__contacts-item a:hover:hover {
  color: var(--accent);
}

.footer__contacts-item--title {
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.24px;
  color: #000000;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.footer__contacts-item--desc {
  font-size: 12px;
  color: #9F9F9F;
  margin-top: 3px;
}

.footer__bottom {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 23px;
}

.footer__bottom a,
.footer__bottom span {
  color: #BEBEBE;
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__bottom span img {
  margin-left: 7px;
}

.mobile-menu {
  background-color: var(--accent);
  position: relative;
  z-index: 100;
  display: none;
}

.mobile-menu__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  height: 60px;
  padding: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.35);
}

.mobile-menu__btn {
  width: 30px;
  height: 22px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.mobile-menu__btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.mobile-menu__btn span:nth-child(1) {
  top: 0px;
}

.mobile-menu__btn span:nth-child(2),
.mobile-menu__btn span:nth-child(3) {
  top: 9px;
}

.mobile-menu__btn span:nth-child(4) {
  top: 18px;
}

.mobile-menu .open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.mobile-menu .open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-menu .open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mobile-menu .open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.mobile-menu__tel svg {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 7px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.mobile-menu__logo img {
  height: 20px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@media (max-width: 570px) {
  .mobile-menu__logo img {
    height: 25px;
  }
  .mobile-menu__top-center .mobile-menu__tel {
    font-size: 12px;
  }
  .mobile-menu__top-center .mobile-menu__tel::before {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
}

.mobile-menu__logo {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.mobile-menu__logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.2;
  margin-left: 10px;
}

.mobile-menu__logo-text span {
  font-size: 10px;
}

.mobile-menu__logo-text b {
  font-weight: 600;
  font-size: 12px;
}

@media (max-width: 520px) {
  .mobile-menu__logo-text span {
    font-size: 8px;
  }
  .mobile-menu__logo-text b {
    font-size: 10px;
  }
}

.mobile-menu__tel {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu__tel:hover {
  color: #fff;
}

.mobile-menu__top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.mobile-menu__top-link {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; */
  display: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 8px;
}

.mobile-menu__top-link svg {
  -webkit-filter: brightness(0) opacity(0.8);
          filter: brightness(0) opacity(0.8);
}

.mobile-menu__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  max-width: 85vw;
  height: calc(100vh - 60px);
  overflow: auto;
  width: 100%;
  background-color: var(--accent);
  padding: 20px 20px;
  z-index: 3;
  left: 0;
  right: auto;
  top: 100%;
  bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translate(-200%, 0);
  transform: translate(-200%, 0);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.33);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.33);
}

.mobile-menu__content ul {
  list-style-type: none;
  padding: 0;
}

/* .mobile-menu__navs {
  flex: auto;
} */

.mobile-menu__nav ul {
  margin: 0;
  padding: 0;
}

.mobile-menu__nav a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.mobile-menu__nav li + li {
  margin-top: 5px;
}

.mobile-menu__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.mobile-menu__info a {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.mobile-menu .opened {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-menu__bottom {
  margin-top: 20px;
}

.mobile-menu__bottom a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  opacity: 1;
}

body.hidd,
html.hidd {
  overflow: hidden;
}

body.hidd {
  padding-right: 5px;
}

body.hidd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.bread {
  margin: 15px 0;
}

.bread__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bread__wrapper span,
.bread__wrapper a {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #B7B7B7;
  text-decoration: none;
}

.bread__wrapper > * + *::before {
  content: '<';
  display: inline-block;
  margin: 0 6px;
}

.cat__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
}

.cat__side {
  width: 250px;
  margin-right: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cat__side .cat__menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 1rem;
  margin: 0;
  font-size: 14px;
  line-height: 1;
}

.cat__side .cat__menu-list a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cat__side .cat__menu-list a:hover {
  opacity: 0.7;
}

.cat__side .cat__menu-list .current-cat a {
  font-weight: 600;
}

.cat__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.cat__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  padding: 10px;
  text-decoration: none;
}

.product-card:hover .product-card__title {
  color: var(--accent);
}

.product-card__image {
  border-radius: 3px;
  overflow: hidden;
  height: 146px;
  margin-bottom: 18px;
}

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

.product-card__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 15px;
  text-decoration: none;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  padding: 0 12px;
}

.product-card__list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 20px;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 12px;
}

.product-card__list input {
  display: none;
}

.product-card__list input:checked + .product-card__list-label {
  color: var(--accent);
}

.product-card__list input:checked + .product-card__list-label::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' fill='%232030F8' stroke='%232030F8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.4375 8.125L8.85414 12.5L6.5625 10.3125' stroke='white' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.product-card__list-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #727272;
  padding-left: 26px;
  position: relative;
  cursor: pointer;
  min-height: 20px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.product-card__list-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='%23A5A6B1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.product-card__list-label::after {
  content: '';
  position: absolute;
  left: 26px;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: #E9E9E9;
}

.product-card__btn {
  margin-top: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
}

.product-card__btn span {
  height: 48px;
  width: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F5F5F5;
  border-radius: 6px;
}

.product-card__btn span svg {
  width: 22px;
  height: 22px;
  stroke: #000;
}

.loadmore {
  margin-top: 30px;
  cursor: pointer;
}

.populars__wrapper {
  margin-top: 25px;
  position: relative;
}

.populars__init {
  overflow: hidden;
}

.card {
  margin-top: 35px;
}

.card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.card__gallery {
  width: 500px;
  min-width: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}

.card__gallery-main a {
  outline: none;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 265px;
}

.card__gallery-main a img {
  max-width: 100%;
  height: auto;
}

.card__gallery-nav {
  min-width: 0;
  overflow: hidden;
  margin-top: 15px;
}

.card__gallery-nav .swiper-slide {
  height: 42px;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  padding: 3px;
  cursor: pointer;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.card__gallery-nav .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__gallery-nav .swiper-slide-thumb-active {
  border-color: #000;
}

.card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 11px;
}

.card__art {
  font-size: 12px;
  line-height: 120%;
  color: #888888;
  margin-bottom: 15px;
}

.card__table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  padding: 9px 0;
  border-top: 1px solid #E9E9E9;
}

.card__table-item.active .card__table-title,
.card__table-item.active .card__table-price {
  color: var(--accent);
}

.card__table-item.active .card__table-title::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' fill='%232030F8' stroke='%232030F8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.4375 8.125L8.85414 12.5L6.5625 10.3125' stroke='white' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.card__table-item:last-child {
  border-bottom: 1px solid #E9E9E9;
}

.card__table-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #727272;
  font-size: 14px;
}

.card__table-title::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z' stroke='%23A5A6B1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 6px;
}

.card__table-price {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 14px;
  color: #727272;
  font-weight: bold;
}

.card__table-btns {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card__table-counter {
  width: 100px;
  background: #F5F5F5;
  border-radius: 6px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.card__table-counter svg {
  width: 16px;
  height: 16px;
}

.card__table-counter--minus, .card__table-counter--plus {
  cursor: pointer;
}

.card__table-counter--value {
  width: 35px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #000;
  text-align: center;
}

.card__table-counter--value::after {
  content: " " attr(data-units);
  font-size: 12px;
}

.card__table-btn {
  height: 32px;
  margin-left: 8px;
}

.card__delivery {
  width: 190px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.card__delivery-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  margin-bottom: 23px;
}

.card__tabs {
  margin-top: 20px;
}

.card__city-item--title {
  font-weight: 500;
  font-size: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid #E9E9E9;
}

.card__city-item--price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
}

.card__city-item--price b {
  color: var(--accent);
}

.card__city-item--price span {
  color: #BBBDC3;
}

.card__city-item + div {
  margin-top: 15px;
}

.card__message {
  padding: 10px 15px;
  border: 1px solid #F82020;
  border-radius: 6px;
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  margin-top: 20px;
}

.content-data {
  display: none;
}

ul.tabs {
  margin: 0px;
  padding: 0px;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: block;
}

.data_more_less_inner {
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.action_less.read-more {
  display: none;
}

.less_active .action_less {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.less_active .action_less::before {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

.less_active .action_more {
  display: none;
}

.data_more_less:not(.less_active):not(.action_disabled) .data_more_less_inner:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  height: 80px;
}

.data_more_less.action_disabled .more_less_action {
  display: none;
}

.more_less_action {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--accent);
  font-size: 12px;
  text-decoration: none;
}

.more_less_action::before {
  content: '';
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.25 7.5L10 13.75L3.75 7.5' stroke='%232030F8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.detail {
  margin-top: 80px;
}

.detail ul.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  list-style-type: none;
}

.detail ul.tabs li {
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #A8A8A8;
  border-bottom: 1px solid #E9E9E9;
  padding-right: 50px;
  padding-bottom: 8px;
}

.detail ul.tabs li:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.detail ul.tabs li.current {
  color: #000;
  border-color: var(--accent);
}

.detail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.detail__gallery {
  width: 510px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 45px;
}

.detail__gallery a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  height: 300px;
  position: relative;
}

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

.detail__gallery-play {
  position: absolute;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFFFFF;
  border-radius: 6px;
}

.detail__gallery-play svg {
  width: 32px;
  height: 32px;
}

.detail__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.detail__content {
  margin-top: 20px;
  font-size: 16px;
}

.detail__content p:last-child {
  margin-bottom: 0;
}

.detail__params table {
  width: 100%;
}

.detail__params table tr:first-child td {
  padding-top: 0;
}

.detail__params table td {
  font-size: 12px;
  position: relative;
  padding: 11px 0;
}

.detail__params table td::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #E9E9E9;
}

.detail__params table td:first-child::before {
  left: 30px;
}

.detail__params table td:last-child {
  font-weight: bold;
  text-align: right;
}

.service-in {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  padding-bottom: 100px;
}

.service-in .bread {
  margin: 20px 0 0;
}

.service-in .main__title {
  margin-top: 45px;
}

.service-in__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.service-in__form {
  width: 370px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  padding-left: 60px;
  padding-top: 45px;
  margin-left: 60px;
}

.service-in__form::before {
  content: '';
  position: absolute;
  right: -50vw;
  left: 0;
  top: -50vh;
  bottom: -50vh;
  background-color: rgb(0 0 0 / 0.8);
  /* background: linear-gradient(228.18deg, rgba(0, 0, 0, 0.2) 44.6%, rgba(255, 255, 255, 0) 99.93%), rgba(0, 0, 0, 0.2); */
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.service-in__form > div {
  position: relative;
  z-index: 2;
}

.service-in__form-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  color: #FFFFFF;
}

.service-in__form-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

.service-in__form-fields {
  margin-top: 20px;
}

.service-in__form-input--title {
  font-size: 12px;
  color: #fff;
  margin-bottom: 6px;
}

.service-in__form-input input {
  border: none;
  background-color: transparent;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 0;
  width: 100%;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 35px;
}

.service-in__form-input + div {
  margin-top: 30px;
}

.service-in__form-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.service-in__form .btn {
  border: none;
}

.service-in__form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
}

.service-in__form-checkbox svg {
  width: 20px;
  height: 20px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
}

.service-in__form-checkbox a {
  color: rgba(255, 255, 255, 0.4);
}

.service-in__form-checkbox .error {
  width: 100%;
  font-weight: 400;
}

.service-in__form-checkbox:not(.sale-in .service-in__form-checkbox) .form-checkbox::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" id="check"%3E%3Cpath d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3C/svg%3E');
}

.service-in__form-checkbox:not(.sale-in .service-in__form-checkbox) .form-checkbox:has(:checked)::before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" id="check"%3E%3Cpath d="M16.125 9.75L10.625 15L7.875 12.375" stroke="white" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3Cpath d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3C/svg%3E');
}

.protection {
  border-bottom: 1px solid #E9E9E9;
  margin-top: 85px;
}

.protection__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 60px;
  margin-top: 25px;
}

.protection__list {
  margin: 25px 0 0;
  padding: 0;
  list-style-type: none;
}

.protection__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  line-height: 120%;
}

.protection__list-item + li {
  margin-top: 45px;
}

.protection__list-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #F5F5F5;
  border-radius: 6px;
  width: 28px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 19px;
}

.protection__list-icon img {
  position: absolute;
  width: 38px;
  left: -19px;
}

.protection__image {
  width: 355px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 50px -60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.protection__image img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.window {
  margin-top: 90px;
}

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

.window__item {
  position: relative;
  padding-bottom: 21px;
}

.window__item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 1px;
  background-color: var(--accent);
}

.window__item-image {
  height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: 50%;
  padding: 30px 25px 25px;
}

.window__item-image::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(284.77deg, rgba(20, 24, 28, 0.29) 7.43%, rgba(20, 24, 28, 0.8) 89.37%);
}

.window__item-image--text {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}

.window__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  color: #FFFFFF;
}

.window__item-price {
  font-size: 18px;
  line-height: 120%;
  margin-top: 10px;
  color: #fff;
}

.window .btn {
  margin-top: auto;
}

.window__item-desc {
  margin: 22px 25px 0;
  color: #959595;
  font-size: 14px;
}

.window-slider {
  display: none;
  overflow: hidden;
  margin-top: 30px;
}

.window-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}

.window-slider .swiper-pagination-bullet {
  opacity: 1;
  background: #E2E2E2;
}

.window-slider .swiper-pagination-bullet-active {
  background: var(--accent);
}

.price-table__wrapper {
  margin-top: 25px;
}

.price-table__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.price-table__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}

.price-table__list li b {
  display: contents;
}

.price-table__list li::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 22.75C18.3848 22.75 22.75 18.3848 22.75 13C22.75 7.61522 18.3848 3.25 13 3.25C7.61522 3.25 3.25 7.61522 3.25 13C3.25 18.3848 7.61522 22.75 13 22.75Z' fill='%232030F8' stroke='%232030F8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.4688 10.5625L11.5104 16.25L8.53125 13.4062' stroke='white' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 26px;
  height: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
}

.price-table__table {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.price-table__table table {
  width: 100%;
  border-collapse: inherit;
  margin-top: -11px;
  border-spacing: 11px;
  margin-left: -5px;
  width: calc(100% + 10px);
}

.price-table__table table tr:first-child td:not(:last-child)::after,
.price-table__table table tr:first-child th:not(:last-child)::after {
  top: 50%;
}

.price-table__table table tr:last-child th::after,
.price-table__table table tr:last-child td::after, .price-table__table table tr.tr-last th::after,
.price-table__table table tr.tr-last td::after {
  bottom: 50%;
}

.price-table__table table tr:nth-child(2n) td,
.price-table__table table tr:nth-child(2n) th {
  background-color: transparent;
}

.price-table__table table td,
.price-table__table table th {
  background: #F5F5F5;
}

.price-table__table table td,
.price-table__table table th {
  padding: 10px 10px 10px 15px;
  border-radius: 6px;
}

.price-table__table table td:not(:last-child),
.price-table__table table th:not(:last-child) {
  position: relative;
}

.price-table__table table td:not(:last-child)::after,
.price-table__table table th:not(:last-child)::after {
  content: '';
  width: 1px;
  background-color: #E9E9E9;
  position: absolute;
  right: -6px;
  top: -50%;
  bottom: -50%;
  margin: auto;
}

.price-table__table table th:first-child {
  font-size: 12px;
  color: #9898A5;
}

.price-table__table table th:not(:first-child) {
  background: #5461FF;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.price-table__table table th:nth-child(3) {
  background-color: #fff;
  background: var(--accent);
}

.price-table__table table th:nth-child(4) {
  background: #0E1BC2;
}

.price-table__table table td {
  font-size: 14px;
}

.price-table__table table td:first-child {
  font-weight: bold;
}

.price-table__table table td:not(:first-child) {
  font-weight: 500;
}

.td-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.td-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20px;
  border: 1px solid #D5D5D5;
  border-radius: 3px;
  font-size: 12px;
  text-decoration: none;
  color: var(--text);
  padding: 0 12px;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
}

.td-btn:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  color: #fff;
}

.load-table {
  margin-top: 10px;
  font-size: 14px;
  color: var(--accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  margin-left: 10px;
}

.load-table::before {
  content: '';
  border-bottom: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  margin-top: -7px;
}

.review {
  padding: 30px;
  background: #FFFFFF;
  background: #FFFFFF;
  -webkit-box-shadow: 4px 4px 54px rgba(0, 0, 0, 0.06);
          box-shadow: 4px 4px 54px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}

.review__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-left: 48px;
  min-height: 36px;
}

.review__photo {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

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

.review__photo svg {
  width: 24px;
  height: 24px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.review__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
}

.review__date {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  color: #B8B8C9;
  margin-top: 4px;
}

.review__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

.review__logo {
  width: 50px;
}

.review__logo img {
  max-width: 100%;
}

.review__text {
  margin-top: 15px;
  color: #6C8097;
  font-size: 14px;
}

.review__text p {
  margin-bottom: 1rem;
}

.review__text p:last-child {
  margin-bottom: 0;
}

.score {
  display: block;
  width: 140px;
  height: 17px;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), color-stop(0, #eee));
  background: linear-gradient(90deg, var(--accent) var(--_score, 50%), #eee 0);
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.34462 13.901L13.2849 16.3974C13.7886 16.7165 14.4139 16.2419 14.2644 15.654L13.126 11.1756C13.0939 11.0509 13.0977 10.9197 13.137 10.797C13.1762 10.6743 13.2492 10.5652 13.3477 10.4822L16.8811 7.54132C17.3453 7.1549 17.1057 6.38439 16.5092 6.34567L11.8949 6.0462C11.7706 6.03732 11.6514 5.99332 11.5511 5.91931C11.4509 5.84531 11.3737 5.74435 11.3286 5.62819L9.60765 1.29436C9.56087 1.17106 9.47769 1.06492 9.36915 0.990017C9.26062 0.915115 9.13187 0.875 9 0.875C8.86813 0.875 8.73938 0.915115 8.63085 0.990017C8.52232 1.06492 8.43914 1.17106 8.39236 1.29436L6.6714 5.62819C6.6263 5.74435 6.54914 5.84531 6.4489 5.91931C6.34865 5.99332 6.22944 6.03732 6.10515 6.0462L1.49078 6.34567C0.894294 6.38439 0.654664 7.1549 1.11894 7.54132L4.65232 10.4822C4.75079 10.5652 4.82383 10.6743 4.86305 10.797C4.90226 10.9197 4.90606 11.0509 4.874 11.1756L3.81824 15.3288C3.63889 16.0343 4.38929 16.6038 4.99369 16.2209L8.65539 13.901C8.75837 13.8354 8.87792 13.8006 9 13.8006C9.12208 13.8006 9.24163 13.8354 9.34462 13.901Z' fill='%23F4D635' stroke='%23F4D635' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") 0 0/1.53em 1em;
          mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.34462 13.901L13.2849 16.3974C13.7886 16.7165 14.4139 16.2419 14.2644 15.654L13.126 11.1756C13.0939 11.0509 13.0977 10.9197 13.137 10.797C13.1762 10.6743 13.2492 10.5652 13.3477 10.4822L16.8811 7.54132C17.3453 7.1549 17.1057 6.38439 16.5092 6.34567L11.8949 6.0462C11.7706 6.03732 11.6514 5.99332 11.5511 5.91931C11.4509 5.84531 11.3737 5.74435 11.3286 5.62819L9.60765 1.29436C9.56087 1.17106 9.47769 1.06492 9.36915 0.990017C9.26062 0.915115 9.13187 0.875 9 0.875C8.86813 0.875 8.73938 0.915115 8.63085 0.990017C8.52232 1.06492 8.43914 1.17106 8.39236 1.29436L6.6714 5.62819C6.6263 5.74435 6.54914 5.84531 6.4489 5.91931C6.34865 5.99332 6.22944 6.03732 6.10515 6.0462L1.49078 6.34567C0.894294 6.38439 0.654664 7.1549 1.11894 7.54132L4.65232 10.4822C4.75079 10.5652 4.82383 10.6743 4.86305 10.797C4.90226 10.9197 4.90606 11.0509 4.874 11.1756L3.81824 15.3288C3.63889 16.0343 4.38929 16.6038 4.99369 16.2209L8.65539 13.901C8.75837 13.8354 8.87792 13.8006 9 13.8006C9.12208 13.8006 9.24163 13.8354 9.34462 13.901Z' fill='%23F4D635' stroke='%23F4D635' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") 0 0/1.53em 1em;
  background-size: 100%;
}

.reviews__nav {
  margin-top: 25px;
}

.reviews__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  font-size: 0;
  line-height: 0;
}

.reviews__nav ul li {
  height: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  border: 1px solid var(--accent);
  width: 160px;
  border-radius: 6px;
  cursor: pointer;
}

.reviews__nav ul li.current {
  background-color: var(--accent);
  border-color: var(--accent);
}

.reviews__nav ul li.current img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.reviews__content {
  margin-top: 35px;
}

.reviews__content-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}

.reviews .load-more {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: var(--accent);
}

.reviews .load-more svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}

.for-load {
  display: none;
}

.sale-page .sale__wrapper {
  margin-top: 25px;
}

.sale-in__form {
  position: relative;
}

input.btn {
  border: none;
}

.sale-in__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sale-in__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sale-in__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sale-in__product-date {
  font-size: 12px;
  line-height: 120%;
  margin-top: 11px;
  color: #BAB8B8;
}

.sale-in .sale__item-price {
  margin-top: 17px;
}

.sale-in__product-image {
  width: 440px;
  height: 200px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
  -webkit-mask-image: url("../images/mask-item.svg");
          mask-image: url("../images/mask-item.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: 0 50%;
          mask-position: 0 50%;
}

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

.sale-in__description {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #E9E9E9;
  padding-right: 120px;
}

.sale-in h2,
.sale-in h3,
.sale-in h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}

.sale-in p,
.sale-in ul,
.sale-in ol {
  font-size: 16px;
}

.sale-in__form {
  width: 405px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 15px;
  background: #F5F5F5;
  border-radius: 6px;
  padding: 40px 50px;
}

.sale-in .service-in__form-title {
  color: #000;
}

.sale-in .service-in__form-desc {
  color: #939393;
}

.sale-in .service-in__form-input--title {
  color: #000;
}

.sale-in .service-in__form-input input {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.sale-in .service-in__form-checkbox svg {
  -webkit-filter: none;
          filter: none;
}

.sale-in .service-in__form-checkbox,
.sale-in .service-in__form-checkbox a {
  color: #767676;
}

.sale-in  .service-in__form-checkbox .error {
  width: 100%;
  font-weight: 400;
}

.sale-in.sale-in--single-post .sale-in__description {
  padding-right: 0;
}

.sale-in.sale-in--single-post .sale-in__description table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.2;
}

.sale-in.sale-in--single-post .sale-in__description table:not(:last-child) {
  margin-bottom: 1rem;
}

.sale-in.sale-in--single-post .sale-in__description table th,
.sale-in.sale-in--single-post .sale-in__description table td {
  padding: 10px;
  border: 1px solid #ccc;
}

.sale-in.sale-in--single-post .sale-in__form {
  width: 100%;
  max-width: 300px;
}

.sale-in.sale-in--single-post .service-in__form-btns {
  flex-direction: column;
  align-items: flex-start;
}

.sale-in.sale-in--single-post .sale-in__description blockquote,
.sale-in.sale-in--single-post .sale-in__description q {
  font-size: 16px;
  text-align: justify;
  background: #f3f8ff;
  padding: 10px 10px 10px 20px;
  border-left: 3px solid #3b87e7;
  margin: 30px 0;
  color: #5e5e5e;
}

.sale-in.sale-in--single-post .sale-in__description blockquote p:last-child {
  margin-bottom: 0;
}

.sale-in.sale-in--single-post .sale-in__description blockquote a,
.sale-in.sale-in--single-post .sale-in__description q a {
  font-weight: 800;
  text-decoration: none;
}

.sale-in.sale-in--single-post .sale-in__description blockquote a:hover,
.sale-in.sale-in--single-post .sale-in__description q a:hover {
  text-decoration: underline;
  color: #fb5a30;
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__gallery {
  width: 615px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 95px;
}

.about__gallery-slider {
  overflow: hidden;
}

.about__gallery-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 315px;
  outline: none;
  border-radius: 6px;
  overflow: hidden;
}

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

.about__gallery-play {
  position: absolute;
  z-index: 2;
  background: #FFFFFF;
  border-radius: 6px;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about__gallery-play svg {
  width: 32px;
  height: 32px;
}

.about__gallery-btns {
  margin-top: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__gallery-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__prev, .about__next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 40px;
  position: relative;
  z-index: 2;
}

.about__prev {
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  border-radius: 6px 0 0 6px;
}

.about__next {
  border-radius: 0px 6px 6px 0px;
  background-color: var(--accent);
}

.about .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  top: 0;
  margin: auto;
}

.about .swiper-pagination-bullet {
  opacity: 1;
  background: #E2E2E2;
}

.about .swiper-pagination-bullet-active {
  background: #000000;
}

.line-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.line-title::before {
  content: '';
  position: absolute;
  left: 40px;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--accent);
}

.about-advantages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.about-advantages__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-advantages__item-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  color: var(--accent);
  white-space: nowrap;
  padding-right: 30px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.about-advantages__item-title::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 22.75C18.3848 22.75 22.75 18.3848 22.75 13C22.75 7.61522 18.3848 3.25 13 3.25C7.61522 3.25 3.25 7.61522 3.25 13C3.25 18.3848 7.61522 22.75 13 22.75Z' fill='%232030F8' stroke='%232030F8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.4688 10.5625L11.5104 16.25L8.53125 13.4062' stroke='white' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 26px;
  height: 26px;
}

.about-advantages__item-title::after {
  content: '';
  position: absolute;
  left: 38px;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: #DEDEDE;
}

.about-advantages__item-desc {
  font-size: 20px;
  line-height: 120%;
}

.a-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.a-info__gallery {
  width: 615px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.a-info__gallery img {
  max-width: 100%;
  height: auto;
}

.a-info__gallery img:nth-child(2) {
  max-width: 70%;
}

.docs__wrapper {
  position: relative;
  margin-top: 30px;
}

.docs__prev, .docs__next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F1F1F1;
  border-radius: 100%;
}

.docs__prev {
  left: -60px;
}

.docs__next {
  right: -60px;
}

.docs__init {
  overflow: hidden;
}

.docs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px;
  background: #F5F5F5;
  border-radius: 6px;
  text-decoration: none;
}

.docs__item-image {
  width: 105px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}

.docs__item-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.docs__item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 4px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.docs__item-info--date {
  font-weight: 400;
  font-size: 12px;
  color: #939393;
}

.docs__item-info--title {
  font-size: 14px;
  margin-top: 10px;
  color: #000;
}

.docs__item-info--icon {
  margin-top: auto;
}

.docs__item-info--icon svg {
  width: 20px;
  height: 20px;
}

.project-page__wrapper {
  margin-top: 25px;
}

.project-page__slider-wrapper {
  position: relative;
}

.project-page__init {
  overflow: hidden;
}

.project-page__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 55%;
  outline: none;
  border-radius: 6px;
  overflow: hidden;
}

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

.project-page__params {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
}

.project-page__params-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.project-page__params-item--icon {
  width: 42px;
  height: 42px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F5F5F5;
  border-radius: 6px;
  margin-right: 19px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.project-page__params-item--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.project-page__params-item--text span {
  font-weight: 500;
  font-size: 12px;
}

.project-page__params-item--text a,
.project-page__params-item--text b {
  font-weight: 700;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.project-page__params-item--text a {
  color: var(--accent);
}

.project-page__desc {
  margin-top: 45px;
  font-size: 16px;
}

.project-page + .projects {
  margin-top: 60px;
}

.project-page + .projects .container {
  padding-top: 50px;
  border-top: 1px solid #E9E9E9;
}

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

.advantages-clients .advantages__item:nth-child(2n) {
  background-color: transparent;
}

.work-list {
  margin-top: 90px;
}

.work-list__wrapper {
  margin: 25px 0 0;
  padding: 0;
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.work-list__wrapper li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  padding: 8px 14px;
  border: 1px solid #F5F5F5;
  border-radius: 6px;
}

.work-list__wrapper li img {
  width: 32px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
}

.price-page__wrapper {
  margin-top: 40px;
}

.price-page__row-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  color: var(--accent);
  padding-bottom: 15px;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 25px;
}

.price-page__row + div {
  margin-top: 60px;
}

.delivery__wrapper {
  margin-top: 40px;
}

.delivery__row + div {
  margin-top: 50px;
}

.delivery__row-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.delivery__row-item + div {
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid #ECECEC;
}

.delivery__row-item--icon {
  width: 52px;
  height: 52px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--accent);
  border-radius: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 32px;
  flex-shrink: 0;
}

.delivery__row-item--text h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  margin: 0 0 1rem;
}

.delivery__row-item--text ul,
.delivery__row-item--text p {
  font-size: 16px;
}

.contacts {
  overflow: hidden;
}

.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts__info {
  width: 570px;
  margin-right: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contacts__info-wrap {
  margin-top: 40px;
}

.contacts__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.contacts__info-row + div {
  margin-top: 40px;
}

.contacts__info-row:last-child .contacts__info-item {
  padding-bottom: 0;
  border: none;
}

.contacts__info-item {
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
  padding-right: 30px;
}

.contacts__info-item--title {
  font-size: 12px;
  color: var(--accent);
}

.contacts__info-item--value {
  font-weight: 700;
  font-size: 26px;
  color: #000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 10px;
  text-decoration: none;
}

.contacts__info-item--value:hover {
  color: #000;
}

.contacts__info-btns {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.contacts__info-btns a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  background: #F5F5F5;
  border-radius: 6px;
  padding: 0 30px 0 15px;
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.contacts__info-btns a svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}

.contacts__info-btns a.tg, .contacts__info-btns a.whats {
  color: #fff;
}

.contacts__info-btns a.tg {
  background: #1098DC;
}

.contacts__info-btns a.whats {
  background: #26C642;
}

.contacts__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: -335px;
  border-radius: 6px;
  overflow: hidden;
}

.contacts__map {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

#top {
  position: fixed;
  left: 40px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 100;
  background-color: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 768px) {
  #top {
    left: 20px;
    bottom: 20px;
  }
}

#top::before {
  content: '';
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  position: absolute;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: 7px;
}

#top.show {
  opacity: 1;
  visibility: visible;
}

.thank__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.thank__info {
  padding: 40px 0 60px;
}

.thank__title {
  padding-bottom: 21px;
  margin-bottom: 25px;
  position: relative;
}

.thank__title::before {
  content: '';
  position: absolute;
  left: 50px;
  bottom: 0;
  right: -50vw;
  height: 1px;
  background-color: var(--accent);
}

.thank__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

.thank__image img {
  max-width: 350px;
}

.thank .btn {
  margin-top: 10px;
}

.thank + .footer {
  margin-top: 0;
}

.modal {
  width: 845px;
  padding: 55px 70px !important;
}

.modal__fields {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
/*# sourceMappingURL=project.css.map */


.variants__wrapper {
  margin-top: 40px;
}
.variants__item {
  display: flex;
  gap: 55px;
}
.variants__item + div {
  margin-top: 60px;
  border-top: 1px solid #E9E9E9;
  padding-top: 60px;
}
.variants__item-slider {
  width: 500px;
  min-width: 0;
  flex-shrink: 0;
}
.variants__item-slider--main {
  position: relative;
}
.variants__item-slider--init {
  overflow: hidden;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  padding: 5px;
}
.variants__item-slider--init .swiper-slide a {
  display: flex;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  outline: none;
}
.variants__item-slider--init .swiper-slide a img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.variants__item-prev, .variants__item-next {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
}
.variants__item-prev {
  left: -23px;
}
.variants__item-next {
  right: -23px;
}
.variants__item-slider--nav {
  margin-top: 15px;
  overflow: hidden;
}
.variants__item-slider--nav .swiper-slide {
  height: 42px;
  padding: 3px;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
}
.variants__item-slider--nav .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.variants__item-slider--nav .swiper-slide-thumb-active {
  border: 1px solid #000000;
}
.variants__item-info {
  flex: 1;
}
.variants__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.variants__item-title {
  font-weight: 700;
  font-size: clamp(20px, 5vw, 24px);
  line-height: 120%;
}
.variants__item-price {
  font-weight: 700;
  font-size: clamp(16px, 5vw, 20px);
  line-height: 120%;
  color: var(--accent);
  margin-top: 5px;
}
.variants__item-product {
  max-width: 220px;
  text-align: right;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  padding: 10px 15px 10px 10px;
  font-weight: 700;
  font-size: 13px;
  line-height: 120%;
  text-decoration: none;
  display: inline-flex;
  color: var(--accent);
}
.variants__item-product:hover {
  color: var(--accent);
}
.variants__item-table {
  margin-top: 25px;
}
.variants__item-table table {
  width: 100%;
}
.variants__item-table td {
  font-weight: 500;
  font-size: clamp(12px, 5vw, 14px);
  padding: 15px 40px 9px 0;
  position: relative;
}
.variants__item-table td::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 10px;
  height: 1px;
  background-color: #E9E9E9;
}
.variants__item-table td:not(:first-child) {
  font-weight: bold;
}
.variants__item-btns {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-border {
  border: 1px solid var(--accent);
  background-color: transparent;
  color: #000000;
}
.btn-border:hover {
  background-color: var(--accent);
}/*# sourceMappingURL=project.css.map */

.stages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  list-style-type: none;
  counter-set: stagesList;
}

.stages__list li {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 30px 100px;
  background-color: #F5F5F5;
  border-radius: 6px;
  counter-increment: stagesList;
}

.stages__list li::before {
  content: counter(stagesList);
  position: absolute;
  bottom: 0px;
  right: 20px;
  opacity: 0.1;
  display: block;
  font-weight: 600;
  font-size: 100px;
  line-height: 1;
}

.director__inner {
  display: grid;
  grid-template-columns: 300px auto;
  align-items: end;
  gap: 30px 50px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 4px 4px 54px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}

.director__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.director__right .btn {
  min-width: 240px;
}

.director__image {
  max-width: 300px;
  margin-bottom: -30px;
}

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

.director__text,
.director__description {
  max-width: 600px;
}

.director__text {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
}

.director__description {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.director__description p {
  margin-bottom: 0;
}

.tinting-levels__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.tinting-levels__inner .s-title {
  flex-basis: 300px;
  width: 100%;
  max-width: 300px;
}

.tinting-levels__items {
  overflow: hidden;
  display: flex;
  flex: auto;
  height: 280px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  list-style-type: none;
}

.tinting-levels__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 15%;
  padding: 30px 5px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  transition: width 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.tinting-levels__item:nth-child(1) {
  background-color: rgba(0 0 0 / 0.15);
}

.tinting-levels__item:nth-child(2) {
  background-color: rgba(0 0 0 / 0.25);
}

.tinting-levels__item:nth-child(3) {
  background-color: rgba(0 0 0 / 0.35);
}

.tinting-levels__item:nth-child(4) {
  background-color: rgba(0 0 0 / 0.45);
}

.tinting-levels__item:nth-child(5) {
  background-color: rgba(0 0 0 / 0.55);
}

.tinting-levels__item:nth-child(6) {
  background-color: rgba(0 0 0 / 0.6);
}

.tinting-levels__item:nth-child(7) {
  background-color: rgba(0 0 0 / 0.7);
}

.tinting-levels__item > p {
  margin-bottom: 0;
}

.tinting-levels__item > .btn {
  opacity: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.5s ease;
}

.tinting-levels__item:hover {
  width: 30%;
  color: #fff;
}

.tinting-levels__item:hover > .btn {
  opacity: 1;
}

.accordion__item--active .accordion__content {
  grid-template-rows: 1fr; }

.accordion__toggle {
  cursor: pointer;
  user-select: none;
}

.accordion__content {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion__content > div {
  min-height: 0;
}

.accordion--type1 {
  display: grid;
  gap: 10px 0;
}

.accordion--type1 .accordion__item {
  background-color: #fff;
  box-shadow: 4px 4px 54px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}

.accordion--type1 .accordion__item--active .accordion__toggle-icon {
  transform: rotate(0deg);
}

.accordion--type1 .accordion__item-title {
  max-width: 890px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.accordion--type1 .accordion__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px;
  transition: padding 0.2s ease;
}

.accordion--type1 .accordion__toggle-icon {
  display: inline-flex;
  flex-shrink: 0;
  transform: rotate(-180deg);
  transition: transform 0.2s ease;
}

.accordion--type1 .accordion__content > div > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 30px 30px;
}

.accordion--type1 .accordion__content p {
  margin-bottom: 0;
}

.price-calc__row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.price-calc__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.price-calc__col-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.price-calc__col input,
.price-calc__col .nice-select,
.price-calc__result {
  width: 100%;
  height: 48px;
}

.price-calc__col .nice-select {
  padding-left: 10px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
}

.nice-select:after {
  margin-top: -7px;
  border-color: var(--text);
  opacity: 0.3;
}

.nice-select span.current {
  max-width: 195px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nice-select .option {
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-calc__col input {
  padding: 15px;
  border: 0;
  font-size: 14px;
  background-color: #F5F5F5;
  border-radius: 6px;
}

.price-calc__result {
  display: flex;
  align-items: center;
}

.price-calc__result p {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
}

.price-calc__col .btn {
  width: 100%;
  padding: 0 20px;
  border: 0;
}

.price-calc__description {
  margin: 10px 0 0;
  font-size: 12px;
  color: #BEBEBE;
}

.calc-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 30px;
  font-size: 16px;
}

.calc-details p {
  margin: 0;
}