@font-face {
    font-family: 'Core Sans'; /* Название, которое вы будете использовать в коде */
    src: url('../fonts/coresans/coresans.ttf') format('truetype'); /* Путь к файлу */
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Позволяет тексту отображаться стандартным шрифтом до загрузки основного */
}

:root {
    --crabit-font-heading: "Core Sans", sans-serif !important;
}

body {
    /*font-family: 'Manrope' !important;*/
    font-family: var(--crabit-font-heading);
    color: #020B0A;

}

@media (max-width: 997px) {
    body {
        font-size: 1.5rem;
    }
    :root {
        --crabit-text-size: 1.5rem!important;
    }
}

.meta_h1 {
    overflow: hidden;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.modal svg {
  opacity: 0.95;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1150px;
    }
}

/* Прячем галочку по умолчанию */
.contact-form-cta__check-icon .cta-tick {
    display: none;
    transition: all 0.2s ease;
}

/* Когда чекбокс активен — показываем галочку */
.contact-form-cta__input:checked + .contact-form-cta__check-icon .cta-tick {
    display: block;
}

/* Опционально: закрашиваем рамку при клике, чтобы это выглядело аккуратно */
.contact-form-cta__input:checked + .contact-form-cta__check-icon .cta-rect {
    fill: rgba(43, 42, 41, 0.05); /* Легкий тон в цвет обводки */
}

/* Мягкий эффект при наведении на весь блок */
.contact-form-cta__consent:hover {
    opacity: 0.8;
}





/* Прячем галочку внутри SVG по умолчанию */
.checkbox-tick {
    display: none;
}

/* Когда скрытый инпут нажат, показываем галочку */
.custom-checkbox-input:checked + .checkbox-svg-container .checkbox-tick {
    display: block;
}

/* Опционально: можно закрашивать фон квадратика при нажатии */
.custom-checkbox-input:checked + .checkbox-svg-container .checkbox-rect {
    fill: rgba(255, 255, 255, 0.2); /* Легкая подсветка фона */
}

/* Эффект при наведении, чтобы пользователь понимал, что это кликабельно */
.custom-checkbox-label:hover {
    opacity: 1 !important;
}



.navbar-nav li a {
    font-size: 13px;
}

#ajax-search-form {
    font-size: 12px;
}

/* Variables and Mixins (simplified for direct CSS output) */
.header-yekay {
    --header-height-default: 80px; /* Base height */
    --header-height-sticky: 60px;  /* Sticky height */
    --logo-height-default: 40px;   /* Base logo height */
    --logo-height-sticky: 30px;    /* Sticky logo height */
    --main-color: #f77a28;        /* Orange color */
    --text-color: #ffffff;
    --background-color: #000000;
}

@media(max-width: 800px) {
    .header-yekay {
        --header-height-default: 60px; /* Base height */
        --header-height-sticky: 50px;  /* Sticky height */
        --logo-height-default: 30px;   /* Base logo height */
        --logo-height-sticky: 20px;    /* Sticky logo height */
    }
}

/* Base Header Styles */
.header-yekay {
    background-color: var(--background-color);
    transition: all 0.3s ease;
    z-index: 1030; /* Above Bootstrap's default */
    height: var(--header-height-default);
    display: flex;
    align-items: center;
    position: sticky;
}

/* Sticky Header State */
.header-yekay.is-sticky {
    height: var(--header-height-sticky);
    /* box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); */
}

.header-yekay__container {
    /* To mimic the slightly smaller horizontal padding on the image, use container-fluid and custom padding */
    

}

.header-yekay__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: height 0.3s ease;
}

/* Logo */
.header-yekay__logo-img {
    height: var(--logo-height-default);
    width: auto;
    transition: height 0.3s ease;
}

/* Sticky Logo State */
.header-yekay.is-sticky .header-yekay__logo-img {
    height: var(--logo-height-sticky);
}

/* Navigation Menu */
.header-yekay__menu {
    margin-right: 2rem;
}

.header-yekay__item {
    padding: 0 1rem;
    display: flex;
    align-items: center; /* Vertically center dropdown items like 'Ещё' */
}

/* Link Styles */
.header-yekay__link {
    font-size: 16px;
    font-weight: 400;
    color: #A6A6A6;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header-yekay__link:hover {
    color: var(--main-color);
}

/* Dropdown specific styles for 'Ещё' */
.header-yekay__item--more .dropdown-toggle::after {
    margin-left: 0.25em; /* Adjust spacing for the caret */
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.header-yekay__item--more .dropdown-menu {
    background-color: var(--background-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    margin-top: 0.5rem;
}

.header-yekay__item--more .dropdown-item {
    color: var(--text-color);
    background-color: transparent;
    padding: 0.5rem 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 15px;
}

.header-yekay__item--more .dropdown-item:hover,
.header-yekay__item--more .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--main-color);
}


/* Social Icons */
.header-yekay__socials {
    margin-right: 1rem;
}

.header-yekay__social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05); /* Dark circle background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem;
    transition: background-color 0.2s ease;
}

.header-yekay__social-link:last-child {
    margin-right: 0;
}

.header-yekay__social-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.header-yekay__social-icon {
    /* Specific styling for the icons if they were SVGs, for now, just ensure size */
    width: 20px;
    height: 20px;
}

/* Call to Action Button */
.header-yekay__button-cta {
    /* Gradient from image: #f77a28 to #ffb067 (approx) */
    background: linear-gradient(to right, #f77a28 0%, #ffb067 100%);
    border: none;
    border-radius: 8px;
    color: var(--text-color);
    font-weight: bold;
    padding: 10px 20px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(247, 122, 40, 0.5); /* Shadow for 3D effect */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-yekay__button-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 122, 40, 0.7);
    color: var(--text-color); /* Ensure text color remains white on hover */
}


/* Mobile Burger Button */
.header-yekay__burger-btn {
    width: 50px;
    height: 50px;
    /* Gradient background similar to the CTA button for the burger icon background */
background: radial-gradient(
  circle,
  #f77a28 0%,
  #ff9a4d 45%,
  #ffb067 100%
);
    border: none;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-shadow: 0 4px 15px rgba(247, 122, 40, 0.5);
    transition: all 0.2s ease;
}

.header-yekay__burger-btn:focus {
    box-shadow: none; /* Remove default bootstrap focus */
    outline: none;
}
.header-yekay__burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    transform: scale(0.8); /* Make the lines look smaller like the image */
}

@media (max-width: 900px) {
    .header-yekay__burger-btn {
        width: 35px;
        height: 35px;
    }

    .header-yekay__burger-icon {
        width: 20px;
        height: 14px;
    }
}

.header-yekay__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 1px;
}

/* Mobile Offcanvas Menu (Based on requirement: opens right, 90% width, 100% height) */
.header-yekay__offcanvas.offcanvas-end {
    width: 90%;
    max-width: 90%; /* Ensure it's exactly 90% */
    background-color: var(--background-color);
    height: 100%;
    border-left: none;
}

.header-yekay__offcanvas .btn-close {
    filter: invert(1); /* White close button on black background */
}

.header-yekay__mobile-menu {
    padding-top: 1rem;
}

.header-yekay__mobile-item {
    margin-bottom: 0.5rem;
}

.header-yekay__mobile-link {
    font-size: 18px;
    font-weight: 500;
    color: #A6A6A6;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Optional separator */
}

.header-yekay__mobile-link:hover {
    color: var(--main-color);
}



.modal .btn-close {
    margin-top: -23px;
}
.modal-content {
    border-radius: 30px;
    padding: 20px 40px 40px 40px;
}
.modal-footer button {
    max-width: 100%!important;
    word-wrap: break-word;
}
.modal-title {
    font-size: 27px;
}
.modal-title-small {
    font-size: 15px;
    font-weight: 300;
    color: rgba(0 0 0 / .5);
}
.modal-body .form-control {
    height: 56px !important;
    border: 0;
    background-color: #F0F0F0;
    border-radius: 12px;
    color: rgba(2, 11, 10, 0.70);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
}
.modal-footer,
.modal-body,
.modal-header {
    border-top: 0;
    border-bottom: 0;
}

.crabit-pagination span {
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
    color: #282828;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #EC6726;
    background-color: transparent;
    display: flex;
    -webkit-display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.crabit-pagination a:hover {
    border: 1px solid #EC6726;
}
.crabit-pagination a {
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: none;
    color: rgba(40 40 40 / 0.50);
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid transparent;
    background-color: transparent;
    display: flex;
    -webkit-display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

.crabit-pagination ul {
    list-style: none;
    display: flex;
    -webkit-display: flex;
    align-items: center;
    -webkit-align-items: center;
}
.text-gradient-black_light {
    color: #282828;
    font-size: 36px;
    font-weight: 600;
    text-transform: none;
}

.crabit-title span {
    position: relative;
}

.crabit-title {
    /* Стиль crabit-title уже задан */
    text-align: center;
    margin-bottom: 80px; /* Увеличиваем отступ, чтобы вместить флаги в ряд */
    font-size: 95px; 
    font-weight: 900;
    color: #EC6726;
    position: relative;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.crabit-title span {
    color: #020B0A;

    background: linear-gradient(
    to bottom,
    #020B0A 0%,
    #6D7272 100%
  );
  -webkit-background-clip: text; /* Для совместимости с WebKit-браузерами (Chrome, Safari) */
  background-clip: text;

  color: transparent;

}



.crabit-title-2 {
    /* Стиль crabit-title уже задан */
    text-align: center;
    margin-bottom: 80px; /* Увеличиваем отступ, чтобы вместить флаги в ряд */
    font-size: 95px; 
    font-weight: 900;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
}

.crabit-title-2 span {
    color: #EC6726;

    background: linear-gradient(
    to bottom,
    #EC6726 0%,
    #EC6726 100%
  );
  -webkit-background-clip: text; /* Для совместимости с WebKit-браузерами (Chrome, Safari) */
  background-clip: text;

  color: transparent;

}
.hot-section__item-btn {
    margin-top: 10px;
}
.btn-item:before {
    position: absolute;
    content: "";
    inset: 0;
    border: 0px solid rgba(255,123,49, 1);
    border-radius: inherit;
}
.btn-item:hover {
    font-size: 17px;
}
.btn-item {
    position: relative;
    background-color: #c46d4d;
    border-radius: 18px;
    box-shadow: unset;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    height: 60px;
    font-size: 14px;
    max-width: 300px;
    border: 0;
    display: flex;
    -webkit-display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    transition: all .4s;
    -webkit-transition: all .4s;
}




.btn-sm:before {
    position: absolute;
    content: "";
    inset: 0;
    border-radius: inherit;
}
.btn-sm:hover {
    background-color: rgba(255,123,49, 1);
    font-size: 14px;
}
.btn-sm {
    position: relative;
    border: 0;
    background-color: #EC6726;
    border-radius: 12px;
    box-shadow: inset 0 0 13px 11px rgba(255,123,49, 1);
    color: #fff;
    text-decoration: none;
    height: 41px;
    font-size: 12px;
    width: 100%;
    display: flex;
    -webkit-display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.block-none {
    height: 300px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-favorite:hover {
    background-size: 50%;
}
.btn-favorite {
    width: 70px;
    height: 70px;
    border: 0;
    background-color: #fff;
    border-radius: 100%;
    display: block;
    background-image: url(../img/favorite.svg);
    background-position: top 53% center;
    background-repeat: no-repeat;
    background-size: 36%;
    transition: all .2s;
    -webkit-transition: all .2s;
}
.btn-favorite.active {
    background-image: url(../img/favorite-active.svg);
}


.text-gradient-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-gradient-1 span {
    background: linear-gradient(to right, #EC6726 0%, #FF8D56 10%, #EC6726 100%);
    color: #EC6726;
    /* Ограничиваем градиент только до 40% ширины */
    background-size: 100% 100%;
    background-repeat: no-repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.text-gradient-orange {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;

    background: linear-gradient(to right, #EC6726 0%, #FF8D56 10%, #EC6726 100%)!important;
    color: #EC6726;
    /* Ограничиваем градиент только до 40% ширины */
    background-size: 100% 100%!important;
    background-repeat: no-repeat!important;

    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent!important;
    background-clip: text!important;
}
.wp-block-group {
    display: block!important;
}
.text-gradient-black {
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(to bottom, #020B0A 0%, #6D7272 100%)!important;
    color: #020B0A;
    /* Ограничиваем градиент только до 40% ширины */
    background-size: 100% 100%!important;
    background-repeat: no-repeat!important;

    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent!important;
    background-clip: text!important;
}

.text-gradient-white {
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(to bottom, #fff 0%, #fff 100%)!important;
    color: #fff;
    /* Ограничиваем градиент только до 40% ширины */
    background-size: 100% 100%!important;
    background-repeat: no-repeat!important;

    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent!important;
    background-clip: text!important;
}

.bg-image > section,
.bg-image > div {
    background-color: transparent;
    background-image: none;
}
.bg-image {
    background-color: #F1F0EE;
    background-image: url(../img/bg-image.png);
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.bg-color {
    background-color: #F4F3F1;
    border-radius: 0 0 50px 50px;
}
.text-section .crabit-text {
    margin-left: auto;
    margin-right: auto;
}

.btn-item.btn-large {
    height: 75px;
    min-width: 320px;
    border: 0!important;
}

.footer {
    background-color: #020A0A;
    padding: 50px 0 50px 0;
}
.footer__logo {
    width: 103px;
    display: block;
}
.footer__logo img {
    max-width: 100%;
}
.footer__socials a img {
    width: 100%;
}
.footer__socials a picture {
    width: 50%;
}
.footer__socials a:hover {
    background-color: #2A2A2A;
}
.footer__socials a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    background-color: #151515;
    border-radius: 10px;
    width: 45px;
    height: 45px;
}
.footer__socials a.active {
    background-color: #EC6726;
    height: 41px;
    border-radius: 12px;
}
.footer__socials {
    gap: 16px;
    margin-top: 55px;
}

.footer__btn {
    margin-top: 35px;
    max-width: 170px;
}

.footer__menu a:hover {
    color: rgba(255 255 255 / 1);
    border-bottom: 1px solid #fff;
}
.footer__menu li {
    list-style: none;
    padding: 6px 0;
    margin: 0;
}
.footer__menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer__menu a {
    display: inline-block;
    color: rgba(255 255 255 / .7);
    transition: all .4s;
    -webkit-transition: all .4s;
    border-bottom: 1px solid #313434;
    text-decoration: none;
    font-weight: 300;
    padding: 2px 0;
}
.footer__label {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}
.footer__copyright {
    color: rgba(255 255 255 / .5);
    font-size: 18px;
    padding: 5px 0;
}





/* Уникальный класс для стилей блока */
.client-type-select-block {
    padding: 30px 0;
    background-color: #0d1218; 
}

/* --- Заголовок --- */
.client-type-select-block__label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff; 
    margin-bottom: 8px; 
}

/* --- Кастомный Select (custom-select) --- */

/* Контейнер */
.custom-select--client-type {
    position: relative;
    width: 100%; 
    max-width: 300px;
}

/* 1. Скрытие нативного select */
.custom-select__native-select {
    /* Полностью скрываем, но оставляем доступным для JS и форм */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none; /* Гарантируем, что клик пойдет на кастомный элемент */
}

/* 2. Кнопка отображения (Display Button) */
.custom-select__display-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px; 
    min-height: 50px;
    background-color: #1a4340; /* Темно-зеленый цвет фона, как на изображении */
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff; 
    transition: background-color 0.2s;
    outline: none; /* Убираем стандартный аутлайн */
}

/* Эффект при наведении/фокусе */
.custom-select__display-button:hover,
.custom-select__display-button:focus {
    background-color: #1f504c;
}

/* Стрелка */
.custom-select__arrow {
    width: 14px;
    height: 8px;
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.2s ease;
}

/* Состояние "открыто" */
.custom-select--client-type.is-open .custom-select__arrow {
    transform: rotate(180deg);
}

/* 3. Список опций (Dropdown Menu) */
.custom-select__options-list {
    position: absolute;
    top: 100%; /* Помещаем под кнопку */
    left: 0;
    width: 100%;
    background-color: #215956; /* Цвет фона опций */
    border-radius: 4px;
    overflow: hidden;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* Небольшой эффект появления */
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    margin-top: 4px; /* Небольшой отступ от кнопки */
    padding: 0;
    list-style: none; /* Убираем стандартные маркеры списка */
}

/* Состояние "открыто" */
.custom-select--client-type.is-open .custom-select__options-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Элемент опции (Item) */
.custom-select__option-item {
    padding: 12px 20px;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s;
}

/* Эффект при наведении */
.custom-select__option-item:hover {
    background-color: #2a6e6a;
}

/* Выбранная опция */
.custom-select__option-item.is-selected {
    background-color: #1a4340; /* Тот же цвет, что и у кнопки */
    font-weight: 700;
}


@media (max-width: 800px) {
    .btn-item {
        border-radius: 15px;
        height: 58px;
        font-size: 12px;
    }

    .offcanvas {
        padding-top: 40px;
    }
    .crabit-title-2,
    .crabit-title {
        font-size: 50px;
    }
    .crabit-title {
        margin-bottom: 50px;
    }
    .footer__menu a {
        font-size: 10px;
    }
    .footer__copyright {
        font-size: 10px;
    }
    .btn-sm {
        height: 32px;
        font-size: 10px;
    }
    .footer__socials {
        gap: 5px;
        margin-top: 40px;
    }
    .footer__socials {
        margin-bottom: 40px;
    }
    .btn-favorite {
        width: 41px;
        height: 41px;
    }
    .bg-color {
        background-color: #F4F3F1;
        border-radius: 0 0 0 0;
    }
}

body.offcanvas-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

.header-yekay__offcanvas.offcanvas-end {
    background-color: rgba(0 0 0 / 1);
}
.header-yekay__mobile-link {
    font-size: 18px;
    text-align: center;
}
.header-yekay__mobile-item button {
    margin-left: auto;
    margin-right: auto;
    max-width: 250px;
    display: block;
}

@media(max-width: 800px) {
    .modal-title {
        font-size: 22px;
    }
    .modal-content {
        border-radius: 30px;
        padding: 20px 20px 30px 20px;
    }
    .content-section,
    .bg-image {
        border-radius: 0!important;
    }
    .text-gradient-black_light {
        font-size: 25px;
    }
}