/* =====================================
        ABOUT
        about.css
===================================== */


/* ================================
        БЛОК О КОМПАНИИ
================================ */


.about{

    background:#fff;

}



.about .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}



/* IMAGE */


.about-image img{

    width:100%;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:.4s;

}



.about-image img:hover{

    transform:scale(1.03);

}



/* TEXT */


.about-text h2{

    text-align:left;

    margin-bottom:25px;

}



.about-text p{

    margin-bottom:20px;

    font-size:17px;

    line-height:1.8;

}



/* ================================
        ABOUT PAGE
        about.html
================================ */



.about-hero{

    padding:180px 0 120px;

    background:

    linear-gradient(
    135deg,
    #005bbb,
    #003d7a
    );

    text-align:center;

}



.about-hero h1{

    font-size:64px;

    color:white;

    margin-bottom:20px;

}



.about-hero p{

    color:white;

    font-size:22px;

}



/* ================================
        ИСТОРИЯ КОМПАНИИ
================================ */


.company-history{

    background:white;

}



.company-history p{

    max-width:900px;

    margin:20px auto;

    text-align:center;

    font-size:18px;

    line-height:1.8;

}



/* ================================
        ПРЕИМУЩЕСТВА КОМПАНИИ
================================ */


.company-features{

    background:#f5f7fb;

}



.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:50px;

}



.feature-box{

    background:white;

    padding:30px;

    border-radius:15px;

    box-shadow:

    0 10px 25px rgba(0,0,0,.08);

    text-align:center;

    font-weight:600;

    transition:.3s;

}



.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:

    0 20px 40px rgba(0,0,0,.12);

}


/* ===================================
        STATISTICS
=================================== */

.stats{
    background:#005bbb;
    padding:90px 0;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat{
    background:rgba(255,255,255,.08);
    padding:35px 20px;
    border-radius:20px;
    transition:.3s;
}

.stat:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.15);
}

.stat .counter{
    display:block;
    font-size:55px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

.stat p{
    color:#fff;
    font-size:18px;
    font-weight:500;
}


/* ===================================
        ADVANTAGES
=================================== */

.advantages{
    background:#fff;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.advantages-grid div{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#0d1b2a;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-left:5px solid #005bbb;
    transition:.3s;
}

.advantages-grid div:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}
