.contact-us .contact-map {
    position: relative;
    height: 250px;
    margin-bottom: 1.5em;
    width: 100%;
    border: none;
    font-size: 1em;
}
.contact-us .google_contact_map div {
    float: right;
    width: 40%;
    margin-left: 30px;
}
.mapouter {
    text-align: right;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
}

.page-container,
.text-container {
    display: flex;
    flex-direction: row;
}

.form-container,
.form-container form,
.content-container {
    display: flex;
    flex-direction: column;
}

.form-container {
    padding: 40px;
    box-shadow: 0 0 9px 0px #ccc;
    height: fit-content;
    width: 40%;
    background-color: white;
}

.page-container {
    gap: 40px;
    flex-wrap: wrap;
}

.text-container {
    justify-content: space-around;
    gap: 30px;
}

.text1-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text1-container,
.text2-container {
    padding: 20px;
}

.content-container {
    width: 50%;
}

p {
    letter-spacing: normal;
    font-size: 16px;
    font-weight: 400;
}

.form-container form button,
.text1-container a {
    border: 1px solid var(--primaryColor);
    font-size: 16px;
    font-weight: 800;
    width: fit-content;
    padding: 8px;
    border-radius: 0;
    margin-top: 10px;
    align-self: flex-end;
}

.text1-container a {
    align-self: center;
}

.form-container form button:hover,
.text1-container a:hover,
.form-container form button:active,
.text1-container a:active {
    background: var(--primaryColor);
    color: white;
}

.text1-container a:hover > .fa,
.text1-container a:active > .fa {
    color: white;
}

.subjects-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.subject-container {
    width: 90px;
    height: 100px;
    border-radius: 0px;
    box-shadow: 0px 0px 2px 0px #31313177;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
    margin: 6px;
    cursor: pointer;
    transition: box-shadow 200ms ease-in-out;
}

.subject-container:hover,
.subject-container.active {
    box-shadow: 0px 0px 6px 0px var(--primaryColor);
}

.subject-container .text {
    font-weight: 900;
}

.contact-msg {
    font-weight: 800;
}

.contact-msg.success {
    color: var(--primaryColor);
}

.contact-msg.failed {
    color: red;
}

@media only screen and (max-width: 690px) {
    .form-container,
    .content-container {
        width: 100%;
    }
}

@media only screen and (max-width: 468px) {
    .page-title-gray {
        display: none;
    }
}
