/* stilos de servicios */
    .service-wrapper {
        margin-top: 0%;
        margin-bottom: 5%;
    }

    .service{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-wrapper h1 {
        font-size: 70px;
        text-align: center;
        margin-bottom: 20px;
        color: rgb(255, 255, 255);
        text-shadow:
        0 0 1px #ffffff,
        0 0 2px #ffffff,
        0 0 1px #ffffff,
        2px 2px 4px #ffffff;
        position: relative;
    }
    /*  -webkit-text-stroke-width: 3px;
        -webkit-text-stroke-color: transparent;
        letter-spacing: 2px;
        background-color: #44b900;
        background: linear-gradient(#44b900 0%, rgba(115, 255, 0, 0.651) 41%, rgba(13, 155, 0, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;*/
    .service-wrapper h1:after{
        content: "";
        position: absolute;
        top: 100%;
        left: 10%;
        height: 8px;
        width: 80%;
        border-radius: 8px;
        box-shadow: 0 0 10px #ffffff,
                    0 0 20px rgba(255, 255, 255, 0.555),
                    0 0 40px #ffffff;
        border: rgb(255, 255, 255) 1px solid;
        background-color: #ffffff;

    }

    .service-wrapper h1 .editable-span {
        z-index: 10;
        position: absolute;
        top: 100%;
        left: 10%;
        height: 8px;
        width: 40px;
        border-radius: 8px;
        background-color: rgba(0, 0, 0, 0.603);
        animation: anim 5s linear infinite; 
    }
    @keyframes anim {
        95% { opacity: 1; }
        100% { opacity: 0; left: 82%; }
    }

    .cards{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin-top: 80px;
    }
    .card{
        height: 380px;
        width: 370px;
        background-color: rgb(255, 255, 255);
        padding: 3% 8%;
        border: 0.2px solid #ffffff;
        border-radius: 20px;
        transition: 0.5s;
        display: flex;
        align-items: center;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }
    .card:after{
        content: "";
        position: absolute;
        top: 150%;
        left: -200px;
        width: 120%;
        transform: rotate(50deg);
        background-color: #ffffff;
        height: 150px;
        filter: blur(30px);
        opacity: 0.5;
        transition: 1s;
    }
    .card:hover:after{
        width: 225%;
        top: -100%; 
    }
    .card i{
        color: #000000;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 60px;
    }
    .card h2{
        font-size: 20px;
        color: #000000;
        font-weight: 700;
        text-align: center;
        letter-spacing: 2px;
        margin-bottom: 10px;
        text-shadow:
        0 0 10px #ffffff,
        0 0 40px #000000,
        1px 1px 2px #ffffff;
        position: relative;
    }
    .card p{
        text-align: justify;
        width: 100%;
        margin: 12px 0;
        color: rgba(0, 0, 0, 0.808);
    }
    .card:hover{
        background-color: #535353a1;
        transform: translateY(-7px);
        border-color: rgb(255, 255, 255);
    }
    .card:hover i{
        color: #ffffff;
    }
    @media screen and (max-width: 990px) {
        .cards{
            grid-template-columns: repeat(2, 1fr);
        }
        
    }
    @media screen and (max-width: 990px) {
        .cards{
            grid-template-columns: repeat(1, 1fr);
        }
        h1{
            font-size: 3.5rem;
        }
    }


/* fin stilos de servicios */