@import '../../../scss/base';
.rt-portfolio-style1 {   

    .portfolio-item {
        position: relative;
        overflow: hidden;
        background: #fff;
        text-align: center;
        .portfolio-img {
            overflow: hidden;
            a img {
                width: 100%;
                transition: all cubic-bezier(0.39, 0.58, 0.57, 1) .3s;
                &:hover {
                    transform: scale(1.1);
                    transform-origin: right;
                }
            }            
        }
        .portfolio-content {
            padding: 32px 5px 11px 5px;
            .vertical-middle {
                position: relative;
                z-index: 9;
            }           
            .p-category {
                color: #999999;
                font-size: 14px;
                margin-bottom: 5px;

                a {
                    color: #999999;
                }
            }
            .vertical-middle {
                display: table;
                height: 100%;
                width: 100%;
            }

            .vertical-middle-cell {
                display: table-cell;
                vertical-align: middle;
                .p-rating {
                    margin-bottom: 12px;
                    display: block;
                }
                .product-price {
                    display: inline-block;
                    font-size: 14px;
                    color: $primaryColor;
                }
            }
        }        
        .portfolio-text {
            padding-top: 15px;
        }        

        .p-link {
            transition: all 0.3s ease 0s;
            display: inline-block;
            font-size: 19px;
            width: 52px;
            line-height: 54px;
            height: 52px;
            text-align: center;
            border-radius: 50%;
            background: #fff;

            i {
                margin-left: 2px;
            }

            &:hover {
                background-color: $primaryColor;
                color: #fff;
            }
        }

        .p-title {
            color: #111111;
            font-size: 18px;
            line-height: normal;
            margin-bottom: 0;
            font-weight: 700;
            line-height: 27px;
            a {
                color: #111111;
            }
        }

        .p-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            margin-top: 10px;
        }

    }

    .read-btn {
        background: #ffffff;
        border-top: 1px solid #f1f1f1;
        padding: 16px 20px;
        display: block;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        font-size: 14px;
        font-weight: 700;
        position: relative;
        z-index: 2;
        color: #999;

        i {
            margin-left: 10px;
            font-weight: 300;

        }

        &:before {
            content: "";
            position: absolute;
            background-color: $secondaryColor;
            width: 100%;
            height: 0;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -ms-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            left: 0;
            top: 0;
            z-index: -1;
        }

        span.f-right {
            float: right;
        }
    }

    .grid-item {
        &:hover {
            .read-btn {
                color: #fff;

                &:before {
                    height: 100%;
                    bottom: 0;
                }
            }
        }
    }

    .slick-slider {
        .slick-arrow {
            width: 60px;
            height: 55px;
            border-radius: 0;
            line-height: 60px;
            bottom: -172px;
            top: -84px;

            &:before {
                color: #fff;
            }

        }

        .slick-prev {
            left: 88.5%;

            &:hover {
                background: #fff;

                &:before {
                    color: $primaryColor;
                }
            }
        }

        .slick-next {
            right: 1%;
            background: #fff;
            box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, .04);

            &:before {
                color: $primaryColor;
            }

            &:hover {
                background: $primaryColor;

                &:before {
                    color: #fff;
                }
            }
        }
    }

}

.rt-portfolio-style2 {
    .portfolio-item {
        position: relative;
        overflow: hidden;
        z-index: 1;
        img {
            width: 100%;
        }
        &:before {
            content: "";
            position: absolute;
            background-image: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);
            background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);
            background-image: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);
            width: 100%;
            height: 100%;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -ms-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            left: 0;
            bottom: 0;
            z-index: 1;
        }

        &:after {
            content: "";
            position: absolute;
            background-color: $primaryColor;
            opacity: 0.902;
            clip-path: polygon(100% 0, 100% 100%, 44.5% 100%, 0% 65%, 0 0);
            width: 100%;
            height: 0;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -ms-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            left: 0;
            top: 0;
            z-index: 1;
        }

        .portfolio-content {
            padding: 0;
            position: absolute;
            left: 50px;
            top: auto;
            bottom: 20px;
            z-index: 3;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -ms-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;

            .p-title {
                font-size: 24px;
                font-weight: 700;
                line-height: 35px;

                span {
                    font-size: 14px;
                    font-weight: 400;
                    display: block;
                }

                bottom: -100px;
                left: 25px;

                span,
                a {
                    color: #ffffff;
                }

                a:hover {
                    color: $primaryColor;
                }
            }

        }

        .pf-btn {
            color: #083d59;
            background: #ffffff;
            width: 60px;
            height: 60px;
            font-size: 16px;
            line-height: 60px;
            text-align: center;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            position: absolute;
            z-index: 3;
            left: 15%;
            bottom: 12.5%;
            transform: scale(0);
            -webkit-transform: scale(0);
            -moz-transform: scale(0);
            -ms-transform: scale(0);
            -o-transform: scale(0);
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -ms-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
        }

        &:hover {
            .portfolio-content {
                top: 10%;
                bottom: auto;
            }

            .pf-btn {
                transform: scale(1);
            }

            &:before {
                background-image: unset;
                background: #ffa84b;
                opacity: 0.902;
                clip-path: polygon(0 64.6%, 0% 100%, 45.5% 100%);
            }

            &:after {

                visibility: visible;
                height: 100%;
            }
        }
    }

    .slick-slider .slick-arrow {
        background: white;
        border: 2px solid #f0f0f0;
        border-radius: unset;
        top: -80px;
        left: unset;
        padding: 23px 23px;

        &::before {
            color: #083d59;
            font-size: 14px;
            top: -15px;
        }

        &:hover {
            background: #ffa84b;
            border: 2px solid #ffa84b;
        }
    }

    .slick-slider .slick-prev {
        right: 33.5%;
    }

    .slick-slider .slick-next {
        right: 30.0%;
    }
    // product style2 css
    .portfolio-item.p-cat-menu-style2 {
        position: relative;
        display: flex;
        align-items: center;

        img {
            width: 100%;
            max-width: 100px;
            border-radius: 100px;
            margin-right: 30px;            
        }

        &:before {
            content: none;
            position: inherit;
        }
        &:after {
            content: none;
            position: inherit;
        }
        .portfolio-content {
            padding: 0;
            position: inherit;
            left: 0;
            top: 0;
            bottom: 0;
            z-index: 3;
            transition: all 0.3s ease 0s;
            width: 58%;
            .p-title {
                font-size: 24px;
                font-weight: 400;
                line-height: 35px;
                color: #111111;
                margin: 0;

                span {
                    font-size: 14px;
                    font-weight: 400;
                }
                span,
                a {
                    color: $titleColor;
                    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, $titleColor), color-stop(50%, transparent));
                    background-image: linear-gradient(to right, $titleColor 50%, transparent 50%);
                    background-size: 200% 2px;
                    background-position: 100% 100%;
                    background-repeat: no-repeat;
                    transition: all 500ms;
                    &:hover{
                        background-position: 0% 100%;
                        color:$titleColor
                    }
                }
               
            }
            .p-materials a {
                font-size: 14px;
                color: #666666;
                pointer-events: none;
            }
        }
        .product-price {
            background: #fff;
            padding: 5px 13px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            color: #111111;
            transition: all cubic-bezier(0.39, 0.58, 0.57, 1) 0.3s;
            box-shadow: 0 0 25px -12px #11111129;
        }
        

        .pf-btn {}

        &:hover {
            .portfolio-content {
            }

            .pf-btn {
            }

            &:before {
            }

            &:after {
            }
        }
        &:hover .product-price {
            background: $primaryColor;
            color: #fff;
        }
    }
}

.rt-portfolio-style3 {
    .portfolio-item {
        position: relative;
        overflow: hidden;
        border-radius: 0;
        display: flex;
        .portfolio-img {
            position: relative;
            z-index: 1;
            overflow: hidden;
            cursor: pointer;
            &:before {
                content: "";
                position: absolute;
                background: #bb0b0b;
                opacity: 0.902;
                width: 100%;
                height: 0;
                left: 0;
                top: 0;
                z-index: 1;
                -webkit-transition: all 0.3s ease 0s;
                -moz-transition: all 0.3s ease 0s;
                -ms-transition: all 0.3s ease 0s;
                -o-transition: all 0.3s ease 0s;
                transition: all 0.3s ease 0s;
            }

            img {
                width: 100%;
                max-width: 80px;
                -webkit-transition: 1.3s all ease;
                transition: 1.3s all ease;
                border-radius: 0px;
            }

            .p-link {
                display: none !important;
                top: 20px;
                right: 20px;
                display: inline-block;
                font-size: 32px;
                color: #ffffff;
                -webkit-transition: 0.6s all ease;
                transition: 0.6s all ease;
                opacity: 0;
                z-index: 10;

                i {
                    margin-left: 2px;
                    display: none;
                }
            }
        }

        .portfolio-content {
            position: relative;
            padding: 0px 0 0 27px;
            opacity: 1;
            z-index: 1;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: left;
            width: 100%;
            border-top: 0;

            a {
                color: $secondaryColor;
            }

            h4 {
                margin-bottom: 0;
                font-size: 24px;
                -webkit-transform: translateY(0);
                transform: translateY(0);
                -webkit-transition: 0.6s all ease;
                transition: 0.6s all ease;
                font-weight: 500 !important;
                line-height: 30px !important;

                a {
                    &:hover {
                        color: $primaryColor;
                    }
                }
            }
            .product-price {
                font-size: 14px;
                font-weight: 700;
                color: $primaryColor;
            }
            p {
                margin-bottom: 0;
                color: $secondaryColor;
                -webkit-transform: translateY(0px);
                transform: translateY(0px);
                -webkit-transition: 0.6s all ease;
                transition: 0.6s all ease;

                a {
                    font-size: 14px;
                }
            }
        }

        a.pf-btn2 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
            padding: 15px 30px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            display: inline-block;
            position: absolute;
            z-index: 2;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) scale(0);
            -webkit-transform: translate(-50%, -50%) scale(0);
            -moz-transform: translate(-50%, -50%) scale(0);
            -ms-transform: translate(-50%, -50%) scale(0);
            -o-transform: translate(-50%, -50%) scale(0);

        }


        &:hover {
            h4 {
                a {
                    text-decoration: none !important;
                }
            }

            .portfolio-img {
                &:before {
                    height: 100%;
                }
            }

            .portfolio-img a.pf-btn2 {
                transform: translate(-50%, -50%) scale(1);
                -webkit-transform: translate(-50%, -50%) scale(1);
                -moz-transform: translate(-50%, -50%) scale(1);
                -ms-transform: translate(-50%, -50%) scale(1);
                -o-transform: translate(-50%, -50%) scale(1);
            }

        } 
        &:hover .portfolio-img a img {
            transform: scale(1.4);
        }
    }
}

.rt-portfolio-style4 {
    .portfolio-item {
        position: relative;
        overflow: hidden;
        border-radius: 0;

        .portfolio-img {
            position: relative;
            z-index: 1;
            overflow: hidden;

            &:before {
                content: "";
                position: absolute;
                background: #086ad8;
                opacity: 0;
                width: 100%;
                height: 0;
                left: 0;
                bottom: 0;
                z-index: 1;
                -webkit-transition: all 0.3s ease 0s;
                -moz-transition: all 0.3s ease 0s;
                -ms-transition: all 0.3s ease 0s;
                -o-transition: all 0.3s ease 0s;
                transition: all 0.3s ease 0s;
                clip-path: polygon(0% -65%, 0% 100%, 99% 100%);
            }

            img {
                width: 100%;
                -webkit-transition: 0.3s all ease;
                transition: 0.3s all ease;
                border-radius: 0px;
            }

            .p-link {
                display: none !important;
                top: 20px;
                right: 20px;
                display: inline-block;
                font-size: 32px;
                color: #ffffff;
                -webkit-transition: 0.6s all ease;
                transition: 0.6s all ease;
                opacity: 0;
                z-index: 10;

                i {
                    margin-left: 2px;
                    display: none;
                }
            }
        }

        .portfolio-content {
            text-align: center;
            position: relative;
            padding: 35px 0px 0;
            opacity: 1;
            z-index: 1;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: left;
            width: 100%;
            border-top: 0;

            a {
                color: $secondaryColor;
            }

            h4 {
                margin-bottom: 0;
                font-size: 24px;
                -webkit-transform: translateY(0);
                transform: translateY(0);
                -webkit-transition: 0.6s all ease;
                transition: 0.6s all ease;
                font-weight: 500 !important;
                line-height: 30px !important;

                a {
                    &:hover {
                        color: $primaryColor;
                    }
                }
            }
            .product-price {
                font-weight: 700;
                color: $primaryColor;
                margin-top: 6px;
                display: block;
            }

            p {
                margin-bottom: 0;
                color: $secondaryColor;
                -webkit-transform: translateY(0px);
                transform: translateY(0px);
                -webkit-transition: 0.6s all ease;
                transition: 0.6s all ease;

                a {
                    font-size: 14px;
                }
            }
        }

        .portfolio-content {
            text-align: center;
            transition: 0.4s;
            opacity: 1;
            display: block;
            position: inherit;
            left: 0;
            bottom: 0;
            z-index: 1;

            .p-title {
                a {
                    color: $primaryColor;
                }

                margin-bottom: 0;
            }

            .p-category {
                .separator {
                    color: #fff;
                }
                a {
                    color: #ffffff;
                    font-size: 14px;
                    font-weight: 400;
                }
                margin-bottom: 0;
            }
        }

        a.pf-btn2 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
            padding: 15px 16px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            display: inline-block;
            position: absolute;
            z-index: 6;
            right: 30px;
            bottom: 30px;
            transform: translate(-50%, -50%) scale(0);
            -webkit-transform: translate(-50%, -50%) scale(0);
            -moz-transform: translate(-50%, -50%) scale(0);
            -ms-transform: translate(-50%, -50%) scale(0);
            -o-transform: translate(-50%, -50%) scale(0);
            transform: translate(0%, 0%) scale(0);
            border-radius: 100px;
            background: #ffffff;
            width: 50px;
            height: 50px;

            i {
                color: #333333;
                position: relative;
                left: -3px;
            }

            &:hover {
                background: #086ad8;

                i {
                    color: #fff;
                }
            }

        }

        &:hover {
            h4 {
                a {
                    text-decoration: underline !important;
                }
            }

            .portfolio-img {
                &:before {
                    height: 100%;
                    display: block;
                }

                .portfolio-content {
                    display: block;
                    opacity: 1;
                }

            }

            .portfolio-img {
                overflow: hidden;
                a.pf-btn2 {
                    transform: translate(0%, 0%) scale(1);
                    -webkit-transform: translate(0%, 0%) scale(1);
                    -moz-transform: translate(0%, 0%) scale(1);
                    -ms-transform: translate(0%, 0%) scale(1);
                    -o-transform: translate(0%, 0%) scale(1);
                    img {
                        transition: all ease .3s;
                    }
                }
            }
        }
        &:hover .portfolio-img a img {
            transform: scale(1.1);
        }
    }

}

.rt-portfolio-style5 {
    .grid-item.swiper-slide.swiper-slide-active{
        img{            
            filter: grayscale(1);

        }
        .icon{
            img{
                display: block;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) scale(1);
                z-index: 2;
                transition: 1s;
            }
        }
    }
    .icon{
        img{
            display: none;
        }
    }
    .rts-business-case-s-2{
        position: relative;
        overflow: hidden;
        z-index: 1;        
        width: 100%;    
        transition: 0.3s;      
       
        .thumbnail{          
            overflow: hidden;
            img{
                overflow: hidden;
                transition: .3s;
            }
        }
       
    }
}
.rts-btn{
    padding: 17px 30px;
    min-width: max-content;
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    border-radius: 15px;
    background: $primaryColor;
    color:#fff;
    &:hover{
        background-color: $titleColor;
    }   
}
.rt-portfolio-style6 {
    .single-varticle-product{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 32px 0;
        border-bottom: 1px solid #212121;
        &.item-1{
            border-top: 1px solid #212121;
        }
        .name-area{
            display: flex;
            align-items: center;
            flex-basis: 50%;
            span{
                height: 45px;
                width: 45px;
                background: $primaryColor;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
            }
        }
        .p-title{
            margin-bottom: 0;
            margin-left: 20px;
            color: #fff;
            font-weight: 400;
            font-size: 24px;
            line-height: 37px;
            a{
                color:#fff
            }
        }
        .p-category{
            a{
                color:#656565
            }
        }
        .end{
            a{
                i{
                    color:#fff;
                    font-size: 22px;;
                }
            }
        }
    }
   .list-image{
        .tabcontent{
            display: none;
        }
        #item-1{
            &.tabcontent{
                display: block;
            }
        }
   }
  
}

.rt-portfolio-style8{
    &.center-mode-true{
        .grid-item.swiper-slide.swiper-slide-prev .rts-business-case-s-2,
        .grid-item.swiper-slide.swiper-slide-next .rts-business-case-s-2 {
            transform: scale(0.93);
        }
        .grid-item.swiper-slide{
            &.swiper-slide-active {
                .rts-business-case-s-2 {
                    .inner {
                        bottom: 30px;
                        opacity: 1 ;
                    }
                } 
            }

            .rts-business-case-s-2 {
                .inner {
                    bottom: 30px;
                    opacity: 0 ;
                }
            } 
        } 
        
    }
    .rts-business-case-s-2{
        position: relative;
        overflow: hidden;
        z-index: 1;
        border-radius: 5px;
        width: 100%;    
        transition: 1.3s;
        .thumbnail{
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            img{
                overflow: hidden;
                transition: 1.3s;
                border-radius: 5px;
                width: 100%;
            }
            i{
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) scale(0);
                height: 55px;
                width: 55px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: $primaryColor;
                background: #fff;
                z-index: 5;
                border-radius: 50%;
                transition: 1.3s;
            }
            
        }
        .inner{
            position: absolute;
            background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
            bottom: 30px;
            left: 30px;
            right: 30px;
            display: block;
            width: 90%;
            padding: 33px;
            opacity: 1;
            transition: 1s; 
            .p-category {
                color: $bodyColor;
                font-size: 16px;            
                position: relative;
            
            }
            .title{
                margin-bottom: 2px;
                transition: 1.3s;
                font-weight: 700;
                font-size: 24px;
                line-height: 32px;
                color: $titleColor;   
                       
            }
        }
        &:hover{
            .thumbnail{
                img{
                    transform: scale(1.1);
                }
            }
        }
    }   
    
    &.grid-portfolio{
        
        .rts-business-case-s-2 {
            &:hover{
                .inner {
                    bottom: 30px;
                    opacity: 1;
                }
            }
            
        } 
        
    }

}

.rt-portfolio-style9{
    .banner-inner{
        padding: 0;
        margin: 0;
        li.item{
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            transition: all 0.4s;
            cursor: pointer;
            cursor: pointer;       
            .pos {
                font-size: 25px;
                font-weight: 600;
                flex-basis: 1%;
            }
            .image-title {
                font-size: 35px;
                line-height: 1.1;
                position: relative;
                display: inline-block;
                font-weight: 600;
                z-index: 2;
                color: $titleColor;
                transition: all 0.4s;
                opacity: 1;
                flex-basis: 85%;
            }
            .image-title::before {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                content: attr(data-letters);
                overflow: hidden;
                white-space: nowrap;
                transition: height 1s;
                color: $primaryColor;
                height: 0;
                z-index: 999;            
            } 
            .image-title:hover::before {
                height: 100%;
            }           
            .portfolio-button {
                width: 50px;
                height: 50px;
                line-height: 50px;
                border-radius: 50%;
                text-align: center;
                display: block;
                transition: all 0.4s;
                background: $titleColor;
                color: $whiteColor;
                transition: all 0.4s;
                i {
                    transform: rotate(-45deg);
                    transition: all 0.4s;                
                }
            }
            .portfolio-button:hover {
                background: $primaryColor;
                color: #fff;
            }
            .portfolio-button:hover i {
                transform: rotate(0deg);
            }
            .rts-img-reveal-wrapper {
                width: 350px;
                height: 370px;
            }
        }        
    }

}

.portfolio-slider-nav {
    max-width: 1320px;
    position: relative;
    margin: auto;
    z-index: 1;
    .swiper-button-prev,
    .swiper-button-next {
        position: relative;
        font-size: 22px;
        color: $titleColor;
        height: 60px !important;
        width: 60px !important;
        display: inline-block;
        line-height: 60px;
        text-align: center;
        border-radius: 50%;
        background: $whiteColor;
        transition: 0.3s;
        &:hover {
            background: $primaryColor;
            color: $whiteColor;
        }
        &::before {
          font-size: 0;
        }
    }
    .swiper-button-prev {
        left: 93%;
        top: -80px;
        transform: translateX(-93%);
    }
    .swiper-button-next {
        position: absolute;
        right: 0;
        top: -75px;
    }
}

// portfolio style2 Navigation
.portfolio-style2 {
    .portfolio-slider-nav {
        .swiper-button-prev, 
        .swiper-button-next {
            color: $whiteColor;
            height: 60px !important;
            width: 60px !important;
            display: inline-block;
            line-height: 60px;
            text-align: center;
            border-radius: 0;
            background: transparent;
            transition: 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.2);
            &:hover {
                background: $primaryColor ;
            }
        }
    }
}

// swipper pagination bullet
.swipper-bulet-pagination {
    margin-top: 100px;
    .swiper-pagination-bullets {
        position: absolute;
        bottom: -108px;
        left: 47.5%;
        max-width: max-content;
        background: #fff;
        padding: 5px 15px;
        border-radius: 33px;
        .swiper-pagination-bullet {
            display: inline-block;
            width: 9px;
            height: 9px;
            background: #EDEDED;
            border-radius: 50%;
            opacity: 1;
        }
        .swiper-pagination-bullet-active {
            width: 9px;
            height: 9px;
            background: $primaryColor;
            border-radius: 50%;
            opacity: 1;
        }
    }
}
.swiper-pagination-new.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    margin: auto;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
