.wrapper-ft {
    background-image: url("../static/background-footer.jpg");
    overflow-x: hidden;
}

footer {
    height: 100px;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.rules {
    color: #9B8169;
}

.policy {
    margin-left: clamp(20px, 7.2vw, 99px);
    display: flex;
    align-items: center;
    gap: clamp(20px, 7.2vw, 99px);
}

.policy a {
    text-decoration: none;
    color: #9B8169;
}

.contacts {
    display: flex;
    margin-left: clamp(20px, 7.2vw, 99px);
    gap: 24px;
    align-items: center;
}

/* MOBILE */
@media (max-width: 1024px) {
    footer {
        height: auto;
        padding: 20px 16px;
    }

    .contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        white-space: normal;
    }

    .rules {
        font-size: clamp(11px, 3vw, 14px);
        color: #9B8169;
        font-weight: 300;
    }

    .policy {
        margin-left: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 300;
    }

    .policy a {
        font-size: clamp(11px, 3vw, 14px);
        color: #9B8169;
        white-space: nowrap;
    }

    .contacts {
        margin-left: 0;
        gap: 12px;
    }

    .contacts img {
        width: clamp(16px, 4vw, 22px);
        height: auto;
    }
}