

/* Start:/bitrix/templates/aspro-landscape/components/bitrix/news.list/faq_custom/style.css?17835111257864*/
/* ==================================================
   FAQ
   ================================================== */

.faqpage_block{
    margin-bottom: 40px;
}


/* ==================================================
   Заголовок
   ================================================== */

.faq__header {
    margin-bottom: 42px;
}

.faq__title {
    margin: 0;
    color: #0b2459;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.faq__subtitle {
    margin-top: 10px;
    color: #52698f;
    font-size: 17px;
    line-height: 1.55;
}

.faq__title-line {
    width: 50px;
    height: 2px;
    margin-top: 15px;
    background: #1769e8;
}


/* ==================================================
   Группы и разделы
   ================================================== */

.faq__groups {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.faq__group {
    min-width: 0;
}

.faq__section-title {
    margin: 0 0 14px;
    color: #0b2459;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
}

.faq__section-description {
    margin-bottom: 24px;
    color: #52698f;
    font-size: 16px;
    line-height: 1.65;
}


/* ==================================================
   Список вопросов
   ================================================== */

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* ==================================================
   Отдельный вопрос
   ================================================== */

.faq__item {
    background: #fff;
    border: 1px solid rgba(28, 77, 156, .07);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(23, 61, 123, .08);
    overflow: hidden;
}


/* ==================================================
   Шапка вопроса
   ================================================== */

.faq__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 68px;
    padding: 16px 28px 16px 52px;
    color: #0b2459;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
}

/*
 * Синяя вертикальная линия слева.
 */
.faq__head::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 24px;
    width: 3px;
    background: #1769e8;
    border-radius: 2px;
}

.faq__question {
    min-width: 0;
    color: #0b2459;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.faq__icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1769e8;
}

/*
 * Bootstrap снимает класс collapsed,
 * когда блок раскрыт.
 */
.faq__head:not(.collapsed) .faq__icon {
    transform: rotate(180deg);
}


/* ==================================================
   Ответ
   ================================================== */

.faq__answer {
    border-top: 1px solid rgba(23, 105, 232, .1);
}

.faq__body {
    padding: 0;
}

.faq__answer-content {
    padding: 26px 52px 30px;
}

.faq__answer-content--with-image {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.faq--image-right .faq__answer-content--with-image {
    grid-template-columns: minmax(0, 1fr) 220px;
}

.faq__content {
    min-width: 0;
    color: #52617d;
    font-size: 16px;
    line-height: 1.75;
}

.faq__content> :first-child {
    margin-top: 0;
}

.faq__content> :last-child {
    margin-bottom: 0;
}

.faq__text p {
    margin: 0 0 14px;
}

.faq__text p:last-child {
    margin-bottom: 0;
}


/* ==================================================
   Изображение
   ================================================== */

.faq__image {
    width: 100%;
}

.faq__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}


/* ==================================================
   Период
   ================================================== */

.faq__period {
    margin-bottom: 14px;
    color: #1769e8;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}


/* ==================================================
   Свойства
   ================================================== */

.faq__properties {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #e6edf7;
}

.faq__property {
    margin-bottom: 10px;
    color: #52617d;
    font-size: 15px;
    line-height: 1.55;
}

.faq__property:last-child {
    margin-bottom: 0;
}

.faq__property-name {
    color: #0b2459;
    font-weight: 600;
}

.faq__property a {
    color: #1769e8;
    text-decoration: none;
}


/* ==================================================
   Кнопки
   ================================================== */

.faq__button-wrap,
.faq__form-button {
    margin-top: 22px;
}


/* ==================================================
   Планшет
   ================================================== */

@media (max-width: 991px) {
    .faq {
        padding: 58px 0 54px;
    }

    .faq__header {
        margin-bottom: 34px;
    }

    .faq__title {
        font-size: 34px;
    }

    .faq__subtitle {
        font-size: 16px;
    }

    .faq__head {
        min-height: 66px;
        padding:
            15px 24px 15px 48px;
    }

    .faq__head::before {
        left: 22px;
    }

    .faq__question {
        font-size: 17px;
    }

    .faq__answer-content {
        padding:
            24px 48px 28px;
    }

    .faq__answer-content--with-image,
    .faq--image-right .faq__answer-content--with-image {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 24px;
    }
}


/* ==================================================
   Мобильный
   ================================================== */

@media (max-width: 767px) {
    .faq {
        padding: 44px 0 42px;
    }

    .faq::before,
    .faq::after {
        width: 430px;
        height: 430px;
    }

    .faq::before {
        top: -290px;
        right: -260px;
    }

    .faq::after {
        bottom: -310px;
        left: -300px;
    }

    .faq__header {
        margin-bottom: 28px;
    }

    .faq__title {
        font-size: 30px;
    }

    .faq__subtitle {
        margin-top: 8px;
        font-size: 15px;
        line-height: 1.5;
    }

    .faq__title-line {
        margin-top: 13px;
    }

    .faq__list {
        gap: 10px;
    }

    .faq__item {
        border-radius: 8px;
    }

    .faq__head {
        min-height: 62px;
        gap: 14px;
        padding:
            14px 18px 14px 40px;
    }

    .faq__head::before {
        top: 15px;
        bottom: 15px;
        left: 18px;
        width: 2px;
    }

    .faq__question {
        font-size: 16px;
        line-height: 1.4;
    }

    .faq__icon {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
    }

    .faq__icon svg {
        width: 18px;
        height: 18px;
    }

    .faq__answer-content {
        padding:
            20px 24px 24px;
    }

    .faq__answer-content--with-image,
    .faq--image-right .faq__answer-content--with-image {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .faq__content {
        font-size: 15px;
        line-height: 1.65;
    }

    .faq__section-title {
        font-size: 22px;
    }
}
/* End */


/* Start:/bitrix/templates/aspro-landscape/components/bitrix/map.yandex.system/map/style.css?1717075028600*/
div.bx-yandex-map {color: black;}
div.bx-yandex-map div.YMaps-b-balloon-content {color: black;}
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{}
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/templates/aspro-landscape/components/bitrix/news.list/faq_custom/style.css?17835111257864 */
/* /bitrix/templates/aspro-landscape/components/bitrix/map.yandex.system/map/style.css?1717075028600 */
