.footer {
    background-color: #1D5239;
    text-align: center;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.footer__img {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    & > p{
        color: #fff;
    }
}

.footer__img>img {
    width: 150px;
    align-self: center;
}

.footer__hr {
    background-color: #fff;
}

.footer__quickAccess{

    margin: 10px 0;

}

.footer__menu__link {
    display: inline-block;
    transition: color .3s ease, transform .3s ease;

    &:hover {
        color: #2ec07c;
        transform: translateX(4px);
    }
}

.footer__contact__email {

    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;

    & > p {
        color: #fff;
    }

}

.footer__contact__partner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__partnerCompany {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.footer__partnerCompany>img {

    height: 28px;
}

@media (min-width: 1024px) {

    .footer {
        padding: 40px 20px;
    }

    .footer__contact__partner {
        max-width: var(--container-max);
        width: 100%;
        margin: 0 auto;
    }
}