@charset "UTF-8";
@import "/css/reset.css";
@import "/css/fancybox.css";
@import "/css/carousel.css";
@import "/css/carousel.autoplay.css";
@import "/css/carousel.thumbs.css";
@import "/css/swiper-bundle.min.css";
@font-face {
  font-family: "Font1";
  src: url("../css/montserratWOFF/AnyConv.com__Montserrat-Regular.woff") format("truetype");
  font-weight: normal;
  /* или 400 */
  font-style: normal;
}
/* Жирный шрифт */
@font-face {
  font-family: "Font1";
  src: url("../css/montserratWOFF/AnyConv.com__Montserrat-Bold.woff") format("truetype");
  font-weight: bold;
  /* или 700 */
  font-style: normal;
}
/* Полужирный шрифт */
@font-face {
  font-family: "Font1";
  src: url("../css/montserratWOFF/AnyConv.com__Montserrat-Medium.woff") format("truetype");
  font-weight: 500;
  /* для medium */
  font-style: normal;
}
body {
  font-size: 16px;
  background: #EAEAEA;
  font-family: "Font1", sans-serif;
}

.custom-container {
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.w-65 {
  width: 65%;
}

.w-35 {
  width: 35%;
}

:root {
  --sm-fz: clamp(14px, 4vw, 20px);
  --bg-fz: clamp(5px, 4vw, 20px);
}

.arrow-link {
  text-decoration: none;
}

.title-s {
  font-size: 18px;
  font-family: "Font1", sans-serif;
}
.title-m {
  font-size: 20px;
  font-family: "Font1", sans-serif;
}
.title-x {
  font-size: 26px;
  font-family: "Font1", sans-serif;
}

.header__content {
  height: 140px;
  box-sizing: border-box;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}
.header__logo-img {
  border-radius: 50%;
  width: clamp(60px, 10vw, 120px);
  height: clamp(60px, 10vw, 120px);
}
.header__logo-link {
  display: flex;
  text-decoration: none;
  align-items: center;
  gap: 32px;
}
.header__logo-text {
  font-size: clamp(16px, 5vw, 28px);
  line-height: 33px;
  font-weight: 900;
  font-family: "Font1", sans-serif;
  color: #000;
  max-height: 99px;
}
.header__items-bottom-social__box {
  display: flex;
  gap: 16px;
}
.header__search {
  display: flex;
  justify-content: end;
  gap: 20px;
}
.header__search-btn {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.header__search-btn img {
  height: 30px;
}
.header__nav {
  position: static;
  /* Статичный по умолчанию */
  /* Изначально position relative */
  transition: position 0.3s ease, top 0.3s ease;
  z-index: 100;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  background-color: #3294E3;
  height: 57px;
}
.header__nav-list {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
}
.header__nav-item {
  position: relative;
}
.header__nav-item:first-child::before {
  content: "|";
  position: absolute;
  left: -10px;
  color: #fff;
}
.header__nav-item::after {
  content: "|";
  position: absolute;
  right: -10px;
  color: #fff;
}
.header__nav-link {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s ease;
  padding: 4px 8px;
}

.header__nav-link:hover,
.header__nav-link:focus {
  transform: translateY(-3px) scale(1.05);
  color: #0b0b0b;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.header__nav-link--active {
  background-color: #f0f0f0;
  color: #111;
  border-radius: 6px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  padding: 4px 14px;
  /* можно чуть увеличить padding для акцента */
}

.leng__box {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  width: 150px;
}
.leng__icon {
  height: 25px;
  width: 40px;
}

.language-item {
  display: inline-block;
  position: relative;
}

.language-item::after {
  content: attr(data-lang);
  /* Текст, который будет показываться */
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.language-item:hover::after {
  opacity: 1;
  visibility: visible;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  /* Прячем контейнер */
}

.main {
  padding: 20px 0;
}
.main__index-news-title {
  padding: 20px;
  font-weight: 900;
}
.main__index-news-content {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 70px;
}
.main__index-news-card {
  height: 100%;
  width: calc(33.33% - 10px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main__index-news-card-content {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  height: 300px;
}
.main__index-news-card-data {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.main__index-news-card-title {
  color: #fff;
  line-height: 25px;
  text-align: justify;
  display: block;
  margin-bottom: 20px;
}
.main__index-news-card-link {
  text-decoration: none;
  background-color: #3294E3;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 100px;
}
.main__todo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.main__todo-card {
  text-decoration: none;
  color: #000;
  border-radius: 14px;
  background-color: #fff;
  flex: 1 1 calc(50% - 20px);
  box-sizing: border-box;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease;
  background-image: url(../img/uzor1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 285px;
}
.main__todo-card-title {
  font-size: 24px;
  font-weight: 900;
}
.main__todo-card-list {
  padding: 20px;
}
.main__todo-card-list__style-square {
  list-style-type: square;
}
.main__todo-card-list-item {
  line-height: 18px;
}
.main__map-title {
  font-size: 24px;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  font-weight: 900;
}
.main__map-content {
  display: flex;
  gap: 10px;
}
.main__map-left {
  width: 20%;
}
.main__map-right {
  width: 80%;
}
.main__cooperation {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  justify-content: space-between;
}
.main__cooperation-card {
  padding: 20px 20px;
  background-color: #fafafa;
  border-radius: 9px;
  margin-bottom: 20px;
}
.main__cooperation-card-text {
  font-weight: normal;
  line-height: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: var(--sm-font-size);
  font-weight: 700;
  text-decoration: none;
  color: #000;
}
.main__cooperation-card-text img {
  width: 40px;
  height: 40px;
}
.main__about-title {
  font-size: 24px;
  font-weight: 900;
}
.main__about-content {
  display: flex;
}
.main__about-content-left {
  margin: 20px;
  width: 70%;
}
.main__about-content-right {
  margin: 20px;
  width: 30%;
}
.main__about-content-card {
  padding: 20px;
  line-height: 18px;
  background-color: #fff;
  border-radius: 14px;
  margin-bottom: 40px;
  height: 275px;
}
.main__about-content-card1 {
  padding: 20px;
  line-height: 18px;
  background-color: #fff;
  border-radius: 14px;
  margin-bottom: 40px;
  height: 399px;
}
.main__about-content-card-text {
  margin-bottom: 22px;
  font-weight: bold;
}
.main__about-content-card-list {
  padding-left: 20px;
}
.main__about-content-card-list__style-square {
  list-style-type: square;
}
.main__about-content-cardimg {
  height: 100%;
}
.main__news {
  display: flex;
  gap: 20px;
}
.main__news-content-block {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
}
.main__news-content-block-title {
  margin: 0 auto;
  width: 50%;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
.main__news-content-block-data {
  width: 50%;
  display: flex;
  margin: 0 auto;
  justify-content: end;
  margin-bottom: 20px;
}
.main__news-content-block-data-content {
  color: #fff;
  font-weight: 900;
  padding: 5px;
  background-color: #3294E3;
}
.main__news-content-block-img {
  text-align: center;
  margin-bottom: 30px;
}
.main__news-content-block-img img {
  width: 50%;
  height: 400px;
  object-fit: cover;
}
.main__news-content-block-text {
  margin: 0 auto;
  width: 50%;
  text-align: center;
  text-align: justify;
  text-indent: 20px;
  line-height: 20px;
  margin-bottom: 20px;
}
.main__news-content-block-text-center {
  margin-bottom: 20px;
}
.main__news-content-block-btn {
  background-color: #3294E3;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
}
.main__news-title {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0;
}
.main__news-cards {
  width: 80%;
}
.main__news-card {
  padding: 20px 20px;
  background-color: #fafafa;
  border-radius: 9px;
  margin-bottom: 20px;
}
.main__news-card-data {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.main__news-card-title {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}
.main__news-card-content {
  display: flex;
  gap: 20px;
}
.main__news-card-img {
  max-width: 330px;
  object-fit: cover;
}
.main__news-card-text {
  text-align: justify;
  line-height: 19px;
  margin-bottom: 30px;
}
.main__news-card-link {
  float: right;
  text-decoration: none;
  background-color: #3294E3;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.main__news-pages {
  margin: 0 auto;
  padding: 10px;
}
.main__news-pages-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.main__news-pages-btn {
  background-color: #fafafa;
  cursor: pointer;
  padding: 4px 8px;
  border: 1px solid #333;
}
.main__news-pages-btn:hover {
  color: #fff;
  border: 1px solid #3294E3;
  background-color: #3294E3;
}
.main__project {
  display: flex;
  gap: 20px;
}
.main__project-title {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0;
}
.main__project-cards {
  width: 50%;
}
.main__project-card {
  padding: 20px 20px;
  background-color: #fafafa;
  border-radius: 9px;
  margin-bottom: 20px;
  height: 550px;
}
.main__project-card-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
}
.main__project-card-content {
  display: flex;
  gap: 20px;
}
.main__project-card-img {
  padding: 10px;
  box-sizing: border-box;
  /* Убедитесь, что padding не влияет на размеры */
  width: 100%;
  /* Контейнер занимает всю ширину */
  height: 87%;
  /* Контейнер занимает всю высоту */
  overflow: hidden;
  /* Скрывает выходящие за рамки части изображения */
}
.main__project-card-img img {
  width: 100%;
  /* Изображение растягивается по ширине контейнера */
  height: 100%;
  /* Изображение растягивается по высоте контейнера */
  object-fit: cover;
  /* Сохраняет пропорции и обрезает лишние части */
  display: block;
  /* Убирает возможные отступы изображения */
}
.main__project-card-link {
  float: right;
  text-decoration: none;
  background-color: #3294E3;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.main__project-pages {
  margin: 0 auto;
  padding: 10px;
}
.main__project-pages-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.main__project-pages-btn {
  background-color: #fafafa;
  cursor: pointer;
  padding: 4px 8px;
  border: 1px solid #333;
}
.main__project-pages-btn:hover {
  color: #fff;
  border: 1px solid #3294E3;
  background-color: #3294E3;
}
.main__location {
  height: 70vh;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
.main__location-title {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 20px;
}
.main__location-content {
  display: flex;
  gap: 20px;
}
.main__location-cordinate {
  background-color: #fff;
  padding: 20px;
}
.main__location-cordinate-text {
  line-height: 20px;
  margin-bottom: 5px;
}
.main__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  /* Автоматически заполняет ряды */
  grid-template-rows: repeat(3, 1fr);
  /* 3 ряда */
  gap: 10px;
  /* Промежутки между элементами */
  /* Высота контейнера на весь экран */
}
.main__gallery a {
  flex: 1 1 35rem;
  height: 250px;
  margin: 1rem;
}
.main__gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main__ttop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}
.main__ttop-wrapper {
  height: 70vh;
  display: flex;
  align-items: center;
}
.main__ttop-card {
  position: relative;
  cursor: pointer;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  width: 100%;
  height: 50px;
  text-align: center;
  box-sizing: border-box;
}
.main__ttop-card-list {
  position: absolute;
  z-index: 2;
  display: none;
  background-color: #fff;
  padding: 20px;
  width: 305px;
  top: 50px;
  left: 0;
  border: 1px solid #333;
}

.slide__img {
  width: 100%;
  border-radius: 14px;
}

.f-carousel__dots {
  opacity: 0;
}

.footer {
  background-color: #fff;
}
.footer__content {
  padding: 20px;
  background-image: url("../img/uzor2.png");
}
.footer__row {
  display: flex;
  justify-content: space-between;
}
.footer__info {
  width: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__info-text {
  padding-bottom: 20px;
  line-height: 20px;
}
.footer__info-text p {
  margin-bottom: 5px;
}
.footer__info-list {
  display: flex;
  gap: 20px;
}
.footer__cop {
  text-align: center;
  font-weight: bold;
}
.footer__cops {
  text-align: left;
  font-weight: bold;
}
.footer__connect {
  display: flex;
  align-items: center;
}
.footer__contact-text {
  font-weight: 900;
  font-size: 20px;
}
.footer__contact-link {
  cursor: pointer;
  font-weight: 900;
  font-size: 15px;
  border: solid 1px;
  border-color: #3294E3;
  padding: 15px;
  color: #3294E3;
  transition: background-color 0.1s ease 0.1s;
  /* Задержка 0.5s */
}
.footer__contact-link:hover {
  background-color: #3294E3;
  color: #fff;
}

/* Стили для попапа */
.sendmessege {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Темный фон */
  justify-content: center;
  align-items: center;
}

.sendmessege__content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
}

.sendmessege .active {
  display: flex;
}

form label {
  display: block;
  margin: 10px 0 5px;
}

form input,
form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

form button {
  background-color: green;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: darkgreen;
}

.sendmessege__close-btn {
  background-color: red;
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  float: right;
}

.no-scroll {
  overflow: hidden;
  /* Запрещает прокрутку */
}

.header__burger {
  display: none;
  width: 30px;
  height: 18px;
  right: 20px;
  top: 0px;
  position: absolute;
  z-index: 1001;
  cursor: pointer;
}
.header__burger span {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3294E3;
}
.header__burger span:first-child {
  top: 0;
}
.header__burger span:last-child {
  top: auto;
  bottom: 0;
}
.header__burger.active span {
  background-color: #fff;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.header__burger.active span:first-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}
.header__burger.active span:last-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

@media (max-width: 1024px) {
  .main__nav {
    padding-top: 10%;
  }
  .header__nav-list {
    position: absolute;
    left: -100%;
    top: 0%;
    gap: 0;
    flex-direction: column;
    background-color: #3294E3;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0px;
    height: 100vh;
    padding-top: 70px;
  }
  .header__nav-list.active {
    left: 0;
    gap: 10px;
  }
  .header__burger {
    display: block;
    margin-top: 25px;
  }
  .header__burger.active span {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  .header__burger.active span:first-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .header__burger.active span:last-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}
#calendar {
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

#calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3294E3;
  color: white;
  padding: 10px;
}

#calendar-header button {
  background-color: white;
  color: #007bff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

#calendar-header button:hover {
  background-color: #f0f0f0;
}

#calendar-days,
#calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-name {
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  background-color: #f9f9f9;
}

.date {
  text-align: center;
  padding: 10px;
  cursor: pointer;
  border: 1px solid transparent;
}

.date:hover {
  background-color: #f0f8ff;
}

.date.active {
  background-color: #3294E3;
  color: white;
  border-radius: 5px;
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  background-color: #3294E3;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Кнопка видна, когда страница прокручена */
.scroll-to-top-btn.show {
  opacity: 1;
}

/* Стиль для попапа */
.popup {
  display: none;
  /* Скрыт по умолчанию */
  position: fixed;
  /* Закрепляем на экране */
  bottom: 100px;
  /* Попап будет расположен чуть выше кнопки */
  right: 20px;
  /* Отступ от левого края */
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: auto;
  /* Ширина будет зависеть от содержимого */
  max-width: 400px;
  /* Максимальная ширина для попапа */
  z-index: 9998;
  /* Попап будет поверх всего контента */
}

/* Контейнер попапа */
.popup-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* Кнопка закрытия */
.close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  /* Расстояние от правого края */
  font-size: 30px;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}

/* Стиль для контейнера видео */
.video-container iframe {
  width: 100%;
  /* Ширина видео будет адаптироваться */
  height: 200px;
  /* Фиксированная высота для видео */
}

/* Кнопка для открытия попапа */
.openPopupBtn {
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 60px;
  /* Сдвигаем кнопку вправо */
  background-color: #3294E3;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.openPopupBtn:hover {
  background-color: #276ba4;
  /* Тёмно-синий при наведении */
}

.reg {
  color: #fff;
}

.reg.active {
  color: red;
}

.error {
  height: 50vh;
  align-items: center;
}
.error__title {
  text-align: center;
  font-size: 35px;
  font-weight: 900;
  padding-bottom: 40px;
}
.error__text {
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
  line-height: 18px;
  font-size: 18px;
}

@media (max-width: 768px) {
  body {
    position: relative;
    font-size: 12px;
  }
  .header {
    overflow: hidden;
  }
  .header__content {
    display: block;
    height: 100%;
  }
  .header__logo {
    width: 80%;
    margin: 0 auto;
  }
  .header__logo-link {
    display: block;
    text-align: center;
  }
  .header__logo-link img {
    margin-bottom: 10px;
  }
  .header__logo-text {
    font-size: 16px;
    line-height: 15px;
    white-space: normal;
    text-align: center;
  }
  .header__search {
    display: flex;
    gap: 5px;
  }
  .header__search-btn img {
    margin-top: -10px;
  }
  .header__items {
    width: 50%;
    margin: 0 auto;
  }
  .header__items-bottom-social__box {
    gap: 10px;
    justify-content: center;
  }
  .header__items-bottom-social-item img {
    width: 25px;
  }
  .header__nav {
    height: 0;
    position: absolute;
    width: 100%;
    top: 0;
  }
  .header__nav-list {
    display: block;
    z-index: 103;
  }
  .header__nav-item {
    margin-bottom: 20px;
    text-align: center;
    z-index: 105;
  }
  .header__nav-item::after {
    content: "";
    position: absolute;
    right: -10px;
    color: #fff;
  }
  .header__nav-item:first-child::before {
    content: "";
    position: absolute;
    left: -10px;
    color: #fff;
  }
  .leng__box {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
    gap: 0;
    justify-content: space-between;
  }
  .main__index-news-content {
    display: block;
  }
  .main__index-news-card {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  .main__index-news-card-content {
    height: 30dvh;
  }
  .main__index-news-card-link {
    margin: 0 auto;
  }
  .main__information {
    display: block;
  }
  .main__information-right-bottom {
    margin-bottom: 20px;
  }
  .main__todo-card {
    flex: auto;
  }
  .main__map-content {
    display: block;
  }
  .main__map-left {
    width: 100%;
  }
  .main__map-right {
    width: 100%;
  }
  .main__cooperation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main__about-content {
    display: flex;
    flex-wrap: wrap;
  }
  .main__about-content-left {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .main__about-content-right {
    width: 100%;
  }
  .main__about-content-card {
    margin-bottom: 20px;
    height: auto;
  }
  .main__about-content-card img {
    width: 100%;
  }
  .main__news {
    display: block;
    text-align: center;
  }
  .main__news-content-block-data {
    width: 100%;
  }
  .main__news-content-block-title {
    width: 100%;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .main__news-content-block-img img {
    width: 100%;
    height: 200px;
  }
  .main__news-content-block-text {
    width: 100%;
  }
  .main__news-rigth {
    display: flex;
    justify-content: center;
  }
  .main__news-title {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0;
  }
  .main__news-cards {
    width: 100%;
  }
  .main__news-card {
    background-color: #fafafa;
    border-radius: 9px;
    margin-bottom: 20px;
    padding-bottom: 50px;
    height: 100%;
    box-sizing: border-box;
  }
  .main__news-card-data {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .main__news-card-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .main__news-card-content {
    display: block;
    gap: 20px;
  }
  .main__news-card-img {
    max-width: 100%;
    object-fit: cover;
  }
  .main__news-card-text {
    text-align: justify;
    font-size: 15px;
    line-height: 19px;
    margin-bottom: 30px;
  }
  .main__news-card-link {
    text-decoration: none;
    color: #000;
    font-weight: 700;
  }
  .main__news-pages {
    margin: 0 auto;
    padding: 10px;
  }
  .main__news-pages-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
  }
  .main__news-pages-btn {
    background-color: #fafafa;
    cursor: pointer;
    padding: 4px 8px;
    border: 1px solid #333;
  }
  .main__news-pages-btn:hover {
    color: #fff;
    border: 1px solid #3294E3;
    background-color: #3294E3;
  }
  .main__project {
    display: block;
  }
  .main__project-cards {
    width: 100%;
  }
  .main__project-card {
    padding-bottom: 50px;
    background-color: #fafafa;
    border-radius: 9px;
    margin-bottom: 20px;
    height: auto;
  }
  .main__location {
    height: 100%;
  }
  .main__location-map {
    height: 100%;
    margin-bottom: 20px;
  }
  .main__location-cordinate {
    height: 100%;
  }
  .main__location-content {
    display: block;
  }
  .footer__content {
    background-image: none;
  }
  .footer__row {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .footer__info {
    margin-bottom: 20px;
  }
  .footer__info-text {
    text-align: justify;
    margin-bottom: 0px;
    padding-bottom: 10px;
  }
  .footer__info-list {
    justify-content: center;
  }
  .footer__connect {
    margin-bottom: 30px;
  }
  .footer__contact-link {
    padding: 5px;
  }
  .w-65 {
    width: 100%;
  }
  .w-35 {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  body {
    position: relative;
    font-size: 12px;
  }
  .header {
    overflow: hidden;
  }
  .header__content {
    display: block;
    height: 100%;
  }
  .header__logo-link {
    display: block;
    text-align: center;
  }
  .header__logo-text {
    font-size: 16px;
    line-height: 15px;
    white-space: normal;
    text-align: center;
  }
  .header__search {
    justify-content: center;
  }
  .header__items-bottom-social__box {
    gap: 10px;
    justify-content: center;
  }
  .header__items-bottom-social-item img {
    width: 25px;
  }
  .header__nav {
    height: 0;
    position: absolute;
    width: 100%;
    top: 0;
  }
  .header__nav-list {
    display: block;
    z-index: 103;
  }
  .header__nav-item {
    margin-bottom: 20px;
    text-align: center;
    z-index: 105;
  }
  .header__nav-item::after {
    content: "";
    position: absolute;
    right: -10px;
    color: #fff;
  }
  .header__nav-item:first-child::before {
    content: "";
    position: absolute;
    left: -10px;
    color: #fff;
  }
  .main__information {
    display: block;
  }
  .main__information-right-bottom {
    margin-bottom: 20px;
  }
  .main__todo-card {
    flex: auto;
  }
  .main__map-content {
    display: block;
  }
  .main__map-left {
    width: 100%;
  }
  .main__map-right {
    width: 100%;
  }
  .main__cooperation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main__about-content {
    display: flex;
    flex-wrap: wrap;
  }
  .main__about-content-left {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .main__about-content-right {
    width: 100%;
  }
  .main__about-content-card {
    margin-bottom: 20px;
    height: auto;
  }
  .main__about-content-card img {
    width: 100%;
  }
  .footer__row {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .footer__info-list {
    justify-content: center;
  }
  .w-65 {
    width: 100%;
  }
  .w-35 {
    width: 100%;
  }
}