.footer {
    position: relative;
    width: 100%;
    margin-top: 10rem;
    padding-bottom: 6rem;
}
.footer .footer__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 6rem;
    position: relative;
}
.footer .footer__row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 6rem;
}





.footer .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 1.2rem;
}
.footer .nav-menu .menu-item {

}
.footer .nav-menu .menu-item a {
    display: block;
    position: relative;
    line-height: 1.2;
    opacity: .5;
    transition: .3s;
    font-size: 1.4rem;
}
.footer .nav-menu .menu-item a:hover {
    opacity: 1;
}






.copyrights {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: #fff;
}
.copyrights__item {
    width: 100%;
}
.copyrights__item.date {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    opacity: .3;
    justify-content: flex-start;
    text-align: left;
    font-family: var(--font-family-title);
}


.copyrights__item.url {
    display: flex;
    font-family: var(--font-family-title);
    align-items: center;
    opacity: .3;
    justify-content: flex-end;
    text-align: right;
}



