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

.message_us {
    width: 40%;
}

.message_us h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact_form {
    width: 100%;
    box-sizing: border-box;
}

.contact_form_field {
    height: 50px;
    width: 100%;
    margin-right: 15px;
    padding: 0;
    padding-left: 15px;
    border: 3px solid var(--black);
    background-color: transparent;
    box-sizing: border-box;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif !important;
}

.contact_form_textarea {
    height: 160px;
    max-width: 100%;
    padding-top: 15px;
    font-family: 'Josefin Sans', sans-serif !important;
}

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

.contact_form button {
    width: 100%;
}

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

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

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

/*************************** Contact Methods ********************************/
.contact_methods {
    position: relative;
    width: 40%;
    margin: 0;
    display: flex;
    align-items: stretch;
    height: 100%;
}

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

.methods {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    padding-bottom: 50px;
}

.method {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
    background-color: var(--white);
}

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

.method_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.method h3 {
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
}

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

.method p {
    margin-bottom: 0;
    margin-top: 0;
}

.method_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    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: 50px;
    height: 50px;
    background-color: var(--green);
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
    font-size: 18px;
    margin-top: 10px;
}

.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: 1500px) {
    .message_us,
    .contact_methods {
        width: 45%;
    }
}

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

    }

    .message_us,
    .contact_methods {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact_methods {
        margin-top: 70px;
        padding-left: 50px;
    }
}

@media (max-width: 700px) {
    .message_us,
    .contact_methods {
        width: 100%;
    }

    .contact_methods {
        padding-left: 0;
        margin-top: 50px;
        margin-bottom: 30px;
    }  

    .methods {
        padding-bottom: 0;
    }
}

@media (max-height: 700px) {
    .message_us {
        margin-top: 50px;
    }  
}