@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*Обнуление начало*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
.bigred {
  font-size: 20px;
  color: red;
}

/*Обнуление КОНЕЦ*/ 
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #fff;
}

/* Для всех элементов с id */
[id] {
  scroll-margin-top: 50px;
}

img {
  display: block;
}

main {
  position: relative;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
}

.button__pages {
  display: block;
  max-width: 270px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 1px 1px 1px black;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  background-color: #3894D1;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.button__pages:hover {
  color: #3894D1;
  background-color: #fff;
  border-top: 2px solid #3894D1;
  border-bottom: 2px solid #3894D1;
  transform: scale(0.95);
  transition: 0.15s all;
}

/*Базовая настройка*/
.animate-on-scroll {
  opacity: 0;
  transition: all 1s ease;
}

/*ЭФФЕКТЫ ДЛЯ h1*/
.slide-from-left {
  transform: translateX(-100px);
}

.slide-from-right {
  transform: translateX(100px);
}

.slide-from-top {
  transform: translateY(-30px);
}

.slide-from-bottom {
  transform: translateY(30px);
}

/*ЭФФЕКТЫ ДЛЯ БЛОКОВ*/
.zoom-in {
  transform: scale(0.9);
}

.flip-in-x {
  transform: rotateX(90deg);
  transform-origin: center;
}

.flip-in-y {
  transform: rotateY(90deg);
  transform-origin: center;
}

.fade-up {
  transform: translateY(40px);
}

.fade-down {
  transform: translateY(-40px);
}

.slide-left {
  transform: translateX(-100px);
}

.slide-right {
  transform: translateX(100px);
}

.grow-in {
  transform: scale(0);
}

/*При появлении в зоне видимости*/
.animate-on-scroll.animate {
  opacity: 1;
  transform: none;
  filter: none;
}

.header {
  position: relative;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  background-color: #F2F2F2;
}

.header__top {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
}
.logo img {
  display: block;
  width: 170px;
  height: 60px;
}

.header__title {
  padding-left: 20px;
  border-left: 2px solid #3791D0;
}
.header__title p {
  color: rgb(73, 73, 73);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 1px;
  text-align: left;
}
.header__title span {
  color: #3791D0;
}

.header__kontakts {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
}

.header__koll {
  border-radius: 8px;
}
.header__koll img {
  width: 80px;
  height: 80px;
}
.header__koll:hover {
  transform: scale(0.95);
  transition: 0.15s all;
}

.header__kontakts-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.header__kontakts-info img {
  width: 40px;
  height: 40px;
}
.header__kontakts-info a {
  color: rgb(73, 73, 73);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: left;
}
.header__kontakts-info a:hover {
  color: rgb(34, 31, 31);
  text-decoration: underline;
}

.header__lok {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__lok img {
  width: 40px;
  height: 40px;
}

.dropdown {
  position: relative;
  display: inline-block; /* если нужно — можно заменить на block */
  font-family: sans-serif;
}

.dropdown__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: rgb(34, 31, 31);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 6px;
  max-width: 200px;
}

.dropdown__icon {
  transition: transform 0.3s ease;
  color: #63bbeb;
}

.dropdown.open .dropdown__icon {
  transform: rotate(180deg);
}

.dropdown__content {
  position: absolute;
  top: calc(100% + 10px); /* отступ сверху */
  right: 0; /* выравниваем по правому краю родителя */
  z-index: 1000;
  background-color: #3795D2;
  padding: 10px;
  min-width: 150px; /* можно менять под контент */
  height: 100px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px); /* смещение влево */
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
}
.dropdown__content p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
  text-shadow: 1px 1px 1px black;
}
.dropdown__content span {
  color: #f1d482;
}

.dropdown__content::-webkit-scrollbar {
  width: 8px;
}

.dropdown__content::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 4px;
}

.dropdown__content::-webkit-scrollbar-thumb {
  background: #3F99CB;
  border-radius: 4px;
}

.dropdown__content::-webkit-scrollbar-thumb:hover {
  background: #2c3e50;
}

.dropdown.open .dropdown__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 980px) {
  .header__title {
    display: none;
  }
  .header__top {
    justify-content: space-around;
  }
}
@media (max-width: 650px) {
  .logo {
    gap: 5px;
  }
  .logo img {
    width: 100px;
    height: 40px;
  }
  .header__lok img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 530px) {
  .header__koll {
    display: none;
  }
}
@media (max-width: 430px) {
  .header__top {
    display: block;
  }
  .logo {
    justify-content: space-between;
  }
  .header__kontakts-info {
    margin: 0 auto;
  }
}
/* Оболочка меню */
.main-nav {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #373A3C;
  border-top: 2px solid #3898D4;
  border-bottom: 2px solid #3898D4;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Главное меню */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 15px 20px;
  margin: 0;
  list-style: none;
}

/* Пункты меню */
.menu > li {
  position: relative;
}

.menu > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-shadow: 1px 1px 1px black;
  font-weight: 400;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.menu > li > a:hover {
  color: #7cc3f0;
}

/* Стрелки */
.arrow {
  font-size: 20px;
  color: #3898D4;
  transition: transform 0.3s ease;
}

/* Подменю */
.submenu {
  position: absolute;
  top: 100%;
  left: 15px;
  background-color: #373A3C;
  border-radius: 2px;
  border-top: 1px solid #3898D4;
  border-bottom: 1px solid #3898D4;
  list-style: none;
  padding: 10px 5px;
  margin: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Пункты в подменю */
.submenu li a {
  display: block;
  padding: 10px 5px;
  font-size: 16px;
  color: #fff;
  text-shadow: 1px 1px 1px black;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.submenu li a:hover {
  color: #3898D4;
  background-color: #f2f2f2;
}

/* Активация подменю и анимация стрелки */
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-submenu:hover .arrow {
  transform: rotate(180deg);
}

@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
}
.pulse__pozition {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  z-index: 1000;
}

.pulse {
  position: relative;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  background-image: -webkit-image-set(url("../img/tell.png"));
  background-image: image-set(url("../img/tell.png"));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.pulse::before {
  content: "";
  position: absolute;
  border: 2px solid #F9BD0E;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.pulse::after,
.pulse::before {
  content: "";
  position: absolute;
  border: 2px solid #F9BD0E;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

.pulse::after {
  animation-delay: 1.25s;
}

.pulse__pozition2 {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  z-index: 1000;
}

.pulse2 {
  position: relative;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  background-image: -webkit-image-set(url("../img/tell.png"));
  background-image: image-set(url("../img/tell.png"));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.pulse2::before {
  content: "";
  position: absolute;
  border: 2px solid #7dc5f1;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse2 2.5s linear infinite;
}

@keyframes pulse2 {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.pulse2::after,
.pulse2::before {
  content: "";
  position: absolute;
  border: 2px solid #7dc5f1;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

.pulse2::after {
  animation-delay: 1.25s;
}

@media (max-width: 400px) {
  .pulse__pozition {
    display: none;
  }
}
/* Затенённый фон + центрирование */
.modal {
  display: none; /* скрыто по умолчанию */
  position: fixed;
  inset: 0;
  z-index: 1051;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal h4 {
  color: #0064B0;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 2%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-top: 10px;
}
.modal p {
  color: black;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 2%;
  line-height: 28px;
  text-align: center;
  text-shadow: 1px 1px 1px white;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Содержимое модального окна */
.modal-content {
  background-color: #F2F2F2;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}
.modal-content img {
  display: block;
  width: 105px;
  height: 80px;
  margin: 0 auto;
}

/* Кнопка закрытия */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #444;
  cursor: pointer;
}

/* Анимация появления */
@keyframes fadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Базовая панель */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: #373A3C;
  border-radius: 0 0 0 50px;
  border-bottom: 1px solid #3898D4;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease-in-out;
  z-index: 1050;
  display: flex;
  flex-direction: column;
}

.sidebar-menu--open {
  right: 0;
}

/* Кнопка закрытия */
.sidebar-menu__close {
  align-self: flex-end;
  margin: 20px;
  padding: 0;
  background: none;
  border: none;
  font-size: 35px;
  cursor: pointer;
  color: #fff;
}

/* Контент и скролл */
.sidebar-menu__content {
  overflow-y: auto;
  padding: 20px;
  flex-grow: 1;
}

.sidebar-menu__content::-webkit-scrollbar {
  width: 8px;
}

.sidebar-menu__content::-webkit-scrollbar-track {
  background: #eee;
}

.sidebar-menu__content::-webkit-scrollbar-thumb {
  background: #3898D4;
  border-radius: 4px;
}

/* Навигация */
.sidebar-menu__nav {
  display: flex;
  flex-direction: column;
}

.sidebar-menu__link {
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  text-shadow: 1px 1px 1px black;
}

.sidebar-menu__link:hover {
  color: #86c6ee;
}

/* Субменю контейнер */
.sidebar-menu__item {
  margin-top: 10px;
}

/* Кнопка раскрытия */
.sidebar-menu__submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  font-weight: 500;
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s;
}

/* Стрелка */
.sidebar-menu__icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #86c6ee;
  border-bottom: 2px solid #86c6ee;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.sidebar-menu__submenu-toggle--open .sidebar-menu__icon {
  transform: rotate(-135deg);
}

/* Субменю */
.sidebar-menu__submenu {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  margin-top: 5px;
}

.sidebar-menu__submenu--open {
  display: flex;
}

.sidebar-menu__sublink {
  padding: 5px 0;
  color: #c7c5c5;
  text-decoration: none;
  font-size: 16px;
}

.sidebar-menu__sublink:hover {
  color: #a4d7f7;
}

/* Кнопка вызова */
.sidebar-menu__toggle {
  display: none;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background-color: #373A3C;
  color: #fff;
  padding: 20px 6px;
  border-left: 1px solid #64b4e6;
  font-weight: bold;
  cursor: pointer;
  z-index: 1049;
  border-radius: 8px 0 0 8px;
}

@media (max-width: 800px) {
  .sidebar-menu__toggle {
    display: block;
  }
}
.footer {
  position: relative;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  background-color: #373A3C;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer__logo {
  width: 30%;
  height: auto;
}
.footer__logo img {
  width: 150px;
  height: 70px;
  margin-bottom: 10px;
}
.footer__logo h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: left;
  margin-bottom: 10px;
}
.footer__logo span {
  color: #F9A41A;
}
.footer__logo p {
  color: #d6d4d4;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.36px;
  text-align: left;
  margin-bottom: 10px;
}

.footer__adress {
  width: 25%;
  height: auto;
}
.footer__adress h4 {
  color: #81c3f0;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 10px;
}
.footer__adress p {
  color: #d6d4d4;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 10px;
}

.footer__tell {
  width: 25%;
  height: auto;
}
.footer__tell h4 {
  color: #81c3f0;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 10px;
}
.footer__tell h5 {
  color: #81c3f0;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 10px;
}
.footer__tell img {
  width: 105px;
  height: 80px;
  margin: 0 auto;
  margin-top: 20px;
}
.footer__tell p {
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  line-height: 120%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 10px;
}

.line {
  display: none;
  width: 20%;
  height: 1px;
  background-color: #858484;
}

@media (max-width: 950px) {
  .footer__logo {
    width: 40%;
  }
}
@media (max-width: 800px) {
  .footer {
    display: block;
  }
  .line {
    display: block;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .footer__logo {
    width: 100%;
  }
  .footer__logo img {
    margin: 0 auto;
  }
  .footer__logo h4 {
    text-align: center;
  }
  .footer__logo p {
    text-align: center;
  }
  .footer__adress {
    width: 100%;
  }
  .footer__tell {
    width: 100%;
  }
}
.custom-slider {
  position: relative;
  width: 100%;
  height: 550px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 20px;
}
.custom-slider.hovered .custom-prev,
.custom-slider.hovered .custom-next {
  opacity: 1;
  transform: scale(1.1);
}

.custom-slide {
  display: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.5s ease-out forwards;
}
.custom-slide.active {
  display: flex;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.custom-content {
  position: absolute;
  top: 40%;
  left: 1%;
  width: 50%;
  padding: 10px;
  background-color: rgba(26, 30, 35, 0.4);
  border-radius: 0 30px 0 30px;
}
.custom-content h2 {
  color: #91cbec;
  font-size: clamp(1.563rem, 1.228rem + 1.79vw, 3.125rem);
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 2%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
}
.custom-content h3 {
  color: #91cbec;
  font-size: clamp(1.563rem, 1.228rem + 1.79vw, 3.125rem);
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 2%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
}
.custom-content p {
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 2%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-top: 20px;
}
.custom-content a {
  display: block;
  max-width: 270px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 1px 1px 1px black;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  background-color: #3DA3DD;
  border-top: 2px solid #F3F5F4;
  border-bottom: 2px solid #F3F5F4;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.custom-content a:hover {
  color: #3DA3DD;
  background-color: #fff;
  border-top: 2px solid #3DA3DD;
  border-bottom: 2px solid #3DA3DD;
  transform: scale(0.95);
  transition: 0.15s all;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 85%;
  width: 40px;
  height: 30px;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 3px;
  background-color: #3DA3DD;
  z-index: 2;
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.custom-prev {
  left: 60%;
}

.custom-next {
  right: 20%;
}

.custom-prev:hover,
.custom-next:hover {
  opacity: 0.8;
  background-color: #FCAE19;
}

@media (max-width: 800px) {
  .custom-content {
    position: relative;
    top: 0;
    width: 90%;
  }
  .custom-prev {
    left: 30%;
  }
  .custom-next {
    right: 30%;
  }
}
@media (max-width: 700px) {
  .custom-slider {
    height: 400px;
  }
}
@media (max-width: 500px) {
  .custom-slider {
    height: 400px;
  }
}
.content__pages {
  max-width: 1440px;
  height: auto;
  margin-bottom: 20px;
  padding: 60px 10px;
  background-color: #F2F2F2;
}
.content__pages h2 {
  color: rgb(28, 39, 82);
  font-size: clamp(1.563rem, 1.458rem + 0.56vw, 1.875rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 20px;
}
.content__pages h3 {
  color: rgb(28, 39, 82);
  font-size: clamp(1.5rem, 1.438rem + 0.33vw, 1.688rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 20px;
}
.content__pages p {
  color: rgb(63, 62, 62);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: left;
  margin-bottom: 15px;
}

.content__pages-title {
  position: relative;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  background-size: cover;
  background-position: center;
}

.content__pages-title2 {
  position: relative;
  max-width: 1200px;
  height: 800px;
  margin: 0 auto;
  padding: 20px;
  overflow-y: auto;
  background-color: #fff;
}

.content__pages-title2::-webkit-scrollbar {
  width: 8px;
}

.content__pages-title2::-webkit-scrollbar-track {
  background: #fff; /* фон трека */
  border-radius: 4px;
}

.content__pages-title2::-webkit-scrollbar-thumb {
  background: #f1c398; /* цвет ползунка */
  border-radius: 4px;
}

.right-img {
  float: right;
  margin: 15px;
  width: 350px;
  border-radius: 5px;
}

.img__center {
  display: block;
  width: 65%;
  height: 400px;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

.left-img {
  float: left;
  margin: 15px;
  width: 350px;
  border-radius: 5px;
}

.centered-box {
  width: 250px;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow-y: auto; /* вертикальный скролл */
  overflow-x: hidden;
}

.ullo33 {
  display: block;
  width: 80%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 5px 10px;
}

.ullo33 li {
  font-size: 18px;
  line-height: 120%;
  margin: 10px 0px 15px 0px;
}

.ullo33 li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3894D1;
  border: 2px solid #3894D1;
  display: inline-block;
  margin: 0 10px 2px 0;
}

.ullo33 li:hover::before {
  background-color: whitesmoke;
}

.center__title p {
  color: rgb(41, 41, 41);
  font-size: clamp(1.125rem, 1.083rem + 0.22vw, 1.25rem);
  font-weight: 400;
  line-height: 110%;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 850px) {
  .img__center {
    display: block;
    width: 90%;
    height: 400px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 750px) {
  .content__pages {
    padding: 50px 10px;
  }
  .content__pages-head {
    max-width: 95%;
  }
}
@media (max-width: 650px) {
  .left-img {
    float: none;
    display: block;
    margin: 0 auto;
    width: 250px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .right-img {
    float: none;
    display: block;
    margin: 0 auto;
    width: 250px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .img__center {
    display: block;
    width: 100%;
    height: 250px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 400px) {
  .img__center {
    display: block;
    width: 100%;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.faq h2 {
  color: #1c4a9b;
  font-size: clamp(1.563rem, 1.458rem + 0.56vw, 1.875rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 20px;
}
.faq .faq__item {
  background-color: #3894D1;
  border-bottom: 2px solid #ddd;
  border-radius: 5px;
}
.faq .faq__question {
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  text-shadow: 1px 1px 1px black;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
}
.faq .faq__question:hover {
  transform: scale(0.95);
  transition: 0.15s all;
}
.faq .faq__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 10px;
  flex-shrink: 0;
}
.faq .faq__question.active .faq__icon {
  transform: rotate(-135deg);
}
.faq .faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 16px;
  line-height: 130%;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding: 0 20px;
  background-color: #fff;
}
.faq .faq__answer.open {
  opacity: 1;
  padding: 10px 20px 20px;
  max-height: 500px; /* достаточно для содержимого */
}

.faq2 {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.faq2 h2 {
  color: #0E2753;
  font-size: clamp(1.563rem, 1.458rem + 0.56vw, 1.875rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 20px;
}
.faq2 .faq__item {
  background-color: #E4E4E4;
  border-bottom: 2px solid #3894D1;
  border-top: 2px solid #3894D1;
  border-radius: 20px;
  margin-bottom: 5px;
}
.faq2 .faq__question {
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  outline: none;
  color: #0b66a3;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
}
.faq2 .faq__question:hover {
  transform: scale(0.95);
  transition: 0.15s all;
}
.faq2 .faq__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #0b66a3;
  border-bottom: 2px solid #0b66a3;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 10px;
  flex-shrink: 0;
}
.faq2 .faq__question.active .faq__icon {
  transform: rotate(-135deg);
}
.faq2 .faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 16px;
  line-height: 130%;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding: 0 20px;
  background-color: #fff;
}
.faq2 .faq__answer.open {
  opacity: 1;
  padding: 10px 20px 20px;
  max-height: 500px; /* достаточно для содержимого */
}

.table-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.responsive-table thead {
  background-color: #f4f4f4;
  font-weight: bold;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
}

/* 📱 Мобильная адаптация */
@media (max-width: 767px) {
  .responsive-table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block;
  }
  .responsive-table thead {
    display: none;
  }
  .responsive-table tr {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
  .responsive-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 15px;
  }
  .responsive-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #333;
  }
  .responsive-table td:last-child {
    border-bottom: none;
  }
}
.promotion {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.promotion__img {
  width: 50%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.promotion__img img {
  display: block;
  width: 400px;
  height: 400px;
  transform-style: preserve-3d;
  animation: swingY 5s infinite ease-in-out alternate;
}

@keyframes swingY {
  0% {
    transform: rotateY(-45deg);
  }
  100% {
    transform: rotateY(45deg);
  }
}
.promotion__calk {
  width: 50%;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 72px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.promotion__calk h4 {
  color: rgb(55, 125, 255);
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 10px;
}
.promotion__calk h3 {
  color: rgb(18, 18, 18);
  font-size: clamp(1.875rem, 1.711rem + 0.88vw, 2.5rem);
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: left;
  margin-bottom: 16px;
}
.promotion__calk p {
  color: rgb(18, 18, 18);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: left;
  margin-bottom: 24px;
}
.promotion__calk a {
  display: block;
  width: 200px;
  padding: 6px 40px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: center;
  border-radius: 8px;
  background-color: #3894D1;
}
.promotion__calk a:hover {
  background-color: #1A69CE;
  transform: scale(0.95);
  transition: 0.15s all;
}

.calk {
  margin-bottom: 24px;
}
.calk h4 {
  color: rgb(20, 23, 24);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: left;
  margin-bottom: 12px;
}

.countdown {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  font-family: sans-serif;
}

.time-box {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 2px;
  text-align: center;
  min-width: 60px;
}

.time-box span {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.time-box small {
  font-size: 14px;
  color: #777;
}

@media (max-width: 1000px) {
  .promotion__img {
    width: 900px;
    margin: 0 auto;
  }
  .promotion__img img {
    width: 300px;
    height: 300px;
  }
  .promotion__calk {
    width: 900px;
    margin: 0 auto;
    padding: 20px 10px;
  }
  .promotion__calk h3 {
    text-align: center;
  }
  .promotion__calk h4 {
    text-align: center;
    margin-top: 20px;
  }
  .promotion__calk h2 {
    text-align: center;
  }
  .promotion__calk p {
    text-align: center;
  }
  .promotion__calk a {
    margin: 0 auto;
    margin-top: 24px;
  }
  .promotion {
    display: flex;
    flex-wrap: wrap-reverse;
  }
  .calk {
    margin: 0 auto;
  }
  .calk h4 {
    text-align: center;
  }
  .countdown {
    max-width: 300px;
    justify-content: space-around;
    gap: 10px;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .promotion__img img {
    width: 200px;
    height: 200px;
  }
}
.about {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about__img {
  width: 40%;
  height: auto;
}
.about__img img {
  width: 100%;
  height: 450px;
}

.about__info {
  width: 55%;
  height: auto;
}
.about__info h1 {
  color: #1c4a9b;
  font-size: clamp(1.563rem, 1.458rem + 0.56vw, 1.875rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 20px;
}
.about__info p {
  color: rgb(63, 62, 62);
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: left;
  margin-bottom: 15px;
}

@media (max-width: 1050px) {
  .about {
    display: block;
  }
  .about__img {
    width: 70%;
    margin: 0 auto;
  }
  .about__img img {
    height: 500px;
    margin-bottom: 20px;
  }
  .about__info {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 700px) {
  .about__img {
    width: 90%;
  }
  .about__img img {
    height: 400px;
  }
}
@media (max-width: 400px) {
  .about__img {
    width: 95%;
  }
  .about__img img {
    height: 250px;
  }
}
/* СЕКЦИЯ */
.trends__paralax {
  position: relative;
  overflow: hidden;
  /* высоту секции задаёт контент; без фиксированных 1000px, чтобы не схлопывалась */
}

/* ФОН с параллаксом — теперь в потоке (relative), чтобы не ломать высоту на мобилках */
.trends__paralax-bg {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  will-change: background-position;
  padding: 60px 16px; /* «воздух» вокруг содержимого */
}

/* затемнение поверх фона */
.trends__paralax-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 30, 35, 0.6);
  z-index: 1;
}

.trends__paralax-bg > * {
  position: relative;
  z-index: 2;
}

/* ВНУТРИ — FLEX-область */
.flex-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* МЕНЮ */
.menu__tabs {
  position: relative;
  width: 28%;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* затемнение поверх фона */
.trends__title {
  position: relative;
  margin-bottom: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.trends__title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 30, 35, 0.4);
  z-index: 1;
  border-radius: 4px;
}

.trends__title > * {
  position: relative;
  z-index: 2;
}

.trends__title h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 1px 1px 1px black;
}

.trends__title p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 120%;
  text-align: center;
  margin-bottom: 10px;
}

.line2 {
  width: 70%;
  height: 1px;
  margin: 0 auto;
  background-color: #858484;
}

.menu-btn {
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s, transform 0.15s;
}

.menu-btn:hover {
  background: #e9e9e9;
  transform: scale(0.98);
}

.menu-btn.active {
  background: #0499fc;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}

/* КОНТЕНТ */
.content-area {
  flex: 1 1 auto;
  min-width: 0;
}

.content-block {
  display: none;
}

.content-block.active {
  display: block;
}

.content-block img {
  display: block;
  width: 100%;
  height: auto; /* адаптивно */
  max-height: 360px; /* ограничим, чтобы картинка не «съедала» экран */
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 12px;
  animation: circle 1s linear 0s 1 normal forwards;
  border-radius: 10px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

@keyframes circle {
  0% {
    transform: perspective(100vh) rotateY(25deg);
    opacity: 0;
  }
  50% {
    transform: perspective(100vh) rotateY(15deg);
    opacity: 0.5;
  }
  100% {
    transform: perspective(100vh) rotateY(0deg);
    opacity: 1;
  }
}
.content__anons {
  width: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 6px;
}
.content__anons h3 {
  color: #1c2752;
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.875rem);
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  margin-bottom: 16px;
}

.content__anons h2 {
  color: #1c2752;
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.875rem);
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  margin-bottom: 16px;
}

.content__anons p {
  color: #3f3e3e;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.content__anons a {
  color: #253781;
  font-size: 18px;
  font-weight: 600;
}

.content__anons a:hover {
  text-decoration: underline;
}

/* ---------- ADAPTIVE ---------- */
@media (max-width: 1024px) {
  .flex-container {
    gap: 16px;
  }
  .menu__tabs {
    width: 32%;
  }
  .content-block img {
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .trends__paralax-bg {
    padding: 20px 12px;
  }
  .flex-container {
    flex-direction: column; /* меню сверху, контент ниже */
    gap: 16px;
  }
  .menu__tabs,
  .content-area {
    width: 100%;
    min-width: 0;
  }
  .content-block img {
    max-height: 220px;
  }
}
/* на самых маленьких экранах (320px) всё ещё читаемо */
@media (max-width: 360px) {
  .menu-btn {
    font-size: 15px;
    padding: 10px 12px;
  }
  .content__anons p {
    font-size: 15px;
  }
}
.photo {
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  margin-top: 20px;
  padding: 30px 10px 20px 10px;
  border-radius: 10px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.photo h3 {
  color: rgb(28, 39, 82);
  font-size: clamp(1.5rem, 1.438rem + 0.33vw, 1.688rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 20px;
}

.photo-slider {
  max-width: 800px;
  height: 500px;
  margin: 20px auto 0;
}

.photo-slider__viewport {
  position: relative;
  width: 85%;
  height: 80%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.photo-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.photo-slider__track img {
  width: 100%;
  height: 100%;
}

.photo-slider__frame {
  width: 100%;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.photo-slider__frame--visible {
  display: block;
}

.photo-slider__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 12px 0;
}

.photo-slider__btn {
  background-color: #3FB3E4;
  color: #fff;
  border: 1px solid whitesmoke;
  padding: 10px 22px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.photo-slider__btn:hover {
  background-color: #444;
}

@media (max-width: 500px) {
  .photo-slider {
    width: 100%;
    height: 300px;
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */