/*==================================================
STATS BAR
==================================================*/

.stats-bar{

    margin-top:-70px;

    position:relative;

    z-index:20;

    padding-bottom:110px;

}

.stats-bar .container{

    width:min(1500px,92%);

    margin:auto;

}

/*==================================================
GRID
==================================================*/

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    background:#43372D;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

/*==================================================
ITEM
==================================================*/

.stat-item{

    display:flex;

    align-items:center;

    gap:22px;

    padding:40px;

    position:relative;

    transition:.35s;

}

.stat-item:hover{

    background:#4E4034;

}

/*==================================================
DIVIDER
==================================================*/

.stat-item:not(:last-child)::after{

    content:"";

    position:absolute;

    top:50%;

    right:0;

    transform:translateY(-50%);

    width:1px;

    height:70px;

    background:rgba(255,255,255,.12);

}

/*==================================================
ICON
==================================================*/

.stat-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.stat-icon i{

    font-size:48px;

    color:#C89255;

}

/*==================================================
CONTENT
==================================================*/

.stat-content{

    display:flex;

    flex-direction:column;

}

.stat-number{

    font-size:46px;

    font-family:'Cormorant Garamond',serif;

    color:#fff;

    line-height:1;

    margin-bottom:10px;

}

.stat-content p{

    color:rgba(255,255,255,.75);

    font-size:15px;

    font-weight:500;

}

/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stat-item{

        padding:32px;

    }

    .stat-item:nth-child(2)::after{

        display:none;

    }

    .stat-item{

        border-bottom:1px solid rgba(255,255,255,.08);

    }

    .stat-item:nth-last-child(-n+2){

        border-bottom:none;

    }

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:576px){

    .stats-bar{

        margin-top:-40px;

        padding-bottom:80px;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

        border-radius:18px;

    }

    .stat-item{

        flex-direction:column;

        text-align:center;

        padding:28px 18px;

        gap:16px;

    }

    .stat-item::after{

        display:none;

    }

    .stat-icon{

        width:60px;

        height:60px;

    }

    .stat-icon i{

        font-size:38px;

    }

    .stat-number{

        font-size:34px;

    }

    .stat-content p{

        font-size:13px;

        line-height:1.5;

    }

}