.footer-container {
    position: absolute;
    left: 0;
    right: 0;

    display: flex;
    height: calc(20vh);
    background-color: #EDEDED;
}

.footer-section {
    display: flex;
    width: 45%;
    height: 100%;

    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
}

.footer-img-link {
    width: auto;
    height: 80%;
    align-items: center;
    display: flex;
    text-decoration: none;
}
.footer-btn-link {
    text-decoration: none;
}
.footer-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.footer-button {
    background-color: #C8133B;
    height: auto;
    min-height: 20%;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    color: white;
    font-size: min(2em, 2vw);
    border-radius: 1vw;
    border: 0px;
    display: block;
    padding-top: 5%;
    padding-bottom: 5%;
    transition-duration: 0.15s;
    line-height: min(2em, 2vw);
    font-family: 'Inter';
}
.footer-button:hover {
    background-color: #96102E;
}
@media (max-width: 992px) {
    .footer-button {
        min-height: unset;
    }
    .footer-container {
        height: auto;
    }
    .right-footer {
        height: auto;
    }
}

.right-footer {
    justify-content: right;
}