.footer {
    padding: 10rem;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    /* background: var(--color-accent); */
    background: var(--gradient-2);
    gap: 3em;
}

.footer__owen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    color: white;
    margin: auto;
}

.footer__owen a:link,
.footer__owen a:visited {
    color: white;
}

.footer .owen {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0;
}

.footer__menu {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

@media (max-width: 60rem) {
    .footer__menu {
        flex-direction: column;
        align-items: center;
        gap: 3em;
    }
}

.footer__title {
    font-size: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 60rem) {
    .footer__title {
        text-align: center;
    }
}

.footer__logo>img {
    height: 10rem;
}

.footer__nav {
    list-style: none;
    display: block;
}

@media (max-width: 60rem) {
    .footer__nav {
        display: none;
    }
}

.footer__nav-item a {
    font-size: 1.2rem;
    display: block;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-bottom 0.3s;
}

.footer__nav-item:not(:last-child) {
    margin-bottom: 1rem;
}

.footer__contact {
    font-size: 1.5rem;
}

.footer__contact a {
    color: var(--color-white);
    text-decoration: none;
}

.footer__follow>img {
    margin: 0 1rem;
    display: inline-block;
}

.footer__follow a:hover {
    transform: scale(1.2);
}

.footer__follow-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.footer__mail {
    width: 20px;
    display: inline;
    position: relative;
    top: 5px;
}

.footer__legal {
    text-align: center;
    font-size: 1.2rem;
}

.footer__mail-link {

    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: left;

}

.footer__mail-link * {}