/* Footer CSS */

.footer {
    background-color: #000;
    padding: 100px 0;
}

.footer__container {
    align-items: center;
    display: grid;
    grid-template-columns: auto 400px;
}

.footer__logo {
    background-image: url('../images/logo.svg');
    background-size: cover;
    height: 72px;
    width: 110px;
}

.footer__text {
    display: flex;
    justify-content: space-between;
}

.footer__text p {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

@media only screen and (max-width: 830px) {
    
    .footer__container {
        grid-template-columns: auto 280px;
    }
}

@media only screen and (max-width: 520px) {
    
    .footer__container {
        display: block;
    }

    .footer__logo {
        margin: 0 auto 40px auto;
    }

    .footer__text {
        width: 100%;
    }
}

@media only screen and (max-width: 330px) {
    
    .footer__text {
        display: block;
    }

    .footer__text p {
        text-align: center;
    }

    .footer__text__email {
        margin-bottom: 20px;
    }
}