// 1. Slider Revolution
// 2. Logo widget 
// 3. Heading widget
// 4. Text Editor widget
// 5. Links widget
// 6. Icons widget
// 7. Image widget
// 8. Language Switcher widget
// 9. Play Video widget
// 10. Showcase Grid widget
// 11. Project Info widget
// 12. Contact Info widget
// 13. List widget
// 14. Process widget
// 15. Social Share widget
// 16. Countdown widget
// 17. Image Box widget
// 18. Contact Form widget
// 19. Search widget
// 20. Hidden Panel widget
// 21. Banner Box widget
// 22. Client Review widget
// 23. Case Carousel widget
//--------------------------------------------------

// Rest Class
.pxl-icon--gradient {
    i {
        @extend .text-gradient;
    }
}

::selection {
    background-color: #354e33;
    color: #fff;
}

::-webkit-selection {
    background-color: #354e33;
    color: #fff;
}

.pxl-reset-padding-xl {
    @media #{$mm-xl2} {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

// Slider Revolution
.revslider-initialised {
    overflow: visible !important;
}

// Logo widget
.pxl-logo {
    a {
        display: inline-block;
    }

    img {
        width: auto;
        vertical-align: middle;
    }
}

// Heading widget
.pxl-heading {
    .pxl-heading--inner {
        display: inline-block;
        position: relative;
    }

    .pxl-text--slide {
        display: inline-block;
        vertical-align: middle;
        position: relative;

        span {
            display: inline-block;
        }
    }

    .wow.letter {
        @include transform(translate3d(0, 25px, 0));
        @include transition(all 0.5s);
        opacity: 0;

        &.animated {
            @include transform(translate3d(0, 0px, 0));
            opacity: 1;
        }
    }

    &.px-sub-title-default-style {
        .pxl-item--title {
            font-size: 52px;
            font-weight: 500;
            color: $primary_color;
            margin-bottom: 8px;
            word-break: break-word;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 3;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            line-height: 1.15;

            @media (max-width: 1200px) {
                font-size: 43px;
            }

            @media (max-width: 991px) {
                font-size: 40px;
            }

            @media (max-width: 676px) {
                font-size: 35px;
            }

            @media (max-width: 480px) {
                font-size: 25px;
            }
        }
    }

    .pxl-item--subtitle {
        &.px-sub-title-default {
            font-size: 13px;
            color: $primary_color;
            text-transform: uppercase;
            margin-bottom: 18px;
            @extend .ft-theme-default;
            font-weight: 700;
            padding: 5px 14px 4px 14px;
            border-radius: 30px;
            display: inline-block;
            background: rgba(53, 78, 51, 0.1);

        }
    }

    &.px-sub-title-under-style {
        padding: 7px 20px 13px 20px;
        border-radius: 8px;
        background: #fff;

        .pxl-heading--inner {
            display: grid;

            .pxl-item--title {
                order: 2;
                font-size: 50px;
            }

            .pxl-item--subtitle {
                order: 1;
                font-size: 18px;
                margin-bottom: 13px;
                text-transform: uppercase;
            }
        }
    }

    .pxl-title--highlight {
        color: #798d7a;
    }

    .pxl-item2 {
        .pxl-title--highlight {
            letter-spacing: 0.35px;
        }

        .pxl-text-end {
            letter-spacing: 1.5px;
        }
    }
}

@keyframes pxlKeywordRotatingIn {
    from {
        transform: translateY(70%) rotateX(-100deg);
        opacity: 0
    }

    to {
        transform: translateY(0) rotateX(0);
        opacity: 1
    }
}

@keyframes pxlKeywordRotatingOut {
    from {
        transform: translateY(0) rotateX(0);
        opacity: 1
    }

    to {
        transform: translateY(-70%) rotateX(100deg);
        opacity: 0
    }
}

.pxl-title--typewriter {
    display: inline-flex;
    white-space: nowrap;
    position: relative;
    z-index: 99;

    .pxl-item--text {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;

        &:not(.is-active) {
            animation: pxlKeywordRotatingOut .8s cubic-bezier(.86, 0, .07, 1) both;
        }

        &.is-active {
            position: relative;
            opacity: 1;
            animation: pxlKeywordRotatingIn .8s cubic-bezier(.86, 0, .07, 1) both;
        }
    }
}

// Text Editor widget
.pxl-text-editor {
    .pxl-item--inner {
        display: inline-block;
    }

    p {
        margin-bottom: 30px;

        &:last-child {
            margin-bottom: 0;
        }

        br {
            display: none;
        }
    }

    .pxl-text--highlight {
        padding: 4px 0;
        background-color: $link_color;
        color: #fff;
    }
}

// Links
.pxl-link {
    list-style: none;
    margin: 0;
    padding: 0;

    a {
        display: inline-flex;
        font-size: 16px;
        color: #586563;

        &:hover {
            color: $link_color;
        }
    }

    i {
        min-width: 24px;
        margin-top: 5px;
        font-size: 15px;
        display: inline-flex;
    }

    &.type-vertical li+li {
        margin-top: 8px;
    }

    &.type-horizontal {
        display: flex;
        flex-wrap: wrap;

        li {
            margin: 0 10px;
        }
    }

    &.style-box {
        i {
            margin: 0 18px 0 0;
            font-size: 24px;
            color: $link_color;
            @include transition(color 250ms linear 0ms);

            @media #{$max-sm} {
                font-size: 22px;
            }
        }

        a {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            background-color: #fff;
            position: relative;
            font-size: 16px;
            color: #1C2539;
            font-weight: 700;
            @extend .ft-theme-default;
            padding: 12px 35px;
            border-radius: 5px;
            @include box-shadow(0 0px 30px rgba(#8997BA, 0.1));
            @include transition(all 250ms linear 0ms);

            @media #{$max-lg} {
                padding-left: 30px;
                padding-right: 30px;
            }

            @media #{$max-lg} {
                padding-left: 24px;
                padding-right: 24px;
            }

            &:after {
                color: #5d666f;
                content: "\f110";
                font-family: "Caseicon";
                font-size: 11px;
                position: absolute;
                top: 50%;
                right: 27px;
                transform: translateY(-50%);
                @include transition(color 250ms linear 0ms);

                @media #{$max-lg} {
                    right: 20px;
                }
            }

            &:hover {
                background-color: $link_color;
                color: #fff;

                &:after,
                i {
                    color: #fff;
                }
            }
        }

        li+li {
            margin-top: 6px;
        }
    }
}

// Icons
.pxl-icon1 {
    a {
        position: relative;

        span {
            background-color: #080808;
            position: absolute;
            left: 50%;
            transform: translate(-50%, 0);
            color: #fff;
            white-space: nowrap;
            display: block;
            line-height: 24px;
            font-size: 12px;
            padding: 0 8px;
            @include transition(all .25s cubic-bezier(.645, .045, .355, 1));
            opacity: 0;
            visibility: hidden;

            &:before {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                margin: auto;
                border-width: 5px;
                border-style: solid;
                border-color: transparent transparent #080808 transparent;
                width: 0;
                height: 0;
            }
        }

        &.ps-top span {
            bottom: 100%;
            margin-bottom: 10px;

            &:before {
                bottom: -10px;
                border-color: #080808 transparent transparent transparent;
            }
        }

        &.ps-bottom span {
            top: 100%;
            margin-top: 10px;

            &:before {
                top: -10px;
            }
        }

        &:hover span {
            opacity: 1;
            visibility: visible;
        }
    }

    &.style-default {
        a {
            color: #000;

            &:hover {
                color: $link_color;
            }
        }
    }

    &.style-box1 {
        a {
            background-color: rgba(255, 255, 255, .1);
            color: $primary_color;
            width: 33px;
            height: 33px;
            text-align: center;
            display: inline-flex;
            font-size: 16px;
            align-items: center;
            justify-content: center;
            transform: translateY(0px);
            margin: 0 3px;

            i {
                line-height: 1;
            }

            &:hover {
                color: #fff;
                background-color: $link_color_hover;
                transform: translateY(-3px);
            }
        }
    }

    &.style-box2 {
        display: flex;
        align-items: center;
        background-color: #fff;
        @include border-radius(5px);
        box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.800000190734863px 24.399999618530273px -6px rgba(19, 16, 34, 0.10);

        a {
            color: $link_color_hover;
            width: 55px;
            display: flex;
            align-content: center;
            justify-content: center;
            margin: 0;
            padding: 15px 0;
            padding-top: 17px;
            position: relative;

            &:after {
                content: '';
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 1px;
                height: 28px;
                background-color: rgba(242, 241, 236, 0.50);
            }

            &:last-child {
                &:after {
                    display: none;
                }
            }

            &:hover {
                color: $link_color;
            }
        }
    }

    &.style-box3 {
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        a {
            width: 34px;
            height: 34px;
            margin: 0 2px 4px 2px;
            text-align: center;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(0px);
            color: $link_color;
            background-color: $primary_color;

            &:hover {
                transform: translateY(-3px);
            }

            &:nth-child(1) {
                background-color: #3ea1ec;
            }

            &:nth-child(2) {
                background-color: #344e86;
            }

            &:nth-child(3) {
                background-color: #c23321;
            }

            &:nth-child(4) {
                background-color: #0976b4;
            }

            &:nth-child(5) {
                background-color: #cc2127;
            }

            &:nth-child(6) {
                background-color: #eb4924;
            }

            &:nth-child(7) {
                background-color: #198cff;
            }
        }
    }
}

// Image
.pxl-image-single {
    @include border-radius(inherit);

    *,
    img {
        @include border-radius(inherit);
        overflow: hidden;
    }

    img {
        width: auto;
    }

    &.pxl-hover1 .pxl-item--inner {
        position: relative;
        overflow: hidden;

        img {
            @include transition(transform 1.5s cubic-bezier(.19, 1, .22, 1));
        }

        &:hover img {
            @include transform(scale(1.06));
        }
    }

    &.pxl-hover2 .pxl-item--inner {
        img {
            @include transition(all 0.5s);
        }

        &:hover img {
            @include transform(scale(0.95));
        }
    }

    &.pxl-image-parallax .pxl-item--image {
        @include transition(all 100ms linear 0ms);
    }
}

.pxl-image-tilt {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.pxl-image-tilt-active {
    overflow: hidden;
}

.pxl-image-op {
    .pxl-image-single {
        img {
            opacity: 0.3;

            @media screen and(max-width: 2560px) {
                width: 100%;
            }
        }
    }
}

// Language Switcher
.pxl-language-switcher1 {
    font-size: 13px;
    color: #4e4e4e;
    position: relative;
    z-index: 99;

    a {
        color: inherit;

        &:hover {
            color: $link_color;
        }
    }

    ul {
        margin: 0;
        list-style: none;
        position: absolute;
        top: 100%;
        left: 0;
        font-size: 14px;

        @media #{$max-xl} {
            left: auto;
            right: 0;
        }

        min-width: 146px;
        padding: 16px 22px;
        background-color: #fff;
        z-index: 99;
        @include box-shadow(0 18px 43px rgba(#5a5a5a, 0.14));
        @include border-radius(3px);
        @include transition(.3s cubic-bezier(.24, .74, .58, 1));
        transform: perspective(300px) rotateX(-90deg);
        transform-origin: 50% 0%;

        li {
            padding: 6px 0;
        }

        a {
            display: inline-flex;
            align-items: center;

            img {
                max-width: 21px;
                @include border-radius(21px);
                margin-right: 9px;
                @include box-shadow(0 2px 6px rgba(#000, 0.06));
            }
        }
    }

    .current--item {
        line-height: 50px;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        cursor: pointer;
        color: #222;
        font-size: 13px;
        padding: 0 20px;
        line-height: 29px;
        background-color: rgba(#C1D1E1, 0.1);
        border-radius: 6px;
        min-width: 146px;
        justify-content: center;

        img {
            max-width: 21px;
            @include border-radius(21px);
            margin-right: 9px;
        }

        label {
            cursor: pointer;

            &:after {
                content: "\f107";
                font-family: Caseicon;
                font-size: 9px;
                margin-left: 8px;
                line-height: 1;
                @include transition(all 220ms linear 0ms);
                display: inline-flex;
            }
        }
    }

    &.dr-right ul,
    &.dr-top-right ul {
        left: auto;
        right: 0;
        text-align: right;
    }

    &.dr-top-right ul,
    &.dr-top-left ul {
        top: auto;
        bottom: 100%;
        transform-origin: bottom center;
        transform: perspective(300px) rotateX(90deg);
    }

    &:hover {
        .current--item label:after {
            @include transform(scaleY(-1));
        }

        .current--item+ul {
            margin-top: 0;
            transform: perspective(300px) rotateX(0deg);
        }
    }
}

// Play Video
.btn-video {
    min-width: 75px;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;

    &.style-divider {
        &:before {
            background-color: $link_color;
            border-radius: 100%;
            @extend .pxl-spill;
            z-index: -1;
        }

        .line-video-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(#fff, 0.55);
            @include border-radius(100%);
            animation: pxl_squares 3.9s linear 0s infinite;
            -webkit-animation: pxl_squares 3.9s linear 0s infinite;
            -ms-animation: pxl_squares 3.9s linear 0s infinite;
            -o-animation: pxl_squares 3.9s linear 0s infinite;
            -webkit-animation-play-state: running;
            -moz-animation-play-state: running;
            -o-animation-play-state: running;
            animation-play-state: running;
            opacity: 0;

            &.line-video-2 {
                -webkit-animation-delay: 1.3s;
                -moz-animation-delay: 1.3s;
                -o-animation-delay: 1.3s;
                animation-delay: 1.3s;
            }

            &.line-video-3 {
                -webkit-animation-delay: 2.6s;
                -moz-animation-delay: 2.6s;
                -o-animation-delay: 2.6s;
                animation-delay: 2.6s;
            }
        }

        &:hover,
        &:focus {
            color: #fff;

            .line-video-animation {
                -webkit-animation-play-state: paused;
                -moz-animation-play-state: paused;
                -o-animation-play-state: paused;
                animation-play-state: paused;
            }
        }
    }
}

// Showcase Grid
.pxl-mega-menu .pxl-showcase-grid1 .pxl-grid-inner {
    height: auto !important;

    .pxl-grid-item {
        position: static !important;

        @media (max-width: 1199px) {
            max-width: 100% !important;
            flex: 100% !important;
        }
    }

    .grid-sizer {
        display: none;
    }
}

.pxl-showcase-grid {
    text-align: center;

    .pxl-item--image {
        position: relative;
        overflow: hidden;
        border-radius: 0px;
        margin-bottom: 15px;
        border: 1px solid rgba(207, 129, 77, 0.5);
        padding: 10px;
        @include transition(all 250ms linear 0ms);

        img {
            @include transform(scale(1));
            @include transition(all 250ms linear 0ms);
        }

        &:before {
            @extend .pxl-spill;
            background-color: rgba(0, 0, 0, .5);
            @include transition(all 250ms linear 0ms);
            opacity: 0;
            z-index: 1;
        }
    }

    .pxl-item--buttons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        @include transform(translate(0, -50%));
        z-index: 99;

        .btn {
            color: #fff !important;
            line-height: 40px;
            padding: 0 15px;
            font-size: 16px;
            border-radius: 0px;
            margin: 5px 0px;
            word-spacing: 0px;
            letter-spacing: -0.2px;

            @extend .ft-theme-default;

            &:hover {
                color: $link_color !important;
                background-color: $gradient_color_to;
            }
        }

        .pxl-item--button {
            @include transform(scale(1.5));
            opacity: 0;
            @include transition(all 250ms linear 0ms);
        }
    }

    .pxl-item--title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 0;
        color: #fff;

        a {
            color: #fff !important;
            font-size: inherit;
            font-family: inherit;
            font-weight: inherit;
        }
    }

    .pxl-item--inner {
        margin-bottom: 30px;

        &:hover {
            .pxl-item--image {
                border-color: $primary_color;

                img {
                    @include transform(scale(1.1));
                }
            }

            .pxl-item--buttons .pxl-item--button {
                transform: scale(1);
                opacity: 1;
            }

            .pxl-item--image:before {
                opacity: 1;
            }
        }
    }
}

//pxl-image-grid
.pxl-image-grid1 {
    overflow: hidden;

    .pxl-grid-inner {
        position: unset !important;
        height: auto !important;

        .pxl-grid-item {
            position: unset !important;
        }
    }

    .pxl-grid-item {
        padding: 15px;
    }

    .pxl-item--inner {
        text-align: center;
        @include transition(all 250ms linear 0ms);
        overflow: hidden;
        border-radius: 8px;

        .pxl-item--image {
            position: relative;
            transition: all 0.5s;

            &:hover {
                scale: 1.2;
                transition: all 0.5s;

                .pxl-view {
                    opacity: 1;
                    transform: scale(1) translateY(-50%);
                    letter-spacing: .5px;
                    line-height: 26px;
                }
            }

            .pxl-view {
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                transform: scale(2) translateY(-50%);
                color: #fff;
                font-size: 20px;
                opacity: 0;
                width: 100%;
                transition: all 0.3s;
                transform-origin: center center;
                line-height: 1;
                letter-spacing: .5px;
            }
        }

        .pxl-item--title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 0;
            margin-top: 20px;
            color: #fff;
        }
    }
}

.pxl-box-grid1 {
    .pxl-grid-inner {
        position: unset !important;
        height: auto !important;
    }

    .pxl-grid-item {
        position: unset !important;
        padding: 15px;

        @media (max-width: 1280px) {
            padding: 8px;
        }
    }

    .pxl-item--inner {
        padding: 26px 30px 30px 30px;
        background: $primary_color;
        border-radius: 8px;
        position: relative;

        @media (max-width: 1280px) {
            padding: 15px 10px 15px 15px;
        }

        .pxl-number {
            position: absolute;
            top: 0;
            right: 0;
            padding: 23px;
            color: #fff;
            font-size: 16px;
            font-family: 'Heebo';
        }

        .pxl-item--image {
            width: 50px;
            min-width: 50px;
            margin-bottom: 18px;
        }

        .pxl-item--title {
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #fff;
            margin-bottom: 14px;
        }

        .pxl-sub--title {
            font-size: 16px;
        }
    }
}

.pxl-box-grid2 {
    .pxl-grid-inner {
        position: unset !important;
        height: auto !important;

        .pxl-grid-item {
            position: unset !important;
        }
    }

    .pxl-grid-item {
        padding: 15px;

        @media (max-width: 1024px) {
            padding: 10px;
        }
    }

    .pxl-item--inner {
        position: relative;

        .pxl-item--image {
            img {
                border-radius: 8px;
            }
        }

        .pxl-wrap-content {
            position: absolute;
            bottom: 0px;
            width: 100%;

            .pxl-box {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 25px;
                margin: 25px;
                background: #fff;
                color: $primary_color;
                border-radius: 8px;

                @media (max-width: 1024px) {
                    padding: 15px;
                    margin: 15px;
                }

                i {
                    width: 40px;
                    height: 40px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #e1ebe2;
                    border-radius: 50%;
                    color: $primary_color;
                    font-size: 27px;
                }

                .pxl-item--title {
                    margin-bottom: 0;
                }
            }
        }
    }
}

// Project Info
.pxl-project-info1 {
    background-color: #fff;
    @include border-radius(10px);
    @include box-shadow(0 10px 21px rgba(#1B1212, 0.05));
    overflow: hidden;

    .pxl-item--title {
        margin-bottom: 0;
        background-color: $secondary_color;
        color: $link_color;
        padding: 24px 38px;

        @media #{$max-lg} {
            padding-left: 28px;
            padding-right: 28px;
            font-size: 20px;
        }
    }

    .pxl--meta {
        @media #{$max-lg} {
            font-size: 16px;
        }

        label {
            color: #777777;
        }

        span {
            display: block;
            @extend .ft-theme-default;
            color: $color_dark;
            font-weight: 700;
            margin-top: 2px;
        }
    }

    .pxl--icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        border-radius: 50px;
        background-color: #{'rgba(var(--primary-color-rgb),0.12)'};
        line-height: 50px;
        text-align: center;
        color: $link_color;
        font-size: 17px;
    }

    .pxl--holder {
        padding: 42px 38px;

        @media #{$max-lg} {
            padding-left: 28px;
            padding-right: 28px;
        }
    }

    .pxl--item {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        padding-bottom: 26px;
        margin-bottom: 26px;
        border-bottom: 1px solid #E9E9E9;

        &:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }
    }
}

.pxl-align--center {
    transform: translate(-50%, 0);
}

// Contact Info
.pxl-contact-info1 {
    background-color: $link_color;
    padding: 20px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;

    &:before {
        content: '';
        border: 1px solid rgba(#fff, 0.85);
        position: absolute;
        top: 6px;
        right: 6px;
        bottom: 6px;
        left: 6px;
        z-index: -1;
    }

    .pxl-item--icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 42px;
        background-color: #fff;
        line-height: 42px;
        text-align: center;
        font-size: 20px;
        color: $link_color;
    }

    .pxl-item--subtitle {
        margin-bottom: 9px;
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        letter-spacing: -0.18px;
    }

    .pxl-item--title {
        margin-bottom: 0;
        font-size: 18px;
        color: #fff;
    }

    .pxl-item--inner {
        display: flex;
        flex-wrap: nowrap;
    }

    .pxl-item--link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99;
    }
}

.pxl-contact-info2 {
    .pxl-item--image {
        width: 72px;
        min-width: 72px;

        img {
            border-radius: 300px;
        }
    }

    .pxl-item--title {
        margin-bottom: 5px;
    }

    .pxl-item--subtitle {
        font-size: 17px;
        color: $link_color;
    }
}

// List
.pxl-list {
    width: 100%;

    &.style-default {
        .pxl--item {
            &:last-child {
                margin-right: 0;
            }

            .pxl-item--text {
                a {
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    color: #fff;

                    &:hover {
                        color: $link_color_hover;
                    }
                }
            }
        }
    }

    &.style-box1 {
        .pxl--item {
            width: 100%;
            display: flex;
            align-items: center;
            margin-bottom: 12px;

            &:last-child {
                margin-bottom: 0;
            }

            .pxl-item--icon {
                i {
                    font-size: 14px;
                    margin-right: 10px;
                    color: $link_color_hover;
                }
            }

            .pxl-item--text {

                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 1;
                display: -webkit-box;
                -webkit-box-orient: vertical;

                a {
                    color: #616670;

                    &:hover {
                        color: $link_color_hover;
                    }
                }
            }
        }
    }

}

.pxl-icon-list {
    a {
        display: inline-flex;
        justify-content: center;
        padding: 5px;
        border-radius: 50%;
        width: 36px;
        height: 36px;

        i {
            display: flex;
            align-items: center;
        }
    }
}

//list item icon
.pxl-item-icon {
    .pxl-item {
        .pxl-title {
            display: inline-block;
        }
    }
}

.pxl-none-sub {
    .pxl-item-icon {
        .pxl-item {
            .pxl-title {
                display: inline-block;
            }
        }

        .pxl-sub-title {
            display: none;
        }
    }
}

.pxl-quest-bl {
    .pxl-item-icon {
        .pxl-item {
            display: flex;
        }
    }
}

// Process
.pxl-process1 {
    .pxl-item--step {
        width: 39px;
        min-width: 39px;
        height: 39px;
        line-height: 39px;
        text-align: center;
        border-radius: 39px;
        background-color: #fff;
        color: $link_color;
        font-size: 20px;
        font-weight: 700;
        @extend .ft-theme-default;
        @include box-shadow(0 10px 20px rgba(#8997BA, 0.25));
    }

    .pxl-item--meta {
        margin-top: 7px;

        .pxl-item--title {
            margin-bottom: 12px;
        }
    }

    .pxl-item--inner {
        display: flex;
        flex-wrap: nowrap;
    }
}

.pxl-process2 {
    text-align: center;

    .pxl-item--image {
        width: 195px;
        margin: 0 auto 35px auto;
        position: relative;

        img {
            @include border-radius(195px);
        }
    }

    .pxl-item--step {
        position: absolute;
        top: 15px;
        left: -5px;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        width: 51px;
        height: 51px;
        line-height: 51px;
        border-radius: 51px;
        background-color: $link_color;
        box-shadow: 0 0 0 5px rgba(#FFEEEF, 0.6);
    }

    .pxl-item--title {
        margin-bottom: 14px;
    }

    .pxl-item--inner:hover {
        .pxl-item--step {
            animation: pxl_bounce 800ms ease-out infinite;
            -webkit-animation: pxl_bounce 800ms ease-out infinite;
        }
    }
}

// Social Share
.pxl-social-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    label {
        color: $color_dark;
        font-weight: 700;
        font-size: 14px;
        @extend .ft-theme-default;
    }

    .pxl-social--list {
        margin: 0 -4px;

        a {
            display: inline-flex;
            width: 37px;
            height: 37px;
            border-radius: 37px;
            justify-content: center;
            line-height: 37px;
            color: #fff;
            font-size: 15px;
            margin: 4px;

            &:hover {
                opacity: 0.8;
            }

            &.fb-social {
                background-color: #284BAF;
            }

            &.tw-social {
                background-color: #18A6F0;
            }

            &.pin-social {
                background-color: #A91010;
            }

            &.lin-social {
                background-color: #0a66c2;
            }
        }
    }
}

// Countdown
.pxl-countdown {

    .countdown-item-inner,
    .countdown-item-holder,
    .countdown-item:after {
        @include transition(all 500ms ease-in-out);

        svg,
        .countdown-amount,
        .countdown-period {
            @include transition(inherit);
        }
    }
}

.pxl-countdown-layout1 {
    line-height: 1;
    padding: 20px 0 5px;
    @extend .pxl-item--flex;

    &.svg-on {
        .countdown-amount {
            font-size: 45px;
            font-weight: bold;
            color: $link_color;
            margin-top: 2px;
            margin-bottom: 0px;

            @media #{$max-sm} {
                font-size: 30px;
            }
        }

        .countdown-period {
            font-size: 16px;
        }

        .countdown-item-inner {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 110px;
            height: 110px;
            min-width: 110px;
            @include border-radius(110px);
            z-index: 1;

            svg {
                width: inherit;
                height: inherit;
                display: block;
                fill: #7d7d7d;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
            }

            @media #{$max-sm} {
                min-width: 105px;
                width: 105px;
                height: 105px;

                svg {
                    height: 105px;
                    width: 105px;
                }
            }
        }

        .countdown-item {
            width: 25%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin-bottom: 20px;
        }
    }

    &.svg-off {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;

        .countdown-amount {
            position: relative;
            font-weight: 400;
            line-height: 1;
            margin-bottom: 9px;
            @extend h2;
            @extend .pxl-h2-size;
        }

        .countdown-period {
            font-size: 13px;
            color: $link_color;
        }

        .countdown-item {
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            text-align: center;
            margin: 0 30px;
            margin-bottom: 20px;

            svg {
                display: none;
            }

            @media #{$max-xs} {
                width: 50%;

                &:nth-child(1),
                &:nth-child(2) {
                    margin-bottom: 30px;
                }

                &:nth-child(2) {
                    &:after {
                        display: none;
                    }
                }

                &:after {
                    position: absolute;
                    right: 0;
                    top: 25%;
                    margin: 0;
                    @include transform(translate(0, -50%));
                }
            }
        }
    }
}

// Image Box
.pxl-image-box1 {
    position: relative;

    .pxl-banner-inner {
        overflow: hidden;
        @include border-radius(30px);
        @include transition(all 0.3s);

        &:hover {
            background-color: rgba(220, 37, 70, 0.9);

            .pxl-item--holder1 {
                opacity: 0;
                transform: scaleY(0);
                height: 0;
            }

            .pxl-item--holder2 {
                opacity: 1;
                transform: scaleY(1);
                height: 100%;
            }

            .pxl-item--image {
                img {
                    opacity: 0.1;
                }
            }
        }
    }

    .pxl-item--holder1 {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        opacity: 1;
        padding: 15px;
        transform: scaleY(1);
        transform-origin: top;
        @include transition(all 0.3s);

        .item-title-style {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            @include border-radius(30px);
            border: 5px solid #ffd40d;

            .pxl-item--title {
                color: $link_color;
                font-size: 30px;
                margin-bottom: 0;
                background-color: #ffd40d;
                padding: 18px 0px 13px 0px;
                width: 100%;
                @include border-radius(20px);
                text-align: center;

                @media (max-width: 1199px) {
                    font-size: 25px;
                }
            }
        }
    }

    .pxl-item--holder2 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 70px;
        @include border-radius(30px);
        @include transition(all 0.3s);

        @media (max-width: 1199px) {
            padding: 0 50px;
        }

        @media (max-width: 1024px) {
            padding: 0 30px;
        }

        .pxl-item--title {
            color: #fff;
            font-size: 30px;
            margin-bottom: 25px;

            @media (max-width: 1024px) {
                margin-bottom: 15px;
            }
        }

        .pxl-item--content {
            color: #fff;
            font-size: 16px;

        }

        .item-button {
            margin-top: 50px;

            @media (max-width: 1024px) {
                margin-top: 30px;
            }

            a {
                color: $link_color;
                text-transform: uppercase;
                font-weight: 800;
                font-size: 16px;
                padding: 20px 35px;
                background-color: #fff;
                @include border-radius(10px);
                font-family: 'Archivo', sans-serif;
                @include transition(all 0.3s);

                &:hover {
                    background-color: #ffd40d;
                }

                @media (max-width: 1199px) {
                    font-size: 14px;
                    padding: 15px 30px;
                }
            }
        }
    }

    .pxl-item--image {
        img {
            width: 100%;
            @include transition(all 0.3s);
            border-radius: 10px 10px 0 0;
        }

        +.pxl-item--holder {
            border-radius: 0 0 10px 10px;
            border-top: none;
        }
    }
}

.pxl-image-box2 {
    .pxl-banner-inner {
        display: flex;
        align-content: center;
        align-items: center;
        @include transition(all 0.3s);

        @media (max-width: 1024px) {
            display: block;
        }

        &:hover {
            .pxl-item--image {
                .image-style {
                    &:before {
                        animation: left-to-right 1s ease none;
                    }
                }
            }

            .item-layout1 {
                .item-number {
                    color: $link_color;

                    &:after {
                        transform: scaleX(1);
                    }
                }
            }
        }

        .item-layout1 {
            position: relative;

            .pxl-item--image {
                padding-right: 50px;

                @media (max-width: 1024px) {
                    padding-right: 0;
                }

                img {
                    @include border-radius(100px);
                }

                .image-style {
                    position: relative;
                    overflow: hidden;
                    transition: all 300ms linear 0ms;

                    &:before {
                        position: absolute;
                        top: 0;
                        left: -85%;
                        display: block;
                        content: '';
                        width: 50%;
                        height: 100%;
                        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, .3) 100%);
                        background: linear-gradient(to right, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, .3) 100%);
                        -webkit-transform: skewX(-25deg);
                        transform: skewX(-25deg);
                    }
                }
            }

            .item-number {
                font-size: 24px;
                width: 115px;
                height: 115px;
                background-color: $link_color_hover;
                color: #fff;
                position: absolute;
                top: 50%;
                right: 5%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                transform: translate(-5%, -50%);

                @include transition(all 0.3s);
                @include border-radius(50%);

                @media (max-width: 1024px) {
                    right: 0;
                }

                &:after {
                    position: absolute;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    content: "";
                    @include border-radius(50%);
                    z-index: -1;
                    -webkit-transition: all 200ms linear;
                    -khtml-transition: all 200ms linear;
                    -moz-transition: all 200ms linear;
                    -ms-transition: all 200ms linear;
                    -o-transition: all 200ms linear;
                    transition: all 200ms linear;
                    transition-delay: .1s;
                    transform: scale(0);
                    transform-origin: center;
                    transform-style: preserve-3d;
                    transition: all .5s cubic-bezier(.62, .21, .45, 1.52);
                    background-color: #ffd40d;
                }
            }
        }

        .pxl-item--holder {
            @media (max-width: 1024px) {
                text-align: center;
                margin-top: 30px;
            }

            .pxl-item--title {
                font-size: 30px;
                margin-bottom: 20px;

            }

            .pxl-item--content {
                color: #555555;
                font-size: 16px;
                font-weight: 400;

            }
        }
    }
}

.pxl-image-box3 {
    @include transition(all 0.3s);

    @media (max-width: 991px) {
        display: flex;
        justify-content: center;
    }

    &:hover {
        .pxl-item--holder {
            &:before {
                border: 3px dashed #ffd40d;
                animation: rotate360 10s infinite linear;
            }
        }
    }

    .pxl-banner-inner {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .pxl-item--holder {
        width: 395px;
        height: 395px;
        background-color: #fff;
        @include border-radius(50%);
        display: inline-flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        position: relative;
        @include transition(all 0.3s);

        @media (max-width: 1400px) {
            width: 350px;
            height: 350px;
        }

        @media (max-width: 1250px) {
            margin-right: -25px;
        }

        @media (max-width: 1100px) {
            margin-right: -115px;
        }

        @media (max-width: 1100px) {
            width: 335px;
            height: 335px;
        }

        @media (max-width: 991px) {
            left: 50%;
            top: 50%;
            position: absolute;
            margin-right: 0;
            transform: translate(-50%, -50%);
        }

        @media (max-width: 470px) {
            width: 300px;
            height: 300px;
        }

        &:before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            border: 3px solid #ffd40d;
            width: 95%;
            height: 95%;
            @include border-radius(50%);
            @include transition(all 0.3s);

            @media (max-width: 470px) {
                top: 8px;
                left: 8px;
            }
        }

        .holder-style {
            max-width: 250px;

            @media (max-width: 1400px) {
                max-width: 220px;
            }

            @media (max-width: 1100px) {
                max-width: 210px;
            }

            @media (max-width: 470px) {
                max-width: 180px;
            }
        }

        .pxl-item--title {
            font-size: 30px;
            margin-bottom: 20px;

            @media (max-width: 1400px) {
                font-size: 21px;
            }

            @media (max-width: 470px) {
                margin-bottom: 5px;
            }
        }

        .pxl-image-box-list {
            .pxl--item {
                position: relative;
                padding-left: 25px;
                margin-bottom: 10px;

                @media (max-width: 470px) {
                    margin-bottom: 0px;
                }

                &:last-child {
                    margin-bottom: 0;
                }

                &:before {
                    content: '';
                    position: absolute;
                    width: 15px;
                    height: 15px;
                    @include border-radius(50%);
                    border: 5px solid #ffd40d;
                    top: 6px;
                    left: 0;
                }

                .pxl-item--text {
                    font-size: 18px;
                    color: #555555;
                    font-weight: 400;

                    @media (max-width: 1400px) {
                        font-size: 15px;
                    }

                    @media (max-width: 470px) {
                        font-size: 12px;
                    }
                }
            }
        }
    }

    .item-layout1 {
        margin-left: -115px;
        margin-right: -200px;

        @media (max-width: 1280px) {
            margin-right: 0;
        }

        @media (max-width: 991px) {
            margin-left: 0;
        }

        .image-style {
            img {
                @include border-radius(30px);
            }
        }
    }
}

// Contact Form
.pxl-contact-form {
    .btn {
        position: relative;
        text-transform: uppercase;

        &:hover {
            color: #fff;

            &:before {
                transform: scaleY(1);
            }
        }

        &:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: -1;
            height: 100%;
            @include border-radius(5px);
            transition: all 0.3s;
            transform: scaleY(0);
            transform-origin: center;
            background-color: $link_color;
            -webkit-transition: all 220ms linear 0ms;
            -khtml-transition: all 220ms linear 0ms;
            -moz-transition: all 220ms linear 0ms;
            -ms-transition: all 220ms linear 0ms;
            -o-transition: all 220ms linear 0ms;
            transition: all 220ms linear 0ms;
        }
    }

    &.btn-w-full {

        button,
        .wpcf7-submit {
            width: 100%;
        }
    }

    .wpcf7-form-control-wrap {
        display: inline-flex;
        flex-wrap: wrap;
        width: 100%;
        position: relative;
        margin-bottom: 30px;

        .wpcf7-not-valid-tip {
            font-size: 14px;
            background-color: $primary_color;
            color: rgba(255, 255, 255, 0.87);
            padding: 0 6px;
            border-radius: 0px;
            line-height: 22px;
            z-index: 99;
            position: absolute;
            top: -30px;
            right: 0;
            font-weight: 600;

            &:before {
                content: '';
                position: absolute;
                top: 100%;
                border-width: 5px;
                border-color: $primary_color transparent transparent;
                border-style: solid;
                right: 10px;
            }
        }
    }

    .pxl--item>p {
        margin-bottom: 0;
    }

    form {
        position: relative;

        .wpcf7-response-output {
            margin: 30px 0 10px;
            border: none;
            color: $link_color;
            background-color: $primary_color;
            border-radius: 0px;
            font-size: 14px;
            padding: 12px 20px;
            @include box-shadow(0 0 13px rgba(#9a9a9a, 0.13));
        }

        .wpcf7-spinner {
            display: none;
        }

        &:before {
            content: '';
            width: 30px;
            height: 30px;
            @include border-radius(100%);
            border-color: transparent $link_color transparent $link_color;
            border-width: 2px;
            border-style: solid;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            animation: pxl_spin .6s infinite linear;
            -webkit-animation: pxl_spin .6s infinite linear;
            box-sizing: border-box;
            z-index: 2;
            @include transition(all .25s cubic-bezier(.645, .045, .355, 1));
            visibility: hidden;
        }

        &.submitting {
            * {
                opacity: 1;
            }

            &:before {
                opacity: 1;
                visibility: visible;
            }
        }
    }

    .pxl--form-icon {
        position: absolute;
        top: 50%;
        z-index: 1;
        right: 0;
        margin: 0 20px;
        @include transform(translate(0, -50%));
        color: #E1E9F4;
        font-size: 22px;
    }

    .contact2 {
        .col-md-10 {
            margin: 0 auto;
        }

        br {
            display: none;
        }

        p {
            margin-bottom: 0;
        }

        span {
            margin-bottom: 0;
        }

        .wpcf7-list-item-label {
            cursor: pointer;
        }

        .wpcf7-not-valid-tip {
            top: 0px;
            background-color: $link_color;
        }
    }
}

// Search
// Widget Search Icon 
.pxl-search-popup-button,
.pxl-cart-sidebar-button {
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    color: #09013f;
    @include transition(all .25s cubic-bezier(.645, .045, .355, 1));
    cursor: pointer;
    font-size: 15px;
    position: relative;

}

.pxl-search-popup-button {
    &.style-box {
        width: 47px;
        height: 47px;
        line-height: 47px;
        color: $primary_color;
        font-size: 23px;
    }
}

.pxl-widget-searchform .searchform-wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;

    .search-field {
        font-size: 16px;
        color: $link_color;
        width: 196px;
        padding-left: 30px;
        padding-right: 30px;
        border: 1px solid #354e33;
        height: 35px;
        border-radius: 50px;
        @include transition(all 220ms linear 0ms);
    }

    .search-submit {
        width: 36px;
        min-width: 36px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-size: 16px;
        color: $link_color;
        font-weight: normal;
        background-color: transparent;
        position: absolute;
        top: 0;
        left: 20px;
        padding: 0;
    }
}

// Hidden Panel
.pxl-hidden-panel-button {
    &.style-1 {
        width: 45px;
        height: 45px;
        min-width: 45px;
        background-color: $secondary_color;
        border-radius: 45px;
        position: relative;

        .pxl-icon-round {
            width: 16px;
            height: 16px;
            position: absolute;
            @extend .pxl-middle;

            span {
                width: 4px;
                height: 4px;
                background-color: $link_color;
                border-radius: 4px;
                position: absolute;
                @include transition(all 220ms linear 0ms);
            }

            .pxl-icon-round1 {
                top: 0;
                left: 0;
            }

            .pxl-icon-round2 {
                top: 0;
                left: 6px;
            }

            .pxl-icon-round3 {
                top: 0;
                right: 0;
            }

            .pxl-icon-round4 {
                top: 6px;
                left: 0;
            }

            .pxl-icon-round5 {
                top: 6px;
                left: 6px;
            }

            .pxl-icon-round6 {
                top: 6px;
                right: 0;
            }

            .pxl-icon-round7 {
                bottom: 0;
                left: 0;
            }

            .pxl-icon-round8 {
                bottom: 0;
                left: 6px;
            }

            .pxl-icon-round9 {
                bottom: 0;
                right: 0;
            }
        }

        &:hover .pxl-icon-round {

            .pxl-icon-round1,
            .pxl-icon-round4,
            .pxl-icon-round7 {
                transform: translateX(12px);
            }

            .pxl-icon-round3,
            .pxl-icon-round6,
            .pxl-icon-round9 {
                transform: translateX(-12px);
            }
        }
    }
}

// Banner
.pxl-banner1 {
    .pxl-banner-inner {
        display: inline-flex;
        align-items: center;
        z-index: 10;
        position: relative;

        .pxl-item--imgprimary {
            width: 269px;
            height: 269px;
            flex-shrink: 0;
            position: relative;
            display: inline-flex;
            align-items: center;
            @include border-radius(50%);
            justify-content: center;

            &:before {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                opacity: 0.2;
                @include border-radius(50%);
                background-color: #fff;
                z-index: -1;
                animation: loading-img 2.5s ease-in-out infinite;
            }

            &:after {
                content: '';
                position: absolute;
                width: 85%;
                height: 85%;
                top: 50%;
                left: 50%;
                @include border-radius(50%);
                transform: translate(-50%, -50%);
                background-color: $link_color_hover;
                z-index: -1;
            }
        }
    }
}

// Client Review
.pxl-client-review1 {
    .pxl-item--inner>div {
        margin-top: 30px;

        @media #{$max-sm} {
            width: 100%;
            padding: 0;
            justify-content: center;
            text-align: center;
        }
    }

    .pxl-item--images {
        display: flex;
        flex-wrap: wrap;

        .pxl-item--img {
            width: 67px;
            min-width: 67px;
            margin-right: -20px;
            @include transition(all 220ms linear 0ms);

            img {
                border-radius: 67px;
                border: 4px solid #fff;
                @include box-shadow(0 10px 60px rgba(#8997BA, 0.15));
            }

            &:nth-child(1) {
                z-index: 6;
            }

            &:nth-child(2) {
                z-index: 5;
            }

            &:nth-child(3) {
                z-index: 4;
            }

            &:nth-child(4) {
                z-index: 3;
            }

            &:nth-child(5) {
                z-index: 2;
            }

            &:nth-child(6) {
                z-index: 1;
            }

            &:hover {
                z-index: 7;
                transform: scale(1.12);
            }
        }
    }

    .pxl--counter-number {
        line-height: 1;
        font-size: 24px;
        font-weight: 700;
        @extend .ft-theme-default;
        color: $link_color;
        margin-top: 1px;
    }

    .pxl-item--rate {
        @extend .ft-theme-default;
        font-size: 30px;
        font-weight: 700;
        color: #1C2539;
        line-height: 1;
        flex-grow: 1;
        text-align: center;
        padding: 12px 10px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 08) 0%, #{'rgba(var(--primary-color-rgb),0.08)'} 50%, rgba(255, 255, 255, 08) 100%);

        span.text-gradient {
            font-weight: 900;
            font-size: 60px;
            display: inline-flex;
            background-color: transparent;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;

            +span {
                position: relative;
                top: -4px;
            }
        }
    }

    .pxl-item--title {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.15;
        margin-top: -1px;
    }

    .pxl-item--meta {
        flex-grow: 1;
    }

    .pxl-item--inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
}

.pxl-case-carousel1 {
    padding: 67px 50px 68px 60px;
    background-color: $link_color;
    border-radius: 15px;
    color: #fff;

    @media #{$max-lg} {
        padding: 50px 30px;
    }

    .pxl-item--subtitle {
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 2px;
        margin-bottom: 4px;
    }

    .pxl-item--title {
        margin-bottom: 24px;
        font-size: 30px;
        line-height: 1.34;
        color: #fff;

        @media #{$max-lg} {
            font-size: 24px;
        }
    }

    .btn.btn-effect2 {
        font-size: 17px;
        line-height: 56px;
        padding: 0 41px;
        color: #1C2539;
        background-color: $secondary_color;
        margin-top: 36px;

        @media #{$max-lg} {
            padding: 0 38px;
            line-height: 52px;
            font-size: 16px;
        }

        &:before {
            background-color: #fff;
        }

        &:hover {
            color: #fff;
            background-color: $secondary_color;
        }
    }

    .pxl-swiper-dots {
        position: absolute;
        bottom: 65px;
        right: 55px;
        z-index: 99;

        @media #{$max-lg} {
            bottom: 50px;
            right: 30px;
        }

        @media #{$max-sm} {
            position: static;
            margin-top: 30px;
        }

        &.style-3.pxl-swiper-pagination-bullets span {
            background-color: #fff;

            &.swiper-pagination-bullet-active {
                background-color: transparent;
                box-shadow: 0 0 0 4px #fff;
            }
        }
    }
}

@media #{$mm-md-1} {
    .pxl-fullheight--md {

        .elementor-widget-container,
        .elementor-widget-wrap {
            height: 100%;

            >div {
                height: 100%;

                .pxl-video--inner,
                .pxl-video--holder,
                .pxl-video--imagebg {
                    height: 100% !important;
                }
            }
        }
    }
}

body.rtl {
    .pxl-language-switcher1 .current--item img {
        margin-right: 0;
        margin-left: 9px;
    }

    .pxl-language-switcher1 .current--item label::after {
        margin-right: 8px;
        margin-left: 0;
    }

    .pxl-link.style-box i {
        margin-right: 0;
        margin-left: 18px;
    }

    .pxl-link.style-box a::after {
        right: auto;
        left: 27px;
        transform: scaleX(-1);

        @media #{$max-lg} {
            right: auto;
            left: 20px;
        }
    }

    .pxl-contact-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
        right: auto;
        left: 0;

        &:before {
            right: auto;
            left: 10px;
        }
    }

    .pxl-widget-searchform .searchform-wrap .search-field {
        padding-right: 55px;
        padding-left: 15px;
    }

    .pxl-widget-searchform .searchform-wrap .search-submit {
        left: auto;
        right: 20px;
    }

    .pxl-process2 .pxl-item--step {
        left: auto;
        right: -5px;
    }
}

.pxl-cart-sidebar-button {
    &.style-default {
        .icon-item {

            .pxl_cart_counter {
                font-size: 15px;
                width: 25px;
                height: 25px;
                background-color: #ffd40d;
                position: absolute;
                @include border-radius(50%);
                top: -5px;
                right: -12px;
                display: inline-flex;
                align-items: center;
                justify-content: center;

                svg {
                    width: 24px !important;
                    height: 24px !important;
                }
            }

            i {
                font-size: 20px;
            }
        }

        .pxl-sub--total {
            .anchor-cart-total {
                display: none;
            }
        }

        .pxl-icon--cart {
            position: relative;

            .pxl-number--counter {
                position: absolute;
                top: -10px;
                right: -25px;
                border-radius: 50%;
                width: 24px;
                height: 24px;
                background: $primary_color;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-family: "Heebo";
                color: #fff;
            }

        }
    }

    &.style-dark {
        .icon-item {

            .pxl_cart_counter {
                font-size: 15px;
                width: 25px;
                height: 25px;
                background-color: #ffd40d;
                position: absolute;
                @include border-radius(50%);
                top: -5px;
                right: -12px;
                display: inline-flex;
                align-items: center;
                justify-content: center;

                svg {
                    width: 24px !important;
                    height: 24px !important;
                }
            }

            i {
                font-size: 20px;
            }
        }

        .pxl-sub--total {
            .anchor-cart-total {
                display: none;
            }
        }

        .pxl-icon--cart {
            position: relative;

            .pxl-number--counter {
                position: absolute;
                top: -10px;
                right: -25px;
                border-radius: 50%;
                width: 24px;
                height: 24px;
                background: $primary_color;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-family: "Heebo";
                color: #fff;
                border: 1px solid rgba(255, 255, 255, .1);
            }

            svg {
                path {
                    stroke: #fff !important;
                }
            }
        }
    }
}

.main-footer {
    .pxl-text-editor {
        .text-footer {
            border-bottom: 5px solid #ffd40d;
        }

        .text-copy {
            color: $link_color_hover;

            a {
                color: $link_color_hover;
            }
        }
    }

    .layout1 {
        @media (max-width: 767px) {
            width: 47%;
            margin-right: 15px;
        }

        @media (max-width: 575px) {
            width: unset;
            margin-right: 0;
        }
    }

    .layout2 {
        @media (max-width: 767px) {
            width: 50%;
        }

        @media (max-width: 360px) {
            width: unset;
        }
    }

    .layout3 {
        @media (max-width: 767px) {
            width: 50%;
        }

        @media (max-width: 575px) {
            width: unset;
        }
    }

    .layout1-h3 {
        .pxl-mailchimp-l1 {
            .mc4wp-form-fields {
                display: flex;

                @media (max-width: 880px) {
                    display: block;
                }

                .form1 {
                    width: 100%;
                    padding-right: 20px;

                    input {
                        background-color: unset;
                        color: #999999;
                        font-size: 14px;
                        border: 1px solid #616161;
                        padding: 0 25px;
                    }
                }
            }
        }
    }
}

.pxl-mailchimp-l1 {
    .form1 {
        position: relative;

        input {
            color: #616670;
            font-size: 16px;
            height: 55px;
            padding: 0 20px;
            line-height: 55px;
            border: 1px solid #E3E3E3;
            border-radius: 5px;
            background-color: #F2F1EC;

            &:focus {
                border: 1px solid $link_color_hover;
            }
        }

        .submit {
            position: absolute;
            top: 0;
            right: 0;
            width: 56px;
            height: 55px;
            font-size: 16px;
            color: #fff;
            display: flex;
            overflow: hidden;
            align-items: center;
            justify-content: center;
            border-radius: 0px 5px 5px 0px;
            background-color: $link_color_hover;

            &:after {
                content: "";
                background: #fff;
                @include transition(all 0.5s);
                position: absolute;
                height: 120%;
                width: 25px;
                opacity: 0.2;
                left: -50%;
                top: -10%;
                -webkit-transform: rotate(0deg);
                -khtml-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
            }

            &:hover {
                &:after {
                    left: 130%;
                }
            }
        }
    }
}

.pxl-star {
    .pxl-star--inner {
        padding: 25px 35px;
        background-color: #ffd40d;
        @include border-radius(30px);

        .pxl-item--title {
            font-size: 28px;
            line-height: 1.2;
            color: $link_color;

        }

        .pxl-item-star {
            i {
                color: $link_color_hover;
                font-size: 16px;
            }
        }
    }
}

.pxl-sevice-carousel-custom1 {
    .pxl-item--inner {
        text-align: center;
        @include transition(all 0.3s);

        &:hover {
            .pxl-item--icon {
                svg {
                    animation: pxl_in_right 0.5s ease-in-out;
                }

                i {
                    animation: pxl_in_right 0.5s ease-in-out;
                }

                img {
                    animation: pxl_in_right 0.5s ease-in-out;
                }
            }
        }

        .pxl-item--icon {
            width: 152px;
            height: 152px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border: 5px solid #ffd40d;
            @include border-radius(50%);
            position: relative;
            @include transition(all 0.3s);

            &:before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 135px;
                height: 135px;
                z-index: -1;
                background-color: #ffd40d;
                @include border-radius(50%);
                transform: translate(-50%, -50%);
            }

            svg {
                @include transition(all 0.3s);
            }

            i {
                font-size: 60px;
                @include transition(all 0.3s);
            }

            img {
                @include transition(all 0.3s);
            }
        }

        .pxl-item--holder {
            justify-content: center;

            a {
                &:hover {
                    color: $link_color;
                }
            }

            .pxl-item--title {
                font-size: 26px;
                line-height: 1.2;
                margin-top: 30px;

            }

            .pxl-item--desc {
                font-size: 16px;

            }
        }
    }
}

.pxl-gallery-grid1 {
    .pxl-grid-inner {
        margin: -10px;
    }

    .pxl-grid-item {
        padding: 10px;
        height: 100%;
    }
}

.pxl-gallery-layout {
    &.pxl-gallery-1 {
        .item--inner {
            position: relative;
            @include transition(all 0.5s);
            overflow: hidden;

            &:hover {
                a {
                    &:before {
                        opacity: 0.8;
                    }

                    .content-text {
                        opacity: 1;
                    }

                    img {
                        @include transform(scale(1.1));
                    }
                }
            }

            a {
                width: 100%;
                display: block;
                height: 100%;
                z-index: 1;
                position: relative;
                @include transition(all 0.5s);

                &:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: $primary_color;
                    opacity: 0;
                    @include transition(all 0.5s);
                    z-index: 1;
                }

                img {
                    @include transition(all 0.5s);
                }

                .content-text {
                    position: absolute;
                    font-size: 16px;
                    text-align: center;
                    color: $link_color;
                    letter-spacing: .25rem;
                    word-spacing: 0px;

                    z-index: 2;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    opacity: 0;
                    @include transition(all 0.5s);
                    width: 100%;
                }
            }
        }
    }
}

.pxl-contact-form1 {
    z-index: 2;
    position: relative;

    .contact1 {
        p {
            margin-bottom: -10px;
        }

        span {
            margin-bottom: 0;
        }

        .row {
            margin: 0 -20px;

            @media (max-width: 1280px) {
                margin: 0 -15px;
            }
        }

        .col-6 {
            padding: 0 20px;

            @media (max-width: 1280px) {
                padding: 0 15px;
            }

            @media (max-width: 360px) {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        .form {
            input {
                font-size: 16px;
                color: #596a5a;
                opacity: .9;
                height: 45px;
                border: 1px solid rgba(0, 0, 0, 0.25);
                border-radius: 8px;
                padding: 0px 10px;
                font-weight: 400;
            }

            .pxl-placeholder {
                textarea {
                    font-size: 16px;
                    color: #596a5a;
                    opacity: .9;
                    border: none;
                    height: 190px;
                    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
                    padding: 17px 0;
                    border-radius: 8px;
                    font-weight: 400;
                }
            }

            textarea {
                border-radius: 8px;
                color: #596a5a;
                opacity: .9;
            }

            &.pxl-item-message {
                margin-top: 30px;
                margin-bottom: 64px;
            }
        }

        .contact-submit {
            padding-top: 33px;

            input[type="submit"] {
                font-size: 14px;
                background-color: unset;
                line-height: 40px;
                padding: 0px 24px;
                color: #fff;
                background: #354e33;
                text-transform: uppercase;

                &:hover,
                &:active,
                &:focus {
                    color: #fff;
                    box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
                }
            }
        }
    }

    .contact2 {
        position: relative;
        background-color: #e4e5e5;
        padding: 66px 76px 80px 80px;

        @media (max-width: 1200px) {
            padding: 66px 50px 80px 50px;
        }

        @media (max-width: 360px) {
            padding: 50px 15px 50px 15px;
        }

        &:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: url(../img/overlay-img1.jpg);
            background-repeat: no-repeat;
            background-size: cover;
        }

        p {
            margin-bottom: 0;
        }

        span {
            margin-bottom: 0;
        }

        .pxl-item-heading {
            z-index: 1;
            position: relative;
            font-size: 55px;
            color: $link_color;
            line-height: 1.2;
            margin-bottom: 49px;
            letter-spacing: 0.34px;

            @media (max-width: 1024px) {
                font-size: 35px;
                margin-bottom: 20px;
            }

            @media (max-width: 767px) {
                font-size: 25px;
            }
        }

        .form {
            input {
                font-size: 18px;
                border: none;
                border-bottom: 1px solid #9da2a4;
                padding: 0;
                margin-bottom: 17px;
                letter-spacing: 0.5px;
                margin-left: 3px;

                @media (max-width: 1280px) {
                    margin-left: 0;
                }
            }

            textarea {
                font-size: 18px;
                border: none;
                border-bottom: 1px solid #9da2a4;
                padding: 0;
                margin-bottom: 15px;
                height: 50px;
                padding: 11px 0;
                margin-top: 21px;
                letter-spacing: 0.5px;
                margin-left: 3px;

                @media (max-width: 1280px) {
                    margin-left: 0;
                }
            }
        }

        .contact-submit {
            margin-top: 35px;

            @media (max-width: 1024px) {
                margin-top: 20px;
            }

            input[type="submit"] {
                line-height: 52px;
                letter-spacing: 0.5px;
                margin-left: 3px;

                @media (max-width: 1280px) {
                    margin-left: 0;
                }
            }
        }
    }

    .contact3 {
        position: relative;

        .contact-submit {
            position: absolute;
            top: 58%;
            right: 0;
            transform: translateY(-45%);

            .btn-icon {
                background-color: unset;
                font-size: 25px;
                line-height: 1;
                @include transition(all 0.3s);

                &:hover {
                    i {
                        margin-right: 5px;
                    }
                }

                i {
                    @include transition(all 0.3s);
                }
            }
        }

        p {
            margin-bottom: 0;
        }

        span {
            margin-bottom: 0;
        }

        input {
            margin-bottom: 0;
        }

        .pxl-item-email {
            input[type="email"] {
                border: none;
                border-bottom: 1px solid #9da2a4;
                padding: 0;
            }
        }
    }

    .contact4 {
        .wpcf7-not-valid-tip {
            top: 10px;
            color: $link_color;
        }

        p {
            margin-bottom: 0;
        }

        span {
            margin-bottom: 0;
        }

        input {
            margin-bottom: 0;
        }

        .pxl-item-title {
            font-size: 45px;
            color: #233032;
            margin-bottom: 24px;
            line-height: 1;
            letter-spacing: 0.3px;

            @media (max-width: 360px) {
                font-size: 30px;
            }
        }

        .pxl-item-contact {
            padding-left: 3px;
        }

        .pxl-item-text {
            font-size: 18px;
            color: #263037;
            margin-bottom: 23px;
            padding-left: 3px;
            letter-spacing: 0.43px;
            max-width: 95%;
        }

        .form {
            padding-bottom: 10px;

            input {
                font-size: 18px;
                color: #737d81;
                border: none;
                height: 60px;
                border-bottom: 1px solid #bbbbbb;
                padding: 0;
                letter-spacing: 0.5px;
            }

            textarea {
                font-size: 18px;
                color: #737d81;
                border: none;
                height: 60px;
                border-bottom: 1px solid #bbbbbb;
                padding: 17px 0;
                letter-spacing: 0.5px;
            }

            &.pxl-item-message {
                margin-top: 27px;
                margin-bottom: 30px;
            }
        }

        .contact-submit {
            input[type="submit"] {
                font-size: 18px;
                background-color: unset;
                border: 1px solid #233032;
                line-height: 50px;
                padding: 0 40px;
                color: #233032;
                font-weight: 500;
                letter-spacing: 0.3px;

                &:hover,
                &:active,
                &:focus {
                    color: #fff;
                    background-color: #233032;
                }
            }
        }
    }

    .contact5 {
        position: relative;

        .wpcf7-not-valid-tip {
            color: $link_color;
            top: -10px;
        }

        .contact-submit {
            position: absolute;
            top: 52%;
            right: 0;
            transform: translateY(-45%);

            .btn-icon {
                background-color: unset;
                font-size: 27px;
                line-height: 1;
                @include transition(all 0.3s);

                &:hover {
                    i {
                        margin-right: 5px;
                    }
                }

                i {
                    color: #bdbfc0;
                    @include transition(all 0.3s);
                }
            }
        }

        p {
            margin-bottom: 0;
        }

        span {
            margin-bottom: 0;
        }

        input {
            margin-bottom: 0;
        }

        .pxl-item-email {
            input[type="email"] {
                font-size: 16px;
                border: none;
                border-bottom: 1px solid #4b5456;
                padding: 0;
                color: #4b5456;
                letter-spacing: 0.35px;
            }
        }
    }
}

.pxl-client-carousel1 {
    .pxl-swiper-wrapper {
        align-items: center;
    }

    .pxl-item--inner {
        .pxl-item--image {
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: unset;
            }
        }
    }
}

.pxl-client-carousel2 {
    .pxl-swiper-container {
        margin: 0 -20px;
    }

    .pxl-swiper-slide {
        padding: 0 20px;

        &:after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            width: 1px;
            height: 125%;
            background-color: #b1bec2;
            transform: translateY(-50%);
        }

        &:last-child {
            border-right: none;

            &:after {
                display: none;
            }
        }
    }

    .pxl-swiper-wrapper {
        align-items: center;
    }

    .pxl-item--inner {
        padding: 47px 0px;

        .pxl-item--image {
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: unset;
            }
        }
    }
}

.about-layout1 {
    @media (max-width: 767px) {
        width: 50%;
    }

    @media (max-width: 570px) {
        width: 100%;
    }
}

// Menu Food
.pxl-menu-food1 {
    .pxl-item--inner {
        position: relative;
        margin-bottom: 50px;
        padding-top: 50px;
        padding-right: 100px;

        @media (max-width: 991px) {
            padding: 30px 0px;
            padding-right: 50px;
        }

        @media (max-width: 800px) {
            display: block;
            padding: 30px;
        }

        &:after {
            content: '';
            width: 74%;
            height: 100%;
            background-color: #f5f8fd;
            position: absolute;
            z-index: -1;
            right: 0;
            top: 0;
            border-radius: 30px;

            @media (max-width: 800px) {
                width: 100%;
            }
        }
    }

    .pxl-item--image {
        @media (max-width: 1024px) {
            margin-right: 0;
        }
    }

    .pxl-item--holder {
        width: 55%;

        @media (max-width: 800px) {
            width: 100%;
        }
    }

    .item-content {
        width: 45%;

        @media (max-width: 800px) {
            width: 100%;
        }

        .pxl-item--title {
            font-size: 40px;
            margin-bottom: 22px;

            @media (max-width: 480px) {
                font-size: 30px;
            }
        }

        .pxl-item--meta {
            border-bottom: 2px dashed $link_color;
            margin-bottom: 12px;
            padding-bottom: 18px;
            position: relative;

            &:hover {
                .pxl-item--describe {
                    opacity: 1;
                }
            }

            &:last-child {
                border-bottom: none;
                margin-bottom: 0;
                padding-bottom: 0;
            }

            .item-name {
                display: inline-flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                margin-bottom: 2px;

                .pxl-item--text {
                    font-size: 22px;

                    margin-bottom: 0;

                    @media (max-width: 1024px) {
                        font-size: 20px;
                    }

                    @media (max-width: 360px) {
                        font-size: 18px;
                    }
                }

                .pxl-item--price {
                    color: $link_color_hover;
                    font-size: 22px;

                    margin-bottom: 0;

                    @media (max-width: 1024px) {
                        font-size: 20px;
                    }

                    @media (max-width: 360px) {
                        font-size: 18px;
                    }
                }
            }

            .pxl-item--description {
                color: #555555;
                font-size: 16px;

                @media (max-width: 360px) {
                    font-size: 15px;
                }
            }

            .pxl-item--describe {
                position: absolute;
                top: 0;
                left: 0;
                opacity: 0;
                visibility: hidden;
                z-index: -1;
                font-size: 30px;
                color: #000;
                line-height: 1;
                width: 400px !important;
                height: auto !important;
                background-color: #ffd40d;
                padding: 25px;
                border-left: 10px solid $link_color_hover;
                @include border-radius(20px);
                box-shadow: 0 15px 30px -10px rgba(0, 0, 0, .09);
                -webkit-transition: opacity .3s, visibility .3s;
                -khtml-transition: opacity .3s, visibility .3s;
                -moz-transition: opacity .3s, visibility .3s;
                -ms-transition: opacity .3s, visibility .3s;
                -o-transition: opacity .3s, visibility .3s;
                transition: opacity .3s, visibility .3s;

                @media (max-width: 480px) {
                    width: 300px !important;
                    font-size: 25px;
                    display: none;
                }

                &.active {
                    z-index: 99999999;
                    opacity: 1;
                    visibility: visible;
                }

                .text-describe {
                    font-size: 16px;
                    font-family: "Rajdhani", sans-serif;
                }
            }
        }
    }
}

// Menu Food List
.pxl-menu-food-list1 {
    padding: 50px 40px;
    @include border-radius(30px);
    box-shadow: 0px 0px 50px -13px rgba(0, 0, 0, 0.2);
    @include transition(all 0.3s);
    position: relative;

    @media (max-width: 360px) {
        padding: 40px 20px;
    }

    &:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: -1;
        transform: scaleY(0);
        @include border-radius(30px);
        background-color: #0f0f0f;
        @include transition(all 0.3s);
    }

    &:hover {
        &:before {
            opacity: 1;
            transform: scaleY(1);
        }

        .pxl-item--title {
            color: #fff;
        }

        .item-name {
            .pxl-item--text {
                color: #fff;
            }
        }

        .pxl-item--description {
            color: #b3b3b3;
        }

        .pxl--item {
            border-color: #373737;
        }
    }

    .pxl-item--title {
        font-size: 30px;
        color: $link_color;

        position: relative;
        margin-bottom: 20px;
        @include transition(all 0.3s);

        &:before {
            content: '';
            position: absolute;
            height: 5px;
            width: 50px;
            left: 0;
            bottom: 0;
            background-color: #ffd40d;
            @include border-radius(30px);
        }
    }

    .item-name {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 10px;

        .pxl-item--text {
            font-size: 20px;
            color: $link_color;
            margin-bottom: 0;

            @include transition(all 0.3s);
        }

        .item-price {
            font-size: 20px;
            color: $link_color_hover;

        }
    }

    .pxl-item--description {
        font-size: 14px;
        font-size: 400;
        color: #555555;
        @include transition(all 0.3s);

    }

    .pxl--item {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #dedede;
        @include transition(all 0.3s);
        position: relative;

        .pxl-item--meta {
            @include transition(all 0.3s);

            &:hover {
                .pxl-item--describe {
                    opacity: 1;
                }
            }
        }

        &:last-child {
            padding-bottom: 0;
            margin-bottom: 0;
            border-bottom: none;
        }

        .pxl-item--describe {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            visibility: hidden;
            z-index: 1;
            font-size: 30px;
            color: #000;
            line-height: 1;
            width: 400px !important;
            height: auto !important;
            background-color: #ffd40d;
            padding: 25px;
            border-left: 10px solid $link_color_hover;
            @include border-radius(20px);
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, .09);
            -webkit-transition: opacity .3s, visibility .3s;
            -khtml-transition: opacity .3s, visibility .3s;
            -moz-transition: opacity .3s, visibility .3s;
            -ms-transition: opacity .3s, visibility .3s;
            -o-transition: opacity .3s, visibility .3s;
            transition: opacity .3s, visibility .3s;

            @media (max-width: 480px) {
                width: 300px !important;
                font-size: 25px;
                display: none;
            }

            &.active {
                z-index: 99999999;
                opacity: 1;
                visibility: visible;
            }

            .text-describe {
                font-size: 16px;
                font-family: "Rajdhani", sans-serif;
            }
        }
    }
}

// Shop carousel
.pxl-shop-carousel1 {
    .pxl-swiper-dots {
        &.style-1 {
            margin-top: 50px;
            justify-content: center;
        }
    }

    .pxl-item--inner {
        @include transition(all 0.3s);

        &:hover {
            .pxl-item--image {
                &:before {
                    animation: left-to-right 1s ease none;
                }
            }
        }

        .pxl-item--holder {
            text-align: center;
        }

        .pxl-item--image {
            @include border-radius(100px);
            overflow: hidden;
            position: relative;
            @include transition(all 0.3s);

            &:before {
                position: absolute;
                top: 0;
                left: -85%;
                display: block;
                content: '';
                width: 50%;
                height: 100%;
                background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, .3) 100%);
                background: linear-gradient(to right, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, .3) 100%);
                -webkit-transform: skewX(-25deg);
                transform: skewX(-25deg);
            }

            &:after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 95%;
                height: 95%;
                border: 3px solid #fff;
                @include border-radius(100px);
                transform: translate(-50%, -50%);
            }
        }

        .pxl-item-meta {
            margin-top: 15px;
        }

        .pxl-item--title {
            font-size: 24px;
            color: $link_color;
            font-family: "Rajdhani", sans-serif;
            margin-bottom: 2px;
        }

        .pxl-item--desc {
            font-size: 15px;
            color: $link_color_hover;
            font-family: "Rajdhani", sans-serif;
        }
    }
}

.pxl-shop-carousel2 {
    .pxl-swiper-dots {
        &.style-1 {
            align-items: center;
            justify-content: center;
            margin-top: 70px;

            @media (max-width: 991px) {
                margin-top: 40px;
            }
        }
    }

    .pxl-item--inner {
        border: 5px solid #ffd40d;
        @include border-radius(30px);
        padding: 35px;
        padding-top: 15px;
        @include transition(all 0.3s);
        position: relative;
        overflow: hidden;

        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            @include border-radius(0 0 30% 30%);
            @include transition(all 0.3s);
            background-color: $link_color_hover;
        }

        &:hover {
            background-color: #fffbf1;

            &:before {
                height: 50%;
            }

            .pxl-item--holder {
                .pxl-item--image {
                    &:before {
                        width: 0;
                    }

                    .inner-image {
                        &:before {
                            top: -10px;
                            transform: scale(1);
                        }

                        &:after {
                            top: -10px;
                            transform: scale(1);
                        }
                    }
                }
            }
        }

        .pxl-item--holder {
            position: relative;

            .pxl-item--sale {
                font-size: 18px;

                color: $link_color;
                width: 70px;
                height: 70px;
                position: absolute;
                @include border-radius(50%);
                top: -5px;
                left: -25px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #ffd40d;
                z-index: 1;

                &.style-default {
                    display: none;
                }

                &.style-box1 {
                    display: flex;
                }
            }

            .pxl-item--image {
                position: relative;

                &:before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 100%;
                    height: 50%;
                    transform: translate(-50%, -50%);
                    @include border-radius(100px);
                    @include transition(all 0.3s);
                    background-color: $link_color_hover;
                }

                .inner-image {
                    position: relative;

                    &:before {
                        position: absolute;
                        content: url(../img/shape18.png);
                        left: 40px;
                        top: -20px;
                        transform: scale(0);
                        -webkit-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                    &:after {
                        position: absolute;
                        content: url(../img/shape19.png);
                        right: 40px;
                        top: -20px;
                        transform: scale(0);
                        -webkit-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }
                }
            }

            .pxl-item-meta {
                .pxl-star--icon {
                    line-height: 1;

                    i {
                        line-height: 1;
                        color: $gradient_color_to;
                    }
                }

                .pxl-item--title {
                    font-size: 20px;

                    color: $link_color;
                    margin-top: 6px;
                    margin-bottom: 2px;
                }

                .item-price {
                    display: inline-flex;
                    align-items: center;

                    .pxl-item--desc {
                        font-size: 28px;

                        color: #555555;
                        margin-right: 15px;

                        span {
                            color: $link_color_hover;
                        }
                    }

                    .pxl-price-sale {
                        font-size: 18px;

                        color: #555555;
                    }
                }
            }

            .pxl-button {
                position: absolute;
                width: 50px;
                height: 50px;
                right: -10px;
                bottom: -20px;

                a {
                    background-color: #ffd40d;
                    display: flex;
                    border-radius: 7px;
                    width: 100%;
                    height: 100%;
                    align-items: center;
                    justify-content: center;
                }
            }
        }
    }
}

.pxl-shop-carousel3 {
    z-index: 1;

    .pxl-swiper-dots {
        &.style-1 {
            align-items: center;
            justify-content: center;
            margin-top: 70px;

            @media (max-width: 991px) {
                margin-top: 40px;
            }
        }
    }

    .pxl-item--inner {
        position: relative;
        padding: 0px 10px;
        margin-bottom: 20px;
        @include transition(all 0.3s);

        &:hover {
            .pxl-item--image {
                img {
                    transform: scale(0.9);
                }
            }
        }

        &:before {
            content: '';
            position: absolute;
            background-color: #fff;
            @include border-radius(30px);
            bottom: 0;
            left: 0;
            width: 100%;
            height: 70%;
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        }

        .pxl-item--image {
            position: relative;

            &:before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                @include border-radius(100px);
                width: 100%;
                height: 50%;
                background-color: $link_color_hover;
            }

            img {
                z-index: 1;
                position: relative;
                @include transition(all 0.3s);
            }
        }

        .pxl-item-meta {
            position: relative;
            padding: 25px;
            padding-top: 0;

            @media (max-width: 600px) {
                padding: 15px;
            }

            .pxl-sub-title {
                font-size: 16px;

                color: #555;
                margin-bottom: 5px;
            }

            .pxl-item--title {
                font-size: 24px;

                color: $link_color;
                margin-bottom: 15px;

                @media (max-width: 1400px) {
                    font-size: 20px;
                }
            }

            .item-price {
                display: inline-flex;
                align-items: first baseline;

                .pxl-item--desc {
                    font-size: 30px;

                    color: $link_color_hover;
                    margin-right: 10px;

                    @media (max-width: 600px) {
                        font-size: 25px;
                    }
                }

                .pxl-price-sale {
                    font-size: 20px;

                    color: #555;

                    @media (max-width: 600px) {
                        font-size: 18px;
                    }
                }
            }

            .pxl-star--icon {
                line-height: 1;

                i {
                    line-height: 1;
                    color: $gradient_color_to;
                }
            }

            .pxl-button {
                position: absolute;
                width: 50px;
                height: 50px;
                right: 10px;
                bottom: 10px;

                a {
                    background-color: #ffd40d;
                    display: flex;
                    border-radius: 7px;
                    width: 100%;
                    height: 100%;
                    align-items: center;
                    justify-content: center;
                }
            }
        }
    }
}

//End

//Product carousel
.pxl-product-carousel {
    .pxl-carousel-inner {
        position: relative;

        .pxl-product-header {
            background-color: #E1EBE2;

            &:hover {
                .list-menu-woocommerce {
                    scale: 1;
                    transition: all .5s;
                }
            }

            .list-menu-woocommerce {
                display: flex;
                justify-content: center;
                margin-top: -30px;
                scale: 0;
                transition: all .5s;

                .woocommerce-add-to--cart {
                    width: 38px;
                    height: 38px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
                    background: #fff;
                    margin: 0 2px;
                    position: relative;

                    &:before {
                        content: url('../img/shopping-cart.svg');
                        width: 100%;
                        height: 100%;
                        top: 0;
                        position: absolute;
                        scale: 1;
                        margin-top: 5px;

                    }

                    a {
                        color: $primary_color;
                        padding: 0;
                        background: unset;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 0;
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        top: 0;
                    }

                    .added_to_cart {
                        position: absolute;
                        color: rgba(0, 0, 0, 0);
                    }

                }

                .woocommerce--quickview {
                    width: 38px;
                    height: 38px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
                    background: #fff;
                    margin: 0 2px;

                    span {
                        color: $primary_color;
                        font-size: 18px;
                        background: #fff;
                    }
                }

                .woocommerce--heart {
                    width: 38px;
                    height: 38px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
                    background: #fff;
                    color: $primary_color;
                    margin: 0 2px;

                    span {
                        color: $primary_color;
                        font-size: 18px;
                        background: #fff;

                    }
                }
            }
        }

        .pxl-title {
            margin-left: 14px;
            margin-top: 4px;
        }

        .woocommerce-product-content {
            margin-top: 20px;
        }
    }

    .pxl-swiper-wrapper {
        .pxl-item--inner {
            text-align: center;

            .pxl-product-header {
                padding: 24px;
            }
        }
    }

    .pxl-swiper-arrow-wrap {
        margin: 0;
        position: absolute;
        top: 0;
        right: 0;

        .pxl-swiper-arrow {
            background: unset;
            color: #000;
        }
    }
}

//End

//Product custom

//End

//Add To Cart
.pxl-add-to-cart {
    &.pxl-add-to-cart1 {
        .pxl-add-to-cart-inner {
            .pxl-item--inner {
                @media (max-width: 880px) {
                    text-align: center;
                }
            }

            .sub-title {
                color: $link_color;

                text-transform: uppercase;
                font-size: 18px;
                letter-spacing: 2px;
                margin-bottom: 20px;

                span {
                    background-color: #ffd40d;
                    -webkit-border-radius: 30px;
                    -khtml-border-radius: 30px;
                    -moz-border-radius: 30px;
                    -ms-border-radius: 30px;
                    -o-border-radius: 30px;
                    border-radius: 30px;
                    padding: 5px 15px;
                    padding-top: 7px;
                }
            }

            .pxl-item--title {
                font-size: 40px;
                color: $link_color;

                margin-bottom: 20px;
            }

            .item-list {
                display: flex;
                align-items: center;
                margin-bottom: 30px;

                @media (max-width: 1024px) {
                    margin-bottom: 10px;
                }

                @media (max-width: 880px) {
                    justify-content: center;
                    text-align: left;
                }

                @media (max-width: 480px) {
                    display: grid;
                }

                .list-content {
                    margin-bottom: 0;

                    &.list1 {
                        margin-right: 60px;

                        @media (max-width: 1280px) {
                            margin-right: 30px;
                        }

                        @media (max-width: 991px) {
                            margin-right: 20px;
                        }
                    }

                    li {
                        list-style: none;
                        font-family: "Rajdhani", Sans-serif;
                        font-size: 16px;
                        color: #555555;
                        margin-bottom: 15px;

                        @media (max-width: 1000px) {
                            font-size: 14px;
                        }

                        @media (max-width: 480px) {
                            font-size: 15px;
                        }

                        &:last-child {
                            margin-bottom: 0;
                        }
                    }

                    i {
                        color: #ADDB31;
                        padding-right: 10px;
                    }
                }
            }

            .item-price {
                margin-bottom: 15px;
            }

            .pxl-price-sale {
                display: inline-flex;
                align-items: baseline;

                .woocommerce-Price-amount {
                    font-size: 40px;

                    color: $link_color;

                    @media (max-width: 1024px) {
                        font-size: 35px;
                    }

                    @media (max-width: 600px) {
                        font-size: 30px;
                    }

                    span {
                        color: $link_color_hover;
                    }
                }

                ins {
                    background-color: unset;

                    .woocommerce-Price-amount {
                        font-size: 40px;

                        color: $link_color;

                        @media (max-width: 1024px) {
                            font-size: 35px;
                        }

                        @media (max-width: 600px) {
                            font-size: 30px;
                        }

                        span {
                            color: $link_color_hover;
                        }
                    }
                }

                del {
                    .woocommerce-Price-amount {
                        font-size: 26px;

                        color: #555555;
                        margin-right: 10px;

                        @media (max-width: 1024px) {
                            font-size: 24px;
                        }

                        @media (max-width: 600px) {
                            font-size: 20px;
                        }

                        span {
                            color: #555555;
                        }
                    }
                }
            }

            .pxl-item--btn {
                @media (max-width: 360px) {
                    display: inline-grid;
                }

                .added_to_cart {
                    font-size: 16px;

                    color: #fff;
                    padding: 0 32px;
                    line-height: 60px;
                    -webkit-border-radius: 12px;
                    -khtml-border-radius: 12px;
                    -moz-border-radius: 12px;
                    -ms-border-radius: 12px;
                    -o-border-radius: 12px;
                    border-radius: 12px;
                    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
                    -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
                    -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
                    -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
                    -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
                    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
                    position: relative;
                    display: inline-block;
                    cursor: pointer;
                    border: none;
                    background-color: $link_color_hover;
                    height: auto;
                    text-align: center;
                    justify-content: center;
                    margin-left: 30px;

                    @media (max-width: 360px) {
                        margin-left: 0px;
                        margin-top: 30px;
                    }

                    &:hover {
                        color: $link_color;
                        background-color: #ffd40d;

                        &:after {
                            width: 30%;
                            border-color: #ffd40d;
                        }

                        &:active {
                            &:after {
                                width: 30%;
                                border-color: #ffd40d;
                            }
                        }
                    }

                    &:after {
                        content: "";
                        position: absolute;
                        width: 95%;
                        right: -7px;
                        border: 3px solid $link_color_hover;
                        height: 72px;
                        -webkit-border-radius: 12px;
                        -khtml-border-radius: 12px;
                        -moz-border-radius: 12px;
                        -ms-border-radius: 12px;
                        -o-border-radius: 12px;
                        border-radius: 12px;
                        top: -6px;
                        z-index: -2;
                        -webkit-transition: all 220ms linear 0ms;
                        -khtml-transition: all 220ms linear 0ms;
                        -moz-transition: all 220ms linear 0ms;
                        -ms-transition: all 220ms linear 0ms;
                        -o-transition: all 220ms linear 0ms;
                        transition: all 220ms linear 0ms;
                    }
                }

                .button {
                    position: relative;

                    &:hover {
                        &:after {
                            width: 30%;
                            border-color: #ffd40d;
                        }
                    }

                    &:active {
                        &:after {
                            width: 30%;
                            border-color: #ffd40d;
                        }
                    }

                    &:after {
                        content: "";
                        position: absolute;
                        width: 95%;
                        right: -7px;
                        border: 3px solid $link_color_hover;
                        height: 72px;
                        -webkit-border-radius: 12px;
                        -khtml-border-radius: 12px;
                        -moz-border-radius: 12px;
                        -ms-border-radius: 12px;
                        -o-border-radius: 12px;
                        border-radius: 12px;
                        top: -6px;
                        z-index: -2;
                        -webkit-transition: all 220ms linear 0ms;
                        -khtml-transition: all 220ms linear 0ms;
                        -moz-transition: all 220ms linear 0ms;
                        -ms-transition: all 220ms linear 0ms;
                        -o-transition: all 220ms linear 0ms;
                        transition: all 220ms linear 0ms;
                    }
                }
            }
        }
    }
}

//End

.pxl-text-editor {
    .text-price {
        font-size: 40px;

        color: $link_color;

        .price {
            color: $link_color_hover;
        }

        .sale {
            font-size: 26px;

            color: #555555;
        }
    }
}

.menu-02 {
    .layout1 {
        @media (max-width: 767px) {
            width: 50% !important;
        }

        @media (max-width: 735px) {
            width: 100% !important;
        }
    }

    .layout2 {
        @media (max-width: 767px) {
            width: 50% !important;
        }

        @media (max-width: 480px) {
            width: 100% !important;
        }
    }
}

.slide1 {
    max-height: 710px;
    overflow: hidden;

    @media (max-width: 767px) {
        max-height: 550px
    }

    @media (max-width: 676px) {
        max-height: 470px
    }

    @media (max-width: 480px) {
        max-height: 400px
    }

    .btn-video {
        @media (max-width: 767px) {
            width: 45px !important;
            height: 45px !important;
            line-height: 40px !important;
            font-size: 12px !important;
        }
    }

    .slide-title {
        @media (max-width: 480px) {
            font-size: 25px !important;
            line-height: 30px !important;
        }
    }

    .layout-custom1 {
        @media (max-width: 575px) {
            width: 320px !important;
        }
    }

    .slide-text {
        @media (max-width: 767px) {
            font-size: 14px !important;
            line-height: 20px !important;
        }
    }

    .slide-text2 {
        @media (max-width: 767px) {
            font-size: 14px !important;
            line-height: 20px !important;
        }
    }

    .revslider-initialised {
        max-height: 710px !important;

        @media (max-width: 767px) {
            max-height: 550px !important;
        }

        @media (max-width: 767px) {
            max-height: 470px !important;
        }

        @media (max-width: 480px) {
            max-height: 400px !important;
        }

        .slide-dot {
            .tp-bullet {
                @include border-radius(50%);
                @include transition(all 0.3s);
                background-color: #fff !important;

                &.selected {
                    background-color: unset !important;
                    border: 5px solid #ffd40d;
                }

                &:hover {
                    background-color: unset !important;
                    border: 5px solid #ffd40d;
                }
            }
        }
    }

    .text-slide1 {
        h1 {
            font-size: 135px;
            text-transform: capitalize;
            color: #ffd40d;
            line-height: 185px !important;
            margin-top: -25px;
            margin-bottom: 0 !important;

            @media (max-width: 1199px) {
                font-size: 120px;
            }

            @media (max-width: 767px) {
                font-size: 80px;
                line-height: 130px !important;
            }

            @media (max-width: 480px) {
                font-size: 50px;
                line-height: 100px !important;
            }
        }
    }

    .slide-layout2 {
        display: inline-flex;
        align-items: center;

        .button-slide {
            font-size: 18px !important;
            color: #fff;
            padding: 15px 30px !important;
            line-height: 60px;
            border-radius: 12px;
            position: relative;
            cursor: pointer;
            border: none;
            background-color: $link_color_hover;
            height: auto;
            display: inline-flex;
            align-items: center;
            text-align: center;
            justify-content: center;

            @media (max-width: 1100px) {
                font-size: 14px !important;
                padding: 15px 25px !important;
            }

            @media (max-width: 575px) {
                padding: 16px 20px !important;
            }

            @media (max-width: 480px) {
                margin: 10px 0;
                margin-right: 10px;
            }

            &:hover {
                &:after {
                    width: 30%;
                }
            }

            &:after {
                content: "";
                position: absolute;
                width: 95%;
                right: -7px;
                border: 3px solid $link_color_hover;
                height: 124%;
                border-radius: 12px;
                top: -6px;
                z-index: -2;
                transition: all 220ms linear 0ms;

                @media (max-width: 1100px) {
                    height: 127%;
                }
            }
        }
    }
}

.slide2 {
    .layout-slide2 {
        @media (max-width: 575px) {
            width: 300px !important;
        }
    }

    .text-slide1 {
        @media (max-width: 1024px) {
            font-size: 20px !important;
            line-height: 25px !important;
        }

        h1 {
            font-size: 80px;
            text-transform: capitalize;
            color: #ffd40d;
            margin-bottom: 0 !important;
            line-height: 1.2 !important;

            @media (max-width: 1100px) {
                font-size: 60px;
            }

            @media (max-width: 800px) {
                font-size: 45px;
            }

            @media (max-width: 600px) {
                font-size: 35px;
            }
        }
    }

    .title-slide1 {
        @media (max-width: 1024px) {
            font-size: 18px !important;
            line-height: 25px !important;
        }

        @media (max-width: 767px) {
            font-size: 16px !important;
            line-height: 25px !important;
        }
    }

    .rating-slide {
        @media (max-width: 767px) {
            width: 80px !important;
            height: 11px !important;
        }
    }

    .button-slide {
        font-size: 18px !important;
        color: #fff;
        padding: 15px 30px !important;
        line-height: 60px;
        border-radius: 12px;
        position: relative;
        cursor: pointer;
        border: none;
        background-color: $link_color_hover;
        height: auto;
        display: inline-flex;
        align-items: center;
        text-align: center;
        justify-content: center;

        @media (max-width: 1100px) {
            font-size: 14px !important;
            padding: 15px 25px !important;
        }

        @media (max-width: 575px) {
            padding: 15px !important;
        }

        @media (max-width: 480px) {
            margin: 10px 0;
            margin-right: 10px;
        }

        &:hover {
            &:after {
                width: 30%;
            }
        }

        &:after {
            content: "";
            position: absolute;
            width: 95%;
            right: -7px;
            border: 3px solid $link_color_hover;
            height: 124%;
            border-radius: 12px;
            top: -6px;
            z-index: -2;
            transition: all 220ms linear 0ms;

            @media (max-width: 1100px) {
                height: 127%;
            }
        }
    }

    .slide-layout2 {
        display: flex;
        align-items: center;
    }

    .slide-dot {
        .tp-bullet {
            @include border-radius(50%);
            @include transition(all 0.3s);
            background-color: #fff !important;

            &.selected {
                background-color: unset !important;
                border: 5px solid $link_color_hover;
            }

            &:hover {
                background-color: unset !important;
                border: 5px solid $link_color_hover;
            }
        }
    }

    .tparrows {
        width: 60px !important;
        height: 60px !important;
        @include border-radius(50%);
        background: transparent;
        border: 1px solid #fff;
        display: flex;
        align-items: center;
        @include transition(all 0.3s);

        @media (max-width: 360px) {
            display: none;
        }

        &.tp-leftarrow {
            justify-content: end;

            &:before {
                content: '\f177' !important;
                font-family: "Font Awesome 5 Pro";
                font-size: 35px;
                margin-right: -10px;
                @include transition(all 0.3s);
            }

            &:hover {
                justify-content: center;

                &:before {
                    margin-right: 0;
                }
            }
        }

        &.tp-rightarrow {
            &:before {
                content: '\f178' !important;
                font-family: "Font Awesome 5 Pro";
                font-size: 35px;
                margin-left: -10px;
                @include transition(all 0.3s);
            }

            &:hover {
                justify-content: center;

                &:before {
                    margin-left: 0;
                }
            }
        }
    }
}

// Widget instagram
//--------------------------------------------------
.pxl-instagram1 {
    &.style-default {
        .pxl-instagram-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;

            .pxl--item {
                width: 27%;
                position: relative;
                margin: 10px;
                background-color: $link_color_hover;
                @include transition(all 0.3s);
                border-radius: 12px;
                overflow: hidden;

                @media (max-width: 1300px) {
                    width: 42%;
                }

                @media (max-width: 1100px) {
                    width: 40%;
                }

                @media (max-width: 991px) {
                    width: 31%;
                }

                @media (max-width: 952px) {
                    width: 47%;
                }

                @media (max-width: 762px) {
                    width: 45%;
                }

                @media (max-width: 495px) {
                    width: 100%;
                }

                img {
                    width: 100%;
                    @include transition(all 0.3s);
                }

                a {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 99;
                    color: #fff;
                    opacity: 0;
                    font-size: 30px;
                    visibility: hidden;

                    i {
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        @include transform(translate(-50%, -50%));
                        @include transition(all 0.3s);
                    }
                }

                &:hover {
                    img {
                        opacity: 0.3;
                    }

                    a {
                        opacity: 1;
                        visibility: visible;
                    }
                }
            }
        }
    }
}

.pxl-instagram-carousel1 {
    .pxl-carousel-inner {
        .pxl-item--inner {
            overflow: hidden;
            background-color: $link_color_hover;
            @include transition(all 0.3s);

            &:hover {
                img {
                    opacity: 0.3;
                }

                i {
                    opacity: 1;
                    left: 50%;
                }
            }

            img {
                width: 100%;
                @include transition(all 0.3s);
            }

            i {
                font-size: 50px;
                color: #fff;
                position: absolute;
                top: 50%;
                left: 40%;
                opacity: 0;
                @include transform(translate(-50%, -50%));
                @include transition(all 0.3s);
            }
        }
    }
}

.servicer-layou1 {
    max-width: 880px;
    margin: 0 auto;
}

.layout-meta {
    @media (max-width: 767px) {
        width: 50%;
    }

    @media (max-width: 440px) {
        width: 100%;
    }
}

.layout-meta2 {
    @media (max-width: 767px) {
        width: 50%;
    }

    @media (max-width: 550px) {
        width: 100%;
    }
}

.service-layout {
    @media (max-width: 767px) {
        width: 33.333%;
    }

    @media (max-width: 575px) {
        width: 100%;
    }
}

.bg-home2-custom {
    .pxl-image-single {
        opacity: 0.2;
    }
}

.service01 {
    .style-box1 {
        .pxl-item--icon {
            display: none !important;
        }
    }
}

.pxl-star-box {
    .pxl-star-box--inner {
        .inner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 3px solid #ffd40d;
            border-radius: 30px;
            padding: 18px 25px;
            position: relative;
            background-color: rgba(0, 0, 0, 0.8);

            .pxl-item--image {
                img {
                    animation: rotate360 20s infinite linear;
                }
            }

            .inner-meta {
                margin-right: 55px;

                .pxl-item--text {
                    font-size: 14px;

                    background-color: $link_color_hover;
                    font-weight: 600;
                    color: #fff;
                    padding: 3px 10px;
                    text-align: center;
                    border-radius: 5px;
                    padding-bottom: 0px;
                    position: absolute;
                    top: -15px;
                    right: 38px;
                }

                .pxl-item--pice {
                    font-size: 28px;

                    color: #fff;
                    line-height: 1;
                    margin-bottom: 5px;

                    span {
                        color: $link_color_hover;
                    }
                }

                .pxl-item--title {
                    font-size: 22px;

                    color: #fff;

                    a {
                        font-size: 22px;

                        color: #fff;

                        &:hover {
                            color: $link_color_hover;
                        }
                    }
                }

                .pxl-item-star {
                    i {
                        font-size: 15px;
                        color: #ffd40d;
                        margin-bottom: 5px;
                    }
                }
            }
        }
    }
}

.menu-home2 {
    &:hover {
        position: relative;
        z-index: 5;
    }
}

//Layout-custom
.pxl-col-layout {
    position: relative !important;
    z-index: 10;

    &:before {
        content: '';
        position: absolute;
        width: 10000px;
        height: 100%;
        right: 0;
        top: 0;
        background-color: #EF4824;
        z-index: -1;
    }
}

//Post-list
.hover {
    img {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.pxl-blog-list {
    &.layout1 {
        .pxl-grid-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;

            &:last-child {
                margin-bottom: 0;
            }

            &:hover {
                .pxl-item--image {
                    .bg-image {
                        img {
                            -webkit-transform: translateX(75px);
                            transform: translateX(75px);
                        }
                    }
                }
            }

            .pxl-item--image {
                margin-right: 20px;

                @media (max-width: 360px) {
                    margin-right: 15px;
                }

                .bg-image {
                    min-width: 80px;
                    min-height: 80px;
                    overflow: hidden;
                    display: block;
                    position: relative;
                    @include border-radius(5px);

                    img {
                        height: 100%;
                        position: absolute;
                        right: 0;
                        width: auto;
                        max-width: unset;
                        -webkit-transition: all 1s ease-out;
                        transition: all 1s ease-out;

                    }
                }
            }

            .pxl-item--meta {
                .pxl-item--date {
                    color: $link_color;

                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    margin-bottom: 10px;
                    display: inline-flex;
                    align-items: center;

                    i {
                        font-size: 12px;
                        color: $link_color_hover;
                        margin-right: 5px;
                    }
                }

                .pxl-item--title {
                    color: $link_color;

                    font-size: 18px;
                    font-style: normal;
                    font-weight: 700;
                    margin-bottom: 0;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    -webkit-line-clamp: 2;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                }
            }
        }
    }
}

//Pxl Meta List
.pxl-meta-list {
    &.style-default {
        .pxl--item {
            margin-bottom: 10px;

            &:last-child {
                margin-bottom: 0;
            }
        }

        .pxl-item--text {

            font-size: 16px;
            font-weight: 400;
            color: $secondary_color;
            position: relative;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 1;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            padding-left: 17px;

            &:before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translate(0, -50%);
                width: 6px;
                height: 6px;
                @include border-radius(50%);
                background-color: $link_color_hover;
            }
        }
    }
}

//Pxl Download
.pxl-download {
    .pxl-item--inner {
        background-color: $link_color_hover;
        overflow: hidden;
        @include border-radius(10px);
        background-image: url(../img/group-img.png);
        background-repeat: no-repeat;
        padding: 40px;
        padding-top: 45px;
        padding-bottom: 30px;
        background-size: cover;

        .pxl-item--title {

            font-size: 18px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .pxl-link-text {
            margin-bottom: 0;

            li {
                list-style: none;
                margin-bottom: 3px;

                &:last-child {
                    margin-bottom: 0;
                }
            }

            .text {

                font-size: 16px;
                color: #fff;
                font-weight: 400;

                a {

                    font-size: 16px;
                    color: #fff;
                    font-weight: 400;
                    position: relative;
                    display: inline-flex;
                    align-items: center;
                    @include transition(all 0.3s);

                    &:hover {
                        color: $link_color;

                        .pxl-item--icon {
                            i {
                                color: $link_color;
                            }

                            svg {
                                fill: $link_color;
                            }
                        }
                    }

                    .pxl-item--icon {
                        height: 20px;
                        display: inline-flex;

                        i {
                            color: #fff;
                            font-size: 15px;
                            line-height: 1;
                            @include transition(all 0.3s);
                        }

                        svg {
                            width: 25px;
                            height: 20px;
                            min-width: 25px;
                            fill: #fff;
                            @include transition(all 0.3s);
                        }
                    }
                }
            }
        }
    }
}

//Pxl Meta
.pxl-meta {
    &.pxl-meta1 {
        .pxl-item {
            margin-bottom: 23px;

            &:last-child {
                margin-bottom: 0;
            }

            .pxl-item--text {
                font-size: 18px;
                color: $link_color;
            }

            .pxl-sub-title {
                font-size: 18px;
                color: #475355;
            }
        }
    }

    &.pxl-meta2 {
        .pxl-item {
            margin-bottom: 30px;

            @media (max-width: 1024px) {
                margin-bottom: 20px;
            }

            &:last-child {
                margin-bottom: 0;
            }

            .pxl-item--text {
                font-size: 24px;
                color: $link_color;
                position: relative;
                padding-left: 37px;
                line-height: 1.3;
                margin-bottom: 17px;

                @media (max-width: 1024px) {
                    font-size: 20px;
                }

                &:before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    left: 0;
                    width: 25px;
                    height: 25px;
                    min-width: 25px;
                    background-image: url(../img/icon-meta.png);
                    background-repeat: no-repeat;
                }
            }

        }
    }

    &.pxl-meta3 {
        .pxl-meta-inner {
            text-align: center;

            .pxl-item--title {
                font-size: 300px;
                white-space: nowrap;
                line-height: 0;
                color: transparent;
                text-transform: uppercase;
                -webkit-text-stroke: 1px #8ca1a9;
                text-stroke: 1px #8ca1a9;
                font-weight: bold;
                display: flex;
                align-items: center;
                letter-spacing: -1px;
            }
        }
    }

    &.pxl-meta4 {
        .pxl-meta-inner {
            padding: 93px 110px 100px 117px;
            background-color: rgba(18, 26, 29, 0.95);

            @media (max-width: 1280px) {
                padding: 93px 50px 100px 50px;
            }

            @media (max-width: 360px) {
                padding: 50px 15px 50px 15px;
            }

            .pxl-item--title {
                font-size: 45px;
                color: $primary_color;
                line-height: 1.2;
                letter-spacing: 0.35px;
                margin-bottom: 30px;

                @media (max-width: 360px) {
                    margin-bottom: 20px;
                }
            }

            .pxl-item--desc {
                font-size: 20px;
                color: #868f91;
                line-height: 1.4;
                margin-left: 3px;
                letter-spacing: 0.13px;
                margin-bottom: 45px;

                @media (max-width: 360px) {
                    margin-bottom: 30px;
                    margin-left: 0px;
                }
            }

            .pxl-item-button {
                padding-left: 3px;

                @media (max-width: 360px) {
                    margin-left: 0px;
                }

                .btn-shape-primary {
                    font-size: 18px;
                    color: $primary_color;
                    font-weight: 500;
                    line-height: 52px;
                    @include border-radius(100px);
                    padding: 0 40px;
                    background-color: #2f3639;
                    letter-spacing: 0.3px;

                    &:hover {
                        color: #2f3639;
                        background-color: $primary_color;
                    }
                }
            }
        }
    }
}

//Pxl Author Custom
.pxl-author {
    &.pxl-author1 {
        .pxl-author-inner {
            display: flex;
            align-items: center;

            .pxl-item--imgprimary {
                width: 75px;
                height: 75px;
                max-width: 75px;
                @include border-radius(5px);
                overflow: hidden;
            }

            .content-inner {
                .title {

                    font-size: 18px;
                    color: $link_color;
                    font-weight: 700;
                    margin-bottom: 7px;
                }

                .sub-title {

                    font-size: 16px;
                    color: $secondary_color;
                    font-weight: 400;
                }
            }
        }
    }
}

//Pxl Banner Box
.pxl-banner-box {
    &.pxl-banner-box1 {
        .pxl-box-inner {
            .pxl-item--meta {
                position: relative;
                text-align: center;

                .pxl-item--imgprimary {
                    display: inline-flex;
                    position: relative;

                    &:before {
                        content: '';
                        position: absolute;
                        width: 100%;
                        height: 85%;
                        bottom: 0;
                        left: 0;
                        z-index: -1;
                        background-color: #ab6a3f;
                    }
                }

                .content-inner {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 100%;
                    transform: translate(-50%, -50%);

                    .title {
                        font-size: 72px;
                        letter-spacing: .2em;
                        color: $primary_color;
                        line-height: 1.2;
                        margin-bottom: 0;

                        @media (max-width: 880px) {
                            font-size: 65px;
                        }

                        @media (max-width: 767px) {
                            font-size: 45px;
                        }
                    }
                }
            }
        }
    }
}

//pxl-slide
.pxl-slide {
    .pxl-carousel-inner {
        position: relative;

        .pxl-swiper-arrow-wrap {
            position: absolute;
            top: 47%;
            margin: 0;
            width: 100%;
            justify-content: space-between;

            @media (max-width: 991px) {
                position: relative;
                margin-top: 30px;
            }

            .pxl-swiper-arrow {
                @include border-radius(10px);
                background-color: rgba(0, 0, 0, 0.3);
                color: $primary_color;
                font-size: 20px;

                &:hover {
                    background-color: $link_color;
                }
            }
        }
    }
}

//Pxl Pie Chart
.pxl-piechart {
    .item--value {
        position: relative;

        .pxl-percent {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 16px;
            color: $link_color;
        }

    }

    .item--title {
        text-align: center;
        font-size: 20px;
        color: $link_color;
        font-weight: 700;
    }
}

//pxl-project-carousel
.pxl-project-carousel {
    &.pxl-project-carousel1 {
        .pxl-swiper-arrow-wrap {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
            justify-content: end;
            position: absolute;
            width: 100%;
            left: 50%;
            transform: translate(-50%);
            z-index: 99;
            top: -125px;

            @media (max-width: 767px) {
                position: unset;
                justify-content: left;
                transform: unset;
                padding: 0;
                margin-bottom: 30px;
            }

            .pxl-swiper-arrow {
                @include border-radius(5px);
                color: $link_color;
                position: relative;
                background-color: unset;
                z-index: 1;
                overflow: hidden;
                @include transition(all 0.3s);

                &:hover {
                    color: #fff;
                    background-color: unset;

                    &:before {
                        opacity: 1;
                    }
                }

                &:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: $link_color_hover;
                    opacity: 0.1;
                    z-index: -1;
                    @include transition(all 0.3s);
                }
            }
        }

        .pxl-item--inner {
            position: relative;
            @include border-radius(5px);
            text-align: center;
            overflow: hidden;
            @include transition(all 0.3s);

            &:hover {
                .pxl-item--image {
                    img {
                        transform: scale(1.07);
                    }

                    &:after {
                        top: 130%;
                    }
                }

                .bg-linear-gradient {
                    opacity: 0;
                    transform: scaleY(0);
                }

                .pxl-holder {
                    opacity: 0;
                }
            }

            .pxl-item--image {
                position: relative;
                @include transition(all 0.3s);

                img {
                    transform: scale(1);
                    @include transition(all 0.3s);
                }

                &:after {
                    content: "";
                    background: #fff;
                    @include transition(all 0.5s);
                    position: absolute;
                    width: 120%;
                    height: 25px;
                    opacity: 0.2;
                    top: -35%;
                    left: -10%;
                    -webkit-transform: rotate(0deg);
                    -khtml-transform: rotate(0deg);
                    -moz-transform: rotate(0deg);
                    -ms-transform: rotate(0deg);
                    -o-transform: rotate(0deg);
                    transform: rotate(0deg);
                }
            }

            .pxl-holder {
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                padding: 30px 15px;
                @include transition(all 0.5s);

                .pxl-item--title {

                    font-size: 24px;
                    color: #fff;
                    font-weight: 700;
                    margin-bottom: 8px;
                }

                .pxl-sub-title {

                    font-size: 16px;
                    color: #fff;
                    font-weight: 400;
                }
            }

            .bg-linear-gradient {
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 100%;
                transform-origin: bottom;
                transform: scaleY(1);
                @include transition(all 0.5s);
                background: linear-gradient(180deg, rgba(239, 72, 36, 0.00) 39.06%, $link_color_hover 100%);
            }
        }
    }

    &.pxl-project-carousel2 {
        .pxl-swiper-arrow-wrap {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
            justify-content: end;
            position: absolute;
            width: 100%;
            left: 50%;
            transform: translate(-50%);
            z-index: 99;
            top: -125px;

            @media (max-width: 767px) {
                position: unset;
                justify-content: left;
                transform: unset;
                padding: 0;
                margin-bottom: 30px;
            }

            .pxl-swiper-arrow {
                @include border-radius(5px);
                color: $link_color;
                position: relative;
                background-color: unset;
                z-index: 1;
                overflow: hidden;
                @include transition(all 0.3s);

                &:hover {
                    color: #fff;
                    background-color: unset;

                    &:before {
                        opacity: 1;
                    }
                }

                &:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: $link_color_hover;
                    opacity: 0.1;
                    z-index: -1;
                    @include transition(all 0.3s);
                }
            }
        }

        .pxl-item--inner {
            text-align: center;
            @include transition(all 0.3s);

            &:hover {
                .pxl-link {
                    &:before {
                        transform: scaleX(1);
                    }

                    .pxl-icon {
                        opacity: 1;
                    }
                }
            }

            .pxl-link {
                position: relative;
                @include border-radius(5px);
                overflow: hidden;

                &:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(180deg, #010D4C 0%, rgba(1, 13, 76, 0.12) 0.01%, #01124C 100%);
                    mix-blend-mode: multiply;
                    transform-origin: center;
                    transform: scaleX(0);
                    @include transition(all 0.3s);
                }

                .pxl-icon {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    opacity: 0;
                    @include transition(all 0.3s);

                    .pxl-icon-inner {
                        width: 65px;
                        height: 65px;
                        @include border-radius(50%);
                        background-color: $link_color_hover;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        z-index: 1;

                        &:hover {
                            i {
                                transform: rotate(0deg);
                            }
                        }

                        i {
                            font-size: 35px;
                            color: #fff;
                            transform: rotate(-40deg);
                            margin: 0;
                            @include transition(all 0.3s);
                        }
                    }
                }
            }

            .pxl-holder {
                padding-top: 20px;

                .pxl-item--title {

                    font-size: 24px;
                    color: $link_color;
                    font-weight: 700;
                    margin-bottom: 5px;

                    &:hover {
                        color: $link_color_hover;
                    }
                }

                .pxl-sub-title {

                    font-size: 16px;
                    color: $secondary_color;
                    font-weight: 400;
                }
            }
        }
    }

    &.pxl-project-carousel3 {
        .pxl-item--inner {
            margin-bottom: 55px;
            @include transition(all 0.3s);

            &:hover {
                .pxl-item--holder {
                    .bg-linear-gradient {
                        bottom: -50px;
                        opacity: 1;
                    }
                }

                .pxl-item--image {
                    &:before {
                        opacity: 0.5;
                    }
                }
            }

            .pxl-item--image {
                overflow: hidden;
                @include border-radius(5px);
                position: relative;
                @include transition(all 0.3s);

                &:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: $link_color;
                    opacity: 0;
                    @include transition(all 0.3s);
                }
            }

            .pxl-item--holder {
                position: relative;

                .bg-linear-gradient {
                    padding: 0 23px;
                    position: absolute;
                    bottom: 30px;
                    left: 0;
                    width: 100%;
                    opacity: 0;
                    @include transition(all 0.4s);

                    @media (max-width: 676px) {
                        padding: 0 15px;
                    }

                    .pxl-holder {
                        @include border-radius(5px);
                        background-color: $link_color_hover;
                        text-align: center;
                        padding: 30px 10px;

                        @media (max-width: 676px) {
                            padding: 20px 10px;
                        }

                        .pxl-item--title {

                            font-size: 24px;
                            color: #fff;
                            font-weight: 700;
                            line-height: 1;
                            margin-bottom: 12px;

                            @media (max-width: 676px) {
                                margin-bottom: 5px;
                                font-size: 20px;
                            }
                        }

                        .pxl-sub-title {

                            font-size: 16px;
                            color: #fff;
                            font-weight: 400;

                            @media (max-width: 676px) {
                                font-size: 15px;
                            }
                        }
                    }
                }
            }
        }
    }

    &.pxl-project-carousel4 {
        .pxl-item--inner {
            position: relative;
            @include transition(all 0.3s);

            &:hover {
                .pxl-holder-hover {
                    .pxl-holder {
                        &.default {
                            opacity: 0;
                            @include transform(scaleY(0));
                        }

                        &.active {
                            @include transform(scaleY(1));
                            opacity: 1;
                        }
                    }
                }
            }

            .pxl-item--image {
                @include border-radius(5px);
                overflow: hidden;
            }

            .pxl-item--holder {
                padding-right: 70px;

                @media (max-width: 1024px) {
                    padding-right: 40px;
                }

                @media (max-width: 480px) {
                    padding-right: 0;
                }
            }

            .pxl-holder-hover {
                position: relative;
                margin-left: 100px;
                margin-top: -65px;

                @media (max-width: 1024px) {
                    margin-left: 50px;
                }

                @media (max-width: 480px) {
                    margin-left: 0;
                }

                @media (max-width: 360px) {
                    margin-top: -15px;
                }

                .pxl-holder {
                    @include border-radius(5px);
                    background-color: #fff;
                    padding: 18px 40px;
                    padding-bottom: 25px;
                    transform-origin: bottom;
                    box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);

                    @media (max-width: 360px) {
                        padding: 18px 20px;
                    }

                    &.default {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        @include transform(scaleY(1));
                        @include transition(all 0.3s);
                        opacity: 1;
                    }

                    &.active {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        @include transform(scaleY(0));
                        @include transition(all 0.3s);
                        opacity: 0;
                        padding-right: 50px;

                        @media (max-width: 360px) {
                            padding-right: 20px;
                        }

                        .pxl-icon {
                            position: absolute;
                            top: -35px;
                            right: 40px;

                            @media (max-width: 360px) {
                                right: 20px;
                            }
                        }

                        .pxl-icon-text {
                            margin-top: 10px;

                            .pxl-icon-inner-text {

                                font-size: 16px;
                                color: $link_color_hover;
                                font-weight: 700;
                                display: flex;
                                align-items: center;
                                letter-spacing: 1.28px;
                                text-transform: uppercase;
                            }
                        }
                    }

                    .pxl-item--title {

                        font-size: 24px;
                        color: $link_color;
                        font-weight: 700;

                        @media (max-width: 360px) {
                            font-size: 20px;
                        }
                    }

                    .pxl-sub-title {

                        font-size: 16px;
                        color: $secondary_color;
                        font-weight: 400;
                    }

                    .pxl-icon {
                        .pxl-icon-inner {
                            width: 67px;
                            height: 67px;
                            background-color: $link_color_hover;
                            @include border-radius(50%);
                            display: flex;
                            color: #fff;
                            align-items: center;
                            justify-content: center;
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }

    &.pxl-project-carousel5 {
        .pxl-item--inner {
            margin-bottom: 15px;
            @include transition(all 0.3s);

            &:hover {
                .pxl-item--image {
                    a {
                        &:after {
                            top: 130%;
                        }
                    }
                }
            }

            .pxl-item--image {
                padding: 0 27px;
                @include transition(all 0.3s);

                a {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    display: block;
                    @include transition(all 0.3s);
                    overflow: hidden;

                    &:after {
                        content: "";
                        background: #fff;
                        @include transition(all 0.5s);
                        position: absolute;
                        width: 120%;
                        height: 25px;
                        opacity: 0.2;
                        top: -35%;
                        left: -10%;
                        @include transform(rotate(0deg));
                    }
                }

                img {
                    @include border-radius(5px);
                }
            }

            .pxl-holder {
                margin-top: -75px;
                padding: 20px 27px;
                padding-top: 95px;
                @include border-radius(5px);
                background-color: #fff;
                box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);
                display: flex;
                align-items: center;
                justify-content: space-between;

                .pxl-item--title {

                    font-size: 24px;
                    color: $link_color;
                    font-weight: 700;
                    line-height: 1;
                    @include transition(all 0.3s);

                    @media (max-width: 676px) {
                        font-size: 20px;
                    }

                    &:hover {
                        color: $link_color_hover;
                    }
                }

                .pxl-sub-title {

                    font-size: 16px;
                    color: #616670;
                    font-weight: 400;
                }

                .pxl-icon-inner {
                    color: #fff;
                    font-size: 24px;
                    width: 60px;
                    height: 60px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    @include border-radius(5px);
                    background-color: $link_color_hover;
                    @include transition(all 0.3s);

                    @media (max-width: 676px) {
                        width: 45px;
                        height: 45px;
                        font-size: 15px;
                    }

                    i {
                        transform: rotate(0deg);
                        @include transition(all 0.3s);
                    }

                    &:hover {
                        i {
                            transform: rotate(90deg);
                        }
                    }
                }
            }
        }
    }

    &.pxl-project-carousel6 {
        .pxl-swiper-arrow-wrap {
            max-width: 1320px;
            margin: 0 auto;
            justify-content: end;
            position: absolute;
            width: 100%;
            left: 50%;
            transform: translate(-50%);
            z-index: 99;
            top: -120px;

            @media (max-width: 1366px) {
                padding: 0 15px;
            }

            @media (max-width: 767px) {
                position: unset;
                justify-content: left;
                transform: unset;
                padding: 0;
                margin-bottom: 30px;
            }

            .pxl-swiper-arrow {
                @include border-radius(5px);
                color: #fff;
                position: relative;
                background-color: unset;
                z-index: 1;
                overflow: hidden;
                @include transition(all 0.3s);
                margin: 0;
                margin-right: 10px;
                width: 60px;
                height: 60px;
                line-height: 60px;
                font-size: 16px;

                &:last-child {
                    margin-right: 0;
                }

                &:hover {
                    color: #fff;
                    background-color: unset;

                    &:before {
                        opacity: 1;
                    }
                }

                &:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: $link_color_hover;
                    opacity: 0.5;
                    z-index: -1;
                    @include transition(all 0.3s);
                }
            }
        }

        .pxl-item--inner {
            padding-bottom: 40px;
            @include transition(all 0.3s);

            &:hover {
                .pxl-item--holder {
                    .bg-linear-gradient {
                        bottom: -30px;
                        opacity: 1;
                    }
                }
            }

            .pxl-item--holder {
                position: relative;
                @include transition(all 0.3s);

                .pxl-item--image {
                    @include border-radius(5px);
                    overflow: hidden;
                }

                .bg-linear-gradient {
                    position: absolute;
                    width: 100%;
                    left: 0;
                    bottom: -200px;
                    padding-left: 35px;
                    opacity: 0;
                    @include transition(all 0.3s);

                    @media (max-width: 767px) {
                        padding-left: 15px;
                    }

                    .pxl-holder {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        background-color: #fff;
                        padding: 20px 30px;
                        @include border-radius(5px 0px 5px 5px);
                    }

                    .pxl-item--title {

                        font-size: 24px;
                        color: $link_color;
                        font-weight: 700;
                        line-height: 1;

                        @media (max-width: 767px) {
                            font-size: 20px;
                        }

                        &:hover {
                            color: $link_color_hover;
                        }
                    }

                    .pxl-sub-title {

                        font-size: 16px;
                        color: $secondary_color;
                        font-weight: 400;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        -webkit-line-clamp: 1;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                    }

                    .pxl-icon-inner {
                        width: 60px;
                        height: 60px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        @include border-radius(5px);
                        background-color: $link_color_hover;
                        color: #fff;
                        font-size: 20px;

                        @media (max-width: 767px) {
                            margin-left: 10px;
                            width: 50px;
                            height: 50px;
                        }
                    }
                }
            }
        }
    }
}

//icon box custom
.service-icon {
    .pxl-icon-box2 {
        .pxl-item--inner {
            .pxl-item-wrap {
                .pxl-item--icon {
                    min-width: 60px;
                }
            }
        }
    }
}

//pxl-movies-carousel
.pxl-movies-carousel {
    .btn-video {
        display: unset;
        line-height: unset;
        text-align: unset;
        color: unset;
        font-size: unset;
        min-width: unset;
        width: unset;
        height: unset;
    }
}

.pxl-movies-carousel1 {
    text-align: center;

    .pxl-swiper-dots {
        &.style-1 {
            background-color: #fff;
        }
    }

    .pxl-item--inner {
        position: relative;
        overflow: hidden;
        @include transition(all 0.4s);

        &:hover {
            .pxl-item--image {
                &:after {
                    top: 130%;
                }

                img {
                    transform: rotate(-5deg) scale(1.1);
                }
            }
        }

        .pxl-item--image {
            position: relative;
            overflow: hidden;

            &:after {
                content: "";
                background-color: #fff;
                @include transition(all 0.5s);
                position: absolute;
                width: 120%;
                height: 25px;
                opacity: 0.2;
                top: -35%;
                left: -10%;
                @include transform(rotate(0deg));
            }

            img {
                transform: scale(1);
                @include transition(all 0.4s);
            }
        }

        .pxl-item--content {
            display: inline-flex;
            align-items: center;
            position: absolute;
            top: 30px;
            right: 35px;

            .pxl-item--imdb-title {

                font-size: 14px;
                color: #fff;
                background-color: $link_color_hover;
                font-weight: 400;
                padding: 5px 15px;
                margin-right: 25px;
            }

            .pxl-item--play-title {

                font-size: 14px;
                color: #fff;
                font-weight: 400;
                padding: 5px 15px;
                background-color: $link_color_hover;
                display: flex;
                align-items: center;

                &:hover {
                    span {
                        background-color: #fff;
                    }
                }

                span {
                    width: 20px;
                    min-width: 20px;
                    height: 20px;
                    line-height: 19px;
                    @include border-radius(50%);
                    background-color: $link_color;
                    text-align: center;
                    margin-left: 10px;
                    @include transition(all 0.3s);
                }

                i {
                    font-size: 8px;
                    margin-left: 2px;
                    color: $link_color_hover;
                }
            }
        }
    }
}

.pxl-movies-carousel2 {
    text-align: center;

    .pxl-swiper-dots {
        &.style-1 {
            background-color: #fff;
        }
    }

    .pxl-item--inner {
        &:hover {
            .pxl-thumbnail {
                &:after {
                    top: 130%;
                }

                img {
                    transform: rotate(-5deg) scale(1.1);
                }
            }
        }

        .pxl-item--image {
            margin-top: -125px;
            padding: 0px 20px;
        }

        .pxl-thumbnail {
            position: relative;
            overflow: hidden;

            &:after {
                content: "";
                background-color: #fff;
                @include transition(all 0.5s);
                position: absolute;
                width: 120%;
                height: 25px;
                opacity: 0.2;
                top: -35%;
                left: -10%;
                @include transform(rotate(0deg));
            }

            img {
                transform: scale(1);
                @include transition(all 0.4s);
            }
        }

        .pxl-item--content {
            background-color: $link_color;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 35px;
            padding-bottom: 150px;

            .pxl-item--imdb-title {

                font-size: 18px;
                color: #fff;
                background-color: $link_color_hover;
                font-weight: 400;
                padding: 5px 15px;
                margin-right: 20px;
            }

            .pxl-item--play-title {

                font-size: 18px;
                color: #fff;
                font-weight: 700;
                display: flex;
                align-items: center;
                margin-right: 20px;

                &:hover {
                    color: $link_color_hover;
                }

                span {
                    width: 20px;
                    min-width: 20px;
                    height: 20px;
                    line-height: 18px;
                    @include border-radius(50%);
                    background-color: #fff;
                    text-align: center;
                    margin-left: 10px;
                    @include transition(all 0.3s);
                }

                i {
                    font-size: 8px;
                    margin-left: 2px;
                    color: $link_color_hover;
                }
            }

            .pxl-item-download {
                line-height: 1;

                &:hover {
                    svg {
                        fill: $link_color_hover;
                    }
                }

                svg {
                    fill: #fff;
                    @include transition(all 0.3s);
                }
            }
        }
    }
}

.pxl-movies-carousel3 {
    .pxl-item--inner {
        @include transition(all 0.3s);

        &:hover {
            .pxl-item--content {
                bottom: 20px;
            }

            .pxl-item-meta {
                &:after {
                    bottom: 130%;
                }
            }
        }

        .pxl-item-meta {
            position: relative;
            overflow: hidden;

            &:after {
                content: "";
                background-color: #fff;
                @include transition(all 0.5s);
                position: absolute;
                width: 120%;
                height: 25px;
                opacity: 0.2;
                bottom: -35%;
                left: -10%;
                -webkit-transform: rotate(0deg);
                -khtml-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
            }

            .pxl-image-link {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }
        }

        .pxl-item--content {
            @include transition(all 0.3s);
            text-align: center;
            position: absolute;
            bottom: -30%;
            left: 50%;
            width: 100%;
            transform: translate(-50%, 0);
            z-index: 1;

            .item-star {
                display: flex;
                align-items: center;
                justify-content: center;

                i {
                    color: #FCEE21;
                }
            }

            .pxl-item--play-title {

                font-size: 16px;
                color: #fff;
                font-weight: 700;
                letter-spacing: 1.28px;
                text-transform: uppercase;
                display: inline-flex;
                padding: 5px 30px;
                padding-top: 6px;
                justify-content: center;
                align-items: center;
                gap: 10px;
                flex-shrink: 0;
                background-color: $link_color_hover;
                @include border-radius(5px);
                position: relative;
                overflow: hidden;
                z-index: 1;

                &:after {
                    content: "";
                    background: #fff;
                    @include transition(all 0.8s);
                    position: absolute;
                    height: 120%;
                    width: 25px;
                    opacity: 0.2;
                    left: -35%;
                    top: -10%;
                    -webkit-transform: rotate(0deg);
                    -khtml-transform: rotate(0deg);
                    -moz-transform: rotate(0deg);
                    -ms-transform: rotate(0deg);
                    -o-transform: rotate(0deg);
                    transform: rotate(0deg);
                }

                &:hover {
                    &:after {
                        left: 130%;
                    }
                }
            }
        }

        .pxl-content-title {
            @include border-radius(0px 0px 5px 5px);
            background-color: #fff;
            padding: 10px 20px;
            padding-top: 25px;

            .pxl-title {

                font-size: 24px;
                color: $link_color;
                font-weight: 700;
                line-height: 1;
                margin-bottom: 5px;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 1;
                display: -webkit-box;
                -webkit-box-orient: vertical;
            }

            .pxl-sub-title {

                font-size: 18px;
                color: $link_color;
                font-weight: 700;
            }
        }
    }
}

.pxl-movies-carousel4 {
    .pxl-swiper-arrow-wrap {
        max-width: 1320px;
        margin: 0 auto;
        justify-content: end;
        position: absolute;
        width: 100%;
        left: 50%;
        transform: translate(-50%);
        z-index: 99;
        top: -110px;

        @media (max-width: 767px) {
            position: unset;
            justify-content: left;
            transform: unset;
            padding: 0;
            margin-bottom: 30px;
            padding: 0px;
        }

        .pxl-swiper-arrow {
            @include border-radius(5px);
            color: #fff;
            position: relative;
            background-color: unset;
            z-index: 1;
            overflow: hidden;
            @include transition(all 0.3s);

            &:hover {
                color: #fff;
                background-color: unset;

                &:before {
                    opacity: 1;
                }
            }

            &:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: $link_color_hover;
                opacity: 0.1;
                z-index: -1;
                @include transition(all 0.3s);
            }
        }
    }

    .pxl-item--inner {
        @include transition(all 0.4s);

        &:hover {
            .pxl-item--image {
                &:after {
                    top: 130%;
                }

                img {
                    transform: rotate(-5deg) scale(1.1);
                }
            }
        }

        .pxl-item--image {
            position: relative;
            overflow: hidden;

            &:after {
                content: "";
                background-color: #fff;
                @include transition(all 0.5s);
                position: absolute;
                width: 120%;
                height: 25px;
                opacity: 0.2;
                top: -35%;
                left: -10%;
                @include transform(rotate(0deg));
            }

            img {
                transform: scale(1);
                @include transition(all 0.4s);
            }
        }

        .pxl-item-meta {
            position: relative;

            .pxl-item--imdb-title {

                font-size: 14px;
                color: #fff;
                background-color: $link_color_hover;
                font-weight: 400;
                padding: 5px 15px;
                @include border-radius(5px);
                position: absolute;
                top: 10px;
                left: 10px;
            }
        }

        .pxl-content-title {
            @include border-radius(0px 0px 5px 5px);
            background-color: #262626;
            text-align: center;
            padding: 20px 0;

            .pxl-title {

                font-size: 24px;
                color: #fff;
                font-weight: 700;
                line-height: 1;
                margin-bottom: 2px;
            }

            .pxl-sub-title {

                font-size: 14px;
                color: #fff;
                font-weight: 400;
            }
        }
    }
}

.pxl-movies-carousel5 {
    text-align: center;

    .pxl-swiper-dots {
        &.style-1 {
            background-color: #fff;
            margin-top: 75px;

            @media (max-width: 360px) {
                margin-top: 30px;
            }
        }
    }

    .pxl-item--inner {
        text-align: center;
        @include transition(all 0.4s);

        &:hover {
            .pxl-item-meta {
                .pxl-item--image {
                    &:after {
                        top: 130%;
                    }

                    img {
                        transform: rotate(-5deg) scale(1.1);
                    }
                }
            }
        }

        .pxl-item-meta {
            position: relative;

            .pxl-item--image {
                @include border-radius(5px);
                overflow: hidden;
                position: relative;

                &:after {
                    content: "";
                    background-color: #fff;
                    @include transition(all 0.5s);
                    position: absolute;
                    width: 120%;
                    height: 25px;
                    opacity: 0.2;
                    top: -35%;
                    left: -10%;
                    @include transform(rotate(0deg));
                }

                img {
                    transform: scale(1);
                    @include transition(all 0.4s);
                }
            }

            .pxl-item--imdb-title {

                font-size: 14px;
                color: #fff;
                background-color: $link_color_hover;
                font-weight: 700;
                padding: 5px 15px;
                @include border-radius(5px);
                position: absolute;
                top: 30px;
                left: 30px;
            }
        }

        .pxl-content-title {
            padding-top: 20px;
        }

        .pxl-title {

            font-size: 18px;
            color: $link_color;
            font-weight: 700;
        }
    }
}

.pxl-movies-carousel6 {
    .pxl-swiper-arrow-wrap {
        max-width: 1320px;
        margin: 0 auto;
        justify-content: end;
        position: absolute;
        width: 100%;
        left: 50%;
        transform: translate(-50%);
        z-index: 99;
        top: -110px;

        @media (max-width: 767px) {
            position: unset;
            justify-content: left;
            transform: unset;
            padding: 0;
            margin-bottom: 30px;
        }

        .pxl-swiper-arrow {
            @include border-radius(5px);
            color: #fff;
            position: relative;
            background-color: unset;
            z-index: 1;
            overflow: hidden;
            @include transition(all 0.3s);
            margin: 0;
            margin-right: 10px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 16px;

            &:last-child {
                margin-right: 0;
            }

            &:hover {
                color: #fff;
                background-color: unset;

                &:before {
                    opacity: 1;
                }
            }

            &:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: $link_color_hover;
                opacity: 0.1;
                z-index: -1;
                @include transition(all 0.3s);
            }
        }
    }

    .pxl-item--inner {
        @include border-radius(5px);
        overflow: hidden;
        @include transition(all 0.3s);

        &:hover {
            .pxl-item-meta {
                &:before {
                    transform: scaleY(0);
                }

                &:after {
                    top: 130%;
                }
            }
        }

        .pxl-item-meta {
            position: relative;
            overflow: hidden;
            @include transition(all 0.3s);

            .pxl-item--imdb-title {
                position: absolute;
                color: #E3E3E3;
                left: 0;
                bottom: 0;
                width: 100%;

                font-size: 24px;
                font-style: normal;
                font-weight: 700;
                text-align: center;
                margin-bottom: 3px;
                z-index: 1;
            }

            &:before {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                transform: scaleY(1);
                transform-origin: bottom;
                @include transition(all 0.3s);
                background: linear-gradient(180deg, rgba(225, 211, 208, 0.00) 0%, rgba(239, 72, 36, 0.66) 100%);
            }

            &:after {
                content: "";
                background: #fff;
                @include transition(all 0.5s);
                position: absolute;
                width: 120%;
                height: 25px;
                opacity: 0.2;
                top: -35%;
                left: -10%;
                @include transform(rotate(0deg));
            }
        }

        .pxl-content-title {
            background-color: #fff;
            padding: 14px 20px;
            padding-top: 21px;

            .pxl-title {

                font-size: 18px;
                color: $link_color;
                font-weight: 700;
                line-height: 1;
                margin-bottom: 7px;
            }

            .pxl-sub-title {

                font-size: 14px;
                color: $link_color;
                font-weight: 400;
            }
        }
    }
}

//pxl-pie-chart
.pxl-pie-chart1 {
    position: relative;
    text-align: center;
    overflow: hidden;
    background-color: $link_color;
    @include border-radius(5px);
    padding: 35px 63px;
    padding-bottom: 28px;
    z-index: 1;

    .pxl-animation {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 85%;
        height: 85%;
        transform: translate(-50%, -50%);
        overflow: hidden;
        @include border-radius(5px);

        &:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 99%;
            height: 99%;
            z-index: -1;
            transform: translate(-50%, -50%);
            @include border-radius(5px);
            background:
                linear-gradient(90deg, #333F4D 50%, transparent 0) repeat-x,
                linear-gradient(90deg, #333F4D 50%, transparent 0) repeat-x,
                linear-gradient(0deg, #333F4D 50%, transparent 0) repeat-y,
                linear-gradient(0deg, #333F4D 50%, transparent 0) repeat-y;
            background-size: 5px 3px, 5px 3px, 3px 5px, 3px 5px;
            background-position: 0 0, 0 100%, 0 0, 100% 0;
            animation: linearGradientMove .3s infinite linear;
            background-color: $link_color;
        }

        &:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            z-index: -2;
            background-repeat: no-repeat;
            background-position: 0 0;
            background-image: conic-gradient(transparent, #f0f2f2, transparent 30%);
            animation: borderrotate 4s linear infinite;
        }
    }

    .pxl-item--title {

        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        color: #fff;
        margin-top: 10px;
        position: relative;
        z-index: 1;
    }

    .pxl-item--value {
        position: relative;
    }

    .pxl-percentage {
        display: inline-flex;

        canvas {
            @include transform(scaleX(-1));
        }
    }

    .pxl--counter-number {

        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
        display: inline-flex;

        @media #{$max-lg} {
            font-size: 20px;
        }
    }

    .pxl-item--holder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        @extend .pxl-middle;
        text-align: center;
    }

    &.style2 {
        .pxl-item--title {
            font-size: 14px;
            color: #000000;
            margin-top: -2px;

            span {
                @extend .rm-text-gradient;
            }
        }

        .pxl--counter-number {
            font-size: 34px;
            color: #000000;
            @extend .ft-theme-default;
            font-weight: 700;
        }
    }
}

.pxl-pie-chart2 {
    position: relative;
    text-align: center;
    overflow: hidden;
    background-color: #f8e5e1;
    @include border-radius(5px);
    padding: 50px;
    padding-bottom: 40px;
    z-index: 1;

    .pxl-animation {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 88%;
        height: 88%;
        transform: translate(-50%, -50%);
        overflow: hidden;
        @include border-radius(5px);

        &:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 99%;
            height: 99%;
            z-index: -1;
            transform: translate(-50%, -50%);
            background:
                linear-gradient(90deg, #EF4824 50%, transparent 0) repeat-x,
                linear-gradient(90deg, #EF4824 50%, transparent 0) repeat-x,
                linear-gradient(0deg, #EF4824 50%, transparent 0) repeat-y,
                linear-gradient(0deg, #EF4824 50%, transparent 0) repeat-y;
            background-size: 5px 3px, 5px 3px, 3px 5px, 3px 5px;
            background-position: 0 0, 0 100%, 0 0, 100% 0;
            animation: linearGradientMove .3s infinite linear;
            background-color: #f8e5e1;
        }
    }

    .pxl-item--title {

        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        color: $link_color;
        margin-top: 10px;
        position: relative;
        z-index: 1;
    }

    .pxl-item--value {
        position: relative;
    }

    .pxl-percentage {
        display: inline-flex;

        canvas {
            @include transform(scaleX(-1));
        }
    }

    .pxl--counter-number {

        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 1;
        color: $link_color;
        white-space: nowrap;
        display: inline-flex;

        @media #{$max-lg} {
            font-size: 20px;
        }
    }

    .pxl-item--holder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        @include border-radius(50%);
        @extend .pxl-middle;
        text-align: center;
    }

    &.style2 {
        .pxl-item--title {
            font-size: 14px;
            color: #000000;
            margin-top: -2px;

            span {
                @extend .rm-text-gradient;
            }
        }

        .pxl--counter-number {
            font-size: 34px;
            color: #000000;
            @extend .ft-theme-default;
            font-weight: 700;
        }
    }
}

//image custom
.pxl-image-layout1 {
    position: relative;

    &:after {
        content: '';
        width: 5px;
        height: 240px;
        position: absolute;
        @include border-radius(60px);
        background-color: $link_color_hover;
        right: -40px;
        top: 0;

        @media (max-width: 1366px) {
            height: 200px;
        }

        @media (max-width: 1200px) {
            height: 150px;
        }

        @media (max-width: 880px) {
            display: none;
        }
    }
}

//elementor custom
.layout1-home1 {
    @media (max-width: 767px) {
        width: 50% !important;
    }

    @media (max-width: 600px) {
        width: 100% !important;
        order: 2;
    }
}

.layout2-home1 {
    @media (max-width: 767px) {
        width: 50% !important;
    }

    @media (max-width: 600px) {
        width: 100% !important;
    }
}

.pxl-footer-main1 {
    @media (max-width: 767px) {
        width: 50% !important;
    }

    @media (max-width: 350px) {
        width: 100% !important;
    }
}

.pxl-footer04 {
    @media (max-width: 767px) {
        width: 33.33333% !important;
    }

    @media (max-width: 575px) {
        width: 100% !important;
    }
}

.pxl-home2-layout1 {
    .pxl-icon-box5 {
        .pxl-item--inner {
            box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.800000190734863px 24.399999618530273px -6px rgba(19, 16, 34, 0.10);
        }
    }
}

.pxl-home2-layout2 {
    .pxl-icon-box5 {
        .pxl-item--inner {
            .pxl-item-pice {
                span {
                    display: none;
                }
            }
        }
    }
}

.pxl-layout1-home3 {
    position: relative !important;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: -30px;
        width: 104%;
        height: 100%;
        background-color: #F2F1EC;
        z-index: -1;
    }
}

.px-test-home5 {
    position: relative !important;

    &:before {
        content: '';
        position: absolute;
        top: 13px;
        left: 50%;
        width: 1400px;
        height: 1px;
        background-color: #d1d1d1;
        z-index: -1;
        transform: translateX(-50%);
    }
}

.pxl-imagebg-home3 {
    @media (max-width: 1800px) {
        display: none !important;
    }
}

#pxl-layout-top {
    @media (max-height: 700px) {
        padding-top: 100px;
    }

    @media (max-width: 1199px) {
        padding-top: 0px;
    }
}

.pxl-arrows-home3 {
    width: 60px !important;
    height: 60px !important;
    background-color: #fff !important;
    @include border-radius(3px !important);
    left: unset !important;
    right: 100px;
    @include transition(all 0.3s);

    @media (max-width: 1366px) {
        right: 15px;
    }

    @media (max-width: 575px) {
        display: none !important;
    }

    &:before {
        color: $link_color_hover !important;
        line-height: 60px !important;
        font-size: 20px !important;
    }

    &:hover {
        background-color: $link_color_hover !important;

        &:before {
            color: #fff !important;
        }
    }

    &.tp-leftarrow {
        transform: translateY(-55px) !important;
    }

    &.tp-rightarrow {
        transform: translateY(15px) !important;
    }
}

.pxl-header-home6 {
    padding-left: 70px;

    @media (max-width: 1900px) {
        padding-left: 0;
    }

    .pxl-text-editor {
        @media (max-width: 1600px) {
            font-size: 15px !important;
        }

        a {
            @media (max-width: 1600px) {
                font-size: 18px !important;
            }
        }
    }
}

.pxl-gradient-pages {
    position: relative;

    &:before {
        content: '';
        z-index: 1;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(0deg, rgba(16, 16, 16, 1) 0%, rgba(16, 16, 16, 0.01) 100%);
    }
}

.pxl-de-gradient2 {
    position: relative;

    &:before {
        content: '';
        z-index: 1;
        position: absolute;
        top: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(180deg, rgba(16, 16, 16, 1) 0%, rgba(16, 16, 16, 0.01) 100%);
    }

    &:after {
        content: '';
        z-index: 1;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(0deg, rgba(16, 16, 16, 1) 0%, rgba(16, 16, 16, 0.01) 100%);
    }
}


.pxl-header-main {
    &:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(255, 255, 255, 0.2);
        width: 1780px;
        height: 1px;
    }
}

.pxl-layout-home02 {
    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: #3e4a4d;
        width: 1780px;
        height: 1px;
    }

    &:after {
        content: '';
        position: absolute;
        bottom: -64%;
        right: -16%;
        width: 689px;
        height: 689px;
        border: dashed 2px #3a4347;
        @include border-radius(50%);
        animation: rotate360 40s infinite linear;
    }
}

.pxl-layout-left {
    &:before {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -18%;
        width: 845px;
        height: 845px;
        border: dashed 2px #3a4347;
        @include border-radius(50%);
        animation: rotate360 40s infinite linear;
    }
}

//pxl-service-carousel-custom
.pxl-service-carousel-custom1 {
    .pxl-item--inner {
        @include border-radius(5px);
        overflow: hidden;
        @include transition(all 0.3s);

        &:hover {
            .pxl-item--image {
                img {
                    transform: scale(1.05);
                }
            }

            .pxl-item--holder {
                .pxl-btn-service {
                    background-color: $link_color_hover;
                    color: #fff;
                }
            }
        }

        .pxl-item--image {
            overflow: hidden;

            img {
                @include transition(all 0.3s);
            }
        }

        .pxl-item--holder {
            background-color: #fff;
            text-align: center;
            border: 1px solid #E3E3E3;
            padding: 40px;
            padding-bottom: 45px;

            @media (max-width: 676px) {
                padding: 20px;
                padding-bottom: 25px;
            }

            .pxl-item--title {

                font-size: 24px;
                color: $link_color;
                font-weight: 700;
                margin-bottom: 10px;
            }

            .pxl-item--desc {

                font-size: 16px;
                color: $secondary_color;
                font-weight: 400;
                margin-bottom: 45px;
            }

            .pxl-btn-service {
                border: 2px solid $link_color_hover;
                @include border-radius(5px);
                overflow: hidden;
                padding: 18px 30px;

                font-size: 16px;
                color: $link_color;
                font-weight: 700;
                letter-spacing: 1.28px;
                text-transform: uppercase;

                @media (max-width: 676px) {
                    padding: 13px 20px;
                }

                i {
                    font-size: 14px;
                }
            }
        }
    }
}

.pxl-service-carousel-custom2 {
    .pxl-item--inner {
        background-color: #fff;
        padding: 35px;
        padding-bottom: 60px;
        position: relative;
        margin-bottom: 35px;

        .item--meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 5px;

            .pxl-item--number {

                font-size: 48px;
                color: #616670;
                font-weight: 700;
                text-transform: capitalize;
                position: relative;

                &:after {
                    content: '';
                    width: 31px;
                    height: 1px;
                    right: -45px;
                    top: 50%;
                    background-color: #616670;
                    opacity: 0.5;
                    position: absolute;
                    transform: translate(0, -50%);
                }
            }

            .pxl-layout-icon {
                position: relative;

                .pxl-item--icon {
                    svg {
                        width: 65px;
                        height: 65px;
                        fill: $link_color_hover;
                    }

                    i {
                        color: $link_color_hover;
                        font-size: 65px;
                    }
                }

                .pxl-item--icon2 {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);

                    svg {
                        width: 65px;
                        height: 65px;
                        fill: $link_color_hover;
                    }
                }
            }
        }

        .pxl-item--holder {
            .pxl-item--title {

                font-size: 24px;
                color: $link_color;
                font-weight: 700;
                margin-bottom: 15px;
            }

            .pxl-item--desc {

                font-size: 16px;
                color: $secondary_color;
                font-weight: 400;
            }
        }

        .pxl-btn-service {
            position: absolute;
            bottom: -35px;
            left: 50%;
            width: 65px;
            height: 65px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            background-color: #EF4824;
            color: #fff;
            font-size: 25px;
            transform: translate(-50%, 0);

            &:hover {
                background-color: $link_color;
            }
        }
    }
}

.pxl-service-carousel-custom3 {
    .pxl-item--inner {
        @include border-radius(5px);
        overflow: hidden;
        @include transition(all 0.3s);

        &:hover {
            .pxl-item--image {
                img {
                    transform: scale(1.05);
                }
            }

            .pxl-item--holder {
                background-color: #fff;

                .pxl-item--title {
                    color: $link_color
                }

                .pxl-item--desc {
                    color: $link_color
                }

                .pxl-btn-service {
                    background-color: $link_color_hover;
                    color: #fff;
                }
            }
        }

        .pxl-link-image {
            position: relative;

            .pxl-item--icon {
                width: 80px;
                height: 80px;
                position: absolute;
                bottom: -20px;
                right: 40px;
                @include border-radius(5px);
                background-color: $link_color_hover;
                display: flex;
                align-items: center;
                justify-content: center;

                svg {
                    width: 50px;
                    height: 50px;
                    fill: #fff;

                    @media (max-width: 676px) {
                        width: 40px;
                        height: 40px;
                    }
                }

                i {
                    font-size: 50px;
                    color: #fff;

                    @media (max-width: 676px) {
                        font-size: 40px;
                    }
                }

                @media (max-width: 676px) {
                    width: 60px;
                    height: 60px;
                    right: 20px;
                }
            }
        }

        .pxl-item--image {
            overflow: hidden;

            img {
                @include transition(all 0.3s);
            }
        }

        .pxl-item--holder {
            background-color: #262626;
            text-align: left;
            padding: 20px 40px;
            padding-bottom: 55px;
            @include transition(all 0.3s);

            @media (max-width: 676px) {
                padding: 20px;
                padding-bottom: 25px;
            }

            .pxl-item--title {

                font-size: 24px;
                color: #fff;
                font-weight: 700;
                margin-bottom: 22px;
                @include transition(all 0.3s);
            }

            .pxl-item--desc {

                font-size: 16px;
                color: #fff;
                font-weight: 400;
                margin-bottom: 45px;
                @include transition(all 0.3s);
            }

            .pxl-btn-service {
                border: 2px solid $link_color_hover;
                @include border-radius(5px);
                overflow: hidden;
                padding: 18px 30px;

                font-size: 16px;
                color: #fff;
                font-weight: 700;
                letter-spacing: 1.28px;
                text-transform: uppercase;

                @media (max-width: 676px) {
                    padding: 13px 20px;
                }

                i {
                    font-size: 14px;
                }
            }
        }
    }
}

.pxl-service-carousel-custom4 {
    .pxl-item--inner {
        border: 1px solid #E1E1E1;
        background-color: #fff;
        display: flex;
        align-items: center;
        padding: 32px 40px;
        padding-bottom: 40px;
        @include transition(all 220ms linear 0ms);
        margin: 15px 0;

        @media (max-width: 1199px) {
            padding: 30px 20px;
        }

        @media (max-width: 480px) {
            display: block;
        }

        &:hover {
            box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);
            border-color: #fff;

            .pxl-item--holder {
                .pxl-btn-service {
                    color: $link_color_hover;

                    i {
                        color: $link_color_hover;
                    }
                }
            }
        }

        .pxl-item--icon {
            width: 120px;
            height: 120px;
            @include border-radius(50%);
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            @include transition(all 220ms linear 0ms);

            &:before {
                content: '';
                position: absolute;
                background-color: $link_color_hover;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                opacity: 0.1;
                width: 100%;
                height: 100%;
            }

            svg {
                width: 65px;
                height: 65px;
                fill: $link_color_hover;
            }

            i {
                font-size: 55px;
                color: $link_color_hover;
            }
        }

        .pxl-item--holder {
            margin-left: 35px;

            @media (max-width: 1199px) {
                margin-left: 20px;
            }

            @media (max-width: 480px) {
                margin-left: 0px;
                margin-top: 20px;
            }

            .pxl-item--title {

                font-size: 24px;
                color: $link_color;
                font-weight: 700;
                border-bottom: 1px solid #E3E3E3;
                padding-bottom: 5px;
                margin-bottom: 15px;
            }

            .pxl-item--desc {

                font-size: 16px;
                color: $secondary_color;
                font-weight: 400;
                margin-bottom: 20px;
            }

            .pxl-btn-service {

                font-size: 16px;
                color: $link_color;
                font-weight: 700;
                letter-spacing: 1.28px;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                @include transition(all 220ms linear 0ms);

                i {
                    color: $link_color;
                    @include transition(all 220ms linear 0ms);
                }
            }
        }
    }
}

.pxl-service-carousel-custom5 {
    .pxl-item--inner {
        @include border-radius(5px);
        overflow: hidden;
        margin-bottom: 20px;
        @include transition(all 0.3s);

        &:hover {
            box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);

            .pxl-link-image {
                .pxl-item--number {
                    color: $link_color_hover;
                }
            }

            .pxl-item--holder {
                border-color: #fff;

                .pxl-btn-service {
                    color: $link_color_hover;

                    i {
                        color: $link_color_hover;
                    }
                }
            }
        }

        .pxl-link-image {
            position: relative;
            @include transition(all 0.3s);

            .pxl-item--number {
                width: 80px;
                height: 80px;
                background-color: #fff;
                position: absolute;
                display: inline-flex;
                align-items: center;
                justify-content: center;

                font-size: 32px;
                color: $link_color;
                font-weight: 700;
                right: 40px;
                bottom: -20px;
                @include transition(all 0.3s);

                @media (max-width: 360px) {
                    right: 20px;
                }
            }
        }

        .pxl-item--holder {
            border: 1px solid #E1E1E1;
            border-top: none;
            background-color: #fff;
            @include border-radius(5px);
            padding: 23px 40px;
            padding-bottom: 40px;
            position: relative;
            z-index: 1;
            @include transition(all 0.3s);

            @media (max-width: 360px) {
                padding: 20px;
            }

            .pxl-item--icon {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: -1;

                svg {
                    width: 143px;
                    height: 143px;
                    fill: $link_color;
                }

                i {
                    color: $link_color;
                    font-size: 140px;
                    opacity: 0.5;
                }
            }

            .pxl-item--title {

                font-size: 32px;
                color: $link_color;
                font-weight: 700;
                margin-bottom: 21px;

                @media (max-width: 360px) {
                    margin-bottom: 15px;
                    font-size: 25px;
                }
            }

            .pxl-item--desc {

                font-size: 16px;
                color: #616670;
                font-weight: 400;
                margin-bottom: 27px;

                @media (max-width: 360px) {
                    margin-bottom: 15px;
                }
            }

            .pxl-btn-service {

                font-size: 16px;
                color: $link_color;
                font-weight: 700;
                letter-spacing: 1.28px;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                @include transition(all 0.3s);

                i {
                    color: $link_color;
                    @include transition(all 0.3s);
                }
            }
        }
    }
}

.pxl-service-carousel-custom6 {
    .pxl-item--inner {
        background-color: #fff;
        padding: 50px 40px;
        padding-bottom: 30px;

        @media (max-width: 360px) {
            padding: 40px 20px;
            padding-bottom: 20px;
        }

        .pxl-layout-icon {
            position: relative;
            text-align: center;

            .pxl-item--icon {
                svg {
                    width: 85px;
                    height: 85px;
                    fill: $link_color_hover;
                }

                i {
                    font-size: 85px;
                    color: $link_color_hover;
                }
            }

            .pxl-item--icon2 {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);

                svg {
                    width: 124px;
                    height: 112px;
                    fill: $link_color_hover;
                }
            }
        }

        .pxl-item--holder {
            margin-bottom: 20px;

            .pxl-item--title {

                font-size: 32px;
                color: $link_color;
                font-weight: 700;
                margin-bottom: 10px;
                margin-top: 35px;

                @media (max-width: 360px) {
                    font-size: 25px;
                    margin-top: 25px;
                }
            }

            .pxl-item--desc {

                font-size: 16px;
                font-style: normal;
                font-weight: 400;
            }
        }

        .pxl-item-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;

            .pxl-item--number {

                font-size: 48px;
                color: #E3E3E3;
                font-weight: 700;
                line-height: 1;
            }

            .pxl-btn-service {
                line-height: 1;
                font-size: 24px;
                color: $link_color;

                &:hover {
                    color: $link_color_hover;
                }
            }
        }
    }
}

.pxl-service-carousel-custom7 {
    .pxl-item--inner {
        @include border-radius(5px);
        background-color: #fff;
        box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);
        margin: 20px 0;
        @include transition(all 0.3s);
        padding: 40px;
        padding-bottom: 30px;

        @media (max-width: 360px) {
            padding: 20px;
        }

        &:hover {
            box-shadow: unset;

            .item--meta {
                .pxl-item--number {
                    opacity: 1;
                }
            }

            .pxl-btn-service {
                color: $link_color;

                i {
                    color: $link_color;
                }
            }
        }

        .item--meta {
            display: flex;
            align-items: normal;
            justify-content: space-between;
            margin-bottom: 30px;
            @include transition(all 0.3s);

            .pxl-item--icon {
                width: 85px;
                height: 85px;
                @include border-radius(5px);
                position: relative;
                overflow: hidden;
                display: inline-flex;
                align-items: center;
                justify-content: center;

                &:before {
                    content: '';
                    position: absolute;
                    @include border-radius(5px);
                    background-color: $link_color;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 100%;
                    height: 100%;
                    opacity: 0.05;
                }

                svg {
                    width: 60px;
                    height: 60px;
                    fill: $link_color_hover;
                }

                i {
                    font-size: 60px;
                    line-height: 1;
                    color: $link_color_hover;
                }
            }

            .pxl-item--number {

                font-size: 48px;
                color: #616670;
                font-weight: 700;
                text-transform: capitalize;
                opacity: 0.2;
                @include transition(all 0.3s);
                line-height: 1;
            }
        }

        .pxl-item--holder {
            margin-bottom: 25px;

            .pxl-item--title {

                font-size: 32px;
                color: $link_color;
                font-weight: 700;
                margin-bottom: 10px;
            }

            .pxl-item--desc {

                font-size: 16px;
                color: #616670;
                font-weight: 400;
            }
        }

        .pxl-btn-service {

            font-size: 16px;
            color: $link_color_hover;
            font-weight: 700;
            letter-spacing: 1.28px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            @include transition(all 0.3s);

            i {
                color: $link_color_hover;
                @include transition(all 0.3s);
            }
        }
    }
}

.pxl-service-carousel-custom8 {
    .pxl-swiper-arrow-wrap {
        max-width: 1320px;
        margin: 0 auto;
        justify-content: end;
        position: absolute;
        width: 100%;
        left: 50%;
        transform: translate(-50%);
        z-index: 99;
        top: -115px;

        @media (max-width: 767px) {
            position: unset;
            justify-content: left;
            transform: unset;
            padding: 0;
            margin-bottom: 30px;
        }

        .pxl-swiper-arrow {
            @include border-radius(5px);
            color: $link_color;
            position: relative;
            background-color: #fff;
            z-index: 1;
            overflow: hidden;
            @include transition(all 0.3s);
            margin: 0;
            margin-right: 10px;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 16px;

            &:last-child {
                margin-right: 0;
            }

            &:hover {
                color: #fff;
                background-color: $link_color_hover;
            }
        }
    }

    .pxl-item--inner {
        background-color: #fff;
        @include border-radius(5px);
        position: relative;
        padding: 43px 30px;
        margin-top: 50px;
        @include transition(all 0.3s);

        &:hover {
            .pxl-item--holder {
                .pxl-item--title {
                    color: $link_color_hover;
                }
            }
        }

        .item--meta {
            position: absolute;
            top: -45px;
            right: 30px;

            .pxl-item--icon {
                width: 75px;
                height: 75px;
                background-color: $link_color_hover;
                display: flex;
                align-items: center;
                justify-content: center;
                @include border-radius(5px);

                svg {
                    width: 45px;
                    height: 45px;
                    fill: #fff;
                }

                i {
                    color: #fff;
                    font-size: 45px;
                    line-height: 1;
                }
            }
        }

        .pxl-item--holder {
            @include transition(all 0.3s);

            .pxl-item--title {

                font-size: 24px;
                color: $link_color;
                font-weight: 700;
                margin-bottom: 10px;
                @include transition(all 0.3s);
            }

            .pxl-item--desc {

                font-size: 16px;
                color: $secondary_color;
                font-weight: 400;
            }
        }
    }
}

//Service Gird
.pxl-service-grid1 {
    .pxl-item--inner {
        position: relative;
        @include border-radius(5px);
        overflow: hidden;
        @include transition(all 0.3s);

        &:hover {
            .pxl-item--holder {
                bottom: 0;
            }

            .pxl-item--image {
                &:after {
                    bottom: 130%;
                }
            }
        }

        .pxl-item--image {
            position: relative;

            a {
                width: 100%;
                position: absolute;
                display: block;
                height: 100%;
                top: 0;
                left: 0;
            }

            &:after {
                content: "";
                background-color: #fff;
                @include transition(all 0.5s);
                position: absolute;
                width: 120%;
                height: 25px;
                opacity: 0.2;
                bottom: -35%;
                left: -10%;
                @include transform(rotate(0deg));
            }
        }

        .pxl-item--holder {
            position: absolute;
            bottom: -200px;
            left: 0;
            width: 100%;
            padding: 30px 35px;
            padding-top: 0;
            @include transition(all 0.3s);

            @media (max-width: 1199px) {
                padding: 30px 15px;
            }

            .pxl-item-meta {
                position: relative;
                background-color: #fff;
                @include border-radius(5px);
                padding: 20px;
            }

            .pxl-item--title {

                font-size: 24px;
                color: $link_color;
                font-weight: 700;
                margin-bottom: 7px;
            }

            .pxl-item--position {

                font-size: 16px;
                color: #333F4D;
                font-weight: 400;
            }

            .pxl-btn-service {
                width: 60px;
                height: 60px;
                background-color: $link_color_hover;
                color: #fff;
                @include border-radius(5px);
                position: absolute;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                top: -18px;
                right: 30px;

                @media (max-width: 1200px) {
                    right: 20px;
                }

                @media (max-width: 360px) {
                    right: 10px;
                    width: 45px;
                    height: 45px;
                }
            }
        }
    }
}

//post
.pxl-blog-details {
    .text {
        margin-bottom: 20px;

        @media (max-width: 575px) {
            margin-bottom: 15px;
        }

        &:last-child {
            margin-bottom: 0;
        }
    }
}

//pxl-image-carousel
.pxl-image-carousel {
    &.pxl-image-carousel1 {
        .pxl-swiper-slide {
            &:nth-child(2n+1) {
                .pxl-image-wg {
                    transform: none !important;
                }
            }

            &:nth-child(2n) {
                .pxl-item--inner {
                    margin-top: 40px;
                }
            }
        }

        .pxl-item--inner {
            text-align: center;
            @include transition(all .3s);

            &:hover {
                .pxl-item--image {
                    padding: 0;

                    &:before {
                        width: 100%;
                        height: 100%;
                    }

                    &:after {
                        width: 100%;
                        height: 100%;
                    }
                }
            }

            .pxl-item--image {
                padding: 30px;
                position: relative;
                @include transition(all .3s);

                .pxl-link {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    z-index: 5;
                }

                &:before {
                    content: '';
                    top: 0;
                    z-index: 2;
                    right: 0;
                    position: absolute;
                    width: 50%;
                    height: 50%;
                    border: solid 1px $primary_color;
                    @include transition(all .3s);
                }

                &:after {
                    content: '';
                    bottom: 0;
                    left: 0;
                    position: absolute;
                    width: 50%;
                    height: 50%;
                    z-index: -1;
                    border: solid 1px $primary_color;
                    @include transition(all .3s);
                }
            }

            .pxl-item--title {
                font-size: 22px;
                margin-top: 17px;
                margin-bottom: 0px;
                letter-spacing: .3em;
                word-break: break-word;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 1;
                display: -webkit-box;
                -webkit-box-orient: vertical;
            }
        }
    }

    &.pxl-image-carousel2 {
        &:hover {
            .pxl-swiper-arrow-wrap {
                opacity: 1;
            }
        }

        .pxl-swiper-arrow-wrap {
            position: absolute;
            top: 50%;
            width: 100%;
            margin: 0 auto;
            justify-content: space-between;
            max-width: 1920px;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            opacity: 0;
            @include transition(all 0.3s);
            cursor: pointer;

            .pxl-swiper-arrow {
                cursor: pointer;
                z-index: 100;
                width: 30px;
                height: 60px;
                line-height: 60px;
                @include border-radius(0);
                position: absolute;

                &:hover {
                    background-color: $primary_color;
                    color: link_color;
                }

                &.pxl-swiper-arrow-prev {
                    border-top-right-radius: 110px;
                    border-bottom-right-radius: 110px;
                    left: 0;
                }

                &.pxl-swiper-arrow-next {
                    border-top-left-radius: 110px;
                    border-bottom-left-radius: 110px;
                    right: 0;
                }
            }
        }

        .pxl-swiper-container {
            padding: 50px 30px;
        }

        .pxl-carousel-inner {
            margin: 0 -15px;
        }

        .pxl-swiper-slide {
            padding: 0;
            opacity: 0.6;
            @include transition(all 0.3s);

            @media (max-width: 767px) {
                padding: 0 15px;
            }
        }

        .swiper-slide-active {
            @include transition(all 0.3s);
            @include transform(scale(1.2));
            z-index: 2;
            opacity: 1;

            @media (max-width: 767px) {
                @include transform(scale(1));
            }
        }

        .pxl-item--inner {
            .pxl-item--image {
                position: relative;

                .pxl-link {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                }
            }

            .holder-content {
                text-align: center;
                position: relative;
                margin-top: -50px;

                .pxl-number {
                    font-size: 100px;
                    letter-spacing: .15em;
                    color: transparent;
                    line-height: 1;
                    font-weight: 400;
                    -webkit-text-stroke: 1px $primary_color;

                }

                .pxl-item--title {
                    margin-bottom: 0;
                    z-index: 1;
                    width: 100%;
                    font-size: 32px;
                    letter-spacing: .15em;
                    position: absolute;
                    text-align: center;
                    top: 50%;
                    color: $link_color;
                    transform: translateY(-50%);
                }
            }
        }
    }
}

//text-slide
.pxl-text-carousel1 {
    position: relative;
    overflow: hidden;

    &.style1 {
        .pxl-item--text {
            white-space: nowrap;
            line-height: 1;
            font-weight: bold;

            @media (max-width: 767px) {
                font-size: 100px;
            }
        }

        .pxl--item {
            font-size: 36px;
            padding: 0 24px;
            width: auto;
            position: relative;

            @media (max-width: 767px) {
                padding: 0 15px;
            }
        }

        .pxl-text-fixed {
            visibility: hidden;
            opacity: 0;
            display: flex;
            flex-wrap: nowrap;
        }

        .pxl-text-slide {
            margin: 0 -30px;
            display: flex;
            flex-wrap: nowrap;
            position: absolute;
            top: 0;

            &.text-slide-to-left {
                left: 50%;
            }

            &.text-slide-to-right {
                right: 50%;
            }

            @media #{$max-lg} {
                margin: 0 -15px;
            }
        }
    }
}

//image-slide
.pxl-image-slide1 {
    position: relative;
    overflow: hidden;

    &.style1 {
        .pxl-item--image {
            img {
                height: 350px;
                width: auto;
                max-width: inherit;
            }
        }

        .pxl--item {
            padding: 0 45px;
            width: auto;
            position: relative;
            display: -webkit-box;
            display: block ruby;
        }

        .pxl-image-fixed {
            visibility: hidden;
            opacity: 0;
            display: flex;
            flex-wrap: nowrap;
        }

        .pxl-image-slide {
            margin: 0 -30px;
            display: -webkit-box;
            display: block ruby;
            flex-wrap: nowrap;
            position: absolute;
            top: 0;

            &.text-slide-to-left {
                left: 50%;
            }

            &.text-slide-to-right {
                right: 50%;
            }

            @media #{$max-lg} {
                margin: 0 -15px;
            }
        }
    }
}

//pxl-menu-single
.pxl-menu-single1 {
    ul {
        display: flex;
        align-items: center;
        margin-bottom: 0;

        li {
            list-style: none;
            display: inline-block;
            vertical-align: middle;
            margin: 0 20px;
            color: $link_color;
            text-align: center;

            @media (max-width: 1500px) {
                margin: 0 15px;
            }


            a {
                line-height: 70px;
                font-size: 15px;
                display: inline-block;
                color: $link_color;
                font-style: normal;
                letter-spacing: 0.35em;
                position: relative;
                font-weight: 400;

                &:hover {
                    color: $primary_color;
                }
            }
        }
    }
}

//bg-parallax
.pxl-section-bg-parallax {
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
}

.pxl-section-jara {
    .pxl-section-bg-parallax {
        #jarallax-container-1 {
            div {
                margin-top: -100px !important;
            }
        }
    }
}

.pxl-mailchimp-l1 {
    &.style-default {
        .pxl-mailchimp {
            input[type="email"] {
                border: none;
                border-bottom: 1px solid #bbb;
                text-align: center;
                font-size: 16px;
                color: #869092;
                margin-bottom: 25px;

                &:active,
                &:focus {
                    color: #fff;
                }
            }

            input[type="submit"] {
                background-color: #3b454b;
                width: 100%;
                @include transition(all 0.3s);

                &:hover,
                &:active,
                &:focus {
                    background-color: #fff;
                    color: #3b454b;
                }
            }
        }
    }
}

//pxl-meta-carousel//
.pxl-meta-carousel1 {
    .pxl-swiper-container {
        margin: 0 -20px;
    }

    .pxl-swiper-slide {
        padding: 0 20px;
    }

    .pxl-item--inner {
        text-align: center;
        background-color: #fff;
        padding: 65px 20px 51px 20px;
        @include transition(all 0.3s);

        &:hover {
            .pxl-item--image {
                img {
                    transform: rotate(10deg);
                }
            }
        }

        .pxl-item--image {
            display: inline-flex;
            height: 70px;
            @include transition(all 0.3s);

            img {
                @include transition(all 0.3s);
            }
        }

        .pxl-item--title {
            margin-bottom: 10px;
            margin-top: 30px;
        }

        .pxl-item--position {
            font-size: 18px;

            a {
                color: $secondary_color;
            }
        }
    }
}

//pxl-list-box//
.pxl-list-box {
    &.style-1 {
        .pxl--item {
            margin-bottom: 32px;
            background: $primary_color;
            padding: 25px 30px 30px 30px;
            border-radius: 8px;
            position: relative;

            @media (max-width: 1024px) {
                padding: 25px;

            }

            &:last-child {
                margin-bottom: 0;
            }

            .pxl-number {
                position: absolute;
                top: 0;
                right: 0;
                padding: 20px;
                color: #fff;
                font-size: 16px;
                font-family: 'Heebo';
            }

            .pxl-item--icon {
                height: 50px;
                width: 50px;
                min-width: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 11px;
                @include transition(all 0.3s);

                @media (max-width: 1024px) {
                    height: 70px;
                    width: 70px;
                    min-width: 70px;
                }

                img {
                    @media (max-width: 1024px) {
                        width: 60px;
                    }
                }

                svg {
                    fill: $link_color;
                    height: 70px;

                    @media (max-width: 1024px) {
                        width: 60px;
                    }
                }

                i {
                    color: $link_color;
                    font-size: 70px;

                    @media (max-width: 1024px) {
                        font-size: 60px;
                    }
                }
            }


        }

        .style-1 {
            .pxl-item-content {
                .pxl-item--text {
                    font-size: 20px;
                    color: #fff;
                    margin-bottom: 14px;
                }

                .pxl-sub-text {
                    font-size: 16px;

                    a {
                        color: rgba(255, 255, 255, .75);
                    }
                }
            }
        }


    }

    &.style-2 {
        padding: 16px;
        display: flex;

        .pxl--item {
            border-radius: 8px;
            margin-right: 15px;

            &:last-child {
                margin-right: 0;
            }

            flex: 1;
        }

        .pxl-item--icon {
            margin-right: 0;
            margin-bottom: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pxl-item-content {
            .pxl-item--text {
                display: flex;
                justify-content: center;
                margin: 0;
            }
        }
    }
}

&.style-3 {
    .pxl--item {
        margin-bottom: 32px;
        background: $primary_color;
        padding: 25px 30px 30px 30px;
        border-radius: 8px;

        @media (max-width: 1024px) {
            padding: 25px;
        }

        &:last-child {
            margin-bottom: 0;
        }

        .pxl-item--icon {
            height: 100px;
            width: 100px;
            min-width: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 11px;
            @include transition(all 0.3s);

            @media (max-width: 1024px) {
                height: 70px;
                width: 70px;
                min-width: 70px;
            }

            img {
                @media (max-width: 1024px) {
                    width: 60px;
                }
            }

            svg {
                fill: $link_color;
                height: 70px;

                @media (max-width: 1024px) {
                    width: 60px;
                }
            }

            i {
                color: $link_color;
                font-size: 70px;

                @media (max-width: 1024px) {
                    font-size: 60px;
                }
            }
        }

        .pxl-item--text {
            margin-bottom: 5px;
        }

    }

}

.pxl-button-video {
    &.pxl-button-video1 {
        &.style-default {
            .pxl-item--inner {
                // position: relative;
                overflow: hidden;
                border-radius: 8px;

                &:hover {
                    .pxl-item--imgprimary {
                        img {
                            scale: 1.1;
                            transition: all .5s;
                        }
                    }
                }

                // .pxl-item--video {
                //     position: absolute;
                //     top: 50%;
                //     left: 50%;
                //     transform: translate(-50%, -50%);
                // }

                .pxl-item--imgprimary {
                    img {
                        transition: all .5s;

                        @media (max-width: 2560px) {
                            width: 100%;
                        }
                    }
                }
            }

            .btn-video {
                min-width: 240px;
                width: 240px;
                height: 240px;
                line-height: 240px;
                font-size: 18px;
                // border: 1px solid #fff;
                @include border-radius(50%);
                color: #fff;
                letter-spacing: 0.3px;

                @media (max-width: 1200px) {
                    min-width: 200px;
                    width: 200px;
                    height: 200px;
                    line-height: 200px;
                }

                &:hover {
                    transform: scale(0.98);

                    i {
                        scale: .8;
                        transition: all .5s ease;
                    }
                }

                i {
                    font-size: 20px;
                    transition: all .5s ease;

                }
            }
        }

        &.style-img {
            .pxl-item--inner {
                position: relative;
                overflow: hidden;
                border-radius: 8px;

                &:hover {
                    .pxl-item--imgprimary {
                        img {
                            scale: 1.1;
                            transition: all .5s;
                        }
                    }
                }

                .pxl-item--video {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }

                .pxl-item--imgprimary {
                    img {
                        transition: all .5s;

                        @media (max-width: 2560px) {
                            width: 100%;
                        }
                    }
                }
            }

            .btn-video {
                min-width: 240px;
                width: 240px;
                height: 240px;
                line-height: 240px;
                font-size: 18px;
                border: 1px solid #fff;
                @include border-radius(50%);
                color: #fff;
                letter-spacing: 0.3px;

                @media (max-width: 1200px) {
                    min-width: 200px;
                    width: 200px;
                    height: 200px;
                    line-height: 200px;
                }

                &:hover {
                    transform: scale(0.98);

                    i {
                        scale: .8;
                        transition: all .5s ease;
                    }
                }

                i {
                    font-size: 20px;
                    transition: all .5s ease;

                }
            }
        }
    }

}

//pxl-carousel-custom
.pxl-carousel-custom1 {
    .pxl-item--inner {
        text-align: center;

        .pxl-sub-title {
            color: #233032;
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-left: 10px;
        }

        .pxl-item--title {
            font-size: 100px;
            color: #233032;
            line-height: 1;
            margin-bottom: 47px;
            margin-top: 19px;
            letter-spacing: 0.5px;

            @media (max-width: 1280px) {
                font-size: 80px;
            }

            @media (max-width: 767px) {
                font-size: 65px;
            }

            @media (max-width: 480px) {
                margin-bottom: 20px;
                margin-top: 15px;
                font-size: 45px;
            }

            @media (max-width: 360px) {
                font-size: 25px;
            }

            .pxl-item-number {
                font-size: 80px;

                @media (max-width: 1280px) {
                    font-size: 60px;
                }

                @media (max-width: 767px) {
                    font-size: 45px;
                }

                @media (max-width: 480px) {
                    font-size: 35px;
                }

                @media (max-width: 360px) {
                    font-size: 25px;
                }
            }
        }

        .pxl-item--desc {
            font-size: 20px;
            color: #475355;
            letter-spacing: 0.46px;
            margin-left: 4px;

            @media (max-width: 480px) {
                margin-left: 0;
                font-size: 18px;
            }
        }
    }
}

.pxl-carousel-custom2 {
    .pxl-swiper-slide {
        padding: 0 20px;

        @media (max-width: 1280px) {
            padding: 0 15px;
        }
    }

    .pxl-swiper-container {
        margin: 0 -20px;

        @media (max-width: 1280px) {
            margin: 0 -15px;
        }
    }

    .pxl-swiper-slide {
        &:nth-child(4n+1) {
            .pxl-item--inner {
                .pxl-item-content {
                    margin-left: -14px;

                    .pxl-sub-title {
                        margin-left: -7px;
                    }
                }
            }
        }

        &:nth-child(4n+2) {
            .pxl-item--inner {
                .pxl-item-content {
                    .pxl-sub-title {
                        margin-left: 11px;
                    }
                }
            }
        }

        &:nth-child(4n+3) {
            .pxl-item--inner {
                .pxl-item-content {
                    margin-left: 2px;

                    .pxl-sub-title {
                        margin-left: 15px;
                    }
                }
            }
        }

        &:nth-child(4n+4) {
            .pxl-item--inner {
                .pxl-item-content {
                    margin-left: 5px;

                    .pxl-sub-title {
                        margin-left: 21px;
                    }
                }
            }
        }
    }

    .pxl-item--inner {
        .pxl-item-content {
            position: relative;
            display: flex;
            align-items: end;
            border-bottom: 1px solid #8799a1;
            padding-bottom: 35px;
            margin-bottom: 47px;
            margin-top: -52px;

            @media (max-width: 1200px) {
                padding-bottom: 20px;
                margin-bottom: 30px;
            }

            svg {
                fill: transparent;

                .pxl-item-text {
                    font-size: 130px;
                    white-space: nowrap;
                    line-height: 1;
                    color: transparent;
                    text-transform: uppercase;
                    stroke: #6d777b;
                    stroke-width: 1;
                    font-weight: bold;
                    letter-spacing: -1px;
                }
            }

            .pxl-sub-title {
                font-size: 14px;
                color: #253136;
                text-transform: uppercase;
                transform: rotate(-180deg);
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                writing-mode: vertical-lr;
                letter-spacing: 1.28px;
                margin-bottom: 16px;
            }
        }

        .pxl-item--title {
            font-size: 28px;
            margin-bottom: 17px;
            letter-spacing: 0.3px;
            margin-left: 1px;

            @media (max-width: 1200px) {
                font-size: 24px;
                margin-bottom: 10px;
            }
        }

        .pxl-item--desc {
            font-size: 16px;
            color: #475355;
            padding-left: 3px;
            letter-spacing: 0.36px;
            line-height: 1.6;
        }
    }
}

//pxl-image-slip
.pxl-image-slip1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;

    @media (max-width: 991px) {
        display: block;
    }

    .pxl-post-content {
        width: 50%;
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        padding: 69px 0 60px 146px;
        position: sticky;
        top: 0;

        @media (max-width: 1400px) {
            padding: 69px 0 60px 100px;
        }

        @media (max-width: 1280px) {
            padding: 69px 0 60px 50px;
        }

        @media (max-width: 991px) {
            width: 100%;
            padding: 0px;
        }

        @media #{$max-sm} {
            position: static;
            width: 100%;
            height: auto;
        }

        +.pxl-post-image-slip {
            width: 50%;

            @media #{$max-sm} {
                width: 100%;
            }
        }

        .pxl-widget--title {
            font-size: 45px;
            color: #dbe8e8;
            line-height: 1.2;
            letter-spacing: 0.4px;

            @media (max-width: 1199px) {
                font-size: 35px;
            }

            @media (max-width: 480px) {
                font-size: 25px;
            }

            &.heading-lv2 {
                color: #868f91;
                margin-top: 14px;
            }
        }

        .pxl-widget--desc {
            font-size: 20px;
            color: #868f91;
            margin-top: 47px;
            margin-left: 2px;
            letter-spacing: 0.43px;
            line-height: 1.59;
            margin-bottom: 64px;

            @media (max-width: 676px) {
                margin-top: 20px;
                margin-bottom: 30px;
            }
        }

        .pxl-widget--button {
            .btn {
                border-color: $primary_color;
                color: $primary_color;
                font-weight: 500;
                letter-spacing: 0.3px;

                &:hover {
                    background-color: $primary_color;
                    color: #1f262a;
                }
            }
        }
    }

    .pxl-post-image-slip {
        position: relative;
        max-width: 680px;
        margin: auto;
        padding: 60px 0;

        @media (max-width: 991px) {
            width: 100%;
            max-width: 100%;
        }

        .pxl-post-image--track {
            width: 100%;
            height: 100%;
            position: relative;
            top: 0;
        }

        .pxl-post-block--min {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease-out;
            z-index: 9;
        }

        .pxl-post-image--block {
            display: block;
            width: 100%;
            position: sticky;
            transition: 1.2s ease-out;
            top: 110px;
            opacity: 0;
            filter: blur(5px);

            img {
                width: 100%;
            }

            +.pxl-post-image--block {
                margin-top: 60px;
            }

            &.pxl-post-block_1 {
                clip-path: circle(0% at 85% 15%);
                filter: blur(5px);
            }

            &.slip-active {
                opacity: 1;
                filter: blur(0px);

                &.pxl-post-block_1 {
                    clip-path: circle(90.7% at 40% 40%);
                    filter: blur(0);
                }
            }

            &.active .pxl-post-block--min {
                opacity: 1;
                visibility: visible;
            }

            &.end .pxl-post-block--min {
                opacity: 0;
                visibility: hidden;
            }
        }
    }

    .pxl-post--image {
        position: relative;
        overflow: hidden;

        .pxl-inner-title {
            position: absolute;
            top: 44px;
            left: 0;
            display: flex;
            align-items: center;
            width: 100%;
            padding: 0 30px 0 54px;

            @media (max-width: 1199px) {
                padding: 0 15px 0 30px;
            }

            @media (max-width: 480px) {
                display: block;
                top: 20px;
            }

            .pxl--counter-number {
                font-size: 120px;
                line-height: 1;
                color: #e7e9e9;
                display: flex;
                align-items: center;
                text-transform: uppercase;

                @media (max-width: 575px) {
                    font-size: 100px;
                }

                &.pxl-mr-37 {
                    margin-right: 15px;
                }
            }

            .pxl-item-heading {
                color: #e7e9e9;
                font-size: 34px;
                line-height: 1.2;
                margin-top: -1px;
                letter-spacing: 0.3px;

                @media (max-width: 575px) {
                    font-size: 25px;
                }
            }
        }
    }
}

//pxl-title-carousel
.pxl-title-carousel1 {
    .swiper-container-vertical {
        height: 700px;

        @media (max-width: 1199px) {
            height: 500px;
        }

        @media (max-width: 991px) {
            height: 400px;
        }

        @media (max-width: 575px) {
            height: 200px;
        }
    }

    .pxl-swiper-slide {
        align-content: center;
        display: flex;
        align-items: center;
        justify-content: center;

        &.swiper-slide-active {
            .pxl-item--inner {
                .pxl-item--title {
                    color: #f0f8f8;
                    font-size: 140px;

                    @media (max-width: 1800px) {
                        font-size: 100px;
                    }

                    @media (max-width: 1280px) {
                        font-size: 70px;
                    }

                    @media (max-width: 991px) {
                        font-size: 50px;
                    }

                    @media (max-width: 676px) {
                        font-size: 35px;
                    }
                }
            }
        }
    }

    .pxl-item--inner {
        text-align: center;

        .pxl-item--title {
            font-size: 45px;
            font-weight: bold;
            color: #adb7b7;
            text-transform: uppercase;
            line-height: 1;
            @include transition(all 0.3s);

            @media (max-width: 991px) {
                font-size: 35px;
            }
        }
    }
}

//pxl-features-carousel//
.pxl-features-carousel {
    &.pxl-features-carousel1 {
        .pxl-swiper-slide {
            padding: 0 20px;

            @media (max-width: 1280px) {
                padding: 0 15px;
            }
        }

        .pxl-swiper-container {
            margin: 0 -20px;

            @media (max-width: 1280px) {
                margin: 0 -15px;
            }
        }

        .pxl-item-inner {
            text-align: center;

            .pxl-item--imgprimary {
                img {
                    max-height: 77px;
                }
            }

            .pxl-item-heading {
                font-size: 26px;
                margin-bottom: 22px;
                margin-top: 49px;
                letter-spacing: 0.3px;
            }

            .pxl-item--desc {
                font-size: 20px;
                color: #475355;
                letter-spacing: 0.4px;
                padding: 0 20px;
            }
        }
    }
}

//pxl-box-grid//
.flicker {
    opacity: 0.8;
    visibility: hidden;
}



.pxl-text-big {
    .pxl-text-editor {
        .pxl-item--inner {
            p {
                &:first-child {
                    &::first-letter {
                        display: inline-block;
                        font-size: 48px;
                        float: left;
                        margin: 8px 15px 0 0;
                        color: #eceff3;
                        background-color: $primary_color;
                        font-family: "Heebo", Helvetica, Arial, sans-serif;
                        padding: 15px 10px;
                    }
                }
            }
        }
    }
}

.pxl-team {
    &.pxl-team-carousel1 {
        .pxl-swiper-slide {
            padding: 0 14px;
        }

        .pxl-carousel-inner {
            position: relative;

            .pxl-swiper-container {
                margin: 0 -14px;

                .pxl-item--inner {
                    position: relative;

                    .pxl-item--image {
                        border-radius: 8px;
                        background: unset;
                    }

                    .pxl-item-content {
                        position: absolute;
                        bottom: 0px;
                        width: 100%;

                        .pxl-bag {
                            padding: 24px;
                            margin: 24px;
                            border-radius: 8px;
                            background-color: #fff;
                            display: flex;
                            align-items: center;
                            justify-content: space-between;

                            .pxl-item--holder {
                                color: $primary_color;

                                .pxl-item--title {
                                    margin: 0;
                                }

                            }

                            .pxl-item--social {
                                background: #E1EBE2;
                                width: 40px;
                                height: 40px;
                                align-items: center;
                                display: flex;
                                justify-content: center;
                                border-radius: 50%;

                                i {
                                    font-size: 24px;
                                    color: $primary_color;
                                    margin-top: 4px;
                                }
                            }
                        }

                    }
                }
            }

            .pxl-swiper-arrow-wrap {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
                margin-top: 0px;
                position: absolute;
                top: 51%;
                width: 101%;
                left: -15px;
                transform: translateY(-51%);
                z-index: 2;
                left: -8px;

                .pxl-swiper-arrow {
                    width: 40px;
                    height: 40px;
                    border-radius: 0px;
                    background-color: $primary_color;
                    line-height: 15px;
                    align-content: center;

                    &.pxl-swiper-arrow-prev {
                        border-radius: 0px 30px 30px 0;
                    }

                    &.pxl-swiper-arrow-next {
                        border-radius: 30px 0px 0px 30px;

                    }
                }
            }
        }
    }

    &.pxl-team-carousel2 {
        .pxl-carousel-inner {
            position: relative;

            .pxl-swiper-slide {
                padding: 0;

                &.even {
                    .pxl-item--inner {
                        margin-left: -300px;
                        margin-right: -300px;

                        @media screen and (max-width: 1200px) {
                            margin-left: -100px;
                            margin-right: -100px;

                        }

                        @media screen and (max-width: 880px) {
                            margin: 0;
                        }
                    }
                }

                .pxl-item--image {
                    img {
                        height: 600px;

                        @media screen and (max-width: 880px) {
                            height: 320px;
                        }
                    }

                }
            }

            .pxl-swiper-arrow-wrap {
                justify-content: space-between;
                position: absolute;
                top: 50%;
                width: 100%;
                transform: rotateY(-50%);
                margin: 0;

                .pxl-swiper-arrow-prev {
                    position: absolute;
                    left: 100px;
                    width: 40px;
                    height: 40px;
                    background-color: var(--primary-color);
                    line-height: 15px;
                    align-content: center;
                    border-radius: 0px 30px 30px 0;
                    margin: 0;

                    @media screen and(max-width: 880px) {
                        left: 0px;
                    }
                }

                .pxl-swiper-arrow-next {
                    position: absolute;
                    right: 300px;
                    width: 40px;
                    height: 40px;
                    background-color: var(--primary-color);
                    line-height: 15px;
                    align-content: center;
                    border-radius: 30px 0px 0px 30px;
                    margin: 0;

                    @media screen and(max-width: 1200px) {
                        right: 100px;
                    }

                    @media screen and(max-width: 880px) {
                        right: 0px;
                    }
                }
            }
        }
    }

    &.pxl-team-carousel3 {
        .pxl-carousel-inner {
            position: relative;

            .pxl-swiper-wrapper {
                margin-left: -500px;
                margin-right: -500px;

                @media screen and(max-width: 1440px) {
                    margin: 0;
                }

                .pxl-item--inner {
                    .pxl-item--image {
                        img {
                            border-radius: 8px;
                        }
                    }
                }
            }

            .pxl-swiper-arrow-wrap {



                .pxl-swiper-arrow {
                    margin: 0;
                }

                .pxl-swiper-arrow-prev {
                    position: absolute;
                    left: 0px;
                    width: 40px;
                    height: 40px;
                    top: 50%;
                    transform: translateY(-50%);
                    background-color: var(--primary-color);
                    line-height: 15px;
                    align-content: center;
                    border-radius: 0px 30px 30px 0;

                    @media screen and(max-width: 1440px) {
                        left: 0px;
                    }
                }

                .pxl-swiper-arrow-next {
                    position: absolute;
                    right: 0px;
                    width: 40px;
                    height: 40px;
                    top: 50%;
                    transform: translateY(-50%);
                    background-color: var(--primary-color);
                    line-height: 15px;
                    align-content: center;
                    border-radius: 30px 0px 0px 30px;

                    @media screen and(max-width: 1440px) {
                        right: 0px;
                    }
                }
            }
        }
    }

    &.pxl-team-carousel4 {
        .pxl-swiper-wrapper {
            .pxl-swiper-slide {
                padding: 0;
            }
        }

        .pxl-item--inner {
            position: relative;

            &:hover {
                .pxl-item--holder {
                    opacity: 0;
                    transition: all .5s ease;

                }

                .pxl-item--image {
                    img {
                        scale: 1.1;
                        transition: all .5s ease;
                    }
                }

                .pxl-gradient-bottom {
                    background: linear-gradient(0deg, rgba(30, 31, 34, 1) 0%, rgba(30, 31, 34, 0) 100%);
                    transition: all .5s ease;
                }

                .pxl-item-content {
                    .pxl-item--des {
                        opacity: 1;
                        transition: all.5s;
                        z-index: 3;
                    }
                }

            }

            .pxl-item--image {
                overflow: hidden;
                position: relative;

                img {
                    transition: all .5s;
                }

                a {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    z-index: 10;
                }
            }

            .pxl-item-content {
                text-align: center;

                .pxl-item--holder {
                    position: absolute;
                    top: 50%;
                    width: 100%;
                    color: #fff;
                    transform: translateY(-50%);
                    transition: all .5s ease;

                    .pxl-item--title {
                        margin-bottom: 5px;
                    }

                }

                .pxl-item--des {
                    position: absolute;
                    bottom: 0;
                    padding: 30px;
                    margin: 30px;
                    opacity: 0;
                    transition: all .5s;
                    font-size: 16px;
                }

                .pxl-gradient-top {
                    position: absolute;
                    width: 100%;
                    height: 30%;
                    top: 0;
                    background: linear-gradient(180deg, rgba(30, 31, 34, 1) 0%, rgba(30, 31, 34, 0) 100%);
                    z-index: 1;
                }

                .pxl-gradient-bottom {
                    position: absolute;
                    width: 100%;
                    height: 30%;
                    bottom: 0;
                    z-index: 1;
                    transition: all.5s;
                }
            }

        }

        .pxl-swiper-arrow-wrap {
            justify-content: space-between;
            position: absolute;
            top: 50%;
            width: 100%;
            transform: rotateY(-50%);

            .pxl-swiper-arrow {
                margin: 0;
            }

            .pxl-swiper-arrow-prev {
                width: 40px;
                height: 40px;
                background-color: var(--primary-color);
                line-height: 15px;
                align-content: center;
                border-radius: 0px 30px 30px 0;
            }

            .pxl-swiper-arrow-next {
                width: 40px;
                height: 40px;
                background-color: var(--primary-color);
                line-height: 15px;
                align-content: center;
                border-radius: 30px 0px 0px 30px;
            }
        }
    }
}


.pxl-list-price {
    @media (max-width: 880px) {
        text-align: center;
    }

    .pxl--item {
        border-bottom: solid 1px rgba(0, 0, 0, .2);
    }

    .inner-meta {
        display: flex;
        justify-content: space-between;

        @media (max-width: 881px) {
            display: inline;
        }
    }

    .pxl-item-right {

        .pxl-price,
        .pxl-job {
            text-align: end;

            @media (max-width: 881px) {
                text-align: center;
            }
        }
    }
}

.pxl-list-custom {
    .pxl--item {
        &:first-child {
            background: $primary_color;
            color: #fff;

            a {
                color: #fff;
            }
        }

        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #e1ebe2;
        margin-bottom: 16px;
        padding: 13.5px 25px;
        border-radius: 10px;

        &:hover {
            background: $primary_color;
            color: #fff;

            a {
                color: #fff;
            }
        }
    }
}

.pxl-rezo {
    height: fit-content;
}

.pxl-box-button {
    &.pxl-box-button1 {
        .pxl-content {
            display: flex;
            justify-content: space-between;
            padding: 24px 40px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .15);
            backdrop-filter: blur(10px);

            @media (max-width: 360px) {
                padding: 12px 8px;
            }

            .pxl-item-inner {
                background: $primary_color;
                border-radius: 50px;
                padding: 6px 25px;
                align-items: center;
                display: flex;

                &:hover {
                    box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
                }

                @media (max-width: 360px) {
                    padding: 0 15px;
                }
            }
        }
    }

    &.pxl-box-button2 {
        .pxl-content {
            text-align: center;
            padding: 24px 40px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .15);
            backdrop-filter: blur(10px);

            @media (max-width: 360px) {
                padding: 12px 8px;
            }

        }
    }

    &.pxl-box-button3 {
        .pxl-item-box {
            align-items: center;
            padding: 24px;

            .pxl-image {
                img {
                    transition: all .5s;
                }
            }

            .pxl-content {
                .btn-shape-primary {
                    padding: 10px 25px;
                    border-radius: 50px;
                    background: #798d7a;

                    &:hover {
                        box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
                    }
                }

                .pxl-title {
                    margin-bottom: 10px;
                }
            }
        }

        &:hover {
            .pxl-image {
                img {
                    scale: 1.1;
                    transition: all .5s;
                }
            }
        }
    }

    &.pxl-box-button4 {
        .pxl-content {
            padding: 23px 24px;
            border-radius: 8px;
            backdrop-filter: blur(10px);

            .pxl-title {
                margin-bottom: 3px;
            }
        }
    }
}

.pxl-exp {
    .pxl-counter1 {
        .pxl--item-inner {
            padding: 16px !important;
        }

        .pxl--counter-number {
            padding-left: 0px !important;
            display: unset !important;

            .pxl-counter-meta {
                padding: 0 !important;

                .pxl--counter-value {
                    vertical-align: text-top;
                }

                .pxl--item-title {
                    text-align: center !important;
                }
            }
        }
    }
}

.img-gradiend {
    .pxl-image-single {
        .pxl-item--image {
            position: relative;

            img {
                @media screen and(max-width: 2560px) {
                    width: 100%;
                }
            }

            &::before {
                content: '';
                position: absolute;
                top: 0;
                width: 100%;
                height: 30%;
                background: linear-gradient(180deg, rgba(30, 31, 34, 1) 0%, rgba(30, 31, 34, 0) 100%);
            }
        }
    }
}

.pxl-buy-now {
    img {
        max-width: 65px;
        margin-left: 6px;
    }
}