@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900&display=swap&subset=cyrillic-ext);
@import url(https://fonts.googleapis.com/css?family=Cormorant:300,regular,500,600,700,300italic,italic,500italic,600italic,700italic);
:root {
  --primary-color: #333;
  --cecundary-color: #d4091d;
  --base-font: "Inter";
  --font3: "Cormorant";
  --hover-red: #ae0819;
}

:root {
  --scale: calc(100vw / 1640);
  --scale-mob: calc(100vw / 500);
}
@media (max-width: 700px) {
  :root {
    --scale: calc(100vw / 500);
  }
}

:root {
  --bg: #ed2f00;
  --panel: #ed2f00;
  --panel-border: #ed2f00;
  --text: #ed2f00;
  --text-dim: #ed2f00;
  --accent: #ed2f00;
  --accent-dim: #ed2f00;
  --goo-thumb-width: 6px;
}

@font-face {
  font-family: "Gilroy-Bold";
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

html {
  font-size: 16px;
}

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

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

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

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

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

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  color: #333;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: calc(1640 * var(--scale));
  margin: 0 auto;
  padding: 0px calc(75 * var(--scale));
}
@media (max-width: 700px) {
  ._container {
    padding: 0px calc(30 * var(--scale));
  }
}

._text-hover {
  position: relative;
  display: inline-block;
  color: #fff;
  overflow: hidden;
}
._text-hover span {
  opacity: 0;
}
._text-hover ._text-hover-line {
  width: 100%;
  height: 2px;
  background: #ffe08c;
  position: relative;
}
._text-hover ._text-hover-line::before {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  background: #d4091d;
  content: "";
  height: 100%;
  width: 0%;
}
._text-hover::before, ._text-hover::after {
  content: attr(data-text);
  position: absolute;
  top: 0%;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.5s ease;
}
._text-hover::before {
  left: 0;
  width: 0%;
  color: #d4091d;
  z-index: 2;
}
._text-hover::after {
  right: 0;
  width: 100%;
  display: flex;
  justify-content: end;
  color: inherit;
}
._text-hover:hover::before {
  width: 100%;
}
._text-hover:hover::after {
  width: 0%;
}

._svg-hover {
  --width: calc(22 * var(--scale));
  width: var(--width);
  position: relative;
  display: block;
  display: flex;
  padding: 1px;
}
._svg-hover:hover div {
  width: 100%;
}
._svg-hover > img {
  width: 100% !important;
}
._svg-hover div {
  position: absolute;
  width: 0%;
  top: 1px;
  overflow: hidden;
  left: 1px;
  transition: 0.3s;
  z-index: 2;
}
._svg-hover div img {
  width: calc(var(--width) - 2px);
  min-width: calc(var(--width) - 2px);
}

._list {
  display: flex;
  flex-direction: column;
  gap: calc(18 * var(--scale));
  line-height: 1.3;
}
._list li {
  position: relative;
  padding-left: calc(29 * var(--scale));
}
@media (max-width: 700px) {
  ._list li {
    padding-left: calc(18 * var(--scale));
  }
}
._list li::before {
  position: absolute;
  top: 0%;
  transform: translate(0px, 40%);
  left: 0;
  content: "";
  border-radius: 100%;
  background: #d4091d;
  width: calc(11 * var(--scale));
  aspect-ratio: 1/1;
}
@media (max-width: 700px) {
  ._list li::before {
    width: calc(9 * var(--scale));
    transform: translate(0px, 80%);
  }
}

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

.select {
  position: relative;
  color: #858FA4;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: right;
  color: #858FA4;
}
.select__value span {
  padding-right: 10px;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 6px;
  height: 6px;
  background: url("../img/arrow.png") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

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

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

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

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

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

.rating.rating_sending {
  opacity: 0.2;
}

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

.rating__body {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.trow {
  display: table-row;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  position: fixed;
  width: 100%;
  z-index: 10;
  transition: 0.3s;
}
@media (min-width: 700px) {
  .header._scroll {
    background: transparent;
  }
  .header._scroll .header__body {
    left: 50%;
    transform: translate(-50%);
    position: relative;
    width: calc(707 * var(--scale));
    border-radius: calc(29 * var(--scale));
    top: 20px;
  }
  .header._scroll .header__body::before {
    width: 100%;
    background: #eeeeee;
    border-radius: calc(29 * var(--scale));
  }
}
@media (min-width: 700px) and (max-width: 700px) {
  .header._scroll .header__body {
    width: calc(470 * var(--scale));
  }
}
@media (min-width: 700px) {
  .header._scroll .header__container {
    padding: 0;
  }
}
@media (min-width: 700px) {
  .header._scroll .header__body {
    padding: calc(20 * var(--scale)) calc(32 * var(--scale));
  }
}
@media (min-width: 700px) {
  .header._scroll .header__nav {
    opacity: 0;
    display: none;
  }
}
.header__body {
  z-index: 9;
  padding-top: calc(64 * var(--scale));
  padding-bottom: calc(64 * var(--scale));
  display: flex;
  align-items: center;
  transition: 0.6s;
  left: 50%;
  transform: translate(-50%);
  position: relative;
  width: 100%;
  position: relative;
}
.header__body::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  transition: 0.6s;
}
@media (max-width: 700px) {
  .header__body {
    padding-top: calc(45 * var(--scale));
    padding-bottom: calc(45 * var(--scale));
  }
}
.header__logo {
  width: calc(330 * var(--scale));
  position: relative;
  z-index: 2;
  display: flex;
}
@media (max-width: 700px) {
  .header__logo {
    width: calc(230 * var(--scale));
  }
}
.header__logo img {
  width: 100%;
}
.header__wp {
  margin-left: auto;
  display: flex;
  gap: calc(45 * var(--scale));
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .header__wp {
    gap: calc(30 * var(--scale));
  }
}
.header__nav {
  font-weight: 600;
  transition: 0.3s;
  color: inherit;
  width: max-content;
  font-size: calc(16 * var(--scale));
}
.header._search .header__nav {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 700px) {
  .header__nav {
    display: none;
  }
}
.header__phone {
  display: flex;
}
.header__phone img {
  width: calc(20 * var(--scale));
}
.header__search {
  position: relative;
  display: flex;
}
.header__search button {
  left: 0;
  display: flex;
  position: relative;
}
.header__search button div {
  display: flex;
}
.header__search img {
  width: calc(20 * var(--scale));
  position: relative;
  z-index: 2;
}
.header__search input {
  opacity: 0;
  pointer-events: none;
  width: calc(32 * var(--scale));
  transition: 0.6s;
  position: absolute;
  right: calc(-24 * var(--scale));
  top: 50%;
  transform: translate(0px, -50%);
  padding: calc(20 * var(--scale)) calc(50 * var(--scale));
  background: #eeeeee;
  border-radius: calc(30 * var(--scale));
  height: calc(60 * var(--scale));
}
.header._search .header__search input {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 700px) {
  .header._search .header__search input {
    width: calc(932 * var(--scale));
  }
}
@media (min-width: 700px) {
  .header._scroll._search .header__search input {
    width: calc(622 * var(--scale));
  }
}
@media (max-width: 700px) {
  .header__search input {
    width: calc(410 * var(--scale));
  }
}
.menu-header {
  position: absolute;
  top: 0;
  width: 100vw;
  left: 0;
  background: white;
  transition: 0.3s;
  opacity: 0;
  transition: 0.8s;
  z-index: 1;
  pointer-events: none;
}
.menu-header::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
  transform: translate(-100%);
  transition: 0.6s;
}
header._active .menu-header {
  opacity: 1;
  pointer-events: all;
}
header._active .menu-header::after {
  transform: translate(0);
}
.menu-header a {
  transition: 0.3s;
  color: inherit;
}
.menu-header a:hover {
  color: #d4091d;
}
.menu-header::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -2;
  width: 100%;
  height: 100vh;
  background: rgba(48, 2, 6, 0.6);
}
.menu-header__container {
  display: flex;
  justify-content: space-between;
  padding-top: calc(155 * var(--scale));
  padding-bottom: calc(30 * var(--scale));
  font-size: calc(28 * var(--scale));
}
@media (max-width: 700px) {
  .menu-header__container {
    flex-direction: column;
    font-size: calc(18 * var(--scale));
    gap: 30px;
    padding-top: calc(110 * var(--scale));
    height: 100vh;
    overflow: auto;
  }
}
.menu-header__container > * {
  opacity: 0;
  transition: 0.6s;
}
.menu-header__container > *:nth-child(1) {
  transition-delay: 0.4s;
}
@media (max-width: 700px) {
  .menu-header__container > *:nth-child(1) {
    transition-delay: 0.7s;
  }
}
.menu-header__container > *:nth-child(2) {
  transition-delay: 0.7s;
}
@media (max-width: 700px) {
  .menu-header__container > *:nth-child(2) {
    transition-delay: 0.4s;
  }
}
.menu-header__container > *:nth-child(3) {
  transition-delay: 1s;
}
header._active .menu-header__container > * {
  opacity: 1;
}
.menu-header__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: calc(32 * var(--scale));
}
@media (max-width: 700px) {
  .menu-header__left {
    order: 2;
    font-size: calc(18 * var(--scale));
  }
}
.menu-header__mail {
  margin-top: calc(21 * var(--scale));
  margin-bottom: calc(38 * var(--scale));
}
.menu-header__social {
  display: flex;
  flex-direction: column;
  gap: calc(18 * var(--scale));
}
.menu-header__social span {
  color: #949494;
  font-size: calc(17 * var(--scale));
}
.menu-header__social div {
  display: flex;
  gap: calc(28 * var(--scale));
}
.menu-header__social a {
  width: calc(53 * var(--scale));
  aspect-ratio: 1/1;
  background: #f3ebef;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}
.menu-header__social a:hover {
  scale: 1.1;
}
.menu-header__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  gap: calc(25 * var(--scale));
}
@media (max-width: 700px) {
  .menu-header__links {
    gap: calc(15 * var(--scale));
  }
}
.menu-header__filial {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: calc(20 * var(--scale));
}
@media (max-width: 700px) {
  .menu-header__filial {
    order: 2;
  }
}
.menu-header__filial span {
  color: #949494;
  font-size: calc(17 * var(--scale));
  font-weight: 500;
}
.menu-header__filial ul {
  display: flex;
  flex-direction: column;
}
.menu-header__filial ul a {
  display: block;
  padding: calc(10 * var(--scale)) 0px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  color: inherit;
  transition: 0.3s;
  display: flex;
  gap: 50px;
  min-width: calc(385 * var(--scale));
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 700px) {
  .menu-header__filial ul a {
    padding: 0;
  }
}
.menu-header__filial ul a::after {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  width: 26px;
  aspect-ratio: 1/1;
  background-image: url(../img/bf-tp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.3s;
}
.menu-header__filial ul a:hover {
  border-color: #d4091d;
  color: #d4091d;
}
.menu-header__filial ul a:hover::after {
  opacity: 1;
}

.header__burger {
  display: block;
  position: relative;
  top: 0px;
  right: 0px;
  width: calc(32 * var(--scale));
  height: calc(20 * var(--scale));
  cursor: pointer;
  z-index: 5;
}
.header__burger:hover span {
  background-color: #d4091d;
}
.header__burger span {
  transition: all 0.8s ease 0s;
  top: calc(50% - 1px);
  left: 0px;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.header__burger span:first-child {
  top: 0px;
}
.header__burger span:last-child {
  top: auto;
  bottom: 0px;
}
header._active .header__burger span {
  transform: scale(0);
}
header._active .header__burger span:first-child {
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}
header._active .header__burger span:last-child {
  transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

.page {
  flex: 1 1 auto;
  padding-top: calc(145 * var(--scale));
  font-size: calc(16 * var(--scale));
}
@media (max-width: 700px) {
  .page {
    padding-top: calc(110 * var(--scale));
  }
}
.page._no-p {
  padding-top: 0;
}

.inp__wp._error span {
  display: block;
}
.inp__wp span {
  display: none;
}

._resp {
  overflow: hidden;
  transition: 0.3s;
}

._head {
  font-family: var(--font3);
  font-weight: 600;
  font-style: italic;
  font-size: calc(32 * var(--scale));
  line-height: 1;
  letter-spacing: -0.02em;
  color: #949494;
  margin-bottom: calc(20 * var(--scale));
}
@media (max-width: 700px) {
  ._head {
    font-size: calc(24 * var(--scale-mob));
  }
}

._title {
  font-size: calc(88 * var(--scale));
  font-weight: 600;
  line-height: 1;
  letter-spacing: -4%;
}
@media (max-width: 700px) {
  ._title {
    font-size: calc(40 * var(--scale-mob));
  }
}
._title b {
  color: var(--cecundary-color);
  font-weight: 600;
}
._title._v2 {
  font-size: calc(36 * var(--scale));
}

._btn {
  padding: calc(15 * var(--scale)) calc(31 * var(--scale));
  border: 1px solid #949494;
  display: flex;
  max-width: max-content;
  align-items: center;
  gap: calc(20 * var(--scale));
  font-weight: 500;
  font-size: calc(16 * var(--scale));
  color: #252422;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: 0.6s;
}
._btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 100%;
  z-index: -1;
  background: #d4091d;
  transition: 0.4s;
}
._btn:hover {
  color: #fff;
}
._btn:hover::before {
  width: 100%;
}
._btn:hover::after {
  background-image: url(../img/wt.svg);
}
._btn._v2 {
  color: #fff;
  border: none;
}
._btn._v2::before {
  width: 100%;
}
._btn._v2::after {
  background-image: url(../img/wt.svg);
}
._btn._v2:hover::before {
  background: #a30003;
}
@media (max-width: 700px) {
  ._btn {
    gap: calc(15 * var(--scale-mob));
    padding: calc(15 * var(--scale-mob)) calc(31 * var(--scale-mob));
    font-size: calc(16 * var(--scale-mob));
  }
}
._btn::after {
  position: relative;
  top: 0;
  left: 0;
  width: calc(20 * var(--scale));
  height: calc(14 * var(--scale));
  background-image: url(../img/arrbtn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transition: 0.3s;
}
@media (max-width: 700px) {
  ._btn::after {
    width: calc(18 * var(--scale-mob));
    height: calc(12 * var(--scale-mob));
  }
}

.fon-wp {
  position: relative;
  z-index: 1;
}
.fon-wp::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 130%;
  background-image: url(../img/ff.png);
  background-size: cover;
  background-position: bottom;
}

.about__container {
  padding-top: calc(100 * var(--scale));
  display: flex;
  gap: calc(60 * var(--scale));
}
@media (max-width: 700px) {
  .about__container {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .about__head {
    display: none;
  }
}
.about__text {
  margin-top: calc(10 * var(--scale));
  font-size: calc(22 * var(--scale));
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--scale));
  margin-bottom: calc(20 * var(--scale));
}
@media (max-width: 700px) {
  .about__text {
    font-size: calc(17 * var(--scale-mob));
    margin-top: calc(20 * var(--scale-mob));
  }
}
.about__text p:nth-child(2) {
  font-weight: 600;
  font-style: italic;
  font-size: calc(26 * var(--scale));
  line-height: 1.15;
  font-family: var(--font3);
}
@media (max-width: 700px) {
  .about__text p:nth-child(2) {
    line-height: 1.3;
    font-size: calc(22 * var(--scale-mob));
  }
}
.about__big-txt {
  transition: 0.6s;
  line-height: 1.3;
  font-size: calc(18 * var(--scale));
}
.about__big-txt._active {
  margin-bottom: 20px;
}
.about__btn {
  margin-left: auto;
}
.about__btn:hover::after {
  background-image: url(../img/hh.svg);
}
.about__btn::after {
  background-image: url(../img/arr2.svg);
}
.about__name {
  font-weight: 300;
  font-size: calc(24 * var(--scale));
  margin-top: calc(120 * var(--scale));
  margin-bottom: calc(50 * var(--scale));
}
@media (max-width: 700px) {
  .about__name {
    font-size: calc(20 * var(--scale-mob));
    margin-top: calc(50 * var(--scale-mob));
    margin-bottom: calc(30 * var(--scale-mob));
  }
}
.about__certificates {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.2fr;
  width: 125%;
  align-items: center;
  gap: calc(15 * var(--scale));
}
@media (max-width: 700px) {
  .about__certificates {
    width: 100%;
    gap: calc(15 * var(--scale-mob));
  }
}
.about__certificates img {
  width: 100%;
}
@media (max-width: 600px) {
  .about__certificates {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    row-gap: calc(20 * var(--scale-mob));
  }
  .about__certificates img {
    width: 33.33%;
  }
}
.about__images {
  width: 45%;
  flex: 0 0 45%;
  padding-top: calc(60 * var(--scale));
  transform: translate(110px);
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  .about__images {
    transform: translate(0);
    width: 100%;
    flex: 0 0 100%;
    padding-top: 0px;
    margin-top: 8vw;
  }
}
.about__images:not(._active)::before {
  opacity: 0.5;
  transform: translate(50%) !important;
}
.about__images::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  z-index: -2;
  width: 96%;
  background: rgba(237, 111, 0, 0.1);
  aspect-ratio: 1/0.95;
  transition: 0.6s;
  opacity: 1;
}
@media (max-width: 700px) {
  .about__images::before {
    width: 90%;
    right: 0%;
    height: 120%;
    transform: translate(0px, -10%);
  }
}
.about__images:not(._active)::after {
  opacity: 0.5;
  transform: translate(0px, 50%) !important;
}
.about__images::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: rgba(237, 47, 0, 0.2);
  z-index: -1;
  width: 90%;
  aspect-ratio: 1/1.05;
  top: 3.5%;
  opacity: 0.2;
  transition: 0.8s;
}
@media (max-width: 700px) {
  .about__images::after {
    width: 95%;
    right: 2%;
    height: 120%;
    transform: translate(0px, -9%);
  }
}
.about__images div,
.about__images img {
  width: calc(670 * var(--scale));
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .about__images div:nth-child(1),
.about__images img:nth-child(1) {
    width: 63%;
  }
}
.about__images div:nth-child(2),
.about__images img:nth-child(2) {
  margin-top: -9%;
  margin-left: 19%;
}
@media (max-width: 700px) {
  .about__images div:nth-child(2),
.about__images img:nth-child(2) {
    width: 48%;
    margin-left: auto;
    position: absolute;
    top: 50%;
    right: 5%;
    margin: 0;
    transform: translate(0px, -50%);
  }
}
.about__images:not(._active) div {
  width: 0px !important;
}
.about__images div {
  overflow: hidden;
  transition: 0.9s;
}
@media (max-width: 700px) {
  .about__images div:nth-child(1) {
    width: calc(274 * var(--scale));
  }
  .about__images div:nth-child(1) img {
    width: calc(274 * var(--scale));
  }
}
.about__images div:nth-child(2) {
  width: calc(430 * var(--scale));
}
.about__images div:nth-child(2) img {
  width: calc(430 * var(--scale));
}
@media (max-width: 700px) {
  .about__images div:nth-child(2) {
    display: flex;
    justify-content: end;
    width: calc(220 * var(--scale));
  }
  .about__images div:nth-child(2) img {
    width: calc(220 * var(--scale));
  }
}

.popuplar__container {
  padding-top: calc(160 * var(--scale));
  padding-bottom: calc(160 * var(--scale));
}
@media (max-width: 700px) {
  .popuplar__container {
    padding-bottom: calc(70 * var(--scale));
  }
}
.popuplar__subtitle {
  font-size: calc(22 * var(--scale));
  line-height: 1.3;
  margin-top: calc(30 * var(--scale));
}
.popuplar__block {
  width: 100%;
  margin: 0px auto;
  max-width: calc(1440 * var(--scale));
  margin-top: calc(70 * var(--scale));
}
.popuplar__block .swiper-slide {
  position: relative;
}
.popuplar__block .swiper-slide img {
  width: 100%;
  filter: grayscale(100%);
  transition: 0.6s;
}
.popuplar__block .swiper-slide:hover img {
  filter: grayscale(0%);
}
.popuplar__block .swiper-slide:not(:first-child)::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/Line.svg);
  background-repeat: no-repeat;
  height: 100%;
  background-size: contain;
  width: calc(30 * var(--scale));
  object-fit: contain;
  transform: translate(-140%);
  background-position: center;
}
.popuplar .goo-track {
  margin-top: 10px;
}
@media (min-width: 998px) {
  .popuplar .goo-track {
    display: none;
  }
}

.swiper-progress {
  position: relative;
  width: 100%;
  max-width: calc(290 * var(--scale));
  margin: 0px auto;
}

.swiper-progress__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transform: translateY(-50%);
}

.swiper-progress__fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: #ed2f00;
  transition: width 0.6s ease;
}

.swiper-progress__points {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swiper-progress__points span {
  position: relative;
  z-index: 2;
  width: 5px;
  aspect-ratio: 1/1;
  transition: 0.3s ease;
  border-radius: 50%;
  background: #ed2f00;
}

.swiper-progress__points span._active {
  background: transparent;
  transition-delay: 0.4s;
}

.swiper-progress__points span._passed {
  background: transparent;
  transition-delay: 0.4s;
}

.swiper-progress__points span:first-child._active {
  background: #ed2f00;
}

@media (max-width: 700px) {
  .review {
    overflow: hidden;
  }
}
.review._v2 .goo-track {
  display: flex;
}
.review__container {
  padding-top: calc(160 * var(--scale));
}
.review__wp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: calc(20 * var(--scale));
  row-gap: calc(25 * var(--scale));
}
.review__head {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 998px) {
  .review__head {
    width: max-content;
  }
}
@media (max-width: 998px) {
  .review__title .review:not(._v2) .review__title {
    width: 100%;
    order: 3;
    margin-top: calc(0 * var(--scale));
  }
}
.review__swiper-wp .goo-track {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media (min-width: 700px) {
  .review__swiper-wp .goo-track {
    display: none;
  }
}
.review__block {
  position: relative;
  margin-top: calc(70 * var(--scale));
  overflow: visible;
  z-index: 1;
}
@media (max-width: 998px) {
  .review__block {
    margin-top: calc(60 * var(--scale));
  }
}
.review__decoration {
  position: absolute;
  aspect-ratio: 650/580;
  background: rgba(237, 111, 0, 0.1);
  transform: translate(-20%);
  top: -4%;
  z-index: -1;
  left: 1%;
  width: calc(450 * var(--scale));
  transition: 2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 700px) {
  .review__decoration {
    width: calc(450 * var(--scale));
  }
}
.review__slide {
  color: inherit;
  position: relative;
  padding: calc(20 * var(--scale)) calc(32 * var(--scale));
  background: rgba(237, 47, 0, 0.06);
  max-height: calc(370 * var(--scale));
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
@media (max-width: 700px) {
  .review__slide {
    max-height: 370px;
  }
}
.review__slide:hover {
  box-shadow: 0 12px 25px 0 rgba(0, 0, 0, 0.2);
  background: #d4091d22;
}
.review__slide:hover .review__hover {
  opacity: 1;
}
.review__slide:hover .review__hover img {
  opacity: 1;
  transform: translate(0);
}
.review__slide:hover .review__name span,
.review__slide:hover .review__name i {
  color: #fff;
}
@media (max-width: 998px) {
  .review__slide .review__name span,
.review__slide .review__name i {
    color: #fff;
  }
}
.review__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  font-size: calc(20 * var(--scale));
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: calc(24 * var(--scale));
  padding-top: 20%;
  color: #fff;
  background: rgba(212, 9, 29, 0.8);
}
.review__hover img {
  transition: 0.3s;
  width: calc(33 * var(--scale));
  transform: translate(-50%, 50%);
  opacity: 0;
}
@media (max-width: 998px) {
  .review__hover {
    opacity: 1;
  }
}
.review__top {
  display: grid;
  grid-template-columns: calc(110 * var(--scale)) 1fr;
  gap: calc(22 * var(--scale));
  align-items: center;
}
.review__avatar {
  position: relative;
  z-index: 3;
}
.review__avatar img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.review__name {
  line-height: 1.8;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
.review__name * {
  transition: 0.3s;
}
.review__name span {
  color: #d4091d;
}
.review__about {
  margin-top: calc(8 * var(--scale));
  font-style: italic;
  font-weight: 700;
  font-size: calc(20 * var(--scale));
  line-height: 0.9;
  color: #949494;
  font-family: var(--font3);
}
.review__text {
  margin-top: calc(20 * var(--scale));
  font-size: calc(17 * var(--scale));
  line-height: 1.7;
  flex: 0 1 auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media (max-width: 700px) {
  .review__text {
    -webkit-line-clamp: 7 !important;
  }
}
.review__progress {
  margin-top: calc(65 * var(--scale));
}
@media (min-width: 998px) {
  .review__progress {
    display: none;
  }
}

.news__container {
  padding-top: calc(115 * var(--scale));
}
@media (max-width: 700px) {
  .news__container {
    padding-top: calc(80 * var(--scale-mob));
  }
}
.news__head {
  width: 100%;
}
@media (max-width: 700px) {
  .news__head {
    width: max-content;
    margin-bottom: 0;
  }
}
.news__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .news__title {
    order: 3;
    margin-top: 20px;
  }
}
.news__block {
  position: relative;
  margin-top: calc(74 * var(--scale));
  display: grid;
  gap: calc(40 * var(--scale));
  grid-template-columns: repeat(3, 1fr);
  z-index: 1;
}
@media (max-width: 700px) {
  .news__block {
    gap: calc(14 * var(--scale-mob));
    grid-template-columns: repeat(2, 1fr);
  }
}
.news__decoration {
  position: absolute;
  aspect-ratio: 650/580;
  background: rgba(237, 111, 0, 0.1);
  transform: translate(-20%);
  top: -4%;
  z-index: -1;
  width: calc(650 * var(--scale));
  transition: 2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 700px) {
  .news__decoration {
    width: calc(250 * var(--scale));
  }
}
.news__item {
  color: inherit;
  width: 100%;
}
@media (max-width: 700px) {
  .news__item:last-child {
    display: none;
  }
}
.news__item:hover .news__img {
  box-shadow: 0 12px 25px 0 rgba(0, 0, 0, 0.2);
}
.news__item:hover .news__img::before {
  opacity: 1;
}
.news__item:hover .news__img::after {
  opacity: 2;
  transform: translate(0);
}
.news__item:hover .news__name {
  color: #d4091d;
}
.news__img {
  transition: 0.3s;
  width: 100%;
  position: relative;
}
.news__img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: rgba(212, 9, 29, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}
.news__img::after {
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-image: url(../img/iicon.svg);
  width: calc(40 * var(--scale));
  aspect-ratio: 1/1;
  background-size: contain;
  z-index: 3;
  transform: translate(-20px);
  opacity: 0;
  background-repeat: no-repeat;
}
.news__img img {
  aspect-ratio: 468/506;
  width: 100%;
  object-fit: cover;
}
.news__name {
  transition: 0.3s;
  padding-top: calc(32 * var(--scale));
  font-size: calc(18 * var(--scale));
  line-height: 1.3;
}
@media (max-width: 700px) {
  .news__name {
    padding-top: calc(31 * var(--scale-mob));
    font-size: calc(16 * var(--scale-mob));
  }
}
.news__txt {
  color: #949494;
  font-size: calc(15 * var(--scale));
  line-height: 1.8;
  margin-top: calc(20 * var(--scale));
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 700px) {
  .news__txt {
    font-size: calc(14 * var(--scale));
    line-height: 1.5;
  }
}
.news__date {
  margin-top: calc(18 * var(--scale));
  padding-top: calc(17 * var(--scale));
  border-top: 2px solid #949494;
  max-width: max-content;
  font-weight: 600;
  font-size: calc(14 * var(--scale));
}
@media (max-width: 700px) {
  .news__date {
    margin-top: calc(15 * var(--scale-mob));
    padding-top: calc(17 * var(--scale-mob));
    font-size: calc(14 * var(--scale-mob));
  }
}

.home {
  position: relative;
  z-index: 3;
}
.home__container {
  padding: 0 calc(13 * var(--scale));
}
.home__video {
  width: 100vw;
  left: 50%;
  transform: translate(-50%);
  position: relative;
}
.home__video video {
  object-fit: cover;
  aspect-ratio: 1640/792;
  width: 100%;
}
.home__swiper-wp .goo-track {
  width: calc(600 * var(--scale));
  margin: 0px auto;
  margin-top: calc(30 * var(--scale));
  margin-bottom: calc(70 * var(--scale));
}
@media (max-width: 700px) {
  .home__swiper-wp .goo-track {
    width: calc(350 * var(--scale-mob));
  }
}
.home__swiper {
  margin-top: calc(-100 * var(--scale));
  padding-bottom: calc(30 * var(--scale));
}
.home__slide {
  position: relative;
}
.home__slide:nth-child(3n+2) {
  top: calc(30 * var(--scale));
}
.home__slide:nth-child(3n) {
  top: calc(9 * var(--scale));
}
.home__slide:hover::before {
  opacity: 1;
}
.home__slide:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.home__slide::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(212, 9, 29, 0.6);
  opacity: 0;
  transition: 0.3s;
}
.home__slide::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -50%);
  content: "";
  background-image: url(../img/arr.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  width: calc(50 * var(--scale));
  aspect-ratio: 49/33;
  opacity: 0;
  transition: 0.3s;
}
.home__img {
  position: relative;
}
.home__img::before {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(98, 42, 139, 0.19) 39.9%, rgba(0, 0, 0, 0.6) 75.96%);
  width: 100%;
  height: 100%;
}
.home__img img {
  width: 100%;
  aspect-ratio: 154/108;
  object-fit: cover;
}
.home__desc {
  position: absolute;
  z-index: 3;
  bottom: 0;
  padding: calc(17 * var(--scale)) calc(10 * var(--scale));
  text-align: center;
  left: 0;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: calc(18 * var(--scale));
}
@media (max-width: 700px) {
  .home__desc {
    font-size: calc(14 * var(--scale-mob));
    padding: 6px;
    text-align: left;
  }
}
.home__form {
  display: flex;
  justify-content: center;
  gap: calc(60 * var(--scale));
  align-items: flex-start;
}
@media (max-width: 700px) {
  .home__form {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    transition: 0.5s;
    gap: calc(30 * var(--scale-mob));
    flex-direction: column;
    padding: calc(50 * var(--scale-mob)) calc(20 * var(--scale-mob));
    z-index: 12;
    background: #fff;
    justify-content: start;
    opacity: 0;
    pointer-events: none;
  }
  .home__form._active {
    opacity: 1;
    pointer-events: all;
  }
}
.home__mob-btn {
  display: none;
  background: #d4091d;
  color: #fff;
  border: none;
  margin-top: auto;
  padding: calc(15 * var(--scale)) calc(32 * var(--scale));
}
@media (max-width: 700px) {
  .home__mob-btn {
    display: flex;
    margin-top: calc(60 * var(--scale-mob));
    width: max-content;
    margin: 0px auto;
    font-size: 15px;
    margin-top: 50px;
    gap: 15px;
    justify-content: center;
    padding: calc(15 * var(--scale-mob)) calc(32 * var(--scale-mob));
  }
}
.home__mob-btn::after {
  display: none;
}
.home__form-btn {
  background: #d4091d;
  color: #fff;
  border: none;
  margin-top: auto;
  transition: 0.3s;
  padding: calc(15 * var(--scale)) calc(32 * var(--scale));
}
.home__form-btn:hover {
  background: var(--hover-red);
}
@media (max-width: 700px) {
  .home__form-btn {
    margin-top: calc(60 * var(--scale-mob));
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: calc(15 * var(--scale-mob)) calc(32 * var(--scale-mob));
  }
}
.home__form-btn::after {
  display: none;
}
.home__close {
  display: none;
}
@media (max-width: 700px) {
  .home__close {
    font-size: 20px;
    display: block;
    top: calc(15 * var(--scale-mob));
    right: calc(15 * var(--scale-mob));
    position: absolute;
  }
}

/* ============ база компонента ============ */
.goo-track {
  position: relative;
  transition: 0.6s;
}
@media (min-width: 700px) {
  .goo-track:hover {
    scale: 1.2;
  }
}

.goo-track::before {
  content: "";
  position: absolute;
  background: var(--panel-border);
}

.goo-track.is-vertical {
  width: 22px;
}

.goo-track.is-vertical::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  display: none;
}

.goo-track.is-horizontal {
  height: 22px;
}

@media (min-width: 700px) {
  .goo-track .goo-dots .goo-dot.is-active {
    scale: 1.05 !important;
  }
}
.goo-track.is-horizontal::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
  display: none;
}

.goo-dots {
  position: absolute;
  inset: 0;
  filter: url(#goo-merge);
  pointer-events: none;
}

.goo-dot {
  cursor: pointer;
  position: absolute;
  width: var(--goo-thumb-width);
  height: var(--goo-thumb-width);
  background: var(--accent-dim);
  border-radius: 50%;
  pointer-events: auto;
  transition: 1s ease;
  scale: 1.04;
}
.goo-dot.is-active {
  scale: 1.1;
}
.goo-dot.is-active ~ .goo-dot {
  scale: 1.2;
}

.goo-track.is-vertical .goo-dot {
  left: 50%;
  transform: translate(-50%, -50%);
}

.goo-track.is-horizontal .goo-dot {
  top: 50%;
  transform: translate(-50%, -50%);
}

.goo-dot.is-active {
  background: var(--accent);
}

.goo-thumb {
  cursor: pointer;
  position: absolute;
  background: var(--accent);
  border-radius: calc(var(--goo-thumb-width) / 2);
  pointer-events: auto;
  will-change: transform;
  transition: 0.5s;
}

.goo-thumb.is-easing {
  transition: transform 1520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.goo-track.is-vertical .goo-thumb {
  left: 50%;
  top: 0;
  width: var(--goo-thumb-width);
  margin-left: calc(var(--goo-thumb-width) / -2);
}

.goo-track.is-horizontal .goo-thumb {
  top: 50%;
  left: 0;
  height: var(--goo-thumb-width);
  margin-top: calc(var(--goo-thumb-width) / -2);
}

/* ============ скролл-блоки ============ */
.goo-scroll-block {
  position: relative;
  width: 300px;
  height: 320px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 1.5rem 2.3rem 1.5rem 1.5rem;
}

.goo-scroll-content {
  height: 100%;
  overflow-y: auto;
  padding-right: 0.4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.goo-scroll-content::-webkit-scrollbar {
  display: none;
}

.goo-scroll-content h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.goo-scroll-content p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 1rem;
}

.goo-scroll-block .goo-track {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  right: 0.9rem;
  cursor: pointer;
}

.custom-select {
  position: relative;
  width: 250px;
  font-size: calc(15 * var(--scale));
}
@media (max-width: 700px) {
  .custom-select {
    font-size: calc(16 * var(--scale-mob));
    width: 100% !important;
  }
}
.custom-select._v1 {
  width: calc(155 * var(--scale));
}
.custom-select._v2 {
  width: calc(255 * var(--scale));
}
.custom-select._v3 {
  width: calc(155 * var(--scale));
}
.custom-select._v4 {
  width: calc(211 * var(--scale));
}
.custom-select.active .custom-select__button,
.custom-select.active .custom-select__value {
  color: #d4091d;
  border-color: #d4091d;
}

/* Скрываем настоящий select */
.custom-select__native {
  display: none;
}

.select_custom-select__native {
  display: none;
}

.custom-select__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: calc(22 * var(--scale)) 0;
  font-weight: 500;
  border-bottom: 1px solid #252422;
  transition: 0.3s;
  cursor: pointer;
}
.custom-select__button > * {
  transition: 0.3s;
}
.custom-select__button:hover {
  border-color: #d4091d;
}
.custom-select__button:hover .custom-select__value {
  color: #d4091d;
}
.custom-select__button:hover .custom-select__arrow::before {
  background-image: url(../img/icon2.svg);
}
@media (max-width: 700px) {
  .custom-select__button {
    padding: calc(12 * var(--scale-mob)) 0;
  }
}

.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: max-content;
  box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.1);
  background: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  border-radius: 4px;
  transition: 0.25s;
  z-index: 10;
  max-width: calc(250 * var(--scale));
  min-width: 100%;
}

.custom-select__dropdown .custom-scroll {
  display: flex;
}
.custom-select__dropdown .custom-scroll__content {
  height: calc(170 * var(--scale));
  overflow-y: auto;
  scrollbar-width: none;
  border-radius: 5px;
}

.custom-select.active .custom-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__option {
  display: block;
  width: 100%;
  padding: calc(16 * var(--scale)) calc(28 * var(--scale));
  text-align: left;
  background: none;
  border: none;
  transition: 0.5s;
  cursor: pointer;
  position: relative;
}
.custom-select__option::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  right: 12px;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.2s;
  content: "";
  background-image: url(../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(16 * var(--scale));
  aspect-ratio: 1/1;
}
@media (max-width: 700px) {
  .custom-select__option::before {
    width: calc(16 * var(--scale-mob));
  }
}
@media (max-width: 700px) {
  .custom-select__option {
    padding: calc(12 * var(--scale-mob)) calc(24 * var(--scale-mob));
  }
}

.custom-select__option:hover,
.custom-select__option.active {
  background: #d4091d;
  padding-right: calc(30 * var(--scale));
  color: #fff !important;
}
.custom-select__option:hover::before,
.custom-select__option.active::before {
  opacity: 1;
}

.custom-select__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s;
  position: relative;
  width: 8px;
  aspect-ratio: 1/1;
}
.custom-select__arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/icon.png);
  width: 8px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-position: center;
  transition: 0.3s;
  background-repeat: no-repeat;
}
.custom-select__arrow img {
  display: none;
}

.custom-select.active .custom-select__arrow::before {
  transform: rotate(180deg);
  background-image: url(../img/icon2.svg);
}

.team {
  overflow: hidden;
  background: #000;
}
.team__container {
  padding-top: 100px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}
@media (max-width: 700px) {
  .team__container {
    display: block;
    flex-direction: column;
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.team__content {
  display: flex;
  flex-direction: column;
  height: calc(670 * var(--scale));
}
@media (max-width: 700px) {
  .team__content {
    height: auto;
  }
}
.team__head {
  color: #fff;
}
.team__title span {
  color: #d4091d;
}
.team__text {
  margin-top: calc(20 * var(--scale));
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--scale));
  max-width: calc(424 * var(--scale));
  line-height: 1.3;
  font-size: calc(22 * var(--scale));
}
@media (max-width: 700px) {
  .team__text {
    font-size: calc(17 * var(--scale));
    margin-bottom: 34px;
  }
}
.team__text p:nth-child(2) {
  font-size: calc(26 * var(--scale));
  font-weight: 600;
  font-style: italic;
  font-family: var(--font3);
}
@media (max-width: 700px) {
  .team__text p:nth-child(2) {
    font-size: calc(22 * var(--scale));
  }
}
.team__mouse {
  margin: 0 auto;
  margin-top: calc(70 * var(--scale));
}
@media (max-width: 700px) {
  .team__mouse {
    display: none;
  }
}
.team__scroll-wp {
  position: relative;
}
.team__scroll-wp._mob {
  display: none;
}
@media (max-width: 700px) {
  .team__scroll-wp._mob {
    display: block;
  }
  .team__scroll-wp._mob .team__block {
    margin-bottom: 30px;
    overflow: visible;
  }
  .team__scroll-wp._pc {
    display: none;
  }
}
.team .team__scroll-wp._pc .goo-track {
  position: absolute;
  top: calc(180 * var(--scale));
  left: calc(-80 * var(--scale));
  right: auto;
  /* отступ под трек */
  cursor: pointer;
}
.team .team__scroll-wp._pc .goo-track .goo-thumb {
  transition: 0s;
}
@media (min-width: 700px) {
  .team__block {
    scroll-behavior: smooth;
    max-height: calc(670 * var(--scale));
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: calc(100 * var(--scale));
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: end;
    transform: translate(-50vw);
    width: 100vw;
  }
  .team__block::-webkit-scrollbar {
    display: none;
  }
  .team__block .team__inner {
    width: 50vw;
    display: grid;
    gap: calc(20 * var(--scale));
    row-gap: calc(0 * var(--scale));
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 700px) {
  .team__item {
    padding-bottom: calc(40 * var(--scale));
  }
}
.team__img {
  width: 100%;
}
.team__img img {
  width: 100%;
  aspect-ratio: 241/262;
  object-fit: cover;
}
.team__name {
  line-height: 1.2;
  font-weight: 600;
  font-size: calc(18 * var(--scale));
  position: relative;
  padding: calc(30 * var(--scale)) 0;
}
@media (max-width: 700px) {
  .team__name {
    font-size: calc(18 * var(--scale-mob));
  }
}
.team__name::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 76px;
  border: 1px solid #949494;
}
.team__job {
  font-weight: 600;
  font-size: calc(14 * var(--scale));
  margin-top: calc(15 * var(--scale));
}
.ofices {
  margin-top: calc(130 * var(--scale));
}
@media (max-width: 700px) {
  .ofices {
    margin-top: calc(80 * var(--scale));
  }
}
.ofices__container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: calc(53 * var(--scale));
  padding-bottom: calc(170 * var(--scale));
}
@media (max-width: 700px) {
  .ofices__container {
    grid-template-columns: 1fr;
    padding-bottom: calc(120 * var(--scale));
  }
}
.ofices__text {
  margin-top: calc(20 * var(--scale));
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--scale));
  font-size: calc(22 * var(--scale));
  line-height: 1.15;
}
@media (max-width: 700px) {
  .ofices__text {
    font-size: calc(17 * var(--scale-mob));
    margin-top: calc(20 * var(--scale-mob));
  }
}
.ofices__text p:nth-child(2) {
  font-weight: 600;
  font-style: italic;
  font-size: calc(26 * var(--scale));
  font-family: var(--font3);
}
@media (max-width: 700px) {
  .ofices__text p:nth-child(2) {
    line-height: 1.3;
    font-size: calc(22 * var(--scale-mob));
  }
}
.ofices__list {
  display: flex;
  flex-direction: column;
}
.ofices__list._active .ofices__item {
  opacity: 1;
  transform: translate(0);
}
.ofices__item {
  padding: calc(35 * var(--scale)) 0;
  border-top: 2px solid #252422;
  border-bottom: 2px solid #252422;
  margin-bottom: -2px;
  transition: 0.3s;
  position: relative;
  opacity: 0;
  transform: translate(10%);
}
.ofices__item ._resp {
  transition: 0.8s;
}
.ofices__item:nth-child(2) {
  transition-delay: 0.1s;
}
.ofices__item:nth-child(3) {
  transition-delay: 0.2s;
}
.ofices__item:nth-child(4) {
  transition-delay: 0.3s;
}
.ofices__item:nth-child(5) {
  transition-delay: 0.4s;
}
.ofices__item:nth-child(6) {
  transition-delay: 0.5s;
}
.ofices__item:hover::before {
  background-image: url(../img/armap2.svg);
  transform: translate(0px, 50%) rotate(-45deg);
}
.ofices__item::before {
  position: absolute;
  bottom: 50%;
  transform: translate(0px, 50%);
  right: 0;
  content: "";
  background-image: url(../img/armap.svg);
  width: 42px;
  aspect-ratio: 42/29;
  transition: 0.3s;
  background-size: contain;
  background-repeat: no-repeat;
}
.ofices__item._active .ofices__map {
  opacity: 1;
}
.ofices__item._active::before {
  transform: translate(0) rotate(-45deg);
  bottom: calc(35 * var(--scale));
}
.ofices__item:not(._active):hover {
  border-color: #d4091d !important;
  z-index: 1;
}
.ofices__item:not(._active):hover .ofices__name {
  padding-left: calc(35 * var(--scale));
  color: #d4091d;
}
.ofices__map {
  transition: 0.3s;
  position: absolute;
  top: calc(35 * var(--scale));
  right: 0;
  opacity: 0;
  width: calc(285 * var(--scale));
}
@media (max-width: 700px) {
  .ofices__map {
    width: calc(170 * var(--scale));
    margin-top: calc(-12 * var(--scale));
  }
}
.ofices__map > img {
  width: 100%;
  aspect-ratio: 1/1;
}
@media (max-width: 700px) {
  .ofices__map > img {
    display: none;
  }
}
.ofices__map a {
  display: none;
}
@media (max-width: 700px) {
  .ofices__map a {
    display: flex;
    gap: calc(18 * var(--scale));
    padding: calc(15 * var(--scale));
    border: 1px solid #949494;
    width: 100%;
    font-size: calc(16 * var(--scale));
    font-weight: 500;
    justify-content: center;
    align-items: center;
    color: inherit;
  }
  .ofices__map a img {
    width: calc(19 * var(--scale));
  }
}
.ofices__name {
  transition: 0.5s;
  font-size: calc(32 * var(--scale));
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 700px) {
  .ofices__name {
    font-size: calc(24 * var(--scale));
  }
}
.ofices__name._active {
  padding-left: 0 !important;
  color: inherit !important;
}
.ofices__wrap {
  padding-top: calc(34 * var(--scale));
  display: flex;
  flex-direction: column;
  gap: calc(22 * var(--scale));
  padding-right: calc(300 * var(--scale));
}
@media (max-width: 700px) {
  .ofices__wrap {
    padding-right: 0;
  }
}
.ofices__country {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 2;
  transform: translate(50px);
  opacity: 0;
  transition: 0.5s;
}
._resp._active .ofices__country {
  opacity: 1;
  transform: translate(0);
}
.ofices__country:nth-child(2) {
  transition-delay: 0.1s;
}
.ofices__country:nth-child(3) {
  transition-delay: 0.2s;
}
.ofices__country:nth-child(4) {
  transition-delay: 0.3s;
}
.ofices__country:nth-child(5) {
  transition-delay: 0.4s;
}
.ofices__country span {
  margin-bottom: calc(10 * var(--scale));
  font-weight: 500;
  font-size: calc(20 * var(--scale));
}
.ofices__country a {
  font-weight: 500;
  font-size: calc(15 * var(--scale));
  color: inherit;
  display: flex;
  gap: 5px;
}
.ofices__country a ._text-hover {
  margin-bottom: 0;
}
.ofices__country a span {
  color: inherit;
  font-size: calc(15 * var(--scale));
  font-weight: 500;
}
@media (max-width: 700px) {
  .ofices__country a img {
    order: 2;
    transform: translate(calc(10 * var(--scale)), calc(-25 * var(--scale)));
  }
}
.ofices__country ._mail {
  color: #f30000;
}
.ofices__country ._mail:hover {
  text-decoration: underline;
}

.get-consult {
  position: relative;
  z-index: 1;
}
.get-consult__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.get-consult__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.get-consult__bg img:nth-child(2) {
  display: none;
}
@media (max-width: 700px) {
  .get-consult__bg img:nth-child(2) {
    display: block;
  }
  .get-consult__bg img:nth-child(1) {
    display: none;
  }
}
.get-consult__container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: calc(50 * var(--scale));
  padding-top: calc(90 * var(--scale));
  padding-bottom: calc(50 * var(--scale));
}
.get-consult__container_2 {
  grid-template-columns: 1fr 2.1fr;
  margin-top: 80px;
}
@media (max-width: 700px) {
  .get-consult__container {
    gap: calc(60 * var(--scale));
    grid-template-columns: 1fr;
    padding-top: calc(60 * var(--scale));
    padding-bottom: calc(85 * var(--scale));
  }
}
.get-consult__left {
  color: #fff;
}
.get-consult__left h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: calc(58 * var(--scale));
  gap: calc(10 * var(--scale));
  margin-bottom: calc(30 * var(--scale));
}
@media (max-width: 700px) {
  .get-consult__left h2 {
    font-size: calc(32 * var(--scale));
    gap: 0;
  }
}
.get-consult__left h2 span {
  background: rgba(212, 9, 29, 0.6);
  padding: calc(5 * var(--scale)) calc(20 * var(--scale));
}
.get-consult__left h2 img {
  transform: translate(0px, 40%);
  width: calc(37 * var(--scale));
}
@media (max-width: 700px) {
  .get-consult__left h2 img {
    width: calc(23 * var(--scale));
  }
}
.get-consult__left p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: calc(20 * var(--scale));
}
.get-consult__left p:nth-child(3) {
  display: none;
}
@media (max-width: 700px) {
  .get-consult__left p {
    font-size: calc(17 * var(--scale));
  }
  .get-consult__left p:nth-child(3) {
    display: inline;
  }
  .get-consult__left p:nth-child(2) {
    display: none;
  }
}
.get-consult__left p span {
  background: rgba(212, 9, 29, 0.6);
  padding: calc(2 * var(--scale)) calc(10 * var(--scale));
}
@media (max-width: 700px) {
  .get-consult__left p span {
    padding: calc(3 * var(--scale)) calc(5 * var(--scale));
    display: block;
    max-width: max-content;
  }
}
.get-consult__form {
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: calc(50 * var(--scale)) calc(65 * var(--scale));
}
@media (max-width: 700px) {
  .get-consult__form {
    padding: calc(35 * var(--scale));
  }
}
.get-consult__form_2 {
  padding-left: calc(360 * var(--scale));
}
@media (max-width: 700px) {
  .get-consult__form_2 {
    padding: calc(35 * var(--scale));
  }
}
.get-consult__user {
  position: absolute;
  left: calc(80 * var(--scale));
  max-width: calc(220 * var(--scale));
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .get-consult__user {
    position: relative;
    left: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
}
.get-consult__user img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: calc(170 * var(--scale));
}
.get-consult__user span {
  font-size: calc(18 * var(--scale));
  font-weight: 600;
  padding-top: 20px;
}
.get-consult__user p {
  font-size: calc(14 * var(--scale));
  font-weight: 600;
  padding-top: calc(20 * var(--scale));
  margin-top: calc(20 * var(--scale));
  position: relative;
}
.get-consult__user p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: calc(80 * var(--scale));
  height: 1px;
  background: #333333;
}

.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
  background: #fff;
  position: relative;
}
.country-select::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  right: -15px;
  content: "";
  background-image: url(../img/ars.svg);
  width: 9px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.country-select span {
  font-size: 16px;
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  margin-top: 2px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

.country-code {
  display: none;
}

.country-dropdown div {
  padding: 4px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.country-dropdown div:hover {
  background: #f0f0f0;
}

input.phone {
  flex: 1;
  padding: 4px 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: calc(11 * var(--scale));
  position: relative;
}
.form-block._send .form-block__thanks {
  opacity: 1;
  pointer-events: all;
}
.form-block__thanks {
  position: absolute;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 4;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  gap: calc(40 * var(--scale));
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
.form-block__thanks h3 {
  display: flex;
  flex-direction: column;
  font-size: calc(24 * var(--scale));
  font-weight: 600;
}
.form-block__thanks h3 span {
  color: #d4091d;
}
.form-block__thanks div {
  background: #d4091d;
  padding: calc(15 * var(--scale)) calc(32 * var(--scale));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(15 * var(--scale));
  cursor: pointer;
}
.form-block__inp-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(13 * var(--scale));
}
.form-block__input {
  font-size: 16px;
  position: relative;
  background: #fff;
}
.form-block__input._phone {
  padding-left: calc(28 * var(--scale));
}
.form-block__input._phone input {
  padding-top: calc(16 * var(--scale));
  padding-bottom: calc(16 * var(--scale));
}
.form-block__input._error {
  border: 1px solid red;
}
.form-block__input._active label {
  font-size: calc(11 * var(--scale));
  top: 0;
  transform: translate(0px, 50%);
}
.form-block__input input {
  font-size: calc(16 * var(--scale));
  padding: calc(12 * var(--scale)) calc(28 * var(--scale));
  width: 100%;
  padding-top: calc(20 * var(--scale));
  background: transparent;
  border: none;
}
.form-block__input input::placeholder {
  font-size: calc(16 * var(--scale));
}
.form-block__input label {
  transition: 0.3s;
  position: absolute;
  padding-left: calc(30 * var(--scale));
  top: 50%;
  transform: translate(0px, -50%);
  width: 100%;
  left: 0;
  pointer-events: none;
  color: #949494;
  font-size: calc(16 * var(--scale));
}
.form-block__check {
  margin-top: calc(5 * var(--scale));
}
.form-block__check input {
  display: none;
}
.form-block__check input:checked + label::after {
  display: block;
}
.form-block__check label {
  font-weight: 500;
  font-size: calc(13 * var(--scale));
  position: relative;
  padding-left: calc(37 * var(--scale));
  font-weight: 500;
  line-height: 1.2;
  display: block;
}
.form-block__check label a {
  color: #d4091d;
}
.form-block__check label::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  width: calc(22 * var(--scale));
  aspect-ratio: 1/1;
  border: 1px solid #252422;
}
.form-block__check label::after {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: calc(5 * var(--scale));
  content: "";
  background-image: url(../img/chc.svg);
  width: calc(12 * var(--scale));
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain;
}
.form-block button {
  background: #d4091d;
  color: #fff;
  border: none;
  margin-top: calc(20 * var(--scale));
}
@media (max-width: 700px) {
  .form-block button {
    margin-left: auto;
    margin-right: auto;
  }
}
.form-block button::after {
  display: none;
}

.text-reveal .word-wrap {
  display: inline-block;
  vertical-align: bottom;
}

.text-reveal .word {
  opacity: 0;
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

.why-us {
  overflow-x: clip;
  margin-top: calc(220 * var(--scale));
}
.why-us__container {
  display: flex;
  gap: calc(32 * var(--scale));
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .why-us__container {
    flex-direction: column;
  }
}
.why-us__left {
  width: 57%;
}
@media (max-width: 700px) {
  .why-us__left {
    width: 100%;
  }
}
.why-us__title {
  font-size: calc(36 * var(--scale));
  margin-left: auto;
  margin-right: auto;
  max-width: calc(512 * var(--scale));
}
@media (max-width: 700px) {
  .why-us__title {
    margin-left: 0;
    font-size: calc(24 * var(--scale));
  }
}
.why-us__btn {
  margin-left: auto;
  margin-top: 20px;
}
.why-us__btn::after {
  transform: rotate(45deg);
}
.why-us__img {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1.35fr;
  gap: calc(30 * var(--scale));
  width: calc(100% + 80 * var(--scale));
  align-items: center;
  transform: translate(calc(-80 * var(--scale)));
  position: relative;
}
@media (max-width: 700px) {
  .why-us__img {
    width: 130vw;
    left: 50%;
    position: relative;
    transform: translate(-50%);
    gap: 0;
    align-items: flex-start;
    grid-template-columns: 1.5fr 1fr 1.5fr;
  }
  .why-us__img div:nth-child(1),
.why-us__img img:nth-child(1) {
    transform: translate(10%);
  }
  .why-us__img div:nth-child(2),
.why-us__img img:nth-child(2) {
    transform: translate(0px, 22%) scale(1.25);
  }
  .why-us__img div:nth-child(4),
.why-us__img img:nth-child(4) {
    transform: translate(0px, 35%);
  }
}
.why-us__img._ready div {
  width: 0%;
  transition: 0.5s;
}
.why-us__img._ready._active div {
  width: 100%;
}
.why-us__img div,
.why-us__img img {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 700px) {
  .why-us__img div:nth-child(3),
.why-us__img img:nth-child(3) {
    display: none;
  }
}
.why-us__img_2 {
  width: calc(100% + 120 * var(--scale));
  transform: translate(0);
  grid-template-columns: 1.2fr 1fr;
}
@media (min-width: 700px) {
  .why-us__img_2 {
    margin-top: calc(-50 * var(--scale));
  }
  .why-us__img_2 img:nth-child(2) {
    transform: translate(0px, -10%);
  }
}
@media (max-width: 700px) {
  .why-us__img_2 {
    width: 100%;
    display: none;
  }
}
.why-us__tr {
  position: absolute;
  z-index: -1;
  transition: 0.6s;
  opacity: 0;
}
.why-us__img._active .why-us__tr {
  transform: translate(0);
  opacity: 1;
}
.why-us__tr_1 {
  left: 0;
  width: calc(440 * var(--scale)) !important;
  transform: translate(-50%);
}
@media (max-width: 700px) {
  .why-us__tr_1 {
    width: calc(340 * var(--scale)) !important;
    top: -28%;
    left: -8%;
  }
}
.why-us__tr_2 {
  right: 10%;
  width: calc(600 * var(--scale)) !important;
  bottom: calc(-50 * var(--scale));
  transform: translate(0px, 50%);
  transition-delay: 0.3s;
}
@media (max-width: 700px) {
  .why-us__tr_2 {
    right: -5%;
    bottom: -15%;
    width: calc(500 * var(--scale)) !important;
  }
}
.why-us__tr_3 {
  right: 0%;
  width: calc(600 * var(--scale)) !important;
  top: 5%;
  transform: translate(50%);
  transition-delay: 0.6s;
}
.why-us__tr_4 {
  right: 0%;
  width: calc(450 * var(--scale)) !important;
  bottom: -5%;
  transform: translate(0px, 50%);
  transition-delay: 0.9s;
}
.why-us__right {
  width: calc(40% - 32 * var(--scale));
}
.why-us__txt {
  margin-top: calc(25 * var(--scale));
  font-size: calc(22 * var(--scale));
  font-style: italic;
  line-height: 1.4;
  color: #252422;
  font-weight: 500;
  font-family: var(--font3);
}
.why-us__bigtext {
  width: 100%;
  margin-top: calc(35 * var(--scale));
  font-size: calc(20 * var(--scale));
  line-height: 1.4;
  color: #252422;
  font-weight: 500;
}

.footer {
  background: #380001;
}
.footer__logo {
  width: 100%;
}
.footer__logo img {
  width: 100%;
}
.footer__container {
  margin-top: calc(70 * var(--scale));
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: calc(20 * var(--scale));
  color: #fff;
  padding-bottom: calc(55 * var(--scale));
}
@media (max-width: 998px) {
  .footer__container {
    grid-template-columns: 1fr;
    margin-top: calc(55 * var(--scale));
  }
}
.footer__hello {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__hello span {
  font-size: calc(24 * var(--scale));
}
.footer__form {
  margin-top: calc(20 * var(--scale));
  display: flex;
  border-bottom: 1px solid #fff;
  max-width: calc(526 * var(--scale));
}
.footer__form button {
  width: calc(37 * var(--scale));
}
.footer__form button:hover img {
  transform: translate(15px);
}
.footer__form button img {
  width: 100%;
  transition: 0.3s;
}
.footer__form .form-block__input {
  width: 100%;
  background: transparent;
  color: #fff;
}
.footer__form .form-block__input input {
  color: #fff;
  padding-left: 0;
}
.footer__form .form-block__input label {
  color: #ffff;
  padding-left: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.footer__last {
  margin-top: calc(90 * var(--scale));
  display: flex;
  flex-direction: column;
  font-size: calc(15 * var(--scale));
  gap: calc(20 * var(--scale));
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 700px) {
  .footer__last {
    margin-top: calc(45 * var(--scale));
  }
}
.footer__last a {
  color: inherit;
}
.footer__last a:hover {
  text-decoration: underline;
}
.footer__last p {
  font-size: calc(16 * var(--scale));
  font-weight: 500;
}
.footer__right {
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .footer__imf {
    font-size: calc(16 * var(--scale));
  }
  .footer__imf br {
    display: none;
  }
}
.footer__links {
  font-size: calc(32 * var(--scale));
  margin-top: calc(10 * var(--scale));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(10 * var(--scale));
}
@media (max-width: 700px) {
  .footer__links {
    font-size: calc(24 * var(--scale));
    gap: calc(30 * var(--scale));
    margin-top: calc(30 * var(--scale));
  }
}
.footer__links a {
  color: #fff;
}
.footer__social {
  margin-top: calc(18 * var(--scale));
  display: flex;
  align-items: center;
  gap: calc(40 * var(--scale));
}
@media (max-width: 700px) {
  .footer__social {
    margin-top: calc(30 * var(--scale));
  }
}
.footer__social a {
  transition: 0.3s;
}
.footer__social a:hover {
  scale: 1.1;
}
.footer__develipment {
  margin-top: auto;
  margin-left: auto;
  padding-top: calc(20 * var(--scale));
  font-weight: 600;
}
@media (max-width: 700px) {
  .footer__develipment {
    text-align: center;
    width: 100%;
  }
}
.footer__develipment a {
  color: #d4091d;
}
.footer__develipment a:hover {
  text-decoration: underline;
}

.popup.popup_nabor {
  padding: 0;
}
.popup.popup_nabor:not(._active) .popup__body {
  transform: scale(1) translate(100%);
}
.popup.popup_nabor .popup__content {
  align-items: flex-end;
}
.popup.popup_nabor .popup__content .popup__body {
  height: 100vh;
  overflow: auto;
  padding: calc(80 * var(--scale));
  padding-top: calc(180 * var(--scale));
}
@media (max-width: 700px) {
  .popup.popup_nabor .popup__content .popup__body {
    padding: calc(30 * var(--scale));
    padding-top: calc(80 * var(--scale));
  }
}
.popup.popup_nabor .popup__close:hover {
  color: #ae0819;
}
.popup.popup_nabor .popup__title {
  font-size: calc(48 * var(--scale));
}
@media (max-width: 700px) {
  .popup.popup_nabor .popup__title {
    font-size: calc(32 * var(--scale));
  }
}
.popup.popup_nabor .popup__subtitle {
  margin-top: calc(32 * var(--scale));
  font-weight: 600;
  font-style: italic;
  font-size: calc(20 * var(--scale));
  line-height: 1.5;
  font-family: var(--font3);
  max-width: calc(600 * var(--scale));
}
.popup.popup_nabor .form-block {
  margin-top: calc(42 * var(--scale));
  max-width: calc(570 * var(--scale));
}
.popup.popup_nabor .form-block__input {
  border: 1px solid #333;
}

.custom-scroll__bar {
  position: absolute;
  width: 4px;
  border-radius: 4px;
  height: 100%;
  border: 0.5px solid #d4091d;
  right: -10px;
  top: 0;
}
.custom-scroll__bar .custom-scroll__thumb {
  background: #d4091d;
  width: 6px;
  border-radius: 5px;
  left: -2px;
  cursor: pointer;
  position: relative;
}

@media (max-width: 700px) {
  .sablon-two.card-2 .sablon-two__container {
    display: none !important;
  }
}
.sablon-two__container {
  padding-bottom: calc(115 * var(--scale));
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .sablon-two__container {
    padding-bottom: calc(80 * var(--scale));
  }
}
.sablon-two__top {
  max-width: max-content;
  margin-left: auto;
}
@media (max-width: 700px) {
  .sablon-two__top {
    order: 2;
    margin: 0px auto;
  }
}
.sablon-two__wp {
  display: flex;
  align-items: center;
  gap: calc(50 * var(--scale));
  margin-top: calc(50 * var(--scale));
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .sablon-two__wp {
    margin-top: calc(20 * var(--scale));
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.sablon-two__switch {
  display: flex;
  gap: calc(30 * var(--scale));
}
.sablon-two__switch a {
  background: #f3ebef;
  border-radius: 4px;
  color: inherit;
  z-index: 1;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  padding: calc(15 * var(--scale)) calc(22 * var(--scale));
}
.sablon-two__switch a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  height: 100%;
  width: 0;
  background: #d4091d;
  transition: 0.3s;
}
.sablon-two__switch a:hover {
  color: #fff;
}
.sablon-two__switch a:hover::before {
  width: 100%;
}
.sablon-two__switch a._active {
  color: #fff;
  background: #d4091d;
}
.sablon-two__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(38 * var(--scale));
}
@media (max-width: 700px) {
  .sablon-two__block {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(13 * var(--scale));
    margin-top: calc(50 * var(--scale));
  }
}
.sablon-two__block .news__decoration {
  top: calc(-50 * var(--scale));
}
.sablon-two__seo-txt {
  z-index: 1;
  grid-column: auto/span 3;
  position: relative;
  padding: calc(80 * var(--scale));
  color: #fff;
  display: flex;
  max-width: calc(900 * var(--scale));
  margin: 0px auto;
  flex-direction: column;
  line-height: 1.35;
  gap: 20px;
  font-size: calc(22 * var(--scale));
}
@media (max-width: 700px) {
  .sablon-two__seo-txt {
    grid-column: auto/span 2;
    padding: calc(40 * var(--scale)) 0;
    font-size: calc(20 * var(--scale));
  }
}
.sablon-two__seo-txt i {
  font-family: var(--font3);
  font-weight: 600;
  font-size: calc(26 * var(--scale));
}
@media (max-width: 700px) {
  .sablon-two__seo-txt i {
    font-size: calc(24 * var(--scale));
  }
}
.sablon-two__seo-txt a {
  margin-left: auto;
  transform: translate(50%);
  color: #fff;
}
@media (max-width: 700px) {
  .sablon-two__seo-txt a {
    transform: translate(0);
  }
}
.sablon-two__seo-txt a:hover::after {
  background-image: url(../img/hh.svg);
}
.sablon-two__seo-txt a::after {
  background-image: url(../img/hh.svg);
}
.sablon-two__seo-txt::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  z-index: -1;
  width: 100vw;
  background: #000;
  height: 100%;
}
.sablon-two__btn-2 {
  margin-top: calc(40 * var(--scale));
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .sablon-two__btn-2 {
    font-size: 15px;
    padding: calc(18 * var(--scale-mob)) calc(62 * var(--scale-mob));
  }
  .sablon-two__btn-2::after {
    width: 20px;
  }
}

.pagination-points {
  display: flex;
  justify-content: center;
  gap: calc(10 * var(--scale));
  margin-top: calc(80 * var(--scale));
}
@media (max-width: 700px) {
  .pagination-points {
    margin-top: calc(50 * var(--scale));
  }
}
.pagination-points a:not(._btn) {
  width: calc(50 * var(--scale));
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s;
  color: #333;
  font-weight: 500;
  border-radius: 4px;
}
.pagination-points a:not(._btn)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0%;
  background: rgba(237, 111, 0, 0.1);
  height: 100%;
  transition: 0.4s;
  border-radius: 4px;
}
.pagination-points a:not(._btn):hover::after {
  opacity: 1;
  width: 100%;
}
.pagination-points a:not(._btn)._active {
  color: #fff;
  background: #ed2f00;
}
.pagination-points a:not(._btn)::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ed2f00;
}
.pagination-points a._btn:hover::after {
  background-image: url(../img/Новости/hw.svg);
}

.directions {
  background-image: url(../img/bgy.png);
  background-size: 100% 100%;
}
.directions__top-wp {
  margin-top: calc(35 * var(--scale));
}
@media (max-width: 700px) {
  .directions__top-wp {
    width: 100vw;
    padding-bottom: calc(50 * var(--scale));
  }
}
.directions__top {
  border-bottom: 1px solid #d5d5d5;
  display: grid;
  grid-template-columns: 1.2fr repeat(8, 1fr);
  gap: calc(30 * var(--scale));
}
@media (max-width: 700px) {
  .directions__top {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }
}
.directions__top > a, .directions__top > div {
  padding: calc(15 * var(--scale)) 0;
  font-weight: 600;
  font-size: calc(16 * var(--scale)) 0;
  color: #333;
  display: flex;
  align-items: center;
  line-height: 1.2;
  position: relative;
  transition: 0.3s;
}
@media (max-width: 700px) {
  .directions__top > a._pc, .directions__top > div._pc {
    display: none;
  }
}
.directions__top > a::before, .directions__top > div::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 105%;
  rotate: 25deg;
  border: 1px solid rgba(148, 148, 148, 0.2);
}
.directions__top > a:nth-child(1) div, .directions__top > div:nth-child(1) div {
  transform: translate(-10%, 90%);
}
.directions__top > a:last-child span, .directions__top > div:last-child span {
  margin: 0px auto;
  display: block;
  font-size: calc(46 * var(--scale));
  transform: translate(0px, -25%);
}
.directions__top > a:last-child::before, .directions__top > div:last-child::before {
  display: none;
}
.directions__top > a div, .directions__top > div div {
  position: absolute;
  bottom: 0;
  transform: translate(-30%, 90%);
  opacity: 0;
  transition: 0.3s;
  border: none;
}
.directions__top > a .custom-select__dropdown .custom-select__option, .directions__top > div .custom-select__dropdown .custom-select__option {
  color: #333;
  display: flex;
  gap: 10px;
  padding-right: 30px;
}
@media (min-width: 700px) {
  .directions__top > a .custom-select__dropdown .custom-select__option._mob, .directions__top > div .custom-select__dropdown .custom-select__option._mob {
    display: none;
  }
}
.directions__top > a:hover, .directions__top > div:hover {
  color: #d4091d;
}
.directions__top > a:hover .custom-select__dropdown, .directions__top > div:hover .custom-select__dropdown {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.directions__top > a:hover div, .directions__top > div:hover div {
  border: none;
  color: #fff;
  opacity: 1;
}
.directions__top > a:hover div::before, .directions__top > div:hover div::before {
  width: 100%;
}
.directions__top > a:hover div::after, .directions__top > div:hover div::after {
  background-image: url(../img/wt.svg);
}
.directions__top > a ul, .directions__top > div ul {
  position: absolute;
  right: 0;
  left: auto;
}
@media (max-width: 700px) {
  .directions__top > a ul, .directions__top > div ul {
    right: calc(30 * var(--scale));
  }
}
.directions__content {
  display: flex;
  flex-direction: column;
  gap: calc(35 * var(--scale));
  margin-top: calc(40 * var(--scale));
  margin-bottom: calc(10 * var(--scale));
  font-size: calc(22 * var(--scale));
  line-height: 1.4;
}
@media (max-width: 700px) {
  .directions__content {
    font-size: calc(18 * var(--scale));
    margin-bottom: 40px;
  }
}
.directions__content ul {
  line-height: 1.4;
}
.directions__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(26 * var(--scale));
  margin-top: calc(40 * var(--scale));
}
@media (max-width: 700px) {
  .directions__block {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
}
.directions__item {
  box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  overflow: hidden;
  color: inherit;
}
.directions__img {
  width: 100%;
}
.directions__img img {
  width: 100%;
  aspect-ratio: 350/180;
  object-fit: cover;
}
.directions__wp {
  padding: calc(22 * var(--scale));
  padding-top: 0;
}
@media (max-width: 700px) {
  .directions__wp {
    padding: calc(12 * var(--scale));
  }
}
.directions__icon {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  width: calc(113 * var(--scale));
  position: relative;
  z-index: 2;
  margin-top: -20%;
}
@media (max-width: 700px) {
  .directions__icon {
    width: calc(90 * var(--scale));
  }
}
.directions__icon img {
  width: 100%;
}
.directions__name {
  font-weight: 600;
  font-size: calc(20 * var(--scale));
  text-decoration: underline;
  color: #333;
}
@media (max-width: 700px) {
  .directions__name {
    font-size: calc(17 * var(--scale));
  }
}
.directions__text {
  font-size: calc(15 * var(--scale));
  padding-top: calc(15 * var(--scale));
  line-height: 2;
  margin-top: calc(20 * var(--scale));
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 700px) {
  .directions__text {
    font-size: calc(15 * var(--scale));
    line-height: 1.5;
  }
}
.directions__text::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 2px;
  width: 25%;
  background: #949494;
}

.directions-select {
  position: relative;
}
.directions-select._dark {
  background: #000;
  color: #fff;
}
.directions-select._dark .directions-select__container {
  padding-top: calc(80 * var(--scale));
  padding-bottom: calc(110 * var(--scale));
}
@media (max-width: 700px) {
  .directions-select._dark .directions-select__container {
    padding-bottom: 70px;
  }
}
.directions-select._dark .directions-select__item {
  color: #fff;
}
.directions-select__container {
  padding-bottom: calc(90 * var(--scale));
}
.directions-select__bgr {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(450 * var(--scale));
}
@media (max-width: 700px) {
  .directions-select__bgr {
    width: 200px;
  }
}
.directions-select__bgr img {
  width: 100%;
}
.directions-select__title {
  font-size: calc(36 * var(--scale));
}
.directions-select__block {
  margin-top: calc(50 * var(--scale));
  display: flex;
  flex-wrap: wrap;
  gap: calc(30 * var(--scale));
}
@media (max-width: 700px) {
  .directions-select__block {
    margin-top: calc(40 * var(--scale));
    gap: calc(20 * var(--scale));
  }
}
.directions-select__item {
  padding: calc(15 * var(--scale)) calc(22 * var(--scale));
}
.directions-select__item::after {
  display: none;
}

.popup .popup__title {
  font-size: calc(50 * var(--scale));
}
@media (max-width: 700px) {
  .popup .popup__title {
    font-size: calc(32 * var(--scale));
  }
}
.popup .popup__text {
  margin-top: calc(40 * var(--scale));
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  gap: calc(30 * var(--scale));
}
.popup .popup__text ol {
  padding-left: calc(30 * var(--scale));
}
.popup .popup__text ul {
  padding-left: calc(30 * var(--scale));
}
.popup .popup__text ul li {
  list-style-type: disc;
}
@media (max-width: 700px) {
  .popup {
    padding: 0;
  }
  .popup .popup__body {
    padding: 40px 20px;
  }
}

.card-slider {
  margin-top: calc(-70 * var(--scale));
}
@media (max-width: 700px) {
  .card-slider {
    margin-top: calc(0 * var(--scale));
  }
}
.card-slider__container .goo-track {
  margin-top: calc(30 * var(--scale));
  margin-left: auto;
  margin-right: auto;
}
.card-slider__swiper {
  width: 100vw;
  left: 50%;
  transform: translate(-50%);
  position: relative;
}
.card-slider__info {
  position: absolute;
  top: calc(30 * var(--scale));
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 700px) {
  .card-slider__info {
    top: 0;
  }
}
.card-slider__name {
  padding: calc(15 * var(--scale)) calc(75 * var(--scale));
  padding-right: calc(40 * var(--scale));
  font-weight: 600;
  font-size: calc(88 * var(--scale));
  color: #fff;
  background: rgba(212, 9, 29, 0.7);
}
@media (max-width: 700px) {
  .card-slider__name {
    font-size: calc(28 * var(--scale));
    padding: calc(12 * var(--scale)) calc(20 * var(--scale));
  }
}
.card-slider__social {
  margin-top: 10px;
  padding: calc(10 * var(--scale)) calc(80 * var(--scale));
  padding-right: calc(15 * var(--scale));
  background: rgba(212, 9, 29, 0.7);
  display: flex;
  align-items: center;
  gap: calc(35 * var(--scale));
}
@media (max-width: 700px) {
  .card-slider__social {
    margin-top: 0;
    padding: calc(10 * var(--scale)) calc(20 * var(--scale));
  }
}
.card-slider__social ul {
  display: flex;
  flex-direction: column;
  gap: calc(15 * var(--scale));
}
@media (max-width: 700px) {
  .card-slider__social ul {
    gap: calc(10 * var(--scale));
  }
}
.card-slider__social ul a {
  display: flex;
  gap: calc(22 * var(--scale));
  color: #fff;
  font-weight: 700;
  font-style: italic;
  font-family: var(--font3);
  font-size: calc(16 * var(--scale));
  text-decoration: underline #ffffff8c;
}
@media (max-width: 700px) {
  .card-slider__social ul a {
    gap: calc(18 * var(--scale));
    font-size: calc(14 * var(--scale));
  }
}
.card-slider__social ul a:hover {
  text-decoration: none;
}
.card-slider__social ul a img {
  width: calc(23 * var(--scale));
}
@media (max-width: 700px) {
  .card-slider__social ul a img {
    width: calc(20 * var(--scale));
  }
}
.card-slider__logo {
  width: calc(113 * var(--scale));
}
@media (max-width: 700px) {
  .card-slider__logo {
    width: calc(70 * var(--scale));
  }
}
.card-slider__logo img {
  width: 100%;
}
.card-slider__video-slide {
  position: relative;
  display: flex;
}
.card-slider__video-slide video {
  width: 100%;
  aspect-ratio: 1640/703;
  object-fit: cover;
}
@media (max-width: 700px) {
  .card-slider__video-slide video {
    aspect-ratio: 1/1.2;
  }
}
.card-slider__img-slide {
  display: flex;
}
.card-slider__img-slide img {
  width: 100%;
  aspect-ratio: 1640/703;
  object-fit: cover;
}
@media (max-width: 700px) {
  .card-slider__img-slide img {
    aspect-ratio: 1/1.2;
  }
}
.card-slider__mini-slider {
  margin-top: calc(-90 * var(--scale));
}
@media (max-width: 700px) {
  .card-slider__mini-slider {
    margin-top: calc(-60 * var(--scale));
  }
}
.card-slider__mini-slider .card-slider__img-slide img,
.card-slider__mini-slider .card-slider__video-slide video {
  aspect-ratio: 173/123;
}
.card-slider__mini-slider .video-slide__play {
  width: calc(40 * var(--scale));
  z-index: 2;
}
.card-slider__mini-slider .swiper-slide {
  cursor: pointer;
  position: relative;
}
.card-slider__mini-slider .swiper-slide:hover::before {
  opacity: 0.6;
}
.card-slider__mini-slider .swiper-slide::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #d4091d;
  opacity: 0;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.video-slide._playing .video-slide__play {
  opacity: 0;
}
.video-slide__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  width: calc(80 * var(--scale));
  cursor: pointer;
}
@media (max-width: 700px) {
  .video-slide__play {
    width: calc(60 * var(--scale));
  }
}
.video-slide__play img {
  width: 100%;
}
.video-slide__bottom {
  position: absolute;
  bottom: calc(120 * var(--scale));
  z-index: 5;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 10px;
  max-width: calc(1300 * var(--scale));
  display: grid;
  gap: calc(20 * var(--scale));
  align-items: center;
  grid-template-columns: max-content 1fr;
}
@media (max-width: 700px) {
  .video-slide__bottom {
    bottom: calc(90 * var(--scale));
    max-width: 90%;
  }
}
.video-slide__timer {
  font-weight: 600;
  font-size: calc(13 * var(--scale));
  color: #333;
}
.video-slide__progressbar {
  border: 1px solid #fff;
  border-radius: 2px;
  height: 3px;
  position: relative;
  cursor: pointer;
}
.video-slide__progressbar span {
  height: 4px;
  background: #d4091d;
  position: absolute;
  top: -1px;
  border-radius: 2px;
  left: -1px;
}
.video-slide__progressbar span::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  right: 0;
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ed2f00;
}

.card-info__block {
  margin-top: calc(40 * var(--scale));
  display: grid;
  grid-template-columns: 2.15fr 0.8fr 1.6fr 2.05fr;
}
@media (max-width: 700px) {
  .card-info__block {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.card-info__wp {
  padding: 0px calc(35 * var(--scale));
  border-right: 1px solid #d0d0d0;
}
@media (max-width: 700px) {
  .card-info__wp {
    padding: 0;
    border: none;
  }
}
.card-info__wp_1 {
  padding-left: 0;
}
.card-info__wp_1 .card-info__elements {
  display: flex;
  flex-wrap: wrap;
  gap: calc(30 * var(--scale));
  row-gap: calc(10 * var(--scale));
  color: #d4091d;
}
.card-info__wp_1 .card-info__elements i {
  color: #252422;
}
.card-info__wp_1 .card-info__elements .card-info__item {
  padding: calc(8 * var(--scale));
}
.card-info__wp_1 .card-info__elements .card-info__item._active {
  background: #d4091d;
  color: #fff;
}
.card-info__wp_1 .card-info__elements .card-info__item._active i {
  color: #fff;
}
.card-info__wp_2 .card-info__elements {
  display: flex;
  flex-direction: column;
  color: #d4091d;
  font-weight: 500;
  gap: calc(20 * var(--scale));
}
.card-info__wp_3 .card-info__elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 500;
  row-gap: calc(15 * var(--scale));
}
.card-info__wp_3 .card-info__elements span {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--scale));
}
.card-info__wp_3 .card-info__elements span::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background-image: url(../img/sl.svg);
  width: calc(20 * var(--scale));
  height: calc(13 * var(--scale));
  background-size: contain;
  background-repeat: no-repeat;
}
.card-info__wp_4 {
  border-right: none;
}
.card-info__wp_4 .card-info__elements {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  font-weight: 500;
  gap: calc(10 * var(--scale));
  row-gap: calc(15 * var(--scale));
}
.card-info__wp_4 .card-info__elements .card-info__item div {
  display: flex;
  align-items: center;
  gap: calc(13 * var(--scale));
}
.card-info__wp_4 .card-info__elements .card-info__item div::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/sl1.svg);
  width: calc(16 * var(--scale));
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
}
.card-info__wp_4 .card-info__elements .card-info__item:not(._active) {
  color: #bfbfbf;
}
.card-info__wp_4 .card-info__elements .card-info__item:not(._active) div::before {
  background-image: url(../img/sl2.svg);
}
.card-info__name {
  font-weight: 600;
  font-size: calc(18 * var(--scale));
  margin-bottom: calc(20 * var(--scale));
}
.card-info__item {
  display: flex;
  flex-direction: column;
  font-size: calc(16 * var(--scale));
}
.card-info__item i {
  font-family: var(--font3);
  font-size: calc(17 * var(--scale));
}
.card-info__text {
  font-size: calc(22 * var(--scale));
  line-height: 1.3;
  margin-top: calc(50 * var(--scale));
}
@media (max-width: 700px) {
  .card-info__text {
    font-size: calc(20 * var(--scale));
  }
}

.programs__contaoner {
  margin-top: calc(45 * var(--scale));
}
.programs__block {
  margin-top: calc(100 * var(--scale));
  position: relative;
  overflow: hidden;
  padding-top: 2px;
}
@media (max-width: 700px) {
  .programs__block {
    margin-top: calc(50 * var(--scale));
  }
}
.programs__block .swiper-wrapper {
  flex-direction: column;
}
.programs__block::before {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  height: 65%;
  width: 100vw;
  z-index: 3;
  background-image: url(../img/gf.png);
  background-size: 100% 100%;
}
.programs__slide {
  padding: calc(50 * var(--scale));
  display: grid;
  grid-template-columns: 0.3fr 0.75fr 1.45fr;
  align-items: flex-start;
  position: relative;
  border: 1px solid #d9d9d9;
  transition: 0.3s;
  height: max-content !important;
  margin-top: -1px;
}
@media (max-width: 700px) {
  .programs__slide {
    display: flex;
    flex-direction: column;
    padding: calc(20 * var(--scale));
    gap: 20px;
  }
}
.programs__slide:hover {
  background: rgba(212, 9, 29, 0.04);
}
.programs__slide:hover .programs__btn {
  opacity: 1;
}
.programs__cif {
  font-weight: 500;
  font-size: calc(128 * var(--scale));
  color: #d4091d;
  border-right: 1px solid #d4091d;
  line-height: 0.8;
}
@media (max-width: 700px) {
  .programs__cif {
    font-size: calc(80 * var(--scale));
    border: none;
  }
}
.programs__name {
  margin: 0px auto;
  padding: 0px calc(28 * var(--scale));
}
@media (max-width: 700px) {
  .programs__name {
    padding: 0;
    margin-left: 0;
  }
}
.programs__name div {
  display: flex;
  flex-direction: column;
  text-align: right;
}
@media (max-width: 700px) {
  .programs__name div {
    text-align: left;
  }
}
.programs__name div span {
  font-weight: 500;
  font-size: calc(48 * var(--scale));
  color: #d4091d;
}
@media (max-width: 700px) {
  .programs__name div span {
    font-size: calc(32 * var(--scale));
  }
}
.programs__name div p {
  margin-top: calc(28 * var(--scale));
  font-weight: 600;
  font-style: italic;
  font-size: calc(20 * var(--scale));
  font-family: var(--font3);
}
@media (max-width: 700px) {
  .programs__name div p {
    margin-top: calc(18 * var(--scale));
  }
}
.programs__advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(30 * var(--scale));
  row-gap: calc(15 * var(--scale));
  line-height: 1.3;
  max-height: calc(270 * var(--scale));
  overflow: hidden;
  transition: 0.5s;
  position: relative;
}
.programs__advantages._more::before {
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 0;
  content: "";
  height: 50%;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000);
  mask-image: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
  display: none;
  transition: 0.3s;
}
.programs__advantages._open {
  max-height: calc(570 * var(--scale));
}
.programs__advantages._open::before {
  opacity: 0;
}
@media (max-width: 700px) {
  .programs__advantages {
    gap: calc(14 * var(--scale));
    font-size: calc(15 * var(--scale));
  }
}
.programs__advantages li {
  position: relative;
  padding-left: calc(21 * var(--scale));
}
@media (max-width: 700px) {
  .programs__advantages li {
    padding-left: calc(18 * var(--scale));
  }
}
.programs__advantages li::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  border-radius: 100%;
  background: #d4091d;
  width: calc(11 * var(--scale));
  aspect-ratio: 1/1;
}
@media (max-width: 700px) {
  .programs__advantages li::before {
    width: calc(9 * var(--scale));
  }
}
.programs__btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  border-radius: 6px;
  background: #fff;
  font-weight: 500;
  font-size: calc(16 * var(--scale));
  color: #252422;
  gap: calc(24 * var(--scale));
  z-index: 1;
  transition: 0.3s;
  padding: calc(25 * var(--scale));
  display: flex;
  align-items: center;
  opacity: 0;
}
@media (max-width: 700px) {
  .programs__btn {
    transform: translate(-50%, 80%);
  }
}
.programs__btn::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  width: calc(16 * var(--scale));
  aspect-ratio: 1/1;
  background-size: contain;
  background-image: url(../img/plus.svg);
}
.programs__btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  background: #d4091d;
  z-index: -1;
  transition: 0.3s;
}
.programs__btn:hover {
  color: #fff;
}
.programs__btn:hover::after {
  width: 100%;
}
.programs__btn:hover::before {
  background-image: url(../img/plus-wh.svg);
}

.advantages__container {
  display: flex;
  padding-top: calc(50 * var(--scale));
}
@media (max-width: 700px) {
  .advantages__container {
    flex-direction: column;
    gap: 50px;
  }
}
.advantages__left {
  flex: 1 1 auto;
}
.advantages__list {
  margin-top: calc(27 * var(--scale));
  font-size: calc(20 * var(--scale));
}
@media (max-width: 700px) {
  .advantages__list {
    font-size: calc(18 * var(--scale));
  }
}
.advantages__right {
  flex: 0 0 48%;
  width: 48% !important;
}
@media (max-width: 700px) {
  .advantages__right {
    flex: 0 0 100%;
    width: 100% !important;
  }
}
.advantages__right .goo-track {
  margin-left: auto;
  margin-right: auto;
}
.advantages__top {
  display: flex;
  align-items: center;
  padding-left: calc(40 * var(--scale));
  gap: calc(45 * var(--scale));
}
@media (max-width: 700px) {
  .advantages__top {
    padding-left: 0;
  }
}
.advantages__arrow {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--scale));
  font-size: calc(20 * var(--scale));
  font-weight: 600;
  width: max-content;
  white-space: nowrap;
}
.advantages__arrow ._arrow {
  background-image: url(../img/ars1.svg);
  background-size: contain;
  width: calc(16 * var(--scale));
  height: calc(28 * var(--scale));
  background-repeat: no-repeat;
  transition: 0.3s;
  background-position: center;
}
.advantages__arrow ._arrow._arrow_l {
  transform: rotate(180deg);
}
.advantages__arrow ._arrow.swiper-button-disabled {
  background-image: url(../img/ars2.svg);
}
.advantages__slider {
  margin-top: calc(20 * var(--scale));
  margin-bottom: calc(30 * var(--scale));
  width: 113%;
  position: relative;
  padding-right: calc(150 * var(--scale));
}
@media (max-width: 700px) {
  .advantages__slider {
    padding-right: calc(90 * var(--scale));
  }
}
.advantages__slider::before {
  position: absolute;
  top: 0;
  right: calc(0 * var(--scale));
  height: 100%;
  z-index: 4;
  pointer-events: none;
  width: 25%;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 76.74%);
}
.advantages__slide {
  border: 1px solid #d4091d;
  position: relative;
  padding: calc(23 * var(--scale)) calc(44 * var(--scale));
  width: 600px;
  padding-right: calc(20 * var(--scale));
}
@media (max-width: 700px) {
  .advantages__slide {
    padding: calc(20 * var(--scale)) calc(20 * var(--scale));
  }
}
.advantages__slide:last-child {
  margin-right: 0px;
}
.advantages__cif {
  top: calc(10 * var(--scale));
  right: calc(10 * var(--scale));
  width: calc(44 * var(--scale));
  aspect-ratio: 1/1;
  background: #d4091d;
  font-size: calc(32 * var(--scale));
  color: #fff;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: calc(5 * var(--scale));
  position: absolute;
}
.advantages__name {
  font-weight: 600;
  font-size: calc(22 * var(--scale));
  margin-bottom: calc(25 * var(--scale));
  padding-right: 30px;
}
.advantages__info {
  font-size: calc(20 * var(--scale));
}
@media (max-width: 700px) {
  .advantages__info {
    font-size: calc(17 * var(--scale));
  }
}
.advantages__text {
  font-size: calc(20 * var(--scale));
  font-family: var(--font3);
  line-height: 1.5;
  font-weight: 600;
  margin-top: calc(25 * var(--scale));
  font-style: italic;
}
@media (max-width: 700px) {
  .advantages__text {
    font-size: calc(18 * var(--scale));
  }
}

.news-block._dark {
  background: #000;
  color: #fff;
}
.news-block._dark .news-block__btn {
  color: #fff;
}
.news-block._dark .news-block__btn::after {
  background-image: url(../img/wt.svg);
}
.news-block._v2 .news__img img {
  aspect-ratio: 467/300;
}
.news-block._v2 .news__name {
  font-weight: 600;
}
.news-block__container {
  padding-top: calc(80 * var(--scale));
  padding-bottom: calc(80 * var(--scale));
}
.news-block__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.news-block__block {
  margin-top: calc(50 * var(--scale));
}
.contacts__container {
  padding-top: calc(50 * var(--scale));
}
.contacts__top {
  display: flex;
  align-items: center;
  gap: calc(40 * var(--scale));
  margin-bottom: calc(30 * var(--scale));
}
@media (max-width: 700px) {
  .contacts__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contacts__select {
  flex-wrap: wrap;
  display: flex;
  gap: calc(30 * var(--scale));
}
@media (max-width: 700px) {
  .contacts__select {
    gap: 12px;
  }
}
.contacts__select input {
  display: none;
}
.contacts__select input:checked + label {
  color: #fff;
}
.contacts__select input:checked + label::before {
  width: 100%;
}
.contacts__select label,
.contacts__select a {
  padding: 15px 22px;
  background: #f3ebef;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  color: inherit;
  z-index: 1;
  transition: 0.3s;
}
.contacts__select label:hover,
.contacts__select a:hover {
  color: #fff;
}
.contacts__select label:hover::before,
.contacts__select a:hover::before {
  width: 100%;
}
.contacts__select label::before,
.contacts__select a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  height: 100%;
  background: #a30003;
  width: 0%;
  transition: 0.3s;
}
.contacts__txt {
  font-size: calc(22 * var(--scale));
  line-height: 1.5;
  margin-bottom: calc(60 * var(--scale));
}
@media (max-width: 600px) {
  .contacts__txt {
    font-size: calc(20 * var(--scale));
  }
}
.contacts__wp {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: calc(100 * var(--scale));
}
@media (max-width: 700px) {
  .contacts__wp {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.contacts__form .form-block__input {
  border: 1px solid #333;
}
.contacts__info {
  margin-top: calc(30 * var(--scale));
  margin-bottom: calc(30 * var(--scale));
  font-style: italic;
  font-family: var(--font3);
  font-size: calc(20 * var(--scale));
  line-height: 1.5;
}

.article__container {
  padding-top: calc(55 * var(--scale));
}
@media (max-width: 700px) {
  .article__container {
    padding-top: 0;
  }
}
.article__tile ._btn {
  display: inline-flex;
  margin-top: 0;
  margin-left: calc(20 * var(--scale));
  transform: translate(0px, -40%);
}
@media (max-width: 700px) {
  .article__tile {
    flex-direction: column;
    display: flex;
    gap: 15px;
  }
  .article__tile ._btn {
    display: block;
    margin: 0;
    transform: translate(0);
  }
}
.article__date {
  margin-top: 20px;
  padding-top: 20px;
  max-width: max-content;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  color: #252422;
}
@media (max-width: 600px) {
  .article__date {
    margin-bottom: 30px;
  }
}
.article__date::before {
  position: absolute;
  top: 0;
  background: #949494;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
}
.article__content {
  max-width: calc(1145 * var(--scale));
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  gap: calc(45 * var(--scale));
  line-height: 1.4;
  font-size: calc(22 * var(--scale));
}
@media (max-width: 700px) {
  .article__content {
    font-size: calc(18 * var(--scale));
  }
}
.article__img {
  position: relative;
  margin-bottom: 10px;
}
.article__img img {
  width: 100%;
  aspect-ratio: 1145/533;
  position: relative;
  z-index: 3;
}
.article__img::before {
  position: absolute;
  bottom: -7%;
  right: -4%;
  content: "";
  z-index: 2;
  width: calc(540 * var(--scale));
  aspect-ratio: 1/1;
  background: rgba(237, 47, 0, 0.2);
  transform: translate(50%);
  opacity: 0;
  transition: 0.4s;
}
@media (max-width: 700px) {
  .article__img::before {
    width: calc(185 * var(--scale));
  }
}
.article__img::after {
  position: absolute;
  top: -5%;
  right: 5%;
  content: "";
  width: calc(650 * var(--scale));
  aspect-ratio: 650/580;
  background: rgba(237, 111, 0, 0.1);
  z-index: 1;
  transform: translate(0px, -50%);
  opacity: 0;
  transition: 0.4s;
}
@media (max-width: 700px) {
  .article__img::after {
    width: calc(200 * var(--scale));
  }
}
.article__img._v2 {
  display: flex;
  justify-content: end;
}
.article__img._v2 div {
  display: flex;
  justify-content: end;
}
.article__img._v2::before {
  left: -4%;
  right: auto;
  transform: translate(-50%);
}
.article__img._v2::after {
  left: 5%;
  right: auto;
}
.article__img._ready div {
  transition: 0.7s;
  width: 0%;
  overflow: hidden;
}
.article__img._active::before, .article__img._active::after {
  opacity: 1;
  transform: translate(0) !important;
}
.article__img._active div {
  width: 100%;
}
.article__list li::before {
  transform: translate(0px, 80%);
}

.about-page__container {
  margin-top: calc(55 * var(--scale));
}
.about-page__container._active .about-page__wp::before,
.about-page__container._active .about-page__wp::after {
  height: 100%;
}
.about-page__container._active .about-page__item::before,
.about-page__container._active .about-page__item::after {
  width: 100%;
}
.about-page__block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: calc(55 * var(--scale));
}
@media (max-width: 700px) {
  .about-page__block {
    grid-template-columns: 1fr;
  }
}
.about-page__wp {
  position: relative;
}
.about-page__wp:first-child .about-page__inner {
  margin-left: 0;
}
.about-page__wp:first-child .about-page__item:first-child {
  padding-top: calc(25 * var(--scale));
}
.about-page__wp:nth-child(2) {
  padding-top: calc(40 * var(--scale));
}
@media (max-width: 700px) {
  .about-page__wp:nth-child(2) {
    padding-top: 0;
  }
}
.about-page__wp:last-child {
  padding-top: calc(90 * var(--scale));
}
@media (max-width: 700px) {
  .about-page__wp:last-child {
    padding-top: 0;
  }
}
.about-page__wp:last-child .about-page__inner {
  margin-right: 0;
}
.about-page__wp:not(:last-child)::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 0%;
  width: 1px;
  background-color: #d0d0d0;
  transition: 1.5s;
  transition-delay: 0.3s;
}
@media (max-width: 700px) {
  .about-page__wp::before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    height: 0%;
    width: 1px;
    background-color: #d0d0d0;
    transition: 1.5s;
    transition-delay: 0.3s;
  }
  .about-page__wp::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 0%;
    width: 1px;
    background-color: #d0d0d0;
    transition: 1.5s;
    transition-delay: 0.3s;
  }
}
.about-page__item {
  padding: calc(50 * var(--scale)) 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .about-page__item {
    padding: calc(40 * var(--scale)) calc(30 * var(--scale));
  }
}
.about-page__item h2 {
  font-size: calc(24 * var(--scale)) !important;
}
.about-page__item:not(:last-child)::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 0%;
  background-color: #d0d0d0;
  transition: 0.7s;
  transition-delay: 0.5s;
}
@media (max-width: 700px) {
  .about-page__item::before {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    content: "";
    height: 1px;
    width: 0%;
    background-color: #d0d0d0;
    transition: 0.7s;
    transition-delay: 0.5s;
  }
}
.about-page__inner {
  max-width: calc(420 * var(--scale));
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  gap: calc(10 * var(--scale));
}
.about-page__inner p {
  font-size: calc(15 * var(--scale));
  line-height: 1.5;
  margin-top: calc(10 * var(--scale));
}
.about-page__inner i {
  color: #333;
  line-height: 1.8;
  font-family: var(--font3);
  font-size: calc(18 * var(--scale));
}
.about-page__img {
  position: relative;
  z-index: 1;
  transform: translate(calc(49 * var(--scale)));
  scale: 1.1;
}
.about-page__img._ready div {
  width: 0% !important;
  height: 100%;
  overflow: hidden;
  transition: 0.7s;
}
.about-page__img._ready._active div {
  width: 100% !important;
}
.about-page__img._ready._active div:nth-child(2) {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 65% !important;
}
.about-page__img::before {
  position: absolute;
  top: -3%;
  right: 0;
  width: 95%;
  aspect-ratio: 500/400;
  content: "";
  z-index: -2;
  background: rgba(237, 47, 0, 0.2);
  transform: translate(50%);
  opacity: 0;
  transition: 0.9s;
}
.about-page__img::after {
  position: absolute;
  top: -6%;
  right: 0;
  width: 83.5%;
  aspect-ratio: 450/440;
  content: "";
  z-index: -2;
  background: rgba(237, 111, 0, 0.1);
  transform: translate(0px, -50%);
  opacity: 0;
  transition: 0.9s;
}
.about-page__img._active::after, .about-page__img._active::before {
  opacity: 1;
  transform: translate(0);
}
.about-page__img img {
  width: 100%;
}
.about-page__img div:nth-child(1) {
  margin-bottom: calc(-65 * var(--scale));
}
@media (max-width: 700px) {
  .about-page__img div:nth-child(1) {
    margin-bottom: calc(65 * var(--scale));
  }
}
.about-page__img div:nth-child(2) {
  width: 65%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(0px, 40%);
}

.about-last .programs__block {
  margin-top: 0;
  margin-top: -2px;
}
.about-last .programs__block::before {
  background-image: url(../img/bb.png);
  background-size: 100% 100%;
  height: 100%;
}
.about-last .programs__slide {
  display: flex;
  font-size: calc(36 * var(--scale));
  font-weight: 500;
  flex-direction: column;
}
.about-last .programs__slide p {
  font-size: calc(22 * var(--scale));
  font-weight: 400;
  line-height: 1.4;
  margin-top: 20px;
}
@media (max-width: 700px) {
  .about-last .programs__slide p {
    font-size: calc(16 * var(--scale));
    margin-top: 0px;
  }
}
@media (max-width: 700px) {
  .about-last .programs__slide {
    font-size: calc(24 * var(--scale));
  }
}