
.contact_div {
    width: 99%;
    margin: 10px 0px 10px 0px;
    background-color: white;
}

.contact_text {
    width: 40%;
    flex-direction: column;
    margin: 10px 0px 10px 0px;
}

.contact_text h1 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
}

.contact_text p {
    width: 100%;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    margin: 10px 0px 10px 0px;
    font-family: none;
    color: black;
}

.contact_form {
    width: 50%;
    background: transparent;
}

.contact_form_1 {
    width: 100%;
}

.contact_form_1 input {
    width: 40%;
    margin: 10px 0px 10px 0px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid black;
    outline: none;
    padding-bottom: 10px;
    color: black;

}

.contact_form_1 textarea {
    width: 80%;
    height: 120px;
    resize: none;
    margin: 10px 0px 10px 0px;
    background-color: transparent;
    color: black;
    border: 2px solid black;
}

.contact_form_1 button {
    width: 40%;
    margin: 10px 0px 10px 0px;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    background-color: transparent;
    font-size: 16px;
    color: rgb(53, 16, 16);
    transition: 1s;
}

.contact_form_1 button:hover {
    border-radius: 20px;
}

.map_div {
    width: 99%;
    justify-content: space-around;
    background-color: transparent;
}

.map_frame {
    width: 40%;
    height: 300px;
    border-radius: 10px;
}

.map_data {
    width: 40%;
    border: 2px solid black;
    background-color: #243B58;
}

.map_data p {
    font-size: 17px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    margin: 10px 0px 10px 0px;
    text-align: justify;
    padding: 5px;
    color: white;
}

.contact_form_1 input::placeholder {
    color: black;
}

.error {
    color: red;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
}

