/*====================================================*
*COUNTER SECTION*
*====================================================*/

.counter-section {

    margin-top: -60px;

    position: relative;

    width: 100%;

    height: 320px;

    overflow: hidden;

    color: #ffffff;

}


/*====================================================*
*COUNTER BACKGROUND*
*====================================================*/

.counter-background {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 1;

}


.counter-background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}


/*====================================================*
*DARK OVERLAY*
*====================================================*/

.counter-overlay {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.80);

    z-index: 2;

}


/*====================================================*
*COUNTER CONTAINER*
*====================================================*/

.counter-container {

    position: relative;

    width: 100%;

    max-width: 1450px;

    height: 100%;

    margin: 0 auto;

    padding: 0 25px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    align-items: center;

    z-index: 3;

}


/*====================================================*
*COUNTER ITEM*
*====================================================*/

.counter-item {

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    padding-top: 55px;

    text-align: center;

}


/*====================================================*
*COUNTER ICON*
*====================================================*/

.counter-icon {

    width: 68px;

    height: 68px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/*====================================================*
*COUNTER ICON IMAGE*
*====================================================*/

.counter-icon img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

}


/*====================================================*
*COUNTER TITLE*
*====================================================*/

.counter-item h3 {

    margin: 0;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 400;

    white-space: nowrap;

}


/*====================================================*
*COUNTER DIVIDER*
*====================================================*/

.counter-divider {

    width: 95px;

    height: 1px;

    margin: 15px auto 11px;

    background: rgba(255, 255, 255, 0.40);

}


/*====================================================*
*COUNTER NUMBER*
*====================================================*/

.counter-number {

    color: #ffffff;

    font-size: 52px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: -1px;

}


/*====================================================*
*1200px*
*====================================================*/

@media (max-width: 1200px) {

    .counter-section {

        height: 330px;

    }


    .counter-item {

        padding-top: 48px;

    }


    .counter-icon {

        width: 62px;

        height: 62px;

        margin-bottom: 15px;

    }


    .counter-item h3 {

        font-size: 17px;

    }


    .counter-number {

        font-size: 47px;

    }

}


/*====================================================*
*992px TABLET*
*====================================================*/

@media (max-width: 992px) {

    .counter-section {

        height: auto;

        min-height: 450px;

    }


    .counter-container {

        grid-template-columns: repeat(2, 1fr);

        row-gap: 35px;

        padding-top: 40px;

        padding-bottom: 40px;

    }


    .counter-item {

        height: 180px;

        padding-top: 5px;

    }


    .counter-icon {

        width: 58px;

        height: 58px;

    }


    .counter-item h3 {

        font-size: 17px;

    }


    .counter-number {

        font-size: 45px;

    }

}


/*====================================================*
*768px MOBILE*
*====================================================*/

@media (max-width: 768px) {

    .counter-section {

        min-height: auto;

    }


    .counter-container {

        grid-template-columns: 1fr;

        row-gap: 20px;

        padding: 45px 20px;

    }


    .counter-item {

        height: auto;

        min-height: 175px;

        padding-top: 0;

    }


    .counter-icon {

        width: 62px;

        height: 62px;

        margin-bottom: 15px;

    }


    .counter-item h3 {

        font-size: 18px;

    }


    .counter-divider {

        margin-top: 13px;

        margin-bottom: 10px;

    }


    .counter-number {

        font-size: 48px;

    }

}


/*====================================================*
*480px SMALL MOBILE*
*====================================================*/

@media (max-width: 480px) {

    .counter-container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .counter-icon {

        width: 58px;

        height: 58px;

    }


    .counter-item h3 {

        font-size: 16px;

    }


    .counter-number {

        font-size: 44px;

    }

}