/************************ Contact ***************************/
.contact_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.message_us {
    width: 40%;
    margin-top: -130px;
}

.message_us h1 {
    text-align: center;
    margin-top: -15px;
    margin-bottom: 15px;
}

.contact_form {
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
    background-color: var(--white);
    box-shadow: 0px 10px 30px 1px rgba(161, 117, 117, 0.20);
}

.contact_form_field {
    height: 37px;
    width: 100%;
    margin-right: 15px;
    padding: 0;
    padding-left: 15px;
    border: 1px solid var(--black);
    background-color: transparent;
    box-sizing: border-box;
}

.contact_form_textarea {
    height: 160px;
    max-width: 100%;
    padding-top: 10px;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif !important;
}

.contact_form_field::placeholder {
    color: var(--dark-blue);
}

.contact_form button {
    width: 100%;
}

.contact_form p:first-of-type {
    margin-top: 0;
}

.contact_form h2 {
    margin: -10px 0 10px;
}

#form-messages {
    display: none;
    margin: 0;
}

.success {
    display: block !important;
    text-align: center;
    margin-top: 25px !important;
}

/*************************** Contact Methods ********************************/
.contact_methods {
    width: 100%;
    margin: 50px 0;
}

.contact_methods h1 {
    text-align: center;
    margin-bottom: 15px;
}

.methods {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.method {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 30px) / 2);
    padding: 25px;
    box-sizing: border-box;
    background-color: var(--white);
    box-shadow: 0px 10px 30px 1px rgba(161, 117, 117, 0.20);
}
/* 
.method:first-of-type {
    margin-bottom: 30px;
} */

.method h3 {
    color: var(--dark-blue);
    margin-bottom: 0;
}

.method a {
    color: var(--gold);
    font-weight: 700;
}

.method_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 37px;
    margin-bottom: 20px;
    box-shadow: 0px 3px 5px #00000014;
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
}

/**************** Social *******************/
.contact_social {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.contact_social a {
    margin-right: 15px;
}

.contact_social a:last-of-type {
    margin-right: 0;
}

.contact_social .social_icon {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 37px;
    box-shadow: 0px 3px 5px #00000014;
    background-color: var(--gold);
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
    font-weight: 400;
}

.contact_social .social_icon:hover {
    opacity: 0.93;
    transition: 0.15s all ease-in-out;
}

.contact_social .social_icon:active {
    transform: scale(0.96);
    background-position: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

@media (max-width: 1070px) {
    .contact_wrapper {
        display: block;
    }
}

@media (max-width: 950px) {
    .methods {
        flex-direction: column;
    }

    .method {
        width: 100%;
    }
    

    .method:first-of-type {
        margin-bottom: 30px;
    }
}