.contact-page .locations__container .right__locations .location {
  width: calc(33.33% - 1rem);
  min-width: 340px;
}

.contact-page .locations__container {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
}

.contact-page .locations__container .right {
    width: 100%;
}

.contact-page .locations__container .right .right__locations {
    flex-wrap: wrap;
    row-gap: 2rem;
}

.contact-page .locations__container .right .location a {
    font-size: 22px;
}

.footer__left {
    width: 55%;
}

.footer__container {
    column-gap: 0;
    flex-direction: column;
}

.footer__row {
    display: flex;
    justify-content: space-between;
    column-gap: 3.5rem;

}

.footer__text {
    width: 35%;
}

.footer__locations {
    column-gap: 1rem;
    min-width: 800px;
}

.footer__locations .location {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .footer__container {
        flex-direction: column;
        row-gap: 1rem;
    }

    .footer__row {
        flex-direction: column;
    }

    .footer__row--top {
        align-items: center;
    }

    .footer__social {
        justify-content: flex-start;
        margin-bottom: .5rem;
        padding-top: 2rem;
    }

    .footer__text {
        text-align: center;
        width: 100%;
        max-width: 85%;
    }

    .contact-page .locations__container .right__locations {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer__locations {
        min-width: auto;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__email {
        text-align: center;
        display: block;
    }

    .contact-page .locations__container .right__locations {
        row-gap: 1.5rem;
        flex-wrap: wrap;
    }

    .contact-page .locations__container .right__locations .location h5 {
        margin-bottom: .5rem;
    }
}