/*
*  STYLE FOR COUNTER
*
*
*  [Table of contents]
*
*  [&. Content / #key]
*  [Let press Ctrl + f and type of paste the key, then press Enter to search the content ]
*
*  Summary:
*
*
*  1. Counter
*  2. Counter Left
*  3. Counter Right
*  4. Counter Center
*  n. Responsive
*
*
*/


/*----------  1. Counter  ---------------*/
    .slz-counter-item-1 {
        text-align: center;
        position: relative;
        display: block;
        width: 220px;
        max-height: 220px;
        margin: 40px auto;
        padding-top: 78px;
        padding-bottom: 75px;
        padding-left: 15px;
        padding-right: 15px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        border: 1px solid #31353b;
    }

    .slz-counter-item-1:before,
    .slz-counter-item-1:after {
        content: '';
        position: absolute;
        background-color: #31353b;
        display: block;
    }
    
    .slz-counter-item-1 .ct-line {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -webkit-transition: all 0.6s ease;
        -moz-transition: all 0.6s ease;
        -ms-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
    }
    .slz-counter-item-1 .ct-line:before{
        content: "";
        position: absolute;
        width: 1px;
        height: 30px;
        top: -40px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #2B3A58;
     }
     .slz-counter-item-1 .ct-line:after{
        content: "";
        position: absolute;
        width: 1px;
        height: 30px;
        bottom: -40px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #2B3A58;
     }
     .slz-counter-item-1:hover .ct-line{
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
        
     }  
    

    .slz-counter-item-1 .wrapper-icon {
        font-size: 70px;
        opacity: 0.1;
    }

    .slz-counter-item-1 .icon-cell,
    .slz-counter-item-1 .img-cell {
        display: block;
        text-align: center;
    }

    .slz-counter-item-1 .icon-cell,
    .slz-counter-item-1 .img-cell {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        margin-top: -16px;
    }

    .slz-counter-item-1 .content-number {
        white-space: nowrap;
    }

    .slz-counter-item-1 .content-cell .number {
        line-height: 1;
        font-size: 40px;
        font-weight: 900;
        color: #2b3a58;
        display: inline-block;
    }

    .slz-counter-item-1 .suffix {
        display: inline-block;
        font-size: 40px;
        font-weight: 400;
        line-height: 1;
        color: #18364a;
        margin-left: 5px;
    }

    .slz-counter-item-1 .content-cell .title {
        font-size: 14px;
        text-transform: capitalize;
        width: 100%;
        line-height: 1.2;
    }

    .slz-counter-item-1 .content-cell .content-number + .title {
        margin-top: 8px;
    }

    .slz-counter-item-1 .line {
        width: 50px;
        height: 2px;
        background-color: #18364a;
        margin: 5px auto 10px;
        display: block;
    }


    /*----------  Columns-3 Columns-4  ----------*/

        .sc_counter.slz-column-3 .slz-counter-item-1,
        .sc_counter.slz-column-4 .slz-counter-item-1 {
            width: 160px;
            max-height: 160px;
            padding-top: 48px;
            padding-bottom: 46px;
        }

        .sc_counter.slz-column-3 .slz-counter-item-1 .wrapper-icon,
        .sc_counter.slz-column-4 .slz-counter-item-1 .wrapper-icon {
            font-size: 60px;
        }

        .sc_counter.slz-column-3 .slz-counter-item-1.counter-left .content-cell,
        .sc_counter.slz-column-4 .slz-counter-item-1.counter-left .content-cell {
            padding-left: 15px;
        }

        .sc_counter.slz-column-3 .slz-counter-item-1.counter-right .content-cell,
        .sc_counter.slz-column-4 .slz-counter-item-1.counter-right .content-cell {
            padding-right: 15px;
        }
    
/*----------  2. Counter Left  ----------*/

    .slz-counter-item-1.counter-left {
        text-align: left;
    }

    .slz-counter-item-1.counter-left .line {
        margin-left: 0;
    }

    .slz-counter-item-1.counter-left .content-cell {
        margin-top: 0;
        padding-left: 40px;
        width: 100%;
    }

    .slz-counter-item-1.layout-2.counter-left {
        direction: rtl;
    }
    .slz-counter-item-1.layout-2.counter-left .content-number {
        direction: ltr;
    }

/*----------  3. Counter Right  ---------*/

    .slz-counter-item-1.counter-right {
        text-align: right;
    }

    .slz-counter-item-1.counter-right .line {
        margin-right: 0;
    }

    .slz-counter-item-1.counter-right .icon-cell,
    .slz-counter-item-1.counter-right .img-cell {
        left: auto;
        right: 30px;
    }

    .slz-counter-item-1.counter-right .content-cell {
        padding-right: 40px;
        width: 100%;
    }

    .slz-counter-item-1.layout-2.counter-right .icon-cell {
        float: none;
    }

/*----------  4. Counter Center  ---------*/

    .slz-counter-item-1.counter-center .icon-cell {
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }

/*=====================================
=            n. Responsive            =
=====================================*/

    @media screen and (max-width: 1024px) {
        .sc_counter.slz-column-4,
        .sc_counter.slz-column-3 {
            text-align: center;
        }
    }

    @media screen and (max-width: 768px) {
        .sc_counter.slz-column-3 .slz-counter-item-1 .wrapper-icon,
        .sc_counter.slz-column-4 .slz-counter-item-1 .wrapper-icon {
            font-size: 70px;
        }
        .sc_counter.slz-column-3 .slz-counter-item-1,
        .sc_counter.slz-column-4 .slz-counter-item-1 {
            width: 220px;
            max-height: 220px;
            padding-top: 78px;
            padding-bottom: 75px;
        }

        .sc_counter.slz-column-3 .slz-counter-item-1.counter-left .content-cell,
        .sc_counter.slz-column-4 .slz-counter-item-1.counter-left .content-cell {
            padding-left: 40px;
        }

        .sc_counter.slz-column-3 .slz-counter-item-1.counter-right .content-cell,
        .sc_counter.slz-column-4 .slz-counter-item-1.counter-right .content-cell {
            padding-right: 40px;
        }
    }

    @media screen and (max-width: 480px) {
        .slz-counter-item-1 {
            margin: auto;
        }

        .sc_counter .item:nth-child(odd) .slz-counter-item-1:before,
        .sc_counter .item:nth-child(odd) .slz-counter-item-1:after,
        .sc_counter .item:nth-child(even) .slz-counter-item-1:before,
        .sc_counter .item:nth-child(even) .slz-counter-item-1:after {
            content: none;
        }
    }
    
/*=====  End of n. Responsive  ======*/
