/*---------------------Roots-----------------*/

:root {
    ---green: #1BB46D;
    ---white: #ffffff;
    ---black: #1F1F5F;
    ---border: #e5e5e5;
    ---paragraph: #919191;
}

/*---------------------Roots-----------------*/
.certifications .container{
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.certifications h2{
    text-align: center;
    font-size: 90px;
    font-weight: 800;
    line-height: 1.1;
    color: var(---black);
    margin-bottom: 40px;
    text-transform: uppercase;
        font-family: "Bebas Neue", sans-serif;
}

.cert-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cert-box{
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cert-box img{
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
}

/* Tablet */
@media (max-width: 992px){
    .certifications h2{
        font-size: 70px;
    }

    .cert-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 740px){
    .certifications h2{
        font-size: 50px;
    }
}

/* Mobile */
@media (max-width: 576px){


    .certifications h2{
        font-size: 40px;
    }

    .cert-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cert-box img{
        height: 180px;
    }
}

@media (max-width: 450px){


    .certifications h2{
        font-size: 30px;
    }
}