body{
    background:#fff;
    color:var(--text);
}

/* HERO */

/* HERO */

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;

    max-width:1400px;
    margin:auto;

    padding:110px 8% 70px;
}

.hero-content{
    display:flex;
    align-items:center;
}

.hero h1{
    font-size:88px;
    line-height:.95;
    color:var(--blue);
    letter-spacing:-3px;
}

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:650px;
    border-radius:60px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* SECTION */

.about-section{

    width:100%;
    max-width:1600px;
    margin:0 auto;
    padding:0 4% 100px;

}

.about-grid{

    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap:32px;

    align-items:stretch;

}

.about-card{

    background:#f8fbff;
    border:1px solid #dbe8f6;
    border-radius:32px;

    padding:50px 40px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:320px;

    transition:.25s;
    box-shadow:0 12px 30px rgba(20,61,122,.06);

}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card h3{
    color:var(--blue);
    font-size:28px;
    margin-bottom:18px;
}

.about-card p{
    color:var(--muted);
    line-height:1.8;
    font-size:17px;
}

/* BELIEF */

.strip{
    text-align:center;
    padding:90px 8%;
    background:#f8fbff;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.strip h2{
    color:var(--blue);
    font-size:40px;
    margin-bottom:24px;
}

.strip p{
    max-width:760px;
    margin:auto;
    color:var(--muted);
    font-size:20px;
    line-height:1.8;
}

/* FOOTER */

footer{
    padding:60px;
    text-align:center;
    color:var(--muted);
}

/* MOBILE */

@media (max-width:900px){

    .hero{
        min-height:auto;
        grid-template-columns:1fr;
        gap:32px;
        padding:110px 20px 50px;
    }

    .hero-content{
        justify-content:center;
        text-align:center;
    }

    .hero h1{
        font-size:48px;
        line-height:1.05;
        letter-spacing:-1.5px;
    }

    .hero-image img{
        width:100%;
        max-width:100%;
        border-radius:28px;
    }

    .section{
        padding:0 20px 60px;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .about-card{
        min-height:auto;
        padding:28px 24px;
        border-radius:24px;
    }

    .about-card h3{
        font-size:28px;
        margin-bottom:12px;
    }

    .about-card p{
        font-size:16px;
        line-height:1.7;
    }

    .strip{
        padding:60px 20px;
    }

    .strip h2{
        font-size:28px;
        margin-bottom:16px;
    }

    .strip p{
        font-size:16px;
        line-height:1.7;
    }

    footer{
        padding:40px 20px;
        font-size:14px;
    }

}