@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700&display=swap');

:root {
    --padding-container: 0 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Footer */

.footer {
    background-color: #353535;
    --padding-container: 60px 50px 30px;
    overflow: visible;
    position: relative;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.footer__network {
    display: flex;
    flex-direction: column;
    padding: 1em;
}

.footer__titles {
    color: #fff;
    margin-bottom: 1em;
    font-size: var(--body);
    font-weight: var(--bold);
}

.footer__lists {
    padding: 0;
}

.footer__items {
    display: grid;
    grid-template-columns: 30px 1fr;
    list-style: none;
    margin-bottom: 1em;
}

.footer__info {
    color: #fff;
    white-space: nowrap;
    line-height: var(--lh-M);
    font-size: var(--body);
}

.footer__logo {
    margin: 0 auto;
    max-width: 205px;
    max-height: 205px;
}

.footer__logo--desktop{
    display: block;
}

.footer__logo--mobile{
    max-width: 100px;
    max-height: 100px;
    display: none;
    margin-top: 24px;
}

.footer__img {
    width: 100%;
    height: 100%;
}

.footer__copyright {
    margin-top: 1.5em;
    font-size: var(--body);
    color: #fff
}

.scroll-container {
    position: absolute;
    width: 100%;
}

.header__scroll {
    background-color: #ECB43B;
    border-radius: 50%;
    height: 65px;
    width: 65px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll--up {
    transform: rotate(-180deg);
    top: -32.5px;
    margin-top: -65px;
}

/* Mobile */

@media only screen and (max-width: 768px) {

    .footer__info{
        font-size: var(--caption);
    }

    .footer__copyright{
        font-size: var(--body-S);
    }

    .footer__logo--desktop{
        display: none;
    }

    .footer__logo--mobile{
        display: block;
    }
}