:focus {
    outline: none;
}

body {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

.form_wrap {
    width: 90%;
    margin: 100px auto;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact_info:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background: rgb(46, 46, 46);
}

.info_title, .info_items {
    position: relative;
    z-index: 2;
    color: #FFF;
}

.info_items {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info_title {
    margin-bottom: 60px;    
}

.info_title span{
    font-size: 100px;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.info_title h2{
    font-size: 30px;
    text-align: center;
}

.info_items p{
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
}

/*iconos
.info_items p:nth-child(1)span {
    font-size: 30px;
    margin-right: 10px;
}

.info_items p:nth-child(2)span {
    font-size: 50px;
    margin-right: 10px;
}
*/



.contact_info {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    border-top: 6px solid rgb(230, 11, 118);
    float: left;
}

/* Para agregar img 
   background-image: url('img/fondo.jpg')
   background-size:cover;
   background-position:center center*/



form {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 20px;
    margin-right: 10px;
}

h2 {
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 16px;
}

input, textarea {
    width: 100%;
    margin-bottom: 30px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 16px;
    font-family:'Montserrat', sans-serif;
    border: none;
    border-bottom:  1px solid rgba(46,46,46);
}

textarea {
    min-height: 100px;
    max-height: 200px;
    max-width: 100%;
    min-width: 100%;
    font-family:'Montserrat', sans-serif;
}

#boton {
    background: rgb(46, 46, 46);
    color: #FFF;
    padding: 20px;
    border:none
}

#boton:hover {
    cursor: pointer;
    background:rgb(230, 11, 118);
}

@media (min-width:480px) {
    h2 {
    text-align: center;
    color: #FFF;
    font-size: 30px;
    margin-top: 20px;
    }
}

@media (min-width:768px) {

    .form_wrap {
        display: flex;
        flex-direction: row;
        margin-bottom: 20px;
        margin-top: 110px;
    }

    .contact_info {
        width: 35%;
        height: 500px;
    }

    .formulario {
        width: 55%;
        max-width: 480px;
        margin: auto;
        margin-top: 10px ;
        }
}