/* ---------- Contact ---------- */
.contact{
    padding-top: 10rem;
}

.form, .location{ 
    flex-direction: column;
    width: 50%;
}

.location{
    height: 780px;
}

.location iframe{
    height: 100%;
}

.form{
    border-left: 3px solid #FDD863;
    padding: 4rem 0;
}

.formulario{
    flex-direction: column;
    margin-bottom: 2rem;
    width: 80%;
}

.input{
    border: 0;
    font-family: 'Raleway', sans-serif;
    border-bottom: 2px solid #000000;
    background-color: transparent;
    box-sizing: border-box;
    transition: all 0.2s;
    margin-bottom: 15px;
    line-height: 22px;
    color: #000000;
    font-weight: 500;
    font-size: 18px;
    padding: 13px;
    width: 100%;
    outline: 0;
}

.input:focus{
    border-bottom: 2px solid #FDD863;
    transition: 0.4s;
}

.display{
    height: 100%;
    width: 100%;
}

textarea {
    margin-bottom: 15px;
    line-height: 150%;
    height: 100px;
    resize: none;
}

input::placeholder, textarea::placeholder{
    color: #000000;
    opacity: 0.5;
}

.checkbox{
    margin-bottom: 15px;
}

.btn_send{
    border: 2px solid #000000;
    transition: all 0.3s;
    padding-bottom: 10px;
    border-radius: 5px;
    padding-top: 10px;
    color: #000000;
    font-weight: 400;
    cursor: pointer;
    font-size: 24px;
    width: 50%;
}

.btn_send:hover{
    border: 2px solid transparent;
    background: #FDD863;
    transition: 0.4s;
    color: #000000;
}

.checkbox{
    margin-bottom: 15px;
    color: #000000;
}

.checkbox a{
    color: blue;
}

.form .social_icons{
    justify-content: space-between;
    margin-bottom: 2rem;
    width: 40%;
}

.form .social_icons ul {
    justify-content: space-between;
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
}

.form .social_icons ul li .fab {
    line-height: 50px;
    color: #000000;
    font-size: 25px;
    transition: .5s;
}

.form .social_icons ul li .fab:hover {
    color: #ffffff; 
}

.form .social_icons ul li a{
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
    transform: translate(0,0px);
    background-color: white;
    position: relative;
    text-align: center;
    border-radius: 50%;
    transition: 0.5s;
    display: block;
    height: 50px;
    width: 50px;
}

.form .social_icons ul li a:hover {
    transform: rotate(0deg) skew(0deg) translate(0, -10px);
}

.form .social_icons ul li:nth-child(1) a:hover {
    background-color: #3b5999;
}

.form .social_icons ul li:nth-child(2) a:hover {
    background-color: #ee2a7b;
}

.social_icons ul li:nth-child(3) a:hover {
    background-color: #e4405f;
}

.social_icons ul li:nth-child(4) a:hover {
    background-color: #0077B5;
}


@media only screen and (max-width : 1024px){
    .contact{
        flex-direction: column-reverse;
        margin-top: 0;
        padding: 4rem 0;
        width: 100%;
    }

    .location, .form{
        width: 100%;
    }

    .form{
        border: 0;
    }

    .btn_send{
        width: 80%;
    }

    .location{ 
        height: 50vh;
    }

    .form .social_icons{
        margin-top: 4rem;
        width: 70%;
    }
}

@media only screen and (max-width : 1024px){
    .contact{
        flex-direction: column-reverse;
        margin-top: 0;
        width: 100%;
    }

    .location, .form{
        width: 100%;
    }

    .form{
        border: 0;
    }

    .btn_send{
        width: 80%;
    }

    .location{ 
        height: 50vh;
    }

    .form .social_icons{
        margin-top: 4rem;
        width: 70%;
    }
}