
/*
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
*/
.container_erep {
    width: 100%;
    height: 100%;
    padding: 0px 18%;
}

    .container_erep h1 {
        text-align: center;
        padding-top: 10%;
        margin-bottom: 60px;
        font-weight: 600;
        position: relative;
    }

        .container_erep h1::after {
            content: '';
          
            width: 100px;
            height: 5px;
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
        }

.row_erep {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.service_erep {
    text-align: center;
    padding: 25px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0,0,0,0.19);
    background-color:whitesmoke;
    transition: transform 0.5s, background 0.5s;
}

    .service_erep i {
        font-size: 40px;
        margin-bottom: 10px;
        color: #303ef7;
    }

    .service_erep h2 {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .service_erep a {
        font-size:25px;
        font-weight: 600;
        margin-bottom: 8px;
    }


    .service_erep:hover {
        /*background: #008e7e;
        color: #fff;*/
        background-color:transparent;
        box-shadow: 0 5px 16px rgba(0,0,0,0.19);
        transform: scale(1.05);
    }

        .service_erep:hover i {
            color: #fff;
        }
