/*--------------------------
    Project Name: Provetta
    Version: 1.0
    Author: 7oorof
    Relase Date: Deceber 2022
---------------------------*/
/*---------------------------
      Table of Contents
    -------------------------

    01- Global Styles
    02- Helper Classes
    03- Background & Colors
    04- Typography
    05- page title 
    06- Buttons
    07- Forms
    08- Tabs
    09- Icons
    10- Breadcrumb
    11- Pagination
    12- Lists
    13- Animations
    14- Alerts
    16- Carousel
    17- Preloader
    18- Header & Navbar 
    19- Accordions
    20- Banners
    21- Footer
    22- Call to Action
    23- Carousel 
    24- Slider
    26- Video
    27- Features
    28- Fancybox
    29- Team
    30- Testimonials
    31- Clients
    32- Blog
    33- Contact
    34- Pricing
    35- Sidebar
    36- About
    36- Services
    37- Gallery
    38- Shop
    39- Work Process

----------------------------*/
/*-------------------------- 
      Global Styles
---------------------------*/



button {
    padding: 0;
    border: none;
    background-color: transparent;
}

button,
button:focus,
.form-control,
.form-control:focus {
    outline: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}


@media (min-width: 1200px) {
    .services-layout2 .container {
        max-width: 1280px;
    }
}

@media (min-width: 576px) and (max-width: 1200px) {
    .services-layout2  .container {
        max-width: 100%;
    }
}


/*-------------------------
   Typography
--------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: "Titillium Web", sans-serif;*/

}





h3 {
    font-size: 31px;
}



/*--------------------
   Buttons
---------------------*/
.btn {
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 700;
    min-width: 195px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    border: 0;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s linear;
}

    .btn:not(.btn-link), .btn:not(.btn-rounded) {
        -webkit-clip-path: polygon(calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%, 0 0);
        clip-path: polygon(calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%, 0 0);
    }

    .btn:focus, .btn.active, .btn:active {
        box-shadow: none;
        outline: none;
    }

    .btn span,
    .btn i {
        margin: 0 5px;
    }

    .btn .icon-filled {
        width: 24px;
        height: 24px;
        line-height: 24px;
        border-radius: 50%;
        text-align: center;
        display: inline-block;
        transition: all 0.3s linear;
    }

.btn-outlined:before {
    content: "";
    position: absolute;
    top: 1px;
    right: 0;
    border-right: solid 3px transparent;
    width: 30px;
    height: 30px;
    transform: rotate(-45deg);
    transition: all 300ms ease-in-out;
}

.btn-primary {
    color: #ffffff;
    background-color: #2e3192;
}

    .btn-primary .icon-outlined {
        color: #000000;
        border: 1px solid #2e3192;
        color: #2e3192;
        background-color: #ffffff;
    }

    .btn-primary .icon-filled {
        color: #ffffff;
        background-color: #2e3192;
    }

    .btn-primary:hover {
        color: #ffffff;
    }

        .btn-primary:hover .icon-outlined {
            color: #000000;
            background-color: #ffffff;
        }

        .btn-primary:hover .icon-filled {
            color: #ffffff;
            background-color: #000000;
        }

    .btn-primary.btn-outlined {
        color: #2e3192;
        background-color: transparent;
        border: 2px solid #2e3192;
    }

        .btn-primary.btn-outlined:hover {
            color: #ffffff;
            background-color: #2e3192;
        }

.btn-primary-style2:hover {
    color: #2e3192 !important;
    background-color: #ffffff !important;
}

.btn-primary:active, .btn-primary:focus, .btn-primary:not(.btn-outlined):hover {
    color: #ffffff;
    border-color: #000000;
    background-color: #000000;
}

.btn-secondary {
    color: #ffffff;
    background-color: #000000;
}

    .btn-secondary .icon-filled {
        color: #ffffff;
        background-color: #2e3192;
    }

    .btn-secondary:hover {
        color: #ffffff;
    }

        .btn-secondary:hover .icon-filled {
            background-color: #000000;
        }

    .btn-secondary.btn-outlined {
        color: #000000;
        background-color: transparent;
        border: 2px solid #000000;
    }

        .btn-secondary.btn-outlined:hover {
            color: #ffffff;
            background-color: #000000;
        }

    .btn-secondary:active, .btn-secondary:focus, .btn-secondary:not(.btn-link):hover, .btn-secondary:not(.btn-outlined):hover {
        color: #ffffff;
        border-color: #2e3192;
        background-color: #2e3192;
    }

.btn-secondary-style2:active, .btn-secondary-style2:focus, .btn-secondary-style2:not(.btn-outlined):hover {
    color: #000000;
    background-color: #ffffff;
}

.btn-white {
    color: #000000;
    background-color: #ffffff;
}

    .btn-white:active, .btn-white:focus {
        color: #000000;
        border-color: #ffffff;
        background-color: #ffffff;
    }

    .btn-white:hover {
        color: #ffffff;
        background-color: #000000;
    }

    .btn-white.btn-outlined {
        color: #ffffff;
        background-color: transparent;
        border: 2px solid #ffffff;
    }

        .btn-white.btn-outlined:before {
            border-right-color: #ffffff;
        }

        .btn-white.btn-outlined:hover {
            color: #2e3192;
            background-color: #ffffff;
        }

.btn-white-style2 {
    color: #2e3192;
    background-color: #ffffff;
}

    .btn-white-style2:hover {
        color: #ffffff;
        background-color: #2e3192;
    }

.btn-light {
    color: #000000;
    background-color: #6d6fb3;
}

    .btn-light:active, .btn-light:focus {
        color: #000000;
        border-color: #6d6fb3;
        background-color: #6d6fb3;
    }

    .btn-light:hover {
        color: #ffffff;
        border-color: #ffffff;
        background-color: #000000;
    }

    .btn-light.btn-outlined {
        color: #ffffff;
        background-color: transparent;
        border: 2px solid #6d6fb3;
    }

        .btn-light.btn-outlined:before {
            border-right-color: #6d6fb3;
        }

        .btn-light.btn-outlined:hover {
            color: #2e3192;
            border-color: #ffffff;
            background-color: #ffffff;
        }

            .btn-light.btn-outlined:hover:before {
                border-right-color: #ffffff;
            }

.btn-outlined {
    background-color: transparent;
}

.btn-link {
    background-color: transparent;
    border-color: transparent;
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    -webkit-clip-path: none !important;
    clip-path: none !important;
}

    .btn-link:focus, .btn-link:active {
        background-color: transparent;
    }

    .btn-link.btn-icon {
        height: auto;
        line-height: 1;
        padding: 0;
    }

    .btn-link.btn-primary {
        color: #2e3192;
    }

    .btn-link.btn-primary-style2:hover {
        color: #ffffff !important;
    }

    .btn-link.btn-primary.btn-underlined {
        padding-bottom: 3px;
        border-bottom: 2px solid #2e3192;
    }

    .btn-link.btn-primary:hover {
        color: #000000;
        background-color: transparent;
    }

    .btn-link.btn-secondary {
        color: #000000;
    }

        .btn-link.btn-secondary:hover {
            color: #2e3192;
            background-color: transparent;
        }

    .btn-link.btn-white {
        color: #ffffff;
    }

        .btn-link.btn-white.btn-underlined {
            padding-bottom: 3px;
            border-bottom: 2px solid #ffffff;
        }

        .btn-link.btn-white:hover {
            color: #000000;
        }

            .btn-link.btn-white:hover.btn-underlined {
                border-color: #000000;
            }

.btn-block {
    width: 100%;
}

.btn-icon {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

    .btn-icon i,
    .btn-icon span {
        margin: 0 5px;
    }

.btn-social {
    height: 54px;
    line-height: 54px;
    width: 54px;
    min-width: 0 !important;
    font-weight: 400;
    color: #ffffff;
    border-radius: 3px;
}

.btn-facebook {
    background-color: #4267b2;
}

.btn-twitter {
    background-color: #1da0f0;
}

.btn-google-plus {
    background-color: #ea4335;
}

.btn-lg {
    min-width: 200px;
}

.btn-xl {
    height: 70px;
    line-height: 70px;
    min-width: 250px;
}

    .btn-xl i,
    .btn-xl span {
        margin: 0 7px;
    }

.btn-xhight {
    height: 70px;
    line-height: 68px;
}

.btn-rounded {
    border-radius: 50px;
}

.icon-arrow-right {
    font-size: 65%;
}

.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-right: 3px;
    font-style: normal;
    color: #ffffff;
    background-color: #2e3192;
    transition: all 0.3s linear;
}

.rating .active {
    color: #000000;
}

/*----------------------
    Carousel
-----------------------*/
.slick-list {
    margin: 0 -10px;
}

.slick-slide {
    margin: 0 10px;
}

.m-slides-0 .slick-list {
    margin: 0;
}

.m-slides-0 .slick-slide {
    margin: 0;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: 60px;
    height: 60px;
    font-size: 0;
    border-radius: 50%;
    transition: all 0.3s linear;
    transform: translateY(-50%);
}

    .slick-arrow:before {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "icomoon";
        font-size: 16px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        color: #ffffff;
        background-color: #212121;
        transition: all 0.3s linear;
    }

    .slick-arrow:hover {
        box-shadow: 0 0 0 2px #dfdfea inset;
    }

        .slick-arrow:hover:before {
            background-color: #000000;
        }

    .slick-arrow.slick-next {
        right: 0;
    }

        .slick-arrow.slick-next:before {
            content: "\e907";
        }

    .slick-arrow.slick-prev {
        left: 0;
    }

        .slick-arrow.slick-prev:before {
            content: "\e905";
        }

.slick-dots {
    list-style: none;
    position: relative;
    z-index: 2;
    padding: 0;
    text-align: center;
    margin-bottom: 0;
}

    .slick-dots li {
        display: inline-flex;
        position: relative;
        width: 10px;
        height: 10px;
        margin: 0 7px;
        transition: all 0.3s linear;
    }

        .slick-dots li button {
            display: block;
            font-size: 0;
            width: 10px;
            height: 10px;
            padding: 0;
            border-radius: 50%;
            background-color: #2e3192;
            transition: all 0.2s linear;
        }

        .slick-dots li.slick-active button {
            background-color: #000000;
            box-shadow: 0 0 0 5px rgba(244, 87, 46, 0.15);
        }

.carousel-dots-light .slick-dots li button {
    background-color: #ffffff;
}

.carousel-dots-light .slick-dots li.slick-active button {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}


/* sticky-navbar */
.is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    border-bottom: 0 !important;
    height: 80px !important;
    max-height: 80px !important;
    background-color: #ffffff !important;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
    -webkit-animation: headerAnimation 0.8s;
    animation: headerAnimation 0.8s;
}

    .is-sticky > .container,
    .is-sticky > .container-fluid {
        position: relative;
        height: 80px;
    }

    .is-sticky .miniPopup-departments-trigger {
        height: 80px;
    }

    .is-sticky .navbar-brand {
        line-height: 80px;
    }

    .is-sticky .header-top-right {
        display: none !important;
    }

    .is-sticky .nav-item .nav-item-link {
        line-height: 80px !important;
    }

    .is-sticky .logo-light {
        display: none;
    }

    .is-sticky .logo-dark {
        display: inline-block;
    }

    .is-sticky .navbar-nav {
        margin-top: 0 !important;
    }


/*--------------------
     Blog
-------------------*/
.post-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.08);
    transition: all 0.3s linear;
}

    .post-item:not(.post-item-single):after {
        content: "";
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        opacity: 0;
        z-index: 1;
        visibility: hidden;
        background-color: #000000;
        transform: scale(0.7);
        transition: all 0.3s ease-in-out 0s;
    }

    .post-item .post-img {
        position: relative;
        overflow: hidden;
    }

        .post-item .post-img img {
            transition: all 0.9s ease;
        }

        .post-item .post-img .post-meta-date {
            position: absolute;
            z-index: 3;
            top: 40px;
            left: 40px;
            height: 39px;
            display: flex;
        }

            .post-item .post-img .post-meta-date .day,
            .post-item .post-img .post-meta-date .month {
                display: inline-flex;
                align-items: center;
            }

            .post-item .post-img .post-meta-date .day {
                padding: 0 10px;
                font-size: 26px;
                color: #ffffff;
                background-color: #2e3192;
            }

            .post-item .post-img .post-meta-date .month {
                padding: 0 15px;
                color: #848e9f;
                background-color: #ffffff;
            }

    .post-item .post-title {
        font-size: 21px;
        font-weight: 600;
        margin-bottom: 23px;
    }

      


    .post-item .post-meta {
        margin-bottom: 18px;
    }

        .post-item .post-meta > * {
            position: relative;
            font-size: 13px;
            line-height: 1;
            margin-right: 8px;
            padding-right: 8px;
        }

            .post-item .post-meta > *:after {
                content: "-";
                position: absolute;
                top: 0;
                right: -2px;
            }

            .post-item .post-meta > *:last-child {
                padding-right: 0;
                margin-right: 0;
            }

                .post-item .post-meta > *:last-child:after {
                    display: none;
                }

    .post-item .post-body {
        position: relative;
        z-index: 3;
        padding: 37px 0;
        margin-bottom: -65px;
        transition: all 0.3s ease-in-out 0s;
    }

    .post-item .post-meta-cat {
        display: inline-flex;
    }

        .post-item .post-meta-cat a {
            position: relative;
            padding-right: 7px;
            font-weight: 700;
        }


            .post-item .post-meta-cat a:after {
                content: ",";
                position: absolute;
                top: -1px;
                right: 1px;
                color: #000000;
            }

            .post-item .post-meta-cat a:last-child {
                padding-right: 0;
            }

                .post-item .post-meta-cat a:last-child:after {
                    display: none;
                }

    .post-item .btn-link {
        padding: 12px 0;
        margin-top: 5px;
        opacity: 0;
        color: #ffffff;
    }

        .post-item .btn-link .plus-icon {
            color: #000000;
            background-color: #ffffff;
        }

        .post-item .btn-link:hover .plus-icon {
            color: #ffffff !important;
            background-color: #2e3192 !important;
        }

    .post-item:hover .post-img img {
        transform: scale(1.1) rotate(1deg);
    }

.blog-layout1 .post-item {
    border-radius: 6px 6px 0 0;
    margin-bottom: 30px;
    border-bottom: 8px solid #dfdfea;
}

    .blog-layout1 .post-item .post-img {
        border-radius: 6px 6px 0 0;
    }

    .blog-layout1 .post-item:hover {
        border-bottom-color: #2e3192;
    }

        .blog-layout1 .post-item:hover:after {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .blog-layout1 .post-item:hover .post-img img {
            transform: scale(1.1) rotate(1deg);
        }

        .blog-layout1 .post-item:hover .post-desc,
        .blog-layout1 .post-item:hover .post-title a,
        .blog-layout1 .post-item:hover .post-meta-cat a,
        .blog-layout1 .post-item:hover .post-meta-cat a:after {
            color: #ffffff;
        }

        .blog-layout1 .post-item:hover .post-body {
            transform: translateY(-65px);
        }

        .blog-layout1 .post-item:hover .btn-link {
            transition-delay: 0.2s;
            opacity: 1;
        }

.blog-layout2 .post-item {
    box-shadow: none;
    margin-bottom: 40px;
}

    .blog-layout2 .post-item .post-img {
        overflow: hidden;
        border-radius: 5px;
    }

    .blog-layout2 .post-item.featured-post .post-img {
        max-height: 360px;
    }

        .blog-layout2 .post-item.featured-post .post-img img {
            width: 100% !important;
        }

    .blog-layout2 .post-item.featured-post .post-title {
        font-size: 24px;
    }

    .blog-layout2 .post-item:not(.featured-post) {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

        .blog-layout2 .post-item:not(.featured-post) .post-img {
            flex: 180px 0 0;
            max-width: 180px;
        }

        .blog-layout2 .post-item:not(.featured-post) .post-body {
            padding: 15px 30px;
            margin-bottom: 0;
            flex: calc(100% - 180px) 0 0;
            max-width: calc(100% - 180px);
        }

        .blog-layout2 .post-item:not(.featured-post) .post-title {
            margin-bottom: 0;
        }

@media (min-width: 320px) and (max-width: 767px) {
    .post-item .post-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .blog-layout2 .post-item:not(.featured-post) .post-body {
        padding: 15px 15px;
    }
}

/*-----------------------
    Services 
--------------------------*/
.service-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 7px 7px 0 0;
    border-bottom: 8px solid #dfdfea;
    box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.05);
    transition: all 0.4s ease;
}

    .service-item .service-body {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
    }

    .service-item .service-category {
        display: inline-flex;
        padding: 5px 12px;
        margin-bottom: 27px;
        border-radius: 0 0 3px 3px;
        background-color: #000000;
    }

        .service-item .service-category a {
            position: relative;
            color: #ffffff;
            font-size: 14px;
            padding-right: 7px;
        }

            .service-item .service-category a:after {
                content: ",";
                position: absolute;
                top: 0;
                right: 2px;
                color: #ffffff;
            }

            .service-item .service-category a:last-of-type {
                padding-right: 0;
            }

                .service-item .service-category a:last-of-type:after {
                    display: none;
                }

            .service-item .service-category a:hover {
                color: #2e3192;
            }

    .service-item .service-icon {
        color: #000000;
        font-size: 50px;
        line-height: 1;
        margin-bottom: 25px;
        transition: all 0.3s linear;
    }

    .service-item .service-title {
        font-size: 21px;
        margin-bottom: 18px;
        transition: all 0.3s linear;
    }

    .service-item .service-desc {
        margin-bottom: 26px;
        transition: all 0.3s linear;
    }

    .service-item .btn-link.btn-primary:hover .plus-icon {
        background-color: #000000;
    }

    .service-item:hover {
        z-index: 3;
        border-color: #000000 !important;
        box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.12);
    }

.services-layout1 .service-item {
    border-radius: 7px 0 0 7px;
}

    .services-layout1 .service-item .service-body {
        padding: 0 0 40px 40px;
        margin: -50px 50px 0 0;
        border-top-right-radius: 7px;
    }

.services-layout2 {
    overflow-x: hidden;
}

    .services-layout2 .service-item {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 0;
        border-right:0px solid #ffffff;
        box-shadow: 0px 15px 50px 0px rgba(14, 14, 15, 0.17);
    }

        .services-layout2 .service-item .service-img {
            flex: 0 0 55%;
            max-width: 55%;
            border-radius:5px;
        }

        .services-layout2 .service-item .service-body {
            flex: 0 0 45%;
            max-width: 45%;
            padding: 50px 10px 50px 0;
        }

            .services-layout2 .service-item .service-body:after {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                left: -20px;
                width: 72px;
                z-index: -1;
                background-color: #ffffff;
                -webkit-clip-path: url(#path-direction-left2);
                clip-path: url(#path-direction-left2);
            }

    .services-layout2 .slick-slider {
        padding-bottom: 70px;
    }

.services-layout3 .service-item,
.services-layout4 .service-item,
.services-layout5 .service-item,
.services-layout6 .service-item {
    border-bottom: 0;
    overflow: visible;
    margin-bottom: 110px;
    box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.08);
}

    .services-layout3 .service-item .service-body,
    .services-layout4 .service-item .service-body,
    .services-layout5 .service-item .service-body,
    .services-layout6 .service-item .service-body {
        padding: 50px 50px 0;
        overflow: hidden;
    }

    .services-layout3 .service-item .service-desc,
    .services-layout4 .service-item .service-desc,
    .services-layout5 .service-item .service-desc,
    .services-layout6 .service-item .service-desc {
        margin-bottom: 0;
    }

    .services-layout3 .service-item .service-icon,
    .services-layout4 .service-item .service-icon,
    .services-layout5 .service-item .service-icon,
    .services-layout6 .service-item .service-icon {
        color: #252775;
        font-size: 75px;
        margin-bottom: 25px;
    }

        .services-layout3 .service-item .service-icon .icon-item,
        .services-layout4 .service-item .service-icon .icon-item,
        .services-layout5 .service-item .service-icon .icon-item,
        .services-layout6 .service-item .service-icon .icon-item {
            display: block;
            transition: all 0.3s linear;
        }

            .services-layout3 .service-item .service-icon .icon-item:nth-child(2),
            .services-layout4 .service-item .service-icon .icon-item:nth-child(2),
            .services-layout5 .service-item .service-icon .icon-item:nth-child(2),
            .services-layout6 .service-item .service-icon .icon-item:nth-child(2) {
                position: absolute;
                top: -60px;
                right: -100px;
                font-size: 200px;
                color: #eaeaf4;
            }

    .services-layout3 .service-item .service-img,
    .services-layout4 .service-item .service-img,
    .services-layout5 .service-item .service-img,
    .services-layout6 .service-item .service-img {
        padding: 0 50px;
        margin-top: -20px;
    }

        .services-layout3 .service-item .service-img img,
        .services-layout4 .service-item .service-img img,
        .services-layout5 .service-item .service-img img,
        .services-layout6 .service-item .service-img img {
            width: 100%;
            -webkit-clip-path: url(#path-direction-up);
            clip-path: url(#path-direction-up);
            transform: translateY(50px);
        }

    .services-layout3 .service-item .service-more,
    .services-layout4 .service-item .service-more,
    .services-layout5 .service-item .service-more,
    .services-layout6 .service-item .service-more {
        position: absolute;
        bottom: -110px;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .services-layout3 .service-item .service-more .plus-icon,
        .services-layout4 .service-item .service-more .plus-icon,
        .services-layout5 .service-item .service-more .plus-icon,
        .services-layout6 .service-item .service-more .plus-icon {
            position: absolute;
            width: 60px;
            height: 68px;
            border-radius: 0;
            color: #ffffff;
            background-color: #000000;
            -webkit-clip-path: url(#hexagon-clippath);
            clip-path: url(#hexagon-clippath);
        }

        .services-layout3 .service-item .service-more .service-more-svg,
        .services-layout4 .service-item .service-more .service-more-svg,
        .services-layout5 .service-item .service-more .service-more-svg,
        .services-layout6 .service-item .service-more .service-more-svg {
            width: 110px;
            height: 122px;
        }

    .services-layout3 .service-item:hover .service-icon .icon-item,
    .services-layout4 .service-item:hover .service-icon .icon-item,
    .services-layout5 .service-item:hover .service-icon .icon-item,
    .services-layout6 .service-item:hover .service-icon .icon-item {
        transform: translateY(-5px);
    }

    .services-layout3 .service-item:hover .service-more,
    .services-layout4 .service-item:hover .service-more,
    .services-layout5 .service-item:hover .service-more,
    .services-layout6 .service-item:hover .service-more {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

.services-layout4 .slick-dots,
.services-layout5 .slick-dots {
    margin-top: 15px;
}

.services-layout4 .slick-track,
.services-layout5 .slick-track {
    padding-bottom: 80px;
}

.services-layout4 .service-item,
.services-layout5 .service-item,
.services-layout6 .service-item {
    box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}

.services-layout4 .contact-phone,
.services-layout5 .contact-phone,
.services-layout6 .contact-phone {
    max-width: 290px;
}

    .services-layout4 .contact-phone .phone-icon,
    .services-layout5 .contact-phone .phone-icon,
    .services-layout6 .contact-phone .phone-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 68px;
        height: 68px;
        flex: 0 0 68px;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #dfdfea inset;
    }

        .services-layout4 .contact-phone .phone-icon .icon-item,
        .services-layout5 .contact-phone .phone-icon .icon-item,
        .services-layout6 .contact-phone .phone-icon .icon-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 18px;
            color: #ffffff;
            background-color: #000000;
            transition: all 0.3s ease-in-out;
        }

.services-layout4 .slick-slide,
.services-layout5 .slick-slide,
.services-layout6 .slick-slide {
    margin: 15px;
}

.services-layout4 .slick-list,
.services-layout5 .slick-list,
.services-layout6 .slick-list {
    margin: -15px;
}

.services-layout5 .service-item .service-img,
.services-layout6 .service-item .service-img {
    display: block;
}

    .services-layout5 .service-item .service-img img,
    .services-layout6 .service-item .service-img img {
        -webkit-clip-path: url(#path-direction-down2);
        clip-path: url(#path-direction-down2);
    }

.services-layout5 .service-item .btn,
.services-layout6 .service-item .btn {
    margin-top: 26px;
}

.services-layout5 .text-block {
    margin-top: -90px;
}

.services-layout5 .slick-dots {
    margin-top: 80px;
}

.services-layout6 .service-item .service-body {
    padding: 50px;
}

.services-layout6 .text-block {
    margin-top: -35px;
    padding-right: 60px;
}

.services-layout6 .slick-dots {
    margin-top: 40px;
    text-align: right;
}

[class*=services-layout] .slick-slide {
    margin: 15px;
    transition: opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.4s ease;
}

    [class*=services-layout] .slick-slide:not(.slick-active) {
        opacity: 0;
        visibility: hidden;
    }

[class*=services-layout] .slick-list {
    margin: -15px;
    overflow: visible;
}

.list-filter li {
    margin-right: 30px;
}

    .list-filter li:last-child {
        margin-right: 0;
    }

.list-filter .filter {
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #2e3192;
    padding-bottom: 3px;
}

    .list-filter .filter:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #000000;
        transition: 0.4s ease;
    }

    .list-filter .filter.active, .list-filter .filter:hover {
        color: #000000;
    }

        .list-filter .filter.active:before, .list-filter .filter:hover:before {
            width: 100%;
        }

.mix {
    display: none;
}

.services-carousel .slick-arrow.slick-prev {
    left: -30px;
}

.services-carousel .slick-arrow.slick-next {
    right: auto;
    left: -30px;
    top: calc(50% + 70px);
}

@media (min-width: 1200px) {
    .services-carousel .carousel-wrapper {
        margin-right: -350px;
    }

    .services-carousel .service-item .service-desc {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 2.0rem;
        text-overflow: ellipsis;
        white-space: normal;
    }
}

@media (min-width: 1500px) {
    .services-carousel .carousel-wrapper {
        margin-right: -550px;
    }

    .services-carousel .slick-arrow.slick-prev {
        left: -100px;
    }

    .services-carousel .slick-arrow.slick-next {
        left: -100px;
    }
}

@media (min-width: 992px) {
    .services-layout5 .service-item .service-desc,
    .services-layout6 .service-item .service-desc {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }
}
/* Mobile Phones & tablets and Small Screens */
@media (max-width: 991px) {
    .service-item .service-title {
        font-size: 18px;
    }

    .service-item .service-desc {
        font-size: 14px;
    }

    .service-item .service-category {
        margin-bottom: 15px;
    }

    .services-layout1 .service-item .service-body {
        padding: 0 0 20px 20px;
        margin: -20px 20px 0 0;
    }

    .services-layout2 .service-item .service-body {
        padding: 30px 30px 30px 0;
    }

    .services-carousel .slick-arrow {
        top: 50% !important;
    }

        .services-carousel .slick-arrow.slick-prev {
            left: 0;
        }

        .services-carousel .slick-arrow.slick-next {
            left: auto;
            right: 0;
        }

    .list-filter li {
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .services-layout3 .service-item .service-body,
    .services-layout4 .service-item .service-body,
    .services-layout5 .service-item .service-body,
    .services-layout6 .service-item .service-body {
        padding: 20px 20px 0;
    }

    .services-layout3 .service-item .service-img,
    .services-layout4 .service-item .service-img,
    .services-layout5 .service-item .service-img,
    .services-layout6 .service-item .service-img {
        padding: 0 20px;
    }

    .services-layout3 .service-item .icon-item:nth-child(2),
    .services-layout4 .service-item .icon-item:nth-child(2),
    .services-layout5 .service-item .icon-item:nth-child(2),
    .services-layout6 .service-item .icon-item:nth-child(2) {
        top: -90px;
        right: -110px;
    }
}

@media (max-width: 450px) {
    .services-layout2 .service-item {
        flex-direction: column;
    }

        .services-layout2 .service-item .service-img,
        .services-layout2 .service-item .service-body {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .services-layout2 .service-item .service-img {
            min-height: 250px;
        }

        .services-layout2 .service-item .service-body {
            padding: 20px;
        }
}




/*-------------------------
       Counters
--------------------------*/
.counter-item {
    margin-bottom: 30px;
}

    .counter-item .counter-number {
        position: relative;
        font-size: 70px;
        line-height: 1;
        color: #252775;
        font-weight: 400;
        padding-bottom: 22px;
        margin-bottom: 20px;
    }

        .counter-item .counter-number:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #dfdfea;
        }

    .counter-item .counter-desc {
        font-size: 16px;
        font-weight: 700;
    }





