.wr {
  width: 100% !important;
  max-width: 1300px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px !important;
  padding-right: 40px !important;
  position: relative;
}

.wr__sidebar {
  width: 100% !important;
  max-width: 1300px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px !important;
  padding-right: 40px !important;
  position: relative;
  display: flex;
  height: 100%;
}

a:focus {
  outline: none;
}

button:focus {
  outline: none;
}

.gr {
  display: flex !important;
}

.grc {
  display: flex !important;
  flex-direction: column !important;
}

.dn {
  display: none !important;
}

.df {
  display: flex !important;
}

.dfc {
  display: flex !important;
  flex-direction: column !important;
}

.yc {
  align-items: center !important;
}

.xc {
  justify-content: center !important;
}

.xbw {
  justify-content: space-between !important;
}

.ybw {
  align-content: space-between !important;
}

.f00a {
  flex: 0 0 auto;
}

.f10a {
  flex: 1 0 auto;
}

.f01a {
  flex: 0 1 auto;
}

.or1 {
  order: 1;
}

.or2 {
  order: 2;
}

.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mla {
  margin-left: auto;
}

.mra {
  margin-right: auto;
}

.mt-15 {
  margin-top: 15px;
}

.w100 {
  width: 100%;
}

/* COLOR */

.color_invert {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.btn_animation {
  color: #fff !important;
  background: #0bb9f5;
  animation: background 4s infinite alternate;
}

.disabled-link {
  pointer-events: none;
  border: 1px solid #b4b4b4 !important;
  color: #b4b4b4 !important;
}

.form-control.errorForm {
  border: 3px solid #f07884;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: inherit;
  height: inherit;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-decoration: none;
}

.video_play {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  background-color: rgb(42 72 152);
  cursor: pointer;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.video_play:hover {
  box-shadow: 0px 0px 0px 30px #ffffff38;
}

.video_play i:before {
  content: "\f1bc";
  line-height: 100px !important;
  margin-left: 4px;
  font-family: flaticon !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  font-size: 4.6875rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.box-shadow,
.box-shadow-sm {
  transition: transform ease 0.2s, box-shadow ease 0.2s;
}
.bg-color1 {
  background-color: #f5f5f5;
}
@keyframes background {
  50% {
    background: #2a4898;
    box-shadow: 0 -140px 70px -120px #0bb9f5 inset,
      0 -210px 70px -120px #2a4898 inset, 0 -280px 70px -120px #0bb9f5 inset;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes slide_arrow_right {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5px, 0);
  }
}

@keyframes slide_arrow_top_left {
  0%,
  100% {
    transform: translate(0, 0) rotate(135deg);
  }
  50% {
    transform: translate(-3px, 3px) rotate(135deg);
  }
}

@keyframes zoombg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}

.linear-wipe {
  text-align: center;
  background: linear-gradient(to right, #fff 20%, #ff0 40%, #ff0 60%, #fff 80%);
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 1s linear infinite;
  animation: shine 1s linear infinite;
}

@-webkit-keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* animate_pulse */

@keyframes animate_pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(228, 25, 49, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(228, 25, 49, 0);
  }
}

.animate_pulse {
  animation: animate_pulse 1.5s infinite;
}

.animate_pulse:hover {
  animation: none;
}




body {
  overflow-x: hidden;
}
.dis-scroll {
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.mob-menu-overlay {
  display: none;
  position: fixed;
  z-index: 105;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(34, 34, 34, 0.75);
}

.mob-menu {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 100%;
  width: 100%;
  max-width: 375px;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.mob-menu._show {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.mob-menu__close-btn {
  padding: 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  line-height: 0;
}
.mob-menu__close-btn::before {
  content: '';
  background: url('../../img/btn-close.svg') no-repeat center/contain;
  width: 25px;
  height: 25px;
  display: block;
  line-height: 1;
  font-size: 20px;
}

.mob-menu {
  color: #000;
  background: #fff;
  text-align: center;
}
.mob-menu__wrapper {
  padding: 30px 0;
}
.mob-menu__wrapper ._row {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.mob-menu__wrapper ._row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mob-menu__logo img {
  width: 100%;
  max-width: 180px;
}
.mob-menu__tel {
  font-weight: 500;
  font-size: 24px;
}
.mob-menu__nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
}
.mob-menu__nav-menu ul li.current-menu-item {
  color: red;
}
.mob-menu__socials-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mob-menu a {
  text-decoration: none;
}

.container._fix {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  display: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #000;
}
.nheader {
  height: 125px;
  font-family: Inter;
  line-height: 1.2;
  z-index: 10;
  position: relative;
}
.nheader__fxd {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
}
.nheader__fxd._scroll {
  -webkit-box-shadow: 0px 4px 9px -3px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 4px 9px -3px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 4px 9px -3px rgba(34, 60, 80, 0.2);
}
.nheader__inner {
  padding: 25px 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: all 0.2s ease;
}
.nheader__logo img {
  width: 100%;
  max-width: 150px;
  object-fit: contain;
  transition: all 0.2s ease;
}

.nheader__nav {
  display: flex;
  align-items: center;
  gap: 70px;
}
.nheader__nav a {
  color: #181B11;
  font-size: 16px;
  font-weight: 300;
}
.nheader__contacts {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nheader__item-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nheader__item-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.nheader__item-content {
  display: flex;
  flex-direction: column;
  color: #464941;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.nheader__social {
  transition: all 0.2s ease;
}
.nheader__social img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
@media (min-width: 992px) {
  .nheader__social:hover {
    transform: scale(1.05);
  }
}
.nheader__item-content ._tel {
  color: #181B11;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.nheader__item-content ._email {
  color: #464941;
  font-size: 13px;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .nheader__fxd._scroll .nheader__inner {
    padding: 10px 0;
  }
  .nheader__fxd._scroll .nheader__logo img {
    max-width: 120px;
  }
}
@media (max-width: 1199px) {
  .nheader {
    height: 60.5px;
  }
  .nheader__inner {
    padding: 5px 0;
    gap: 10px;
  }
  .nheader__logo img {
    max-width: 100px;
  }
  .nheader__nav {
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .nheader__nav {
    display: none;
  }
  .nheader__item-box._address {
    display: none;
  }
}
@media (max-width: 575px) {
  .nheader__item-box._phone .nheader__item-content {
    display: none;
  }
}

.mob-menu__nav-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 20px;
}
.mob-menu__address {
  font-size: 16px;
}

.whatsapp-button {
  position: fixed;
  right: 0;
  bottom: 0;
  transform: translate(-50%, -50%);
  background: #43d854;
  /*цвет кнопки*/
  border-radius: 50%;
  width: 55px;
  /*ширина кнопки*/
  height: 55px;
  /*высота кнопки*/
  color: #fff;
  text-align: center;
  line-height: 53px;
  /*центровка иконки в кнопке*/
  font-size: 35px;
  /*размер иконки*/
  z-index: 110;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-button a {
  color: #fff;
}

.whatsapp-button:before,
.whatsapp-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #43d854;
  /*цвет анимированных волн от кнопки*/
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}

.whatsapp-button:after {
  animation-delay: .5s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@media (max-width : 800px) {
  .whatsapp-button {
    bottom: 5px;
    /*отступ кнопки снизу от экрана*/
  }
}

figure.zoom {
  background-position: 50% 50%;
  position: relative;
  width: 500px;
  overflow: hidden;
  cursor: zoom-in;
}
figure.zoom img:hover {
  opacity: 0;
}
figure.zoom img {
  transition: opacity 0.5s;
  display: block;
  width: 100%;
}

/* кнопка звонилка */
.Phone {
  position: fixed;
  bottom: 100px;
  right: 28px;
  display: block;
  margin: 0;
  width: 1em;
  height: 1em;
  font-size: 55px;
  background-color: #3498db;
  border-radius: 0.5em;
  box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 0, 0) scale(1);
  cursor: pointer;
  z-index: 500;
}

.Phone::before,
.Phone::after {
  position: absolute;
  content: "";
}

.Phone::before {
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(0);
}

.Phone::after {
  top: 0.25em;
  left: 0.25em;
  width: 0.5em;
  height: 0.5em;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTYuNiAxMC44YzEuNCAyLjggMy44IDUuMSA2LjYgNi42bDIuMi0yLjJjLjMtLjMuNy0uNCAxLS4yIDEuMS40IDIuMy42IDMuNi42LjUgMCAxIC40IDEgMVYyMGMwIC41LS41IDEtMSAxLTkuNCAwLTE3LTcuNi0xNy0xNyAwLS42LjQtMSAxLTFoMy41Yy41IDAgMSAuNCAxIDEgMCAxLjIuMiAyLjUuNiAzLjYuMS40IDAgLjctLjIgMWwtMi4zIDIuMnoiIGZpbGw9IiNmZmZmZmYiLz48L3N2Zz4=);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(0, 0, 0);
}

.Phone.is-animating {
  animation: phone-outer 3000ms infinite;
}
.Phone.is-animating::before {
  animation: phone-inner 3000ms infinite;
}
.Phone.is-animating::after {
  animation: phone-icon 3000ms infinite;
}

@keyframes phone-outer {
  0% {
      transform: translate3d(0, 0, 0) scale(1);
      box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  33.3333% {
      transform: translate3d(0, 0, 0) scale(1.1);
      box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5);
  }
  66.6666% {
      transform: translate3d(0, 0, 0) scale(1);
      box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  100% {
      transform: translate3d(0, 0, 0) scale(1);
      box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
}
@keyframes phone-inner {
  0% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(0);
  }
  33.3333% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(0.9);
  }
  66.6666% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(0);
  }
  100% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(0);
  }
}
@keyframes phone-icon {
  0% {
      transform: translate3d(0em, 0, 0);
  }
  2% {
      transform: translate3d(0.01em, 0, 0);
  }
  4% {
      transform: translate3d(-0.01em, 0, 0);
  }
  6% {
      transform: translate3d(0.01em, 0, 0);
  }
  8% {
      transform: translate3d(-0.01em, 0, 0);
  }
  10% {
      transform: translate3d(0.01em, 0, 0);
  }
  12% {
      transform: translate3d(-0.01em, 0, 0);
  }
  14% {
      transform: translate3d(0.01em, 0, 0);
  }
  16% {
      transform: translate3d(-0.01em, 0, 0);
  }
  18% {
      transform: translate3d(0.01em, 0, 0);
  }
  20% {
      transform: translate3d(-0.01em, 0, 0);
  }
  22% {
      transform: translate3d(0.01em, 0, 0);
  }
  24% {
      transform: translate3d(-0.01em, 0, 0);
  }
  26% {
      transform: translate3d(0.01em, 0, 0);
  }
  28% {
      transform: translate3d(-0.01em, 0, 0);
  }
  30% {
      transform: translate3d(0.01em, 0, 0);
  }
  32% {
      transform: translate3d(-0.01em, 0, 0);
  }
  34% {
      transform: translate3d(0.01em, 0, 0);
  }
  36% {
      transform: translate3d(-0.01em, 0, 0);
  }
  38% {
      transform: translate3d(0.01em, 0, 0);
  }
  40% {
      transform: translate3d(-0.01em, 0, 0);
  }
  42% {
      transform: translate3d(0.01em, 0, 0);
  }
  44% {
      transform: translate3d(-0.01em, 0, 0);
  }
  46% {
      transform: translate3d(0em, 0, 0);
  }
}
/* кнопка звонилка end */

.vc__title li.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.vc__title li span {
  font-size: 28px;
}
@media (max-width: 992px) {
  .vc__title li span {
    font-size: 16px;
  }
}