/* =========================================================
   ABOUT
========================================================= */

.about{
    padding:80px 0;
    background:#f5f7fb;
}

/* =========================================================
   ABOUT HEADER
========================================================= */

.about-header{
    text-align:center;
    margin-bottom:60px;
}

.about-header h2{
    font-size:38px;
    color:#222;
    margin-bottom:15px;
}

.about-header p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* =========================================================
   ABOUT WRAPPER
========================================================= */

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-image img{
    width:100%;
    border-radius:15px;
    display:block;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content{
    background:#fff;
    padding:45px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about-content h3{
    font-size:32px;
    color:#222;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

/* =========================================================
   ABOUT LIST
========================================================= */

.about-content ul{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.about-content ul li{
    margin-bottom:16px;
    color:#333;
    font-size:16px;
}

.about-content ul li i{
    color:#0d6efd;
    margin-right:10px;
}

/* =========================================================
   BUTTON
========================================================= */

.about-btn{
    display:inline-block;
    padding:14px 35px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:8px;
    transition:.3s;
}

.about-btn:hover{
    background:#084298;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-image{
        order:1;
    }

    .about-content{
        order:2;
    }

}

@media(max-width:576px){

    .about{
        padding:60px 0;
    }

    .about-header h2{
        font-size:30px;
    }

    .about-content{
        padding:30px 20px;
    }

    .about-content h3{
        font-size:26px;
    }

}