/*
 * Шапка сайта — фиксирована сверху
 */
.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: clamp(16px, 1.14vw, 20px);
  font-weight: 500;
  transition: all 1s ease-out;
}

/* Акцентная линия по центру */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, 100% - 40px); 
  height: 1px;
  background-color: #00bcd4;
  box-shadow: 0 1px 10px rgba(0, 188, 212, 0.4);
}
.header a {
  color: #191970;
  font-size: clamp(16px, 1.14vw, 20px);
  font-weight: 600;
}
.header__container {
  display: grid;
  /*grid-template-columns: 1fr auto 1fr;*/
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  min-height: 85px;
  align-items: center;
  padding: 4px 20px;
  box-sizing: border-box;
}
.header__logo {
  height: auto;
  width: 25vw;
  max-width: 250px;
  padding: 0 20px;
  box-sizing: border-box;
}
.header_logo {
  height: auto;
  width: 25vw;
  max-width: 250px;
  padding: 0 20px;
  box-sizing: border-box;
}
.action-header{
  margin-right: 15px;
}
.action-header a{
  margin-right: 15px;
}
@media (max-width: 1024px) {
  .header__container {
    display: flex;
    justify-content: start;
    gap: 0;
  }
  .header__menu {
    width: 0;
  }
  .header__logo {
    padding: 0px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 40vw;
  }
  .header__container {
    display: flex;
    justify-content: space-between; /* Лого слева, бургер справа */
    align-items: center;
    height: 70px;
    padding: 0 25px;
  }
}

@media (max-width: 480px) {
  .header__container {
    display: flex;
    justify-content: space-between; /* Лого слева, бургер справа */
    align-items: center;
    height: 70px;
    padding: 0 25px;
  }

  .header__logo {
    max-width: 60vw;
    height: auto;
  }

  .header__logo svg.logo {
    width: 100%;
    height: auto;
  }

  .menu__icon {
    width: 30px;
    height: 24px;
    cursor: pointer;
  }

  .header__menu {
    display: none; /* Скрываем основное меню */
  }
}

.menu__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid rgb(25, 25, 112);
  overflow: hidden;
}
.menu__video::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(25, 255, 255, 0.2);
}
.menu__icon {
  z-index: 7;
  display: block;
  position: relative;
  width: 30px;
  height: 18px;
  cursor: pointer;
}
.menu__icon::before, .menu__icon::after, .menu__icon span {
  left: 0;
  position: absolute;
  height: 12%;
  width: 100%;
  transition: all 0.3s ease 0s;
  background-color: #191970;
}
.menu__icon::before, .menu__icon::after {
  content: "";
}
.menu__icon::before {
  top: 0;
}
.menu__icon::after {
  bottom: 0;
}
.menu__icon span {
  top: 50%;
  transform: scale(1) translate(0px, -50%);
}
.menu__icon.cross span {
  transform: scale(0) translate(0px, -50%);
}
.menu__icon.cross::before {
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
}
.menu__icon.cross::after {
  top: 50%;
  transform: rotate(45deg) translate(0px, -50%);
}
.menu__body_hidden {
  display: block;
 /* display: none;*/
  position: fixed;
  top: 100px;
  left: -200%;
  width: 100%;
  height: 100%;
 /* background-color: rgba(255, 255, 255, 0.5);*/
  padding: 20px 20px 150px 20px;
  transition: left 0.3s ease 0s;
  overflow: auto;
}
.menu__body_hidden.active {
  left: 0;
}
.menu__body_hidden::-webkit-scrollbar {
  width: 6px;
  /* ширина вертикального ползунка */
  height: 6px;
  /* высота горизонтального ползунка */
}
.menu__body_hidden::-webkit-scrollbar-thumb {
  background-color: white;
  /* цвет ползунка */
  border-radius: 6px;
  /* скругление углов ползунка */
}
.menu__body_hidden::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
  /* цвет фона дорожки */
  border-radius: 6px;
  /* скругление углов дорожки */
}
.menu__body_hidden::-webkit-scrollbar-thumb:hover {
  background-color: #191970;
  /* темный цвет при наведении */
}
.menu .active {
  left: 0;
}
.menu__body_hidden_list {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 20px 0 0 20px;
}
.menu__body_hidden_list > li {
  width: max-content;
  margin: 0px 0px 20px 0px;
}
.menu__body_hidden_list > li:last-child {
  margin-bottom: 0px;
}
.menu__body_none-hidden_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.03vw;
  row-gap: 10px;
  list-style: none;
  align-items: center;
  padding: 0;
  margin-bottom: 0!important;
}
.menu__body_hidden_list_item {
  display: none !important;
}
.menu__body_none-hidden_list_link {
  display: inline-block;
  font-weight: 300;
  text-decoration: none;
}
.menu__body_hidden_list_link {
  display: inline-block;
  font-weight: 300;
  font-size: 24px;
  text-decoration: none;
  line-height: 152%;
  color: #fff;
}
@media (max-width: 1024px) {
  .menu__body_hidden_list {
    padding-top: 0;
  }
  .menu__body_hidden_list_item {
    display: block !important;
  }

  .menu .header__container {
    display: flex;
  }
}
@media (max-width: 480px) {
  .menu__body_hidden {
    top: 80px;
  }
}

@media (max-width: 1024px) {

}
@media (max-width: 768px) {

}
@media (max-width: 480px) {

}

.popup::-webkit-scrollbar {
  width: 0px;
  /* ширина вертикального ползунка */
  height: 0;
  /* высота горизонтального ползунка */
}

/* Стили для "ползунка" */
.popup::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
  /* цвет ползунка */
  border-radius: 0px;
  /* скругление углов ползунка */
}

/* Стили для дорожки ползунка */
.popup::-webkit-scrollbar-track {
  width: 0;
  background-color: rgba(0, 0, 0, 0);
  /* цвет фона дорожки */
  border-radius: 0px;
  /* скругление углов дорожки */
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
  z-index: 8;
}
.popup .confirmation {
  position: absolute;
  margin-top: 20px;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-out;
}
.popup .confirmation__wrapper_button {
  display: flex;
  gap: 20px;
}
.popup .confirmation.active {
  opacity: 1;
  visibility: visible;
}
.popup .password_entry {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-out;
}
.popup .password_entry.active {
  opacity: 1;
  visibility: visible;
}
.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}
.popup__content {
  background: linear-gradient(to bottom right, #a2e5ed, #27678a);
  color: #000;
  max-width: 800px;
  padding: 30px;
  position: relative;
  transition: all 0.8s ease 0s;
  opacity: 0;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
  overflow: hidden;
}
.popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
}
.popup__title {
  font-size: 40px;
  margin: 0px 0px 1em 0px;
}

.popup__text {
  height: 100%;
  width: 100%;
}
.popup__form-box {
  width: 380px;
  height: 480px;
  position: relative;
  margin: 6% auto;
  padding: 5px;
}
.popup__button-box {
  width: 260px;
  margin: 35px auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0.209);
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.231372549);
  border-radius: 30px;
}
.popup__toggle-btn_1, .popup__toggle-btn_2 {
  padding: 10px 30px;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
  position: relative;
  color: #fff;
  font-weight: 400;
  transition: 0.3s ease;
}
.popup__toggle-btn_1.active, .popup__toggle-btn_2.active {
  color: #191970;
}
.popup__toggle-btn_1:hover, .popup__toggle-btn_2:hover {
  transform: scale(1.1);
}
.popup__input-group {
  top: 150px;
  position: absolute;
  width: 280px;
  transition: 0.5s ease;
}
.popup__input-field {
  width: 100%;
  padding: 10px 0;
  margin: 5px 0;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #ffffff;
  outline: none;
  background: transparent;
}
.popup__submit-btn {
  width: 85%;
  padding: 10px 30px;
  cursor: pointer;
  display: block;
  margin: auto;
  margin-top: 20px;
  color: black;
  background: white;
  border: 0;
  outline: none;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.popup__submit-btn:hover {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
.popup__submit-btn[disabled] {
  opacity: 0.3;
}
.popup__submit-btn[disabled]:hover {
  opacity: 0.3;
  background: white;
  color: black;
  border: 2px solid transparent;
}
.popup__check-box {
  margin: 30px 10px 30px 0;
}
.popup span:not(.confirmation__number) {
  color: #777;
  font-size: 12px;
  bottom: 68px;
  position: absolute;
  color: white;
}
.popup input::placeholder {
  color: white;
}
.popup__sex {
  display: flex;
  color: #fff;
}
.popup__sex div:first-child {
  margin-left: 0;
}
.popup__sex div {
  margin: 5px;
}
@media (max-width: 480px) {
  .popup__content {
    padding: 0;
  }
  /*.popup__form-box {
    width: 320px;
  }*/
  .popup__input-group {
    width: 210px;
  }
}

#login {
  left: 50px;
}

#register {
  left: 100vw;
}

#btn {
  top: 0;
  left: 0;
  position: absolute;
  width: 110px;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  transition: 0.5s;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__content {
  transform: perspective(600px) translate(0px, 0px) rotateX(0deg);
  opacity: 1;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  border-radius: 50%;
  padding: 10px 40px;
  font-weight: 300;
  line-height: 156%;
  background-color: #fff;
}
.button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.3s;
  opacity: 0.5;
  background-color: blue;
}
.button--fw {
  width: 100%;
}
.button--border {
  transition: all 0.3s;
  background-color: transparent;
  border: 1px solid #000;
  color: blue;
}
.button--border::before {
  opacity: 0;
}
.button span {
  position: relative;
}
@media (any-hover: hover) {
  .button:hover {
    color: white;
    border: 1px solid transparent;
  }
  .button:hover::before {
    opacity: 1;
  }
}

.footer {
  background-color: rgba(255, 255, 255, 0.75); /* белый с прозрачностью */
  border-top: 3px solid rgba(0, 0, 0, 0.05);   /* мягкий верхний бордер */
  backdrop-filter: blur(6px);                 /* лёгкое размытие фона */
 /* margin-top:20px;*/
}
.footer__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
  min-height: 10vw;
}
.footer__column {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #191970;
  z-index: 10;
}
.footer__logo {
  height: auto;
  width: 22vw;
  padding: 0 20px;
  box-sizing: border-box;
  justify-self: center;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.footer__copy {
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.footer__menu:not(:last-child) {
  margin-bottom: toRem(40);
}

.menu-footer__title {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.menu-footer__title::marker, .menu-footer__title::-webkit-details-marker {
  display: none;
}
.menu-footer__title:not(:last-child) {
  margin-bottom: toRem(15);
}
.menu-footer__list {
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-inline-start: 0px;
  row-gap: toRem(3);
  column-gap: 42px;
}
.menu-footer__link {
  font-weight: 600;
  font-size: 14px;
  line-height: 156%;
  display: inline-block;
}

.subscribe {
  display: grid;
  justify-items: end;
}
.subscribe__content_item {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.subscribe__content_item_location {
  display: flex;
  align-items: flex-start;
}
.subscribe__content_item_location svg {
  height: 25px;
  width: 25px;
  min-width: 25px;
  margin-right: 10px;
}
.subscribe__content_item_phone {
  display: flex;
  align-items: center;
}
.subscribe__content_item_phone a {
  font-size: 16px;
  text-decoration: none;
  color: rgb(25, 25, 112);
}
.subscribe__content_item_phone svg {
  height: 25px;
  width: 25px;
  margin-right: 10px;
}
.subscribe__content_item_social {
  display: flex;
}
.subscribe__content_item_social svg {
  height: 30px;
  width: auto;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .footer__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .footer__column {
    justify-content: start;
  }
  .footer__column:nth-child(2) {
    position: absolute;
  }
  .footer__logo {
    padding: 0;
    border: none;
  }
  .menu-footer__title::marker, .menu-footer__title::-webkit-details-marker {
    display: block;
  }
}
@media (max-width: 480px) {
  .footer__body {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .footer__column:nth-child(2) {
    right: 20px;
  }
  .footer__logo {
    width: 120px;
  }
}

* {
  box-sizing: border-box;
  margin: 0px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 152%;
}

html,
body {
  height: 100%;
}

/* Стили для ползунка */
body::-webkit-scrollbar {
  width: 6px;
  /* ширина вертикального ползунка */
  height: 0;
  /* высота горизонтального ползунка */
}

/* Стили для "ползунка" */
body::-webkit-scrollbar-thumb {
  background-color: #191970;
  /* цвет ползунка */
  border-radius: 10px;
  /* скругление углов ползунка */
}

/* Стили для дорожки ползунка */
body::-webkit-scrollbar-track {
  width: 6px;
  background-color: rgba(0, 0, 0, 0);
  /* цвет фона дорожки */
  border-radius: 10px;
  /* скругление углов дорожки */
}

/* Стили для ползунка при наведении */
body::-webkit-scrollbar-thumb:hover {
  background-color: #191970;
  /* темный цвет при наведении */
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.height-content{
  height: 100vh;
}
.cost-navigation {
  min-height: 100vh; /* вместо height */
  width: 100%;
  background-size: cover;
  background-position: 60% 60%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
 /* flex-direction: row; */
 /* flex-direction: column;*/
  align-items: flex-start;
  gap: 30px;
}

.cost-navigation__wrapper {
  display: flex;
  flex-direction: column;
  width: max-content;
  height: 95%;
  padding: 20px;
  border-radius: 10px;
  overflow: auto;
  overflow-x: hidden;

}
.cost-navigation__wrapper.wide {
  flex-grow: 1; /* вот это делает блок "растягиваемым" */
  width: auto;
}

@media (max-width: 768px) {
  .cost-navigation__wrapper {
    /*width: calc(100% - 20px);*/
    width: 100% !important;
    padding: 10px 0;
  }
}
.cost-navigation__wrapper::-webkit-scrollbar {
  width: 6px;
  /* ширина вертикального ползунка */
  height: 6px;
  /* высота горизонтального ползунка */
}
.cost-navigation__wrapper::-webkit-scrollbar-thumb {
  background-color: white;
  /* цвет ползунка */
  border-radius: 10px;
  /* скругление углов ползунка */
}
.cost-navigation__wrapper::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
  /* цвет фона дорожки */
  border-radius: 10px;
  /* скругление углов дорожки */
}
.cost-navigation__wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #191970;
  /* темный цвет при наведении */
}
.cost-navigation__item.title {
  display: block;
  padding: 0;
  margin-bottom: 20px;
  color: #191970;
  font-size: clamp(16px, 1.14vw, 20px);
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0);
}
.cost-navigation__item {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 10px;
  /*width: max-content;*/
  border-radius: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  text-decoration: none;
  color: #191970;
  transition: all 0.5s ease-out;
}
@media (max-width: 768px) {
  .cost-navigation__item {
    width: auto;
  }
}
.cost-navigation__item.title:hover {
  background-color: rgba(255, 255, 255, 0);
}
.cost-navigation__item:hover {
  transition: 1s;
  background-color: rgba(255, 255, 255, 0.8);
}
.cost-navigation__item {
  padding-left: 14px;        /* всегда с отступом слева */
  border-left: 4px solid transparent; /* резервируем под border */
  transition: all 0.3s ease;
  font-weight: 500;
}


.lock_body {
  overflow: hidden;
}

.underline-hover {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #191970;
}

.underline-hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  /*background-color: #191970;*/
  background-color: #8e24aa;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.underline-hover:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.underline-hover.active_page::after {
  transform: scaleX(1);
  transform-origin: left;
}

._anim-show {
  transform: translate(0px, 120%);
  opacity: 0;
  transition: all 0.9s ease 0s;
}

._anim-show._active,
._active._anim-show {
  opacity: 1;
  transform: translate(0px, 0px);
}

.about {
  padding: 25px 50px;
  background-color: rgba(255, 255, 255, 0.6);
  color: #191970;
  border-radius: 5px;
  margin-bottom: 5px;
}
.about p {
  line-height: 200%;
}
.about__main_text {
  overflow: hidden;
}
.about__header {
  font-weight: 600;
  overflow: hidden;
  transform: translate(0px, 120%);
  opacity: 0;
  transition: all 1.5s ease-out;
}
.about__header._active {
  transform: translate(0px, 0px);
  opacity: 1;
}
.about__photo {
  display: flex;
  align-items: start;
  overflow: hidden;
  margin-top: 0!important;
}
.about__photo img {
  height: 100%;
  width: auto;
  margin-top: 10px;
}
.about__photo_text {
  list-style: none;
  padding-left: 20px;
  overflow: hidden;
}

.services {
  padding: 40px 20px;
}
.services__title {
  margin-bottom: 20px;
  color: #191970;
  font-size: 22px;
  font-weight: 600;
}
.services__navigation {
  display: flex;
  justify-content: space-between;
}
.services__navigation p {
  font-size: 18px;
}
.services__all-items-wrapper {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.services__all-items-wrapper.active {
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: all 1.5s ease-out;
}
.services__all-items {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(89, 174, 193, 0.5);
  color: #191970;
  cursor: pointer;
}
.services__all-items span {
  width: 90%;
}
.services__all-items svg {
  position: absolute;
  right: 0;
  width: 10%;
  margin-left: 20px;
  fill: #191970;
  transform: rotate(-180deg);
  transition: all 0.5s ease-out;
}
.services__all-items.active svg {
  transform: rotate(0);
}
.services__item {
  display: flex;
  justify-content: space-between;
  /*border-bottom: 1px solid #191970;*/
  padding: 10px 20px 0 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  text-decoration: none;
  color: #191970;
  transition: all 0.5s ease-out;
}
.services__item p:nth-child(1) {
  width: 70%;
}
.services__item p:nth-child(2) {
  width: 30%;
  text-align: end;
}

/*Маска номера в форме авторизации*/
.mask-animate {
  transition: all 0.3s ease;
  color: #888; /* серый только для маски */
}
/*Маска пароля в форме авторизации*/
.sms-code-input {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.sms-digit {
  width: 40px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.2s;
}
.sms-digit:focus {
  border-color: #007bff;
  outline: none;
}

/*
 * Основные переменные и глобальные значения
 */
:root {
    --header-height: 100px; /* Используется для адаптивного отступа под фиксированную шапку */
}


/*
 * Отступ для контента под фиксированной шапкой
 */
body::before {
    content: "";
    display: block;
    height: var(--header-height);
}

/*
 * Основной контент страницы
 */
main {
    position: relative;
    z-index: 2;
    padding: 5px;
}

/*
 * Видео фон — глобально под всем сайтом
 */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
 * Иконка бургер-меню (отображается только на мобильных)
 */
.menu__icon {
    display: none;
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
}
.menu__icon span,
.menu__icon span::before,
.menu__icon span::after {
    content: "";
    display: block;
    background: #000;
    height: 3px;
    border-radius: 2px;
    position: absolute;
    width: 100%;
    transition: all 0.3s ease;
}
.menu__icon span {
    top: 50%;
    transform: translateY(-50%);
}
.menu__icon span::before {
    top: -8px;
}
.menu__icon span::after {
    top: 8px;
}

/*
 * Мобильное меню, скрыто по умолчанию, появляется при активации класса
 */
/*.menu__body_hidden {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}*/
.menu__body_hidden.active {
    display: block;
}

.menu__body_hidden_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu__body_hidden_list li {
    margin-bottom: 15px;
}
.menu__body_hidden_list a {
    color: #191970;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}
/* Скрываем весь контент, кроме меню и видео, когда открыт бургер */
body.lock_body .wrapper > .container-fluid > main,
body.lock_body .wrapper > .container-fluid > footer {
    display: none !important;
}

/* Подсветка затемнения */
.menu-overlay.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: rgba(255,255,255,0.85);*/
    z-index: 98;
}

/*
 * Блок-информер для страницы "Послуги"
 * Задача: выделить важное сообщение без изображений
 * Эффект: плавный, живой, в стиле современной медицины
 */
.services-banner {
    position: relative;
    border-left: 5px solid #00bcd4; /* акцент цвет */
    padding: 15px;
    margin: 10px auto;
    text-align: center;
    max-width: 1400px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.services-banner h2 {
    font-size: 28px;
    font-weight: 700;
    color: #003f59;
    margin-bottom: 10px;
}
.services-banner h3 {
    font-size: 22px;
    font-weight: 600;
    color: #003f59;
    margin-bottom: 5px;
}
.services-banner p {
    color: #191970;
}
@media (max-width: 768px) {
    .services-banner {
        border-left: 0;
        padding: 5px;
        margin: 2px auto;

    }
    .services-banner h2 {
        font-size: 20px;
        font-weight: 600;
    }
    .services-banner h3 {
        font-size: 18px;
        font-weight:500;
    }
    .about {
        padding:10px;
    }
}

/*
 * Страница "Контакти"
 */
.contacts__photo {
    /* background-image: url("../images/smile.jpg");*/
    width: auto;
    height: 28vw;
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 100%);
    margin-top: -190px;  /* поднимет блок выше */
}
.contacts__photo:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 28vw;
    background-color: rgba(26, 175, 216, 0.3);
    pointer-events: none;
}
.contacts__menu-container {
    position: relative;
    /* bottom: 100px;*/
    display: flex;
    justify-content: space-around;
}
.contacts__menu {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 4px 6px 2px rgba(0, 0, 0, 0.2);
    width: 70vw;
   /* min-height: 400px;*/
    padding: 40px;
    color: #191970;
    font-weight: 600;
}
.contacts__menu_1, .contacts__menu_2 {
    width: 50%;
    margin-right: 2%;
}
.contacts__header {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #191970;
}
.contacts__contacts {
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}
.contacts__contacts-item {
    display: flex;
    margin-bottom: 20px;
}
.contacts__contacts-item_about_header {
    font-size: 18px;
    font-weight: 600;
}
.contacts__contacts-item_about_main {
    display: flex;
   /* flex-direction: column;*/
    font-size: 16px;
}
.contacts__contacts-item_about_main a {
    text-decoration: none;
    color: rgb(25, 25, 112);
}
.contacts__social svg {
    height: 30px;
}
.contacts__svg {
    height: 30px;
    width: 30px;
    margin-right: 20px;
}
.contacts__social_header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contacts__menu_map_header {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.contacts__menu_map_item {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
}
.contacts__menu_map_item img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .contacts__photo {
        height: 40vw;
    }
    .contacts__photo:after {
        height: 40vw;
    }
}
@media (max-width: 768px) {
    .contacts__menu {
        flex-direction: column;
        width: 100% !important;
        padding: 10px 10px; /* уменьшить паддинги */
        margin: 0 auto;
    }
    .contacts__menu_1,
    .contacts__menu_2 {
        width: 100%;
        margin-right: 0;
    }
    .contacts__menu_map_item {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .contacts__photo {
        height: 60vw;
    }
    .contacts__photo:after {
        height: 60vw;
    }
    .contacts__menu {
        width: 80vw;
        padding: 10px;
    }
}

.contacts__menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contacts__menu-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contacts__menu-col {
    flex: 1 1 300px;
    min-width: 250px;
}

.contacts__contacts-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contacts__contacts-item_image {
    margin-right: 10px;
}

.contacts__contacts-item_about_main a {
    display: block;
    margin-top: 2px;
    color: #191970;
    font-weight: 600;
    text-decoration: none;
}

.contacts__social-links a {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    color: #191970;
    font-weight: 600;
    text-decoration: none;
}

.contacts__social-links svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.contacts__images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contacts__images-row a {
    flex: 1 1 calc(50% - 10px);
}

.contacts__images-row a img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.phones-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.phones-inline a {
    white-space: nowrap;
    color: #191970;
    font-weight: bold;
}
.contacts__svg {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    vertical-align: middle;
}

.pt-2 {
    padding-top: 0 !important;
}


._menu__body_none-hidden_list_item_1 a:hover {
  color: #8e24aa;
  color: #26a69a;
  color: #ff7043;
  text-decoration: underline;
  transition: all 0.3s ease;
}
._cost-navigation__item.active {
  background-color: #ff7043;
  color: white;
}

/*
 * Общие стили для главной страницы
 * Стиль блока заголовка страницы (info-row) и контентных секций (custom-block-container)
 */

.custom-info-row {
  /*background: linear-gradient(to right, rgba(230, 247, 255, 0.6), rgba(255, 255, 255, 0.3)) !important;*/
  border-left: 5px solid #00bcd4; /* акцентная полоса слева */
  padding: 10px;
  margin-top: 2px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(3px);
}

.custom-info-row h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  margin: 0;
  color: #003f59;
  text-align: center;
}
/* Градиент на весь заголовок */
.gradient-heading {
  background: linear-gradient(90deg, #26a69a, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

/* Эмодзи отдельно стилизуется */
.emoji-accent {
  color: #ff7043;
  font-size: 32px;
 /* font-weight: bold;*/
  margin-left: 6px;
  -webkit-text-fill-color: initial; /* отменяем прозрачный текст */
  background: none; /* убираем градиент на смайле */
}



/*
 * Контейнер каждого смыслового блока (услуга, онлайн-запись и т.д.)
 * Картинка на всю ширину, текст внутри .content-inner
 */

.custom-block-container {
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  color: #003f59;
 /* background-color: rgba(255, 255, 255, 0.2) !important;*/
  overflow: hidden; /* чтобы не выступала картинка */
}

/* Картинка занимает всю ширину блока */
.custom-block-container img.block-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0 5px; /* если нужно чуть отступов от краёв */
}


/* Контейнер для текста внутри custom-блока */
.content-inner {
  padding: 5px 20px;
}

/* Заголовки внутри .content-inner */
.content-inner h2 {
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  text-align: center;
  margin-bottom: 5px;
  color: #191970;
}

/* Текст внутри .content-inner */
.content-inner p,
.custom-block-container p,
.custom-block-container li {
  line-height: 1.7;
  font-size: 16px;
  color: #191970;
  margin-bottom: 10px;
}

/* Заголовки h3, h4 в блоках */
.custom-block-container h3 {
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 26px);
  text-align: center;
  margin-bottom: 12px;
  color: #191970;

}

.custom-block-container h4 {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 22px);
  text-align: center;
  margin-bottom: 10px;
}

/*
 * Адаптив: стили для мобильных устройств
 */
@media (max-width: 768px) {
  .custom-info-row {
    padding: 6px 8px;
    margin-top: 6px;
    margin-bottom: 12px;
    border-left-width: 3px;
  }

  .custom-info-row h2 {
    font-size: 18px;
    line-height: 1.2;
  }

  .custom-block-container {
    padding: 0;
  }

  .content-inner {
    padding: 12px 14px;
  }

  .content-inner h2,
  .custom-block-container h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .custom-block-container p,
  .custom-block-container li,
  .content-inner p {
    font-size: 14px;
    line-height: 1.5;
  }

  .custom-block-container img.block-image {
    max-height: 240px;
  }
}

/*Страница Прайсов*/
.specialization-tile {
  background-color: #eaf6ff;
  border: 1px solid #cfe5f5;
  border-radius: 10px;
  padding: 20px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  color: #003f59;
}

.specialization-tile:hover {
  background-color: #339eff;
  color: #fff;
}


.category-box {
  color: #003f59;
  background-color: rgba(255, 255, 255, 0.45); /* полупрозрачный белый */
  border: 1px solid rgba(214, 228, 240, 0.6); /* полупрозрачная граница */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.08);
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  backdrop-filter: blur(6px); /* мягкое размытие фона */
  -webkit-backdrop-filter: blur(6px); /* для Safari */
  transition: box-shadow 0.3s, background-color 0.3s;
}
.specialization-tile.active-specialization {
  background-color: #007bff;
  color: #fff;
  border-color: #0056b3;
}
div.container li.list-group-item{
  background-color: rgba(255, 255, 255, 0.75);
  color: #003f59;
}

/*Контакти*/
.contacts-section {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 30px;

}

.contacts-section .row {
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.contacts-section h5 {
  font-weight: 700;
  color: #0d1b54;
  margin-bottom: 15px;
}

.contacts-section .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.contacts-section .contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contacts-section .contact-info {
  font-weight: 500;
  color: #0d1b54;
}

.contacts-section .contact-info a {
  color: #0d47a1;
  font-weight: 600;
  text-decoration: none;
}

.contacts-section .contact-info a:hover {
  text-decoration: underline;
}

.contacts-section .social-links a {
  margin-right: 15px;
  color: #0d47a1;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contacts-section .social-links a:hover {
  text-decoration: underline;
}

.contacts-section iframe {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 30px;
  width: 100%;
  height: 400px;
  border: none;
}
.contact-info a {
  text-decoration: none;
  color: #191970;
  font-weight: 500;
}

.phone-separator {
  color: #aaa;
}
.contact-header-info {
  padding-bottom: 20px;
  border-bottom: 2px solid #00bcd4; /* или другой фирменный цвет */
}
/* ===== Іконки перед телефонами (без <i>, щоб TinyMCE не різав) ===== */
.contacts-telefoni .contact-info a {
  position: relative;
  padding-left: 20px;
  display: inline-block;
}
.contacts-telefoni .contact-info a:first-of-type::before { /* «Viber» замінюємо на chat-dots */
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 16px; height: 16px; transform: translateY(-50%);
  background: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/chat-dots.svg") no-repeat center/contain;
}
.contacts-telefoni .contact-info a:last-of-type::before { /* Telegram */
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 16px; height: 16px; transform: translateY(-50%);
  background: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/telegram.svg") no-repeat center/contain;
}
/* Телефоны — в одну строку на любых экранах */
.contacts-telefoni .contact-info{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:nowrap;     /* не переносить */
  gap:.5rem;            /* зазор между элементами */
  white-space:nowrap;   /* страховка от переноса текста */
}

/* якоря как инлайн-флекс — чтобы псевдо-иконки выравнивались по центру */
.contacts-telefoni .contact-info a{
  display:inline-flex;
  align-items:center;
  padding-left:20px;    /* место под иконку ::before (как уже делали) */
  margin:0;
}

/* палочку показываем */
.contacts-telefoni .phone-separator{
  display:inline-block;
  margin:0 .25rem;
}
/* ===== Іконки соцмереж ===== */
.contacts-socmerezhi .social-links a {
  position: relative;
  padding-left: 20px;
  margin-right: 14px;
}
.contacts-socmerezhi .social-links a:nth-of-type(1)::before { /* Facebook */
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 16px; height: 16px; transform: translateY(-50%);
  background: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/facebook.svg") no-repeat center/contain;
}
.contacts-socmerezhi .social-links a:nth-of-type(2)::before { /* Instagram */
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 16px; height: 16px; transform: translateY(-50%);
  background: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/instagram.svg") no-repeat center/contain;
}
.contacts-socmerezhi .social-links a:nth-of-type(3)::before { /* TikTok */
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 16px; height: 16px; transform: translateY(-50%);
  background: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/tiktok.svg") no-repeat center/contain;
}

/* ===== Мобілка: стислі відступи, зручне читання ===== */
@media (max-width: 576px) {
  .contacts-trymaemo h5,
  .contacts-telefoni h5,
  .contacts-socmerezhi h5 {
    font-size: 1.06rem;
    margin-bottom:5px;
  }
  .contacts-telefoni,.contacts-socmerezhi{
    margin-top: 5px;
  }
  .contacts-telefoni .contact-info a {
    display: block;
    margin-bottom: 5px;

  }
  .contacts-telefoni .phone-separator { display: none; } /* паличку ховаємо на мобілці */

  .contacts-socmerezhi .social-links a { margin-right: 10px; }
}
