@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;800;900&family=Jost:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
.center-content, .available-spaces .available-spaces__images .available-spaces__image-item .image .image-icon, .social-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hover-pointer:hover, .sidebar .close-sidebar:hover, .header__second-part .header__burger:hover, .header__menu-list #dropdown-menu-item .dropdown-menu-list .list-item:hover, .social-button:hover {
  cursor: pointer;
}

.hover-brightness:hover, .social-button:hover {
  filter: brightness(0.9);
}

.hover-red-color:hover, .sidebar__content .sidebar__menu-list .menu-item:hover, .header__menu-list #dropdown-menu-item .dropdown-menu-list a:hover, .header__menu-list .menu-item:hover {
  color: #D9000C;
}

.fs-16 {
  font-size: 16px;
}

body.open {
  overflow: hidden;
  height: 100vh;
}

.social-button {
  width: -moz-fit-content;
  width: fit-content;
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #2AABEE;
  color: white;
}

.social-button.instagram {
  background: linear-gradient(268deg, #763BCA 0%, #BF209E 27.6%, #EB395A 58.33%, #FF9E3B 79.69%, #FEBB48 100%);
  padding: 0 35px;
}

.social-button.tiktok {
  background-color: black;
  padding: 0 35px;
}

.site-subtitle {
  color: #656565;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}

.section-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 111.5%;
  font-family: "Montserrat", sans-serif;
}

.site-shadow {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.63);
}

.site-shadow.visible {
  animation-name: makeShadow;
  animation-duration: 0.25s;
  display: block;
  z-index: 100;
}

@keyframes makeShadow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about {
  color: #656565;
  line-height: 135.5%;
}

.text-centered {
  text-align: center;
}

.flex-vertical-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-content, .available-spaces .available-spaces__images .available-spaces__image-item .image .image-icon, .social-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hover-pointer:hover, .sidebar .close-sidebar:hover, .header__second-part .header__burger:hover, .header__menu-list #dropdown-menu-item .dropdown-menu-list .list-item:hover, .social-button:hover {
  cursor: pointer;
}

.hover-brightness:hover, .social-button:hover {
  filter: brightness(0.9);
}

.hover-red-color:hover, .sidebar__content .sidebar__menu-list .menu-item:hover, .header__menu-list #dropdown-menu-item .dropdown-menu-list a:hover, .header__menu-list .menu-item:hover {
  color: #D9000C;
}

.fs-16 {
  font-size: 16px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
*::after {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}
* img {
  vertical-align: top;
}

a {
  text-decoration: none;
  display: block;
  color: black;
}
a:visited {
  color: black;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #F7F7F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.mobile-header {
  display: none;
}

header {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  background-color: white;
  position: fixed;
  top: 0;
  z-index: 99;
}

.header {
  width: 1328px;
  align-items: center;
  display: grid;
  grid-template-columns: 200px 1fr 300px;
  font-size: 24px;
  background-color: white;
}
.header__logo {
  width: 200px;
  height: auto;
}
.header__menu-list {
  display: flex;
  -moz-column-gap: 70px;
       column-gap: 70px;
  margin-left: 70px;
}
.header__menu-list .menu-item {
  padding: 35px 0;
}
.header__menu-list #dropdown-menu-item {
  position: relative;
}
.header__menu-list #dropdown-menu-item i {
  transition: rotate 0.25s;
  transform-origin: 50% 55% 0;
}
.header__menu-list #dropdown-menu-item:hover > a {
  color: #D9000C;
}
.header__menu-list #dropdown-menu-item:hover i {
  rotate: -180deg;
}
.header__menu-list #dropdown-menu-item:hover .dropdown-menu-list {
  grid-template-rows: 1fr;
}
.header__menu-list #dropdown-menu-item .dropdown-menu-list {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.25s;
  color: white;
  background-color: #3D3D3D;
  position: absolute;
  top: 91px;
  width: 350px;
}
.header__menu-list #dropdown-menu-item .dropdown-menu-list > div {
  overflow: hidden;
}
.header__menu-list #dropdown-menu-item .dropdown-menu-list .list-item {
  display: block;
  white-space: nowrap;
  margin: 20px 30px;
}
.header__menu-list #dropdown-menu-item .dropdown-menu-list.active {
  display: block;
}
.header__second-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.header__second-part .header__vertical-line {
  width: 1px;
  height: 54px;
  background-color: #CFCFCF;
}
.header__second-part .header__burger {
  width: 40px;
  height: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header__second-part .header__burger .bar {
  width: 40px;
  height: 1px;
  background-color: #656565;
}

main {
  width: 1328px;
}

.sidebar {
  position: fixed;
  z-index: 101;
  right: -1000%;
  width: 400px;
  height: 100vh;
  background-color: white;
  transition: 0.35s;
}
.sidebar .close-sidebar {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 50px;
  color: #656565;
  z-index: 103;
}
@media (max-width: 1024px) {
  .sidebar .close-sidebar {
    position: static;
    text-align: end;
    padding: 15px 25px;
  }
}
.sidebar__content {
  position: relative;
}
.sidebar__content .sidebar__menu-list {
  padding: 180px 0 0 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar__content .sidebar__menu-list .menu-title {
  color: #656565;
  margin-bottom: -8px;
}
.sidebar__content .sidebar__menu-list .menu-item {
  font-size: 32px;
}

.sidebar.visible {
  right: 0;
}
@media (max-width: 1024px) {
  .sidebar.visible {
    width: 100%;
  }
  .sidebar.visible .sidebar__content {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr 110px;
    overflow: scroll;
  }
  .sidebar.visible .sidebar__content .sidebar__menu-list {
    padding: 0 25px 0 0;
    text-align: end;
  }
  .sidebar.visible .sidebar__content .sidebar__menu-list .messangers p {
    justify-content: end;
  }
}

.work-solution {
  z-index: 6000;
  margin-top: 150px;
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.work-solution .left .left-side-image {
  margin-left: -225px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}
.work-solution .right .right-image {
  margin-right: -225px;
}
.work-solution .site-subtitle {
  margin: 33px 0;
}
.work-solution .section-title {
  margin-bottom: 47px;
}
.work-solution__description .member-counter {
  margin-top: 25px;
}
.work-solution__description .member-counter span {
  color: #D9000C;
}
.work-solution__description .member-images {
  margin-top: 50px;
}
.work-solution__description .member-images img {
  border-radius: 100%;
  border: 5px white solid;
}
.work-solution__description .member-images img:nth-child(n+2) {
  margin-left: -25px;
}
.work-solution__description a {
  margin-top: 20px;
}

.footer {
  background-color: #262626;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  display: flex;
  justify-content: center;
}
.footer .contacts {
  position: absolute;
  top: -30px;
}
.footer .footer__content {
  width: 1328px;
  color: white;
  padding: 40px 0 21px 0;
}
.footer .footer__content .footer__main {
  display: grid;
  gap: 20px;
  grid-template-columns: 354px 1fr;
}
.footer .footer__content .footer__main .phone:hover {
  color: #D9000C !important;
}
.footer .footer__content .footer__main .footer__logo-side {
  margin-top: 31px;
  width: 354px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer__content .footer__main .footer__logo-side .messangers p a {
  color: white;
}
.footer .footer__content .footer__main .footer__logo-side .messangers p a:hover {
  color: #D9000C !important;
}
.footer .footer__content .footer__main .footer__logo-side img {
  width: 75%;
}
.footer .footer__content .footer__main .footer__logo-side .footer__slogan {
  margin-top: 18px;
  line-height: 99%;
  font-size: 40px;
  text-align: center;
}
.footer .footer__content .footer__main .footer__logo-side .footer__working-hours {
  font-size: 20px;
  font-weight: 600;
  line-height: 111.5%;
  margin-top: 24px;
}
.footer .footer__content .footer__main .footer__logo-side .footer__working-time {
  margin-top: 15px;
}
.footer .footer__content .footer__main .footer__map-side {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 111.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 954px;
}
.footer .footer__content .footer__main .footer__map-side .ymaps-2-1-79-map {
  width: 100% !important;
}
.footer .footer__content .footer__main .footer__map-side .how-to-find-us {
  font-weight: 600;
  font-size: 40px;
}
.footer .footer__content .footer__main .footer__map-side iframe,
.footer .footer__content .footer__main .footer__map-side .map-modal__block {
  margin-top: 41px;
}
.footer .footer__content .footer__main .footer__map-side iframe .ymaps-2-1-79-gotoymaps__container,
.footer .footer__content .footer__main .footer__map-side iframe .ymaps-2-1-79-copyright,
.footer .footer__content .footer__main .footer__map-side iframe .ymaps-2-1-79-gototech,
.footer .footer__content .footer__main .footer__map-side .map-modal__block .ymaps-2-1-79-gotoymaps__container,
.footer .footer__content .footer__main .footer__map-side .map-modal__block .ymaps-2-1-79-copyright,
.footer .footer__content .footer__main .footer__map-side .map-modal__block .ymaps-2-1-79-gototech {
  display: none !important;
  visibility: hidden !important;
}
.footer .footer__content .footer__main .footer__map-side .map-modal__block.open {
  position: fixed;
  top: 30px;
  left: 30px;
  right: 30px;
  z-index: 11;
}
.footer .footer__content .footer__copyright {
  font-size: 10px;
  color: #E0E0E0;
  margin-top: 61px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer__content .footer__copyright p,
.footer .footer__content .footer__copyright .intechhub {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 650px) {
  .footer .footer__content .footer__copyright {
    flex-direction: column-reverse;
    gap: 12px;
  }
}

.advantages__list {
  margin-bottom: 104px;
  margin-top: 75px;
}
.advantages__list .section-title {
  width: 1000px;
  margin-top: 8px;
}
.advantages__list .about {
  width: 690px;
  margin-top: 21px;
}
.advantages__list .advantages__list-item {
  margin-top: 82px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.advantages__list .advantages__list-item .advantages__item {
  max-width: 490px;
  padding-left: 22px;
  position: relative;
}
.advantages__list .advantages__list-item .advantages__item::after {
  content: "";
  background-color: black;
  height: 100%;
  width: 3px;
  top: 0;
  left: 0;
  position: absolute;
}
.advantages__list .advantages__list-item .advantages__item__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 111.5%;
  height: 73px;
}
.advantages__list .advantages__list-item .advantages__item__description {
  font-size: 24px;
  line-height: 111.5%;
  height: 135px;
  margin-top: 53px;
}
.advantages__list .advantages__list-item .advantages__item__counter {
  font-size: 60px;
  text-align: right;
  margin-top: 53px;
  line-height: 111.5%;
}

.our-gallery {
  margin-top: 80px;
}
.our-gallery .section-title {
  margin-top: 12px;
}
.our-gallery .our-gallery__title {
  display: grid;
  grid-template-columns: 651px 1fr;
}
.our-gallery .our-gallery__title .our-gallery__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: end;
}
@media (max-width: 856px) {
  .our-gallery .our-gallery__title {
    grid-template-columns: auto;
  }
  .our-gallery .our-gallery__title .our-gallery__buttons {
    margin-top: 16px;
    justify-content: flex-start;
    flex-direction: row;
  }
}
@media (max-width: 360px) {
  .our-gallery .our-gallery__title .our-gallery__buttons {
    flex-direction: column;
    align-items: start;
  }
}
.our-gallery .our-gallery__images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 47px;
}
.our-gallery .our-gallery__images img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}
@media (max-width: 800px) and (min-width: 450px) {
  .our-gallery .our-gallery__images {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 449px) {
  .our-gallery .our-gallery__images {
    grid-template-rows: auto;
    grid-template-columns: auto;
  }
}

.tariffs-and-prices {
  margin-top: 133px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  position: relative;
}
.tariffs-and-prices__description {
  width: 550px;
  margin-right: 50px;
}
.tariffs-and-prices__description .section-title {
  margin-top: 12px;
}
.tariffs-and-prices__description .about {
  margin-top: 55px;
}
@media (min-width: 1024px) {
  .tariffs-and-prices .tariffs-and-prices__description.fixed {
    position: fixed;
    top: 110px;
  }
  .tariffs-and-prices .tariffs-and-prices__description.bottom {
    position: absolute;
    bottom: 0;
    top: auto;
  }
}
.tariffs-and-prices__list {
  grid-area: 1/2/2/3;
  display: grid;
  row-gap: 15px;
}
.tariffs-and-prices__list .tariff-item {
  position: relative;
}
.tariffs-and-prices__list .tariff-item .tariff-image {
  position: relative;
  width: 100%;
  height: 650px;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 19px 42px 30px 39px;
  background-color: rgba(46, 46, 46, 0.7725490196);
  color: white;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-item__header .name {
  font-weight: 500;
  line-height: 111.5%;
  font-size: 28px;
  display: flex;
  flex-direction: column;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-item__header .name span {
  font-size: 16px;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-item__header .price {
  font-size: 24px;
  font-weight: 700;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-item__header .price .old-price {
  font-size: 18px;
  margin-left: 4px;
  position: relative;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-item__header .price .old-price::after {
  width: 100%;
  height: 2px;
  background-color: #D9000C;
  position: absolute;
  content: "";
  top: 12px;
  rotate: 350deg;
  left: -2px;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .horizontal-line {
  width: 390px;
  height: 1px;
  background-color: white;
  margin-top: 35px;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-advantages {
  margin-top: 28px;
  padding-left: 32px;
  display: grid;
  row-gap: 12px;
  width: 330px;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-advantages .tariff-advantage {
  display: flex;
  gap: 22px;
  align-items: center;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-advantages .tariff-advantage i {
  color: #D9000C;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .optionally {
  padding-left: 32px;
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .optionally i {
  margin-top: 4px;
  color: #D9000C;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .optionally span {
  width: 85%;
}
.tariffs-and-prices__list .tariff-item .tariff-item__description .social-button {
  margin-left: 32px;
  margin-top: 15px;
}

.why-choose-us {
  margin-top: 133px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 20px;
  position: relative;
}
.why-choose-us .why-choose-us__description {
  width: 100%;
}
.why-choose-us .why-choose-us__description .section-title {
  margin-top: 29px;
}
.why-choose-us .why-choose-us__description .about {
  margin-top: 49px;
}
.why-choose-us .why-choose-us__description .why-choose-us__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 54px;
       column-gap: 54px;
  row-gap: 25px;
  margin-top: 20px;
}
.why-choose-us .why-choose-us__description .why-choose-us__list i {
  font-size: 85px;
  color: #727272;
}
.why-choose-us .why-choose-us__description .why-choose-us__list .title {
  font-size: 21px;
  font-weight: 500;
  margin-top: 24px;
}
.why-choose-us .why-choose-us__description .why-choose-us__list .description {
  color: #656565;
  height: 110px;
  margin-top: 14px;
  max-width: 290px;
  font-size: 16px;
}
.why-choose-us .why-choose-us_image {
  position: relative;
  height: 770px;
}
@media (max-width: 425px) {
  .why-choose-us .why-choose-us_image {
    position: relative;
  }
}
.why-choose-us .why-choose-us_image .video-overlay {
  background-image: url(../img/overlay.png);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.why-choose-us .why-choose-us_image video {
  width: 500px;
  height: 770px;
  -o-object-fit: cover;
     object-fit: cover;
}
.why-choose-us .why-choose-us_image .why-choose-us_image-description {
  padding: 32px 24px;
  display: flex;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-between;
  background-color: #3D3D3D;
  bottom: 24px;
  position: absolute;
}
.why-choose-us .why-choose-us_image .why-choose-us_image-description .wcu-image-item {
  text-align: center;
}
.why-choose-us .why-choose-us_image .why-choose-us_image-description .wcu-image-item .title {
  font-size: 48px;
  color: #D9000C;
  font-weight: 700;
}
.why-choose-us .why-choose-us_image .why-choose-us_image-description .wcu-image-item .description {
  font-size: 16px;
  font-weight: 500;
  color: white;
}
@media (max-width: 425px) {
  .why-choose-us .why-choose-us_image .why-choose-us_image-description .wcu-image-item .title {
    font-size: 24px !important;
  }
  .why-choose-us .why-choose-us_image .why-choose-us_image-description .wcu-image-item .description {
    font-size: 12px !important;
  }
}
@media (min-width: 1024px) {
  .why-choose-us .why-choose-us_image.fixed {
    right: 0;
    position: absolute;
  }
  .why-choose-us .why-choose-us_image.bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
  }
}

.available-spaces .section-title {
  width: 1200px;
  margin-top: 50px;
}
.available-spaces .about {
  width: 830px;
  margin-top: 58px;
}
.available-spaces .available-spaces__images {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.available-spaces .available-spaces__images .available-spaces__image-item .image {
  position: relative;
}
.available-spaces .available-spaces__images .available-spaces__image-item .image img {
  width: 100%;
}
.available-spaces .available-spaces__images .available-spaces__image-item .image .image-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(217, 0, 12, 0.87);
  width: 130px;
  height: 130px;
}
@media (max-width: 425px) {
  .available-spaces .available-spaces__images .available-spaces__image-item .image .image-icon {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 720px) and (max-width: 1024px) {
  .available-spaces .available-spaces__images .available-spaces__image-item .image .image-icon {
    width: 90px;
    height: 90px;
  }
}
.available-spaces .available-spaces__images .available-spaces__image-item .image .image-icon i {
  font-size: 50px;
  color: white;
}
.available-spaces .available-spaces__images .available-spaces__image-item .title {
  font-size: 21px;
  margin-top: 20px;
}
.available-spaces .available-spaces__images .available-spaces__image-item .description {
  margin-top: 8px;
  color: #656565;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .header {
    padding: 0 20px;
    width: 100%;
  }
  .header .header__second-part {
    gap: 12px;
  }
  .header .header__menu-list {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  main {
    width: 100%;
    padding: 0 20px;
  }
  .available-spaces .section-title {
    width: 100%;
  }
  .tariffs-and-prices .tariffs-and-prices__description {
    width: 465px;
  }
  .advantages__list .section-title {
    width: 100%;
  }
  .advantages__list .advantages__item .advantages__item__description {
    height: 180px;
  }
  .footer .footer__content {
    width: 100%;
    padding: 41px 20px 21px 20px;
  }
}
@media (max-width: 1024px) {
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    padding: 19px 15px;
    background-color: white;
    border-bottom: 1px solid rgba(101, 101, 101, 0.48);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
  }
  .mobile-header .mobile-header__burger {
    width: 35px;
    height: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobile-header .mobile-header__burger .bar {
    width: 35px;
    height: 2px;
    background-color: #656565;
  }
  .mobile-header .mobile-header__menu-list {
    position: absolute;
    top: calc(100% + 1px);
    background-color: white;
    left: 100%;
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-rows: 1fr 115px;
    transition: 0.5s;
    padding: 0 15px;
  }
  .mobile-header .mobile-header__menu-list .mobile-menu-item a,
  .mobile-header .mobile-header__menu-list .mobile-menu-item p {
    color: #3D3D3D;
    font-size: 24px;
  }
  .mobile-header .mobile-header__menu-list .mobile-menu-items {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: end;
    overflow-y: scroll;
    padding-right: 15px;
  }
  .mobile-header .mobile-header__menu-list .mobile-menu-items ::-webkit-scrollbar {
    width: 7px;
  }
  .mobile-header .mobile-header__menu-list .dropdown-mobile-block {
    text-align: end;
  }
  .mobile-header .mobile-header__menu-list .dropdown-mobile-block i {
    color: #3D3D3D;
    margin-left: 8px;
  }
  .mobile-header .mobile-header__menu-list .dropdown-mobile-block .dropdown-mobile-block__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.5s;
    padding: 0;
  }
  .mobile-header .mobile-header__menu-list .dropdown-mobile-block .dropdown-mobile-block__content .dropdown-mobile-block__hidden {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-header .mobile-header__menu-list .dropdown-mobile-block .dropdown-mobile-block__content.active {
    grid-template-rows: 1fr;
    padding: 15px 0;
  }
  .mobile-header .mobile-header__menu-list.visible {
    padding: 10px 0 10px 15px;
    left: 0;
  }
  .mobile-header .header__logo {
    width: 110px;
    height: auto;
  }
  .header {
    display: none;
  }
  .work-solution {
    margin-top: 0;
  }
  .work-solution .right {
    display: none;
  }
  .work-solution .left .left-side-image {
    grid-template-columns: 0fr 1fr;
    margin-left: 0;
  }
  .work-solution .left .left-side-image .left-image {
    height: 370px;
  }
  .tariffs-and-prices {
    display: flex;
    flex-direction: column;
  }
  .tariffs-and-prices .tariffs-and-prices__description {
    width: 100%;
  }
  .tariffs-and-prices .tariffs-and-prices__list {
    margin-top: 32px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-image {
    height: 650px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .horizontal-line {
    width: 100%;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description {
    width: 100%;
    max-width: 460px;
    right: 50px;
    left: auto;
    transform: translateY(-50%);
  }
  .advantages__list .advantages__list-item {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    row-gap: 32px;
  }
  .advantages__list .advantages__list-item .advantages__item {
    max-width: 100%;
  }
  .advantages__list .advantages__list-item .advantages__item__title {
    font-size: 24px;
    height: 100%;
  }
  .advantages__list .advantages__list-item .advantages__item__description {
    height: 100%;
    margin-top: 24px;
    font-size: 18px;
  }
  .why-choose-us {
    display: flex;
    flex-direction: column;
    margin-top: 70px;
  }
  .why-choose-us .why-choose-us_image {
    margin: 25px 0 0 0;
    height: 250px;
  }
  .why-choose-us .why-choose-us_image video {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 100%;
  }
  .why-choose-us .why-choose-us_image .why-choose-us_image-description {
    padding: 10px;
    justify-content: space-evenly;
  }
  .why-choose-us .why-choose-us_image .why-choose-us_image-description .wcu-image-item .title {
    font-size: 48px;
  }
  .why-choose-us .why-choose-us_image .why-choose-us_image-description .wcu-image-item .description {
    font-size: 16px;
  }
  .why-choose-us .why-choose-us__description {
    width: 100%;
  }
  .why-choose-us .why-choose-us__description .section-title,
  .why-choose-us .why-choose-us__description .about {
    margin-top: 15px !important;
  }
  .why-choose-us .why-choose-us__description .why-choose-us__list {
    flex-direction: column;
    row-gap: 15px !important;
  }
  .why-choose-us .why-choose-us__description .why-choose-us__list .wcu__list-item {
    text-align: center;
  }
  .why-choose-us .why-choose-us__description .why-choose-us__list .wcu__list-item .title {
    font-size: 18px;
  }
  .why-choose-us .why-choose-us__description .why-choose-us__list .wcu__list-item .description {
    width: 100%;
    font-size: 16px;
    height: -moz-fit-content;
    height: fit-content;
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  .why-choose-us .why-choose-us_image .why-choose-us_image-description {
    position: absolute;
    flex-direction: column;
    top: 50%;
    transform: translateY(-45%);
    width: 150px;
    height: 80%;
    left: 25px;
    padding: 10px;
    justify-content: space-evenly;
  }
  .why-choose-us .why-choose-us__description .why-choose-us__list {
    display: flex;
  }
  .why-choose-us .why-choose-us__description .why-choose-us__list .description {
    max-width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  header .header {
    display: none;
  }
  main {
    width: 100%;
    padding: 0 15px;
  }
  .site-subtitle {
    font-size: 14px;
  }
  .section-title {
    font-size: 30px;
  }
  .about {
    font-size: 16px;
  }
  .social-button span {
    font-size: 16px;
  }
  .work-solution {
    margin-bottom: 60px;
  }
  .work-solution .section-title {
    margin-bottom: 20px;
  }
  .work-solution .left .left-side-image {
    grid-template-columns: auto;
    gap: 20px;
  }
  .work-solution .left .left-side-image .left-image {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .work-solution .about {
    margin-top: 20px;
  }
  .work-solution .right-image {
    display: none;
  }
  .work-solution .work-solution__description .member-counter {
    font-size: 16px;
  }
  .work-solution .work-solution__description .member-counter span {
    font-size: 16px;
  }
  .work-solution .work-solution__description .member-images img {
    width: 71px;
  }
  .available-spaces .about,
  .available-spaces .section-title {
    width: 100%;
    margin-top: 20px;
  }
  .available-spaces .available-spaces__images {
    gap: 28px;
    grid-template-columns: auto;
  }
  .available-spaces .available-spaces__images .available-spaces__image-item .image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .available-spaces .available-spaces__images .available-spaces__image-item .title {
    font-size: 20px;
    margin-top: 10px;
  }
  .available-spaces .available-spaces__images .available-spaces__image-item .description {
    margin-top: 10px;
    font-size: 18px;
  }
  .tariffs-and-prices {
    flex-direction: column;
  }
  .tariffs-and-prices .tariffs-and-prices__description {
    width: 100%;
  }
  .tariffs-and-prices .tariffs-and-prices__list {
    width: 100%;
  }
  .tariffs-and-prices .about {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-image {
    height: 250px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description {
    background-color: #2e2e2e;
    max-width: none;
    padding: 10px 15px 15px 15px;
    position: static;
    top: 50px;
    left: 0;
    transform: none;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-item__header .name {
    font-size: 18px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-item__header .price {
    font-size: 18px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-item__header .price span {
    font-size: 18px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-advantages {
    width: 100%;
    padding-left: 5px;
    gap: 12px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-advantages span {
    font-size: 16px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .tariff-advantages .tariff-advantage {
    gap: 12px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .optionally {
    margin-top: 10px;
    padding-left: 5px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .optionally span {
    width: 100%;
    font-size: 16px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .horizontal-line {
    width: 100%;
    margin-top: 17px;
  }
  .tariffs-and-prices .tariffs-and-prices__list .tariff-item .tariff-item__description .social-button {
    margin: 20px auto 0 auto;
  }
  .advantages__list .section-title,
  .advantages__list .about {
    width: 100%;
  }
  .footer {
    padding: 0 15px;
  }
  .footer .footer__content {
    width: 100%;
  }
  .footer .footer__content .footer__main {
    display: flex;
    flex-direction: column;
  }
  .footer .footer__content .footer__main .footer__logo-side {
    margin: 10px auto 0 auto;
    width: 100%;
    padding-left: 0;
  }
  .footer .footer__content .footer__main .footer__logo-side img {
    max-width: 250px;
  }
  .footer .footer__content .footer__main .footer__logo-side .footer__slogan {
    font-size: 28px;
  }
  .footer .footer__content .footer__main .footer__logo-side .footer__working-hours {
    margin-top: 32px;
  }
  .footer .footer__content .footer__main .footer__logo-side .footer__working-time,
  .footer .footer__content .footer__main .footer__logo-side .footer__working-days {
    font-size: 18px;
  }
  .footer .footer__content .footer__main .footer__map-side img {
    width: 100%;
    margin-top: 8px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .footer .footer__content .footer__main .footer__map-side .how-to-find-us {
    font-size: 24px;
    margin-top: 24px;
  }
}
.sidebar-phones {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 12px;
  color: black;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
}
.sidebar-phones .sidebar-title {
  margin-top: 8px;
}
.sidebar-phones a {
  text-decoration: none;
  color: black;
}
.sidebar-phones a:hover {
  color: #D9000C !important;
}

.messangers p {
  margin-top: 4px;
  display: flex;
  gap: 16px;
}
.messangers p i {
  font-size: 24px;
}/*# sourceMappingURL=style.css.map */