
.background_home_page{
    background: #F2F3F6;
    padding: 30px 10px;
}

.container_home_page {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 744px) {
    .background_home_page{
        padding: 30px 20px 60px 20px;
    }
}

@media screen and (min-width: 1280px) {
    .background_home_page {
        padding: 60px 40px 60px 40px;
    }
}


.box_bottom_hero_home_page {
    display: none;
}

.container_hero_home_page {
    position: relative;
    height: 100dvh;
    background-image: url("../../image/background_hero_section.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 78px 10px 0 10px;
}

.container_hero_home_page::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg, #262626 0%, rgba(38, 38, 38, 0.00) 55%);
}

.box_top_hero_home_page{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.title_home_page{
    color: #FFF;
    font-family: var(--font-family-playfair);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.description_home_page {
    color: #FFF;
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.link_hero_catalog_home_page {
    height: 44px;
    font-weight: 500;
}

.btn_hero_catalog_home_page{
    width: 100%;
    height: 44px;
    border-radius: 6px;
    background:  #FFF;
    display: flex;
    padding: 12px 14px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color:  #090712;
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    transition: var(--all-time-transition);
}

.icon_search_home_page {
    width: 20px;
    height: 20px;
    fill: #090712;
}


@media screen and (min-width: 744px) {

    .container_hero_home_page::before {
        background: linear-gradient(180deg, #262626 0%, rgba(38, 38, 38, 0.00) 55%);
    }

    .btn_hero_catalog_home_page{
        display: none;
    }

    .box_bottom_hero_home_page{
        display: block;
    }

    .container_hero_home_page{
        padding: 98px 20px 20px 20px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .title_home_page{
        font-size: 48px;
    }

    .link_hero_catalog_home_page{
        width: fit-content;
    }

    .box_bottom_hero_home_page{
        position: relative;
        z-index: 1000;
        display: flex;
        margin: 0 -20px -20px -20px;
        padding: 0 20px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        background: rgba(0, 0, 0, 0.20);
        backdrop-filter: blur(20px);
    }

    .container_inputs_hero_form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }

    .btn_submit_hero_form {
        grid-column: span 2 / span 2;
    }

    .form_hero_home_page{
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-self: stretch;
    }

    .container_radio_hero_form {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .label_radio_hero_form {
        display: flex;
        width: fit-content;
        padding: 12px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-top: 3px solid rgba(0,0,0,0);
        color: #FFF;
        font-family: var(--font-family-helvetica);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 17px;
        height: 41px;
        max-width: 90px;
        min-width: 90px;
        white-space: nowrap;
    }

    .input_radio_hero_form {
        width: 0;
        height: 0;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
    }

    .label_radio_hero_form:has(.input_radio_hero_form:checked) {
        border-top: 3px solid #9EE334;

    }

    .label_inputs_hero_form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 4px;
        flex: 1 0 0;
    }

    .text_label_inputs_hero_form{
        color: #FFF;
        font-family: var(--font-family-helvetica);
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .container_custom_select_hero_form {
        position: relative;
        width: 100%;
    }

    .box_top_custom_select_hero_form{
        display: flex;
        padding: 12px 14px;
        justify-content: center;
        align-items: center;
        gap: 6px;
        align-self: stretch;
        border-radius: 6px;
        background: #FFF;
        cursor: pointer;
    }

    .text_selected_custom_select_hero_form {
        overflow: hidden;
        color: #071121;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-overflow: ellipsis;
        font-family: var(--font-family-helvetica);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .text_selected_custom_select_hero_form::after {
        content: '';
        width: 20px;
        height: 20px;
        background-image: url("../../image/icon_short_arrow_list.svg");
        background-repeat: no-repeat;
        background-position: center;
        transition: var(--all-time-transition);
    }

    .container_custom_select_hero_form.open .text_selected_custom_select_hero_form::after{
        transform: rotate(180deg);
    }

    .list_custom_select_hero_form {
        position: absolute;
        top: 110%;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 8px;
        background: #FFF;
        box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        width: 100%;
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        pointer-events: none;
        transition: var(--all-time-transition);
    }

    .container_custom_select_hero_form.open .list_custom_select_hero_form {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .item_custom_select_hero_form {
        display: flex;
        height: 34px;
        width: 100%;
        padding: 10px;
        align-items: center;
        gap: 4px;
        align-self: stretch;
        border-radius: 6px;
        color: #090712;
        font-family: var(--font-family-helvetica);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        transition: var(--all-time-transition);
    }

    .item_custom_select_hero_form:hover {
        font-weight: 500;
        background: #F2F3F6;
        cursor: pointer;
    }

    .item_custom_select_hero_form.active{
        font-weight: 500;
    }

    .item_custom_select_hero_form.active::before {
        content: '';
        width: 20px;
        height: 20px;
        background-image: url("../../image/icon_done_arrow.svg");
        background-repeat: no-repeat;
        background-position: center;
        transition: var(--all-time-transition);
    }

    .box_min_max_result_hero_form{
        display: flex;
        justify-content: center;
        gap: 8px;
        flex: 1 0 0;
        height: 44px;
        padding: 6px;
        align-items: center;
        align-self: stretch;
        border-radius: 6px;
        background: #FFF;
    }

    .box_input_icon_result_hero_form {
        display: flex;
        width: 100%;
        padding: 8px 14px;
        justify-content: space-between;
        align-items: center;
        border-radius: 6px;
        background: #F2F3F6;
        border: 1px solid #F2F3F6;
        transition: var(--all-time-transition);
        height: 32px;
    }

    .box_input_icon_result_hero_form:has(.input_hero_form:focus) {
        border-color: #D2D0D8;
        background: #FFF;
    }

    .input_hero_form, .icon_result_hero_form {
        overflow: hidden;
        color:  #090712;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-family: var(--font-family-helvetica);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        transition: var(--all-time-transition);
    }
    .input_hero_form {
        width: 100%;
    }

    .icon_result_hero_form{
        color:  #6D7889;
        overflow: visible;
    }



    .input_hero_form::placeholder {
        color:  #6D7889;

    }

    .decoration_line_min_max_result_hero_form{
        min-width: 10px;
        max-width: 10px;
        height: 1px;
        background:  #D2D1D8;
    }

    .icon_result_hero_form sup {
        font-size: 0.7em;
        vertical-align: top;
        top: 0.5em;
    }

    .box_input_address_hero_form {
        display: flex;
        padding: 12px 14px;
        align-items: center;
        gap: 6px;
        align-self: stretch;
        border-radius: 6px;
        background: #FFF;
    }

    .input_hero_form_address {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        flex: 1 0 0;
        overflow: hidden;
        color:  #090712;
        text-overflow: ellipsis;
        font-family: var(--font-family-helvetica);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .input_hero_form_address::placeholder {
        color: #6D7889;

    }


    .icon_address_hero_form {
        width: 20px;
        height: 20px;
        fill: #071121;
    }

    .btn_submit_hero_form {
        display: flex;
        padding: 12px 14px;
        justify-content: center;
        align-items: center;
        gap: 6px;
        align-self: stretch;
        border-radius: 6px;
        background:  #9EE334;
        color: #090712;
        font-family: var(--font-family-helvetica);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        height: 44px;
        transition: var(--all-time-transition);
    }

    .btn_submit_hero_form:hover, .btn_submit_hero_form:active {
        background: #fff;
    }

    .icon_search_hero_form {
        width: 20px;
        height: 20px;
        fill: #090712;
    }

    .container_inputs_hero_form{
        margin-bottom: -16px;
    }


}

@media screen and (min-width: 1280px) {
    .container_hero_home_page {
        padding: 128px 40px 44px 40px;
    }

    .container_hero_home_page::before {
        background: linear-gradient(180deg, #262626 0%, rgba(38, 38, 38, 0.00) 55%);
    }

    .box_top_hero_home_page{
        max-width: 1600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .title_home_page{
        font-size: 60px;
        max-width: 1100px;
    }

    .box_bottom_hero_home_page {
        margin: 0;
        border-radius: 14px;
        background: rgba(0, 0, 0, 0.20);
        backdrop-filter: blur(20px);
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .container_inputs_hero_form {
        display: flex;
        align-items: flex-end;
        gap: 20px;
        margin-bottom: 0;
    }

    .btn_submit_hero_form {
        margin-top: auto;
    }

}


/* ======================= running_line ======================= */


.background_running_line {
    width: 100%;
    padding: 19px 10px ;
    background: #1B1444;

}

.container_running_line {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
}

.box_running_line {
    width: 100%;
    display: flex;
    gap: 16px;
    animation: scrollLine 28s linear infinite;
}

.icon_running_line {
    width: 162px;
    height: 22px;
    width: auto;
}


@keyframes scrollLine {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


.container_running_line::before,
.container_running_line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.container_running_line::before {
    left: 0;
    background: linear-gradient(to right, #1B1444, transparent);
}

.container_running_line::after {
    right: 0;
    background: linear-gradient(to left, #1B1444, transparent);
}

@media screen and (min-width: 744px) {
    .background_running_line {
        padding: 40px 20px;
    }


}
@media screen and (min-width: 1600px) {
    .category_link_home_page .category_img_home_page {
        min-height: 385px;
    }
}
@media screen and (min-width: 1440px) and (max-width: 1599px) {
    .category_link_home_page .category_img_home_page {
        min-height: 325px;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .category_link_home_page .category_img_home_page {
        min-height: 290px;
    }
}

@media screen and (min-width: 1280px) {
    .background_running_line {
        padding: 40px;
    }

    .box_running_line {
        animation: scrollLine 23s linear infinite;
    }
}
/* ======================= /running_line ======================= */

/* ======================= counter ======================= */
.section_counter {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding-bottom: 60px;
}

.container_top_counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;

}

.logo_counter {
    display: flex;
    width: 85px;
    height: 100px;
}

.box_logo_counter_link {
    display: inline-block;
    transition: transform 0.3s ease;
}
@media screen and (min-width: 744px) and (max-width: 1279px) {
    .section_counter {
        padding-bottom: 30px;
    }
}
.box_logo_counter {
    /* Додайте тут ваші існуючі стилі для цього блоку, якщо вони є */
    /* Наприклад: */
    /* width: 100px; */
    /* height: 100px; */
    /* border-radius: 50%; */
    /* background-color: #f0f0f0; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

/* Стилі для зображення всередині */
.box_logo_counter .logo_counter {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;

}

.box_logo_counter_link img:hover {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

.box_text_counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.title_counter {
    color: var(--color-violet-600);
    text-align: center;
    font-family: var(--font-family-playfair);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.description_counter {
    color: var(--color-violet-600);
    text-align: center;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.container_bottom_counter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    align-self: stretch;
}

.box_counter {
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 20px;
    background: #FFF;
}

.counter_number {
    color: var(--color-violet-600);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: var(--font-family-playfair);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.label_counter {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

@media screen and (max-width: 743px) {
    .description_counter {
        line-height: 20px;
    }
    .container_bottom_counter {
        gap: 10px;
    }
    .section_counter {
        padding-top: 0;
        padding-bottom: 30px;
    }
}

@media screen and (min-width: 744px) {
    .section_counter{
        gap: 30px;
    }

    .logo_counter {
        width: 120px;
        height: 140px;
    }

    .title_counter {
        font-size: 48px;
    }

    .description_counter {
        font-size: 16px;
    }

    .box_counter {
        padding: 32px;
    }

    .counter_number {
        font-size: 60px;
    }

}


@media screen and (min-width: 1280px) {
    .container_top_counter{
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .box_text_counter{
        align-items: flex-start;
        justify-content: center;
    }

    .container_bottom_counter{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ======================= /counter ======================= */
/* ======================= block_category ======================= */
.category_title_home_page{
    color: #1B1444;
    font-family: var(--font-family-playfair);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}


.section_category_home_page{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
    padding-bottom: 30px;
}

.category_list_home_page{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.category_link_home_page {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: block;
    height: 300px;
}

.category_link_home_page .category_img_home_page {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--all-time-transition);
}

.category_item_home_page_last .category_img_home_page {
    height: 100%;
}

.category_item_home_page, .category_link_home_page {
    width: 100%;

}

.category_box_name_icon_home_page {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
    transform: translateX(-54px);
    transition: var(--all-time-transition);
}


.category_link_home_page:hover .category_box_name_icon_home_page {
    transform: translateX(0);
    gap: 8px;
}

.category_link_home_page::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.30);
    transition: var(--all-time-transition);
    opacity: 0;
}

.category_link_home_page:hover::before {
    opacity: 1;
}

.category_box_icon_home_page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #9EE334;
    backdrop-filter: blur(40px);
    transition: var(--all-time-transition);
}

.category_icon_arrow_home_page{
    width: 20px;
    height: 20px;
}

.category_name_home_page{
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(37, 37, 37, 0.40);
    backdrop-filter: blur(40px);
    display: flex;
    padding: 7px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    color: #FFF;
    font-family: var(--font-family-helvetica);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    transition: var(--all-time-transition);
    /* 133.333% */
}

.category_list_home_page.desktop {
    display: none;
}

@media screen and (min-width: 744px) {

    .section_category_home_page{
        gap: 28px;
    }

    .category_title_home_page {
        font-size: 48px;
    }

    .category_list_home_page {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 20px;
    }

    .category_item_home_page_last {
        grid-column: span 2 / span 2;
    }

    .category_item_home_page_last .category_img_home_page {
        height: auto;
        object-fit: contain;
    }

    .category_item_home_page_last .category_link_home_page{
        display: flex;
        align-items: center;
    }

}


@media screen and (min-width: 980px) {
    .category_link_home_page {
        height: 380px;
    }
}


@media screen and (min-width: 1280px) {

    .section_category_home_page {
        padding-bottom: 60px;
    }

    .category_list_home_page.mobile_tablet {
        display: none;
    }


    .category_list_home_page.desktop {
        display: flex;
    }


    .container_one_category_home_page,
    .container_two_category_home_page,
    .container_three_category_home_page {
        display: flex;
        gap: 20px;

    }

    .container_top_category_home_page{
        display: flex;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .container_bottom_category_home_page{
        display: flex;
        gap: 20px;
        flex-wrap: nowrap;
    }


    .container_two_category_home_page, .container_one_category_home_page{
        flex-direction: column;
    }

    .container_one_top_category_home_page, .container_two_bottom_category_home_page {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        height: 100%;
    }

    .container_one_category_home_page .category_link_home_page {
        height: 100%;
        max-height: 490px;
    }

    .container_one_top_category_home_page .category_link_home_page {
        max-height: 385px;
        height: 100%;
    }

    .container_two_category_home_page .category_link_home_page {
        max-height: 490px;
        height: 100%;
    }

    .container_two_bottom_category_home_page .category_link_home_page {
        height: 100%;
        max-height: 385px;
    }

    .container_bottom_category_home_page{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .container_bottom_category_home_page .category_link_home_page {
        max-height: 300px;
        height: 100%;
    }


}


/* ======================= /block_category ======================= */

/* ======================= recommended_offers ======================= */

.section_recommended_offers {
    padding-bottom: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box_top_recommended_offers{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.title_section_recommended_offers {
    color: var(--color-violet-600);
    font-family: var(--font-family-playfair);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 33.6px */
}

.box_tabs_recommended_offers {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}

.link_tabs_recommended_offers {
    display: flex;
    height: 44px;
    padding: 12px 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    background: #FFF;
    color:  #090712;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
    transition: var(--all-time-transition);
}

.link_tabs_recommended_offers.active,
.link_tabs_recommended_offers:hover {
    background: #9EE334;
}

.link_recommended_offers{
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    height: 100% !important;
    transition: var(--all-time-transition);
}

.photo_recommended_offers{
    height: 300px;
    object-fit: cover;
    width: 100%;

}

.container_content_recommended_offers {
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: space-between;
    /*height: 164px;*/
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    background: #FFF;
    height: 100%;
}

.box_top_content_recommended_offers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.box_price_recommended_offers{
    display: flex;
    align-items: center;
    gap: 4px;
    align-self: stretch;
}

.price_recommended_offers, .price_recommended_offers .es-price{
    color: #071121;
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.price_per_square_meter_recommended_offers {
    color:#495260;
    font-family: var(--font-family-helvetica);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.title_recommended_offers {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: #071121;
    text-overflow: ellipsis;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.under_title_recommended_offers{
    color: #495260;
    font-family: var(--font-family-helvetica);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.box_labels_recommended_offers {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.label_recommended_offers {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 8px;
    background: #F2F3F6;
    color: #090712;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: var(--font-family-helvetica);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    white-space: nowrap;
    /* 133.333% */
}

.icon_label_recommended_offers{
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    fill: #090712;
}

.box_bottom_content_recommended_offers {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex-wrap: wrap;
}

.bottom_content_recommended_offers {
    color: #6D7889;
    font-family: var(--font-family-helvetica);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.decoration_recommended_offers{
    color: #6D7889;
    text-align: center;
    font-family: var(--font-family-helvetica);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.box_bottom_content_recommended_offers .decoration_recommended_offers:last-of-type {
    display: none;
}

.container_swiper_photo_recommended_offers .pagination_photo_recommended_offers {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    width: fit-content !important;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
}

.container_swiper_photo_recommended_offers .pagination_photo_recommended_offers .swiper-pagination-bullet {
    margin: 0;
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(10px);
}

.container_swiper_photo_recommended_offers .pagination_photo_recommended_offers .swiper-pagination-bullet-active {
    background: #FFF;
    backdrop-filter: blur(0);
}

.container_swiper_photo_recommended_offers .button_next_photo_recommended_offers .swiper-navigation-icon,
.container_swiper_photo_recommended_offers .button_prev_photo_recommended_offers .swiper-navigation-icon{
    display: none;
}

.container_swiper_photo_recommended_offers .icon_button_next_photo_recommended_offers {
    transform: rotate(-90deg);
    fill: #FFF;
    width: 20px;
    height: 20px;
}

.container_swiper_photo_recommended_offers .icon_button_prev_photo_recommended_offers {
    transform: rotate(90deg);
    fill: #FFF;
    width: 20px;
    height: 20px;
}

.container_swiper_photo_recommended_offers .button_prev_photo_recommended_offers {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 37, 37, 0.30);
    backdrop-filter: blur(20px);
    left: 10px;
    transition: var(--all-time-transition);
    opacity: 0;
    z-index: 110;
}

.container_swiper_photo_recommended_offers .button_next_photo_recommended_offers {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 37, 37, 0.30);
    backdrop-filter: blur(20px);
    right: 10px;
    transition: var(--all-time-transition);
    opacity: 0;
}


.link_recommended_offers:hover .container_swiper_photo_recommended_offers .button_next_photo_recommended_offers,
.link_recommended_offers:hover .container_swiper_photo_recommended_offers .button_prev_photo_recommended_offers {
    opacity: 1;
}

.container_recommended_offers{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    position: relative;
}

.container_recommended_offers .box_pagination_recommended_offers {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.container_recommended_offers .pagination_recommended_offers {
    position: static;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.container_recommended_offers .pagination_recommended_offers .swiper-pagination-bullet {
    margin: 0;
    width: 100%;
    height: 3px;
    border-radius: 42px;
    background: #E2E4EB;
    flex: 1 0 0;
    opacity: 1;
    transition: var(--all-time-transition);
}

.container_recommended_offers .pagination_recommended_offers .swiper-pagination-bullet-active {
    background: #1B1444;

}


.container_recommended_offers .box_btn_navigation_recommended_offers {
    display: flex;
    align-items: center;
    gap: 12px;
}

.container_recommended_offers .button_prev_recommended_offers,
.container_recommended_offers .button_next_recommended_offers {
    position: static;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #FFF;
    transform: translate(0, 0);
    margin-top: 0;
    border: 1px solid #fff;
    transition: var(--all-time-transition);
}

.container_recommended_offers .button_prev_recommended_offers:hover ,
.container_recommended_offers .button_next_recommended_offers:hover {
    border-color: #495260;
}

.container_recommended_offers .button_next_recommended_offers .icon_button_next_recommended_offers {
    fill: #090712;
    width: 20px;
    height: 20px;
}

.container_recommended_offers .button_prev_recommended_offers .icon_button_prev_recommended_offers {
    transform: rotate(-180deg);
    fill: #090712;
    width: 20px;
    height: 20px;
}

.swiper_recommended_offers{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab_content_recommended_offers{
    width: 100%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transition: var(--all-time-transition);
}

.tab_content_recommended_offers.active {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tab_content_recommended_offers  .slide_recommended_offers{
    display: flex;
    align-self: stretch;
    height: auto;
}

@media screen and (min-width: 744px) {
    .title_section_recommended_offers {
        font-size: 48px;
    }
}

@media screen and (min-width: 1280px) {
    .section_recommended_offers {
        padding-bottom: 60px;
        gap: 40px;
    }
    

    .box_top_recommended_offers{
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .box_tabs_recommended_offers{
        width: fit-content;
        padding-bottom: 0;
    }
}

.container_empty_recommended_offers {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 487px;
}

.text_empty_recommended_offers {
    color: var(--color-violet-600);
    text-align: center;
    font-family: var(--font-family-helvetica);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.42;
}

/* ======================= /recommended_offers ======================= */

/* ======================= block_faq ======================= */

.section_faq {
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.title_faq {
    color: var(--color-violet-600);
    font-family: var(--font-family-playfair);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.list_faq {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.item_faq {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    transition: var(--all-time-transition);
    border-radius: 14px;
    background: #FFF;
}

.item_faq.open {
    gap: 12px;
}

.box_top_item_faq {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    justify-content: space-between;
    cursor: pointer;
}


.title_item_faq {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btn_item_faq {
    min-width: 44px;
    max-width: 44px;
    max-height: 44px;
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #F2F3F6;
    transition: var(--all-time-transition);
    position: relative;
}

.item_faq.open .btn_item_faq {
    background-color: #9EE334;
}

.icon_plus_faq,
.icon_minus_faq {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    transition: var(--all-time-transition);
}
.icon_minus_faq {
    opacity: 0;
    visibility: hidden;
    fill: #090712;
}

.icon_plus_faq {
    fill: #1B1444;
}

.item_faq.open .icon_plus_faq{
    opacity: 0;
    visibility: hidden;
}
.item_faq.open .icon_minus_faq {
    opacity: 1;
    visibility: visible;
}

.box_bottom_item_faq {
    max-height: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    visibility: hidden;
    overflow: hidden;
    transition: var(--all-time-transition);
}

.item_faq.open .box_bottom_item_faq {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.decoration_line_faq {
    height: 1px;
    align-self: stretch;
    opacity: 0.1;
    background: var(--color-violet-600);
}

.text_respond_item_faq {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 114.286% */
}

.container_content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (min-width: 744px) {
    .section_faq {
        gap: 40px;
    }

    .title_faq {
        font-size: 48px;
    }

    .list_faq {
        gap: 16px;
    }

    .container_content {
        flex-direction: row;
        gap: 16px;
    }

}


@media screen and (min-width: 1280px) {
    .section_faq {
        padding-bottom: 60px;
    }

    .list_faq, .container_content {
        gap: 20px;
    }
}

/* ======================= /block_faq ======================= */
/* ======================= block_reviews ======================= */

.section_reviews {
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: stretch;
}

.box_top_reviews {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    /* flex: 1 0 0; */
}

.title_reviews {
    color: var(--color-violet-600);
    font-family: var(--font-family-playfair);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 33.6px */
}

.text_under_reviews {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.box_container_content_reviews{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
}

.swiper_reviews{
    width: 100%;
}

.swiper_reviews::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 30px;
    height: 160px;
    flex-shrink: 0;
    background: linear-gradient(90deg, #F2F3F6 26.87%, rgba(242, 242, 242, 0.00) 115%);
}
.swiper_reviews::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -1px;
    z-index: 100;
    width: 30px;
    height: 160px;
    flex-shrink: 0;
    transform: rotate(180deg);
    background: linear-gradient(90deg, #F2F3F6 26.87%, rgba(242, 242, 242, 0.00) 115%);
}

.box_item_reviews {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    /* flex: 1 0 0; */
    border-radius: 14px;
    background: #FFF;
}

.box_top_content_item_reviews {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
    justify-content: space-between;
}

.box_photo_name_date_item_reviews {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    /* flex: 1 0 0; */
}

.photo_item_reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.box_name_date_item_reviews {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.name_item_reviews {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.date_item_reviews {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    opacity: 0.5;
}

.icon_quotes_item_reviews {
    width: 20px;
    height: 20px;
    fill: #1B1444;
}

.comment_reviews {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
}


.swiper_slide_item_reviews{
    max-width: 285px;
}

.box_navigation_reviews{
    display: flex;
    gap: 12px;
    width: fit-content;
    margin-left: auto;
}

.button_prev_reviews,
.button_next_reviews {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #fff;
    transition: var(--all-time-transition);
}

.button_prev_reviews:hover,
.button_next_reviews:hover {
    border-color: #495260;

}

.icon_next_reviews,
.icon_prev_reviews {
    fill: #071121;
    width: 20px;
    height: 20px;
}

.icon_prev_reviews {
    transform: rotate(180deg);
}

.swiper_reviews{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box_navigation_reviews{
    padding: 0 10px;
}


.box_title_content_reviews{
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.container_list_reviews {
    max-height: 200px;
}

.comment_reviews {
    max-height: 95px;
    overflow-y: auto;
}

.comment_reviews::-webkit-scrollbar{
    display: none;
}


@media screen and (min-width: 744px) {
    .box_title_content_reviews {
        gap: 16px;
    }

    .section_reviews{
        gap: 20px;
    }

    .title_reviews {
        font-size: 48px;
    }

    .swiper_reviews{
        gap: 20px;

    }

    .box_container_content_reviews{
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }

    .swiper_reviews::before {
        width: 125px;
        height: 100%;
    }

    .swiper_reviews::after {
        width: 125px;
        height: 100%;
    }

    .box_navigation_reviews {
        margin-right: auto;
    }

}

@media screen and (min-width: 1280px) {

    .box_title_content_reviews {
        width: 90%;
    }

    .box_top_reviews {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        gap: 40px;
        align-self: stretch;
    }

    .box_navigation_reviews{
        width: fit-content;
        margin: 0;
    }

    .section_reviews {
        padding-bottom: 60px;
        gap: 40px;
        position: relative;
    }

    .box_title_content_reviews{
        gap: 16px;
    }

    .box_container_content_reviews {
        margin-left: -40px;
        margin-right: -40px;
        width: calc(100% + 80px);
    }

    .swiper_reviews::before {
        width: 140px;
    }

    .swiper_reviews::after {
        width: 140px;
    }

    .box_navigation_reviews{
        position: absolute;
        top: 40px;
        right: 0;
    }

}
@media screen and (max-width: 743px) {
    .box_title_content_reviews {
        gap: 16px;
    }
    .box_container_content_reviews {
        gap: 10px;
    }

}
@media screen and (max-width: 500px) {
    .send_report_property_form {
        width: 100%;
    }
}
/* ======================= /block_reviews ======================= */
/* ======================= block_contact ======================= */


.section_contact_form {
    /*padding-bottom: 30px;*/
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.container_info_contact_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
}

.box_top_info_contact_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.title_contact_form {
    color: var(--color-violet-600);
    font-family: var(--font-family-playfair);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.text_under_contact_form {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.box_bottom_info_contact_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
}

.box_item_info_contact_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.box_row_items_info_contact_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
}

.title_item_info_contact_form {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px; /* 112.5% */
}

.link_info_contact_form {
    color: var(--color-violet-600);
    font-family: var(--font-family-helvetica);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.box_content_item_info_contact_form.social_link {
    display: flex;
    align-items: center;
    gap: 4px;
    align-self: stretch;
}

.icon_social_link_info_contact_form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 42px;
    max-width: 42px;
    min-height: 42px;
    max-height: 42px;
    fill: #1B1444;
}

.link_info_contact_form.social_link {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--all-time-transition);
}

.link_info_contact_form.social_link:hover {
    background-color: #FFF;
}

.container_form_contact_form {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-radius: 14px;
    background: #FFF;
}

.form_contact_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 29px;
    align-self: stretch;

}

.label_contact_form {
    width: 100%;
}

.input_contact_form {
    width: 100%;
    display: flex;
    padding: 12px 0;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-bottom: 1px solid #090712;
    opacity: 0.5;
    transition: var(--all-time-transition);
    overflow: hidden;
    color: #090712;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0;
}

.textarea_contact_form {
    overflow: hidden;
    color: #090712;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    display: flex;
    height: 140px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
    resize: none;
    opacity: 0.5;
    border-bottom: 1px solid #090712;
    transition: var(--all-time-transition);
    border-radius: 0;
}

.input_contact_form:focus,
.textarea_contact_form:focus {
    opacity: 1;
}

.form_contact_form br {
    display: none;
}
.form_contact_form .label_contact_form {
    margin-bottom: 29px;
}
.input_contact_form{
    height: 44px;
}
@media screen and (min-width: 744px) {
    .title_contact_form{
        font-size: 48px;
    }

    .box_row_items_info_contact_form {
        flex-direction: row;
    }

    .box_item_info_contact_form{
        width: 100%;
    }

    .container_form_contact_form {
        padding: 40px;
    }

    .title_item_info_contact_form{
        font-size: 16px;
        line-height: 18px;
    }
    .link_info_contact_form{
        font-size: 24px;
        line-height: 30px;
    }

}

@media screen and (min-width: 1280px) {

    .section_contact_form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        /*padding-bottom: 60px;*/
    }

    .box_row_items_info_contact_form {
        flex-direction: column;
    }

    .container_info_contact_form{
        justify-content: space-between;
    }
}

.container_form_contact_form .wpcf7 {
    width: 100%;
}

.form_contact_form p {
    width: 100%;
}

.text_under_contact_form {
    max-width: 505px;
}


.section_last_news .wpcf7-response-output {
    background-color: #fff;
    border: none;
    color: #46b450;
    font-family: var(--font-family-helvetica);
}

.section_last_news .wpcf7-form.sent {
    margin-top: 15px;

}

@media screen and (max-width: 1280px) {
    .text_under_contact_form {
        max-width: 100%;
    }
}

/* ======================= /block_contact ======================= */

/* ======================= block_last_news ======================= */

.section_last_news {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
}

.title_last_news {
    color: var(--color-violet-600);
    text-align: center;
    font-family: var(--font-family-playfair);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;

    /* 33.6px */
}

.list_last_news {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(342px, 1fr));
    gap: 20px;
}

.link_last_news {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    align-self: stretch;
    border-radius: 20px;
    background: #FFF;
    transition: var(--all-time-transition);
}

.link_last_news:hover {

    box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.img_last_news {
    width:  100%;
    object-fit: cover;
    height: 220px;
    align-self: stretch;
}

.content_last_news {
    display: flex;
    padding: 0 16px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.date_last_news {
    color: #090712;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    opacity: 0.5;
    height: 14px;
}

.box_title_last_news {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.box_title_icon_last_news{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 20px;
}

.title_last_news_item {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #090712;
    text-overflow: ellipsis;
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    transition: var(--all-time-transition);
}


.icon_arrow_last_news_item {
    transform: rotate(-45deg);
    transition: var(--all-time-transition);
    fill: #090712;
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
}

.text_last_news_item{
    overflow: hidden;
    color: #090712;
    text-overflow: ellipsis;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42;
    height: 39px;
    align-self: stretch;
    opacity: 0.5;
    /* 142.857% */
}

.link_last_news:hover .title_last_news_item {
    /*overflow: hidden;*/
    /*color: #090712;*/
    /*text-overflow: ellipsis;*/
    /*font-family: var(--font-family-helvetica);*/
    /*font-size: 16px;*/
    /*font-style: normal;*/
    /*font-weight: 700;*/
    /*line-height: 20px;*/
    /*!* 125% *!*/
    /*text-decoration-line: underline;*/
    /*text-decoration-style: solid;*/
    /*text-decoration-skip-ink: none;*/
    /*text-decoration-thickness: auto;*/
    /*text-underline-offset: auto;*/
    /*text-underline-position: from-font;*/
    text-decoration: underline;
}

.link_last_news:hover .icon_arrow_last_news_item {
    transform: rotate(-180deg);
}


@media screen and (min-width: 744px) {
    .section_last_news {
        gap: 40px;
        padding-bottom: 60px;
    }

    .title_last_news {
        font-size: 48px;
    }

}
@media screen and (max-width: 743px) {
    .list_last_news {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
    .background_home_page {
        padding-bottom: 40px;
    }

}

@media screen and (min-width: 1280px) {
    .list_last_news {
        max-width: none;
        grid-template-columns: repeat(4, 1fr);
    }

}




/* ======================= /block_last_news ======================= */
