@charset "UTF-8";
.--animation-link {
  position: relative;
}
body {
    background-color: #F2EEE5 !important;
}
.--animation-link a {
  display: block;
  position: relative;
  color: #333333;
  transition: all 0.3s ease 0s;
}
.--animation-link a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s ease 0s;
  bottom: -3px;
  right: 0;
  width: 0%;
  height: 2px;
  background: #333333;
}
.--animation-link a:hover {
  color: #186270;
}
.--animation-link a:hover::before {
  width: 100%;
  left: 0;
  background: #186270;
}

.--btn {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 500;
  color: #fff;
  background: #2D5454;
  padding: 10px 40px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.--btn:hover {
  background: #186270;
  color: #fff;
}

.header-menu {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex: 1 1 auto;
}
@media (max-width: 1200px) {
  .header-menu {
    position: fixed;
    top: 0;
    left: -200%;
    width: 320px;
    height: 100%;
    background-color: #1c3636;
    padding: 60px 15px 20px 75px;
    transition: all 0.3s ease 0s;
    overflow: auto;
    flex-direction: column;
    z-index: 50;
    display: block;
  }
  .header-menu.burger-active {
    left: 0;
  }
}
@media (max-width: 400px) {
  .header-menu {
    width: 100%;
  }
}
.header-menu li {
  position: relative;
}
.header-menu li:hover .span-active {
  transform: translate(0%, -50%);
  border-bottom: 8px solid #fff;
}
.header-menu li:hover .sub-menu {
  height: auto;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  padding: 20px;
  margin: 0px 0px 0px 50px;
  box-shadow: 0 20px 15px -15px #186270;
  height: auto;
  width: auto;
}
@media (max-width: 1200px) {
  .header-menu li:hover .sub-menu {
    padding: 15px 0 0 10px;
    box-shadow: none;
    margin: 0;
    right: -130px;
  }
  .header-menu li:hover .sub-menu li {
    display: block;
  }
}
@media (max-width: 350px) {
  .header-menu li:hover .sub-menu {
    padding: 35px 0 0 35px;
  }
}
.header-menu .span-active {
  width: 0;
  height: 0;
  border-bottom: 8px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  display: block;
  transform: translate(0%, -50%) rotate(180deg);
  top: 45%;
  position: absolute;
  transition: all 0.3s ease 0s;
  right: -14px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .header-menu .span-active {
    top: 12px;
    right: 90px;
    border-bottom: 8px solid #fff;
  }
}
.header-menu .sub-menu {
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 0;
  height: 0;
  transform: translate(-50%);
  top: 176px;
  transition: all 0.3s ease 0s;
  background: rgb(42, 110, 110);
  border-radius: 0 0 10px 10px;
  justify-content: center;
  cursor: default;
}
.header-menu .sub-menu::after {
  content: "";
  width: 130px;
  height: 35px;
  position: absolute;
  top: -20px;
  left: -70px;
  transform: translate(50%);
}
@media (max-width: 1200px) {
  .header-menu .sub-menu {
    position: relative;
    background: none;
    left: auto;
    right: auto;
    top: auto;
    -moz-text-align-last: left;
         text-align-last: left;
    justify-content: flex-start;
    display: block;
  }
}
.header-menu .sub-menu li {
  line-height: 1.2;
  position: relative;
  margin: 0px 0px 10px 0px;
}
@media (max-width: 1200px) {
  .header-menu .sub-menu li::after {
    content: "";
    position: absolute;
    background: #fff;
    top: 11px;
    width: 10px;
    height: 2px;
    left: -15px;
  }
}
@media (max-width: 1200px) and (max-width: 350px) {
  .header-menu .sub-menu li::after {
    width: 7px;
  }
}
.header-menu .sub-menu li a {
  font-size: 17px;
  text-transform: capitalize;
  display: inline-block;
}
@media (max-width: 1200px) {
  .header-menu .sub-menu li a {
    font-size: 15px;
  }
}
@media (max-width: 350px) {
  .header-menu .sub-menu li a {
    font-size: 14px;
  }
}

.header-burger {
  display: none;
}
@media (max-width: 1200px) {
  .header-burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 51;
  }
  .header-burger::before, .header-burger::after {
    content: "";
    background-color: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .header-burger::before {
    top: 0;
  }
  .header-burger::after {
    bottom: 0;
  }
  .header-burger span {
    position: absolute;
    background-color: #fff;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    transition: all 0.3s ease 0s;
  }
  .header-burger.burger-active::before {
    transform: rotate(45deg);
    top: 9px;
  }
}
@media (max-width: 1200px) and (max-width: 400px) {
  .header-burger.burger-active::before {
    top: -200px;
  }
}
@media (max-width: 1200px) {
  .header-burger.burger-active::after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
}
@media (max-width: 1200px) and (max-width: 400px) {
  .header-burger.burger-active::after {
    top: -200px;
    bottom: auto;
  }
}
@media (max-width: 1200px) {
  .header-burger.burger-active span {
    transform: scale(0);
  }
}

.offcanvas-menu-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 7;
  height: 100%;
  width: 100%;
  visibility: hidden;
}

.offcanvas-menu-overlay.active {
  display: block;
  visibility: visible;
}

.--title {
  font-size: 35px;
  line-height: 1.2;
  text-align: center;
  font-weight: 400;
  color: #27293C;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.--title::first-letter {
  border-bottom: 3px solid #444444;
}
@media (max-width: 450px) {
  .--title {
    font-size: 30px;
  }
}

.--wp-style-text h2 {
  font-size: 24px;
  color: #27293C;
  line-height: 28px;
  font-weight: 400;
  margin: 30px 0px 25px 0px;
}
.--wp-style-text h3 {
  font-size: 20px;
  line-height: 25px;
  margin: 25px 0 20px;
  font-weight: 400;
}
.--wp-style-text h4 {
  margin: 20px 0 15px;
}
.--wp-style-text p, .--wp-style-text li, .--wp-style-text div {
  font-size: 17px;
  line-height: 20px;
  color: #27293C;
  margin: 0 0 5px;
  letter-spacing: 1px;
}
.--wp-style-text p, .--wp-style-text div {
  margin: 10px 0px 6px 0px;
}
.--wp-style-text ul, .--wp-style-text li {
  list-style: inside;
  list-style-type: "- ";
}
.--wp-style-text a {
  color: #888;
  transition: all 0.3s ease 0s;
}
.--wp-style-text a:hover {
  color: #27293C;
}
.--wp-style-text img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 450px;
  height: auto;
  width: auto;
}

.--margin-block {
  margin: 120px 0 0 0;
}
@media (max-width: 600px) {
  .--margin-block {
    margin: 75px 0px 0px 0px;
  }
}

.--padding-block {
  padding: 100px 0;
  background: #F2EEE5;
}
@media (max-width: 600px) {
  .--padding-block {
    padding: 70px 0;
  }
}

.--color-block {
  background: linear-gradient(30deg, #F2EEE5 0%, rgba(67, 148, 164, 0.3294117647) 90%);
  padding: 100px 0;
  position: relative;
}
.--color-block::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 30px;
  background: url("../img/video-block/01.svg") no-repeat;
  background-size: contain;
  background-position: right;
  max-width: 350px;
  width: 100%;
  height: 100%;
  max-height: 350px;
}
@media (max-width: 400px) {
  .--color-block::after {
    display: none;
  }
}
.--color-block::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 250px;
  background: url("../img/video-block/02.svg") no-repeat;
  background-size: contain;
  max-width: 350px;
  width: 100%;
  height: 100%;
  max-height: 350px;
}
@media (max-width: 800px) {
  .--color-block::before {
    display: none;
  }
}

.kama_breadcrumbs {
  margin: 10px auto;
  font-size: 12px;
  position: relative;
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  gap: 3px;
  z-index: 5;
  color: #dfdfdf;
  flex-wrap: wrap;
}
@media (max-width: 630px) {
  .kama_breadcrumbs {
    gap: 8px;
  }
}
@media (max-width: 400px) {
  .kama_breadcrumbs {
    font-size: 15px;
  }
}
.kama_breadcrumbs a {
  color: #dfdfdf;
  transition: all 0.3s ease 0s;
}
.kama_breadcrumbs a:hover {
  color: #FBFBFB;
}
.kama_breadcrumbs .kb_title {
  color: #FBFBFB;
}
.kama_breadcrumbs .kb_sep {
  color: #FBFBFB;
}

.--text {
  font-size: 13px;
  letter-spacing: 1px;
  color: #777777;
  line-height: 1.2;
}

.left-line,
blockquote {
  background: rgba(136, 136, 136, 0.0745098039);
  border-left: 4px solid #27293C;
  padding: 15px;
  border-radius: 0 5px 5px 0;
}

.--back-btn {
  display: inline-block;
  position: relative;
}
.--back-btn:hover a {
  background: #3b6161;
  color: #fff;
}
.--back-btn:hover::after {
  background: #fff;
}
.--back-btn:hover span {
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
.--back-btn::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background: #186270;
  left: 40px;
  top: 0;
}
.--back-btn a {
  font-size: 14px;
  display: inline-block;
  line-height: 22px;
  color: #333333;
  padding: 10px 20px;
  transition: all 0.3s ease 0s;
  border: 1px solid #186270;
}
.--back-btn span {
  border: solid #186270;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin: 0 25px 0 0;
  transform: rotate(135deg);
}

.header-top {
  padding: 10px 0;
}
@media (max-width: 600px) {
  .header-top {
    padding: 20px 0;
  }
}
.header-top__row {
  align-items: center;
}
@media (max-width: 600px) {
  .header-top__row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.header-top__logo img {
  width: 150px;
}
.header-top__location, .header-top__phone {
  max-width: 20px;
  align-items: center;
}
.header-top__location a, .header-top__phone a {
  color: #333333;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 19px;
  line-height: 1.2;
  transition: all 0.3s ease 0s;
}
.header-top__location a:hover, .header-top__phone a:hover {
  color: #186270;
}
.header-top__location img, .header-top__phone img {
  width: 25px;
}
@media (max-width: 900px) {
  .header-top__location span, .header-top__phone span {
    display: none;
  }
  .header-top__location img, .header-top__phone img {
    width: 40px;
  }
}
@media (max-width: 600px) {
  .header-top__location, .header-top__phone {
    order: 2;
  }
}
.header-top__right, .header-top__left {
  align-items: center;
  position: relative;
  gap: 50px;
}
.header-top__right::after, .header-top__left::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  right: 50%;
  transform: translate(20px);
  width: 2px;
  height: 53px;
  background: rgba(196, 196, 196, 0.32);
}
@media (max-width: 900px) {
  .header-top__right::after, .header-top__left::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .header-top__right, .header-top__left {
    flex: 0 1 100%;
    gap: 30px;
  }
}
.header-top__left::after {
  top: 12px;
  transform: translate(-40px);
  height: 70px;
}
@media (max-width: 600px) {
  .header-top__left::after {
    display: block;
    width: 100%;
    height: 2px;
    top: 110%;
    left: 0;
    right: 0;
    transform: translate(0);
  }
}

.header-middle {
  background: #2D5454;
  padding: 20px 0;
  position: relative;
  z-index: 51;
}
@media (max-width: 1200px) {
  .header-middle {
    padding: 10px 0;
  }
  .header-middle .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header-middle__logo {
  display: none;
}
@media (max-width: 1200px) {
  .header-middle__logo {
    display: block;
  }
  .header-middle__logo img {
    width: 85px;
  }
}

.header-menu__list {
  gap: 30px;
}
@media (max-width: 1200px) {
  .header-menu__list {
    gap: 22px;
  }
  .header-menu__list li {
    flex: 0 1 100%;
  }
  .header-menu__list .header-middle__logo {
    margin: 0px 0px 40px 0px;
  }
}
.header-menu__list a {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  display: inline-block;
}
.header-menu__list a:hover {
  color: #fff;
}
.header-menu__list a:hover::before {
  background: #fff;
}
@media (max-width: 1200px) {
  .header-menu .header-middle__logo {
    margin: 0px 0px 40px 0px;
  }
  .header-menu .header-middle__logo img {
    width: 150px;
  }
}

.header-scrolled {
  position: fixed;
  top: 0;
  z-index: 45;
  left: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  .header-scrolled .header-burger.burger-active::before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header-scrolled .header-burger.burger-active::after {
    transform: rotate(-45deg);
    bottom: 9px;
    top: auto;
  }
}
.header-scrolled .sub-menu {
  top: 61px;
}
@media (max-width: 1200px) {
  .header-scrolled .sub-menu {
    top: auto;
  }
}

.main-screen {
  position: relative;
}
.main-screen .swiper-wrapper {
  height: 500px;
  background: #186270;
}
.main-screen .container {
  position: relative;
}
.main-screen__text {
  position: absolute;
  z-index: 3;
  height: 100%;
  width: 100%;
  color: #fff;
  left: 0;
  top: 100px;
  padding: 0 30px;
  text-align: center;
}
.main-screen__title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 400;
}
@media (max-width: 500px) {
  .main-screen__title {
    font-size: 30px;
    line-height: 40px;
  }
}
.main-screen__subtitle {
  font-size: 25px;
  line-height: 30px;
  color: #dbdbdb;
  margin: 30px 0px 0px 0px;
}
@media (max-width: 500px) {
  .main-screen__subtitle {
    font-size: 15px;
    line-height: 20px;
    margin: 25px 0px 0px 0px;
  }
}
.main-screen__image {
  position: relative;
  height: 450px;
}
.main-screen__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.main-screen__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4549019608);
}
.main-screen__bottom-image {
  position: absolute;
  bottom: 20px;
  z-index: 2;
  left: 50%;
  transform: translate(-50%);
  max-width: 200px;
}
.main-screen__bottom-image img {
  width: 100%;
}

.about__title {
  margin: 0px 0px 50px 0px;
}
@media (max-width: 500px) {
  .about__title {
    margin: 0px 0px 35px 0px;
  }
}
.about__row {
  align-items: stretch;
  gap: 35px;
}
@media (max-width: 850px) {
  .about__row {
    flex-wrap: wrap;
  }
}
.about__left, .about__right {
  flex: 0 1 50%;
}
@media (max-width: 850px) {
  .about__left, .about__right {
    flex: 0 1 100%;
  }
}
.about__video {
  height: 100%;
}
@media (max-width: 850px) {
  .about__video {
    height: 450px;
  }
}
.about__video iframe {
  border-radius: 15px;
}

.health-program__title {
  margin: 0 0 40px;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.health-program-items {
  gap: 30px;
}
@media (max-width: 1100px) {
  .health-program-items {
    gap: 15px;
  }
}
@media (max-width: 1000px) {
  .health-program-items {
    flex-wrap: wrap;
  }
}
.health-program-items__item {
  display: flex;
  background: #fff;
  padding: 40px 40px 30px;
  display: flex;
  flex-direction: column;
  opacity: 0.6;
  transition: opacity 0.3s ease 0s;
  cursor: pointer;
}
.health-program-items__item:hover {
  opacity: 1;
  border-bottom: 3px solid #2D5454;
}
.health-program-items__item.active {
  opacity: 1;
  border-bottom: 3px solid #2D5454;
}
@media (max-width: 1100px) {
  .health-program-items__item {
    padding: 30px;
    flex: 1 1 45%;
    justify-content: center;
  }
}
.health-program-items__top {
  align-items: center;
}
@media (max-width: 420px) {
  .health-program-items__top {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.health-program-items__item-title {
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.28px;
  color: #27293C;
  text-align: center;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 420px) {
  .health-program-items__item-title {
    font-size: 18px;
    letter-spacing: normal;
    flex: 0 1 100%;
  }
}
.health-program-items__item-img img {
  width: 50px;
  border-radius: 50%;
  box-shadow: 0px 0px 20px #DBDBDB;
}
@media (max-width: 420px) {
  .health-program-items__item-img img {
    width: 40px;
  }
}
.health-program-items__text {
  margin: 16px 0px 0px 0px;
  display: block;
  letter-spacing: 1.01px;
  flex: 1 1 auto;
}
.health-program-items__description {
  display: block;
  margin: 20px 0px 0px 0px;
  font-size: 15px;
  line-height: 1.1;
  color: #27293C;
}
.health-program-items__description::after {
  content: "";
  border: solid #27293C;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg) translate(-4px);
  margin: 0px 0px 0px 10px;
}

.health-program-info {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.health-program-info__item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin: 50px auto 0px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 400px) {
  .health-program-info__item {
    padding: 15px;
  }
}
.health-program-info__title {
  font-size: 36px;
}
@media (max-width: 500px) {
  .health-program-info__title {
    font-size: 30px;
  }
}
.health-program-info__text {
  margin: 35px auto 0px;
}
.health-program-info__img {
  margin: 50px 0px 0px 0px;
}
.health-program-info__img img {
  width: 100%;
  height: auto;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.hide {
  opacity: 0;
  height: 0;
  visibility: hidden;
  margin: 0;
  padding: 0;
}
.hide .--title {
  display: none;
}
.hide .--wp-style-text {
  display: none;
}
.hide img {
  display: none;
}

.hotel__title {
  margin: 0px 0px 50px 0px;
}

.hotel-swiper-nav {
  margin: 35px auto 0;
}
.hotel-swiper-nav .swiper-slide-thumb-active .hotel-swiper-nav__picter {
  opacity: 1;
}
.hotel-swiper-nav__picter {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border-radius: 5px;
  opacity: 0.5;
}
.hotel-swiper-nav__picter img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.hotel-swiper-nav__picter:hover {
  opacity: 1;
}
.hotel-swiper-nav__title {
  line-height: 1.1;
  font-size: 18px;
  color: #333333;
}

.main-slider {
  background: #F2EEE5;
  padding: 20px;
  border-radius: 15px;
}
@media (max-width: 450px) {
  .main-slider {
    background: none;
    padding: 0;
  }
}
@media (max-width: 1000px) {
  .main-slider__row {
    flex-wrap: wrap;
  }
}
.main-slider__image {
  flex: 0 1 60%;
}
@media (max-width: 1000px) {
  .main-slider__image {
    flex: 0 1 100%;
  }
}
.main-slider__image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.main-slider__arrow .arrow-swiper {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease 0s;
  background: #333333;
  opacity: 0.5;
}
.main-slider__arrow .arrow-swiper:hover {
  opacity: 1;
}
.main-slider__arrow .arrow-swiper::after {
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.main-slider__text {
  flex: 0 1 40%;
}
@media (max-width: 1000px) {
  .main-slider__text {
    flex: 0 1 100%;
  }
}
.main-slider__title {
  font-size: 33px;
  color: #186270;
}
.main-slider__title::first-letter {
  border-bottom: none;
}
.main-slider__subtitle {
  text-align: center;
  margin: 8px 0px 12px 0px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1px;
  color: #27293C;
}
.main-slider__main-text li {
  text-transform: lowercase;
  list-style-position: outside;
  margin: 0px 0px 0px 15px;
}
.main-slider__main-text li::first-letter {
  text-transform: uppercase;
}
.main-slider__bottom {
  margin: 20px 0px 0px 0px;
  align-items: center;
}
@media (max-width: 400px) {
  .main-slider__bottom {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.main-slider__price {
  font-size: 25px;
  color: #27293C;
  line-height: 1.2;
  letter-spacing: 1px;
}
@media (max-width: 400px) {
  .main-slider__price {
    flex: 0 1 100%;
  }
}
.main-slider__btn {
  font-size: 17px;
  padding: 10px 20px;
}
@media (max-width: 400px) {
  .main-slider__btn {
    flex: 0 1 100%;
    order: 2;
  }
}

.popap-forms {
  background: #fff;
  border-radius: 10px;
  padding: 50px 30px 30px;
  position: fixed;
  left: 50%;
  right: 50%;
  width: 450px;
  height: 0px;
  top: -100%;
  bottom: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  z-index: 55;
  transition: all 0.3s ease 0s;
}
@media (max-width: 500px) {
  .popap-forms {
    width: 95%;
  }
}
.popap-forms__title {
  font-size: 32px;
  line-height: 39px;
}
.popap-forms__subtitle {
  margin: 10px 0px 0px 0px;
  color: #888;
}

.popap-forms-form {
  margin: 30px 0px 0px 0px;
}
.popap-forms-form input,
.popap-forms-form .--btn,
.popap-forms-form textarea {
  width: 100%;
  display: block;
  padding: 18px;
  border-radius: 8px;
  max-width: 100%;
  border: 1px solid #186270;
}
.popap-forms-form__input {
  margin: 0px 0px 15px 0px;
}
.popap-forms-form textarea {
  resize: none;
  height: 100px;
  color: #888;
}

.popap-forms-active {
  visibility: visible;
  opacity: 1;
  height: 400px;
  top: 60%;
}

.popap-forms-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.popap-forms-close img {
  width: 30px;
}

.pay-form {
  height: 600px;
  max-height: 90%;
  overflow: auto;
}
.pay-form.popap-forms-active {
  visibility: visible;
  opacity: 1;
  top: 50%;
}

.services__title {
  margin: 0px 0px 50px 0px;
}
.services__row {
  gap: 5px;
  justify-content: center;
}
.services__item {
  flex: 1 1 23%;
  position: relative;
}
@media (max-width: 1100px) {
  .services__item {
    flex: 1 1 32%;
  }
}
@media (max-width: 750px) {
  .services__item {
    flex: 1 1 48%;
  }
}
@media (max-width: 550px) {
  .services__item {
    flex: 1 1 100%;
  }
}
.services__item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  transition: all 0.3s ease 0s;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.services__item:hover .services__text::after {
  width: 100%;
}
@media (max-width: 800px) {
  .services__item:hover .services__text::after {
    width: 20%;
  }
}
.services__item:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.services__image {
  display: flex;
}
.services__image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__text {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: 300;
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: auto;
  color: #fff;
  z-index: 2;
  transition: all 0.2s ease-in-out 0s;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 800px) {
  .services__text {
    font-size: 20px;
    left: 10px;
  }
}
.services__text::after {
  content: "";
  height: 2px;
  width: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  transition: all 0.3s ease 0s;
}

.services-page {
  margin: 150px 0px 0px 0px;
}

.video-block__title {
  margin: 0px 0px 50px 0px;
}
@media (max-width: 500px) {
  .video-block__title {
    margin: 0 0 35px;
  }
}
.video-block__item {
  display: flex;
}
.video-block__item iframe {
  border-radius: 10px;
  border: 5px solid #FBFBFB;
}
.video-block__pagination {
  margin: 45px 0px 0px 0px;
}
.video-block__pagination .swiper-pagination {
  position: relative;
}
.video-block__pagination .swiper-pagination span {
  width: 40px;
  border-radius: 0;
  height: 4px;
  background: #186270;
}

.reviews-video__title {
  margin: 0px 0px 50px 0px;
}
@media (max-width: 500px) {
  .reviews-video__title {
    margin: 0px 0px 35px 0px;
  }
}

.reviews-video-content {
  align-items: stretch;
}
.reviews-video-content__item {
  flex: 1 1 48%;
}
@media (max-width: 650px) {
  .reviews-video-content__item {
    flex: 0 1 100%;
  }
}
.reviews-video-content__item iframe {
  border-radius: 10px;
  border: 5px solid #e1e1e1;
}

.map-block {
  position: relative;
}
.map-block .container {
  position: absolute;
  top: 0;
  height: 100%;
  right: 0%;
  transform: translate(-50%);
  max-width: 400px;
}
@media (max-width: 1300px) {
  .map-block .container {
    transform: translate(0);
  }
}
@media (max-width: 800px) {
  .map-block .container {
    position: relative;
    max-width: 100%;
    padding: 0;
  }
}
.map-block__content {
  max-width: 400px;
  background: #186270;
  height: 99%;
  padding: 40px 10px 0 30px;
}
@media (max-width: 800px) {
  .map-block__content {
    max-width: 100%;
    padding: 30px 10px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .map-block__item:first-child {
    border-left: 1px solid #fff;
  }
}
.map-block__item {
  justify-content: flex-start;
  align-items: center;
  margin: 0px 0px 20px 0px;
}
@media (max-width: 800px) {
  .map-block__item {
    margin: 0 auto 20px;
    border-right: 1px solid #fff;
    justify-content: center;
    padding: 0 15px 0px 0;
    flex: 0 1 31%;
  }
}
@media (max-width: 800px) {
  .map-block__item:last-child {
    flex: 0 1 100%;
    border-top: 1px solid #fff;
    border-right: 0;
    padding: 15px 0 0 0;
  }
  .map-block__item:last-child .map-block__item-right {
    display: block;
  }
}
.map-block__item-left img {
  width: 30px;
}
.map-block__item-right {
  color: #fff;
}
@media (max-width: 800px) {
  .map-block__item-right {
    display: none;
  }
}
.map-block__item-right h4 {
  font-weight: 500;
  font-size: 19px;
}
.map-block__item-right a {
  color: #dadada;
  line-height: 1.2;
  font-size: 17px;
  display: block;
  transition: all 0.3s ease 0s;
}
.map-block__item-right a:hover {
  color: #fff;
}
.map-block__oclock {
  line-height: 1.2;
  font-size: 17px;
  margin: 5px 0px 0px 0px;
}

.footer {
  background: #27293C;
  padding: 30px 0;
}

.footer-content {
  align-items: flex-start;
}
@media (max-width: 850px) {
  .footer-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
  }
}
@media (max-width: 505px) {
  .footer-content {
    gap: 20px;
  }
}
@media (max-width: 850px) {
  .footer-content__item {
    flex: 0 1 45%;
  }
}
@media (max-width: 505px) {
  .footer-content__item {
    flex: 0 1 100%;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 0px 0px 15px 0px;
  }
}
.footer-content__item:nth-child(2) {
  flex: 0 1 15%;
}
@media (max-width: 850px) {
  .footer-content__item:nth-child(2) {
    flex: 0 1 25%;
    order: 4;
  }
}
@media (max-width: 700px) {
  .footer-content__item:nth-child(2) {
    flex: 0 1 35%;
  }
}
@media (max-width: 505px) {
  .footer-content__item:nth-child(2) {
    flex: 0 1 100%;
    text-align: center;
    border-bottom: none;
  }
}
@media (max-width: 850px) {
  .footer-content__item:nth-child(1) {
    order: 5;
    flex: 0 1 100%;
    text-align: center;
  }
}
@media (max-width: 505px) {
  .footer-content__item:nth-child(1) {
    order: 0;
  }
}
.footer-content__logo img {
  width: 200px;
}
.footer-content__slogan {
  line-height: 1.4;
  color: #bcbcbc;
}
.footer-content__title {
  margin: 0px 0px 20px 0px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
}
@media (max-width: 900px) {
  .footer-content__title {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
@media (max-width: 505px) {
  .footer-content__title {
    margin: 0 0 10px;
  }
}

@media (max-width: 505px) {
  .footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer-list li {
  margin: 0px 0px 10px 0px;
}
.footer-list a {
  color: #dadada;
  transition: all 0.3s ease 0s;
  line-height: 1.3;
  display: flex;
  gap: 10px;
  align-self: center;
}
.footer-list a:hover {
  color: #fff;
}
.footer-list img {
  width: 20px;
}
.footer-list .back-call {
  border-radius: 5px;
}
.footer-list .back-call:hover {
  background: #fff;
  color: #27293C;
}

.footer-bottom {
  border-top: 1px solid #F1F1F1;
  padding: 20px 0 0 0;
  margin: 20px 0px 0px 0px;
}
@media (max-width: 800px) {
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-bottom__center {
  color: #fff;
}
@media (max-width: 800px) {
  .footer-bottom__center {
    flex: 0 1 100%;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .footer-bottom__item {
    order: 2;
  }
}
.footer-bottom__item img, .footer-bottom__item a {
  width: 180px;
}

.price__title {
  text-align: center;
  margin: 0 0 50px;
}
@media (max-width: 500px) {
  .price__title {
    margin: 0px 0px 35px 0px;
  }
}
.price__subtitle {
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
  color: #27293C;
  margin: 0px 0px 30px 0px;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 500px) {
  .price__subtitle {
    font-size: 22px;
    line-height: 1.1;
  }
}

.price-table {
  border: 1px solid #186270;
  margin: 0px 0px 30px 0px;
  font-size: 18px;
  color: #27293C;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .price-table {
    font-size: 16px;
  }
}
.price-table__row-title {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .price-table__row-title {
    display: none;
  }
}
.price-table__row-left {
  flex: 1 1 88%;
  border: 1px solid #186270;
  padding: 10px;
}
@media (max-width: 600px) {
  .price-table__row-left {
    flex: 0 1 100%;
    text-align: center;
  }
}
.price-table__row-right {
  flex: 0 0 200px;
  border: 1px solid #186270;
  padding: 10px;
}
@media (max-width: 600px) {
  .price-table__row-right {
    flex: 0 1 100%;
    background: rgba(139, 209, 223, 0.3647058824);
    text-align: center;
  }
}
.price-table__row-text {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .price-table__row-text {
    flex-wrap: wrap;
  }
}

.price-table:last-child {
  margin: 0;
}

.price-table-big {
  margin: 0px 0px 50px 0px;
  font-size: 17px;
  line-height: 1.1;
  color: #27293C;
}
.price-table-big__row-title {
  gap: 0;
  border-top: 1px solid #186270;
  font-weight: 500;
}
.price-table-big__row-title .price-table-big__row-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 630px) {
  .price-table-big__row-title {
    display: none;
  }
}
.price-table-big__row-left {
  flex: 1 1 50%;
  padding: 15px 5px;
  border: 1px solid #186270;
  text-align: left;
  border-left: 2px solid #186270;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 630px) {
  .price-table-big__row-left {
    flex: 0 1 100%;
    text-align: center;
    border-right: 2px solid #186270;
  }
}
.price-table-big__row-right {
  flex: 0 1 16.6%;
  padding: 15px 5px;
  border: 1px solid #186270;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 2px solid #186270;
}
@media (max-width: 800px) {
  .price-table-big__row-right {
    flex: 0 0 150px;
  }
}
@media (max-width: 630px) {
  .price-table-big__row-right {
    flex: 0 1 100%;
  }
}
.price-table-big__all-row {
  border: 1px solid #186270;
  padding: 8px;
  text-align: center;
  border-left: 2px solid #186270;
  border-right: 2px solid #186270;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 630px) {
  .price-table-big__all-row {
    background: rgba(216, 242, 248, 0.3647058824);
    padding: 15px 5px;
  }
}
.price-table-big__row-text {
  text-align: center;
  gap: 0;
}
@media (max-width: 630px) {
  .price-table-big__row-text {
    flex-wrap: wrap;
    display: block;
  }
  .price-table-big__row-text .price-table-big__row-right:nth-child(2),
  .price-table-big__row-text .price-table-big__row-right:nth-child(3),
  .price-table-big__row-text .price-table-big__row-right:nth-child(4) {
    display: block;
    background: rgba(139, 209, 223, 0.3647058824);
    padding: 0 5px 15px;
  }
  .price-table-big__row-text .price-table-big__row-right:nth-child(2)::before,
  .price-table-big__row-text .price-table-big__row-right:nth-child(3)::before,
  .price-table-big__row-text .price-table-big__row-right:nth-child(4)::before {
    content: "";
    display: block;
    border-bottom: 1px solid #186270;
    font-weight: 500;
    padding: 15px 5px 10px;
    margin: 0px 0px 20px 0px;
    background: rgba(188, 244, 255, 0.662745098);
  }
  .price-table-big__row-text .price-table-big__row-right:nth-child(2)::before {
    content: "14 дневная программа";
  }
  .price-table-big__row-text .price-table-big__row-right:nth-child(3)::before {
    content: "Посуточная оплата";
  }
  .price-table-big__row-text .price-table-big__row-right:nth-child(4)::before {
    content: "Гостиничное размещение";
  }
}
.price-table-big__row-duble {
  gap: 0;
  border-right: 1px solid #186270;
  border-left: 1px solid #186270;
}
@media (max-width: 630px) {
  .price-table-big__row-duble {
    display: none;
  }
}
.price-table-big__duble-left, .price-table-big__duble-right {
  border: 1px solid #186270;
  flex: 0 1 34%;
  padding: 15px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 800px) {
  .price-table-big__duble-left, .price-table-big__duble-right {
    flex: 0 0 300px;
  }
}
.price-table-big__duble-left {
  flex: 1 1 68.5%;
}

.gallery__subtitle:first-child {
  margin: 0 0 35px;
}
.gallery__subtitle {
  margin: 50px 0px 35px 0px;
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 1px;
}
@media (max-width: 500px) {
  .gallery__subtitle {
    font-size: 33px;
    line-height: 1.1;
  }
}
.gallery__row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.gallery__row img,
.gallery__row video {
  display: block;
  width: 100%;
  height: 250px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease 0s;
}
.gallery .gallery__row-image {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery__item {
  flex: 0 1 23.5%;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.gallery__item:hover img {
  transform: scale(1.1);
}
.gallery__item:hover::after {
  background: none;
}
.gallery__item::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease 0s;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1100px) {
  .gallery__item {
    flex: 0 1 31%;
  }
}
@media (max-width: 750px) {
  .gallery__item {
    flex: 0 1 46%;
  }
}
@media (max-width: 500px) {
  .gallery__item {
    flex: 0 1 95%;
  }
}

.top-page {
  padding: 50px 0;
  background: #3b6161;
  position: relative;
}
.top-page::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 30px;
  background: url("../img/video-block/01.svg") no-repeat;
  background-size: contain;
  background-position: right;
  max-width: 200px;
  width: 100%;
  height: 100%;
  max-height: 200px;
  opacity: 0.5;
}
@media (max-width: 400px) {
  .top-page::after {
    display: none;
  }
}
.top-page::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50px;
  background: url("../img/video-block/03.svg") no-repeat;
  background-size: contain;
  max-width: 200px;
  width: 100%;
  height: 100%;
  max-height: 200px;
  opacity: 0.5;
}
@media (max-width: 800px) {
  .top-page::before {
    display: none;
  }
}
.top-page__breadcrumbs {
  margin: 0px 0px 14px 0px;
}
.top-page__title {
  text-align: left;
  color: #fff;
}
.top-page__title::first-letter {
  border-color: #fff;
}

.news-item {
  transition: all 0.3s ease 0s;
  border-radius: 8px;
}
@media (max-width: 1050px) {
  .news-item {
    flex: 0 1 31%;
  }
}
@media (max-width: 800px) {
  .news-item {
    flex: 0 1 47.5%;
  }
}
@media (max-width: 500px) {
  .news-item {
    flex: 0 1 100%;
  }
}
.news-item:hover {
  transform: translate(0px, -10px);
}
.news-item:hover .news-item__title {
  color: #186270;
}
.news-item__image {
  display: block;
}
.news-item__image img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #186270;
}
.news-item__title {
  margin: 10px 0px 0px 0px;
  font-size: 19px;
  line-height: 1.1;
  color: #27293C;
  letter-spacing: 1px;
  display: block;
  text-align: center;
}
@media (max-width: 450px) {
  .news-item__title {
    font-size: 18px;
  }
}

.news-page__top {
  margin: 0px 0px 30px 0px;
}
.news-page__top img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.news-page__top-data {
  color: #888;
  padding: 0;
  margin: 12px 0px 0px 0px;
}
.news-page__main-text p, .news-page__main-text div, .news-page__main-text li {
  font-size: 14px;
  line-height: 22px;
}
.news-page__main-text.--wp-style-text {
  color: #27293C;
}
.news-page__main-text img {
  max-height: 100%;
  margin: 20px 0px;
  display: block;
}

.news-page-bottom {
  margin: 30px 0px 0px 0px;
}
.news-page-bottom__text {
  font-size: 14px;
  line-height: 22px;
  color: #27293C;
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  padding: 30px 0 20px;
}
.news-page-bottom__text p {
  margin: 0 0 12px;
}
.news-page-bottom__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 0 0;
}

.licenses__row img {
  display: block;
  width: 100%;
  max-width: 31%;
  cursor: pointer;
}
@media (max-width: 850px) {
  .licenses__row img {
    max-width: 47%;
  }
}
@media (max-width: 500px) {
  .licenses__row img {
    max-width: 100%;
  }
}

.page-form__container {
  background: #F1F1F1;
  width: 100%;
  padding: 50px 0px 50px 0;
}
.page-form__row {
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 800px) {
  .page-form__row {
    flex-wrap: wrap;
  }
}
.page-form__left {
  flex: 0 1 40%;
}
@media (max-width: 800px) {
  .page-form__left {
    flex: 0 1 100%;
  }
}
.page-form__right {
  flex: 0 1 40%;
}
@media (max-width: 1100px) {
  .page-form__right {
    flex: 0 1 60%;
  }
}
@media (max-width: 800px) {
  .page-form__right {
    flex: 0 1 100%;
  }
}
.page-form__title {
  font-size: 27px;
  line-height: 1.2;
  margin: 0px 0px 30px 0px;
  font-weight: 400;
  letter-spacing: 1px;
}
.page-form__title::first-letter {
  border-bottom: 1px solid #186270;
}
@media (max-width: 800px) {
  .page-form__title {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .page-form__title {
    font-size: 22px;
    line-height: 1.1;
    margin: 0px 0px 20px 0px;
  }
}
.page-form__input {
  margin: 0px 0px 20px 0px;
}
.page-form__input input,
.page-form__input textarea {
  padding: 20px;
  width: 100%;
  border: none;
  border-radius: 10px;
}
.page-form__input input:focus,
.page-form__input textarea:focus {
  border-radius: 0 0 10px 10px;
  border-top: 2px solid #186270;
}
.page-form__input input:focus::-moz-placeholder, .page-form__input textarea:focus::-moz-placeholder {
  font-size: 0;
}
.page-form__input input:focus::placeholder,
.page-form__input textarea:focus::placeholder {
  font-size: 0;
}
.page-form__input textarea {
  height: 160px;
  resize: none;
}
.page-form__btn button {
  display: block;
  max-width: 100%;
  border-radius: 10px;
  padding: 15px;
  font-size: 20px;
}
.page-form .wpcf7-list-item {
  margin: 0 0 10px !important;
}
.page-form .wpcf7-list-item a {
  color: #186270;
}

.contacts .page-form__row {
  justify-content: space-between;
}
.contacts .page-form__container {
  padding: 100px 0 150px;
}

.contacts-page-item {
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid #186270;
}
.contacts-page-item__left img {
  width: 30px;
}
.contacts-page-item__right .contacts-page-item__clock,
.contacts-page-item__right a {
  color: #2d5454;
  transition: all 0.3s ease 0s;
  display: block;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 1px;
}
.contacts-page-item__right .contacts-page-item__clock:hover,
.contacts-page-item__right a:hover {
  color: #27293C;
}
.contacts-page-item__clock:hover {
  color: #2d5454;
}
.contacts-page-item__title {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1px;
}

.page-404-current__row {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media (max-width: 600px) {
  .page-404-current__row {
    flex-wrap: wrap;
  }
}
.page-404-current__left {
  flex: 0 1 50%;
}
@media (max-width: 600px) {
  .page-404-current__left {
    flex: 0 1 100%;
  }
}
.page-404-current__left img {
  width: 100%;
}
.page-404-current__right {
  color: #333333;
  flex: 0 1 50%;
}
@media (max-width: 600px) {
  .page-404-current__right {
    flex: 0 1 100%;
    text-align: center;
  }
}
.page-404-current__text {
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
}
.page-404-current p {
  font-size: 15px;
  line-height: 24px;
}
.page-404-current__btn {
  margin: 30px 0px 0px 0px;
}

.wp-pagenavi {
  display: flex;
  margin: 15px 0 0 10px;
  font-size: 18px;
  gap: 10px;
  flex: 0 1 100%;
}

.wp-pagenavi span,
.wp-pagenavi a {
  border: 1px solid #FBFBFB;
  transition: all 0.3s ease 0s;
  color: #000;
  text-align: center;
  padding: 7px 0 0 0;
  height: 35px;
  border-radius: 3px;
  width: 25px !important;
  font-weight: 500;
  display: block;
  background: none;
  margin: 0;
  flex: 0 1 30px;
}

.wp-pagenavi span {
  padding: 7px 8px 0;
  background: #444444 !important;
  color: #FBFBFB !important;
}

.wp-pagenavi a:hover {
  border: 2px solid #27293C;
  color: #27293C !important;
  transform: none;
}

.wp-pagenavi a:last-child {
  font-size: 23px;
  padding: 2px 0 0 0;
}

.nothing-found h2 {
  font-size: 30px;
  line-height: 35px;
  margin: 0px 0px 10px 0px;
}
.nothing-found p {
  font-size: 19px;
  line-height: 20px;
}
.nothing-found a {
  transition: all 0.3s ease 0s;
  color: #27293C;
}
.nothing-found a:hover {
  color: #FBFBFB;
}

.reviews-page {
  margin: 0;
  background: #F2EEE5;
}
.reviews-page__row {
  margin: 0px 0px 40px 0px;
  align-items: center;
}
@media (max-width: 600px) {
  .reviews-page__row {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.reviews-page__left {
  font-size: 21px;
  color: #27293C;
  line-height: 1.2;
  letter-spacing: 1px;
  border-bottom: 2px solid #186270;
  padding: 0 0 20px;
}
.reviews-page__left span {
  color: #186270;
}
@media (max-width: 600px) {
  .reviews-page__left {
    flex: 0 1 100%;
    text-align: center;
  }
}
.reviews-page__right a {
  max-width: 100%;
  width: 230px;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
}
.reviews-page__right a::after {
  content: "";
  display: inline-block;
  border-right: 6px solid transparent;
  border-top: 12px solid #fff;
  border-left: 6px solid transparent;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px 10px;
  position: relative;
  top: 1px;
}
@media (max-width: 600px) {
  .reviews-page__right {
    flex: 0 1 100%;
    text-align: center;
  }
  .reviews-page__right a {
    margin: 0 auto;
  }
}

.reviews-item {
  margin: 0px 0px 30px 0px;
}
.reviews-item__name {
  color: #27293C;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 500px) {
  .reviews-item .left-line {
    padding: 10px;
  }
}
.reviews-item__data {
  font-size: 14px;
  color: #186270;
}
.reviews-item .wpmtst-testimonial {
  margin: 0px 0px 30px 0px;
}
.reviews-item .testimonial-content {
  order: 2;
  flex: 0 1 100%;
}
.reviews-item .testimonial-inner {
  display: flex !important;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.reviews-form-page {
  background: #F2EEE5;
  padding: 100px 0;
}

.reviews__forms {
  max-width: 800px;
  margin: 0 auto;
}
.reviews__forms input,
.reviews__forms textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #FBFBFB;
  resize: none;
}
.reviews__forms input:focus::-moz-placeholder, .reviews__forms textarea:focus::-moz-placeholder {
  font-size: 0px;
}
.reviews__forms input:focus::placeholder,
.reviews__forms textarea:focus::placeholder {
  font-size: 0px;
}
.reviews__forms .wpmtst-submission-form {
  display: flex;
  flex-wrap: wrap;
}
.reviews__forms .field-client_name,
.reviews__forms .field-post_content {
  flex: 0 1 100%;
}
.reviews__forms .wpmtst-submit input {
  border: 2px solid #186270;
  cursor: pointer;
  background: #fff;
  color: #186270;
  transition: all 0.3s ease 0s;
  font-size: 19px;
  font-weight: 500;
}
.reviews__forms .wpmtst-submit input:hover {
  background: #186270;
  color: #fff;
}

.nav-links {
  display: flex;
  margin: 15px auto 0 auto;
  font-size: 18px;
  justify-content: center;
  gap: 10px;
  flex: 0 1 100%;
}
.nav-links .page-numbers {
  border: 1px solid #27293C;
  color: #27293C;
  text-align: center;
  padding: 7px 0 0 0;
  height: 35px;
  border-radius: 3px;
  width: 25px !important;
  font-weight: 500;
  display: block;
  background: none;
  margin: 0;
  flex: 0 1 30px;
}
.nav-links span {
  background: #27293C !important;
  color: #fff !important;
}
.nav-links a {
  transition: all 0.3s ease 0s;
}
.nav-links a:hover {
  background: #27293C;
  color: #fff !important;
  transform: none;
}


.instagram-link {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease 0s;
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.instagram-link:hover {
    background: #fff;
    color: #27293C;
}

.instagram-link::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/></svg>');
    background-size: contain;
}

.instagram-link:hover::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2327293C"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/></svg>');
}

.instagram-warning {
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
    margin: 5px 0 0 0;
    opacity: 0.8;
    text-align: center;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 800px) {
    .instagram-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .instagram-link::before {
        width: 16px;
        height: 16px;
    }
    
    .instagram-warning {
        font-size: 9px;
    }
}

@media (max-width: 505px) {
    .footer-bottom__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* Стили для страницы специалистов */
.specialists__title {
    margin: 0px 0px 50px 0px;
}

.specialists__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .specialists__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.specialists__card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease 0s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.specialists__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.specialists__image {
    text-align: center;
    margin-bottom: 20px;
}

.specialists__photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2D5454;
}

.specialists__no-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #888;
    border: 3px solid #2D5454;
}

.specialists__info {
    flex: 1;
}

.specialists__name {
    font-size: 24px;
    color: #27293C;
    margin: 0 0 15px 0;
    text-align: center;
    font-weight: 500;
}

.specialists__meta {
    margin: 0 0 12px 0;
    display: flex;
    flex-wrap: wrap;
}

.specialists__meta strong {
    color: #2D5454;
    margin-right: 5px;
    min-width: 120px;
}

.specialists__meta span {
    color: #27293C;
    flex: 1;
}

.specialists__credentials {
    margin: 20px 0 0 0;
    padding: 15px;
    background: #FBFBFB;
    border-radius: 8px;
    border-left: 4px solid #2D5454;
}

.specialists__credentials strong {
    color: #2D5454;
    display: block;
    margin-bottom: 8px;
}

.specialists__credentials p {
    margin: 0;
    color: #27293C;
    line-height: 1.4;
    font-size: 14px;
}

@media (max-width: 600px) {
    .specialists__card {
        padding: 20px;
    }
    
    .specialists__photo,
    .specialists__no-photo {
        width: 150px;
        height: 150px;
    }
    
    .specialists__name {
        font-size: 20px;
    }
    
    .specialists__meta {
        flex-direction: column;
    }
    
    .specialists__meta strong {
        min-width: auto;
        margin-bottom: 5px;
    }
}
/* Стили для раздела специалистов на главной */
.specialists__title {
    margin: 0px 0px 50px 0px;
}

.specialists__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .specialists__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.specialists__card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease 0s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.specialists__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.specialists__image {
    text-align: center;
    margin-bottom: 20px;
}

.specialists__photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2D5454;
}

.specialists__no-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #888;
    border: 3px solid #2D5454;
}

.specialists__info {
    flex: 1;
}

.specialists__name {
    font-size: 24px;
    color: #27293C;
    margin: 0 0 15px 0;
    text-align: center;
    font-weight: 500;
}

.specialists__meta {
    margin: 0 0 12px 0;
    display: flex;
    flex-wrap: wrap;
}

.specialists__meta strong {
    color: #2D5454;
    margin-right: 5px;
    min-width: 120px;
}

.specialists__meta span {
    color: #27293C;
    flex: 1;
}

.specialists__credentials {
    margin: 20px 0 0 0;
    padding: 15px;
    background: #FBFBFB;
    border-radius: 8px;
    border-left: 4px solid #2D5454;
}

.specialists__credentials strong {
    color: #2D5454;
    display: block;
    margin-bottom: 8px;
}

.specialists__credentials p {
    margin: 0;
    color: #27293C;
    line-height: 1.4;
    font-size: 14px;
}

.specialists__more {
    margin-top: 30px;
}

@media (max-width: 600px) {
    .specialists__card {
        padding: 20px;
    }
    
    .specialists__photo,
    .specialists__no-photo {
        width: 150px;
        height: 150px;
    }
    
    .specialists__name {
        font-size: 20px;
    }
    
    .specialists__meta {
        flex-direction: column;
    }
    
    .specialists__meta strong {
        min-width: auto;
        margin-bottom: 5px;
    }
}
/* Стили для страницы специалистов */
.specialists.--padding-block {
    background: #F2EEE5;
    padding: 100px 0;
}

@media (max-width: 600px) {
    .specialists.--padding-block {
        padding: 70px 0;
    }
}

.specialists__title.--title {
    margin: 0px 0px 50px 0px;
    text-align: center;
}

@media (max-width: 500px) {
    .specialists__title.--title {
        margin: 0px 0px 35px 0px;
    }
}

/* Сетка специалистов */
.specialists__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .specialists__grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .specialists__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
}

/* Карточка специалиста */
.specialists__card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(45, 84, 84, 0.1);
    transition: all 0.3s ease 0s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e8f1f1;
    position: relative;
    overflow: hidden;
}

.specialists__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5454, #186270);
}

.specialists__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 84, 84, 0.15);
    border-color: #2D5454;
}

/* Изображение специалиста */
.specialists__image {
    text-align: center;
    margin-bottom: 25px;
}

.specialists__photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2D5454;
    box-shadow: 0 8px 20px rgba(45, 84, 84, 0.2);
    transition: all 0.3s ease 0s;
}

.specialists__card:hover .specialists__photo {
    transform: scale(1.05);
    border-color: #186270;
    box-shadow: 0 12px 25px rgba(45, 84, 84, 0.3);
}

.specialists__no-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f7f7, #e1ecec);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #2D5454;
    border: 4px solid #2D5454;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(45, 84, 84, 0.2);
}

/* Информация о специалисте */
.specialists__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.specialists__name {
    font-size: 24px;
    color: #27293C;
    margin: 0 0 20px 0;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.specialists__name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #2D5454, #186270);
    border-radius: 2px;
}

/* Мета-информация */
.specialists__meta {
    margin: 0 0 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.specialists__meta strong {
    color: #2D5454;
    font-weight: 600;
    font-size: 15px;
    min-width: 130px;
    flex-shrink: 0;
}

.specialists__meta span {
    color: #27293C;
    flex: 1;
    font-size: 15px;
    line-height: 1.4;
}

/* Регалии */
.specialists__credentials {
    margin: 20px 0 0 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fbfb, #f0f7f7);
    border-radius: 12px;
    border-left: 4px solid #2D5454;
    position: relative;
    flex: 1;
}

.specialists__credentials::before {
    content: '🏆';
    position: absolute;
    top: -10px;
    left: -10px;
    background: #2D5454;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.specialists__credentials strong {
    color: #2D5454;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
}

.specialists__credentials p {
    margin: 0;
    color: #27293C;
    line-height: 1.5;
    font-size: 14px;
    font-style: italic;
}

/* Кнопка "Все специалисты" */
.specialists__more {
    text-align: center;
    margin-top: 50px;
}

.specialists__more .--btn {
    background: linear-gradient(135deg, #2D5454, #186270);
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease 0s;
    box-shadow: 0 5px 15px rgba(45, 84, 84, 0.3);
    position: relative;
    overflow: hidden;
}

.specialists__more .--btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.specialists__more .--btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 84, 84, 0.4);
}

.specialists__more .--btn:hover::before {
    left: 100%;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 600px) {
    .specialists__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specialists__card {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .specialists__photo,
    .specialists__no-photo {
        width: 140px;
        height: 140px;
    }
    
    .specialists__name {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .specialists__meta {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .specialists__meta strong {
        min-width: auto;
        font-size: 14px;
    }
    
    .specialists__meta span {
        font-size: 14px;
    }
    
    .specialists__credentials {
        padding: 15px;
        margin-top: 15px;
    }
    
    .specialists__credentials strong {
        font-size: 15px;
    }
    
    .specialists__credentials p {
        font-size: 13px;
    }
    
    .specialists__more .--btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .specialists__card {
        padding: 20px 15px;
    }
    
    .specialists__photo,
    .specialists__no-photo {
        width: 120px;
        height: 120px;
    }
    
    .specialists__name {
        font-size: 20px;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specialists__card {
    animation: fadeInUp 0.6s ease forwards;
}

.specialists__card:nth-child(2) {
    animation-delay: 0.1s;
}

.specialists__card:nth-child(3) {
    animation-delay: 0.2s;
}

.specialists__card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Состояние загрузки */
.specialists__card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.specialists__card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Пустое состояние */
.specialists__grid:empty::before {
    content: 'Специалисты не найдены';
    display: block;
    text-align: center;
    color: #888;
    font-size: 18px;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* Ховер-эффекты для карточек */
.specialists__card:hover .specialists__name {
    color: #2D5454;
}

.specialists__card:hover .specialists__credentials {
    background: linear-gradient(135deg, #f0f7f7, #e8f1f1);
    border-left-color: #186270;
}
/* Стили для секции оздоровительных программ */
.health-program-items {
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 1100px) {
    .health-program-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .health-program-items {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.health-program-items__item {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(45, 84, 84, 0.1);
    transition: all 0.3s ease 0s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
    border: 1px solid #e8f1f1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.8;
}

.health-program-items__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5454, #186270);
    border-radius: 20px 20px 0 0;
}

.health-program-items__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 84, 84, 0.15);
    border-color: #2D5454;
    opacity: 1;
}

.health-program-items__item.active {
    opacity: 1;
    border-color: #2D5454;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 84, 84, 0.15);
}

.health-program-items__item.active::before {
    background: linear-gradient(90deg, #186270, #2D5454);
}

.health-program-items__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.health-program-items__item-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.health-program-items__item-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2D5454;
    box-shadow: 0 5px 15px rgba(45, 84, 84, 0.2);
    transition: all 0.3s ease 0s;
    background: #fff;
    padding: 5px;
}

.health-program-items__item:hover .health-program-items__item-img img {
    transform: scale(1.1);
    border-color: #186270;
    box-shadow: 0 8px 20px rgba(45, 84, 84, 0.3);
}

.health-program-items__item-title {
    font-size: 20px;
    color: #27293C;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-wrap: break-word;
    width: 100%;
}

.health-program-items__item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #2D5454, #186270);
    border-radius: 2px;
}

.health-program-items__item:hover .health-program-items__item-title {
    color: #2D5454;
}

.health-program-items__text {
    font-size: 15px;
    color: #27293C;
    line-height: 1.5;
    margin: 20px 0 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.health-program-items__text p {
    margin: 0 0 10px 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.health-program-items__description {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e8f1f1;
    font-size: 14px;
    color: #2D5454;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.health-program-items__item:hover .health-program-items__description {
    color: #186270;
    border-top-color: #186270;
}

.health-program-items__description::after {
    content: "→";
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    color: #2D5454;
    transition: all 0.3s ease 0s;
    transform: translateX(0);
}

.health-program-items__item:hover .health-program-items__description::after {
    color: #186270;
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.health-program-items__item {
    animation: fadeInUp 0.6s ease forwards;
}

.health-program-items__item:nth-child(2) {
    animation-delay: 0.1s;
}

.health-program-items__item:nth-child(3) {
    animation-delay: 0.2s;
}

.health-program-items__item:nth-child(4) {
    animation-delay: 0.3s;
}

@media (max-width: 1100px) {
    .health-program-items {
        gap: 20px;
    }
    
    .health-program-items__item {
        padding: 25px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .health-program-items {
        gap: 15px;
    }
    
    .health-program-items__item {
        padding: 20px;
        min-height: 280px;
    }
    
    .health-program-items__item-img img {
        width: 60px;
        height: 60px;
    }
    
    .health-program-items__item-title {
        font-size: 18px;
        padding-bottom: 12px;
    }
    
    .health-program-items__item-title::after {
        width: 30px;
    }
    
    .health-program-items__text {
        font-size: 14px;
    }
    
    .health-program-items__description {
        font-size: 13px;
        padding-top: 12px;
    }
}

@media (max-width: 480px) {
    .health-program-items__item {
        padding: 15px;
        min-height: 260px;
    }
    
    .health-program-items__item-img img {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .health-program-items__item-title {
        font-size: 16px;
    }
    
    .health-program-items__text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .health-program-items__description {
        font-size: 12px;
    }
}

.health-program-items__item:hover .health-program-items__item-title::after {
    width: 60px;
    background: linear-gradient(90deg, #186270, #2D5454);
}

.health-program-items__item.active {
    background: linear-gradient(135deg, #f8fbfb, #f0f7f7);
}

.health-program-items__item.active .health-program-items__item-title {
    color: #186270;
}

.health-program-items__item.active .health-program-items__description {
    color: #186270;
    font-weight: 600;
}

.health-program-items__item.active .health-program-items__description::after {
    color: #186270;
    animation: bounceArrow 0.5s ease infinite alternate;
}

@keyframes bounceArrow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(5px);
    }
}

.health-program-items__text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 120px; 
}

.health-program-items__description-wrapper {
    margin-top: auto;
    padding-top: 15px;
}

.health-program-items__item {
    display: flex;
    flex-direction: column;
}

.health-program-items__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header-top__location a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .header-top__location a span {
        display: inline; 
    }
    .header-top__location img {
        width: 25px; 
    }
}
@media (max-width:900px){
    .header-top__location span{display:inline}
    .header-top__location img{width:25px}
}
.header-top__location, .header-top__phone {
    max-width: none;
    flex: 0 1 auto; 
}

.header-top__location a {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
}

@media (max-width: 900px) {
    .header-top__location span, .header-top__phone span {
        display: inline !important; 
    }
    .header-top__location img, .header-top__phone img {
        width: 25px; 
    }
}

.header-top__social {
    display: flex;
    align-items: center;
    gap: 15px; 
    margin-top: 0px; 
}

.header-top__social-link {
    margin-top: 0;
}

.header-top__location.--animation-link {
    display: flex;
    align-items: center;
}

.header-top__location.--animation-link a {
    display: flex;
    align-items: center;
    gap: 7px;
}


@media (max-width: 900px) {
    .header-top__social {
        margin-top: 0;
        flex-direction: column; 
        gap: 10px;
    }
}


.header-top__left::after {
    top: 12px;
    transform: translate(-40px);
    height: 70px;
    left: 38%;
}
/* Стили для галереи на главной */
.gallery.--padding-block {
    background: #F2EEE5 !important;
    padding: 100px 0;
}

@media (max-width: 600px) {
    .gallery.--padding-block {
        padding: 70px 0;
    }
}

.gallery__title.--title {
    margin: 0px 0px 50px 0px;
    text-align: center;
}

@media (max-width: 500px) {
    .gallery__title.--title {
        margin: 0px 0px 35px 0px;
    }
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease 0s;
    aspect-ratio: 4/3;
    background: #f5f5f5;
}

.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery__link {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-decoration: none;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease 0s;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.05);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 84, 84, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
    opacity: 0;
}

.gallery__item:hover .gallery__overlay {
    background: rgba(45, 84, 84, 0.7);
    opacity: 1;
}

.gallery__zoom {
    color: white;
    font-size: 24px;
    transform: scale(0.8);
    transition: all 0.3s ease 0s;
}

.gallery__item:hover .gallery__zoom {
    transform: scale(1);
}

.gallery__empty {
    text-align: center;
    color: #888;
    font-size: 18px;
    padding: 40px 20px;
    grid-column: 1 / -1;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery__item {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.gallery__item:nth-child(1) { animation-delay: 0.1s; }
.gallery__item:nth-child(2) { animation-delay: 0.2s; }
.gallery__item:nth-child(3) { animation-delay: 0.3s; }
.gallery__item:nth-child(4) { animation-delay: 0.4s; }
.gallery__item:nth-child(5) { animation-delay: 0.5s; }
.gallery__item:nth-child(6) { animation-delay: 0.6s; }

/* Стили для шорткода галереи */
.gallery__grid-shortcode {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.gallery__grid-shortcode a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease 0s;
}

.gallery__grid-shortcode a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.gallery__grid-shortcode img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
/* Стили для галереи на главной */
.gallery.--padding-block {
    background: #FBFBFB;
    padding: 100px 0;
}

@media (max-width: 600px) {
    .gallery.--padding-block {
        padding: 70px 0;
    }
}

.gallery__title.--title {
    margin: 0px 0px 50px 0px;
    text-align: center;
}

@media (max-width: 500px) {
    .gallery__title.--title {
        margin: 0px 0px 35px 0px;
    }
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease 0s;
    aspect-ratio: 4/3;
    background: #f5f5f5;
    /* Обеспечиваем растяжение содержимого */
    display: flex;
    flex-direction: column;
    min-height: 0; /* Важно для flex-растяжения */
}

.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery__link {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    /* Растягиваем ссылку на всю область */
    flex: 1;
    min-height: 0;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease 0s;
    /* Растягиваем изображение на всю область */
    flex: 1;
    min-height: 0;
    min-width: 0;
    display: block;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.05);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 84, 84, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
    opacity: 0;
    pointer-events: none; /* Позволяет кликать сквозь оверлей */
}

.gallery__item:hover .gallery__overlay {
    background: rgba(45, 84, 84, 0.7);
    opacity: 1;
}

.gallery__zoom {
    color: white;
    font-size: 24px;
    transform: scale(0.8);
    transition: all 0.3s ease 0s;
}

.gallery__item:hover .gallery__zoom {
    transform: scale(1);
}

.gallery__empty {
    text-align: center;
    color: #888;
    font-size: 18px;
    padding: 40px 20px;
    grid-column: 1 / -1;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

/* Исправляем для старых браузеров без поддержки aspect-ratio */
@supports not (aspect-ratio: 4/3) {
    .gallery__item {
        height: 0;
        padding-bottom: 75%; /* 4:3 aspect ratio (3/4 = 0.75 = 75%) */
        position: relative;
    }
    
    .gallery__link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .gallery__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery__item {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.gallery__item:nth-child(1) { animation-delay: 0.1s; }
.gallery__item:nth-child(2) { animation-delay: 0.2s; }
.gallery__item:nth-child(3) { animation-delay: 0.3s; }
.gallery__item:nth-child(4) { animation-delay: 0.4s; }
.gallery__item:nth-child(5) { animation-delay: 0.5s; }
.gallery__item:nth-child(6) { animation-delay: 0.6s; }
.gallery__item:nth-child(7) { animation-delay: 0.7s; }
.gallery__item:nth-child(8) { animation-delay: 0.8s; }

/* Стили для шорткода галереи */
.gallery__grid-shortcode {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.gallery__grid-shortcode a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease 0s;
    aspect-ratio: 4/3;
    background: #f5f5f5;
    display: flex;
}

.gallery__grid-shortcode a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.gallery__grid-shortcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex: 1;
    min-height: 0;
}

/* Заглушка при отсутствии изображений */
.gallery__item:empty {
    background: linear-gradient(45deg, #f0f0f0 25%, #f8f8f8 25%, #f8f8f8 50%, #f0f0f0 50%, #f0f0f0 75%, #f8f8f8 75%, #f8f8f8 100%);
    background-size: 20px 20px;
    animation: placeholderShimmer 2s linear infinite;
}

@keyframes placeholderShimmer {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Фикс для Safari */
@supports (-webkit-hyphens:none) {
    .gallery__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/* Обеспечиваем одинаковую высоту всех элементов в строке */
.gallery__grid {
    align-items: stretch;
}

.gallery__item {
    height: 100%;
}

/* Минимальная высота для мобильных */
@media (max-width: 480px) {
    .gallery__item {
        min-height: 200px;
    }
}
/* Контейнер для навигационного слайдера */
.hotel-swiper-nav-container {
    position: relative;
    margin-top: 30px;
    padding: 0 40px;
}

/* Навигационный слайдер */
.hotel-swiper-nav {
    position: relative;
}

/* Стрелки навигации */
.hotel-nav-arrows {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.hotel-nav-arrow {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    border: 1px solid #e8f1f1;
}

.hotel-nav-arrow:hover {
    background: #2D5454;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(45, 84, 84, 0.2);
}

.hotel-nav-arrow:hover svg {
    stroke: white;
}

.hotel-nav-prev {
    transform: translateX(-20px);
}

.hotel-nav-next {
    transform: translateX(20px);
}

/* Пагинация точками */
.hotel-nav-pagination {
    position: relative;
    margin-top: 25px;
    text-align: center;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotel-nav-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cccccc;
    opacity: 0.6;
    margin: 0 5px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: inline-block;
}

.hotel-nav-pagination .swiper-pagination-bullet-active {
    background: #2D5454;
    opacity: 1;
    transform: scale(1.2);
}

.hotel-nav-pagination .swiper-pagination-bullet:hover {
    background: #186270;
    opacity: 0.8;
}

/* Адаптивность для пагинации */
@media (max-width: 768px) {
    .hotel-swiper-nav-container {
        padding: 0 35px;
    }
    
    .hotel-nav-pagination {
        margin-top: 20px;
    }
    
    .hotel-nav-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px !important;
    }
}

@media (max-width: 576px) {
    .hotel-swiper-nav-container {
        padding: 0 30px;
    }
    
    .hotel-nav-arrow {
        width: 35px;
        height: 35px;
    }
    
    .hotel-nav-prev {
        transform: translateX(-15px);
    }
    
    .hotel-nav-next {
        transform: translateX(15px);
    }
    
    .hotel-nav-arrow svg {
        width: 18px;
        height: 18px;
    }
}
.swiper-slide{
  max-height: 510px;
}
.swiper-wrapper myHotelGallery{
  height: 510px;
}
/* Стиль для активной миниатюры */
.hotel-swiper-nav .swiper-slide-thumb-active .hotel-swiper-nav__picter {
    border-color: #2D5454;
    box-shadow: 0 4px 12px rgba(45, 84, 84, 0.2);
}

.hotel-swiper-nav .swiper-slide-thumb-active .hotel-swiper-nav__picter img {
    opacity: 1;
}

/* Базовые стили для миниатюр */
.hotel-swiper-nav__picter {
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hotel-swiper-nav__picter:hover {
    border-color: #186270;
    transform: translateY(-2px);
}
.swiper-autoheight{
  max-height: 550px;
}
/* Добавляем в конец существующих стилей для специалистов */

/* Контейнер для регалий с ограничением высоты */
.specialists__credentials {
    margin: 20px 0 0 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8fbfb, #f0f7f7);
    border-radius: 12px;
    border-left: 4px solid #2D5454;
    position: relative;
    flex: 1;
    overflow: hidden;
    max-height: 150px; /* Ограничиваем высоту */
    transition: max-height 0.3s ease;
}

/* Развернутый вид при наведении */
.specialists__card:hover .specialists__credentials {
    max-height: 500px; /* Разворачиваем при наведении */
}

/* Текст регалий с ограничением по строкам */
.specialists__credentials p {
    margin: 0;
    color: #27293C;
    line-height: 1.5;
    font-size: 14px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Ограничиваем 4 строками по умолчанию */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 84px; /* 4 строки * 1.5 line-height * 14px */
    transition: all 0.3s ease;
}

/* При наведении показываем весь текст */
.specialists__card:hover .specialists__credentials p {
    -webkit-line-clamp: initial;
    max-height: none;
    overflow: visible;
}

/* Кнопка "Подробнее" */
.specialists__more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #2D5454;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2D5454;
}

.specialists__more-btn:hover {
    background: transparent;
    color: #2D5454;
}

/* Скрываем кнопку на странице всех специалистов */
.page-specialists .specialists__more-btn {
    display: none;
}

/* Стиль для страницы всех специалистов - показываем полный текст */
.page-specialists .specialists__credentials {
    max-height: none !important;
}

.page-specialists .specialists__credentials p {
    -webkit-line-clamp: initial !important;
    max-height: none !important;
    overflow: visible !important;
}
/* Обновляем стили для регалий - убираем все ограничения */
.specialists__credentials {
    margin: 20px 0 0 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8fbfb, #f0f7f7);
    border-radius: 12px;
    border-left: 4px solid #2D5454;
    position: relative;
    flex: 1;
    overflow: visible; /* Разрешаем показ всего контента */
    max-height: none !important; /* Убираем ограничение высоты */
    height: auto !important; /* Высота по контенту */
}

/* Текст всегда показываем полностью */
.specialists__credentials p {
    margin: 0;
    color: #27293C;
    line-height: 1.5;
    font-size: 14px;
    font-style: italic;
    display: block; /* Меняем на block */
    overflow: visible; /* Показываем весь текст */
    text-overflow: clip; /* Убираем обрезку */
    max-height: none !important; /* Убираем ограничение */
    -webkit-line-clamp: initial !important; /* Отключаем обрезку строк */
    -webkit-box-orient: initial !important;
}

/* Убираем все hover-эффекты для высоты */
.specialists__card:hover .specialists__credentials,
.specialists__card .specialists__credentials {
    max-height: none !important;
    height: auto !important;
}

.specialists__card:hover .specialists__credentials p,
.specialists__card .specialists__credentials p {
    -webkit-line-clamp: initial !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Кнопка "Подробнее" */
.specialists__more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #2D5454;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2D5454;
}

.specialists__more-btn:hover {
    background: transparent;
    color: #2D5454;
}

/* На странице всех специалистов скрываем кнопку */
.page-specialists .specialists__more-btn {
    display: none;
}
/* Стили для главного слайдера */
.main-slider-section {
    position: relative;
}

/* Основной баннер */
.main-banner {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.main-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.main-banner__content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-banner__title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.main-banner__subtitle {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.main-banner__btn {
    display: inline-block;
    background: #2D5454;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-banner__btn:hover {
    background: #186270;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Контейнер слайдера */
.main-slider-container {
    background: #F2EEE5;
    padding: 50px 0;
}

.main-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Стили Swiper */
.main-slider-swiper {
    position: relative;
    padding: 20px 0 50px !important;
}

.swiper-slide {
    height: auto;
}

.slide-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.slide-link {
    display: block;
    position: relative;
    height: 100%;
    text-decoration: none;
}

.slide-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.slide-card:hover .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.slide-card:hover .slide-overlay {
    opacity: 1;
}

.slide-info {
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.slide-card:hover .slide-info {
    transform: translateY(0);
}

.slide-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.slide-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Точечная навигация */
.main-slider-pagination {
    position: relative !important;
    margin-top: 20px;
    height: 20px;
}

.main-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cccccc;
    opacity: 0.6;
    margin: 0 6px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-slider-pagination .swiper-pagination-bullet-active {
    background: #2D5454;
    opacity: 1;
    transform: scale(1.2);
}

.main-slider-pagination .swiper-pagination-bullet:hover {
    background: #186270;
    opacity: 0.8;
}

/* Стрелки навигации */
.main-slider-prev,
.main-slider-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #2D5454;
    transition: all 0.3s ease;
}

.main-slider-prev:hover,
.main-slider-next:hover {
    background: #2D5454;
    color: white;
    transform: scale(1.1);
}

.main-slider-prev:after,
.main-slider-next:after {
    font-size: 20px;
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 768px) {
    .main-banner {
        height: 400px;
    }
    
    .main-banner__title {
        font-size: 36px;
    }
    
    .main-banner__subtitle {
        font-size: 18px;
    }
    
    .main-slider-container {
        padding: 30px 0;
    }
    
    .main-slider-prev,
    .main-slider-next {
        width: 40px;
        height: 40px;
    }
    
    .main-slider-prev:after,
    .main-slider-next:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .main-banner {
        height: 300px;
    }
    
    .main-banner__title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .main-banner__subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .main-banner__btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .slide-image {
        height: 200px;
    }
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    color: white;
}
.main-banner-swiper{
      background: linear-gradient(30deg, #F2EEE5 0%, rgba(67, 148, 164, 0.3294117647) 90%);
}
/* Кнопка "Больше" для галереи - по центру и ниже фотографий */
.gallery__more-btn {
    display: block;
    margin: 40px auto 0 auto;
    padding: 14px 35px;
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.gallery__more-btn:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.25);
    border-color: #0056b3;
}

.gallery__more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.2);
}

/* Добавляем стрелку после текста */
.gallery__more-btn::after {
    content: ' →';
    font-weight: 400;
    transition: transform 0.3s ease;
    display: inline-block;
}

.gallery__more-btn:hover::after {
    transform: translateX(5px);
}

/* Адаптивность для кнопки "Больше" */
@media (max-width: 992px) {
    .gallery__more-btn {
        margin-top: 35px;
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .gallery__more-btn {
        margin-top: 30px;
        padding: 11px 25px;
        font-size: 15px;
        width: 90%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .gallery__more-btn {
        margin-top: 25px;
        padding: 10px 22px;
        font-size: 14px;
        border-width: 1.5px;
    }
}
.main-slider__image img {
    max-width: 100%;
    max-height: 443px;
    border-radius: 5px;
}
.gallery.--padding-block {
    background: #F2EEE5;;
    padding: 100px 0;
}