/* ====================================
   ABOUT
==================================== */

.about-section{

    padding:100px 0;

    background:#000000;
}

.about-container{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

/* ====================================
   IMAGE
==================================== */

.about-image{

    position:relative;
}

.about-image img{

    width:100%;
    height:100%;

    object-fit:cover;


    box-shadow:
    0 20px 60px rgba(0,0,0,.4);
}

/* ====================================
   CONTENT
==================================== */

.section-tag{

    display:inline-block;

    color:#ff4040;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;
}

.about-content h2{

    font-size:46px;

    line-height:1.1;

    margin-bottom:25px;

    color:#fff;
}

.about-content p{

    color:#bfc7d3;

    line-height:1.9;

    margin-bottom:18px;

    font-size:16px;
}

/* ====================================
   STATS
==================================== */

.about-stats{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    overflow:hidden;

    background:rgba(255,255,255,.02);
}

.stat-card{

    padding:25px 18px;

    display:flex;

    gap:15px;

    align-items:center;

    border-right:1px solid rgba(255,255,255,.08);
}

.stat-card:last-child{
    border-right:none;
}

.stat-icon{

    width:55px;
    height:55px;

    min-width:55px;
    min-height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#ff4040;

    border:1px solid rgba(255,64,64,.3);

    background:rgba(255,0,0,.06);

    font-size:20px;
}

.stat-card h4{

    font-size:24px;

    color:#fff;

    margin-bottom:5px;
}

.stat-card span{

    color:#bfc7d3;

    font-size:13px;

    line-height:1.4;
}

/* ====================================
   TABLET
==================================== */

@media(max-width:992px){

    .about-container{

        grid-template-columns:1fr;

        gap:40px;
    }

    .about-content{

        text-align:center;
    }

    .about-content h2{

        font-size:38px;
    }

    .about-stats{

        grid-template-columns:repeat(2,1fr);
    }

    .stat-card{

        border-right:none;

        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .stat-card:nth-last-child(-n+2){

        border-bottom:none;
    }
}

/* ====================================
   MOBILE
==================================== */

@media(max-width:576px){

    .about-section{

        padding:70px 0;
    }

    .about-content h2{

        font-size:30px;
    }

    .about-stats{

        grid-template-columns:1fr;
    }

    .stat-card{

        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .stat-card:last-child{

        border-bottom:none;
    }
}