.footer {
    background-color: #EDF4F5;
    height: 323px;
    margin-bottom: 40px;
    border-radius: 30px;
    padding: 30px 90px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media (max-width: 1200px) {
        padding: 12px 3%;
        margin-bottom: 16px;
    }
    @media (max-width: 992px) {
        >img {
            display: none;
        }
    }
    @media (max-width: 900px) {
        height: auto;
        align-items: flex-start;
        gap: 3%;
    }
    @media (max-width: 660px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.ft_bl1 {
    h4 {
        margin-top: 16px;
        font-size: 24px;
        font-weight: 500;
    }

    .ft_contacts {
        display: flex;
        gap: 30px;

    }

    .ft_contacts_item {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 16px;

        > img {
            width: 24px;
            height: 24px;
        }

        > a, p {
            font-size: 16px;
        }
    }

    @media (max-width: 900px) {
        > h3 {
            font-size: 20px;
        }

        > h4 {
            margin-top: 8px;
            font-size: 20px;
        }

        .ft_contacts_item {
            margin-top: 8px;

            > img {
                width: 16px;
                height: 16px;
            }

            > a, p {
                font-size: 14px;
            }
        }
    }
    @media (max-width: 700px) {
        .title_bl {
            display: none;
        }

        > h4 {
            margin-top: 6px;
            font-size: 16px;
        }
    }
}

.ft_bl2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 245px;
    > h4 {
        margin-top: 16px;
        font-size: 22px;
        font-weight: 500;
    }
    > div {
        display: flex;
        width: 100%;
        gap: 20px;
        justify-content: space-between;
    }

    img {
        margin-top: 20px;
    }

    @media (max-width: 900px) {
        > h4 {
            margin-top: 8px;
            font-size: 20px;
        }

        img {
            margin-top: 20px;
        }
    }
    @media (max-width: 700px) {
        margin-top: 10px;
        > h4 {
            margin-top: 6px;
            font-size: 16px;
        }
        img {
            margin-top: 10px;
        }
        .br_off{
          display: none;
        }
    }
    @media (max-width: 600px) {
        display: none;
    }
}

.ft_bl3 {
    img {
        width: 154px;
        height: 154px;
    }

    @media (max-width: 900px) {
        display: none;
    }
}
#scrollToTopBtn{
    display: none; /* Скрываем кнопку по умолчанию */
    position: fixed; /* Фиксированное положение */
    bottom: 20px; /* Отступ от нижнего края */
    left: 5%; /* Отступ от правого края */
    z-index: 10; /* Убедитесь, что кнопка поверх других элементов */

    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer; /* Курсор в виде указателя */
    border-radius: 50%; /* Круглая форма */
    font-size: 18px; /* Размер текста */
    transition: opacity 0.3s, visibility 0.3s; /* Плавное появление */
    @media (max-width: 1300px) {
        left: 2%;
    }
}

#scrollToTopBtn:hover {
    background-color: #e6e6e6; /* Цвет фона при наведении */
}

.bottom_footer {
    width: 100%;
    height: 100px;
    background-color: #F4F4F4;
    @media (max-width: 700px) {
        height: 50px;
    }
}









