/* ==========================================
   FOOTER
========================================== */

.footer {
    background: #efe5de;
    border-top: 1px solid var(--border);
    padding: 90px 0 35px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* ---------- ЛОГОТИП ---------- */

.footer-logo {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
}


/* ---------- ОПИСАНИЕ ---------- */

.footer-description {
    max-width: 620px;

    color: var(--secondary);

    line-height: 1.9;
    font-size: 17px;

    margin-bottom: 55px;
}


/* ---------- КОНТАКТЫ ---------- */

.footer-contacts {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-bottom: 45px;

    color: var(--secondary);

    flex-wrap: wrap;
}

.footer-contacts a {
    transition: .3s;
}

.footer-contacts a:hover {
    color: var(--gold);
}


/* ---------- НИЖНЯЯ ЧАСТЬ ---------- */

.footer-bottom {
    width: 100%;

    padding-top: 28px;

    border-top: 1px solid rgba(0, 0, 0, .08);
}

.footer-bottom p {
    color: #8c786d;

    font-size: 14px;
    letter-spacing: .04em;

    margin: 0;
}


/* =========================================================
   ПЛАНШЕТ
========================================================= */

@media (max-width: 900px) {

    .footer {
        padding: 70px 0 30px;
    }

    .footer-logo {
        width: 160px;
        margin-bottom: 25px;
    }

    .footer-description {
        max-width: 560px;

        font-size: 16px;

        margin-bottom: 40px;
    }

    .footer-contacts {
        gap: 14px;

        margin-bottom: 35px;
    }

}


/* =========================================================
   ТЕЛЕФОН
========================================================= */

@media (max-width: 600px) {

    .footer {
        padding: 55px 20px 25px;
    }


    /* Логотип */

    .footer-logo {
        width: 140px;

        margin-bottom: 25px;
    }


    /* Описание */

    .footer-description {
        width: 100%;
        max-width: 340px;

        font-size: 15px;
        line-height: 1.7;

        margin-bottom: 35px;
    }


    /* Контакты */

    .footer-contacts {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 14px;

        margin-bottom: 35px;
    }


    /* Убираем точки между контактами */

    .footer-contacts span {
        display: none;
    }


    .footer-contacts a {
        font-size: 15px;

        text-decoration: none;
    }


    /* Нижняя часть */

    .footer-bottom {
        padding-top: 22px;
    }


    .footer-bottom p {
        font-size: 12px;

        line-height: 1.6;
    }

}