@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&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: "Montserrat", sans-serif;
  background-color: #fff;
}

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: 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: #2e5599;
  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: #2e5599;
  background-color: #fff;
  border-top: 2px solid #2e5599;
  border-bottom: 2px solid #2e5599;
  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: 1920px;
  height: auto;
  padding-top: 10px;
  padding-bottom: 20px;
  margin: 0 auto;
  margin-bottom: 20px;
  animation-name: circle;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-play-state: running;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  background-size: cover;
  background-position: center;
}

@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;
  }
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(22, 22, 35) 1%, rgba(22, 22, 35, 0.91) 15%, rgba(22, 22, 35, 0.63) 40%, rgba(22, 22, 35, 0.26) 72.928%, rgb(22, 22, 35) 100%);
}

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

.header__top {
  background-color: rgba(46, 85, 153, 0.5);
  width: 95%;
  height: auto;
  margin: 0 auto;
  margin-top: 20px;
  padding: 15px 10px;
  transition: all 0.3s ease; /* плавный переход */
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header__top--scrolled {
  background-color: #2E5599;
  position: sticky;
  top: 10px;
  left: 0;
  right: 0;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header__top2 {
  display: none; /* скрыт по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
  padding: 15px 10px;
  background-color: #2E5599;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

.header__top2--visible {
  display: block;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header__logo h4 {
  color: rgb(255, 255, 255);
  font-family: Raleway;
  font-size: clamp(1.125rem, 1.102rem + 0.12vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 1%;
  text-align: left;
}

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

.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: white;
  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: #183f81;
  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;
}

.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);
}

.tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.tel img {
  width: 35px;
  height: 35px;
}
.tel a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: left;
}
.tel a:hover {
  color: rgb(214, 211, 211);
  text-decoration: underline;
}

.tel2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.tel2 img {
  width: 35px;
  height: 35px;
}
.tel2 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: left;
}
.tel2 a:hover {
  color: rgb(214, 211, 211);
  text-decoration: underline;
}

.mail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.mail img {
  width: 35px;
  height: 35px;
}
.mail a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: left;
}
.mail a:hover {
  color: rgb(214, 211, 211);
  text-decoration: underline;
}

.lok {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.lok p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: left;
}
.lok img {
  width: 35px;
  height: 35px;
}

@media (max-width: 620px) {
  .tel {
    display: none;
  }
}
@media (max-width: 420px) {
  .header__logo img {
    width: 50px;
    height: 30px;
  }
  .header__logo h4 {
    font-size: 12px;
  }
  .header__lok {
    justify-content: flex-start;
  }
  .header__lok img {
    width: 20px;
    height: 20px;
  }
}
.footer {
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
  padding: 80px 40px 32px 40px;
  background-color: #0e2753;
}

.footer__top {
  display: flex;
  justify-content: space-between;
}

.footer__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  padding-right: 20px;
}

.line {
  display: none;
  width: 40px;
  height: 2px;
  background-color: rgb(108, 114, 117);
  margin: 0 auto;
  margin-bottom: 16px;
}

.footer__tytle {
  padding-left: 32px;
  border-left: 2px solid rgb(108, 114, 117);
}
.footer__tytle a {
  color: rgb(232, 236, 239);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: left;
}
.footer__tytle a:hover {
  color: rgb(134, 139, 141);
}

.footer__mehu {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer__menu-linc a {
  color: rgb(254, 254, 254);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
  text-align: center;
}
.footer__menu-linc a:hover {
  color: rgb(134, 139, 141);
}

.footer__line {
  width: 90%;
  height: 1px;
  margin: 0 auto;
  background-color: rgb(134, 139, 141);
  margin-top: 50px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
  width: 100%;
  height: auto;
  padding: 16px 10px;
}

.footer__bottom-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 600px;
  gap: 28px;
  height: auto;
}

.bottom__copiright {
  color: rgb(232, 236, 239);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
}

.bottom__linc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.bottom__linc a {
  color: rgb(254, 254, 254);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
}
.bottom__linc a:hover {
  color: rgb(134, 139, 141);
}

.footer__bottom-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 130px;
  height: auto;
  margin-left: 20px;
}
.footer__bottom-socials a:hover {
  transform: scale(0.95);
  transition: 0.15s all;
}

@media (max-width: 1100px) {
  .footer__top {
    display: block;
  }
  .footer__info {
    justify-content: center;
    margin-bottom: 20px;
  }
  .footer__mehu {
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .footer {
    padding: 80px 10px 32px 10px;
  }
}
@media (max-width: 750px) {
  .footer__bottom-socials {
    margin: 0 auto;
    margin-bottom: 32px;
  }
  .footer__bottom-title {
    margin: 0 auto;
  }
}
@media (max-width: 700px) {
  .footer__bottom-title {
    flex-wrap: wrap-reverse;
  }
  .bottom__copiright {
    margin: 0 auto;
  }
  .bottom__linc {
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  .footer {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .footer__info {
    display: block;
    margin: 0 auto;
  }
  .footer__logo {
    padding-left: 20px;
    margin-bottom: 16px;
    margin: 0 auto;
  }
  .footer__logo img {
    margin: 0 auto;
  }
  .footer__tytle {
    padding-left: 0px;
    border-left: none;
    padding: 0px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
  }
  .line {
    display: block;
    margin-top: 16px;
  }
  .footer__mehu {
    display: block;
    margin: 0 auto;
  }
  .footer__menu-linc {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 32px;
  }
}
/* Оболочка меню */
/* Главное меню */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

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

.menu > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.menu > li > a:hover {
  text-shadow: 1px 1px 1px black;
}

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

/* Подменю */
.submenu {
  position: absolute;
  top: 100%;
  left: 15px;
  background-color: #183f81;
  border-radius: 2px;
  border-top: 1px solid #F2F2F2;
  border-bottom: 1px solid #F2F2F2;
  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: #183f81;
  background-color: #f2f2f2;
}

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

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

@media (max-width: 1155px) {
  .main-nav {
    display: none;
  }
}
/* Базовая панель */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: #0E2753;
  border-radius: 0 0 0 50px;
  border-bottom: 1px solid #fff;
  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: #63bbeb;
  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;
}

.sidebar-menu__link:hover {
  color: #c7c5c5;
}

/* Субменю контейнер */
.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: 3px solid #63bbeb;
  border-bottom: 3px solid #63bbeb;
  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: #fff;
}

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

@media (max-width: 1155px) {
  .sidebar-menu__toggle {
    display: block;
  }
}
.contact-form2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.contact-form2 label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 16px;
  gap: 5px;
}
.contact-form2 input,
.contact-form2 textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background-color: rgb(243, 245, 244);
}
.contact-form2 button {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  background-color: #2e5599;
  color: white;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form2 button:hover {
  background-color: #27477e;
}

.captcha-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 140px;
}

.captcha-image {
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 120px;
  height: 40px;
}

.captcha-wrapper input {
  width: 120px;
  height: 40px;
  padding: 8px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f3f5f4;
}

.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 h2 {
  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: #fff;
  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-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;
  }
}
.modal2 {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal2.active {
  display: flex;
}

.modal__content2 {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  position: relative;
}
.modal__content2 p {
  color: rgb(51, 51, 51);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.modal__close2 {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.modal__button2 {
  margin-top: 15px;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  background-color: #2e5599;
}

.kontakts {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 5px;
  background-size: cover;
  background-position: center;
}
.kontakts h3 {
  color: rgb(255, 255, 255);
  font-family: Raleway;
  font-size: clamp(1.563rem, 1.389rem + 0.93vw, 2.5rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 2%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-bottom: 30px;
}
.kontakts h4 {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 2%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-top: 30px;
}

.kontakts::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(27.02deg, rgba(44, 53, 70, 0.7) 20.871%, rgba(44, 53, 70, 0.4) 77.1%);
}

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

.kontakts__flex {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.kontakts__info {
  width: 40%;
  height: auto;
}

.kontakts__form {
  width: 55%;
  height: auto;
}

.kontakts__intro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 30px;
  background-color: rgba(26, 46, 82, 0.3);
  border-radius: 50px;
}
.kontakts__intro a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: left;
}
.kontakts__intro a:hover {
  color: rgb(214, 211, 211);
  text-decoration: underline;
}
.kontakts__intro p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: left;
}

.intro__img {
  border: 1px solid #fff;
  width: 70px;
  height: 70px;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intro__img img {
  width: 60px;
  height: 60px;
}

@media (max-width: 1100px) {
  .kontakts__intro {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .kontakts__flex {
    display: block;
  }
  .kontakts__info {
    width: 70%;
    margin: 0 auto;
  }
  .kontakts__form {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .kontakts__info {
    width: 95%;
    margin: 0 auto;
  }
  .kontakts__intro {
    gap: 10px;
  }
  .intro__img {
    width: 50px;
    height: 50px;
  }
  .intro__img img {
    width: 40px;
    height: 40px;
  }
}
.content__pages {
  max-width: 1440px;
  height: auto;
  margin-bottom: 20px;
  padding: 60px 10px;
  background-color: #F2F2F2;
}
.content__pages h1 {
  color: rgb(28, 39, 82);
  font-size: clamp(1.375rem, 1.225rem + 0.8vw, 2.188rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 20px;
}
.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(39, 39, 39);
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  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;
}

.content__pages-title2 {
  position: relative;
  max-width: 1280px;
  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;
  margin: 10px 0px 15px 0px;
}

.ullo33 li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f17e3c;
  border: 2px solid #f17e3c;
  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;
}

.videos {
  display: block;
  width: 560px;
  height: 315px;
  margin: 0 auto;
  margin-bottom: 20px;
}

@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;
  }
  .videos {
    width: 250px;
    height: 180px;
  }
}
@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;
  }
}
.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;
  }
}
.faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.faq 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;
}
.faq .faq__item {
  background-color: #2e5599;
  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 #2E5599;
  border-top: 2px solid #2E5599;
  border-radius: 20px;
  margin-bottom: 5px;
}
.faq2 .faq__question {
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  outline: none;
  color: #2E5599;
  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 #2E5599;
  border-bottom: 2px solid #2E5599;
  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; /* достаточно для содержимого */
}

.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;
  border-radius: 70px 0 70px 0;
}

.about__info {
  width: 55%;
  height: auto;
}
.about__info 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;
}
.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;
  }
}
.header__slider {
  width: 100%;
  height: auto;
  margin-top: 150px;
}

.header__slider-wrapper {
  width: 90%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.slider-main {
  position: relative;
  width: 50%;
  height: auto;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 40px 0 40px 0;
  background-color: rgba(44, 44, 46, 0.2);
}

.slider-main__item {
  display: none;
}

.slider-main__item.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.slider-main__item.active h2 {
  color: rgb(255, 255, 255);
  font-family: Raleway;
  font-size: clamp(1.563rem, 1.389rem + 0.93vw, 2.5rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 2%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
}
.slider-main__item.active p {
  color: rgb(255, 255, 255);
  font-family: Montserrat;
  font-size: clamp(1.125rem, 1.102rem + 0.12vw, 1.25rem);
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
}
.slider-main__item.active a {
  color: rgb(236, 236, 119);
  font-family: Montserrat;
  font-size: clamp(1.125rem, 1.102rem + 0.12vw, 1.25rem);
  font-weight: 400;
  text-shadow: 1px 1px 1px black;
  text-align: center;
}
.slider-main__item.active a:hover {
  text-decoration: underline;
}

.slider-thumbs-wrapper {
  position: relative;
}

.slider-thumbs {
  display: flex;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}

.slider-thumbs__item {
  flex: 0 0 100%;
  display: none;
  flex-direction: column;
  align-items: center;
}
.slider-thumbs__item p {
  color: #fff;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-shadow: 1px 1px 1px black;
}

.slider-thumbs__item img {
  width: 500px;
  height: 300px;
  border-radius: 10px;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.slider-thumbs__item.active {
  display: flex;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 10px;
}

.slider-controls button {
  padding: 5px 15px;
  font-size: 20px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: #2E5599;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.slider-controls button:hover {
  background-color: #2c3e50;
}

@media (max-width: 1100px) {
  .header__slider-wrapper {
    display: block;
  }
  .header__slider {
    margin-top: 100px;
    height: 600px;
  }
  .slider-main {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .header__slider {
    margin-top: 50px;
    height: 500px;
  }
  .header__slider-wrapper {
    width: 100%;
  }
  .slider-main {
    width: 95%;
  }
  .slider-thumbs__item img {
    width: 350px;
    height: 200px;
  }
}
@media (max-width: 375px) {
  .header__slider {
    height: 550px;
  }
  .slider-thumbs__item img {
    width: 300px;
    height: 200px;
  }
}
.pulse__pozition {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 20px;
  z-index: 1000;
}

.pulse {
  position: relative;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  background-image: -webkit-image-set(url("../img/mail.png"));
  background-image: image-set(url("../img/mail.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 #469BD4;
  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 #469BD4;
  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;
}

.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: 500px;
  height: 500px;
  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 h3 {
  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;
}
.promotion__calk h2 {
  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: #2E5599;
}
.promotion__calk a:hover {
  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 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;
  }
}
.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: #2E5599;
  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 */