@charset "UTF-8";
body {
    font-family: 'Poppins', sans-serif;
    color: #0c0c0c;
}

a {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.silUsl {
    display: block;
    padding: 10px 40px;
    background-color: #393938;
    color: #ffffff;
    transition: all 0.3s;
    border: 1px solid transparent;
    margin-top: 15px;
    text-align: center !important;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

#myBtn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 9999;
}

.gtt {
    display: inline-block;
    box-sizing: border-box;
    padding: 0 25px;
    margin: 0 15px 15px 0;
    outline: none;
    border: 1px solid #88a19d;
    border-radius: 50px;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #88a19d;
    background-color: #fff;
    box-shadow: 0 4px 6px #88a19d, 0 1px 3px #88a19d;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    vertical-align: top;
    transition: box-shadow 0.2s;
}

.layout_padding {
    padding-top: 125px;
    padding-bottom: 125px;
}

.layout_padding2 {
    padding-top: 45px;
    padding-bottom: 45px;
}

.layout_padding2-top {
    padding-top: 45px;
}

.layout_padding2-bottom {
    padding-bottom: 45px;
}

.layout_padding-top {
    padding-top: 125px;
}

.layout_padding-bottom {
    padding-bottom: 125px;
}

.color_white {
    color: #ffffff !important;
}

.heading_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Raleway', sans-serif;
}
.heading_container h1 {
    color: #000000;
    position: relative;
    font-size: 2.5rem;
    text-transform: uppercase;
}
.heading_container h1 span {
    color: #393938;
}
.heading_container h1::before {
    content: '';
    width: 1px;
    height: 75px;
    position: absolute;
    top: -27px;
    right: 0;
    transform: rotate(-30deg);
    background-color: #000000;
    background-size: cover;
}
.heading_container h2 {
    color: #000000;
    position: relative;
    font-size: 2.5rem;
    text-transform: uppercase;
}
.heading_container h2 span {
    color: #393938;
}
.heading_container h2::before {
    content: '';
    width: 1px;
    height: 75px;
    position: absolute;
    top: -27px;
    right: 0;
    transform: rotate(-30deg);
    background-color: #000000;
    background-size: cover;
}

/*header section*/
.hero_area {
    height: 100vh;
    position: relative;
}
.hero_area .custom_nav-box {
    position: absolute; /* Используем fixed, чтобы блок оставался на месте при прокрутке */
    right: 0; /* Прикрепляем к правому краю */
    width: 74%; /* Растягиваем по всей ширине */
    height: 90px; /* Высота блока, так как он будет горизонтальным */
    display: flex;
    flex-direction: row; /* Изменяем направление на горизонтальное */
    align-items: center;
    background-color: #88a19d; /* Цвет фона */
    z-index: 99999999;
}
.hero_area .custom_nav-box .custom_menu-btn {
    margin-right: auto; /* Кнопка меню останется слева */
    padding: 10px; /* Отступы вокруг кнопки */
}
.hero_area .custom_nav-box .custom_sidenav-container {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    width: calc(100% - 90px); /* Занимаем оставшееся пространство, чтобы меню заполнило весь блок */
}
.hero_area .custom_nav-box .navbar-nav {
    display: flex;
    flex-direction: row; /* Направление горизонтальное */
}
.hero_area .custom_nav-box .nav-item {
    margin-right: 15px; /* Отступы между элементами меню */
}
.hero_area .custom_nav-box .nav-link {
    color: #5d524b;
    text-transform: uppercase;
    padding: 10px 15px;
    text-align: center;
    writing-mode: horizontal-tb; /* Изменяем направление текста на горизонтальное */
}
.hero_area .hero_container {
    background-image: url(http://perepletenya.ru/test/wp-content/uploads/2025/04/hero-bg.png);
    background-size: cover;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Выпадающее меню */
.has-dropdown {
    position: relative;
}

.has-dropdown::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/menu_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.3s all;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(10px, -50%);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

.dropdown li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown a:hover {
    background: #f8f8f8;
}

/* Показываем dropdown при наведении */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.has-dropdown:hover::after {
    transform: translate(10px, -50%) rotate(180deg);
}

.sub_page .hero_area {
    height: auto;
    background-position: center top;
}
.sub_page .hero_area .hero_container {
    background: none;
    background-color: #88a19d;
}

.header_section {
    padding: 10px 0;
    background: #88a19d;
}
.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}
.header_section .nav_container {
    margin: 0 auto;
}
.header_section #navbarSupportedContent .nav-link {
    text-align: center;
    color: #000000;
}
.header_section #navbarSupportedContent .user_option a {
    color: #000000;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:hover,
a:focus {
    color: initial;
}

.btn,
.btn:focus {
    outline: none !important;
    box-shadow: none;
}

.navbar-brand {
    display: flex;
    align-items: flex-end;
}
.navbar-brand img {
    width: 40px;
    margin-right: 10px;
}
.navbar-brand span {
    font-weight: bold;
    color: #393938;
    font-size: 22px;
}

.custom_nav-container {
    z-index: 99999;
    padding: 0;
    justify-content: space-between;
}

.custom_nav-container .navbar-toggler {
    outline: none;
}

.lg_toggl-btn {
    background-color: transparent;
    border: none;
    outline: none;
    width: 56px;
    height: 40px;
    cursor: pointer;
}
.lg_toggl-btn:focus {
    outline: none;
}
.lg_toggl-btn .navbar-toggler-icon {
    background-image: url(http://perepletenya.ru/test/wp-content/uploads/2025/04/menu.png);
    background-size: 40px;
    width: 30px;
    height: 30px;
}

.user_option {
    display: flex;
    align-items: center;
}
.user_option a {
    color: #535353;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    margin-right: 15px;
}
.user_option .nav_search-btn {
    background-image: url(http://perepletenya.ru/test/wp-content/uploads/2025/04/search-icon.png);
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
    background-image: url(http://perepletenya.ru/test/wp-content/uploads/2025/04/menu.png);
    background-size: 35px;
    width: 35px;
    height: 35px;
}
/* кнопка "Что входит"*/
.accordion-button {
    display: inline-block;
    padding: 0px 20px;
    background-color: #393938;
    color: #ffffff;
    transition: all 0.3s;
    border: 1px solid transparent;
    margin-top: 35px;
	font-size: 15px;
	text-transform: uppercase;
}
.accordion-button:hover p {
  color: #000000; /* меняем цвет при наведении */
}

/* кнопка "Портфолио" */
.portfolio-button {
  display: inline-block;
  padding: 10px 40px;
  background-color: #393938;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  margin-top: 35px;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none; /* убираем подчёркивание */
}
/* Общие стили для кнопок */
#phrasesCarousel .carousel-control-prev,
#phrasesCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #393938; /* тёмный квадрат */
  opacity: 1;
  border: 0px;
}

/* Левая стрелка */
#phrasesCarousel .carousel-control-prev-icon {
  background-image: url("http://perepletenya.ru/test/wp-content/uploads/2025/04/prev.png");
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: none;
}

/* Правая стрелка */
#phrasesCarousel .carousel-control-next-icon {
  background-image: url("https://perepletenya.ru/test/wp-content/uploads/2025/04/next.png");
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: none;
}

/* При наведении делаем фон чуть светлее */
#phrasesCarousel .carousel-control-prev:hover,
#phrasesCarousel .carousel-control-next:hover {
  background-color: #88a19d;
}

.portfolio-button:hover {
  color: #000000;           /* текст станет чёрным */
  background-color: #ffffff; /* фон станет белым */
  border: 1px solid #393938; /* добавим обводку */
}

/*end header section*/
/* slider section */
.slider_section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.slider_section .main-info {
    color: #ffffff;
    padding: 35px;
    flex: 1;
    max-width: 700px;
}
.slider_section .main-info h1 {
    font-size: 3.5rem !important;
}
.slider_section .detail-box {
    color: #ffffff;
    padding: 35px;
}
.slider_section h2 {
    font-size: 3rem;
    font-weight: bold;
}
.slider_section .detail-box h1 {
    font-size: 4.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #393938;
    text-align: left;
}

.slider_section .detail-box h1 span {
    color: #393938;
    text-align: left;
}
.slider_section .detail-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #393938;
    color: #ffffff;
    transition: all 0.3s;
    border: 1px solid transparent;
    margin-top: 35px;
}
.slider_section .detail-box a:hover {
    background-color: transparent;
    border-color: #393938;
    color: #393938;
}
.slider_section .img-box {
    display: none;
}
.slider_section .img-box img {
    width: 100%;
}
.slider_section #carouselExampleControls {
    width: 100%;
    position: unset;
}
.slider_section .carousel_btn-container {
    width: 90px;
    height: 50px;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    right: 35px;
    z-index: 999;
    transform: translateY(-50%);
}
.slider_section .carousel_btn-container .carousel-control-prev,
.slider_section .carousel_btn-container .carousel-control-next {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center;
    background-color: #393938;
    position: unset;
}
.slider_section .carousel_btn-container .carousel-control-prev:hover,
.slider_section .carousel_btn-container .carousel-control-next:hover {
    background-color: #88a19d;
    border-color: #ffffff;
}
.slider_section .carousel_btn-container .carousel-control-prev {
    background-image: url(http://perepletenya.ru/test/wp-content/uploads/2025/04/prev.png);
}
.slider_section .carousel_btn-container .carousel-control-next {
    background-image: url(http://perepletenya.ru/test/wp-content/uploads/2025/04/next.png);
}
.slider_section ol.carousel-indicators {
    left: initial;
    bottom: initial;
    top: 10%;
    right: 85px;
    flex-direction: column;
    margin: 0;
}
.slider_section ol.carousel-indicators.indicator-2 {
    top: initial;
    right: initial;
    bottom: 10%;
    left: 85px;
}
.slider_section ol.carousel-indicators li {
    width: 25px;
    height: 25px;
    text-indent: 0px;
    text-align: center;
    line-height: 25px;
    color: #ffffff;
    margin: 0;
    background-color: transparent;
    opacity: 1;
    border: none;
}
.slider_section ol.carousel-indicators li.indicator-li-1 {
    border-bottom: 1px solid #ffffff;
}
.slider_section ol.carousel-indicators li.active {
    color: #88a19d;
}

.service_section {
    font-family: 'Raleway', sans-serif;
}
.service_section .service_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.service_section .service_container .box {
    margin: 45px 15px 0 15px;
    flex-basis: 30%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.service_section .service_container .box .img-box {
    width: 125px;
    height: 135px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 15px;
}
.service_section .service_container .box .img-box img {
    max-width: 100%;
    max-height: 100%;
}
.service_section .service_container .box .detail-box h4 {
    text-transform: uppercase;
    min-height: 58px;
    display: flex;
    align-items: center;
}
.service_section .service_container .box .detail-box a {
    display: inline-block;
    padding: 10px 40px;
    background-color: #393938;
    color: #ffffff;
    transition: all 0.3s;
    border: 1px solid transparent;
    margin-top: 15px;
}
.service_section .service_container .box .detail-box a:hover {
    background-color: transparent;
    border-color: #393938;
    color: #393938;
}

.video-section {
    font-family: 'Raleway', sans-serif;
    padding: 45px 0;
}

.video-section .plyr {
    width: 100%;
    height: 100%;
}
.video-section .plyr {
    --plyr-color-main: #393938;
}

.video_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.video_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video_wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* квадрат */
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* видео заполняет квадрат */
}

.video_title {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    width: 100%;
}

.video_desc {
    margin-top: 6px;
    font-size: 14px;
    text-align: left;
    width: 100%;
}

.video_desc a {
    font-size: inherit;
    text-align: inherit;
    color: #393938;
    text-transform: none;
    text-decoration: underline;
}
.video_desc p {
    width: 100%;
    margin-bottom: 0.5em;
}

.about_section {
    font-family: 'Raleway', sans-serif;
    padding-bottom: 30px;
    padding-top: 70px;
    background-color: #88a19d;
}

.about_section.about_section--white {
    background: white;
}

.about_section .box {
    background-color: #88a19d;
}

.about_section.about_section--white .box {
    background: white;
}

.about_section .box .detail-box {
    flex: 1;
    padding: 45px;
}
.about_section .box .detail-box p {
    margin-top: 35px;
}
.about_section .box .detail-box a {
    display: inline-block;
    padding: 10px 40px;
    background-color: #393938;
    color: #ffffff;
    transition: all 0.3s;
    border: 1px solid transparent;
    margin-top: 35px;
}
.about_section .box .detail-box a:hover {
    background-color: transparent;
    border-color: #393938;
    color: #393938;
}
.about_section .box .img-box {
    flex: 2;
}
.about_section .box .img-box img {
    width: 100%;
}

.about_section .box .detail-box .about-text {
    max-width: 1600px;
}

.about_section .box .detail-box .about-text p {
    margin-top: 0;
}

.team-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
}

.team-list__item {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.team-list__item:nth-child(odd) {
    flex-direction: row-reverse;
}

.team-list__item__descr,
.team-list__item__img {
    width: 50%;
}

.team-list__item__img {
    aspect-ratio: 1 / 1;
    object-position: top;

    max-height: 620px;
}

.team-list__item__img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.spl_section {
    position: relative;
    font-family: 'Raleway', sans-serif;
}
.spl_section .spl_container {
    display: flex;
    padding-left: 10%;
    margin-top: 45px;
    position: relative;
}
.spl_section .spl_container .box {
    text-align: center;
    margin: 0 10px;
}
.spl_section .spl_container .box .img-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.spl_section .spl_container .box .img-box img {
    width: 100%;
}
.spl_section .spl_container .box .img-box .social_container {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(136, 161, 157, 0.9);
}
.spl_section .spl_container .box .img-box .social_container .social-box {
    display: flex;
}
.spl_section .spl_container .box .img-box .social_container .social-box a img {
    width: 30px;
    margin: 0 5px;
}
.spl_section .spl_container .box .detail-box {
    margin-top: 15px;
}
.spl_section .spl_container .box .detail-box h5 {
    font-weight: bold;
}
.spl_section .spl_container .box:hover .img-box .social_container {
    display: flex;
}
.spl_section .owl-carousel {
    position: unset;
}
.spl_section .owl-carousel .item {
    width: 350px;
}
.spl_section .owl-carousel .owl-nav {
    position: absolute;
    top: 23%;
    left: 0;
    display: flex;
    flex-direction: column;
}
.spl_section .owl-carousel .owl-nav button.owl-next,
.spl_section .owl-carousel .owl-nav button.owl-prev {
    width: 55px;
    height: 55px;
    margin: 3px 0;
    background-color: #000000;
    border-radius: 100%;
    outline: none;
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.spl_section .owl-carousel .owl-nav button.owl-next span,
.spl_section .owl-carousel .owl-nav button.owl-prev span {
    display: none;
}
.spl_section .owl-carousel .owl-nav button.owl-next:hover,
.spl_section .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #88a19d;
}
.spl_section .owl-carousel .owl-nav button.owl-prev {
    background-image: url(http://perepletenya.ru/test/wp-content/uploads/2025/04/prev-angle.png);
}
.spl_section .owl-carousel .owl-nav button.owl-next {
    background-image: url(http://perepletenya.ru/test/wp-content/uploads/2025/04/next-angle.png);
}

.health_section {
    padding-top: 20px;
}

.health_section .detail-container .detail-box {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}
.health_section .detail-container .detail-box .detail {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.health_section .detail-container .detail-box .detail .detail_img-box {
    width: 90px;
    min-width: 90px;
    display: flex;
    justify-content: center;
    margin-right: 1em;
}
.health_section .detail-container .detail-box .detail .detail_img-box img {
    object-fit: contain;
    max-width: 100%;
}
.health_section .detail-container .detail-box .detail .text p {
    margin: 0;
}
.health_section .detail-container a {
    display: inline-block;
    padding: 10px 40px;
    background-color: #393938;
    color: #ffffff;
    transition: all 0.3s;
    border: 1px solid transparent;
    margin-top: 35px;
}
.health_section .detail-container a:hover {
    background-color: transparent;
    border-color: #393938;
    color: #393938;
}
.health_section .img-box img {
    width: 100%;
}

.subscribe_section .subscribe_container {
    display: flex;
    align-items: center;
    background-color: #88a19d;
    margin-bottom: 30px;
}
.subscribe_section .subscribe_container .detail-box {
    flex: 1;
    padding: 45px 35px 45px 75px;
}
.subscribe_section .subscribe_container .detail-box .heading_container h1::before {
    right: -6px;
}
.subscribe_section .subscribe_container .detail-box .heading_container h2::before {
    right: -6px;
}
.subscribe_section .subscribe_container .detail-box form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 35px;
}
.subscribe_section .subscribe_container .detail-box form input {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    border: none;
    outline: none;
}
.subscribe_section .subscribe_container .detail-box form button {
    display: inline-block;
    padding: 12px 60px;
    background-color: #393938;
    color: #ffffff;
    transition: all 0.3s;
    border: 1px solid transparent;
    text-transform: uppercase;
    margin-top: 25px;
}
.subscribe_section .subscribe_container .detail-box form button:hover {
    background-color: transparent;
    border-color: #393938;
    color: #393938;
}
.subscribe_section .subscribe_container .img-box {
    flex: 1.5;
}
.subscribe_section .subscribe_container .img-box img {
    width: 100%;
}

.client_section .heading_container h1::before {
    right: 90px;
}
.client_section .heading_container h2::before {
    right: 90px;
}
.client_section .box {
    display: flex;
    align-items: flex-start;
    width: 85%;
    margin: 45px auto 0 auto;
}
.client_section .box .client_id {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 30px;
}
.client_section .box .client_id .img-box {
    width: 120px;
}
.client_section .box .client_id .img-box img {
    width: 100%;
}
.client_section .box .client_id .name {
    margin-top: 10px;
}
.client_section .box .client_id .name h6 {
    font-weight: bold;
}
.client_section .box .client_id .name img {
    width: 30px;
}
.client_section .box .client_detail {
    margin-top: 10px;
    padding: 20px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

/* review section*/
.reviews-swiper {
    padding-top: 20px !important;
}

.reviews_section {
    padding-top: 24px;
    margin-bottom: 30px;
}
.reviews_section .swiper-slide {
    height: unset;
}

.reviews_section .swiper-pagination {
    margin-top: 20px;
    position: relative;
    --swiper-theme-color: #88a19d;
}

.review-card {
    height: 100%;
    background: #fff;
    padding: 20px;
    /* border-radius: 12px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-card img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}

.review-photo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.review-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.review-name {
    margin-bottom: 10px;
    text-align: center;
}
.review-text {
    font-size: 14px;
    color: #555;
}

/* contact section */
.contact_section .row {
    align-items: center;
}
.contact_section .contact_form-container {
    margin-top: 45px;
}
.contact_section .contact_form-container input {
    border: none;
    outline: none;
    color: #000000;
    height: 45px;
    width: 100%;
    margin: 15px 0;
    padding-left: 15px;
    background-color: #ffffff;
    box-shadow: -10px 0 15px 9px rgba(0, 0, 0, 0.03);
}
.contact_section .contact_form-container input::-moz-placeholder {
    color: #000000;
    text-transform: uppercase;
}
.contact_section .contact_form-container input::placeholder {
    color: #000000;
    text-transform: uppercase;
}
.contact_section .contact_form-container input.message_input {
    height: 120px;
}
.contact_section .contact_form-container button {
    display: inline-block;
    padding: 10px 50px;
    background-color: #88a19d;
    color: #000000;
    transition: all 0.3s;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 35px;
}
.contact_section .contact_form-container button:hover {
    background-color: transparent;
    border-color: #88a19d;
    color: #88a19d;
}
.contact_section .img-box img {
    width: 100%;
}

/* end contact section */
.map_section {
    height: 400px;
}
.map_section .map_container {
    height: 100%;
}
.map_section .map_container .map-responsive {
    height: 100%;
}

/* info section */
.info_section {
    position: relative;
}
.info_section .social_box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-50%);
}
.info_section .social_box a {
    margin: 3px 0;
}
.info_section a {
    text-transform: none;
}
.info_section .info_container {
    background-color: #2d2d2d;
    color: #ffffff;
}
.info_section h6 {
    font-weight: bold;
}
.info_section h6 {
    margin-bottom: 12px;
    font-size: 18px;
}
.info_section p {
    color: #cbc9c9;
}
.info_section ul {
    padding: 0;
}
.info_section ul li {
    list-style-type: none;
    margin: 3px 0;
}
.info_section ul li a {
    color: #cbc9c9;
}
.info_section ul li a:hover {
    color: #ffffff;
}
.info_section .info_link-box a {
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.info_section .info_link-box a:hover {
    color: #ffffff;
}
.info_section .info_link-box a img {
    margin-right: 15px;
}
.info_section .info_link-box a span {
    color: #cbc9c9;
}
.info_section .info_link-box a:hover span {
    color: #ffffff;
}

/* end info section */
/* footer section*/
.footer_section {
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}
.footer_section .social_container {
    display: none;
    justify-content: center;
    margin-top: 25px;
}
.footer_section .social_container .social-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_section .social_container .social-box a {
    margin: 0 3px;
}

.footer_section p {
    color: #363636;
    margin: 0;
    padding: 25px 0 20px 0;
    margin: 0 auto;
    text-align: center;
}

.footer_section a {
    color: #363636;
}

.form__bottom {
    display: flex;
    flex-direction: column;
}

.h-captcha {
    margin-top: 5px;
}

/* end footer section*/
.custom_sidenav-container {
    transition: width 0.5s;
    transform: translateY(-1000px);
    opacity: 0;
    transition: all 0.3s ease-in;
}

.lg_nav-toggle {
    transform: translateY(0);
    opacity: 1;
}

.custom_menu-btn button {
    margin-top: 12px;
    outline: none;
    border: none;
    background-color: transparent;
}

.custom_menu-btn button span {
    display: block;
    width: 34px;
    height: 3.5px;
    background-color: #393938;
    margin: 8.5px 0;
    transition: all 0.3s;
}

.custom_menu-btn .s-2 {
    transition: all 0.1s;
}

.menu_btn-style button .s-1 {
    transform: rotate(45deg) translate(7px, 10px);
}

.menu_btn-style button .s-2 {
    transform: translateX(-100px);
}

.menu_btn-style button .s-3 {
    transform: rotate(-45deg) translate(7px, -10px);
} /*# sourceMappingURL=style.css.map */

.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* если текст длинный */
}

.modal-content {
  position: relative;
  max-width: 900px; /* увеличил, чтобы картинка+текст помещались */
  width: 90%;
  margin: 20px auto;
  background: #FFFFFF; /* фон убираем, используем прозрачный */
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: #ff0000;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  border: 2px solid white;
  transition: transform 0.2s;
  z-index: 1100;
}

.close-btn:hover {
  transform: scale(1.1);
}

.card-img-top {
  width: 128px!important;
}

.wp-post-image {
    display: none;
}

@media (max-width: 767px) {
  #imageModal {
    display: none !important;
  }
}