@charset "UTF-8";
@import 'fonts.css';
/* Стили для body */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Общие стили */
body {
  background-color: #e6e6e6; /* Серебряный фон */
  color: #222;
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden; /* Отключение горизонтальной прокрутки */
}

/* кнопка возврата наверх */
.scroll-btn {
  position: fixed;
  display: none;
  z-index: 1000;
  width: 50px;
  min-height: 50px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background-color: #c7c7c7;
  color: rgb(105, 105, 105);
  font-size: 24px;
  font-weight: bolder;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.scroll-btn:hover {
  background-color: #4e4e4e;
  font-size: 1.5rem;
}

.back-to-top {
  bottom: 80px;
  right: 20px;
}

.back-to-left {
  bottom: 20px;
  right: 20px;
}

/* end кнопка возврата наверх */
.content {
  position: relative;
  width: 100vw; /* Ширина на весь экран */
  min-height: 100vh; /* Высота на весь экран */
  background-size: cover; /* Масштабирование, чтобы изображение занимало весь блок */
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(35, 35, 35); /* Цвет текста для лучшего контраста */
  overflow: hidden; /* Чтобы избежать лишних прокруток */
  padding: 10px;
}

.content-start {
  position: relative;
  width: 100vw; /* Ширина на весь экран */
  min-height: 100vh; /* Высота на весь экран */
  background-size: cover; /* Масштабирование, чтобы изображение занимало весь блок */
  display: flex;
  align-items: normal;
  justify-content: center;
  overflow: hidden; /* Чтобы избежать лишних прокруток */
  padding: 20px;
}

@media (max-width: 768px) {
  .content-start {
    padding: 10px; /* Уменьшенные отступы на мобильных устройствах */
  }
}
.content-modul {
  position: relative;
  width: 100vw; /* Ширина на весь экран */
  min-height: 100vh; /* Высота на весь экран */
  background-size: cover; /* Масштабирование, чтобы изображение занимало весь блок */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Чтобы избежать лишних прокруток */
  padding: 20px;
}

.content-modul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px; /* Высота линии */
  background: linear-gradient(90deg, #979797, #d5d5d5, #979797); /* Градиент линии */
}

@media (max-width: 768px) {
  .content-modul {
    padding: 20px; /* Уменьшенные отступы на мобильных устройствах */
  }
}
/* Карточки */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card-custom {
  flex: 1 1 300px; /* Все карточки имеют одинаковую ширину, но могут сжиматься */
  max-width: 350px;
  min-height: 250px; /* Устанавливаем минимальную высоту */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Распределяем контент равномерно */
  align-items: center; /* Центрируем контент */
  background: linear-gradient(135deg, #ddd, #bbb);
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-custom:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
}

.card-custom h3 {
  font-weight: bold;
}

.card-container2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

.card-schet {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ddd, #bbb);
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.user-count {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
}

/* Опускаем третью карточку ниже и центрируем */
.card-schet:nth-child(3) {
  grid-column: span 2;
  justify-self: center;
  width: 50%;
  margin-top: 20px;
}

/* Стилизация слайдера */
.swiper {
  width: 100%;
  margin: auto;
  padding-bottom: 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

/* Карточки сляйдера*/
.card-slide {
  width: 100%;
  max-width: 340px;
  background: linear-gradient(145deg, #D3D3D3, #A9A9A9);
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: 2px solid #8A8A8A;
}

.card-slide img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #999;
}

/* Модальное окно */
.modal-content {
  background: linear-gradient(135deg, #D3D3D3, #A9A9A9);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.modal-body {
  text-align: center;
}

iframe {
  width: 100%;
  height: 480px;
  border-radius: 10px;
  border: 2px solid #777;
}

.container-contact {
  max-width: 600px;
  margin: 20px auto;
  background: linear-gradient(145deg, #D3D3D3, #A9A9A9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.3);
}

.container-registr {
  width: 400px;
  background: linear-gradient(145deg, #f0f0f0, #c0c0c0);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.form-control {
  border-radius: 10px;
  border: 1px solid #a9a9a9;
}

.card-about {
  border: 1px solid #b0b0b0;
  background: linear-gradient(145deg, #d9d9d9, #ffffff);
  box-shadow: 5px 5px 10px #a0a0a0, -5px -5px 10px #ffffff;
}

.card-about:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

/* Навигация */
.navbar {
  background: linear-gradient(145deg, #E0E0E0, #A0A0A0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-weight: bolder;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px; /* Увеличенная высота */
}

.navbar-brand, .nav-link {
  color: #222 !important;
  font-weight: bold;
}

.nav-link:hover {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.navbar .dropdown-menu {
  background-color: #dfdfdf; /* Цвет фона выпадающего меню */
  border: none; /* Убираем границу */
}

.navbar .dropdown-menu .nav-link {
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out; /* Плавный переход */
  padding: 5px 10px; /* Увеличиваем зону наведения */
  border-radius: 5px; /* Скругленные края */
  font-weight: normal;
  padding: 1em;
}

@media (max-width: 768px) {
  .navbar-collapse {
    background: rgb(201, 201, 201);
  }
}
.btn-start {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #444, #999);
  border: none;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn-start:hover {
  background: linear-gradient(135deg, #666, #bbb);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
}

.btn-start:active {
  transform: scale(0.95);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.card-button {
  display: inline-block;
  padding: 10px 20px;
  background: #444;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.card-button:hover {
  background: #222;
}

/* Серебряные кнопки Swiper */
.swiper-button-next,
.swiper-button-prev {
  background: linear-gradient(145deg, #D3D3D3, #A9A9A9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.3);
  border: 2px solid #8A8A8A;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

/* Стрелки (иконки) внутри кнопок */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

/* Эффект при наведении */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(145deg, #BBBBBB, #777777);
  box-shadow: inset 4px 4px 10px rgba(255, 255, 255, 0.6), inset -4px -4px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

/* Эффект при нажатии */
.swiper-button-next:active,
.swiper-button-prev:active {
  transform: scale(0.95);
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.5), inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.btn-custom {
  display: block;
  width: 100%;
  background: linear-gradient(145deg, #BBBBBB, #777777);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.5), inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.btn-custom:hover {
  background: linear-gradient(145deg, #AAAAAA, #666666);
  box-shadow: inset 4px 4px 10px rgba(255, 255, 255, 0.6), inset -4px -4px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

h1 {
  font-size: 6rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  color: #f8f8f8;
  /* Светлый цвет текста */
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
  letter-spacing: 3px;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(45deg, #d6d6d6, #929292, #666666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
h2 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  color: #f8f8f8;
  /* Светлый цвет текста */
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
  letter-spacing: 3px;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(45deg, #d6d6d6, #929292, #666666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
.txt-24b {
  font-size: 24px;
  color: #666666;
  font-weight: bold;
}

.txt-18b {
  font-size: 18px;
  color: #666666;
  font-weight: bold;
}

.txt-16 {
  font-size: 16px;
  color: #666666;
}

.card-title {
  flex-grow: 1; /* Это заставляет текст заполнять пространство */
  font-size: 1rem;
}

.footer {
  background-color: #232323; /* Темный фон */
  color: white; /* Белый текст */
  padding: 40px 0; /* Отступы сверху и снизу */
  font-size: 0.9rem; /* Размер шрифта */
  border-top: 2px solid #343434; /* Тонкая граница сверху */
  align-items: center;
  justify-content: center;
}

.footer-logo {
  margin-bottom: 20px; /* Отступ под логотипом */
}

.footer-brand {
  color: white; /* Цвет текста */
  text-decoration: none; /* Убираем подчеркивание */
  font-weight: bold;
}

.footer-brand:hover {
  color: #f0f0f0; /* Светлый текст при наведении */
}

.footer-text {
  margin-bottom: 15px; /* Отступ под основным текстом */
  color: #cccccc; /* Более светлый цвет для текста */
}

.footer-social {
  list-style: none; /* Убираем маркеры списка */
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px; /* Расстояние между элементами */
}

.footer-link {
  color: white; /* Цвет текста ссылок */
  text-decoration: none; /* Убираем подчеркивание */
  transition: color 0.3s ease-in-out;
}

.footer-link:hover {
  color: #f0f0f0; /* Светлый цвет текста при наведении */
}

.img-shadow {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  /* Центрирование */
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), -10px -10px 20px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .img-shadow {
    width: 80%;
    /* Больше гибкости */
    min-width: 150px;
    /* Минимальный размер */
    max-width: 300px;
    height: auto;
    margin-top: 3rem;
  }
}
.service_icon_bg_1 {
  background-image: url(../img/service_icon_bg_1.png);
  background-repeat: no-repeat; /* Запрещаем повторение */
  background-position: center top; /* Центрируем изображение по горизонтали, но оставляем сверху */
  padding: 8px;
  border-radius: 50%;
}

.service_icon img {
  width: 120px;
}/*# sourceMappingURL=style.css.map */

