/* landing.css */

@font-face {
    font-family: 'Murecho';  src: url('/fonts/Murecho-Regular.ttf') format('truetype');font-weight: normal; font-style: normal; font-display: swap;
}

@font-face {
    font-family: 'Murecho'; src: url('/fonts/Murecho-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap;
}

@font-face {
    font-family: 'Murecho'; src: url('/fonts/Murecho-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Murecho'; src: url('/fonts/Murecho-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Murecho'; src: url('/fonts/Murecho-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Murecho'; src: url('/fonts/Murecho-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Murecho'; src: url('/fonts/Murecho-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Murecho'; src: url('/fonts/Murecho-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Onest'; src: url('/fonts/Onest-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Onest'; src: url('/fonts/Onest-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Onest'; src: url('/fonts/Onest-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Onest'; src: url('/fonts/Onest-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Onest';  src: url('/fonts/Onest-Regular.ttf') format('truetype');font-weight: normal; font-style: normal; font-display: swap;
}
main{padding-bottom: 0 !important; margin-top:0 !important;}
.rounded-custom{
    border-radius: 0.25rem !important;
}
.bg-light-green{
    background-color: #E8F7EE;
}
.bg-light-rose{
    background-color: #FBEDF4;
}
.bg-light-peach{
    background-color: #FBF9ED;
}
.text-animation {
    font-weight: bold;
    background-color: #101d24;
    background-image: url(/images/site/pereliv17.jpg);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    padding-right: 5px;
    margin-right: -5px;
    -webkit-text-stroke: 1px #10261F;
}
.custom-shadow {
    border: 1px solid #cccccc;
}

.text-animation::before {
    content: attr(data-text); /* Копия текста */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #10261F; /* Цвет обводки */
    -webkit-text-stroke: 1px #10261F; /* Толщина обводки */
    opacity: 0.9;
}
a.word-animation {text-decoration: none; font-size: 50px;}
.word-animation {
    background-color: #101d24;
    background-image: url(/images/site/pereliv14.jpg);
    background-repeat: repeat;
    background-size: 2048px;
    animation: /*diagonal-flow*/horizontal-flow 60s infinite linear;
    font-weight: bold;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-right: 5px;
    margin-right: -5px;
    color: #d76a74;
    opacity: 0.9;
}
.client-item:hover{
    background-color: #E8F7EE;

}
@keyframes horizontal-flow {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
/*@keyframes diagonal-flow {
    0% {
        background-position: 0 100%;
    }
    100% {
        background-position: 100% 0;
    }
}*/
/* Основные стили панели навигации */
.panel {
    width: 100%;
    background-color: #10261F;

}

.panel .sections {
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.panel .sections .right{
    font-size: 1.1rem;
}


.panel .sections .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.panel .sections .menu li {
    margin-left: 20px;
}

.panel .sections .menu li a {
    /*color: #333;*/
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}

/* Базовая стилизация мобильного меню */
.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #10261F;
}

.mobile-link {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
}
/* Базовые стили для иконки-бургера */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger-icon {
    position: relative;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: background-color 0.3s;
}

.burger-icon::before,
.burger-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: transform 0.3s, top 0.3s, opacity 0.3s;
}

/* Верхняя и нижняя полоски */
.burger-icon::before {
    top: -8px;
}

.burger-icon::after {
    top: 8px;
}

/* Активное состояние: иконка-бургер превращается в крест */
.menu-toggle.active .burger-icon {
    background-color: transparent; /* Скрываем среднюю линию */
}

.menu-toggle.active .burger-icon::before {
    transform: translateY(-2px) rotate(45deg); /* Первая линия поворачивается */
    top: 0; /* Центрируем первую линию */
}

.menu-toggle.active .burger-icon::after {
    transform: translateY(-2px) rotate(-45deg); /* Вторая линия поворачивается */
    top: 0; /* Центрируем вторую линию */
}

.custom-dropdown{
    top: 20px !important;
    border-radius: 10px !important;
    width: 330px;
}

/* Основной стиль для кастомного выпадающего списка */
.custom-dropdown {
    width: 300px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.custom-dropdown .item {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
}

.custom-dropdown .item:last-child {
    border-bottom: none;
}

.custom-dropdown .title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
}

.custom-dropdown .description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.custom-dropdown .button-group {
    display: flex;
    gap: 10px;
}

.custom-dropdown .pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 14px;
    background-color: #61A088;
    border: 1px solid #1e7e34;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.custom-dropdown .pill:hover {
    background-color: #319E74;
}

/* Стили для мобильной навигации */
.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Меняем порядок элементов на мобильных устройствах */
.mobile-nav .left {
    order: 2; /* Перемещаем блок с входом и регистрацией вправо */
}

.mobile-nav .right {
    order: 1; /* Кнопка меню остаётся слева */
}

/* Скрытое мобильное меню */
.mobile-menu {
    display: none;
    background-color: transparent;
    padding: 10px 20px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Показ мобильного меню */
.mobile-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Стили для элементов меню */
.mobile-menu .menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .menu-items li {
    padding: 10px 0;
}

.mobile-menu .menu-items li a {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
}

/* Стили для иконки-бургера */
/*.burger-icon {*/
/*    width: 30px;*/
/*    height: 2px;*/
/*    background-color: #333;*/
/*    position: relative;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.burger-icon::before,*/
/*.burger-icon::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 30px;*/
/*    height: 2px;*/
/*    background-color: #333;*/
/*    left: 0;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.burger-icon::before {*/
/*    top: -8px;*/
/*}*/

/*.burger-icon::after {*/
/*    top: 8px;*/
/*}*/

a.mobile-link:hover{
    text-decoration: none;
    color: #ffffff;
}
.mobile-menu .menu-items li {
    padding: 10px 0;
}

.mobile-menu .menu-items li a {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
}


.fast {
    transition: top 0.2s ease;
}

body {
    font-family: 'Onest', sans-serif;

}
.container-fluid{
    padding-left: 0;
    padding-right: 0;
}
/* Hero Section */
.hero {
/*    background: linear-gradient(45deg, #f6f9fc, #c6f6db);*/
    /*background-color: #10261F;*/
    background-color: #10261F;
    color: #fff;
}
.hero .lead{
    margin-top: 5px;
    font-size: 12px !important;
}
.fix-max-row{
   /* max-height: 220px;*/
}

.my-svg {
    width: 100%;
    height: auto;
    max-width: 226px;
}

@media (max-width: 768px) {
    .my-svg {
        max-width: 172px;
    }
}

@media (max-width: 480px) {
    .my-svg {
        max-width: 128px;
    }
}



.product-link-tab{
    font-size: 20px !important;
    line-height: 32px;
    font-weight: 600;
    /*color: #aaf8da;*/
    color: #2e996a;
    background-color: transparent !important;
}
.border-bottom-pill-tabs{
    border-bottom: 1px solid #d9c3f3 !important;
}
a.product-link-tab:hover{
    color: #FFFFFF;
}
a.product-link-tab.active::after {
    content: "";
    display: inline-block;
    width: 100%;
    background: #fff;
    height: 3px;
    position: absolute;
    bottom: -2px;
    left: 0;
    border-radius: 1px;
}
/* Контейнер с контентом */
.item-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* чтобы элементы внутри контейнера растягивались */
    height: 100%; /* это позволит растянуть содержимое по всей высоте */
}
p.my-p{
    text-align: left !important;
    padding-left: 12px;
    padding-top: 35px;
}
/* Контейнер для видео, выравнивание по высоте */
.slider-height>a>img {
    height: 100%;
    /*border-radius: 20px;*/
    border-radius: 0.25rem;
    box-shadow: 0px 4px 30px rgba(93, 39, 174, 0.25);
    border: 0;
}

.modal-custom-size.modal-dialog {
    max-width: 80% !important; /* Установите нужный процент или фиксированное значение ширины */
}
.gap-3{
    margin-top: 20px;
}

#hero {
    background-color: #10261F;
    height: 100vh; /* Занимает всю высоту экрана */
    display: flex; /* Центрирование содержимого */
    flex-direction: column;
    justify-content: center; /* Центрирование по вертикали */
    align-items: center; /* Центрирование по горизонтали */
    text-align: center; /* Текст по центру */
}

 h1 {
    font-size: 4.5rem !important;
    font-weight: bold !important;
    margin-bottom: 0.5rem !important;
     letter-spacing: 2.1px;
}

 p.hero-p{
     color:white; font-size: 27px;
 }

.hero .btn {
    /*border-radius: 20px;*/
    border-radius: 0.25rem;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
}
.reg-btn{
    letter-spacing: 1.1px;
}
/* Контейнер с фоном-графиком */
.value-proposition-grid {
    position: relative;
    padding: 60px 20px;
    border-radius: 20px;
    overflow: hidden;
    /* Заменяем на вашу картинку с графиками */
    background-image: url('/images/site/hero-chart.webp');
    background-size: cover;
    background-position: top;
}

/* Затемнение фона для читаемости текста */
.value-proposition-grid::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 30, 20, 0.55); /* Темно-зеленый оверлей как на макете */
    z-index: 1;
}

.value-proposition-grid .row {
    position: relative;
    z-index: 2; /* Выносим текст над оверлеем */
}

/* Стиль карточек (Glassmorphism) */
.prop-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.prop-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4CAF50; /* Зеленый акцент как на скриншотах */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prop-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}
/* slider section*/

.section_logo-slider {
    position: relative;
    overflow: hidden;
}

.logos-slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clients-grid-wrapper {
    overflow: hidden; /* Скрываем элементы за пределами видимой области */
    position: relative;
    width: 100%; /* Растягиваем слайдер на всю ширину контейнера */
    height: 80px; /* Высота контейнера */
}

.clients-grid {
    display: flex;
    animation: slide 35s linear infinite;
    gap: 20px; /* Расстояние между элементами */
}

.client-item {
    display: flex;
    align-items: center;
    min-width: 170px; /* Задаем фиксированную ширину для элементов */
    background-color: #f5f5f5; /* Светлый фон */
    /*border-radius: 8px;*/
    border-radius: 0.25rem;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.client-icon {
    font-size: 24px;
    color: #007bff; /* Цвет иконки */
    margin-right: 10px;
}

.client-text {
    font-size: 14px;
    font-weight: 500;
    color: #333; /* Цвет текста */
}



.logo-animate {
    animation: slide 35s infinite linear;
}

.logo-animate-alt {
    animation: slide 35s infinite linear reverse;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.slider-height {
    position: relative;
    display: inline-block;
}

.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background-color: rgba(0, 0, 0, 0.6); /* Полупрозрачный фон */
    border-radius: 50%; /* Круглый фон */
    cursor: pointer;
}

.overlay-icon svg {
    fill: white; /* Цвет иконки */
    width: 40px; /* Размер иконки */
    height: 40px;
}

.slider-height a {
    display: block;
    position: relative;
}

.slider-height a:hover .overlay-icon {
    background-color: rgba(255, 0, 0, 0.6);
    /*background-color: rgba(52, 152, 219, 0.6);  Цвет фона при наведении */
}

/* slider section*/
/* Features Section */
#features {
    position: relative;
    background-image: url('/images/site/features.webp'); /* Ваше изображение */
    background-size: cover; /* Масштабирование для покрытия всей секции */
    background-repeat: no-repeat; /* Избегает повторов изображения */
    background-position: center; /* Центровка изображения */
    padding: 50px 0; /* Отступы внутри секции */
    z-index: 1;
}

#features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #10261F, #c0bfbf); /* Белый полупрозрачный слой для эффекта */
    opacity: 0.9;
    z-index: 2;
    pointer-events: none; /* Позволяет взаимодействовать с элементами внутри секции */
}

.features .container {
    position: relative;
    z-index: 3; /* Гарантирует, что текст находится поверх фонового слоя */
}
.features .icon {
    font-size: 3rem;
    color: #3498db;
}

.features h3 {
    margin-top: 1rem;
    font-weight: 600;
}

.features .feature-box {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    background: #f9f9f9;
}
.features .feature-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.features .feature-content p {
    margin-bottom: 5px;
}
/* Tariff */
.tariff-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tariff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.tariff-header {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}
.tariff-info {
    font-size: 0.9rem;
    color: #6c757d;
}
.tariff-price {
    font-size: 1.8rem;
    font-weight: bold;
}
.tariff-duration {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
}
/* Базовая карточка с глубокой тенью */
.tariff-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15);
}

/* Более выраженная тень при наведении */
.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 10px rgba(0, 0, 0, 0.2);
}

/* Дополнительные стили для акцента центральной карточки */
.shadow-deep {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Анимация для эффекта "всплытия" */
.tariff-card:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Фокус на центральной карточке */
.tariff-card:focus-within {
    transform: scale(1.07) translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 10px 15px rgba(0, 0, 0, 0.25);
}

/* Tariff */

/* Slider Section */
.carousel-indicators li{
    background-color: #131313;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: white; /* Устанавливаем черный цвет для фона стрелок */
    background-image: none; /* Убираем стандартное изображение стрелок */
    width: 30px; /* Устанавливаем ширину стрелок */
    height: 30px; /* Устанавливаем высоту стрелок */
    border-radius: 50%; /* Закругляем края для эстетики */
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: ''; /* Убираем стандартный контент */
    border: solid black; /* Создаем стрелки через границы */
    border-width: 0 4px 4px 0; /* Настройка толщины сторон */
    display: inline-block;
    padding: 6px; /* Увеличиваем размер стрелки */
}

.carousel-control-prev-icon::before {
    transform: rotate(135deg); /* Поворачиваем влево */
    margin-left: 2px; /* Сдвиг для центровки */
}

.carousel-control-next-icon::before {
    transform: rotate(-45deg); /* Поворачиваем вправо */
    margin-right: 2px; /* Сдвиг для центровки */
}

.modal-dialog.modal-lg {
    max-width: 100%;
    width: 90%;
    height: 90%;
}
.modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
}
.carousel-inner img {
    object-fit: contain;
    max-height: 100vh;
}
.carousel-inner{
    padding-top: 5px;
}
/* Ограничить размер изображений в модальной карусели */
#carouselModalInner .carousel-inner img,
#carouselTwoInner .carousel-inner img {
    max-width: 90%; /* Изображение займет 90% ширины модального окна */
    max-height: 90vh; /* Изображение займет максимум 80% высоты экрана */
    margin: auto; /* Центрирование изображения */
    object-fit: contain; /* Сохранение пропорций */
}

/* Slider Section */



/* About Section */
.about {
    background-color: #f8f9fa;
}

/* Testimonials */
.testimonials blockquote {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
    font-style: italic;
}

.testimonials .blockquote-footer {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #888;
}

/* contact-form */
.contact-form-section {
    background-color: #ffffff;
}

.contact-form-section h1 {
    font-size: 2.5rem;
    color: #10261F;
}

.contact-form-section .description {
    font-size: 1rem;
    color: #6c757d;
}

.contact-form-section form {
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.contact-form-section form label {
    color: #495057;
}

.contact-form-section form .form-control {
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.contact-form-section form .form-control:focus {
    border-color: #61A088;
    box-shadow: 0 0 5px rgba(97, 160, 136, 0.5);
}

.contact-form-section form .btn {
    background-color: #61A088;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-form-section form .btn:hover {
    background-color: #4e7d66;
}

.my-phone, .my-last-name{
    position: fixed;
    bottom: -200px;
    right: -2000px;
}
/* Стили для кнопки вверх*/
.scroll-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: none;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 32px;
    font-weight: 500;
    width: 50px;
    height: 50px;
    background-color: #dfb308;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 1000;
}

/* Footer */
.footer {
    background: rgba(183, 178, 161, 0.1);
    font-size: 1.1em;
    padding-bottom: 15px;
    padding-top: 8px;
    height: auto;
}
.footer a{
    color: #495057;
}

.footer a:hover{
    color: #3b7335;
    text-decoration: none;
    font-weight: bolder;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}
