@font-face {
  font-family: "Vela Sans";
  src: url("../fonts/velasans-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Druk Wide Cy Web Bold Regular";
  src: url("../fonts/druk-wide.ttf") format("truetype");
}

body {
  max-width: 1920px;
  margin: 0 auto;
  font-family: "Vela Sans";
  font-weight: 500;
  color: #fff;
  background-color: #0e0e0e;
  user-select: none;
}

h1,
h2,
h3 {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-weight: 700;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 18px;
}

:hover {
  transition-duration: 0.3s;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

.callBackVoid:hover {
  cursor: pointer;
}

.modalMain {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  display: none;
}

.modalMain__bg {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}

.modalMain__inner {
  position: absolute;
  width: 450px;
  padding: 25px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url(/img/modal.jpg);
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1005;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modalMain__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-family: "Druk Wide Cy Web Bold Regular";
}

.modalMain__sub {
  color: #9d9d9d;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.modalMain__right {
  color: #787878;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.modalMain__row {
  width: 100%;
}

.modal-btn {
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.modalMain__input {
  width: 100%;
  border-radius: 15px;
  background: #fff;
  box-shadow: 2px 2px 0px 0px #0e0e0e;
  padding: 15px;
  outline-style: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #0e0e0e;
}

.modalMain__input::placeholder {
  color: #787878;
}

.modal-close {
  position: absolute;
  right: -25px;
  top: -25px;
  cursor: pointer;
}

.modal-close span {
  content: url(/img/close.svg);
}

.modal-close:hover span {
  content: url(/img/close-r.svg);
}

.modalMain__button {
  text-align: center;
}

@media (max-width: 768px) {
  .modalMain__inner {
    width: 98%;
  }
}

.modalYesright {
  color: #fff;
}

.modalYesright a {
  color: #fff;
}

.modalMain__btn {
  background-color: #fc6701;
  padding: 8px;
  white-space: nowrap;
  border-radius: 5px;
  text-transform: uppercase;
  outline-style: none;
  font-weight: 600;
  color: #fff;
}

.modalMain__btn:hover {
  background-color: #be4f03;
  color: #fff;
}

.stick-menu {
  display: none;
  text-align: center;
}

.is-sticky .stick-menu {
  width: 100%;
  z-index: 1000;
  display: block;
  position: fixed;
  background-color: #fff;
  padding: 12px 0;
}

.stickMenu__list {
  display: flex;
  justify-content: space-around;
}

.line-top {
  display: none;
  z-index: 1001;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

@media (max-width: 992px) {
  .line-top {
    display: block;
  }
}

.line-top__inner {
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.line-top__logo img,
.mobile-menu__logo img {
  height: 49px;
}

.mobile-menu__logo {
  border-right: 1px solid #ff7b8e;
  padding-right: 10px;
}

.line-top__fl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.line-top__phone {
  text-align: left;
}

.line-top__phone-link {
  color: #000;
  text-decoration: none;
}

.line-top__icon {
  border-radius: 15px;
  background: #ffed1f;
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
}

.line-top__icon:hover {
  background: #fff474;
}

.shapka__logo-img {
  width: 100px;
}

.mobile-menu {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;

  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu__inner {
  padding: 20px 28px;
  position: relative;
  border-radius: 0px 20px 20px 0px;
  background: #ff1a3b;
  width: 320px;
  height: 100%;
}

.mobile-menu__line-top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ff7b8e;
}

.mobile-menu__closed {
  position: absolute;
  top: 20px;
  right: -25px;
}

.mobile-menu__menu {
  margin: 16px 0;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.mobile-menu__item {
  padding: 18px 0;
  border-bottom: 1px solid #ff7b8e;
}

.mobile-menu__item a {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
}

.mobile-menu__item a:hover {
  color: v #ffed1f;
}

.mobile-menu__phone {
  margin: 16px 0;
  color: #000;
}

.mobile-menu__phone-text {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
  font-size: 0.875em;
}

.mobile-menu__phone-list {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}

.mobile-menu__phone-item {
  padding: 8px 0;
}

.mobile-menu__phone-link {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.category-mobile {
  margin: 8px 0;
}

.category-mobile select {
  width: 100%;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 8px 16px;
}

.sticky {
  position: fixed;
}

.line-top__callback {
  background-color: #000;
  color: #ffffff;
  border: none;
  margin-top: 4px;
  text-transform: lowercase;
  padding: 4px 8px;
}

.modal-exit {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1001;
  top: 0;
  left: 0;
}

.modal-exit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-exit__inner {
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 350px;
  background-color: #ffffff;
  box-shadow: 0 0 8px #666666;
  padding: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .modal-exit__inner {
    width: 98%;
  }
}

.modal-exit__header {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ------- */

.red-btn a {
  border-radius: 15px;
  background: #ff1a3b;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 15px;
  display: inline-block;
}

.red-btn a:hover {
  box-shadow: 2px 2px 0px 0px #0e0e0e;
}

.yell-btn a {
  border-radius: 15px;
  border: 1px solid #0e0e0e;
  background: #ffed1f;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  padding: 15px;
  display: inline-block;
}

.yell-btn a:hover {
  background: #0e0e0e;
  color: #fff;
}

/* ------- */
.mb2 {
  margin-bottom: 20px;
}

.mb7 {
  margin-bottom: 70px;
}

.shapka {
  border-radius: 0px 0px 20px 20px;
  background-color: #161616;
  /* min-height: 700px; */
  width: 100%;
}

.shapka-menu {
  padding: 10px 0;
  border-bottom: 1px solid #494949;
}

.shapka-menu__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.shapka-menu__inner a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
}

.shapka-menu__inner a:hover {
  color: #FFED1F;
}

.shapka-menu__dot {
  content: " ";
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: #494949;
}

.shapka-info {
  padding: 20px;
}

.shapka-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shapka-info__left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.shapka-logo {
  padding-right: 20px;
  border-right: 1px solid #494949;
}

.shapka-phone a {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.shapka-place {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 2px;
}

.shapka-info__right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.taxi-btn a {
  border-radius: 15px;
  background: #ffed1f;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.taxi-btn a:hover {
  background: #ff1a3b;
  color: #fff;
}

.taxi-btn span {
  content: url(/img/taxi.svg);
  width: 15px;
}

.taxi-btn:hover span {
  content: url(/img/taxi-w.svg);
  transition-duration: 0.3s;
}

.red-yell a {
  border-radius: 15px;
  background: #ff1a3b;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 15px;
  display: inline-block;
}

.red-yell a:hover {
  background: #ffed1f;
  color: #0e0e0e;
}

.shapka__inner {
  padding: 140px 0 140px;
  background-image: url(/img/slide.png);
  background-position: right 30px bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

.slide-title {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: normal;
  color: #ffed1f;
}

.slide-title span {
  color: #fff;
}

.slide-text {
  width: 510px;
  max-width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}

.gen-title {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
}

.why-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.why-sub {
  color: #9d9d9d;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
}

.why-left__title {
  font-family: "Druk Wide Cy Web Bold Regular";
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.why-left_grig {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 276px;
  grid-gap: 20px;
}

.why-left__item {
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 25px;
  transition-duration: 0.3s;
  background-color: #FF1A3B;
}

.why-left__item1 {
  background-image: url(/img/why/1.jpg);
}

.why-left__item2 {
  background-image: url(/img/why/2.jpg);
}

.why-left__item1:hover,
.why-left__item2:hover {
  transform: translateY(10px);
  transition-duration: 0.3s;
}

.why-left__item3 {
  background-image: url(/img/why/3.jpg);
  padding: 30px;
}

.why-left__item3--anim {
  animation-name: rotate-baba;
  animation-delay: 1s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

.black {
  color: #0e0e0e;
}

.avtor__inner {
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 50px;
  background-image: url(/img/avtor.jpg);
  min-height: 550px;
}

.avtor-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avtor-sub {
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin: 10px 0;
}

.bar-card__inner {
  min-height: 570px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bar-card__img {
  position: absolute;
  right: -70px;
  bottom: 0;
}

.bar-card__info {
  width: 535px;
  max-width: 100%;
}

.bar-card-sub {
  color: #9d9d9d;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 10px 0;
}

.shema {
  background-image: url(/img/shema.jpg);
  border-radius: 20px;
  padding: 36px 0 140px;
  background-size: cover;
  background-position: center;
  max-width: 1366px;
  margin: 0 auto;
}

.forma__inner {
  background-image: url(/img/form.jpg);
  padding: 40px 0;
  border-radius: 20px;
  margin-top: -100px;
  background-size: cover;
}

.shema__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}


.shema-gal {
  padding: 30px 40px 0 0;
}

.shema-right {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}

.shema-plan {
  position: relative;
}

.shema-btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
}

.shema-plan img {
  width: 100%;
  border-radius: 20px;
}

.plus-y__btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffed1f;
  border-radius: 50%;
}

.plus-y__btn span {
  content: url(/img/plus.svg);
  transition-duration: 0.3s;
}

.plus-y__btn a {
  height: 21px;
  display: block;
}

.plus-y__btn:hover span {
  content: url(/img/plus-w.svg);
}

.plus-y__btn:hover {
  background-color: #ff1a3b;
}

.forma__inner {
  text-align: center;
}

.form-sub {
  margin: 10px 0 20px;
}

.form-right {
  color: #9b911a;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.form-col {
  width: 100%;
}

.forma__info {
  width: 714px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.formMain__input {
  border-radius: 15px;
  background: #fff;
  box-shadow: 2px 2px 0px 0px #0e0e0e;
  padding: 15px;
  width: 100%;
  border: none;
  outline-style: none;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
}

.formMain__input::placeholder {
  color: #787878;
}

.formMain__input:focus {
  box-shadow: 2px 2px 0px 0px #ff1a3b;
}

.form-btn a {
  border-radius: 15px;
  background: #ff1a3b;
  color: #fff;
  padding: 15px;
  display: block;
  white-space: nowrap;
  cursor: pointer;
}

.form-btn a:hover {
  box-shadow: 2px 2px 0px 0px #0e0e0e;
}

.gallery__inner {
  padding: 70px 0;
  text-align: center;
}

.gallery-info {
  width: 555px;
  max-width: 100%;
  margin: 0 auto 25px;
}

.gallery-info .gen-title span {
  color: #ffed1f;
}

.gallery-sub {
  margin-top: 10px;
  color: var(--desc-color-text, #9d9d9d);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.gal-map {
  background-image: url(/img/gal-map.png);
  background-position: center top;
  background-repeat: no-repeat;
}

.gallery-photo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.gallery-photo__item img {
  border-radius: 20px;
  width: 100%;
}

.gallery-photo__item3 {
  animation-name: rotate-right;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

.gallery-photo__item2 {
  animation-name: rotate-left;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

.shema,
.forma {
  position: relative;
}

.shema-bg {
  position: absolute;
  background-image: url(/img/title-bg.png);
  background-size: contain;
  background-position: left 75px top;
  background-repeat: no-repeat;
  width: 60%;
  height: 338px;
  z-index: 100;
}

.shema__title {
  position: relative;
  color: #0e0e0e;
  z-index: 101;
  padding-top: 23px;
  width: 420px;
  max-width: 100%;
}

.shema-text {
  margin-top: 10px;
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.shema-left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  padding-right: 55px;
}

.shema-gal__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Druk Wide Cy Web Bold Regular";
}

.shema-gal__item img {
  border-radius: 15px;
}

.shema-gal__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.shema-gal {
  position: relative;
  z-index: 102;
  width: 516px!important;
  max-width: 100%;
}

.shema-gal__item a:hover:after {
  content: url(/img/gal.svg);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 26, 59, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.shema-right {
  position: relative;
}

.compensate-for-scrollbar {
  margin: auto !important;
}

.shema-gal__slider {
  position: relative;
}

.shema-gal__right {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ff1a3b;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 102;
}

.shema-gal__right span {
  content: url(/img/right.svg);
}

.shema-gal__right:hover {
  background-color: #ffed1f;
}

.shema-gal__right:hover span {
  content: url(/img/right-b.svg);
}

.map-inner img {
  width: 100%;
  border-radius: 20px;
}

#mapS,
#map {
  border-radius: 20px;
  overflow: hidden;
}

.footer__inner {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #787878;
}

.footer-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-btns,
.footer-soc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 15px;
  gap: 10px;
  border-radius: 15px;
  background: #1e1e1e;
  color: #fff;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.15) inset;
}

.footer-btn a:hover {
  background: #404040;
}

.footer-taxi span {
  content: url(/img/taxi-y.svg);
  width: 15px;
}

.footer-logo {
  padding-right: 20px;
  border-right: 1px solid #333333;
}

.footer-soc__item a {
  width: 47px;
  height: 47px;
  border-radius: 15px;
  border: 1px solid #646464;
  display: flex;
  justify-content: center;
  align-items: center;
}

.soc-vk span {
  content: url(/img/tg.svg);
}

.soc-tg span {
  content: url(/img/vk.svg);
}

.footer-soc__item a:hover {
  background-color: #646464;
}

.soc-vk a:hover span {
  content: url(/img/tg-b.svg);
}

.soc-tg a:hover span {
  content: url(/img/vk-b.svg);
}

.mobl {
  display: none;
}

.shapka-soc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.shapka-soc__item a {
  width: 47px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  border: 1px solid #ffed1f;
}

.shapka-soc__item a:hover {
  background-color: #ffed1f;
}

.shapka-soc__item a:hover img {
  filter: brightness(0);
}

.shapka-soc__item a:active {
  background-color: #1b1b1b;
}

.shapka-soc__item a:active img {
  filter: none;
}

@keyframes rotate-baba {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-1.5deg);
  }
}

@keyframes rotate-right {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-3deg);
  }
}

@keyframes rotate-left {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(2deg);
  }
}

.sticky .line-top__inner {
  background-color: #0e0e0e;
  transition-duration: 0.3s;
}

@media (max-width: 1200px) {
  .shema-bg {
    background-position: left 22px top;
  }

  .shema__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #Shema > div:nth-of-type(1) {
    order: 1;
  }
  #Shema > div:nth-of-type(2) {
    order: 3;
  }
  #Shema > div:nth-of-type(3) {
    order: 2;
  }

  .shema-right {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .shema-gal {
    width: 970px!important;
  }
}

@media (max-width: 992px) {
  .shapka-menu,
  .shapka-info {
    display: none;
  }

  .why-inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .why-left__item3 {
    min-height: 490px;
  }

  .bar-card__img {
    display: none;
  }

  .bar-card__info .gen-title span {
    color: #ff1a3b;
  }

  .bar-card__info {
    text-align: center;
    width: 100%;
  }

  .bar-card-sub {
    font-size: 13px;
  }

  .bar-card__inner {
    background-image: url(/img/bar-card.png);
    background-position: bottom center;
    padding-bottom: 550px;
    padding-top: 40px;
    background-repeat: no-repeat;
  }

  .form-row {
    flex-direction: column;
  }

  .forma__inner {
    padding: 20px 15px;
  }

  .footer__inner {
    flex-direction: column;
    justify-content: center;
  }

  .shema-bg {
    background-image: none;
  }

  .shema__title .black,
  .shema__title .shema-text {
    color: #fff!important;
  }

  .shema__inner {
    grid-template-columns: repeat(1,1fr);
  }  

  .shema__title {
    width: 100%;
  }
  .avtor__inner {
    min-height: 700px;
  }

  .shema-left {
    padding-right: 0;
  }

  .forma__inner {
    background-image: url(/img/form-s.jpg); 
    background-size: cover;
    background-position: left top;
  }

  .shema-right {
    padding-bottom: 20px;
    border-bottom: 1px solid #787878;
  }

  .shema-gal {
    padding: 20px 20px 0 0;
  }
  .shema-gal {
    width: 750px!important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }

  .gen-title {
    font-size: 29px;
  }

  .desc {
    display: none;
  }

  .mobl {
    display: block;
  }

  .shapka {
    background-image: url(/img/slide-s.png);
    min-height: 900px;
    background-position: center bottom;
    border-radius: 0 0 20px 20px;
    background-size: cover;
  }

  .shapka__inner {
    padding: 112px 0 140px;
    background-image:none;
  }

  .slide-title {
    color: #fff;
  }

  .slide-title span {
    display: none;
  }

  .why-left_grig,
  .why-inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .why-left_grig {
    grid-auto-rows: 297px;
  }

  .why-left__title {
    font-size: 21px;
  }

  .why-left__text {
    font-size: 13px;
  }

  .avtor__inner {
    padding: 20px;
    background-image: url(/img/avtor-s.jpg);
    background-position: right bottom;
    min-height: 650px;
  }

  .avtor__inner .gen-title {
    font-size: 29px;
  }

  .avtor-sub {
    font-size: 13px;
  }

  .avtor-btns {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }

  .bar-card__info .gen-title {
    font-size: 27px;
  }

  .bar-card__inner {
    background-image: url(/img/bar-s.png);
  }

  .form-btn {
    width: 100%;
  }

  .form-btn a {
    width: 100%;
    text-align: center;
  }

  .form-sub,
  .form-right {
    font-size: 13px;
  }

  .footer-btns {
    flex-direction: column;
  }

  .footer-left,
  .footer-right,
  .footer-btn {
    width: 100%;
  }

  .footer-btns a,
  .footer-info {
    width: 100%;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
  }

  .gallery-photo {
    gap: 0;
    overflow: hidden;
  }

  .gallery-photo__item {
    margin: 0 -30px;
  }

  .gallery-photo__item img {
    width: 210px;
  }

  .gallery-photo__item3 {
    transform: rotate(10deg);
    animation: none;
  }

  .gallery-photo__item2 {
    transform: rotate(-9deg);
    animation: none;
  }

  .bar-card__inner {
    padding-bottom: 370px;
  }
  .shema-gal {
    width: 100vw!important;
  }
  .why-left__item1 {
    background-image: url(/img/why/1.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
  }
  
  .why-left__item2 {
    background-image: url(/img/why/2.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .slide-title, .gen-title {
    font-size: 27px;
  }

  .avtor-btns .form-btn a {
    width: fit-content;
  }
}

@media (max-width: 450px) {
  .shapka {
    min-height: 600px;
  }

  .slide-title,
  .gen-title {
    font-size: 24px;
  }

  .gen-title {
    text-align: center;
  }

  .slide-text,
  .red-yell a {
    font-size: 12px;
  }

  .why-left__item3 {
    background-image: url(/img/why/3-s.jpg);
    background-position: bottom right;
  }

  .gallery-photo__item img {
    width: 170px;
}
}
