/* ====================================
   WHY US
==================================== */

.why-us{

    background:#000000;

    padding:70px 0;
}

.why-box{

    width:90%;
    max-width:1400px;

    margin:auto;

    padding:35px 30px;

    border:1px solid rgba(255,0,0,.15);

    border-radius:12px;

    background:
    linear-gradient(
        180deg,
        rgba(255,0,0,.03),
        rgba(0,0,0,.2)
    );

    backdrop-filter:blur(10px);
}

/* TÍTULO */

.why-box h2{

    text-align:center;

    font-size:34px;

    font-weight:700;

    margin-bottom:40px;

    color:#fff;
}

.why-box h2 span{

    color:#ff2d2d;
}

/* GRID */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:25px;
    align-items:start;
}

/* ITEM */

.why-item{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    transition:.35s;
}

.why-item i{

    font-size:28px;

    color:#ff2d2d;

    margin-bottom:15px;

    transition:.35s;
}

.why-item p{

    color:#d5d5d5;

    font-size:14px;

    line-height:1.5;
}

/* HOVER */

.why-item:hover{

    transform:translateY(-6px);
}

.why-item:hover i{

    color:#ff5555;

    text-shadow:
    0 0 15px rgba(255,0,0,.5);
}

/* ====================================
   TABLET
==================================== */

@media(max-width:992px){

    .why-grid{

        grid-template-columns:
        repeat(3,1fr);

        row-gap:35px;
    }

    .why-box h2{

        font-size:28px;
    }
}

/* ====================================
   MOBILE
==================================== */

@media(max-width:576px){

    .why-box{

        padding:30px 20px;
    }

    .why-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:25px;
    }

    .why-box h2{

        font-size:22px;

        line-height:1.3;
    }

    .why-item i{

        font-size:24px;
    }

    .why-item p{

        font-size:13px;
    }
}