.container {
    display: flex;
    justify-content: center;
}

.contact_form {
    max-width: 1640px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #A141FB;
    margin-top: 60px;
    border-radius: 25px;
    margin: 60px 120px 0px 120px;
}

.contact_form .map {
    width: 50%;
    margin: 0px 30px 0px 60px;
    height: 100%;
    padding: 60px 0px 60px 0px;
}

.contact_form .text {
    width: 50%;
    margin: 60px 60px 60px 30px;
}

.contact_form .map iframe {
    border-radius: 25px;
    width: 100%;
    height: 100%;
}

.contact_form  h1 {
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    text-align: left;
    width: 100%;
    color: white;
    text-transform: uppercase;
}

.contact_form p {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 45px;
    text-align: left;
    width: 100%; 
    color: white;
}

label {
    color: white;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

input {
    outline: none;
    font-family: "Open Sans", sans-serif;
    color: white;
    font-size: 18px;
    width: 100%;
    line-height: 20px;
    padding: 10px;
    margin: 15px 0px 30px 0px;
    border-radius: 15px;
    border-color: white;
    border-width: 2px;
    border-style: solid;
    background-color: transparent;
}

#email {
    width: 100%;
}

textarea {
    background-color: transparent;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin: 15px 0px 30px 0px;
    width: 100%;
    height: 240px;
    padding: 10px;
    border-radius: 15px;
    border-color: white;
    border-width: 2px;
    color: white;
}

input:focus {
    outline: none;
    border-color: #8835D6;
}

textarea:focus {
    outline: none;
    border-color: #8835D6;
}

.contact_form button {
    background-color: #8835D6;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    font-size: 18px;
    border: none;
    padding: 12px 60px;
    cursor: pointer;
    border-radius: 15px;
    width: 100%;
}

.contact_form button:hover {
    font-weight: 700;
}


@media all and (max-width:1380px) {

    .contact_form {
        width: 100%;
        flex-wrap: wrap-reverse;
    }

    .contact_form .text {
        width: 100%;
        margin: 60px 60px 30px 60px;
    }

    .contact_form .map {
        width: 100%;
        height: 500px;
        margin: 30px 60px 60px 60px;
        padding: 0;
    }

    .contact_form .map iframe {
        width: 100%;
        height: 100%;
    }

}

@media all and (max-width:1200px) {

    .contact_form {
        margin: 60px 60px 0px 60px;
    }

}

@media all and (max-width: 768px) {

    .contact_form {
        margin: 30px 60px 0px 60px;
    }

    .contact_form .text {
        margin: 60px 60px 30px 60px;
    }

    .contact_form .text #first_name,
    .contact_form .text #last_name {
        width: 100%;
        margin-right: 0px;
        margin-left: 0px;
    }

    .contact_form textarea {
        height: 160px;
    }

    .contact_form .map {
        margin: 30px 60px 60px 60px;
        height: auto;
    }

    .contact_form .map iframe {
        height: 400px;
    }

}

@media all and (max-width:450px) {

    .contact_form {
        margin: 20px 30px 0px 30px;
    }

    .contact_form h1 {
        font-size: 32px;
    }

    .contact_form p {
        margin-bottom: 30px;
    }

    .contact_form .text {
        margin: 30px 30px 15px 30px;
    }

    .contact_form textarea {
        height: 130px;
    }

    .contact_form button {
        font-size: 16px;
    }

    .contact_form .map {
        margin: 15px 30px 30px 30px;
    }

    .contact_form .map iframe {
        height: 300px;
    }

}



