/*=========================================
COUNTER SECTION
=========================================*/

.counter-section{

    padding:110px 0;

    background:linear-gradient(135deg,#0b0b0b,#1f1f1f);

}

.counter-wrapper{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

}

.counter-box{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.4s;

}

.counter-box:hover{

    transform:translateY(-10px);

    background:#d4af37;

}

.counter-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

}

.counter-icon i{

    color:#d4af37;

    font-size:34px;

}

.counter-box h2{

    font-size:48px;

    color:#fff;

    margin-bottom:10px;

    font-weight:700;

}

.counter-box p{

    color:#ddd;

    font-size:17px;

}

.counter-box:hover p,

.counter-box:hover h2,

.counter-box:hover .counter-icon i{

    color:#111;

}

@media(max-width:1200px){

.counter-wrapper{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.counter-wrapper{

grid-template-columns:repeat(2,1fr);

}

.counter-section{

padding:80px 0;

}

}

@media(max-width:576px){

.counter-wrapper{

grid-template-columns:1fr;

}

}