.cont-g-servicios-inicio{
    width: 100%;
    padding: 70px 10%;
    position: relative;
}
.cont-g-servicios-inicio-background{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-size: cover;
    background-repeat: repeat-y;
    background-attachment: fixed;
    opacity: 1;
    z-index: 1;
}
.cont-g-servicios-inicio h2{
    width: 100%;
    font-size: 35px;
    font-family: 'Titulo',acumin,sans-serif;
    margin-bottom: 30px;
    color: #202020;
    text-align: center;
    position: relative;
    z-index: 2;
}
.cont-g-servicios-inicio p{
    width: 100%;
    font-size: 17px;
    font-family: 'Principal',sans-serif;
    margin-bottom: 50px;
    color: #505050;
    text-align: center;
    position: relative;   
    z-index: 2;
}
.cont-p-servicios-inicio{
    width: 100%;
    display: inline-flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: flex-start;
    z-index: 2;
}
.servicio-inicio{
    width: 23%;
    border-radius: 7px;
    transition: all .9s ease-out;
    -webkit-box-shadow: 1px 1px 13px 4px rgba(32,32,32,.2);
    -moz-box-shadow: 1px 1px 13px 4px rgba(32,32,32,.2);
    box-shadow: 1px 1px 13px 4px rgba(32,32,32,.2);
    background-color: #fff;
    margin-bottom: 30px;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: center;
    transition: all .5s ease-out;
    cursor: pointer;
    min-height: 299px;
    background-color: #fff;
    z-index: 2;
    border-bottom: 7px solid #fff;
}
.servicio-inicio:hover{
    -webkit-box-shadow: 1px 1px 13px 4px rgba(32,32,32,.3);
    -moz-box-shadow: 1px 1px 13px 4px rgba(32,32,32,.3);
    box-shadow: 1px 1px 13px 4px rgba(32,32,32,.3); 
    transform: scale(1.03);
    border-bottom: 7px solid #00AD50;
}
.servicio-inicio img{
    width: 30%;
    object-fit: contain;
    margin-bottom: 20px;    
}
.servicio-inicio h3{
    width: 100%;
    font-size: 20px;
    font-family: 'Titulo',acumin,sans-serif;
    margin-bottom: 30px;
    color: #202020;        
}
.servicio-inicio p{
    width: 100%;
    font-size: 15px;
    font-family: 'Principal',sans-serif;
    margin-bottom: 20px;
    color: #505050;
    text-align: justify;    
}
@media (max-width: 800px){   
    .cont-g-servicios-inicio{
        padding: 50px 5%;    
    }
    .cont-g-servicios-inicio h2{
        font-size: 30px;    
        margin-bottom: 20px;    
    }
    .cont-g-servicios-inicio p{
        margin-bottom: 20px;    
    }
    .servicio-inicio{
        width: 48%;    
        margin-bottom: 20px;
        padding: 10px 5px;    
        min-height: 100px;   
    }
    .servicio-inicio img{
        margin-bottom: 10px;    
    }
    .servicio-inicio h3{            
        margin-bottom: 10px;    
    }
    .servicio-inicio p{    
        font-size: 14px;    
        margin-bottom: 0px;        
    }
}