/*=====================================
TOOLS SECTION
======================================*/

.tools{
    padding:120px 0;
    background:var(--bg);
}

/*=====================================
SECTION TITLE
======================================*/

.tools .section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.tools .section-title span{
    display:inline-block;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.tools .section-title h2{
    font-size:52px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
    line-height:1.2;
}

.tools .section-title p{
    font-size:18px;
    color:var(--text);
    line-height:1.8;
}

/*=====================================
GRID
======================================*/

.tools-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=====================================
CARD
======================================*/

.tool-card{
    background:#14141c;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    transition:.35s ease;
    aspect-ratio:1/1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.tool-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(255,79,135,.18);
}

/*=====================================
LOGO
======================================*/

.tool-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    display:block;
    margin:0 auto 25px;
    transition:.35s;
}

.tool-card:hover img{
    transform:scale(1.08);
}

/*=====================================
TEXT
======================================*/

.tool-card h3{
    font-size:24px;
    color:#fff;
    margin-bottom:12px;
    font-weight:700;
}

.tool-card p{
    color:var(--text);
    font-size:16px;
    line-height:1.8;
}

/*=====================================
TABLET
======================================*/

@media(max-width:992px){

    .tools{
        padding:90px 0;
    }

    .tools .section-title h2{
        font-size:40px;
    }

    .tools-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

}

/*=====================================
MOBILE
======================================*/

@media(max-width:768px){

    .tools{
        padding:80px 0;
    }

    .tools .section-title h2{
        font-size:32px;
    }

    .tools .section-title p{
        font-size:16px;
    }

    .tools-grid{
        grid-template-columns:1fr;
    }

    .tool-card{
        padding:35px 25px;
    }

    .tool-card img{
        width:65px;
        height:65px;
    }

}

/*=====================================
SMALL MOBILE
======================================*/

@media(max-width:480px){

    .tools .section-title h2{
        font-size:28px;
    }

    .tool-card{
        padding:30px 20px;
    }

    .tool-card img{
        width:60px;
        height:60px;
    }

    .tool-card h3{
        font-size:22px;
    }

    .tool-card p{
        font-size:15px;
    }

}