footer {
    --Footer-Vertical-Padding: 64px;
    position: relative;
    padding: var(--Footer-Vertical-Padding) var(--Side-Padding-Large);
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: var(--Colors-Main-Dark);
}
footer .footer-head {
    display: flex;
    justify-content: space-between;
}
footer .footer-head .slogan-block {
    display: flex;
    flex-direction: column;
}
@media screen and (min-width: 680px) {
    footer .footer-head .slogan-block {
        align-items: center;
   }
}
footer .footer-head .slogan-block .footer-logo {
    width: 100%;
    max-width: 137px;
}
footer .footer-head .slogan-block .slogan-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400px;
    color: var(--Colors-Text-Primary-Light);
}
footer .footer-head .info-block {
    display: flex;
    gap: 140px;
}
footer .footer-head .info-block .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
footer .footer-head .info-block .info .info-link {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--Colors-Text-Primary-Light);
    text-decoration: none;
    text-transform: uppercase;
}
footer .footer-head .socials-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media screen and (min-width: 846px) {
    footer .footer-head .socials-block {
        align-items: flex-end;
   }
}
@media screen and (min-width: 680px) and (max-width: 846px) {
    footer .footer-head .socials-block {
        align-items: center;
   }
}
footer .footer-head .socials-block .socials {
    display: flex;
    gap: 24px;
}
footer .footer-head .socials-block .sub-info-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #7a7887;
}
footer .footer-notation {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    max-width: 1280px;
    color: #c1c1c8;
    align-self: center;
}
@media screen and (min-width: 680px) {
    footer .footer-notation {
        text-align: center;
   }
}
@media screen and (max-width: 1280px) {
    footer .footer-head .info-block {
        gap: 72px;
   }
}
@media screen and (max-width: 1024px) {
    footer .footer-head .info-block {
        gap: 64px;
   }
}
@media screen and (max-width: 846px) {
    footer {
        --Footer-Vertical-Padding: 48px;
   }
    footer .footer-head {
        display: grid;
        grid-template-columns: 1fr 3fr;
        row-gap: 32px;
   }
    footer .footer-head .info-block {
        justify-content: flex-end;
   }
    footer .footer-head .socials-block {
        gap: 16px;
   }
}
@media screen and (max-width: 680px) {
    footer {
        padding: 20px 32px;
        gap: 24px;
   }
    footer .footer-head {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
   }
    footer .footer-head .info-block {
        flex-direction: column;
        gap: 24px;
        align-items: flex-end;
   }
    footer .footer-head .info-block .info {
        gap: 24px;
        align-items: start;
        align-self: stretch;
   }
}
