

/* Start:/bitrix/components/bitrix/banner_slider/templates/.default/style.css?17367738402955*/
.custom-banner-slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.custom-banner-item {
    position: relative;
    width: 100%;
    height: auto;
}

.custom-banner-image-container {
    position: relative;
    width: 100%;
    padding-top: 40%; /* Соотношение 2.5:1 */
    overflow: hidden;
}

.custom-banner-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Изображение обрезается по контейнеру */
}

.custom-banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.custom-banner-content {
    position: absolute;
    top: 40%;
    left: 20px;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    z-index: 2;
    padding: 20px;
    border-radius: 10px;
}

.custom-banner-content h2 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.custom-banner-content p {
    font-size: 3.0em;
    margin-bottom: 25px;
    font-weight: bold;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 40px;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-btn i {
    margin-left: 10px;
    transition: color 0.3s ease;
}

.custom-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
    color: #000000;
}

.custom-btn:hover i {
    color: #333;
}

/* Адаптивные стили */
@media (max-width: 1200px) {
    .custom-banner-content h2 {
        font-size: 1.2em;
    }
    .custom-banner-content p {
        font-size: 2.5em;
    }
    .custom-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    .custom-banner-content h2 {
        font-size: 1em;
    }

    .custom-banner-content p {
        font-size: 2em;
    }

    .custom-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .custom-banner-image-container {
        padding-top: 56.25%; /* Соотношение 16:9 */
    }

    .custom-banner-content h2 {
        font-size: 0.8em;
    }

    .custom-banner-content p {
        font-size: 1.5em;
    }

    .custom-btn {
        padding: 8px 15px;
        font-size: 0.8em;
    }
}

@media (max-width: 576px) {
    .custom-banner-content h2 {
        font-size: 0.7em;
    }

    .custom-banner-content p {
        font-size: 1.2em;
    }

    .custom-btn {
        padding: 6px 10px;
        font-size: 0.7em;
    }
}
/* End */


/* Start:/local/templates/priem/components/bitrix/news.list/vazhnoe/style.css?17857403203441*/
/* Основной блок */
.custom-info-blocks {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Контейнер для элементов */
.custom-info-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Карточка элемента */
.custom-info-item {
    min-width: 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
    overflow: hidden;
    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        background 0.5s ease,
        color 0.5s ease;
}

/* Hover-эффект */
.custom-info-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(90deg, #2e7d32, #81c784);
}

.custom-info-item:hover .custom-info-title,
.custom-info-item:hover .custom-info-arrow,
.custom-info-item:hover .custom-info-link {
    color: #fff;
    text-decoration: none;
}

/* Ссылка внутри карточки */
.custom-info-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    width: 100%;
    height: 100%;
    min-height: 115px;
    padding: 18px;

    color: #333;
    text-decoration: none;
    box-sizing: border-box;
}

.custom-info-link:hover,
.custom-info-link:focus {
    text-decoration: none;
}

/* Текстовая часть */
.custom-info-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

/* Заголовок */
.custom-info-title {
    margin: 0 0 10px;
    font-size: 1.1em;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

/* Стрелка */
.custom-info-arrow {
    font-size: 1.5em;
    line-height: 1;
    color: #388e3c;
    transition: color 0.3s ease;
}

.custom-info-item:hover .custom-info-arrow {
    color: #fff;
}

/* Иконка */
.custom-info-icon {
    position: relative;
    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #e8f5e9;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Изображение внутри иконки */
.custom-info-icon img {
    position: relative;
    z-index: 1;

    width: 38px;
    height: 38px;
    object-fit: contain;
}

/* Небольшие компьютеры: 3 карточки */
@media (max-width: 1199.98px) {
    .custom-info-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Планшеты: 2 карточки */
@media (max-width: 991.98px) {
    .custom-info-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Телефоны: 1 карточка */
@media (max-width: 575.98px) {
    .custom-info-blocks {
        padding: 20px 12px;
    }

    .custom-info-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .custom-info-link {
        min-height: 95px;
        padding: 15px;
    }

    .custom-info-title {
        font-size: 1em;
        margin-bottom: 7px;
    }

    .custom-info-icon {
        flex-basis: 55px;
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }

    .custom-info-icon img {
        width: 34px;
        height: 34px;
    }
}
/* End */


/* Start:/bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1718608295666*/
div.bx-yandex-map {color: black; font-size: 11px;}
div.bx-yandex-map div.YMaps-b-balloon-content {color: black; font-size: 11px;}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td {
	padding: 0px !important;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td textarea{
	font-size: 11px;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td.YMaps-b-balloon-b {
	background-image: none !important;
}

/* End */
/* /bitrix/components/bitrix/banner_slider/templates/.default/style.css?17367738402955 */
/* /local/templates/priem/components/bitrix/news.list/vazhnoe/style.css?17857403203441 */
/* /bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1718608295666 */
