root {
  --accent: #00a6b3;
  --muted: #6b7280;
  --max: 1100px
}

* {
  box-sizing: border-box
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  scroll-margin-top: 7rem;
  /* Плавная прокрутка */
}

section {
  scroll-margin-top: 7rem;
  /* высота твоей .header-top */
}

.scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 25px;
  cursor: pointer;
  display: none;
  /* Скрываем по умолчанию */
  color: #007bff;
  /* Цвет стрелочки */
  z-index: 10;
}

.wrap {
  max-width: var(--max);
  margin: 24px auto;
  padding: 0 16px
}

.header-container {
  position: relative;
  height: 90vh;
  width: 100%;
}

.header-top {
  height: 7rem;
  width: 100%;
  background: linear-gradient(to right, #FFF, #1e90ff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  /* Фиксируем шапку */
  top: 0;
  /* Прижимаем к верхнему краю */
  left: 0;
  /* Прижимаем к левому краю */
  z-index: 10;
  /* Убедимся, что шапка поверх других элементов */
  padding: 0 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  /* ставим элементы друг под другом */
  align-items: center;
  /* выравниваем по центру */
  gap: 0.3rem;
  /* расстояние между логотипом и текстом */
  margin-inline: clamp(0.5rem, 1vw, 1rem);
}

.brand-text {
  text-align: center;
  margin-bottom: 0.5rem;
}

.logo {
  height: 4rem;
  width: 4rem;
  box-shadow: 2px 2px 0.5px 0.5px #434242;
  cursor: pointer;
  margin-left: 0.5rem;
}

#site-title,
#site-sub {
  user-select: none;
  line-height: 1.1;
  color: #1e4fd1;
}

#site-title {
  font-size: clamp(0.5rem, 2.5vw, 0.9rem);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(to right, #ff69b4, #8a2be2, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  line-height: 1.2;
  margin: 0;
  padding: 0.2em;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  /* чтобы на маленьком экране слова переносились */
}

/* 🎨 Варианты шрифтов */
/* 1. Экзотика (игривое название) */
.pacifico {
  font-family: 'Pacifico', cursive;
}

/* 2. Баланс: легкость + премиум */
.dancing-raleway {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  letter-spacing: 1px;
}

/* 3. Современный премиум */
.montserrat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

#site-sub {
  font-size: .85rem;
}

.menu {
  width: 85%;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  /* равномерное распределение */
  flex: 1;
  /* занимает всё свободное место */
  margin: 1rem 2rem;
  gap: clamp(0.25rem, 2vw, 2rem);
  text-align: center;
}

.menu li {
  max-width: 12rem;
  text-align: center;
  flex: 1;
  /* каждый пункт занимает равное место */
  text-align: center;
  /* выравниваем текст по центру */
  display: flex;
  /* делаем flex */
  align-items: center;
  /* вертикальное центрирование */
  justify-content: center;
  /* горизонтальное центрирование, если нужно */
}

.menu a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1e4fd1;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: bold;
}

.menu a:hover {
  color: #ff69b4;
  text-decoration: underline;
}

.menu a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #ffffffaa;
  /* мягкое белое свечение */
  border-radius: 4px;
}

#burgerToggle {
  margin-top: 10px;
  margin-left: 10px;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: none;
  display: none;
}

nav {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Кнопка языка */
.lang {
  margin-inline: clamp(0.5rem, 1vw, 1rem);
  cursor: pointer;
  z-index: 1000;
  padding: 6px 12px;
  background: #ffffffcc;
  /* полупрозрачный белый */
  color: #1e4fd1;
  font-size: 1.1em;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-weight: 700;
  transition: background 0.2s ease;
}

.lang:hover {
  background: #f7f7f7;
}

/* __________________________Выпадающее меню */
.lang-menu {
  position: absolute;
  top: 100%;
  /* сразу под кнопкой */
  right: 1rem;
  background: white;
  color: #1e4fd1;
  border: 1px solid #ddd;
  border-radius: 6px;
  list-style: none;
  padding: 5px 0;
  margin: 5px 0 0 0;
  min-width: 90px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
}

.lang-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Пункты выпадающего меню */
.lang-menu li {
  padding: 6px 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-menu li:hover {
  background: #f0f0f0;
}

/* ______________________ выпадающее меню END */

.header-video-container {
  position: relative;
  margin-top: 7rem;
  height: calc(100vh - 7rem);
  /* чтобы занимало всю оставшуюся высоту */
}

.header-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-container {
  position: absolute;
  top: 6rem;
  right: 0.5rem;
  color: #1e4fd1;
  font-size: 1.1em;
  /* Размер текста */
  font-weight: bold;
  /* Жирность текста */
  letter-spacing: 0.05em;
  /* Расстояние между буквами */
  line-height: 1.6;
  /* Расстояние между строками */
  max-height: calc(85vh - 1rem);
  /* Ограничение высоты до 95% от высоты окна браузера */
  width: 28%;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.4);
  /* чуть светлее */
  padding: 1.2rem;
  box-sizing: border-box;
  box-shadow: 4px 4px 2px 2px #434242;
  overflow-y: auto;
  /* Добавление вертикальной прокрутки при переполнении */
  opacity: 0;
  animation: appear 2s ease-in forwards;
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.text-container-footer-link {
  color: #ffd700 !important;
  background: linear-gradient(to right, #ff69b4, #8a2be2, #1e90ff);
  border-radius: 5px;
  text-decoration: underline !important;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 2px;
}

.text-container-mini {
  display: none;
}

.center-text {
  position: absolute;
  top: 4rem;
  left: 2rem;
  width: 60%;
  font-size: clamp(2rem, 5vw, 4em);
  /* адаптивный размер текста */
  font-weight: 700;
  color: white;
  background: linear-gradient(to right, #ff69b4, #8a2be2, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: calc(0.5px + 0.15vw) #ffffff;
  /* Толщина и цвет обводки для WebKit-браузеров */
  transform-origin: bottom center;
  text-align: center;
}

.center-text p {
  margin: 1rem 0;
}

.round-button {
  position: fixed;
  bottom: 4rem;
  left: 2rem;
  width: 10rem;
  height: 10rem;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hot_sale_button.png');
  /* Путь к фоновому изображению */
  background-size: cover;
  /* Масштабирование изображения по размеру кнопки */
  background-position: center;
  /* Центрирование изображения */
  cursor: pointer;
  box-shadow: 15px 15px 10px 1px #000000;
  animation: saleBTN 5s ease 0s infinite normal forwards;
  font-size: 18px;
  text-decoration: none;
  z-index: 5;
}

@keyframes saleBTN {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* ______________________________________Стили для всплывающего окна */

/* Стили для затемненного фона всплывающего окна */
.popover-overlay {
  display: none;
  /* Изначально скрыто */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* Полупрозрачный черный фон */
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Стили для контейнера всплывающего окна */
.popover-container {
  position: relative;
  left: -25%;
  width: 450px;
  background: transparent;
  text-align: center;
}

/* Стили для кнопки закрытия */
.close-button {
  position: absolute;
  top: 2px;
  right: 5px;

  color: rgb(7, 39, 243);
  font-size: 24px;
  /* Размер текста */
  font-weight: bold;
  /* Жирность текста */
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(to bottom,
      rgba(211, 211, 211, 0.5),
      /* Светло-серый с прозрачностью 0.8 */
      rgba(173, 216, 230, 0.5)
      /* Нежно-голубой с прозрачностью 0.8 */
    );
  height: 50px;
  border-width: 0;
  border-bottom: 4px solid rgba(173, 216, 230, 0.5);
  border-radius: 0.4em;
  box-shadow: 5px 5px 10px 1px #000000;
  transition: box-shadow 0.2s 0.3s;
  z-index: 2;
  cursor: pointer;
}

/* Стили для контейнера изображения */
.image-container {
  position: relative;
  width: 90%;
  margin-bottom: 20px;
  box-shadow: 5px 5px 10px 1px #000000;
}

/* Стили для изображения */
.image-container img {
  width: 100%;
  height: auto;
  opacity: 0.25;
}

/* Стили для наложенного текста */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  /* Поворот текста на 45 градусов */
  background-color: transparent;
  padding: 10px 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  font-size: clamp(1rem, 2.5vw, 2em);
  color: green;
  margin-right: 10px;
  margin-top: -50px;
}

.new-price {
  font-size: clamp(2rem, 2.5vw, 3em);
  color: red;
  margin-top: 10px;
}

.negotiable {
  font-size: 1.2em;
  color: green;
}

/* Стили для кнопки "Contact Us" */
.contact-button {
  margin: 5px 35px;
  padding: 10px 10px 10px;
  color: rgb(7, 39, 243);
  font-size: 24px;
  /* Размер текста */
  font-weight: bold;
  /* Жирность текста */
  text-transform: uppercase;
  background: linear-gradient(to bottom,
      rgba(211, 211, 211, 0.5),
      /* Светло-серый с прозрачностью 0.8 */
      rgba(173, 216, 230, 0.5)
      /* Нежно-голубой с прозрачностью 0.8 */
    );
  border-width: 0;
  border-bottom: 4px solid rgba(173, 216, 230, 0.5);
  border-radius: 0.4em;
  box-shadow: 5px 5px 10px 1px #000000;
  transition: box-shadow 0.2s 0.3s;
  cursor: pointer;
}

/* ____________________________________Стили для всплывающего окна END */

/*___________________________________Галерея фото*/
.gallery-section {
  padding: 40px 20px 60px 20px;
  background-color: #d9eafd;
  text-align: center;
}

.gallery-section h2 {
  font-size: clamp(2rem, 5vw, 4em);
  /* адаптивный размер текста */
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  background: linear-gradient(to right, #00bfff, #1e90ff, #008080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: clamp(0.05rem, 1vw, 0.1rem) #1e90ff;
}

.subtitle-gallery {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1e4fd1;
  margin-bottom: 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.video-gallery {
  margin-top: 60px;
}

.gallery-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fade-in {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 1s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 60px 20px 100px;
  /* отступы сверху и снизу */
  overflow: auto;
  /* на случай, если картинка больше окна */
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal.show {
  opacity: 1;
  transform: scale(1);
}

.modal-content {
  max-width: 90%;
  max-height: 80vh;
  /* теперь не во весь экран */
  border-radius: 12px;
  margin-bottom: 40px;
  /* дополнительный "воздух" снизу */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.close {
  position: fixed;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.2s ease;
}

.close:hover {
  transform: scale(1.2);
}

.sale-banner {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 0, 0, 0.85);
  color: white;
  padding: 8px 16px;
  font-size: 1.5rem;
  border-radius: 6px;
  display: none;
  z-index: 10000;
}

.sale-banner-link {
  color: #fff !important;
  text-decoration: underline !important;
  font-size: 1.7rem;
  font-weight: 900;
}

/* ______________________ выпадающее меню END */

/*video*/

.video-carousel-section h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1e4fd1;
  margin-bottom: 20px;
}

.video-carousel-section {
  padding: 20px 20px;
  text-align: center;
}

.video-carousel-section video,
.video-carousel-section iframe {
  width: 75%;
  /* ширина видео 75% от контейнера */
  max-width: 800px;
  /* максимум для больших экранов */
  border-radius: 12px;
  margin: 0 auto;
  /* центрируем */
}

.swiper-slide video.vertical {
  width: auto;
  height: 80vh;
  max-width: 90%;
  /* немного отступы по бокам */
}

.swiper {
  padding-bottom: 70px;
  /* добавляем место под точками */
  position: relative;
}

/* стрелки по центру видео */
.swiper-button-next,
.swiper-button-prev {
  color: #1e4fd1;
  top: 50%;
  /* вертикальное центрирование */
  transform: translateY(-50%);
  /* корректируем по центру */
  width: 3rem;
  /* ширина кнопки */
  height: 3rem;
  /* высота кнопки */
  background: rgba(255, 255, 255, 0.3);
  /* чуть видимая подложка */
  border-radius: 50%;
  /* круглые кнопки */
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  /* стандартное положение */
  left: 0;
  width: 100%;
  text-align: center;
  transition: bottom 0.3s ease;
  /* плавный переход при смене видео */
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: background 0.3s;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #ff69b4;
  /* цвет активной точки */
}

.swiper-pagination-bullet:hover {
  background: #1e90ff;
}

/*______________________________________галлерея END*/
/*______________________OUR HOME___________________*/

.our-home-section {
  padding: 60px 20px;
  color: #333;
  background-color: #cae2fa;
}

.our-home-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Общий блок с фото и описанием ===== */
.home-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.home-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.home-text {
  flex: 1;
  min-width: 280px;
}

.home-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(to right, #00bfff, #1e90ff, #008080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: clamp(0.05rem, 1vw, 0.1rem) #1e90ff;
  text-align: center;
}

.home-text-h3,
.community-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #008080;
  margin-bottom: 12px;
}

.home-text p {
  color: #1e90ff !important;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

.intro-highlight {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #008080;
}

/* ===== Общие секции ===== */
.our-home-section article {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-home-section article:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.home-section {
  margin-bottom: 2.8rem;
}

.home-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #008080;
  margin-bottom: 12px;
}

.home-section p {
  color: #1e4fd1;
  margin-bottom: 15px;
  line-height: 1.7;
}

.home-section ul {
  list-style-type: disc;
  margin-left: 25px;
  line-height: 1.7;
  color: #1e90ff;
}

/* ===== Плавное появление ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/*______________________OUR HOME END___________________*/


/*______________________OUR COMMUNITY___________________*/

.our-community-section {
  padding: 60px 20px;
  color: #1e4fd1;
  background-color: #d9eafd;
  ;
}

.community-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

/* Картинка */
.community-image {
  flex: 1 1 350px;
  /* занимает минимум 350px, расширяется по доступной ширине */
}

.community-image img {
  width: 75%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.community-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* Заголовок */
.community-header {
  flex: 1 1 300px;
}

.community-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(to right, #00bfff, #1e90ff, #008080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: clamp(0.05rem, 1vw, 0.1rem) #1e90ff;
  text-align: center;
}

/* ===== Статьи под ними ===== */
.community-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.community-benefits article {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-benefits article:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.community-benefits h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #008080;
  margin-bottom: 12px;
}

.community-benefits p {
  color: #1e4fd1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 5px;
}

.blue-zone {
  font-weight: 700;
  font-style: italic;
  color: #1e4fd1 !important;
  text-decoration: underline !important;
  cursor: pointer;
}

.blue-zone:hover {
  color: #008080 !important;
}

/*______________________OUR COMMUNITY END___________________*/

/*______________________contact*/
.contact-us {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  background-color: #cae2fa;
  scroll-margin-top: 10vh;
  padding-bottom: 2%;
}

.contact-icons {
  margin-top: 2%;
  margin-left: 5%;
  height: 60vh;
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-top: 10px solid rgb(7, 39, 243);
  border-radius: 8px;
  background-color: white;
  background: linear-gradient(to left, #fff, #1e90ff, #FFF);

  object-fit: cover;
}

.contact-icons a {
  margin: 1rem 0 0.5rem 0;
  display: flex;
  align-items: center;
  color: rgb(7, 39, 243);
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.contact-icons img {
  width: 50px;
  height: 50px;
  border-width: 0;
  border-bottom: 4px solid #547b80;
  border-radius: 0.4em;
  cursor: pointer;
  margin: 0 80px 0 80px;
  box-shadow: 5px 5px 10px 1px #000000;
  transition: box-shadow 0.2s 0.3s;
}

.contact-form-container {
  position: relative;
  max-width: 500px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.9);
  height: 60vh;
  width: 45%;
  border-top: 10px solid rgb(7, 39, 243);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  z-index: 2;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  z-index: 1;
  border-radius: 20px;
}

#contact-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact-form h3 {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #1e4fd1;
  font-size: 1.3rem;
  font-weight: 900;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #1e4fd1;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #ffffffcc;
  color: #000;
  font-weight: bold;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #1e4fd1;
  box-shadow: 0 0 5px #00a0a055;
}

#contact-form button {
  background: linear-gradient(to left, #FFF, #FFF, #1e90ff);
  ;
  color: #1e4fd1;
  font-weight: 900;
  border: none;
  padding: 0.8rem;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

#contact-form button:hover {
  background: #007777;
  color: #fff;
}

.form-status {
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
  color: #1e90ff;
  display: none;
}

/*______________________contact END*/

/*______________________map*/
.map {
  background-color: #d9eafd;
}

.map-iframe {
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: 5%;
  border: none;
  box-shadow: 4px 4px 2px 2px #434242;
}

/*______________________map END*/






/*______________________footer*/
.footer {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to left, #FFF, #1e90ff);
}

.logo_footer {
  height: 3rem;
  width: 3rem;
}

.footer__copy {
  font-size: 16px;
  letter-spacing: 1.3px;
  line-height: 24px;
  color: #FFF;
  padding: 25px 0 5px 25px;
}

.footer__copy-text {
  font-size: 12px;
  font-style: bold;
}

.footer__contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px 5px 0;
}

.footer__contacts-item {
  padding-right: 20px;
}

.footer__contacts-whatsapp,
.footer__contacts-messenger,
.footer__contacts-telegram,
.footer__contacts-email {
  width: 50px;
  height: 50px;
  border-width: 0;
  border-bottom: 4px solid #547b80;
  border-radius: 0.4em;
  cursor: pointer;
  box-shadow: 5px 5px 10px 1px #000000;
  transition: box-shadow 0.2s 0.3s;
}

.footer__contacts-email-sent,
.footer__contacts-whatsapp-sent,
.footer__contacts-messenger-sent,
.footer__contacts-telegram-sent {
  display: none;
  width: 50px;
  height: 50px;
  border-width: 0;
  border-bottom: 4px solid #547b80;
  border-radius: 0.4em;
  cursor: pointer;
  box-shadow: 5px 5px 10px 1px #000000;
  transition: box-shadow 0.2s 0.3s;
}