.footer{
    background: #031325;
    color: white;

    padding: 5rem 12% 2rem;
}

.footer-content{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo img{
    height: clamp(3rem, 5vw, 4rem);
    width: auto;
}

.footer-brand p{
    margin-top: 1.5rem;

    max-width: 20rem;

    color: rgba(255,255,255,.65);
    line-height: 1.8;
}

.footer h4{
    margin-bottom: 1.5rem;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    letter-spacing: .08em;

    color: white;
}

.footer ul{
    list-style: none;
}

.footer li{
    margin-bottom: .8rem;
}

.footer a{
    color: rgba(255,255,255,.65);
    text-decoration: none;

    transition: .3s;
}

.footer a:hover{
    color: #ff5a00;
}

.footer-contact p{
    margin-bottom: .8rem;
    color: rgba(255,255,255,.65);
}

.footer-bottom{
    margin-top: 4rem;
    padding-top: 2rem;

    border-top: .05rem solid rgba(255,255,255,.1);

    text-align: center;
}

.footer-bottom p{
    color: rgba(255,255,255,.5);
    font-size: .9rem;
}

/* Tablet */

@media (max-width: 75rem){

    .footer{
        padding: 4rem 8% 2rem;
    }

    .footer-content{
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

}

/* Mobile */

@media (max-width: 48rem){

    .footer{
        padding: 4rem 6% 2rem;
    }

    .footer-content{
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p{
        max-width: 100%;
    }

    .footer ul{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom{
        margin-top: 3rem;
    }

}

/* Kleine Smartphones */

@media (max-width: 30rem){

    .footer{
        padding: 3rem 5% 1.5rem;
    }

    .footer-content{
        gap: 2rem;
    }

    .footer h4{
        font-size: .9rem;
    }

    .footer-bottom p{
        font-size: .8rem;
    }

}