.contact-content {
    display: flex;
    justify-content: center;
    gap: 5vw;
    width: 60vw;
    font-size: 1.1rem;
}

.contact-info {
    width: 20%;
}

.contact-details {
    text-align: start;
    margin-bottom: 2rem;
}

.contact .booking-buttons {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.contact .booking-buttons .booking {
    border-color: var(--primary-color);
}

.contact .booking-buttons a {
    color: var(--primary-color);
    background-color: white;
}

.contact .booking-buttons .booking:hover a {
    color: white;
    background-color: var(--primary-color);
}

.small-padding {
    margin: 10px 0px;
    width: 220px
}

.contact-hours {
    min-width: 20%;
    padding: 0;
}

.contact-img {
    width: 60%;
}

.contact-img img {
    width: 100%;
}

.td-title {
    font-weight: 800;
    border-bottom: solid 1px black;
}

.td-day {
    min-width: 50px;
    text-align: start;
}

.td-hour {
    min-width: 100px;
    text-align: start;
}

.contact #hour-deferal {
    margin-top: 2rem;
    font-size: .9rem;
    text-align: start;
    font-weight: bold;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
    .contact-img {
        width: 100%;
    }

    .contact-content {
        width: var(--body-width);
        gap: 2rem;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
        padding: 0;
        gap: 1rem;
    }

    .booking-contact {
        height: 25px;
    }

    .contact-details {
        width: 100%;
    }

    .contact-hours {
        width: 80%;
    }

    .contact-img img {
        max-width: 100%;
    }

    .small-padding {
        margin: 10px 0px;
        width: auto;
    }

    .contact .booking-buttons {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }

    .contact .booking-buttons .booking {
        width: 100%;
        height: 40px;
    }

    .contact .booking-buttons a {
        color: white;
        background-color: var(--primary-color);
        font-size: 1.1rem;
        border-radius: 10px;
    }
}

@media (min-width: 1920px) {
    .contact-content {
        width: 40%;
    }
}

@media only screen and (min-width: 575px) and (max-width: 920px) {

    .contact-content {
        width: 80vw;
    }

    .contact-img img {
        max-width: 100%;
    }

    .contact #hour-deferal {
        margin-top: 1rem;
        font-size: .75rem;
        text-align: start;
        font-weight: bold;
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .contact-content {
        max-width: 80%;
        width: auto;
    }

        .contact .booking-buttons a {
        font-size: .9rem;
        border-radius: 10px;
        gap: 5px;
    }

}