footer {
    background-color: #323232;
}

.footer__container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
}

.footer__items {
    flex-basis: 25%;
    margin: 0 20px;
}

@media (orientation: portrait) and (max-width: 768px) {
    .footer__container {
        flex-direction: column;
    }
}

.footer__image {
    width: 75px;
    height: 50px;
    opacity: 0.6;
}

.footer__image:hover {
    opacity: 1;
}

.footer__paragraph {
    color: white;
    margin-top: 30px;
    font-size: 16px;
}

.footer__container-h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer__author {
    height: 5vh;
    color: #999999;
    background-color: #fff8ee;
    text-align: center;
    font-size: 20px;
    line-height: 5vh;
    text-transform: uppercase;
}

.footer__map {
    width: 200px;
    height: 200px;
}

@media (orientation: portrait) and (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        height: 80vh;
    }
    .footer__map {
        width: 80%;
        margin-bottom: 10px;
    }
    .footer__paragraph {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .footer__author {
        height: 5vh;
        color: #999999;
        background-color: #fff8ee;
        text-align: center;
        font-size: 12px;
        line-height: 5vh;
    }
    .footer__container-h4 {
        text-align: center;
    }
}