@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;
}

img {
  display: block;
}

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

/*Базовая настройка*/
.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 img {
  width: 170px;
  height: 60px;
}

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

.header__koll {
  border-radius: 8px;
}
.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: 30px;
  height: 30px;
}
.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;
}

@media (max-width: 1050px) {
  .header__title {
    display: none;
  }
  .header__kontakts {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .header__kontakts {
    display: block;
  }
}
@media (max-width: 600px) {
  .header__kontakts {
    display: none;
  }
}
@media (max-width: 400px) {
  .logo img {
    width: 130px;
    height: 40px;
  }
  .header__koll img {
    width: 70px;
    height: 60px;
  }
}
/* Оболочка меню */
.main-nav {
  max-width: 1440px;
  margin: 0 auto;
  background-color: rgb(26, 30, 35);
  border-top: 2px solid #F2F2F2;
  border-bottom: 2px solid #F2F2F2;
  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: #F8C12C;
}

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

/* Подменю */
.submenu {
  position: absolute;
  top: 100%;
  left: 15px;
  background-color: rgb(26, 30, 35);
  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: rgb(26, 30, 35);
  background-color: #f2f2f2;
}

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

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

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }
}
.top__info {
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  padding: 65px 15px 0 15px;
  background-color: #1A1E23;
}

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

.top__title {
  width: 45%;
  height: auto;
}
.top__title h1 {
  color: rgb(224, 224, 224);
  font-size: clamp(1.875rem, 1.711rem + 0.88vw, 2.5rem);
  font-weight: 600;
  line-height: 110%;
  text-align: left;
  margin-bottom: 10px;
}
.top__title p {
  color: rgba(224, 224, 224, 0.5);
  font-size: clamp(1.125rem, 1.092rem + 0.18vw, 1.25rem);
  font-weight: 500;
  line-height: 23px;
  text-align: left;
}

.top__text {
  width: 45%;
  height: auto;
}
.top__text h2 {
  color: rgb(224, 224, 224);
  font-size: clamp(1.25rem, 1.184rem + 0.35vw, 1.5rem);
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  margin-bottom: 10px;
}
.top__text h3 {
  color: rgb(224, 224, 224);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  margin-bottom: 10px;
}
.top__text h4 {
  color: rgb(224, 224, 224);
  font-size: clamp(1.25rem, 1.184rem + 0.35vw, 1.5rem);
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  margin-bottom: 10px;
}
.top__text h5 {
  color: rgb(224, 224, 224);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  margin-bottom: 10px;
}
.top__text p {
  color: rgba(224, 224, 224, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
}

@media (max-width: 750px) {
  .top__info {
    padding: 35px 15px 0 15px;
  }
  .top__info-title {
    display: block;
  }
  .top__title {
    width: 100%;
    margin: 0 auto;
  }
  .top__title h1 {
    text-align: center;
  }
  .top__title p {
    text-align: center;
  }
  .top__text {
    display: none;
  }
}
.slide__top {
  position: relative;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  background-color: #1A1E23;
  padding: 50px 15px;
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  .slide__top {
    padding: 30px 15px;
  }
}
.slider__automat {
  position: relative;
  max-width: 1200px;
  height: 450px;
  margin: 0 auto;
  border-radius: 70px 70px 0 0;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.caption {
  position: absolute;
  bottom: 2px;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
}

@media (max-width: 750px) {
  .slider__automat {
    height: 350px;
  }
}
@media (max-width: 600px) {
  .slider__automat {
    height: 250px;
  }
}
@media (max-width: 500px) {
  .slider__automat {
    height: 200px;
    border-radius: 50px 50px 0 0;
  }
}
.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/mesages.png"));
  background-image: image-set(url("../img/mesages.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 #F8C12C;
  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 #F8C12C;
  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/mesages.png"));
  background-image: image-set(url("../img/mesages.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 #F8C12C;
  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 #F8C12C;
  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 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;
  }
}
.contact-form2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  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: #01538D;
  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: #0064B0;
}

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

/* Базовая панель */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: #1A1E23;
  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: #313841;
  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: #F8C12C;
}

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

/* Кнопка вызова */
.sidebar-menu__toggle {
  display: none;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background-color: #333;
  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: 920px) {
  .sidebar-menu__toggle {
    display: block;
  }
}
.footer {
  position: relative;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}
.footer h2 {
  color: white;
  font-family: Mulish;
  font-size: clamp(1.875rem, 1.793rem + 0.44vw, 2.188rem);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.36px;
  text-align: center;
  margin-bottom: 30px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(26, 30, 35, 0.9);
  z-index: 1;
}

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

.footer__top {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer__top img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
.footer__top h4 {
  color: #F8C12C;
  font-family: Mulish;
  font-size: clamp(1.125rem, 1.092rem + 0.18vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.36px;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-bottom: 10px;
}
.footer__top p {
  color: rgb(255, 255, 255);
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: center;
}
.footer__top a {
  display: block;
  color: rgb(255, 255, 255);
  font-family: Inter;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: center;
}
.footer__top a:hover {
  color: rgb(175, 171, 171);
  text-decoration: underline;
}

.line {
  width: 90%;
  height: 1px;
  margin: 0 auto;
  margin-bottom: 40px;
  background-color: rgb(175, 171, 171);
}

.footer-menu {
  margin-bottom: 40px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.footer-menu li a {
  text-decoration: none;
  color: #fff; /* изменяй под свой дизайн */
  font-size: 18px;
  letter-spacing: 0.36px;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: rgb(175, 171, 171); /* подсветка при наведении */
}

.footer__bottom {
  width: 90%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer__bottom img {
  width: 140px;
  height: 50px;
}
.footer__bottom h3 {
  color: white;
  font-family: Mulish;
  font-size: 25px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.36px;
  text-align: center;
}
.footer__bottom span {
  color: #C4151C;
  text-shadow: 1px 1px 1px black;
}
.footer__bottom p {
  color: rgb(255, 255, 255);
  font-family: Inter;
  font-size: 18px;
  font-weight: 200;
  line-height: 27px;
  letter-spacing: 0.36px;
  text-align: center;
  text-shadow: 1px 1px 1px black;
}

.footer__sozials {
  width: 60%;
  margin-top: 30px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
}
.footer__sozials img {
  width: 30px;
  height: 30px;
}

@media (max-width: 800px) {
  .footer__top {
    display: block;
    margin-bottom: 20px;
  }
  .footer__tel {
    margin-bottom: 10px;
  }
  .footer__mail {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .footer-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.mesages {
  position: relative;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 30px 10px;
  background-size: cover;
  background-position: center;
}
.mesages h3 {
  color: #fff;
  font-size: clamp(1.875rem, 1.793rem + 0.44vw, 2.188rem);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.36px;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-bottom: 10px;
}
.mesages h4 {
  color: #fff;
  font-size: clamp(1.563rem, 1.48rem + 0.44vw, 1.875rem);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.36px;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-bottom: 10px;
}
.mesages p {
  color: #fff;
  font-size: clamp(1.125rem, 1.092rem + 0.18vw, 1.25rem);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.36px;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-bottom: 10px;
}
.mesages span {
  color: #7CC3F3;
}

.mesages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(26, 30, 35, 0.9);
  z-index: 1;
}

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

.mesages__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: auto;
  margin: 0 auto;
}

.mesages__img {
  width: 40%;
  height: auto;
}
.mesages__img img {
  width: 100%;
  height: 350px;
  margin: 0 auto;
}

.mesages__form {
  width: 50%;
  height: auto;
}

@media (max-width: 800px) {
  .mesages__flex {
    display: block;
  }
  .mesages__img {
    width: 100%;
    margin: 0 auto;
  }
  .mesages__img img {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  .mesages__form {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .mesages__img img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
}
.header__pages {
  position: relative;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 20px;
}
.header__pages h1 {
  color: #F7CC56;
  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: 2px 2px 2px black;
  margin-top: 10px;
}
.header__pages h2 {
  color: #F7CC56;
  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;
  margin-top: 10px;
}
.header__pages h3 {
  color: #F7CC56;
  font-size: 25px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 2%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-top: 30px;
}
.header__pages p {
  color: #4f5052;
  font-size: clamp(1.25rem, 1.146rem + 0.56vw, 1.563rem);
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 2%;
  line-height: 28px;
  text-align: center;
  margin-top: 20px;
}
.header__pages a {
  color: #F7CC56;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 2%;
  line-height: 28px;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  margin-top: 20px;
}
.header__pages a:hover {
  color: #f07a44;
  text-decoration: underline;
}

.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: #F7CC56;
  border-top: 2px solid #A7774B;
  border-bottom: 2px solid #A7774B;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.button__pages:hover {
  color: #F7CC56;
  background-color: #fff;
  transform: scale(0.95);
  transition: 0.15s all;
}

.custom-slider {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 70px 70px 0 0;
}
.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: #F7CC56;
  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: #F7CC56;
  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: #F7CC56;
  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: #F7CC56;
  background-color: #fff;
  border-top: 2px solid #F7CC56;
  border-bottom: 2px solid #F7CC56;
  transform: scale(0.95);
  transition: 0.15s all;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 90%;
  width: 40px;
  height: 30px;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 3px;
  background-color: #F7CC56;
  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: #C4151C;
}

@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: 300px;
    border-radius: 50px 50px 0 0;
  }
}
.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;
  user-select: none;
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
}

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

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

.button__konsult {
  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;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  background-color: #F7CC56;
  border-top: 2px solid #A7774B;
  border-bottom: 2px solid #A7774B;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.button__konsult:hover {
  color: #F7CC56;
  background-color: #fff;
  transform: scale(0.95);
  transition: 0.15s all;
}

@media (max-width: 1050px) {
  .about {
    display: block;
  }
  .about__img {
    width: 70%;
    margin: 0 auto;
  }
  .about__img img {
    height: 450px;
    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: 350px;
  }
}
@media (max-width: 400px) {
  .about__img {
    width: 95%;
  }
  .about__img img {
    height: 250px;
  }
}
.faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.faq 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;
}

.faq__item {
  background-color: #e7ab05;
  border-bottom: 2px solid #ddd;
}

.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: space-between;
  position: relative;
}
.faq__question:hover {
  transform: scale(0.95);
  transition: 0.15s all;
}

.faq__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 10px;
  flex-shrink: 0;
}

.faq__question.active .faq__icon {
  transform: rotate(-135deg);
}

.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__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;
  }
}
.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: #E7AB05;
  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 */