/*=========================================
=            CONTACTO SERVICIO            =
=========================================*/

.contactoEmp{
    margin: 20px auto;
    font-size: 16px;
}

.clontenedors{
    width: 90%;
    max-width: 1000px;
    background: #fff;
    margin: 20px auto;
}

.clontenedors h1{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    color: #91D851;
}

.contenidos{
    display: flex;
    width: 100%;
    overflow: hidden;
    margin: 20px auto;
}

.contenidos .infoCon,
.contenidos .formularioCon{
width: 50%;
}

/*=========================================
    ESTILOS INFO
=========================================*/

.infoCon .col{
    width: 100%;
    display: flex;
    margin-bottom: 15px;
    font-size: 16px;
    align-items: center;
    flex-wrap: nowrap;
    font-weight: bold;
}

.infoCon .col i{
    color: #91D851;
    margin-right: 10px;
    margin-top: -20px;
}

.infoCon .col p{
    color: grey;
}

.infoCon .reds-s{
    width: 100%;
    overflow: hidden;
    padding-left: 25px;
    display: flex;
    flex-wrap: wrap;
}

.infoCon .reds-s a{
    display: flex;
    width: 40px;
    height: 40px;
    background: #91D851;
    color: white;
    margin: 5px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    border-radius: 50%;
    transition: all 500ms ease;
}

.infoCon .reds-s a:hover{
    background: grey;
}

/*=========================================
    FORMULARIO
=========================================*/

.formularioCon{
    padding-left: 10px;
}

.formularioCon input[type='text'],
.formularioCon input[type='email'],
.formularioCon textarea{
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 20px;
    border: 1px solid grey;
    color: #999;
    font-weight: 400;
    outline: 0;
}

.formularioCon textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 150px;
    max-height: 200px;
}

.formularioCon input[type='text']:focus,
.formularioCon input[type='email']:focus,
.formularioCon textarea:focus{
    border: 1px solid #91D851;
}


.formularioCon button{
    padding: 12px 30px;
    border: transparent;
    background: #91D851;
    color: white;
    font-weight: bold;
    transition: all 500ms ease;
}

.formularioCon button:hover{
    background: grey;
}

    .infoCon{
        margin: 20px auto;
    }
@media(max-width:767px){
    .contenidos .infoCon,
    .contenidos .formularioCon{
    width: 100%;
    }

    .infoCon .reds-s a{
        width: 35px;
        height: 35px;
    }
}