.locations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.locations>div {
    display: flex;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

.locations img {
    object-fit: cover;
}

.l_card {
    min-height: 300px;
}

.l_img {
    width: 45%;
    min-height: 200px;

}

.address {
    width: 55%;
    font-weight: 300;
    font-size: 1.3rem;
    padding: 2rem;
    margin: auto 0;
}

.address>p {
    display: flex;
    align-items: center;
}

.address>h2 {
    margin-bottom: 0.5rem;
}

.inline_icon {
    width: 1.3rem;
    margin-right: 1rem;
}

.c_tab {
    padding: 0 0 0 2.5rem;
}

.form {
    margin-top: 8rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid darkgray;

    p {
        margin-top: 1rem;
    }
}

input,
textarea {
    border: 1px solid lightgray;
    border-radius: 3px;
    width: 100%;
    padding: 0.2rem;
}

textarea {
    min-height: 5rem;
    resize: vertical;
}

#f_submit {
    display: flex;
    justify-content: end;

    >button {
        width: 7rem;
        height: 2.5rem;
        background-color: #940e0e;
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 0.4rem;
        transition: all 0.1s linear;
        cursor: pointer;
    }

    >button:hover {
        background-color: #95cbeb;
        color: black;
    }

    >button:disabled {
        background-color: darkgray;
        color: white;
    }
}

@media (max-width: 1000px) {
    .address p {
        margin: -0.4rem 0;
    }

    .l_card {
        flex-direction: column;
    }

    .locations>div>div {
        width: 100%;
    }

    .address {
        padding: 1rem 2rem 2rem 2rem;
    }

    .l_img {
        height: calc(20vh + 10vw);
    }
}

@media (max-width: 700px) {}

@media (max-width: 500px) {}