        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .wrapper {
            font-family: 'raleway';
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            background: #fafafa;
        }
        
        .wrapper h1 {
            font-size: 3em;
            margin: 25px 0;
            text-align: center;
            font-weight: 500;
            color: rgb(0, 0, 0);
        }

        .s-descripcion {
            font-size: 20px;
        }
        
        .content-box {
            /* display: flex;
            
            justify-content: space-between;
            flex-wrap: wrap;
            width: 1000px;
            margin-top: 30px; */
            width: 990px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            /* align-items: center; */
        }
        
        
        .card {
            min-height: 220px !important;
            width: 320px;
            height: 400px !important;
            padding: 30px;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            background: #ffff;
            margin: 10px 4px;
            box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
        }
        
        .card i {
            margin: 20px;
            color: #E86E0B;
        }
        
        .card h2 {
            margin-bottom: 12px;
            font-weight: 400;
            text-align: center;
        }
        
        .card p {
            color: #6c757d;
            text-align: center;
        }
        
        .card:hover i,
        .card:hover p {
            color: #fff;
        }
        
        .card:hover h2 {
            font-weight: 500;
            color: #f2f2f2;
        }
        
        .card1:hover {
            background: linear-gradient(45deg, rgba(255, 66, 8, 0.7) 0%, rgba(255, 160, 51, 0.7) 100%), url('../img/mantenimiento.jpg');
            background-size: cover;
        }
        
        .card2:hover {
            background: linear-gradient(45deg, rgba(255, 66, 8, 0.7) 0%, rgba(255, 160, 51, 0.7) 100%), url('../img/serv_1.jpeg');
            background-size: cover;
        }
        
        .card3:hover {
     background: linear-gradient(45deg, rgba(255, 66, 8, 0.7) 0%, rgba(255, 160, 51, 0.7) 100%), url('../img/PINTANDO-PARED.jpg');
            background-size: cover;
        }
        
        .card4:hover {
       background: linear-gradient(45deg, rgba(255, 66, 8, 0.7) 0%, rgba(255, 160, 51, 0.7) 100%), url('../img/img6.jpg');
            background-size: cover;
        }
        
        .card5:hover {
           background: linear-gradient(45deg, rgba(255, 66, 8, 0.7) 0%, rgba(255, 160, 51, 0.7) 100%), url('../img/equipos.jpg');
            background-size: cover;
        }

        /* *** RESPONSIVE *** */
        
        @media(max-width: 991px) {
            .wrapper {
                padding: 25px;
            }
            .wrapper h1 {
                font-size: 2.5 em;
                font-weight: 600;
            }
            .content-box {
                flex-direction: column;
                width: 100%;
                align-items: center;
            }
            .card {
                min-width: 300px;
            }
        }