/*
Theme Name: 2STEP Performance
Theme URI: https://2step.lt
Author: 2STEP
Author URI: https://2step.lt
Description: Custom WordPress Theme for 2STEP Performance
Version: 1.0
Requires at least: 6.5
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: 2step
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111;
    color:#fff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

.container{
    width:1200px;
    max-width:90%;
    margin:auto;
}

section{
    padding:100px 0;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#00d084;
    color:#fff;
    border-radius:8px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#00b06f;
    transform:translateY(-3px);
}

.title{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.subtitle{
    color:#bbb;
    margin-bottom:40px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.card{
    background:#1b1b1b;
    border-radius:15px;
    overflow:hidden;
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    height:240px;
    width:100%;
    object-fit:cover;
}

.card-content{
    padding:25px;
}

@media(max-width:768px){

.title{
font-size:34px;
}

section{
padding:70px 0;
}

}