footer {
    display: flex;
    justify-content: space-between; /* REMOVE */
    padding: 110px 150px;
    background-color: var(--dark-blue);
}
.footer__logo {
    width: 25%;
    display: flex;
    text-decoration: none;
}
.footer__logo-horizontal {
    display: none;
}
.footer__logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer__logo-container img {
    width: 105px;
    height: 105px;
    margin-bottom: 30px;
}
.footer__logo-text {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--sand);
}
.footer__pages {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__pages a {
    font-family: Raleway;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}
.footer__pages a:hover {
    color: var(--sand);
}
.footer__contacts {
    /*width: 30%;*/
    display: flex;
    flex-direction: column;
    font-variant-numeric: lining-nums;
}
.footer__title {
    font-family: Raleway;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: white;
}
.footer__contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-family: Raleway;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.footer__contact:nth-of-type(1) {
    align-items: center;
}
.footer__contact:nth-of-type(3) {
    margin-bottom: 30px;
}
.footer__contact:hover {
    color: var(--sand);
}
.footer__contact:hover path {
    fill: var(--sand);
}
.footer__icons {
    display: flex;
    gap: 30px;
}
.footer__icons a:hover path {
    fill: var(--sand);
}
.footer__terms {
    width: 20%;
    display: flex;
    flex-direction: column;
}
.footer__terms a {
    font-family: Raleway;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    color: white;
    margin-bottom: 6px;
}
.footer__terms a:hover {
    color: var(--sand);
}
.footer__cards {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}
.footer__cards img[alt="MasterCard"], .footer__mastercard {
    width: 40px;
}
.footer__cards img[alt="Google Pay"], .footer__cards img[alt="Apple Pay"], .footer__googlepay, .footer__applepay {
    width: 60px;
}

@media screen and (max-width: 769px) {
    footer {
        flex-direction: column;
        padding: 60px 20px;
    }
    .footer__logo {
        width: 100%;
        flex-direction: column;
        margin-bottom: 50px;
    }
    .footer__logo-container {
        flex-direction: row;
        gap: 14px;
    }
    .footer__logo-container img {
        margin: 0;
    }
    .footer__logo-text {
        width: 100px;
    }
    .footer__logo-vertical {
        display: none;
    }
    .footer__logo-horizontal {
        display: flex;
    }
    .footer__logo-horizontal img {
        width: 200px;
    }
    .footer__pages {
        width: 100%;
        margin-bottom: 50px;
    }
    .footer__pages a {
        font-weight: 400;
    }
    .footer__contacts {
        width: 100%;
        margin-bottom: 60px;
    }
    .footer__terms {
        width: 100%;
    }
}