@charset "UTF-8";

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

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

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

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

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

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

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

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

body {
  color: #5B5E6D;
  line-height: 1;
  font-family: "Roboto";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: inherit;
}

a:link,
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;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  margin: 0 auto;
  max-width: 73.125rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
  object-fit: contain;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #2C2C2C;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 70px;
}

.header__logo {
  z-index: 3;
}

.menu__icon {
  display: none;
}

.menu__list>li {
  position: relative;
  margin: 0px 0px 0px 50px;
}

.menu__link {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 19px;
}

.menu__link::after {
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  content: "";
  -webkit-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}

.menu__link:hover::after,
.menu__link:focus::after {
  width: 100%;
}

.menu__sub-list {
  position: absolute;
  top: 100%;
  right: -245px;
  background-color: #2C2C2C;
  padding: 40px 30px;
  min-width: 300px;
}

.menu__sub-list li {
  margin-bottom: 20px;
}

.menu__sub-list li:last-child {
  margin-bottom: 0;
}

.menu__sub-link {
  color: #DCDCDC;
  font-weight: 500;
  font-size: 14px;
  line-height: 140.62%;
}

.menu__sub-link::after {
  display: block;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  content: "";
  -webkit-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}

.menu__sub-link:hover::after,
.menu__sub-link:focus::after {
  width: 100%;
}

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

.lang__title {
  color: #fff;
  font-size: 16px;
  margin-right: 5px;
}

.menu__arrow {
  display: none;
}

.select-lang {
  background-color: #2C2C2C;
  color: #fff;
  font-size: 13px;
  border: 1px solid #fff;
  border-radius: 5px;
  outline: none;
}

body._pc .menu__list>li:hover .menu__sub-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  pointer-events: all;
}

body._touch .menu__list>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body._touch .menu__link {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

body._touch .menu__arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 0px 0px 0px 5px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #fff;
}

body._touch .menu__list>li._active .menu__sub-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  pointer-events: all;
}

body._touch .menu__list>li._active .menu__arrow {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.icon-menu {
  display: none;
}

.footer {
  background-color: #242A30;
}

.footer__body {
  padding: 4.0625rem 0 3.125rem 0;
  border-bottom: 1px solid #6C6C6C;
}

.body-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.body-footer__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
}

.body-footer__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.item-footer__title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 100%;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  margin-bottom: 1.5625rem;
}

.item-footer__list {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #DADADA;
}

.item-footer__list li:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.contacts-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #DADADA;
}

.contacts-footer__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.column-contacts__adres {
  max-width: 10.625rem;
  margin-bottom: 1.5rem;
}

.column-contacts__tel {
  margin-bottom: 1.25rem;
  margin-left: 1.25rem;
}

.footer__bottom {
  margin: 1.25rem 0;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  /* identical to box height, or 14px */
  color: #ADADAD;
}

.page__contacts {
  padding: 9.375rem 0;
}

.contacts__info {
  padding: 0px 15px;
  padding-right: 4.375rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.contacts-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0 -15px -30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.info-contacts__subtitle {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 4.375rem;
}

.info-contacts__subtitle>span {
  display: inline-block;
}

.info-contacts__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.info-contacts__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 64px;
  max-width: 23.125rem;
  margin-top: 1.5625rem;
  color: #374049;
}

.info-contacts__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  margin-top: 1.5625rem;
  margin-top: 1.5625rem;
  color: #5B5E6D;
  max-width: 23.125rem;
}

.info-contacts__links {
  margin-top: 1.875rem;
}

.info-contacts--other {
  margin-top: 6.25rem;
}

.links-contacts__title {
  font-weight: 700;
  font-size: 25px;
  line-height: 29px;
  color: #374049;
}

.links-contacts__phones {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.links-contacts__mail {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.phones-contacts__subtitle {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #374049;
}

.numbers-contacts__item {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #374049;
  margin-bottom: 0.625rem;
}

.numbers-contacts__item:last-child {
  margin-bottom: 0;
}

.mail-contacts__subtitle {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #374049;
}

.mail-contacts__email {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #374049;
}

.contacts__form {
  max-width: 36.5625rem;
  padding: 6.25rem 3.4375rem;
  color: #818492;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  border-radius: 1.5625rem;
}

.form-contacts__item {
  margin-bottom: 1.875rem;
}

.form-contacts__item:last-child {
  margin-bottom: 0;
}

.form-contacts__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  display: block;
  color: #818492;
  margin-bottom: 0.125rem;
}

.form-contacts__input {
  height: 1.875rem;
  border-bottom: #CED6DE 1px solid;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-contacts__input:active {
  border-bottom: #0066FF 1px solid;
}

.form-contacts__input:focus {
  border-bottom: #0066FF 1px solid;
}

.form-contacts__button {
  text-align: center;
  margin-bottom: 1.875rem;
}

.form-contacts__button button {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 1rem 1.5625rem;
  background-color: #0066FF;
  border-radius: 1.875rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form-contacts__button button:hover {
  background-color: #0059DE;
  -webkit-filter: drop-shadow(0px 4px 10px rgba(0, 102, 255, 0.4));
  filter: drop-shadow(0px 4px 10px rgba(0, 102, 255, 0.4));
}

.checkbox {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #818492;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkbox__input {
  margin-right: 0.625rem;
}

textarea.form-contacts__input {
  min-height: 3.75rem;
  resize: vertical;
}

:active,
:hover,
:focus {
  outline: 0;
}

.no-webp .main-block {
  background: url("../img/main-page/BG-main.png") center/cover no-repeat;
}

.main-block {
  margin-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.info-main-main {
  padding-top: 10.625rem;
}

.info-main {
  color: #fff;
}

.info-main__subtitle {
  position: relative;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-size: 1rem;
  line-height: 19px;
  letter-spacing: 0.1em;
  margin-left: 4.375rem;
}

.info-main__subtitle>span {
  display: inline-block;
}

.info-main__subtitle>span::before {
  content: "";
  position: absolute;
  width: 3.125rem;
  border-top: 2px solid #FFDE17;
  margin-top: 0.5em;
  margin-left: -4.375rem;
}

.info-main__title {
  font-style: normal;
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 70px;
  margin-top: 1.5625rem;
  max-width: 700px;
}

.info-main__text {
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 150%;
  max-width: 700px;
  margin-top: 1.5625rem;
  color: #EEEEEE;
}

.contacts-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 170px;
  color: #B4B4B4;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.services {
  padding: 7.5rem 0;
}

.services__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -15px -30px;
}

.services__column {
  padding: 0px 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  margin: 0 0 1.875rem 0;
}

.info-services__subtitle {
  position: relative;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 70px;
  margin-bottom: 1.5625rem;
}

.info-services__subtitle>span {
  display: inline-block;
}

.info-services__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.info-services__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 64px;
  margin-bottom: 3.125rem;
  color: #374049;
}

.cards-services__item {
  height: 100%;
}

.services-card__image>picture>img {
  width: 100%;
}

.services-card__image>img {
  width: 100%;
}

.services-card__info {
  position: relative;
  text-align: center;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  padding: 40px 0;
  border-radius: 1.5625rem;
  margin: -2.5rem 0 0 0;
  min-height: 16.6875rem;
}

.services-card__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 128.91%;
  /* or 31px */
  color: #374049;
}

.services-card__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #5B5E6D;
  margin-top: 15px;
}

.services-card__btn {
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0066FF;
  margin-top: 30px;
}

.card-btn__blue {
  padding: 1.0625rem 1.5rem;
  border-radius: 1.5625rem;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.card-btn__blue:hover {
  background-color: #F2F7FF;
}

.services__btn {
  text-align: center;
  margin-top: 90px;
}

.btn-main__blue {
  padding: 1rem 1.25rem;
  background-color: #0066FF;
  border-radius: 1.875rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-main__blue:hover {
  background-color: #0561eb;
  -webkit-filter: drop-shadow(0px 7px 10px rgba(31, 117, 247, 0.4));
  filter: drop-shadow(0px 7px 10px rgba(31, 117, 247, 0.4));
}

.about {
  margin-bottom: 6.875rem;
}

.about__body {
  position: relative;
  margin: 0 -15px -30px;
}

.body-about__item {
  padding: 0px 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  margin: 0 0 1.875rem 0;
}

.body-about__subtitle {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 4.375rem;
  margin-bottom: 1.25rem;
}

.body-about__subtitle>span {
  display: inline-block;
}

.body-about__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.body-about__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 64px;
  color: #374049;
  margin-bottom: 3.125rem;
}

.body-about__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #5B5E6D;
}

.body-about__image {
  position: absolute;
  top: 4.375rem;
  right: 15px;
  width: 700px;
  height: 600px;
}

.item-body__card {
  position: relative;
  margin: -4.375rem 0 0 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 3.4375rem 3.125rem;
  height: 100%;
  z-index: 2;
  width: 700px;
  height: 600px;
}

.page__pluses {
  margin-top: 9.375rem;
}

.pluses {
  color: #fff;
  background-color: #242A30;
  padding: 6.25rem 0;
}

.no-webp .body-pluses__title {
  background-image: url("../img/main-page/dots/dots.png");
}

.body-pluses__title {
  font-weight: 900;
  font-size: 3.125rem;
  line-height: 64px;
  max-width: 35.625rem;
  background-repeat: no-repeat;
}

.body-pluses__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.body-pluses__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  margin-top: 6.25rem;
}

.item-pluses__title {
  font-weight: 900;
  font-size: 1.5625rem;
  line-height: 32px;
  position: relative;
}

.item-pluses__title>span {
  display: inline-block;
}

.item-pluses__title>span::before {
  content: "";
  position: absolute;
  width: 3.125rem;
  border-top: 2px solid #FFDE17;
  margin-top: -1em;
}

.item-pluses__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  max-width: 26.875rem;
  margin-top: 0.75rem;
  color: #C8CACB;
}

.blog {
  padding: 3.75rem 0;
}

.blog__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -15px -30px;
}

.blog__column {
  padding: 0px 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  margin: 0 0 1.875rem 0;
}

.info-blog__subtitle {
  position: relative;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 70px;
  margin-bottom: 1.5625rem;
}

.info-blog__subtitle>span {
  display: inline-block;
}

.info-blog__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.info-blog__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 64px;
  margin-bottom: 3.125rem;
  color: #374049;
}

.cards-blog__item {
  height: 100%;
}

.blog-card__image>picture>img {
  width: 100%;
}

.blog-card__image>img {
  width: 100%;
}

.blog-card__info {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.5625rem;
  border-radius: 0px 0px 5px 5px;
}

.blog-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 152.34%;
  color: #242A30;
}

.blog-card__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #5B5E6D;
  margin-top: 15px;
}

.blog-card__btn {
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0066FF;
  margin-top: 30px;
}

.card-btn__blue {
  padding: 1.0625rem 1.5rem;
  border-radius: 1.5625rem;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.card-btn__blue:hover {
  background-color: #F2F7FF;
}

.blog__btn {
  text-align: center;
  margin-top: 90px;
}

.btn-main__blue {
  padding: 1rem 1.25rem;
  background-color: #0066FF;
  border-radius: 1.875rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-main__blue:hover {
  background-color: #0561eb;
  -webkit-filter: drop-shadow(0px 7px 10px rgba(31, 117, 247, 0.4));
  filter: drop-shadow(0px 7px 10px rgba(31, 117, 247, 0.4));
}

.no-webp .main-block-iso {
  background: url("../img/isolation/bgIso.png") center/cover no-repeat;
}

.main-block-iso {
  margin-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.info-main__work-list {
  margin-top: 1.875rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 150%;
  /* identical to box height, or 30px */
  color: #EEEEEE;
}

.info-main__list-item {
  margin-top: 0.625rem;
  position: relative;
  padding: 0 0 0 1.25rem;
}

.info-main__list-item::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #FFDE17;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5em;
}

.info-main-iso {
  padding-top: 6.25rem;
}

.page__work-goal {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

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

.work-goal__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.work-goal__photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.info-workgoal__subtitle {
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.1875rem;
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 4.375rem;
}

.info-workgoal__subtitle>span {
  display: inline-block;
}

.info-workgoal__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.info-workgoal__title {
  font-weight: 900;
  font-size: 3.125rem;
  line-height: 4rem;
  color: #374049;
  margin-top: 0.625rem;
  margin-bottom: 2.5rem;
}

.info-workgoal__text {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 152.34%;
  color: #000000;
}

.kinds__body {
  position: relative;
  margin: 0 -15px -30px;
  margin-bottom: 9.375rem;
}

.kinds__body:last-child {
  margin-bottom: 0;
}

.body-kinds__item {
  padding: 0px 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  margin: 0 0 1.875rem 0;
}

.body-kinds__subtitle {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 4.375rem;
  margin-bottom: 1.25rem;
}

.body-kinds__subtitle>span {
  display: inline-block;
}

.body-kinds__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.body-kinds__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 64px;
  color: #374049;
  margin-bottom: 6.25rem;
}

.body-kinds__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #5B5E6D;
}

.body-kinds__image {
  position: absolute;
  top: 4.375rem;
  width: 700px;
  height: 600px;
  z-index: 1;
}

.item-body-kinds__card {
  position: relative;
  margin: -4.375rem 0 0 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 3.4375rem 3.125rem;
  height: 100%;
  z-index: 2;
  width: 700px;
  min-height: 40.625rem;
  left: 29.6875rem;
}

.card-kinds__title {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 125%;
  margin-bottom: 1.875rem;
  /* or 38px */
  color: #374049;
}

.no-webp .main-block-equ {
  background: url("../img/equipment/BGequ.png") center/cover no-repeat;
}

.main-block-equ {
  margin-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.info-main__text--equ {
  max-width: 56.25rem;
}

.info-main__title--equ {
  max-width: 56.25rem;
}

.page__equipment {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

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

.equipment__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.equipment__photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.info-equipment__subtitle {
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.1875rem;
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 4.375rem;
}

.info-equipment__subtitle>span {
  display: inline-block;
}

.info-equipment__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.info-equipment__title {
  font-weight: 900;
  font-size: 3.125rem;
  line-height: 4rem;
  color: #374049;
  margin-top: 0.625rem;
  margin-bottom: 2.5rem;
}

.info-equipment__text {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 152.34%;
  color: #000000;
}

.process {
  margin-bottom: 6.875rem;
}

.process__body {
  position: relative;
  margin: 0 -15px -30px;
}

.body-process__item {
  padding: 0px 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  margin: 0 0 1.875rem 0;
}

.body-process__subtitle {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 4.375rem;
  margin-bottom: 1.25rem;
}

.body-process__subtitle>span {
  display: inline-block;
}

.body-process__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.body-process__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 64px;
  color: #374049;
  margin-bottom: 3.125rem;
}

.body-process__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #5B5E6D;
}

.body-process__image {
  position: absolute;
  top: 4.375rem;
  right: 15px;
  width: 700px;
  height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
  border-radius: 1.5625rem;
}

.item-body__card--process {
  position: relative;
  margin: -4.375rem 0 0 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 3.4375rem 3.125rem;
  height: 100%;
  z-index: 2;
  width: 700px;
}

.var {
  padding: 3.75rem 0;
}

.var__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -15px -30px;
  text-align: center;
}

.var__column {
  padding: 0px 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  margin: 0 0 1.875rem 0;
}

.info-var__subtitle {
  position: relative;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 70px;
  margin-bottom: 1.5625rem;
}

.info-var__subtitle>span {
  display: inline-block;
}

.info-var__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.info-var__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 64px;
  margin-bottom: 3.125rem;
  color: #374049;
}

.cards-var__item {
  height: 100%;
}

.info-main-equ {
  padding-top: 9.375rem;
}

.var-card__image>picture>img {
  width: 100%;
}

.var-card__image>img {
  width: 100%;
}

.var-card__info {
  height: 11.6875rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  padding: 1.875rem 1.5625rem;
  border-radius: 0px 0px 5px 5px;
  min-height: 8.4375rem;
  position: relative;
  top: -1.875rem;
  border-radius: 1.5625rem;
}

.var-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 152.34%;
  color: #242A30;
}

.var-card__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #5B5E6D;
  margin-top: 15px;
}

.var-card__btn {
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0066FF;
  margin-top: 30px;
}

.card-btn__blue {
  padding: 1.0625rem 1.5rem;
  border-radius: 1.5625rem;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.card-btn__blue:hover {
  background-color: #F2F7FF;
}

.var__btn {
  text-align: center;
  margin-top: 90px;
}

.btn-main__blue {
  padding: 1rem 1.25rem;
  background-color: #0066FF;
  border-radius: 1.875rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-main__blue:hover {
  background-color: #0561eb;
  -webkit-filter: drop-shadow(0px 7px 10px rgba(31, 117, 247, 0.4));
  filter: drop-shadow(0px 7px 10px rgba(31, 117, 247, 0.4));
}

.no-webp .main-block-inst {
  background: url("../img/instalation/instalationBG.png") center/cover no-repeat;
}

.main-block-inst {
  margin-top: 3.125rem;
  padding-bottom: 4.375rem;
  min-height: 50rem;
}

.info-main__text--inst {
  max-width: 56.25rem;
}

.info-main__title--inst {
  max-width: 56.25rem;
}

.contacts-main--inst {
  margin-top: 16.25rem;
}

.info-main-inst {
  padding-top: 15.625rem;
}

.image-mirror {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.list-inst__item {
  margin-top: 0.625rem;
  position: relative;
  padding: 0 0 0 1.25rem;
}

.list-inst__item::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #0066FF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5em;
}

.info-contacts__title-other {
  max-width: 35.625rem;
}

.page__ourdata {
  margin: 9.375rem 0 0 0;
}

.contacts__info-other {
  padding: 0px 0px;
  padding-right: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  margin: 0 0 1.875rem 0;
  margin-top: 120px px;
}

.maininfo-ourdata {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 1.875rem;
  border-bottom: #0066FF 1px solid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.maininfo-ourdaata__chief {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.5625rem;
}

.maininfo-ourdaata__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.5625rem;
  font-weight: 400;
}

.maininfo-ourdaata__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.5625rem;
  font-weight: 400;
}

.maininfo-ourdaata__adres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.5625rem;
  font-weight: 400;
}

.maininfo-ourdaata__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.5625rem;
  font-weight: 400;
}

.chief__title {
  margin-right: 12.5rem;
}

.chief__name {
  text-align: right;
}

.adres__name {
  max-width: 20.625rem;
  text-align: right;
}

.post__name {
  max-width: 20.625rem;
  text-align: right;
}

.page__contacts--ctc {
  padding-top: 0;
}

.page__donepr {
  margin: 3.125rem 0;
}

.no-webp .main-block-pro {
  background: url("../img/projects/BG.png") center/cover no-repeat;
}

.main-block-pro {
  margin-top: 4.375rem;
  padding-bottom: 4.375rem;
  min-height: 37.5rem;
}

.info-donepr__subtitle {
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.1875rem;
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 4.375rem;
}

.info-donepr__subtitle>span {
  display: inline-block;
}

.info-donepr__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.info-donepr__title {
  max-width: 34.6875rem;
  font-weight: 900;
  font-size: 3.125rem;
  line-height: 4rem;
  color: #374049;
  margin-top: 0.625rem;
  margin-bottom: 2.5rem;
}

.info-donepr__text {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 152.34%;
  color: #000000;
}

.donepr__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -15px -30px;
}

.donepr__column {
  padding: 0px 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  margin: 0 0 1.875rem 0;
}

.cards-donepr__item {
  height: 100%;
}

.donepr-card__image>picture>img {
  width: 100%;
}

.donepr-card__image>img {
  width: 100%;
}

.donepr-card__info {
  position: relative;
  text-align: center;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  padding: 40px 0;
  border-radius: 1.5625rem;
  margin: -1.875rem 0 0 0;
}

.donepr-card__title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 100%;
  text-align: center;
  color: #374049;
}

.donepr-card__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 125%;
  letter-spacing: 0.05em;
  padding: 0 0.625rem;
  margin-top: 0.9375rem;
  color: #374049;
}

.donepr-card__btn {
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0066FF;
  margin-top: 30px;
}

.card-btn__blue {
  padding: 1.0625rem 1.5rem;
  border-radius: 1.5625rem;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.card-btn__blue:hover {
  background-color: #F2F7FF;
}

.page__pluses--proj {
  margin-top: 3.125rem;
}

.info-main-proj {
  padding-top: 12.5rem;
}

.btn-back {
  margin-top: 6.25rem;
}

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

.btn-back__txt {
  margin-left: 0.6875rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 19px;
  /* identical to box height */
  color: #374049;
}

.info-oreanda__subtitle {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 4.375rem;
}

.info-oreanda__subtitle>span {
  display: inline-block;
}

.info-oreanda__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.info-oreanda__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 64px;
  max-width: 35.625rem;
  margin-top: 1.5625rem;
  color: #374049;
}

.info-oreanda__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  margin-top: 1.5625rem;
  margin-top: 1.5625rem;
  color: #5B5E6D;
  max-width: 35.625rem;
}

.info-oreanda__links {
  margin-top: 1.875rem;
}

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

.photo-slider__image {
  text-align: center;
}

.photo-slider__image img {
  max-width: 100%;
}

.photo-slider__container {
  margin-bottom: 3.125rem;
}

.photo-slider__slider {
  margin-top: 3.125rem;
}

.otstup {
  margin-top: 3.125rem;
}

.page__certifacates {
  margin-top: 6.25rem;
}

.info-certifacates__subtitle {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  letter-spacing: 0.1em;
  color: #393939;
  margin-left: 4.375rem;
}

.info-certifacates__subtitle>span {
  display: inline-block;
}

.info-certifacates__subtitle>span::before {
  content: "";
  position: absolute;
  width: 50px;
  border-top: 2px solid #0066FF;
  margin-top: 0.5em;
  margin-left: -70px;
}

.info-certifacates__title {
  font-weight: 900;
  font-size: 50px;
  line-height: 64px;
  max-width: 31.25rem;
  margin-top: 1.5625rem;
  color: #374049;
}

.maininfo-certificates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
}

.certifacate__img {
  width: 270px;
  height: 372px;
  border: 2px solid #374049;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.certifacate__img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.maininfo-certificates__card {
  text-align: center;
}

.certificates__popup {
  padding-top: 100px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 1;
}

.popup-certificates__img {
  height: 764px;
  width: 554px;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 3%;
}

.popup-certificates__xmark {
  position: fixed;
  top: 100px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  font-size: 50px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 50%;
}

.maininfo-certificates__name {
  padding-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

.maininfo-certificates__date {
  margin-top: 5px;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

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

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

.image-mini-slider__slide {
  opacity: 0.2;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.image-mini-slider__slide.swiper-slide-thumb-active {
  opacity: 1;
}

.image-mini-slider__image {
  position: relative;
  padding: 0 0 30% 0;
  cursor: pointer;
}

.image-mini-slider__image img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #dad60d;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #374049;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  position: relative;
  margin-top: 50px;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  -o-transition-property: transform, opacity, height;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@media (min-width: 47.99875em) {
  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu__list>li {
    padding: 10px 0;
  }

  .menu__sub-list {
    -webkit-transform: translate(0px, 10%);
    -ms-transform: translate(0px, 10%);
    transform: translate(0px, 10%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}

@media (max-width: 75em) {
  [class*=__container] {
    max-width: 60.625rem;
  }

  .body-about__item {
    display: block;
    margin: 20px auto;
  }

  .body-about__image {
    position: relative;
    text-align: center;
    width: 100%;
    height: 25rem;
    border-radius: 25px;
    top: 0;
    right: 0;
  }

  .body-about__item picture img {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    text-align: center;
    width: 100%;
    height: 25rem;
    border-radius: 25px;
  }

  .body-about__item img {
    -o-object-fit: cover;
    object-fit: cover;
  }

  .item-body__card {
    margin: 0;
    width: 100%;
    height: 100%;
  }

  .page__pluses {
    margin-top: 3.125rem;
  }

  .item-body-kinds__card {
    left: 17.5rem;
  }

  .body-process__item {
    display: block;
    margin: 20px auto;
  }

  .body-process__image {
    position: relative;
    text-align: center;
    width: 100%;
    height: 25rem;
    border-radius: 25px;
    top: 0;
    right: 0;
  }

  .body-process__item picture img {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    text-align: center;
    width: 100%;
    height: 25rem;
    border-radius: 25px;
    top: 0;
    right: 0;
  }

  .body-process__item img {
    -o-object-fit: cover;
    object-fit: cover;
  }

  .item-body__card--process {
    margin: 0;
    width: 100%;
    height: 100%;
  }

  .chief__title {
    margin-right: 0;
  }
}

@media (max-width: 75rem) {
  .services-card__info {
    min-height: 19rem;
  }

  .blog-card__info {
    min-height: 10rem;
  }

  .photo-workgoal {
    width: 31.25rem;
  }

  .photo-equipment {
    width: 31.25rem;
  }

  .var-card__info {
    min-height: 8.125rem;
  }

  .donepr-card__info {
    margin: -1.25rem 0 0 0;
    padding: 1.25rem 0;
  }
}

@media (max-width: 61.99875em) {
  [class*=__container] {
    max-width: 46.875rem;
  }

  .menu__list>li {
    position: relative;
    margin: 0px 0px 0px 20px;
  }

  .body-footer {
    display: block;
  }

  .body-footer__info {
    margin-top: 1.375rem;
  }

  .contacts-body {
    display: block;
  }

  .contacts__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .info-contacts {
    padding: 0 0.9375rem;
  }

  .info-contacts__title {
    max-width: 100%;
  }

  .info-contacts__text {
    font-size: 1rem;
  }

  .contacts__form {
    max-width: 100%;
    margin: 0 0.9375rem;
    margin-top: 1.5625rem;
  }

  .services__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }

  .services__column:last-child {
    display: block;
    text-align: center;
  }

  .services-card__info {
    min-height: 17.125rem;
  }

  .about {
    margin-top: 0;
  }

  .body-about__image {
    width: 100%;
    top: 0;
    right: 0;
  }

  .body-about__item picture img {
    width: 100%;
    top: 0;
    right: 0;
  }

  .item-body__card {
    width: 100%;
  }

  .page__pluses {
    margin-top: 3.125rem;
  }

  .blog__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }

  .blog__column:last-child {
    display: block;
  }

  .blog-card__info {
    min-height: 0.625rem;
  }

  .work-goal__wrapper {
    display: block;
  }

  .work-goal__photo {
    width: 100%;
  }

  .photo-workgoal {
    width: 100%;
  }

  .body-kinds {
    display: block;
  }

  .kinds {
    margin-top: 10.625rem;
  }

  .kinds__body {
    margin-bottom: 5rem;
  }

  .kinds__body:last-child {
    margin-bottom: 0;
  }

  .body-kinds__image {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    width: 100%;
    max-height: 18.75rem;
    border-radius: 1.5625rem;
    top: 0;
    margin-bottom: 3.125rem;
  }

  .item-body-kinds__card {
    width: 100%;
    left: 0;
    height: 100%;
    min-height: auto;
  }

  .equipment__wrapper {
    display: block;
  }

  .equipment__photo {
    width: 100%;
  }

  .photo-equipment {
    width: 100%;
  }

  .body-process__image {
    width: 100%;
    top: 0;
    right: 0;
  }

  .body-process__item picture img {
    width: 100%;
    top: 0;
    right: 0;
  }

  .item-body__card--process {
    width: 100%;
  }

  .var__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }

  .var__column:last-child {
    display: block;
    text-align: center;
  }

  .var-card__info {
    min-height: 0.625rem;
  }

  .maininfo-ourdata {
    display: block;
  }

  .maininfo-ourdata__image {
    display: none;
  }

  .donepr__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.333%;
    flex: 0 1 33.333%;
  }

  .donepr__column:last-child {
    display: block;
    text-align: center;
  }

  .donepr-card__info {
    min-height: 10.3125rem;
  }

  .donepr-card__info {
    margin: -2.1875rem 0 0 0;
  }

  .donepr-card__btn {
    margin-top: 0.9375rem;
  }

  .page__contacts--proj {
    padding: 1.875rem 0;
  }

  .oreanda__image img {
    width: 18.75rem;
  }

  .oreanda {
    margin-top: 3.125rem;
  }
}
.lang__list {
    font-size: 1.5rem;
    display: flex;
    color: #fff;
    font-size: 16px;
  }
  .lang_second{
      margin-left: 5px;
  }

@media (max-width: 47.99875em) {
  [class*=__container] {
    max-width: none;
    padding: 0 0.9375rem;
  }

  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 100px 30px 30px 30px;
    -webkit-transition: left 0.3s ease 0s;
    -o-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }

  .menu__body._active {
    left: 0;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 70px;
    background-color: #2C2C2C;
    z-index: 2;
  }

  .lang__title {
    font-size: 1.5rem;
    margin-right: 0.9375rem;
  }

  .lang__list {
    font-size: 1.5rem;
    display: flex;
    color: #fff;
  }

  .lang_second {
    margin-left: 5px;
  }

  .menu__list>li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0px 0px 30px 0px;
  }

  .menu__list>li:last-child {
    margin-bottom: 0px;
  }

  .menu__link {
    font-size: 24px;
  }

  .menu__sub-list {
    position: relative;
    background-color: rgba(0, 0, 0, 0.15);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    right: 0;
    margin: 30px 0px 0px 0px;
    display: none;
  }

  .menu__sub-link {
    font-size: 20px;
  }

  .menu__arrow {
    margin: 0;
  }

  .menu__list>li._active .menu__sub-list {
    display: block;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__link::after {
    height: 0;
  }

  .menu__link:hover::after,
  .menu__link:focus::after {
    width: 0;
  }

  .info-contacts__title {
    font-size: 2.5rem;
  }

  .info-contacts__text {
    max-width: 100%;
  }

  .numbers-contacts__subtitle {
    font-size: 1rem;
  }

  .numbers-contacts__item {
    font-size: 1rem;
  }

  .mail-contacts__subtitle {
    font-size: 1rem;
  }

  .mail-contacts__item {
    font-size: 1rem;
  }

  .main-block {
    padding-bottom: 40px;
  }

  .info-main-main {
    padding-top: 12.5rem;
  }

  .info-main__subtitle {
    font-size: 0.9375rem;
  }

  .info-main__title {
    font-size: 3.125rem;
    line-height: 60px;
  }

  .info-main__text {
    font-size: 1.125rem;
  }

  .services-card__info {
    min-height: 6.25rem;
  }

  .info-services__title {
    font-size: 2.5rem;
  }

  .info-services__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }

  .services__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .services__column:last-child {
    display: block;
    text-align: center;
  }

  .services-card__info {
    margin: -12.5rem 0 0 0;
  }

  .body-about__title {
    font-size: 2.5rem;
  }

  .body-about__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }

  .about {
    margin-top: 0;
  }

  .item-body__card {
    height: 100%;
    padding: 1.875rem 1.5625rem;
  }

  .page__pluses {
    margin-top: 0;
  }

  .body-pluses__columns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .body-pluses__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-top: 6.25rem;
  }

  .body-pluses__title {
    font-size: 2.5rem;
    max-width: 29.375rem;
    line-height: 120%;
  }

  .blog-card__info {
    min-height: 0.625rem;
  }

  .info-blog__title {
    font-size: 2.5rem;
  }

  .info-blog__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }

  .blog__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .blog__column:last-child {
    display: block;
  }

  .info-main__work-list {
    font-size: 1rem;
  }

  .no-webp .main-block-iso {
    background: url("../img/isolation/bgIso.png") center/cover no-repeat;
  }

  .main-block-iso {
    margin-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .info-workgoal__subtitle {
    font-size: 0.9375rem;
  }

  .info-workgoal__title {
    font-size: 2.5rem;
  }

  .info-workgoal__text {
    font-size: 1.125rem;
  }

  .card-kinds__title {
    font-size: 1.5625rem;
  }

  .body-kinds__title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }

  .body-kinds__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }

  .kinds {
    margin-top: 7.5rem;
  }

  .body-kinds__image {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    width: 100%;
    max-height: 18.75rem;
    border-radius: 1.5625rem;
    top: 0;
    margin-bottom: 3.125rem;
  }

  .item-body__card {
    height: 100%;
  }

  .info-equipment__subtitle {
    font-size: 0.9375rem;
  }

  .info-equipment__title {
    font-size: 2.5rem;
  }

  .info-equipment__text {
    font-size: 1.125rem;
  }

  .body-process__title {
    font-size: 2.5rem;
  }

  .body-process__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }

  .item-body__card--process {
    height: 100%;
  }

  .info-main-equ {
    padding-top: 3.125rem;
  }

  .var-card__info {
    min-height: 0.625rem;
  }

  .info-var__title {
    font-size: 2.5rem;
  }

  .info-var__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }

  .var__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .var__column:last-child {
    display: block;
    text-align: center;
  }

  .main-block-inst {
    min-height: 37.5rem;
  }

  .info-main-inst {
    padding-top: 9.375rem;
  }

  .info-donepr__title {
    font-size: 2.5rem;
    line-height: 128.91%;
  }

  .donepr__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }

  .donepr__column:last-child {
    display: block;
    text-align: center;
  }

  .info-main-proj {
    padding-top: 6.25rem;
  }

  .oreanda__image img {
    text-align: center;
    width: 100%;
  }

  .oreanda-body {
    display: block;
  }

  .info-oreanda__title {
    font-size: 2.5rem;
    line-height: 47px;
  }

  .popup-certificates__img {
    height: 414px;
    width: 300px;
  }
}

@media (max-width: 31.875em) {
  .maininfo-ourdata {
    font-size: 1rem;
  }
}

@media (max-width: 29.99875em) {
  .body-footer {
    display: block;
  }

  .body-footer__logo {
    text-align: center;
  }

  .body-footer__logo img {
    text-align: center;
  }

  .body-footer__info {
    display: block;
    text-align: center;
    margin-top: 1.375rem;
  }

  .body-footer__item {
    margin-top: 1.875rem;
  }

  .info-contacts__title {
    font-size: 1.875rem;
    margin-top: 0;
  }

  .info-contacts__subtitle {
    font-size: 0.8125rem;
  }

  .contacts__form {
    padding: 3.125rem 1.5625rem;
  }

  .info-main-main {
    padding-top: 7.8125rem;
  }

  .main-block {
    padding-bottom: 40px;
    min-height: 600px;
  }

  .info-main__subtitle {
    font-size: 0.8125rem;
  }

  .info-main__subtitle>span::before {
    width: 50px;
  }

  .info-main__title {
    font-size: 1.875rem;
    line-height: 35px;
    margin-top: 0.9375rem;
  }

  .info-main__text {
    font-size: 1rem;
  }

  .contacts-main {
    display: none;
  }

  .info-services__title {
    font-size: 1.875rem;
    margin-bottom: 1.875rem;
  }

  .info-services__subtitle {
    font-size: 0.8125rem;
    margin-bottom: 0;
  }

  .services-card__info {
    margin: -4.375rem 0 0 0;
  }

  .body-about__title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }

  .body-about__subtitle {
    font-size: 0.8125rem;
    margin-bottom: 0;
  }

  .body-pluses__title {
    font-size: 1.875rem;
    max-width: 29.375rem;
    line-height: 120%;
  }

  .blog-card__info {
    min-height: 0.625rem;
  }

  .info-blog__title {
    font-size: 1.875rem;
    margin-bottom: 1.875rem;
    line-height: 2.5rem;
    margin-top: 0.625rem;
  }

  .info-blog__subtitle {
    font-size: 0.8125rem;
    margin-bottom: 0;
  }

  .info-main-iso {
    padding-top: 3.125rem;
  }

  .info-workgoal__subtitle {
    font-size: 0.8125rem;
  }

  .info-workgoal__title {
    font-size: 1.875rem;
    margin-bottom: 1.5625rem;
    margin-top: 0;
  }

  .info-workgoal__text {
    font-size: 1rem;
  }

  .item-body-kinds__card {
    padding: 2.1875rem 0.625rem;
  }

  .body-kinds__title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    line-height: 128.91%;
  }

  .body-kinds__subtitle {
    font-size: 0.8125rem;
    margin-bottom: 0;
  }

  .card-kinds__title {
    font-size: 1.25rem;
  }

  .card-kinds__text {
    font-size: 1rem;
  }

  .info-equipment__subtitle {
    font-size: 0.8125rem;
  }

  .info-equipment__title {
    font-size: 1.875rem;
    margin-bottom: 1.5625rem;
    margin-top: 0;
  }

  .info-equipment__text {
    font-size: 1rem;
  }

  .body-process__title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    line-height: 128%;
  }

  .body-process__subtitle {
    font-size: 0.8125rem;
    margin-bottom: 0;
  }

  .item-body__card--process {
    padding: 1.875rem 1.25rem;
  }

  .var-card__info {
    min-height: 0.625rem;
  }

  .info-var__title {
    font-size: 1.875rem;
    margin-bottom: 1.875rem;
    line-height: 2.5rem;
    margin-top: 0.625rem;
  }

  .info-var__subtitle {
    font-size: 0.8125rem;
    margin-bottom: 0;
  }

  .info-donepr__title {
    font-size: 1.5625rem;
    line-height: 128.91%;
    max-width: 16.875rem;
  }

  .donepr__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .donepr__column:last-child {
    display: block;
    text-align: center;
  }

  .info-oreanda__title {
    font-size: 1.5625rem;
    line-height: 32px;
  }
}

.webp .main-block {
  background: url(../img/main-page/BG-main.webp) center/cover no-repeat;
}

.webp .body-pluses__title {
  background-image: url(../img/main-page/dots/dots.webp);
}

.webp .main-block-iso {
  background: url(../img/isolation/bgIso.webp) center/cover no-repeat;
}

.webp .main-block-equ {
  background: url(../img/equipment/BGequ.webp) center/cover no-repeat;
}

.webp .main-block-inst {
  background: url(../img/instalation/instalationBG.webp) center/cover no-repeat;
}

.webp .main-block-pro {
  background: url(../img/projects/BG.webp) center/cover no-repeat;
}

@media (max-width: 47.99875em) {

  .webp .main-block-iso {
    background: url(../img/isolation/bgIso.webp) center/cover no-repeat;
  }
}