.contactAndLocationContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 3rem;
    background-color: white;
    box-shadow: 1px 1px 5px grey;
    border-radius: 3px;
    padding: 10px 0px;
}
.locationContainer {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.singleLocationContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    max-width: 250px;
}
.singleLocationIcon {
    font-size: 2rem;
    color: black;
    border: 2px solid black;
    border-radius: 100%;
    min-width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.singleLocationText {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}
.contactContainer {
    position: relative;
    width: 100%;
}

.contactContainer form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.contactContainer .cmInputContainer {
    max-width: 90%;
}
.flexContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.flexContainer .cmInputContainer {
    width: 44%;
}
.messageSent {
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    min-height: 300px;
    text-align: center;
    display: none;
}
.messageSent .fa{
    cursor: initial
}

.recaptchaRequired {
    color: red;
    margin: 0;
    margin-top: -20px;
    display: none;
    font-size: 0.85rem
}

.recaptchaRequiredBox{
    border: 1px solid red;
    height: 76px;
    width: 302px;
    border-radius: 5px;
}
@media screen and (max-width: 1000px) {
    .flexContainer .cmInputContainer {
        width: 100%;
    }

    .flexContainer {
        flex-direction: column;
    }
}

@media screen and (max-width: 600px) {
    .singleLocationText {
        text-align: start;
    }
    .singleLocationContainer {
        flex-direction: row;
        width: 90%;
        margin: auto;
        justify-content: flex-start;
    }
    .locationContainer {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
}
