.footer {
    position: relative;
    color: #042433;
    padding-top: 72px;
    padding-bottom: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (max-width: 767px) {
    .footer {
        padding-bottom: 1.5rem;
    }
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0; bottom: 2rem;
    background: url("/assets/img/footer-wave.png");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.footeer__methods {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footeer__methods > * {
    margin-left: 2rem;
}

.footer__description {
    margin-top: 3.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media (max-width: 767px) {
    .footer__description {
        flex-direction: column;
    }
}

.footer__logo {
    font-size: 1.25rem;
}

.footer__logo svg {
    width: 12.25rem;
    height: 2.5625rem;
    color: #03A9F4;
}

.footer__logo div {
    line-height: 1;
}

.footer__licenses {
    font-size: .75rem;
    max-width: 37.5rem;
    line-height: 1.5rem;
    margin-top: 1.5rem;
}

.footer__licenses > :last-child {
    margin-top: .5rem;
    margin-bottom: 0;
}

.description__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
@media (max-width: 767px) {
    .description__right {
        margin-top: 2rem;
        align-items: flex-start;
    }
}
.description__login {
    margin-top: 1rem;
    color: #042433;
    font-size: 1.25rem;
}
.description__login a {
    text-decoration: none;
    color: #042433;
    position: relative;
    display: inline-block;
    transition: opacity .3s;
}
.description__login a:hover {
    opacity: 0.5;
}
.description__login a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #042433;
    opacity: 0.3;
    bottom: -6px;
    left: 0;
    pointer-events: none;
}

.footer__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5.25rem;
}
@media (max-width: 767px) {
    .footer__footer {
        margin-top: 2rem;
    }
}

.footer__copy {
    font-size: 0.75rem;
}

.footer__title {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
@media (max-width: 767px) {
    .footer__title {
        font-size: .85rem;
    }
}

/* list */

.footer__list.nav__list {
    /* margin-top: 2rem; */
}

.nav__list {
    display: grid;
    grid-template: 1fr / auto auto auto auto;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .nav__list {
        display: grid;
        grid-template: auto auto / 1fr 1fr;
    }
    .nav__list > :nth-child(1) { order: 2; }
    .nav__list > :nth-child(2) { order: 4; }
    .nav__list > :nth-child(3) { order: 1; }
    .nav__list > :nth-child(4) { order: 3; }

    .nav__list {
        column-gap: 1rem;
    }

    .nav__list .list {
        font-size: .85rem !important;
    }

    .nav__list .list {
        margin-bottom: 1.8rem;
    }
}

.nav__list ul {
    margin-left: 0;
    padding-left: 0;
}

.nav__list .list {
    font-size: 1rem;
    color: #042433;
    text-align: left;
}
.nav__list .list ul {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 700;
    margin-bottom: 0.6875rem;
}
.nav__list .list > :not(:first-child) {
    margin-top: 0.5rem;
}
.nav__list .list li {
    display: flex;
    align-items: center;
    list-style: none;
}
.nav__list .list__title {
    font-weight: bold;
}
.nav__list .list li svg {
    width: 0.88rem;
    height: 0.88rem;
    min-width: 0.88rem;
    min-height: 0.88rem;
    margin-left: 0.5rem;
}
.nav__list .list a {
    color: #042433;
    text-decoration: none;
    transition: color .3s;
    position: relative;
}
.nav__list .list a br {
    display: none;
}
.nav__list .list a::before {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #042433;
    opacity: 0.3;
    transition: opacity .3s;
}
.nav__list .list a:hover {
    color: #03A9F4;
}
.nav__list .list li.active a {
    color: #03A9F4;
}
.nav__list .list li.active a::before {
    opacity: 0;
}
.nav__list .list a:hover::before {
    background-color: #03A9F4;
}
/*  */
@media (max-width: 400px) {
    .nav__list .list a::before {
        display: none;
    }
    .nav__list .list a {
        text-decoration: underline;
    }
}