/*
@File: Noke Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Top Header Area CSS
** - Navbar Area CSS
** - Search Overlay CSS
** - Startup Banner Area CSS
** - Marketing Banner Area CSS
** - Business Banner Area CSS
** - App Banner Area CSS
** - Saas Banner Area CSS
** - Personal Portfolio Banner Area CSS
** - Consulting Banner Area CSS
** - IT Agency Banner Area CSS
** - Shop Banner Area CSS
** - Blog Banner Area CSS
** - Furniture Banner Area CSS
** - Minimal Portfolio Banner Area CSS
** - Features Area CSS
** - About Area CSS
** - Services Area CSS
** - Services Details Area CSS
** - Works Area CSS
** - What We Do Area CSS
** - Categories Area CSS
** - Who We Are Area CSS
** - Video Area CSS
** - Process Area CSS
** - Funfacts Area CSS
** - Products Area CSS
** - Products Details Area CSS
** - Cart Area CSS
** - Checkout Area CSS
** - Testimonials Area CSS
** - Team Area CSS
** - How It Works Area CSS
** - Skills Area CSS
** - Expertise Area CSS
** - CTA Area CSS
** - Timeline/Short Brief Area CSS
** - App Download Area CSS
** - Trending Style Area CSS
** - Pricing Area CSS
** - App Screenshot Area CSS
** - Facility Area CSS
** - Latest Posts Area CSS
** - Partner Area CSS
** - Clients Area CSS
** - Featured Video Area CSS
** - Blog Area CSS
** - Blog Details Area CSS
** - Widget Area CSS
** - Profile Authentication Area CSS
** - Instagram Area CSS
** - Page Title Area CSS
** - Pagination Area CSS
** - Gallery Area CSS
** - Portfolio Details Area CSS
** - Portfolio Details Navigation Area CSS
** - Privacy Policy Area CSS
** - Terms & Conditions Area CSS
** - FAQ Area CSS
** - 404 Error Area CSS
** - Coming Soon Area CSS
** - Contact Area CSS
** - Footer Area CSS
** - Go Top CSS
** - Modal CSS
*/

/*================================================
Default CSS
=================================================*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --fontFamily: 'Manrope', sans-serif;
    --headingFontFamily: 'Poppins', sans-serif;
    --startupMainColor: #4db848;
    --marketingMainColor: #2f4eac;
    --businessMainColor: #5d3dec;
    //--businessGradientColor: linear-gradient(to right, #4651e6, #5749ed, #693ff3, #7c30f7, #8f11fa);
    --businessGradientColor: #4db848;
    --appMainColor: #0042bb;
    --appGradientColor: linear-gradient(to right bottom, #0042bb, #093ea8, #113a96, #163584, #1a3172);
    --saasMainColor: #296dfe;
    --saasGradientColor: linear-gradient(to right top, #257ef7, #0094fb, #00a7f5, #00b6ea, #17c3dd);
    --personalPortfolioMainColor: #111111;
    --itAgencyMainColor: #ff4a17;
    --itAgencyGradientColor: linear-gradient(to right, #ff4a17, #fd5d15, #fb6d16, #f87b1a, #f68821);
    --consultingMainColor: #4eaf4e;
    --shopMainColor: #111111;
    --minimalPortfolioColor: #4ab19d;
    --optionalColor: #6f6f6f;
    --whiteColor: #ffffff;
    --blackColor: #2d2d37;
    --fontSize: 15.5px;
    --transition: .5s;
}
body {
    margin: 0;
    padding: 0;
    color: var(--blackColor);
    font: {
        size: var(--fontSize);
        family: var(--fontFamily);
    };
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--blackColor);
    font: {
        weight: 600;
        family: var(--headingFontFamily);
    };
}
a {
    transition: var(--transition);
    color: var(--blackColor);
    text-decoration: none;
    outline: 0 !important;

    &:hover {
        color: var(--optionalColor);
        text-decoration: none;
    }
}
:focus {
    outline: 0 !important;
}
.d-table {
    width: 100%;
    height: 100%;

    &-cell {
        vertical-align: middle;
    }
}
img {
    max-width: 100%;
    height: auto;
}
p {
    color: var(--optionalColor);
    margin-bottom: 15px;
    line-height: 1.8;
    font: {
        weight: 500;
        size: var(--fontSize);
    };
    &:last-child {
        margin-bottom: 0;
    }
}
.ptb-100 {
    padding: {
        top: 100px;
        bottom: 100px;
    };
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.ptb-70 {
    padding: {
        top: 70px;
        bottom: 70px;
    };
}
.pt-70 {
    padding-top: 70px;
}
.pb-70 {
    padding-bottom: 70px;
}
.bg-f9f4f0 {
    background-color: #f9f4f0;
}
.bg-faf7f2 {
    background-color: #faf7f2;
}
.bg-1b2232 {
    background-color: #1b2232;
}
.bg-f3f4f7 {
    background-color: #f3f4f7;
}
.bg-f9f9f9 {
    background-color: #f9f9f9;
}
.bg-dark {
    background-color: #06080e !important;

    .section-title {
        color: var(--whiteColor);

        h2 {
            color: var(--whiteColor);
        }
        p {
            color: var(--whiteColor);
        }
    }
}
.bg-f6f7f9 {
    background-color: #f6f7f9;
}
/*section-title*/
.section-title {
    text-align: center;
    max-width: 655px;
    margin: {
        bottom: 60px;
        left: auto;
        right: auto;
    };
    h2 {
        margin-bottom: 0;
        font-size: 40px;
    }
    p {
        max-width: 540px;
        margin: {
            top: 15px;
            left: auto;
            right: auto;
        };
    }
    .sub-title {
        display: block;
        margin-bottom: 12px;
        color: var(--startupMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
        &.marketing-color {
            color: var(--marketingMainColor);
        }
        &.business-color {
            color: var(--businessMainColor);
        }
        &.app-color {
            color: var(--appMainColor);
        }
        &.saas-color {
            color: var(--saasMainColor);
        }
        &.consulting-color {
            color: var(--consultingMainColor);
        }
        &.it-agency-color {
            color: var(--itAgencyMainColor);
        }
        &.minimal-portfolio-color {
            color: var(--minimalPortfolioColor);
        }
    }
    &.style-two {
        text-align: start;
        padding-left: 90px;
        margin: {
            left: 0;
            right: 0;
            bottom: 50px;
        };
        h2 {
            position: relative;
            font-size: 30px;

            &::before {
                left: -90px;
                top: 50%;
                width: 70px;
                height: 1px;
                content: '';
                position: absolute;
                transform: translateY(-50%);
                background-color: var(--personalPortfolioMainColor);
            }
        }
        p {
            margin: {
                left: 0;
                right: 0;
            };
        }
    }
    &.style-three {
        max-width: 100%;

        h2 {
            position: relative;
            z-index: 1;

            span {
                display: inline-block;
                background-color: var(--whiteColor);
                padding: {
                    left: 30px;
                    right: 30px;
                };
            }
            &::before {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                background-color: #cfcfcf;
                height: 1px;
                z-index: -1;
            }
        }
    }
    &.style-four {
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 12px;
        position: relative;
        text-align: start;
        max-width: 100%;
        margin: {
            left: 0;
            right: 0;
            bottom: 45px;
        };
        h2 {
            font-size: 30px;
        }
        &::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 70px;
            height: 1px;
            background-color: var(--blackColor);
        }
    }
}
/*default-btn*/
.default-btn {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.2rem rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: inline-block;
    background-color: var(--startupMainColor);
    color: var(--whiteColor);
    position: relative;
    border-radius: 5px;
    border: none;
    padding: 13px 50px 13px 35px;
    font: {
        size: var(--fontSize);
        weight: 700;
    };
    i {
        position: absolute;
        right: 35px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 1px;
        font-size: 14px;
        transition: var(--transition);
    }
    &:hover {
        color: var(--whiteColor);
        background-color: var(--startupMainColor);
        box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.1), 0 2rem 3rem rgba(0, 0, 0, 0.15);

        i {
            right: 30px;
        }
    }
    &.marketing-color {
        background-color: var(--marketingMainColor);
        color: var(--whiteColor);

        &:hover {
            color: var(--whiteColor);
            background-color: var(--marketingMainColor);
        }
    }
    &.business-color {
        background: var(--businessGradientColor);
    }
    &.app-color {
        background: var(--appGradientColor);
    }
    &.saas-color {
        background: var(--saasGradientColor);
    }
    &.personal-portfolio-color {
        background: var(--personalPortfolioMainColor);
    }
    &.consulting-color {
        background: var(--consultingMainColor);
    }
    &.it-agency-color {
        background: var(--itAgencyGradientColor);
    }
    &.shop-color {
        background: var(--shopMainColor);
    }
    &.minimal-portfolio-color {
        background: var(--minimalPortfolioColor);
    }
}
/*form-control*/
.form-control {
    border-radius: 0;
    background-color: #f5f5f5 !important;
    box-shadow: unset !important;
    transition: var(--transition);
    border: none !important;
    height: 50px;
    padding-left: 15px;
    color: var(--blackColor);
    font: {
        size: var(--fontSize);
        weight: 500;
    };
    &::placeholder {
        color: #999999;
        transition: var(--transition);
    }
    &:focus {
        &::placeholder {
            color: transparent;
        }
    }
}
textarea.form-control {
    padding-top: 15px;
    height: auto;
}

/*================================================
Top Header Area CSS
=================================================*/
.header-area {
    &.p-absolute {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: auto;
        z-index: 3;

        .navbar-area {
            background-color: transparent;
        }
    }
}
.top-header-area {
    background-color: var(--startupMainColor);
    padding: {
        top: 12px;
        bottom: 12px;
    };
    .container-fluid {
        max-width: 1400px;
    }
    &.business-color {
        background: var(--businessGradientColor);
    }
    &.saas-color {
        background: var(--saasGradientColor);
    }
    &.top-header-style-two {
        .container-fluid {
            max-width: 1470px;
        }
    }
    &.top-header-style-three {
        .container-fluid {
            max-width: 1450px;
        }
    }
    &.it-agency-color {
        background: var(--itAgencyGradientColor);
    }
    &.bg-f3f4f7 {
        background: #f3f4f7;

        .top-header-social-links {
            li {
                a {
                    color: var(--blackColor);

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
            }
        }
        .top-header-contact-info {
            color: var(--blackColor);

            .number {
                color: var(--blackColor);
            }
            .email {
                color: var(--blackColor);
            }
            .lang-switcher {
                label {
                    color: var(--startupMainColor);
                }
                select {
                    color: var(--blackColor);

                    option {
                        color: var(--blackColor);
                    }
                }
            }
        }
        &.consulting-color {
            .top-header-social-links {
                li {
                    a {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                }
            }
            .top-header-contact-info {
                .lang-switcher {
                    label {
                        color: var(--consultingMainColor);
                    }
                }
            }
            .top-header-info {
                .number {
                    i {
                        color: var(--consultingMainColor);
                    }
                }
                .email {
                    i {
                        color: var(--consultingMainColor);
                    }
                }
            }
        }
    }
    &.shop-color {
        background: var(--shopMainColor);
    }
}
.top-header-info {
    .number {
        display: inline-block;
        position: relative;
        padding-left: 25px;

        i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--startupMainColor);
        }
    }
    .email {
        display: inline-block;
        position: relative;
        padding-left: 25px;
        margin-right: 20px;

        i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--startupMainColor);
        }
    }
}
.top-header-social-links {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;

    li {
        display: inline-block;
        margin-right: 15px;

        a {
            display: block;
            color: var(--whiteColor);

            &:hover {
                opacity: 0.8;
            }
        }
        &:last-child {
            margin-right: 0;
        }
    }
}
.top-header-contact-info {
    color: var(--whiteColor);

    .number {
        display: inline-block;
        color: var(--whiteColor);
        position: relative;
        padding-left: 25px;

        i {
            position: absolute;
            left: 0;
            top: 4px;
        }
    }
    .email {
        display: inline-block;
        color: var(--whiteColor);
        position: relative;
        padding-left: 25px;
        margin-right: 20px;

        i {
            position: absolute;
            left: 0;
            top: 4px;
        }
    }
    .lang-switcher {
        display: inline-block;
        position: relative;
        margin-left: 20px;
        padding-left: 20px;

        label {
            display: block;
            margin-bottom: 0;
            position: absolute;
            left: 0;
            top: 1px;
        }
        select {
            cursor: pointer;
            background-color: transparent;
            color: var(--whiteColor);
            border: none;

            option {
                color: var(--blackColor);
            }
        }
    }
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar-area {
    padding: 5px 0;
    position: relative;
    background-color: var(--whiteColor);

    &.p-absolute {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: auto;
        z-index: 9;
    }
    &.is-sticky {
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        position: fixed;
        background-color: var(--whiteColor) !important;
        box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;

        &.bg-dark {
            background-color: #06080e !important;
            box-shadow: 0 2px 28px 0 rgba(255, 255, 255, .05);
        }
    }
    &.bg-f9faff {
        background-color: #f9faff;
    }
    &.navbar-style-two {
        .noke-nav {
            .container-fluid {
                max-width: 1400px;
            }
        }
    }
    &.navbar-style-three {
        .noke-nav {
            .container-fluid {
                max-width: 1450px;
            }
        }
    }
    &.navbar-style-four {
        .noke-nav {
            .container-fluid {
                max-width: 1470px;
            }
        }
    }
    &.navbar-style-five {
        padding: {
            top: 0;
            bottom: 0;
        };
        .noke-nav {
            .container-fluid {
                max-width: 1450px;
            }
            .navbar {
                background-color: var(--whiteColor);
                padding: {
                    left: 25px;
                    right: 25px;
                };
            }
        }
    }
    &.bg-dark {
        color: var(--whiteColor);

        .noke-nav {
            .navbar {
                .navbar-nav {
                    .nav-item {
                        a {
                            color: var(--whiteColor);

                            &:hover, &:focus, &.active {
                                color: var(--startupMainColor);
                            }
                        }
                        &:hover, &.active {
                            a {
                                color: var(--startupMainColor);
                            }
                        }
                        .dropdown-menu {
                            li {
                                a {
                                    color: var(--blackColor);

                                    &:hover, &:focus, &.active {
                                        color: var(--startupMainColor);
                                    }
                                }
                                .dropdown-menu {
                                    li {
                                        a {
                                            color: var(--blackColor);

                                            &:hover, &:focus, &.active {
                                                color: var(--startupMainColor);
                                            }
                                        }
                                        .dropdown-menu {
                                            li {
                                                a {
                                                    color: var(--blackColor);

                                                    &:hover, &:focus, &.active {
                                                        color: var(--startupMainColor);
                                                    }
                                                }
                                                .dropdown-menu {
                                                    li {
                                                        a {
                                                            color: var(--blackColor);

                                                            &:hover, &:focus, &.active {
                                                                color: var(--startupMainColor);
                                                            }
                                                        }
                                                        &.active {
                                                            a {
                                                                color: var(--startupMainColor);
                                                            }
                                                        }
                                                    }
                                                }
                                                &.active {
                                                    a {
                                                        color: var(--startupMainColor);
                                                    }
                                                }
                                            }
                                        }
                                        &.active {
                                            a {
                                                color: var(--startupMainColor);
                                            }
                                        }
                                    }
                                }
                                &.active {
                                    a {
                                        color: var(--startupMainColor);
                                    }
                                }
                            }
                        }
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--startupMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--startupMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                .others-option {
                    .option-item {
                        .search-icon {
                            color: var(--startupMainColor);

                            &:hover {
                                color: var(--startupMainColor);
                            }
                        }
                        .social-links {
                            li {
                                a {
                                    color: var(--whiteColor);

                                    &:hover {
                                        color: var(--startupMainColor);
                                    }
                                }
                            }
                        }
                    }
                    .search-box {
                        .input-search {
                            color: var(--whiteColor);

                            &::placeholder {
                                color: var(--whiteColor);
                            }
                            &:focus {
                                &::placeholder {
                                    color: transparent;
                                }
                            }
                        }
                        button {
                            color: var(--whiteColor);

                            &:hover {
                                color: var(--startupMainColor);
                            }
                        }
                    }
                    .lang-switcher {
                        color: var(--whiteColor);

                        select {
                            color: var(--whiteColor);

                            option {
                                color: var(--blackColor);
                            }
                        }
                    }
                }
            }
        }
        .others-option-for-responsive {
            .dot-menu {
                .inner {
                    .circle {
                        background-color: var(--whiteColor);
                    }
                }
                &:hover {
                    .inner {
                        .circle {
                            background-color: var(--startupMainColor);
                        }
                    }
                }
            }
        }
    }
    &.color-white {
        &.is-sticky {
            background-color: #06080e !important;
            box-shadow: 0 2px 28px 0 rgba(255, 255, 255, .05);
        }
    }
}
.noke-responsive-nav {
    display: none;
}
.noke-nav {
    .container-fluid {
        max-width: 1400px;
    }
    .navbar {
        padding: 0;
        position: inherit;

        .navbar-brand {
            font-size: inherit;
            line-height: 1;
            padding: 0;
        }
        ul {
            padding-left: 0;
            list-style-type: none;
            margin-bottom: 0;
        }
        .navbar-nav {
            margin-left: auto;
            position: relative;

            .nav-item {
                position: relative;
                margin: {
                    left: 15px;
                    right: 15px;
                };
                a {
                    position: relative;
                    color: var(--blackColor);
                    transition: var(--transition);
                    font: {
                        weight: 700;
                        size: var(--fontSize);
                    };
                    padding: {
                        left: 0;
                        right: 0;
                        top: 30px;
                        bottom: 30px;
                    };
                    &:hover, &:focus, &.active {
                        color: var(--startupMainColor) !important;
                    }
                }
                .dropdown-toggle {
                    padding-right: 14px;

                    &::after {
                        display: none;
                    }
                    &::before {
                        -webkit-font-smoothing: antialiased;
                        text-rendering: auto;
                        position: absolute;
                        content: "\f078";
                        line-height: 1;
                        top: 37px;
                        right: 0;
                        font: {
                            family: "Font Awesome 5 Free";
                            variant-ligatures: normal;
                            variant-caps: normal;
                            style: normal;
                            weight: 900;
                            size: 10px;
                        };
                    }
                }
                &:last-child {
                    margin-right: 0;
                }
                &:first-child {
                    margin-left: 0;
                }
                &:hover, &.active {
                    a {
                        color: var(--startupMainColor);
                    }
                }
                .dropdown-menu {
                    left: 0;
                    top: 80px;
                    opacity: 0;
                    z-index: 99;
                    border: none;
                    width: 250px;
                    margin-top: 0;
                    display: block;
                    padding: 10px 0;
                    border-radius: 0;
                    position: absolute;
                    visibility: hidden;
                    background: var(--whiteColor);
                    transition: all 0.2s ease-in-out;
                    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);

                    li {
                        margin: 0;

                        a {
                            display: block;
                            padding: 9px 20px;
                            position: relative;
                            color: var(--blackColor);
                            font: {
                                size: 14.5px;
                                weight: 600;
                            };
                            i {
                                top: 50%;
                                margin: 0;
                                right: 15px;
                                font-size: 11px;
                                position: absolute;
                                transform: translateY(-50%);
                            }
                            &:hover, &:focus {
                                color: var(--startupMainColor);
                                padding-left: 25px;
                            }
                            &.active {
                                color: var(--startupMainColor);
                            }
                        }
                        .dropdown-menu {
                            top: 0;
                            opacity: 0;
                            left: auto;
                            right: 250px;
                            margin-top: 0;
                            visibility: hidden;
                            transform: translateX(0);

                            li {
                                a {
                                    color: var(--blackColor);
                                    padding-left: 20px;

                                    &:hover, &:focus {
                                        color: var(--startupMainColor);
                                        padding-left: 25px;
                                    }
                                    &.active {
                                        color: var(--startupMainColor);
                                    }
                                }
                                .dropdown-menu {
                                    top: 0;
                                    opacity: 0;
                                    right: 250px;
                                    visibility: hidden;

                                    li {
                                        a {
                                            color: var(--blackColor);
                                            padding-left: 20px;

                                            &:hover, &:focus {
                                                padding-left: 25px;
                                                color: var(--startupMainColor);
                                            }
                                            &.active {
                                                color: var(--startupMainColor);
                                            }
                                        }
                                        .dropdown-menu {
                                            top: 0;
                                            opacity: 0;
                                            right: 250px;
                                            visibility: hidden;

                                            li {
                                                a {
                                                    padding-left: 20px;
                                                    color: var(--blackColor);

                                                    &:hover, &:focus {
                                                        color: var(--startupMainColor);
                                                        padding-left: 25px;
                                                    }
                                                    &.active {
                                                        color: var(--startupMainColor);
                                                    }
                                                }
                                                &.active {
                                                    a {
                                                        color: var(--startupMainColor);
                                                    }
                                                }
                                                &:hover {
                                                    .dropdown-menu {
                                                        opacity: 1;
                                                        visibility: visible;
                                                    }
                                                }
                                            }
                                        }
                                        &.active {
                                            a {
                                                color: var(--startupMainColor);
                                            }
                                        }
                                        &:hover {
                                            .dropdown-menu {
                                                opacity: 1;
                                                visibility: visible;
                                            }
                                        }
                                    }
                                }
                                &.active {
                                    a {
                                        color: var(--startupMainColor);
                                    }
                                }
                                &:hover {
                                    .dropdown-menu {
                                        opacity: 1;
                                        visibility: visible;
                                    }
                                }
                            }
                        }
                        &.active {
                            a {
                                color: var(--startupMainColor);
                            }
                        }
                        &:hover {
                            .dropdown-menu {
                                opacity: 1;
                                margin-top: 0;
                                visibility: visible;
                            }
                        }
                    }
                }
                &:hover {
                    .dropdown-menu {
                        opacity: 1;
                        visibility: visible;
                    }
                }
                &.megamenu {
                    position: unset;

                    .dropdown-menu {
                        left: 0;
                        top: auto;
                        width: 100%;
                        padding: 25px;
                        margin-top: 0;
                        position: absolute;
                        transform: unset !important;

                        .submenu-title {
                            position: relative;
                            border-bottom: 1px solid #eeeeee;
                            padding-bottom: 8px;
                            text-transform: uppercase;
                            margin: {
                                bottom: 25px;
                                top: 30px;
                            };
                            font: {
                                size: var(--fontSize);
                                weight: 600;
                            };
                            &::before {
                                width: 50px;
                                height: 1px;
                                content: '';
                                position: absolute;
                                left: 0;
                                bottom: -1px;
                                background-color: var(--startupMainColor);
                            }
                            &:first-child {
                                margin-top: 0;
                            }
                        }
                        a {
                            border-bottom: none !important;
                        }
                        .megamenu-submenu {
                            li {
                                a {
                                    padding: 0;
                                    margin-top: 18px;
                                    color: var(--blackColor);

                                    .count {
                                        float: right;
                                        width: 20px;
                                        height: 20px;
                                        display: block;
                                        font-size: 12px;
                                        line-height: 20px;
                                        text-align: center;
                                        border-radius: 5px;
                                        background-color: #f4f4f4;
                                        transition: var(--transition);
                                    }
                                    &:hover, &.active {
                                        color: var(--startupMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        .others-option {
            margin-left: 30px;

            .option-item {
                position: relative;
                margin-left: 15px;
                top: 1px;

                &:first-child {
                    margin-left: 0;
                }
                .search-icon {
                    line-height: 1;
                    font-size: 18px;
                    cursor: pointer;
                    display: inline-block;
                    color: var(--blackColor);
                    transition: var(--transition);
                    border: {
                        left: 1px solid rgba(0, 0, 0, 0.20);
                        right: 1px solid rgba(0, 0, 0, 0.20);
                    };
                    padding: {
                        left: 15px;
                        right: 15px;
                    };
                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
                .social-links {
                    position: relative;
                    top: -1px;

                    span {
                        display: inline-block;
                        margin-left: 15px;
                        line-height: 1;

                        a {
                            font-size: 17px;
                            display: block;

                            &:hover {
                                color: var(--startupMainColor);
                            }
                        }
                        &:first-child {
                            margin-left: 0;
                        }
                    }
                }
                .link-btn {
                    display: inline-block;
                    font-size: 18px;
                    line-height: 1;
                }
                .icon-btn {
                    position: relative;
                    font-size: 18px;
                    line-height: 1;
                    padding-right: 10px;
                    margin-left: 5px;

                    span {
                        display: inline-block;
                        position: absolute;
                        right: 0;
                        top: -5px;
                        width: 16px;
                        height: 16px;
                        border-radius: 50%;
                        background-color: red;
                        text-align: center;
                        line-height: 17px;
                        color: var(--whiteColor);
                        font: {
                            weight: 700;
                            size: 9px;
                        };
                    }
                }
            }
            .search-box {
                position: relative;
                width: 200px;

                .input-search {
                    display: block;
                    width: 100%;
                    background-color: transparent;
                    border: none;
                    border-bottom: 1px solid #eeeeee;
                    height: auto;
                    padding-bottom: 8px;
                    font-size: 14px;
                    color: var(--blackColor);
                    transition: var(--transition);

                    &::placeholder {
                        transition: var(--transition);
                        color: var(--optionalColor);
                    }
                    &:focus {
                        border-color: var(--startupMainColor);

                        &::placeholder {
                            color: transparent;
                        }
                    }
                }
                button {
                    position: absolute;
                    right: 0;
                    top: 0;
                    background-color: transparent;
                    border: none;
                    color: var(--optionalColor);
                    transition: var(--transition);

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
            }
            .lang-switcher {
                position: relative;
                padding-left: 34px;
                position: relative;
                top: -2px;
                border-left: 1px solid rgba(0, 0, 0, 0.20);

                label {
                    display: block;
                    margin-bottom: 0;
                    position: absolute;
                    left: 15px;
                    top: 0;
                }
                select {
                    background-color: transparent;
                    cursor: pointer;
                    border: none;
                    margin-top: -3px;
                }
            }
        }
    }
}
.others-option-for-responsive {
    display: none;

    .dot-menu {
        top: -37px;
        right: 60px;
        height: 30px;
        z-index: 999;
        padding: 0 10px;
        cursor: pointer;
        position: absolute;

        .inner {
            display: flex;
            align-items: center;
            height: 30px;

            .circle {
                height: 5px;
                width: 5px;
                border-radius: 100%;
                margin: 0 2px;
                transition: var(--transition);
                background-color: var(--blackColor);
            }
        }
        &:hover {
            .inner {
                .circle {
                    background-color: var(--startupMainColor);
                }
            }
        }
    }
    .container {
        position: relative;

        .container {
            right: 0;
            top: 15px;
            opacity: 0;
            z-index: 2;
            max-width: 300px;
            margin-left: auto;
            visibility: hidden;
            position: absolute;
            transform: scaleX(0);
            transition: var(--transition);
            padding: {
                left: 15px;
                right: 15px;
            };
            &.active {
                opacity: 1;
                visibility: visible;
                transform: scaleX(1);
            }
        }
    }
    .option-inner {
        padding: 15px 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,.09);
        background-color: var(--whiteColor);
        text-align: center;

        .others-option {
            .option-item {
                position: relative;
                margin-left: 20px;
                display: inline-block;

                &:first-child {
                    margin-left: 0;
                }
                .search-icon {
                    line-height: 1;
                    font-size: 18px;
                    cursor: pointer;
                    display: inline-block;
                    color: var(--blackColor);
                    transition: var(--transition);
                    border-right: 1px solid rgba(0, 0, 0, 0.20);
                    padding-right: 20px;

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
                .social-links {
                    position: relative;
                    top: -1px;

                    span {
                        display: inline-block;
                        margin-left: 15px;
                        line-height: 1;

                        a {
                            font-size: 17px;
                            display: block;

                            &:hover {
                                color: var(--startupMainColor);
                            }
                        }
                        &:first-child {
                            margin-left: 0;
                        }
                    }
                }
            }
            .search-box {
                position: relative;
                width: 100%;

                .input-search {
                    display: block;
                    width: 100%;
                    background-color: transparent;
                    border: none;
                    border-bottom: 1px solid #eeeeee;
                    height: auto;
                    padding-bottom: 8px;
                    font-size: 14px;
                    color: var(--blackColor);
                    transition: var(--transition);

                    &::placeholder {
                        transition: var(--transition);
                        color: var(--optionalColor);
                    }
                    &:focus {
                        border-color: var(--startupMainColor);

                        &::placeholder {
                            color: transparent;
                        }
                    }
                }
                button {
                    position: absolute;
                    right: 0;
                    top: 0;
                    background-color: transparent;
                    border: none;
                    color: var(--optionalColor);
                    transition: var(--transition);

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
            }
            .lang-switcher {
                top: -2px;
                position: relative;
                padding-left: 25px;
                position: relative;
                margin-left: -10px;
                border-left: 1px solid rgba(0, 0, 0, 0.20);

                label {
                    display: block;
                    margin-bottom: 0;
                    position: absolute;
                    left: 10px;
                    top: 0;
                }
                select {
                    background-color: transparent;
                    cursor: pointer;
                    border: none;
                    margin-top: -3px;
                }
            }
            .link-btn {
                display: inline-block;
                font-size: 18px;
                line-height: 1;
            }
            .icon-btn {
                position: relative;
                font-size: 18px;
                line-height: 1;
                padding-right: 10px;
                margin-left: 5px;

                span {
                    display: inline-block;
                    position: absolute;
                    right: 0;
                    top: -5px;
                    width: 16px;
                    height: 16px;
                    border-radius: 50%;
                    background-color: red;
                    text-align: center;
                    line-height: 17px;
                    color: var(--whiteColor);
                    font: {
                        weight: 700;
                        size: 9px;
                    };
                }
            }
        }
    }
}
.marketing-color {
    .noke-nav {
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        &:hover, &:focus, &.active {
                            color: var(--marketingMainColor);
                        }
                    }
                    &:hover, &.active {
                        a {
                            color: var(--marketingMainColor);
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: var(--blackColor);

                                &:hover, &:focus, &.active {
                                    color: var(--marketingMainColor);
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: var(--blackColor);

                                        &:hover, &:focus, &.active {
                                            color: var(--marketingMainColor);
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: var(--blackColor);

                                                &:hover, &:focus, &.active {
                                                    color: var(--marketingMainColor);
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: var(--blackColor);

                                                        &:hover, &:focus, &.active {
                                                            color: var(--marketingMainColor);
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: var(--marketingMainColor);
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: var(--marketingMainColor);
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: var(--marketingMainColor);
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: var(--marketingMainColor);
                                }
                            }
                        }
                    }
                    &.megamenu {
                        .dropdown-menu {
                            .submenu-title {
                                &::before {
                                    background-color: var(--marketingMainColor);
                                }
                            }
                            .megamenu-submenu {
                                li {
                                    a {
                                        &:hover, &.active {
                                            color: var(--marketingMainColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--marketingMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--marketingMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--marketingMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--marketingMainColor);
                        }
                    }
                }
            }
        }
    }
    .others-option-for-responsive {
        .dot-menu {
            &:hover {
                .inner {
                    .circle {
                        background-color: var(--marketingMainColor);
                    }
                }
            }
        }
        .option-inner {
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--marketingMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--marketingMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--marketingMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--marketingMainColor);
                        }
                    }
                }
            }
        }
    }
}
.business-color {
    .noke-nav {
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        &:hover, &:focus, &.active {
                            color: var(--businessMainColor);
                        }
                    }
                    &:hover, &.active {
                        a {
                            color: var(--businessMainColor);
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: var(--blackColor);

                                &:hover, &:focus, &.active {
                                    color: var(--businessMainColor);
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: var(--blackColor);

                                        &:hover, &:focus, &.active {
                                            color: var(--businessMainColor);
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: var(--blackColor);

                                                &:hover, &:focus, &.active {
                                                    color: var(--businessMainColor);
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: var(--blackColor);

                                                        &:hover, &:focus, &.active {
                                                            color: var(--businessMainColor);
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: var(--businessMainColor);
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: var(--businessMainColor);
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: var(--businessMainColor);
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: var(--businessMainColor);
                                }
                            }
                        }
                    }
                    &.megamenu {
                        .dropdown-menu {
                            .submenu-title {
                                &::before {
                                    background-color: var(--businessMainColor);
                                }
                            }
                            .megamenu-submenu {
                                li {
                                    a {
                                        &:hover, &.active {
                                            color: var(--businessMainColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--businessMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--businessMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--businessMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--businessMainColor);
                        }
                    }
                }
            }
        }
    }
    .others-option-for-responsive {
        .dot-menu {
            &:hover {
                .inner {
                    .circle {
                        background-color: var(--businessMainColor);
                    }
                }
            }
        }
        .option-inner {
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--businessMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--businessMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--businessMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--businessMainColor);
                        }
                    }
                }
            }
        }
    }
}
.app-color {
    .noke-nav {
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        &:hover, &:focus, &.active {
                            color: var(--appMainColor);
                        }
                    }
                    &:hover, &.active {
                        a {
                            color: var(--appMainColor);
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: var(--blackColor);

                                &:hover, &:focus, &.active {
                                    color: var(--appMainColor);
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: var(--blackColor);

                                        &:hover, &:focus, &.active {
                                            color: var(--appMainColor);
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: var(--blackColor);

                                                &:hover, &:focus, &.active {
                                                    color: var(--appMainColor);
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: var(--blackColor);

                                                        &:hover, &:focus, &.active {
                                                            color: var(--appMainColor);
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: var(--appMainColor);
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: var(--appMainColor);
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: var(--appMainColor);
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: var(--appMainColor);
                                }
                            }
                        }
                    }
                    &.megamenu {
                        .dropdown-menu {
                            .submenu-title {
                                &::before {
                                    background-color: var(--appMainColor);
                                }
                            }
                            .megamenu-submenu {
                                li {
                                    a {
                                        &:hover, &.active {
                                            color: var(--appMainColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--appMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--appMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--appMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--appMainColor);
                        }
                    }
                }
            }
        }
    }
    .others-option-for-responsive {
        .dot-menu {
            &:hover {
                .inner {
                    .circle {
                        background-color: var(--appMainColor);
                    }
                }
            }
        }
        .option-inner {
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--appMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--appMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--appMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--appMainColor);
                        }
                    }
                }
            }
        }
    }
}
.personal-portfolio-color {
    .noke-nav {
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        &:hover, &:focus, &.active {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                    &:hover, &.active {
                        a {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: var(--blackColor);

                                &:hover, &:focus, &.active {
                                    color: var(--personalPortfolioMainColor);
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: var(--blackColor);

                                        &:hover, &:focus, &.active {
                                            color: var(--personalPortfolioMainColor);
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: var(--blackColor);

                                                &:hover, &:focus, &.active {
                                                    color: var(--personalPortfolioMainColor);
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: var(--blackColor);

                                                        &:hover, &:focus, &.active {
                                                            color: var(--personalPortfolioMainColor);
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: var(--personalPortfolioMainColor);
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: var(--personalPortfolioMainColor);
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: var(--personalPortfolioMainColor);
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: var(--personalPortfolioMainColor);
                                }
                            }
                        }
                    }
                    &.megamenu {
                        .dropdown-menu {
                            .submenu-title {
                                &::before {
                                    background-color: var(--personalPortfolioMainColor);
                                }
                            }
                            .megamenu-submenu {
                                li {
                                    a {
                                        &:hover, &.active {
                                            color: var(--personalPortfolioMainColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--personalPortfolioMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--personalPortfolioMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                }
            }
        }
    }
    .others-option-for-responsive {
        .dot-menu {
            &:hover {
                .inner {
                    .circle {
                        background-color: var(--personalPortfolioMainColor);
                    }
                }
            }
        }
        .option-inner {
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--personalPortfolioMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--personalPortfolioMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                }
            }
        }
    }
}
.saas-color {
    &.bg-dark {
        .noke-nav {
            .navbar {
                .navbar-nav {
                    .nav-item {
                        a {
                            &:hover, &:focus, &.active {
                                color: var(--saasMainColor);
                            }
                        }
                        &:hover, &.active {
                            a {
                                color: var(--saasMainColor);
                            }
                        }
                        .dropdown-menu {
                            li {
                                a {
                                    color: var(--blackColor);

                                    &:hover, &:focus, &.active {
                                        color: var(--saasMainColor);
                                    }
                                }
                                .dropdown-menu {
                                    li {
                                        a {
                                            color: var(--blackColor);

                                            &:hover, &:focus, &.active {
                                                color: var(--saasMainColor);
                                            }
                                        }
                                        .dropdown-menu {
                                            li {
                                                a {
                                                    color: var(--blackColor);

                                                    &:hover, &:focus, &.active {
                                                        color: var(--saasMainColor);
                                                    }
                                                }
                                                .dropdown-menu {
                                                    li {
                                                        a {
                                                            color: var(--blackColor);

                                                            &:hover, &:focus, &.active {
                                                                color: var(--saasMainColor);
                                                            }
                                                        }
                                                        &.active {
                                                            a {
                                                                color: var(--saasMainColor);
                                                            }
                                                        }
                                                    }
                                                }
                                                &.active {
                                                    a {
                                                        color: var(--saasMainColor);
                                                    }
                                                }
                                            }
                                        }
                                        &.active {
                                            a {
                                                color: var(--saasMainColor);
                                            }
                                        }
                                    }
                                }
                                &.active {
                                    a {
                                        color: var(--saasMainColor);
                                    }
                                }
                            }
                        }
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--saasMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--saasMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                .others-option {
                    .option-item {
                        .search-icon {
                            &:hover {
                                color: var(--saasMainColor);
                            }
                        }
                        .social-links {
                            span {
                                a {
                                    &:hover {
                                        color: var(--saasMainColor);
                                    }
                                }
                            }
                        }
                    }
                    .search-box {
                        .input-search {
                            &:focus {
                                border-color: var(--saasMainColor);
                            }
                        }
                        button {
                            &:hover {
                                color: var(--saasMainColor);
                            }
                        }
                    }
                }
            }
        }
        .others-option-for-responsive {
            .dot-menu {
                &:hover {
                    .inner {
                        .circle {
                            background-color: var(--saasMainColor);
                        }
                    }
                }
            }
            .option-inner {
                .others-option {
                    .option-item {
                        .search-icon {
                            &:hover {
                                color: var(--saasMainColor);
                            }
                        }
                        .social-links {
                            li {
                                a {
                                    &:hover {
                                        color: var(--saasMainColor);
                                    }
                                }
                            }
                        }
                    }
                    .search-box {
                        .input-search {
                            &:focus {
                                border-color: var(--saasMainColor);
                            }
                        }
                        button {
                            &:hover {
                                color: var(--saasMainColor);
                            }
                        }
                    }
                }
            }
        }
    }
}
.color-white {
    .noke-nav {
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        color: var(--whiteColor);

                        &:hover, &:focus, &.active {
                            color: var(--startupMainColor);
                        }
                    }
                    &:hover, &.active {
                        a {
                            color: var(--startupMainColor);
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: var(--blackColor);

                                &:hover, &:focus, &.active {
                                    color: var(--startupMainColor);
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: var(--blackColor);

                                        &:hover, &:focus, &.active {
                                            color: var(--startupMainColor);
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: var(--blackColor);

                                                &:hover, &:focus, &.active {
                                                    color: var(--startupMainColor);
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: var(--blackColor);

                                                        &:hover, &:focus, &.active {
                                                            color: var(--startupMainColor);
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: var(--startupMainColor);
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: var(--startupMainColor);
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: var(--startupMainColor);
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: var(--startupMainColor);
                                }
                            }
                        }
                    }
                    &.megamenu {
                        .dropdown-menu {
                            .submenu-title {
                                &::before {
                                    background-color: var(--startupMainColor);
                                }
                            }
                            .megamenu-submenu {
                                li {
                                    a {
                                        &:hover, &.active {
                                            color: var(--startupMainColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--startupMainColor);
                        }
                    }
                    .social-links {
                        li {
                            a {
                                color: var(--whiteColor);

                                &:hover {
                                    color: var(--startupMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        color: var(--whiteColor);

                        &::placeholder {
                            color: var(--whiteColor);
                        }
                        &:focus {
                            &::placeholder {
                                color: transparent;
                            }
                        }
                    }
                    button {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--startupMainColor);
                        }
                    }
                }
                .lang-switcher {
                    color: var(--whiteColor);

                    select {
                        color: var(--whiteColor);

                        option {
                            color: var(--blackColor);
                        }
                    }
                }
            }
        }
    }
    .others-option-for-responsive {
        .dot-menu {
            .inner {
                .circle {
                    background-color: var(--whiteColor);
                }
            }
            &:hover {
                .inner {
                    .circle {
                        background-color: var(--startupMainColor);
                    }
                }
            }
        }
    }
}
.it-agency-color {
    &.color-white {
        .noke-nav {
            .navbar {
                .navbar-nav {
                    .nav-item {
                        a {
                            color: var(--whiteColor);

                            &:hover, &:focus, &.active {
                                color: var(--itAgencyMainColor);
                            }
                        }
                        &:hover, &.active {
                            a {
                                color: var(--itAgencyMainColor);
                            }
                        }
                        .dropdown-menu {
                            li {
                                a {
                                    color: var(--blackColor);

                                    &:hover, &:focus, &.active {
                                        color: var(--itAgencyMainColor);
                                    }
                                }
                                .dropdown-menu {
                                    li {
                                        a {
                                            color: var(--blackColor);

                                            &:hover, &:focus, &.active {
                                                color: var(--itAgencyMainColor);
                                            }
                                        }
                                        .dropdown-menu {
                                            li {
                                                a {
                                                    color: var(--blackColor);

                                                    &:hover, &:focus, &.active {
                                                        color: var(--itAgencyMainColor);
                                                    }
                                                }
                                                .dropdown-menu {
                                                    li {
                                                        a {
                                                            color: var(--blackColor);

                                                            &:hover, &:focus, &.active {
                                                                color: var(--itAgencyMainColor);
                                                            }
                                                        }
                                                        &.active {
                                                            a {
                                                                color: var(--itAgencyMainColor);
                                                            }
                                                        }
                                                    }
                                                }
                                                &.active {
                                                    a {
                                                        color: var(--itAgencyMainColor);
                                                    }
                                                }
                                            }
                                        }
                                        &.active {
                                            a {
                                                color: var(--itAgencyMainColor);
                                            }
                                        }
                                    }
                                }
                                &.active {
                                    a {
                                        color: var(--itAgencyMainColor);
                                    }
                                }
                            }
                        }
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--itAgencyMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--itAgencyMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                .others-option {
                    .option-item {
                        .search-icon {
                            color: var(--itAgencyMainColor);

                            &:hover {
                                color: var(--itAgencyMainColor);
                            }
                        }
                        .social-links {
                            li {
                                a {
                                    &:hover {
                                        color: var(--itAgencyMainColor);
                                    }
                                }
                            }
                        }
                    }
                    .search-box {
                        button {
                            &:hover {
                                color: var(--itAgencyMainColor);
                            }
                        }
                    }
                }
            }
        }
        .others-option-for-responsive {
            .dot-menu {
                &:hover {
                    .inner {
                        .circle {
                            background-color: var(--itAgencyMainColor);
                        }
                    }
                }
            }
            .option-inner {
                .others-option {
                    .option-item {
                        .search-icon {
                            &:hover {
                                color: var(--itAgencyMainColor);
                            }
                        }
                        .social-links {
                            span {
                                a {
                                    &:hover {
                                        color: var(--itAgencyMainColor);
                                    }
                                }
                            }
                        }
                    }
                    .search-box {
                        .input-search {
                            &:focus {
                                border-color: var(--itAgencyMainColor);
                            }
                        }
                        button {
                            &:hover {
                                color: var(--itAgencyMainColor);
                            }
                        }
                    }
                }
            }
        }
    }
}
.consulting-color {
    .noke-nav {
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        &:hover, &:focus, &.active {
                            color: var(--consultingMainColor);
                        }
                    }
                    &:hover, &.active {
                        a {
                            color: var(--consultingMainColor);
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: var(--blackColor);

                                &:hover, &:focus, &.active {
                                    color: var(--consultingMainColor);
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: var(--blackColor);

                                        &:hover, &:focus, &.active {
                                            color: var(--consultingMainColor);
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: var(--blackColor);

                                                &:hover, &:focus, &.active {
                                                    color: var(--consultingMainColor);
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: var(--blackColor);

                                                        &:hover, &:focus, &.active {
                                                            color: var(--consultingMainColor);
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: var(--consultingMainColor);
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: var(--consultingMainColor);
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: var(--consultingMainColor);
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: var(--consultingMainColor);
                                }
                            }
                        }
                    }
                    &.megamenu {
                        .dropdown-menu {
                            .submenu-title {
                                &::before {
                                    background-color: var(--consultingMainColor);
                                }
                            }
                            .megamenu-submenu {
                                li {
                                    a {
                                        &:hover, &.active {
                                            color: var(--consultingMainColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--consultingMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--consultingMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                }
            }
        }
    }
    .others-option-for-responsive {
        .dot-menu {
            &:hover {
                .inner {
                    .circle {
                        background-color: var(--consultingMainColor);
                    }
                }
            }
        }
        .option-inner {
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--consultingMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--consultingMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                }
            }
        }
    }
}
.shop-color {
    .noke-nav {
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        &:hover, &:focus, &.active {
                            color: var(--shopMainColor);
                        }
                    }
                    &:hover, &.active {
                        a {
                            color: var(--shopMainColor);
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: var(--blackColor);

                                &:hover, &:focus, &.active {
                                    color: var(--shopMainColor);
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: var(--blackColor);

                                        &:hover, &:focus, &.active {
                                            color: var(--shopMainColor);
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: var(--blackColor);

                                                &:hover, &:focus, &.active {
                                                    color: var(--shopMainColor);
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: var(--blackColor);

                                                        &:hover, &:focus, &.active {
                                                            color: var(--shopMainColor);
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: var(--shopMainColor);
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: var(--shopMainColor);
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: var(--shopMainColor);
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: var(--shopMainColor);
                                }
                            }
                        }
                    }
                    &.megamenu {
                        .dropdown-menu {
                            .submenu-title {
                                &::before {
                                    background-color: var(--shopMainColor);
                                }
                            }
                            .megamenu-submenu {
                                li {
                                    a {
                                        &:hover, &.active {
                                            color: var(--shopMainColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--shopMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--shopMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--shopMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--shopMainColor);
                        }
                    }
                }
            }
        }
    }
    .others-option-for-responsive {
        .dot-menu {
            &:hover {
                .inner {
                    .circle {
                        background-color: var(--shopMainColor);
                    }
                }
            }
        }
        .option-inner {
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--shopMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--shopMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--shopMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--shopMainColor);
                        }
                    }
                }
            }
        }
    }
}
.blog-color {
    .noke-nav {
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        &:hover, &:focus, &.active {
                            color: var(--blackColor);
                        }
                    }
                    &:hover, &.active {
                        a {
                            color: var(--blackColor);
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: var(--blackColor);

                                &:hover, &:focus, &.active {
                                    color: var(--blackColor);
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: var(--blackColor);

                                        &:hover, &:focus, &.active {
                                            color: var(--blackColor);
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: var(--blackColor);

                                                &:hover, &:focus, &.active {
                                                    color: var(--blackColor);
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: var(--blackColor);

                                                        &:hover, &:focus, &.active {
                                                            color: var(--blackColor);
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: var(--blackColor);
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: var(--blackColor);
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: var(--blackColor);
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: var(--blackColor);
                                }
                            }
                        }
                    }
                    &.megamenu {
                        .dropdown-menu {
                            .submenu-title {
                                &::before {
                                    background-color: var(--blackColor);
                                }
                            }
                            .megamenu-submenu {
                                li {
                                    a {
                                        &:hover, &.active {
                                            color: var(--blackColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--blackColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--blackColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--blackColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--blackColor);
                        }
                    }
                }
            }
        }
    }
    .others-option-for-responsive {
        .dot-menu {
            &:hover {
                .inner {
                    .circle {
                        background-color: var(--blackColor);
                    }
                }
            }
        }
        .option-inner {
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--blackColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--blackColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--blackColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--blackColor);
                        }
                    }
                }
            }
        }
    }
}
.minimal-portfolio-color {
    .noke-nav {
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        &:hover, &:focus, &.active {
                            color: var(--minimalPortfolioColor);
                        }
                    }
                    &:hover, &.active {
                        a {
                            color: var(--minimalPortfolioColor);
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: var(--blackColor);

                                &:hover, &:focus, &.active {
                                    color: var(--minimalPortfolioColor);
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: var(--blackColor);

                                        &:hover, &:focus, &.active {
                                            color: var(--minimalPortfolioColor);
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: var(--blackColor);

                                                &:hover, &:focus, &.active {
                                                    color: var(--minimalPortfolioColor);
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: var(--blackColor);

                                                        &:hover, &:focus, &.active {
                                                            color: var(--minimalPortfolioColor);
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: var(--minimalPortfolioColor);
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: var(--minimalPortfolioColor);
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: var(--minimalPortfolioColor);
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: var(--minimalPortfolioColor);
                                }
                            }
                        }
                    }
                    &.megamenu {
                        .dropdown-menu {
                            .submenu-title {
                                &::before {
                                    background-color: var(--minimalPortfolioColor);
                                }
                            }
                            .megamenu-submenu {
                                li {
                                    a {
                                        &:hover, &.active {
                                            color: var(--minimalPortfolioColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--minimalPortfolioColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--minimalPortfolioColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--minimalPortfolioColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--minimalPortfolioColor);
                        }
                    }
                }
            }
        }
    }
    .others-option-for-responsive {
        .dot-menu {
            &:hover {
                .inner {
                    .circle {
                        background-color: var(--minimalPortfolioColor);
                    }
                }
            }
        }
        .option-inner {
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--minimalPortfolioColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--minimalPortfolioColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--minimalPortfolioColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--minimalPortfolioColor);
                        }
                    }
                }
            }
        }
    }
}
// Mobile and iPad Navbar
@media only screen and (max-width: 1199px) {

    .header-area {
        &.p-absolute {
            .navbar-area {
                &.navbar-style-five {
                    border-bottom: none;
                    background-color: var(--whiteColor);
                }
            }
        }
    }
    .navbar-area {
        padding: {
            top: 15px;
            bottom: 15px;
        };
        &.is-sticky {
            padding: {
                top: 15px;
                bottom: 15px;
            };
        }
        &.bg-dark {
            border-bottom: 1px solid rgba(255, 255, 255, .07);

            .noke-responsive-nav {
                .mean-container {
                    a {
                        &.meanmenu-reveal {
                            color: var(--whiteColor);

                            span {
                                background: var(--whiteColor);
                            }
                        }
                    }
                }
                .others-option {
                    .search-box {
                        .input-search {
                            border-bottom: 1px solid #6e6a6a;
                            color: var(--whiteColor);

                            &::placeholder {
                                color: var(--whiteColor);
                            }
                            &:focus {
                                border-color: var(--whiteColor);
                            }
                        }
                        button {
                            color: var(--whiteColor);

                            &:hover {
                                color: var(--whiteColor);
                            }
                        }
                    }
                }
            }
        }
        &.color-white {
            border-bottom: 1px solid rgba(255, 255, 255, .07);

            .noke-responsive-nav {
                .mean-container {
                    a {
                        &.meanmenu-reveal {
                            color: var(--whiteColor);

                            span {
                                background: var(--whiteColor);
                            }
                        }
                    }
                }
                .others-option {
                    .search-box {
                        .input-search {
                            border-bottom: 1px solid #6e6a6a;
                            color: var(--whiteColor);

                            &::placeholder {
                                color: var(--whiteColor);
                            }
                            &:focus {
                                border-color: var(--whiteColor);
                            }
                        }
                        button {
                            color: var(--whiteColor);

                            &:hover {
                                color: var(--whiteColor);
                            }
                        }
                    }
                }
            }
        }
        &.navbar-style-five {
            border-bottom: 1px solid #eeeeee;
            padding: {
                top: 15px;
                bottom: 15px;
            };
        }
    }
    .noke-responsive-nav {
        display: block;

        .noke-responsive-menu {
            position: relative;

            &.mean-container {
                .mean-nav {
                    margin-top: 63px;
                    background-color: var(--whiteColor);

                    ul {
                        font-size: 14px;
                        border: none !important;

                        li {
                            a {
                                color: var(--blackColor);
                                border-top-color: #DBEEFD;
                                text-transform: unset;
                                font-weight: 500;

                                i {
                                    display: none;
                                }
                                &.mean-expand {
                                    width: 50%;
                                    height: 28px;
                                    text-align: end;
                                    padding: 11px!important;
                                    background: transparent !important;
                                    border: {
                                        left: none !important;
                                        bottom: none !important;
                                    };
                                }
                                &.active {
                                    color: var(--startupMainColor);
                                }
                            }
                            li {
                                a {
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                }
                .navbar-nav {
                    height: 301px;
                    overflow-y: scroll;
                    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
                }
            }
        }
        .mean-container {
            a {
                &.meanmenu-reveal {
                    top: 0;
                    padding: 0;
                    width: 35px;
                    height: 30px;
                    padding-top: 13px;
                    color: var(--blackColor);
                    font-family: var(--fontFamily);

                    span {
                        background: var(--blackColor);
                        height: 4px;
                        margin-top: -6px;
                        border-radius: 3px;
                        position: relative;
                        top: 8px;
                    }
                }
            }
            .mean-bar {
                background: transparent;
                position: absolute;
                z-index: 999;
                padding: 0;
            }
            .navbar-nav {
                .nav-item {
                    &.megamenu {
                        .dropdown-menu {
                            .nav-item {
                                width: 90%;
                                overflow: hidden;
                                padding: 1em 5% 5px;

                                .row {
                                    display: block;
                                    flex-wrap: unset;
                                    margin: {
                                        left: 0;
                                        right: 0;
                                        top: -20px;
                                    };
                                    .col {
                                        flex-basis: unset;
                                        flex-grow: unset;
                                        max-width: 100%;
                                        padding: {
                                            left: 0;
                                            right: 0;
                                            top: 20px;
                                        };
                                        &:last-child {
                                            margin-bottom: 15px;
                                        }
                                    }
                                }
                                a {
                                    width: 100%;
                                    float: unset;
                                    display: block;

                                    &.p-0 {
                                        border: none !important;
                                        margin-top: 15px;
                                    }
                                }
                            }
                            .submenu-title {
                                position: relative;
                                padding-bottom: 8px;
                                color: var(--blackColor);
                                text-transform: uppercase;
                                border-bottom: 1px solid #eeeeee;
                                margin: {
                                    bottom: 5px;
                                    top: 25px;
                                    left: 0;
                                    right: 0;
                                };
                                font: {
                                    size: 12.5px;
                                    weight: 600;
                                };
                                &::before {
                                    width: 30px;
                                    height: 1px;
                                    content: '';
                                    position: absolute;
                                    left: 0;
                                    bottom: -1px;
                                    background-color: var(--startupMainColor);
                                }
                                &:first-child {
                                    margin-top: 0;
                                }
                            }
                            a {
                                border-bottom: none !important;
                            }
                            .mean-expand {
                                display: none !important;
                            }
                            .megamenu-submenu {
                                width: auto;
                                overflow: hidden;
                                display: block !important;
                                padding: {
                                    left: 0;
                                    right: 0;
                                };
                                li {
                                    a {
                                        padding: 0;
                                        border: none;
                                        margin-top: 15px;
                                        font-weight: 500;
                                        color: var(--blackColor);

                                        &:hover, &.active {
                                            color: var(--startupMainColor);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        .dropdown-toggle {
            &::after {
                display: none !important;
            }
        }
        .others-option {
            display: none !important;
            position: absolute;
            right: 60px;
            top: 16px;

            .option-item {
                position: relative;
                margin-left: 20px;
                display: inline-block;

                &:first-child {
                    margin-left: 0;
                }
                .search-icon {
                    line-height: 1;
                    font-size: 18px;
                    cursor: pointer;
                    display: inline-block;
                    color: var(--blackColor);
                    transition: var(--transition);
                    border-right: 1px solid rgba(0, 0, 0, 0.20);
                    padding-right: 20px;

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
                .social-links {
                    position: relative;
                    top: -1px;

                    span {
                        display: inline-block;
                        margin-left: 15px;
                        line-height: 1;

                        a {
                            font-size: 17px;
                            display: block;

                            &:hover {
                                color: var(--startupMainColor);
                            }
                        }
                        &:first-child {
                            margin-left: 0;
                        }
                    }
                }
            }
            .search-box {
                position: relative;
                width: 250px;
                top: -7px;

                .input-search {
                    display: block;
                    width: 100%;
                    background-color: transparent;
                    border: none;
                    border-bottom: 1px solid #eeeeee;
                    height: auto;
                    padding-bottom: 8px;
                    font-size: 14px;
                    color: var(--blackColor);
                    transition: var(--transition);

                    &::placeholder {
                        transition: var(--transition);
                        color: var(--optionalColor);
                    }
                    &:focus {
                        border-color: var(--startupMainColor);

                        &::placeholder {
                            color: transparent;
                        }
                    }
                }
                button {
                    position: absolute;
                    right: 0;
                    top: 0;
                    background-color: transparent;
                    border: none;
                    color: var(--optionalColor);
                    transition: var(--transition);

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
            }
            .lang-switcher {
                top: -2px;
                position: relative;
                padding-left: 25px;
                position: relative;
                margin-left: -10px;
                border-left: 1px solid rgba(0, 0, 0, 0.20);

                label {
                    display: block;
                    margin-bottom: 0;
                    position: absolute;
                    left: 10px;
                    top: 0;
                }
                select {
                    background-color: transparent;
                    cursor: pointer;
                    border: none;
                    margin-top: -3px;
                }
            }
            .link-btn {
                display: inline-block;
                font-size: 18px;
                line-height: 1;
            }
            .icon-btn {
                position: relative;
                font-size: 18px;
                line-height: 1;
                padding-right: 10px;
                margin-left: 5px;

                span {
                    display: inline-block;
                    position: absolute;
                    right: 0;
                    top: -5px;
                    width: 16px;
                    height: 16px;
                    border-radius: 50%;
                    background-color: red;
                    text-align: center;
                    line-height: 17px;
                    color: var(--whiteColor);
                    font: {
                        weight: 700;
                        size: 9px;
                    };
                }
            }
        }
        .logo {
            position: relative;
            width: 60%;
            z-index: 999;
        }
    }
    .noke-nav {
        display: none;
    }
    .others-option-for-responsive {
        display: block;
    }
    .marketing-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--marketingMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--marketingMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--marketingMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--marketingMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--marketingMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--marketingMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--marketingMainColor);
                        }
                    }
                }
            }
        }
    }
    .business-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--businessMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--businessMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--businessMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--businessMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--businessMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--businessMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--businessMainColor);
                        }
                    }
                }
            }
        }
    }
    .app-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--appMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--appMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--appMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--appMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--appMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--appMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--appMainColor);
                        }
                    }
                }
            }
        }
    }
    .it-agency-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--itAgencyMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--itAgencyMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--itAgencyMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--itAgencyMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--itAgencyMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--itAgencyMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--itAgencyMainColor);
                        }
                    }
                }
            }
        }
    }
    .consulting-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--consultingMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--consultingMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--consultingMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--consultingMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--consultingMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                }
            }
        }
    }
    .saas-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--saasMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--saasMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--saasMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--saasMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--saasMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--saasMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--saasMainColor);
                        }
                    }
                }
            }
        }
    }
    .shop-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--shopMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--shopMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--shopMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--shopMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--shopMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--shopMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--shopMainColor);
                        }
                    }
                }
            }
        }
    }
    .blog-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--personalPortfolioMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--personalPortfolioMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--personalPortfolioMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--personalPortfolioMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--personalPortfolioMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                }
            }
        }
    }
    .personal-portfolio-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--personalPortfolioMainColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--personalPortfolioMainColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--personalPortfolioMainColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--personalPortfolioMainColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--personalPortfolioMainColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                }
            }
        }
    }
    .minimal-portfolio-color {
        .noke-responsive-nav {
            .noke-responsive-menu {
                &.mean-container {
                    .mean-nav {
                        ul {
                            li {
                                a {
                                    &.active {
                                        color: var(--minimalPortfolioColor);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .mean-container {
                .navbar-nav {
                    .nav-item {
                        &.megamenu {
                            .dropdown-menu {
                                .submenu-title {
                                    &::before {
                                        background-color: var(--minimalPortfolioColor);
                                    }
                                }
                                .megamenu-submenu {
                                    li {
                                        a {
                                            &:hover, &.active {
                                                color: var(--minimalPortfolioColor);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .others-option {
                .option-item {
                    .search-icon {
                        &:hover {
                            color: var(--minimalPortfolioColor);
                        }
                    }
                    .social-links {
                        span {
                            a {
                                &:hover {
                                    color: var(--minimalPortfolioColor);
                                }
                            }
                        }
                    }
                }
                .search-box {
                    .input-search {
                        &:focus {
                            border-color: var(--minimalPortfolioColor);
                        }
                    }
                    button {
                        &:hover {
                            color: var(--minimalPortfolioColor);
                        }
                    }
                }
            }
        }
    }

}

/*================================================
Search Overlay CSS
=================================================*/
.search-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    overflow: hidden;

    .search-overlay-layer {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        transform: translateX(100%);

        &:nth-child(1) {
            left: 0;
            background-color: rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease-in-out 0s;
        }
        &:nth-child(2) {
            left: 0;
            background-color: rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease-in-out 0.3s;
        }
        &:nth-child(3) {
            left: 0;
            background-color: rgba(0, 0, 0, 0.7);
            transition: all 0.9s ease-in-out 0.6s;
        }
    }
    .search-overlay-close {
        position: absolute;
        top: 40px;
        right: 40px;
        width: 50px;
        z-index: 2;
        text-align: center;
        cursor: pointer;
        padding: 10px;
        transition: all 0.9s ease-in-out 1.5s;
        opacity: 0;
        visibility: hidden;

        .search-overlay-close-line {
            width: 100%;
            height: 3px;
            float: left;
            margin-bottom: 5px;
            background-color: var(--whiteColor);
            transition: all 500ms ease;

            &:nth-child(1) {
                transform: rotate(45deg);
            }
            &:nth-child(2) {
                margin-top: -7px;
                transform: rotate(-45deg);
            }
        }
        &:hover {
            .search-overlay-close-line {
                background: red;
                transform: rotate(180deg);
            }
        }
    }
    .search-overlay-form {
        transform: translateY(-50%) translateX(-50%);
        transition: all 0.9s ease-in-out 1.4s;
        visibility: hidden;
        position: absolute;
        max-width: 600px;
        width: 600px;
        opacity: 0;
        z-index: 2;
        left: 50%;
        top: 50%;

        form {
            position: relative;

            .input-search {
                display: block;
                width: 100%;
                height: 70px;
                border: none;
                background-color: transparent;
                color: var(--whiteColor);
                padding: 0;
                transition: var(--transition);
                border-bottom: 1px solid rgba(255, 255, 255, .40);
                font: {
                    size: 22px;
                    weight: 500;
                };
                &::placeholder {
                    transition: var(--transition);
                    color: rgba(255, 255, 255, .60);
                    font-weight: 100;
                }
                &:focus {
                    border-color: var(--whiteColor);

                    &::placeholder {
                        color: transparent;
                    }
                }
            }
            button {
                position: absolute;
                right: 0;
                top: 13px;
                color: var(--whiteColor);
                transition: var(--transition);
                background-color: transparent;
                border: none;
                font-size: 25px;
                opacity: 0.7;

                &:hover {
                    opacity: 1;
                }
            }
        }
    }
    &.search-overlay-active {
        &.search-overlay {
            opacity: 1;
            visibility: visible;

            .search-overlay-layer {
                transform: translateX(0);
            }
            .search-overlay-close {
                opacity: 1;
                visibility: visible;
            }
            .search-overlay-form {
                opacity: 1;
                visibility: visible;
            }
        }
    }
}

/*================================================
Startup Banner Area CSS
=================================================*/
.startup-banner-area {
    .container-fluid {
        max-width: 1400px;
    }
}
.startup-banner-inner {
    position: relative;
    z-index: 1;
    padding: {
        top: 140px;
        bottom: 140px;
        left: 100px;
        right: 100px;
    };
}
.startup-banner-content {
    padding-right: 15px;

    .sub-title {
        display: block;
        margin-bottom: 10px;
        color: var(--startupMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h1 {
        margin-bottom: 25px;
        font-size: 60px;
    }
    p {
        max-width: 580px;
    }
    .default-btn {
        margin-top: 10px;
    }
}
.startup-banner-image {
    text-align: center;
    padding-left: 15px;
}

/*================================================
Marketing Banner Area CSS
=================================================*/
.marketing-banner-area {
    z-index: 1;
    position: relative;
    border: {
        top: 1px solid #f0f0f0;
        bottom: 1px solid #f0f0f0;
    };
    padding: {
        top: 80px;
        bottom: 80px;
    };
}
.marketing-banner-content {
    padding-right: 25px;

    .sub-title {
        display: block;
        margin-bottom: 10px;
        color: var(--marketingMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h1 {
        margin-bottom: 25px;
        font-size: 60px;
    }
    p {
        max-width: 550px;
    }
    .default-btn {
        margin-top: 10px;
    }
}
.marketing-banner-image {
    text-align: center;
}

/*================================================
Business Banner Area CSS
=================================================*/
.business-banner-area {
    z-index: 1;
    position: relative;
    padding: {
        top: 100px;
        bottom: 100px;
    };
    &::before {
        animation: moveleftbounce 5s linear infinite;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        content: '';
        margin: {
            left: 20px;
            right: 20px;
        };
        background: {
            image: url(/assets/img/bg2.jpg);
            position: center center;
            repeat: no-repeat;
            size: cover;
        };
    }
    .container {
        max-width: 1400px;
    }
}
.business-banner-content {
    padding-right: 25px;
    max-width: 745px;

    .sub-title {
        display: block;
        margin-bottom: 10px;
        color: var(--businessMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h1 {
        margin-bottom: 25px;
        font-size: 60px;
    }
    p {
        max-width: 550px;
    }
    .default-btn {
        margin-top: 10px;
    }
}
.business-banner-image {
    text-align: center;

    img {
        border-radius: 0 0 0 100px;
    }
}

/*================================================
App Banner Area CSS
=================================================*/
.app-banner-area {
    z-index: 1;
    position: relative;
    background: var(--appGradientColor);
    background: {
        image: url(/assets/img/bg3.jpg);
        position: center center;
        repeat: no-repeat;
        size: cover;
    };
    padding: {
        top: 100px;
        bottom: 100px;
    };
    .container {
        max-width: 1450px;
    }
}
.app-banner-content {
    h1 {
        margin-bottom: 25px;
        font-size: 60px;
        color: var(--whiteColor);
    }
    p {
        max-width: 550px;
        color: var(--whiteColor);
    }
    .btn-box {
        margin-top: 35px;

        .store-btn {
            display: inline-block;
            background-color: var(--whiteColor);
            position: relative;
            color: var(--optionalColor);
            padding: 11px 25px 11px 65px;
            margin-right: 15px;
            border-radius: 5px;
            font: {
                size: 13.5px;
                weight: 600;
            };
            img {
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: var(--blackColor);
                font: {
                    size: 40px;
                    weight: normal;
                };
            }
            span {
                display: block;
                color: var(--blackColor);
                margin-top: 2px;
                font: {
                    size: 18px;
                    weight: 700;
                };
            }
            &:last-child {
                margin-right: 0;
            }
        }
    }
}
.app-banner-image {
    text-align: center;
    padding-left: 15px;
}

/*================================================
Saas Banner Area CSS
=================================================*/
.saas-banner-area {
    background-color: #06080e;
    padding-top: 80px;

    .container-fluid {
        padding: {
            right: 30px;
            left: 30px;
        };
    }
}
.saas-banner-content {
    margin-left: auto;
    max-width: 710px;

    h1 {
        color: var(--whiteColor);
        margin-bottom: 25px;
        font-size: 64px;
    }
    p {
        opacity: 0.9;
        max-width: 535px;
        color: var(--whiteColor);
    }
    .default-btn {
        margin-top: 10px;
    }
}
.saas-banner-image {
    text-align: center;
}

/*================================================
Personal Portfolio Banner Area CSS
=================================================*/
.personal-portfolio-banner-area {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
    padding: {
        top: 100px;
        bottom: 100px;
    };
    .container {
        max-width: 1450px;
    }
}
.personal-portfolio-banner-content {
    .sub-title {
        display: block;
        position: relative;
        padding-left: 65px;
        margin-bottom: 12px;
        font: {
            size: 20px;
            weight: 500;
        };
        &::before {
            left: 0;
            top: 50%;
            width: 50px;
            height: 1px;
            content: '';
            position: absolute;
            transform: translateY(-50%);
            background-color: var(--personalPortfolioMainColor);
        }
    }
    h1 {
        margin-bottom: 15px;
        font: {
            size: 80px;
            weight: 700;
        };
    }
    h4 {
        margin-bottom: 20px;
        font: {
            size: 40px;
            weight: 500;
        };
    }
    p {
        max-width: 535px;
    }
    .default-btn {
        margin-top: 10px;
    }
}
.personal-portfolio-banner-image {
    text-align: center;
}

/*================================================
Consulting Banner Area CSS
=================================================*/
.consulting-banner-area {
    position: relative;
    z-index: 1;
    background: {
        size: cover;
        repeat: no-repeat;
        position: left center;
        image: url(/assets/img/consulting-banner-bg.jpg);
    };
    padding: {
        top: 300px;
        bottom: 180px;
    };
    .container {
        max-width: 1450px;
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        background-color: var(--whiteColor);
        opacity: 0.85;
        display: none;
    }
}
.consulting-banner-content {
    max-width: 790px;

    h1 {
        margin-bottom: 25px;
        font: {
            size: 50px;
            weight: 700;
        };
    }
    p {
        max-width: 580px;
    }
    .default-btn {
        margin-top: 15px;
    }
}

/*================================================
IT Agency Banner Area CSS
=================================================*/
.it-agency-banner-area {
    .it-agency-inner-banner {
        position: relative;
        z-index: 1;
        background: {
            image: url(/assets/img/it-agency-banner-bg.jpg);
            position: center center;
            size: cover;
            repeat: no-repeat;
        };
        padding: {
            top: 280px;
            bottom: 330px;
        };
        &::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: -1;
            background-color: #000000;
            opacity: 0.8;
        }
    }
}
.it-agency-banner-content {
    max-width: 1000px;
    text-align: center;
    color: var(--whiteColor);
    margin: {
        left: auto;
        right: auto;
    };
    h1 {
        color: var(--whiteColor);
        margin-bottom: 20px;
        line-height: 1.3;
        font-size: 60px;
    }
    p {
        color: var(--whiteColor);
        max-width: 600px;
        opacity: 0.9;
        margin: {
            left: auto;
            right: auto;
        };
    }
    .default-btn {
        margin-top: 15px;
    }
}
.banner-video-box {
    z-index: 1;
    max-width: 1000px;
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin: {
        left: auto;
        right: auto;
        top: -130px;
    };
    img {
        border-radius: 10px;
    }
    .video-btn {
        top: 50%;
        left: 50%;
        width: 80px;
        height: 80px;
        font-size: 30px;
        border-radius: 50%;
        position: absolute;
        display: inline-block;
        color: var(--whiteColor);
        background-color: rgba(255, 74, 23, .75);
        transform: translateY(-50%) translateX(-50%);

        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        &::after, &::before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            z-index: -1;
            bottom: 0;
            left: 0;
            border-radius: 50%;
            border: 1.5px solid var(--whiteColor);
        }
        &::before {
            animation: ripple 2s linear infinite
        }
        &::after {
            animation: ripple 2s linear 1s infinite
        }
    }
}

/*================================================
Shop Banner Area CSS
=================================================*/
.shop-banner-area {
    padding: {
        top: 200px;
        bottom: 200px;
    };
    background: {
        image: url(/assets/img/shop-banner-bg.jpg);
        position: top center;
        repeat: no-repeat;
        size: cover;
    };
}
.shop-banner-content {
    .sub-title {
        display: block;
        font-size: 30px;
        margin-bottom: 8px;
    }
    h1 {
        margin-bottom: 15px;
        font: {
            size: 60px;
            weight: 700;
        };
    }
    h4 {
        margin-bottom: 0;
        font-size: 30px;
    }
    .default-btn {
        margin-top: 30px;
    }
}

/*================================================
Blog Banner Area CSS
=================================================*/
.blog-banner-area {
    background: {
        image: url(/assets/img/bg11.jpg);
        position: center center;
        repeat: no-repeat;
        size: cover;
    };
    padding: {
        top: 100px;
        bottom: 100px;
    };
}
.blog-banner-item {
    position: relative;
    text-align: center;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    .content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        padding: 30px;
        background-color: rgba(255, 255, 255, .90);
        max-width: 525px;
        margin: {
            left: auto;
            right: auto;
        };
        .tag {
            display: inline-block;
            margin-bottom: 12px;
            font-weight: 500;
        }
        h3 {
            font-size: 25px;
            line-height: 1.4;
            margin-bottom: 12px;
        }
        p {
            margin-bottom: 20px;
        }
        .meta {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                a {
                    display: inline-block;
                    font-weight: 600;
                    position: relative;
                    padding-right: 12px;

                    i {
                        position: absolute;
                        right: 0;
                        top: 7px;
                        font-size: 12px;
                    }
                    &::before {
                        content: '';
                        position: absolute;
                        right: 0;
                        bottom: 0;
                        width: 0%;
                        height: 1px;
                        background-color: var(--blackColor);
                        transition: var(--transition);
                    }
                    &:hover {
                        padding-right: 15px;
                        color: var(--blackColor);

                        &::before {
                            width: 100%;
                            right: auto;
                            left: 0;
                        }
                    }
                }
                &.date {
                    padding-left: 20px;
                    position: relative;

                    i {
                        position: absolute;
                        left: 0;
                        top: 3px;
                    }
                }
            }
        }
    }
    &:hover {
        img {
            transform: scale(1.1);
        }
    }
}
.blog-banner-item-list {
    margin-bottom: -30px;

    .single-blog-banner-item {
        margin-bottom: 30px;

        .row {
            margin: {
                left: 0;
                right: 0;
            };
            .col-lg-4, .col-lg-8 {
                padding: {
                    left: 0;
                    right: 0;
                };
            }
        }
        .image {
            height: 100%;
            position: relative;
            background: {
                position: center center;
                repeat: no-repeat;
                size: cover;
            };
            &.bg1 {
                background-image: url(/assets/img/blog-banner/blog-banner-list1.jpg);
            }
            &.bg2 {
                background-image: url(/assets/img/blog-banner/blog-banner-list2.jpg);
            }
            &.bg3 {
                background-image: url(/assets/img/blog-banner/blog-banner-list3.jpg);
            }
            &.bg4 {
                background-image: url(/assets/img/blog-banner/blog-banner-list4.jpg);
            }
            img {
                display: none;
            }
            .link-btn {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                display: block;
                z-index: 1;
            }
        }
        .content {
            padding: {
                left: 25px;
                top: 9.1px;
                bottom: 9.1px;
            };
            h3 {
                margin-bottom: 15px;
                color: var(--whiteColor);
                line-height: 1.4;
                font-size: 18px;

                a {
                    color: var(--whiteColor);
                }
            }
            .date {
                color: var(--whiteColor);
                padding-left: 20px;
                position: relative;
                opacity: 0.9;

                i {
                    position: absolute;
                    left: 0;
                    top: 3px;
                }
            }
        }
    }
}

/*================================================
Furniture Banner Area CSS
=================================================*/
.furniture-banner-item {
    padding: {
        top: 200px;
        bottom: 200px;
    };
    background: {
        position: center center;
        repeat: no-repeat;
        size: cover;
    };
    &.bg-item1 {
        background-image: url(/assets/img/furniture-banner-bg1.jpg);
    }
    &.bg-item2 {
        background-image: url(/assets/img/furniture-banner-bg2.jpg);
    }
    &.bg-item3 {
        background-image: url(/assets/img/furniture-banner-bg3.jpg);
    }
}
.furniture-banner-content {
    padding: 40px;
    max-width: 560px;
    background-color: var(--whiteColor);
    border-left: 5px solid var(--blackColor);

    h1 {
        margin-bottom: 15px;
        font-size: 45px;
    }
    .default-btn {
        margin-top: 10px;
    }
}
.furniture-banner-slides {
    &.owl-theme {
        .owl-nav.disabled+.owl-dots {
            margin-top: 0;
        }
        .owl-dots {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);

            .owl-dot {
                display: block;
                margin: {
                    top: 10px;
                    bottom: 10px;
                };
                span {
                    margin: 0;
                    border-radius: 0;
                    width: 50px;
                    height: 6px;
                    background-color: var(--whiteColor);
                    transition: var(--transition);
                }
                &:hover, &.active {
                    span {
                        background-color: var(--blackColor);
                    }
                }
            }
        }
    }
}

/*================================================
Minimal Portfolio Banner Area CSS
=================================================*/
.minimal-portfolio-banner-area {
    position: relative;
    z-index: 1;
    padding: {
        top: 250px;
        bottom: 220px;
    };
}
.minimal-portfolio-banner-content {
    text-align: center;
    max-width: 770px;
    margin: {
        left: auto;
        right: auto;
    };
    .typewrite {
        margin-bottom: 30px;
        display: inline-block;
        color: var(--blackColor);
        padding: 8px 20px;
        line-height: 1;
        letter-spacing: 2px;
        background-color: #ebebeb;
        font: {
            size: 20px;
            weight: 300;
        };
    }
    h1 {
        font-size: 60px;
        margin-bottom: 40px;
        text-shadow: -1px 1px 0 var(--minimalPortfolioColor), 1px 1px 0 var(--startupMainColor), 1px -1px 0 var(--consultingMainColor), -1px -1px 0 var(--itAgencyMainColor);
    }
}
.scroll-container {
    left: 50%;
    bottom: 0;
    width: 30px;
    height: 60px;
    position: absolute;
    border-radius: 15px;
    border: 3px solid #eeeeee;
    transform: translateX(-50%);
}
.scroller {
    width: 16px;
    border-radius: 8px;
    background-color: var(--minimalPortfolioColor);
    position: absolute;
    top: 4px;
    left: 4px;
    bottom: 34px;
    animation: scroller 1500ms ease-out infinite;
}

/*================================================
Features Area CSS
=================================================*/
.features-area {
    position: relative;
    z-index: 1;

    &.ptb-70 {
        padding-bottom: 40px;
    }
}
.single-features-box {
    text-align: center;
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    padding: {
        left: 15px;
        right: 15px;
    };
    .icon {
        line-height: 1;
        display: block;
        font-size: 50px;
        margin-bottom: 22px;
        transition: var(--transition);
    }
    h3 {
        font-size: 20px;
        margin-bottom: 12px;
        transition: var(--transition);
    }
    p {
        margin-bottom: 0;
        transition: var(--transition);
    }
    .link-btn {
        display: inline-block;
        font-weight: 700;
        padding-right: 12px;
        position: absolute;
        left: 50%;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);

        i {
            position: absolute;
            right: 0;
            top: 7px;
            font-size: 12px;
        }
        &::before {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: #eeeeee;
            transition: var(--transition);
        }
        &:hover {
            color: var(--startupMainColor);
            padding-right: 15px;

            &::before {
                width: 100%;
                right: auto;
                left: 0;
            }
        }
    }
    &:hover {
        .icon {
            transform: translateY(-20px);
            color: var(--startupMainColor);
        }
        h3 {
            transform: translateY(-20px);
        }
        p {
            transform: translateY(-20px);
        }
        .link-btn {
            opacity: 1;
            bottom: -15px;
            visibility: visible;
        }
    }
}
.features-box {
    text-align: center;
    margin-bottom: 30px;
    background-color: var(--whiteColor);
    box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, .1);
    padding: 35px 25px;
    transition: var(--transition);

    .icon {
        display: block;
        width: 100px;
        height: 100px;
        position: relative;
        font-size: 55px;
        line-height: 100px;
        z-index: 1;
        color: var(--appMainColor);
        border-radius: 10px;
        transition: var(--transition);
        margin: {
            left: auto;
            right: auto;
            bottom: 25px;
        };
        &::after {
            content: '';
            position: absolute;
            transition: var(--transition);
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            border-radius: 10px;
            z-index: -1;
            background-color: var(--appMainColor);
            opacity: .10;
        }
        &.bg-7669ff {
            color: #7669ff;

            &::after {
                background-color: #7669ff;
            }
        }
        &.bg-ff9f07 {
            color: #ff9f07;

            &::after {
                background-color: #ff9f07;
            }
        }
        &.bg-89c111 {
            color: #89c111;

            &::after {
                background-color: #89c111;
            }
        }
        &.bg-2ea7ff {
            color: #2ea7ff;

            &::after {
                background-color: #2ea7ff;
            }
        }
        &.bg-ca83ff {
            color: #ca83ff;

            &::after {
                background-color: #ca83ff;
            }
        }
        &.bg-ff5f5f {
            color: #ff5f5f;

            &::after {
                background-color: #ff5f5f;
            }
        }
    }
    h3 {
        margin-bottom: 12px;
        font-size: 20px;
    }
    &:hover {
        transform: translateY(-10px);

        .icon {
            color: var(--whiteColor);

            &::after {
                opacity: 1;
            }
        }
    }
    &.without-box-shadow {
        box-shadow: unset;
    }
}
.single-features-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 70px;

    .icon {
        position: absolute;
        left: 0;
        line-height: 1;
        top: 0;
        font-size: 45px;
        color: var(--consultingMainColor);
    }
    h3 {
        margin-bottom: 0;
        font-size: 20px;
    }
    &.color-white {
        h3 {
            color: var(--whiteColor);
        }
    }
    &.startup-color {
        .icon {
            color: var(--startupMainColor);
        }
    }
}
.features-item {
    margin-bottom: 30px;
    transition: var(--transition);
    border-radius: 10px;
    position: relative;
    padding: 30px;
    z-index: 1;

    .icon {
        display: block;
        line-height: 1;
        transition: var(--transition);
        font-size: 35px;
        color: var(--itAgencyMainColor);
        margin-right: 15px;
    }
    h3 {
        transition: var(--transition);
        position: relative;
        font-size: 20px;
        margin-bottom: 0;
    }
    p {
        transition: var(--transition);
        margin-top: 15px;
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 10px;
        background-color: var(--itAgencyMainColor);
        z-index: -1;
        transition: var(--transition);
        opacity: 0.07;
    }
    &::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        transition: .3s;
        border-radius: 10px;
        height: 0;
        width: 100%;
        z-index: -1;
        background: var(--itAgencyGradientColor);
    }
    &.bg-6d5fff {
        .icon {
            color: #6d5fff;
        }
        &::before {
            background-color: #6d5fff;
        }
    }
    &.bg-ff9f07 {
        .icon {
            color: #ff9f07;
        }
        &::before {
            background-color: #ff9f07;
        }
    }
    &.bg-2ea7ff {
        .icon {
            color: #2ea7ff;
        }
        &::before {
            background-color: #2ea7ff;
        }
    }
    &:hover {
        &::before {
            opacity: 0;
            visibility: hidden;
        }
        &::after {
            height: 100%;
        }
        p {
            color: var(--whiteColor);
        }
        h3 {
            color: var(--whiteColor);

            a {
                color: var(--whiteColor);
            }
        }
        .icon {
            color: var(--whiteColor);
        }
    }
}

/*================================================
About Area CSS
=================================================*/
.about-area {
    &.with-border {
        border-bottom: 1px solid #f0f0f0;
    }
}
.startup-about-area {
    .container-fluid {
        max-width: 1400px;
    }
}
.startup-about-image {
    z-index: 1;
    margin-right: 15px;
    text-align: center;
    position: relative;
    background-color: #f9f4f0;
    padding: {
        top: 80px;
        left: 80px;
        bottom: 80px;
    };
    .video-btn {
        position: absolute;
        left: 57%;
        display: inline-block;
        top: 50%;
        transform: translateY(-50%) translateX(-57%);
        width: 80px;
        height: 80px;
        background-color: rgba(0, 0, 0, .75);
        border-radius: 50%;
        color: var(--whiteColor);
        font-size: 30px;

        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        &::after, &::before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            z-index: -1;
            bottom: 0;
            left: 0;
            border-radius: 50%;
            border: 2px solid var(--whiteColor);
        }
        &::before {
            animation: ripple 2s linear infinite
        }
        &::after {
            animation: ripple 2s linear 1s infinite
        }
    }
}
.startup-about-content {
    padding-left: 15px;
    max-width: 600px;

    .sub-title {
        display: block;
        margin-bottom: 12px;
        color: var(--startupMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h2 {
        margin-bottom: 15px;
        font-size: 40px;
    }
    p {
        strong {
            color: var(--blackColor);
        }
    }
    .features-list {
        padding-left: 0;
        margin: {
            left: 16px;
            bottom: 0;
        };
        li {
            margin-bottom: 12px;
            color: var(--optionalColor);
            font-weight: 500;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .default-btn {
        margin-top: 5px;
    }
}
.marketing-about-area {
    border-bottom: 1px solid #f0f0f0;
}
.marketing-about-image {
    margin-right: 15px;
    text-align: center;
}
.marketing-about-content {
    padding-left: 15px;

    .sub-title {
        display: block;
        margin-bottom: 12px;
        color: var(--marketingMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h2 {
        margin-bottom: 15px;
        font-size: 40px;
    }
    .default-btn {
        margin-top: 10px;
    }
    .features-list {
        padding-left: 0;
        margin: {
            left: 16px;
            bottom: 0;
        };
        li {
            margin-bottom: 12px;
            color: var(--optionalColor);
            font-weight: 500;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}
.business-about-content {
    padding-left: 15px;

    .sub-title {
        display: block;
        margin-bottom: 12px;
        color: var(--businessMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h2 {
        margin-bottom: 15px;
        font-size: 40px;
    }
    .default-btn {
        margin-top: 10px;
    }
}
.business-about-image {
    z-index: 1;
    text-align: center;
    padding-right: 15px;
    position: relative;
}
.app-about-content {
    padding-right: 15px;

    h3 {
        margin-bottom: 16px;
        font-size: 24px;
    }
    .features-list {
        padding-left: 0;
        margin-bottom: 15px;
        list-style-type: none;

        li {
            margin-bottom: 12px;
            position: relative;
            color: var(--optionalColor);
            font-weight: 500;
            padding-left: 24px;

            i {
                position: absolute;
                left: 0;
                top: 4px;
                color: var(--appMainColor);
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .default-btn {
        margin-top: 10px;
    }
}
.app-about-image {
    padding-left: 15px;
    text-align: center;
}
.saas-about-content {
    padding-left: 15px;

    .sub-title {
        display: block;
        margin-bottom: 12px;
        color: var(--saasMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h2 {
        margin-bottom: 15px;
        font-size: 40px;
    }
    .features-list {
        padding-left: 0;
        margin-bottom: 15px;
        list-style-type: none;

        li {
            margin-bottom: 12px;
            position: relative;
            color: var(--optionalColor);
            font-weight: 500;
            padding-left: 24px;

            i {
                position: absolute;
                left: 0;
                top: 4px;
                color: var(--saasMainColor);
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .default-btn {
        margin-top: 10px;
    }
    &.white-color {
        color: var(--whiteColor);

        h2 {
            color: var(--whiteColor);
        }
        p {
            color: var(--whiteColor);
            opacity: 0.9;
        }
        .features-list {
            li {
                color: var(--whiteColor);
                opacity: 0.9;

                i {
                    color: var(--whiteColor);
                }
            }
        }
    }
}
.saas-about-image {
    padding-right: 15px;
    text-align: center;
}
.it-agency-about-content {
    padding-left: 15px;

    .sub-title {
        display: block;
        margin-bottom: 12px;
        color: var(--itAgencyMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h2 {
        margin-bottom: 15px;
        font-size: 40px;
    }
    .default-btn {
        margin-top: 10px;
    }
    .features-list {
        padding-left: 0;
        margin: {
            left: 16px;
            bottom: 15px;
        };
        li {
            margin-bottom: 12px;
            color: var(--optionalColor);
            font-weight: 500;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}
.it-agency-about-image {
    text-align: start;
    position: relative;
    margin-right: 20px;
    padding: {
        right: 20px;
        bottom: 20px;
    };
    .main-image {
        position: relative;
        padding-bottom: 150px;

        img {
            border-radius: 10px;

            &:nth-child(2) {
                position: absolute;
                right: 0;
                bottom: 0;
                z-index: 1;
            }
        }
    }
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
    &.with-black-border {
        border-top: 1px solid #12141a;
        border-bottom: 1px solid #12141a;
    }
}
.single-services-box {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    .content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 30px;
        z-index: 2;
        transition: var(--transition);

        .icon {
            line-height: 1;
            display: block;
            font-size: 50px;
            margin-bottom: 20px;
            transition: var(--transition);
            color: var(--startupMainColor);
        }
        h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--whiteColor);
            transition: var(--transition);

            a {
                color: var(--whiteColor);

                &:hover {
                    color: var(--startupMainColor);
                }
            }
        }
        p {
            transition: var(--transition);
            color: var(--whiteColor);
            margin-bottom: 0;
            opacity: 0.9;
        }
        .link-btn {
            font-weight: 700;
            padding-right: 12px;
            position: absolute;
            left: 30px;
            display: inline-block;
            bottom: 0;
            color: var(--whiteColor);
            opacity: 0;
            visibility: hidden;

            i {
                position: absolute;
                right: 0;
                top: 7px;
                font-size: 12px;
            }
            &::before {
                content: '';
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0%;
                height: 2px;
                background-color: #eeeeee;
                transition: var(--transition);
            }
            &:hover {
                padding-right: 15px;

                &::before {
                    width: 100%;
                    right: auto;
                    left: 0;
                }
            }
        }
    }
    &::before {
        position: absolute;
        height: 100%;
        content: "";
        width: 100%;
        z-index: 1;
        left: 0;
        top: 0;
        background: linear-gradient(to top, rgba(35, 35, 37, 0.9) 0, rgba(35, 35, 37, 0.7) 35%, rgba(22, 22, 23, 0) 60%, rgba(0, 0, 0, 0) 100%);
    }
    &:hover {
        img {
            transform: scale(1.05);
        }
        .content {
            .icon {
                transform: translateY(-30px);
            }
            p {
                transform: translateY(-30px);
            }
            h3 {
                transform: translateY(-30px);
            }
            .link-btn {
                opacity: 1;
                bottom: 25px;
                visibility: visible;
            }
        }
    }
}
.single-services-item {
    margin-bottom: 30px;

    .content {
        padding: {
            top: 25px;
            left: 20px;
            right: 20px;
        };
        h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
    }
}
.services-tabs {
    .nav {
        padding-left: 0;
        margin-bottom: 60px;
        border: none;
        list-style-type: none;
        text-align: center;
        justify-content: center;

        .nav-item {
            margin: {
                left: 42px;
                right: 42px;
            };
            .nav-link {
                display: inline-block;
                padding: 0;
                border: none;
                margin: 0;
                font: {
                    size: 19px;
                    weight: 700;
                };
                .icon {
                    display: block;
                    width: 80px;
                    height: 80px;
                    position: relative;
                    z-index: 1;
                    line-height: 75px;
                    color: var(--businessMainColor);
                    font-weight: normal;
                    transition: var(--transition);
                    font-size: 35px;
                    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
                    padding-right: 10px;
                    margin: {
                        left: auto;
                        right: auto;
                        bottom: 15px;
                    };
                    &::after {
                        content: '';
                        position: absolute;
                        left: 0;
                        right: 0;
                        top: 0;
                        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
                        z-index: -1;
                        bottom: 0;
                        background: var(--businessGradientColor);
                        transition: var(--transition);
                        opacity: 0.10;
                    }
                }
                &:hover, &.active {
                    color: var(--businessMainColor);

                    .icon {
                        color: var(--whiteColor);

                        &::after {
                            opacity: 1;
                        }
                    }
                }
            }
            &:last-child {
                margin-right: 0;
            }
            &:first-child {
                margin-left: 0;
            }
        }
    }
}
.single-main-services {
    margin-bottom: 30px;

    .content {
        padding-right: 50px;

        h3 {
            font-size: 40px;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        p {
            max-width: 540px;
        }
        .default-btn {
            margin-top: 10px;
        }
    }
    .image {
        text-align: center;
    }
}
.services-box {
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid #eeeeee;
    background-color: var(--whiteColor);
    padding: 35px 30px;
    transition: var(--transition);

    .icon {
        font-size: 60px;
        line-height: 1;
        background: var(--saasGradientColor);
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 22px;
        display: block;
    }
    h3 {
        margin-bottom: 12px;
        font-size: 20px;

        a {
            &:hover {
                color: var(--saasMainColor);
            }
        }
    }
    &.color-white {
        border-color: #272836;
        background-color: #040611;

        h3 {
            color: var(--whiteColor);

            a {
                color: var(--whiteColor);
            }
        }
        p {
            opacity: 0.9;
            color: var(--whiteColor);
        }
    }
    &:hover {
        border-color: var(--saasMainColor) !important;
    }
    &.startup-color {
        .icon {
            background: var(--startupMainColor);
            -webkit-background-clip: text;
            -moz-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        &:hover {
            border-color: var(--startupMainColor) !important;
        }
    }
}
.services-item {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
        transition: var(--transition);
        background-color: var(--consultingMainColor);
    }
    h3 {
        font-size: 20px;
        transition: var(--transition);
        margin: {
            top: 25px;
            bottom: 0;
        };
    }
    .hover-content {
        left: 0;
        right: 0;
        top: 50%;
        padding: 30px;
        position: absolute;
        transform: translateY(-50%);
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        color: var(--whiteColor);

        h3 {
            opacity: 1 !important;
            visibility: visible !important;
            color: var(--whiteColor);
            margin: {
                top: 0;
                bottom: 12px;
            };
            a {
                color: var(--whiteColor);
            }
        }
        p {
            color: var(--whiteColor);
        }
        .link-btn {
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-right: 12px;
            color: var(--whiteColor);

            i {
                position: absolute;
                right: 0;
                top: 7px;
                font-size: 12px;
            }
            &::before {
                content: '';
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0%;
                height: 1px;
                background-color: var(--whiteColor);
                transition: var(--transition);
            }
            &:hover {
                padding-right: 15px;

                &::before {
                    width: 100%;
                    right: auto;
                    left: 0;
                }
            }
        }
    }
    &:hover {
        img {
            transform: scale(1.7);
        }
        h3 {
            opacity: 0;
            visibility: hidden;
        }
        .hover-content {
            opacity: 1;
            visibility: visible;
        }
        &::before {
            opacity: .90;
            visibility: visible;
        }
    }
    &.startup-color {
        &::before {
            background-color: var(--startupMainColor);
        }
    }
}
.col-lg-3 {
    &:nth-child(2), &:nth-child(4) {
        .services-box {
            margin-top: 30px;
        }
    }
    &:nth-child(5), &:nth-child(7) {
        .services-box {
            margin-top: -30px;
        }
    }
}
.single-it-services-box {
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
    padding: 30px 30px 30px 100px;
    z-index: 1;

    .icon {
        position: absolute;
        left: 30px;
        top: 30px;
        line-height: 1;
        font-size: 45px;
        color: var(--itAgencyMainColor);
        transition: var(--transition);
    }
    h3 {
        transition: var(--transition);
        margin-bottom: 12px;
        font-size: 20px;

        a {
            display: inline-block;

            &:hover {
                color: var(--itAgencyGradientColor);
            }
        }
    }
    p {
        transition: var(--transition);
    }
    &::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        content: '';
        opacity: .06;
        position: absolute;
        border-radius: 10px;
        transition: var(--transition);
        background-color: var(--itAgencyMainColor);
    }
    &.bg-6d5fff {
        .icon {
            color: #6d5fff;
        }
        &::before {
            background-color: #6d5fff;
        }
    }
    &.bg-ff9f07 {
        .icon {
            color: #ff9f07;
        }
        &::before {
            background-color: #ff9f07;
        }
    }
    &.bg-89c111 {
        .icon {
            color: #89c111;
        }
        &::before {
            background-color: #89c111;
        }
    }
    &.bg-ca83ff {
        .icon {
            color: #ca83ff;
        }
        &::before {
            background-color: #ca83ff;
        }
    }
    &.bg-ff5f5f {
        .icon {
            color: #ff5f5f;
        }
        &::before {
            background-color: #ff5f5f;
        }
    }
    &.bg-2ea7ff {
        .icon {
            color: #2ea7ff;
        }
        &::before {
            background-color: #2ea7ff;
        }
    }
    &:hover {
        .icon {
            color: var(--whiteColor) !important;
        }
        h3 {
            color: var(--whiteColor) !important;

            a {
                color: var(--whiteColor) !important;
            }
        }
        p {
            color: var(--whiteColor);
        }
        &::before {
            opacity: 1;
            visibility: visible;
        }
    }
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-desc {
    h3 {
        font-size: 24px;
        margin: {
            bottom: 15px;
            top: 30px;
        };
        &:first-child {
            margin-top: 0;
        }
    }
    ul {
        li {
            margin-bottom: 12px;
            color: var(--optionalColor);
            font-weight: 500;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    p {
        strong {
            color: var(--blackColor);
        }
        a {
            color: var(--startupMainColor);

            &:hover {
                text-decoration: underline;
            }
        }
    }
    img {
        margin: {
            top: 20px;
            bottom: 20px;
        };
    }
}
.services-details-content {
    h2 {
        font-size: 40px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
}
.services-details-video {
    margin-left: 30px;
    text-align: center;
    background-color: #f5f5f5;

    iframe {
        width: 100%;
        border: none;
        height: 336px;
        display: block;
    }
    .default-btn {
        margin: {
            top: 20px;
            left: 30px;
            right: 30px;
            bottom: 20px;
        };
    }
}
.services-details-overview {
    .overview-content {
        h2 {
            font-size: 40px;
            line-height: 1.4;
            margin-bottom: 15px;
        }
    }
}

/*================================================
Works Area CSS
=================================================*/
.startup-works-area {
    .section-title {
        max-width: 100%;
        text-align: start;
        padding-top: 100px;
        margin: {
            left: 0;
            right: 0;
            bottom: -220px;
        };
        h2 {
            font-size: 35px;
        }
    }
}
.startup-works-content {
    padding: {
        top: 245px;
        right: 15px;
    };
    h3 {
        font-size: 20px;
        margin-bottom: 15px;

        a {
            display: inline-block;

            &:hover {
                color: var(--startupMainColor);
            }
        }
    }
    .custom-owl-nav {
        margin-top: 25px;

        [class*=owl-] {
            margin: 0 5px;
            background-color: var(--startupMainColor);
            color: var(--whiteColor);
            padding: 8px 25px 7px !important;
            border-radius: 0;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: var(--fontSize);

            i {
                line-height: 1;
            }
            &.owl-prev {
                margin-left: 0;
            }
            &.owl-next {
                margin-right: 0;
            }
            &:hover {
                background-color: var(--blackColor);
                color: var(--whiteColor);
            }
        }
    }
}
.startup-works-image {
    z-index: 1;
    margin-left: 15px;
    text-align: center;
    position: relative;
    background-color: #f9f4f0;
    padding: {
        top: 80px;
        right: 80px;
        bottom: 80px;
    };
    .link-btn {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
        display: block;
    }
}
.single-works-box {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;

    .works-image {
        position: relative;

        img {
            transition: var(--transition);
        }
        .works-overlay {
            position: absolute;
            overflow: hidden;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;

            &::before {
                content: '';
                transition: var(--transition);
                position: absolute;
                width: 100%;
                bottom: 0;
                height: 50%;
                background: var(--businessGradientColor);
                right: -100%;
            }
            &::after {
                content: '';
                transition: var(--transition);
                position: absolute;
                background: var(--businessGradientColor);
                top: 0;
                height: 50%;
                width: 100%;
                left: -100%;
            }
            h3 {
                color: transparent;
                overflow: hidden;
                position: absolute;
                top: 30px;
                text-align: center;
                right: 25px;
                z-index: 2;
                transition: var(--transition);
                font-size: 20px;
                margin-bottom: 5px;

                &::before {
                    content: '';
                    background: var(--blackColor);
                    position: absolute;
                    width: 100%;
                    bottom: 0;
                    transition: var(--transition);
                    left: 100%;
                    top: 0;
                    right: auto;
                }
            }
            span {
                color: transparent;
                overflow: hidden;
                z-index: 2;
                position: absolute;
                top: 62px;
                display: block;
                right: 25px;
                transition: var(--transition);
                text-align: center;

                &::before {
                    content: '';
                    background: var(--whiteColor);
                    width: 100%;
                    top: 0;
                    bottom: 0;
                    position: absolute;
                    transition: var(--transition);
                    right: 100%;
                }
            }
        }
    }
    .link-btn {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 5;
    }
    &:hover {
        .works-image {
            img {
                transform: scale(1.3);
            }
            .works-overlay {
                &::before {
                    right: 0;
                    opacity: 1;
                    width: 100%;
                    height: 50%;
                    transition: all .8s;
                }
                &::after {
                    left: 0;
                    opacity: 1;
                    transition: all .8s;
                }
                span {
                    color: var(--whiteColor);

                    &::before {
                        right: -100%;
                    }
                }
                h3 {
                    color: var(--whiteColor);

                    &::before {
                        left: -100%;
                    }
                }
            }
        }
    }
    &.startup-color {
        .works-image {
            .works-overlay {
                &::before {
                    background: var(--startupMainColor);
                }
                &::after {
                    background: var(--startupMainColor);
                }
            }
        }
    }
}
.works-box {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    .link-btn {
        display: block;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        z-index: 2;
    }
    h3 {
        margin-bottom: 0;
        font-size: 20px;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        transform: translateY(-50%);
        color: var(--whiteColor);
        background-color: rgba(0, 0, 0, .75);
        padding: 15px;
        margin: {
            left: 25px;
            right: 25px;
            top: 25px;
        };
    }
    &:hover {
        img {
            transform: scale(1.05);
        }
        h3 {
            margin-top: 0;
            visibility: visible;
            opacity: 1;
        }
    }
}
.works-box-btn {
    text-align: center;
    margin-top: 20px;
}
.single-works-item {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: var(--startupMainColor);
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }
    .content {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 15px;
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        z-index: 2;
        padding: {
            left: 20px;
            right: 20px;
        };
        .link-btn {
            width: 45px;
            height: 45px;
            line-height: 45px;
            color: var(--whiteColor);
            border: 1px solid var(--whiteColor);
            border-radius: 50%;
            margin-bottom: 20px;
            display: inline-block;

            &:hover {
                color: var(--blackColor);
                background-color: var(--whiteColor);
            }
        }
        h3 {
            font-size: 22px;
            color: var(--whiteColor);
            margin-bottom: 12px;

            a {
                color: var(--whiteColor);
            }
        }
        span {
            display: block;
            color: var(--whiteColor);
            opacity: 0.9;
        }
    }
    &:hover {
        img {
            transform: scale(1.1);
        }
        &::before {
            opacity: 1;
            margin: 10px;
            visibility: visible;
        }
        .content {
            opacity: 1;
            visibility: visible;
            margin-top: 0;
        }
    }
    &.minimal-portfolio-color {
        &::before {
            background-color: var(--minimalPortfolioColor);
        }
    }
}
.showMoreItemsList + .button-box {
    margin-bottom: 0;
    text-align: start;

    button {
        background-color: transparent;
        border: 1px solid #d6d9dc;
        color: var(--blackColor);
        padding: 12px 45px;
        transition: var(--transition);
        display: inline-block;
        width: auto;
        margin-top: 10px;
        border-radius: 0;
        font: {
            size: var(--fontSize);
            weight: 500;
        };
        &:hover {
            background-color: var(--startupMainColor);
            border-color: var(--startupMainColor);
            color: var(--whiteColor);
        }
    }
}
.works-slides-style-one, .works-slides-style-two {
    &.owl-theme {
        .single-works-item, .works-box {
            margin-bottom: 0;
        }
        .owl-nav {
            opacity: 0;
            margin-top: 0;
            visibility: hidden;
            transition: var(--transition);

            [class*=owl-] {
                margin: 0;
                background-color: var(--whiteColor);
                color: var(--blackColor);
                padding: 0 !important;
                border-radius: 0;
                transition: var(--transition);
                border: none;
                cursor: pointer;
                position: absolute;
                left: 25px;
                top: 50%;
                width: 45px;
                height: 45px;
                line-height: 45px;
                border-radius: 50%;
                transform: translateY(-50%);
                font-size: 20px;

                &.owl-next {
                    left: auto;
                    right: 25px;
                }
                i {
                    line-height: 1;
                }
                &:hover {
                    background-color: var(--blackColor);
                    border-color: var(--blackColor);
                    color: var(--whiteColor);
                }
            }
        }
        &:hover {
            .owl-nav {
                opacity: 1;
                visibility: visible;
            }
        }
        .owl-dots {
            margin-top: 40px;

            .owl-dot {
                span {
                    width: 18px;
                    height: 18px;
                    border-radius: 50%;
                    transition: var(--transition);
                    margin: 0 5px;
                }
                &:hover, &.active {
                    span {
                        background-color: var(--startupMainColor);
                    }
                }
            }
        }
    }
}

/*================================================
What We Do Area CSS
=================================================*/
.what-we-do-content {
    .section-title {
        text-align: start;
        max-width: 100%;
        margin: {
            left: 0;
            right: 0;
            bottom: 30px;
        };
        p {
            max-width: 100%;
            margin: {
                left: 0;
                right: 0;
            };
        }
    }
    .single-what-we-do-box {
        margin-bottom: 0;
    }
}
.single-what-we-do-box {
    margin-bottom: 30px;

    .icon {
        display: block;
        line-height: 1;
        font-size: 45px;
        margin-bottom: 25px;
        color: var(--consultingMainColor);
    }
    h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

/*================================================
Categories Area CSS
=================================================*/
.single-categories-box {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;

    img {
        transition: var(--transition);
    }
    h3 {
        margin-bottom: 0;
        font-size: 20px;
        position: absolute;
        left: 25px;
        top: 25px;
        background-color: var(--whiteColor);
        padding: 7px 20px;
        clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
        transition: var(--transition);
    }
    .link-btn {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
    }
    &:hover {
        img {
            transform: scale(1.1);
        }
        h3 {
            background-color: var(--blackColor);
            color: var(--whiteColor);
        }
    }
}
.categories-box {
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    h3 {
        top: 50%;
        left: 50%;
        margin-bottom: 0;
        position: absolute;
        transform: translateX(-50%) translateY(-50%);
        font-size: 20px;
        z-index: 1;
        background-color: rgba(255, 255, 255, .80);
        transition: var(--transition);
        padding: {
            top: 5px;
            bottom: 5px;
            left: 30px;
            right: 30px;
        };
    }
    .link-btn {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: block;
        z-index: 2;
    }
    &:hover {
        img {
            transform: scale(1.05);
        }
        h3 {
            background-color: var(--whiteColor);
        }
    }
}
.categories-slides {
    &.owl-theme {
        .owl-nav {
            margin-top: 0;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);

            [class*=owl-] {
                margin: 0;
                background-color: transparent;
                color: var(--optionalColor);
                padding: 0 !important;
                border-radius: 0;
                transition: var(--transition);
                border: none;
                cursor: pointer;
                position: absolute;
                left: -45px;
                top: 50%;
                width: 35px;
                height: 35px;
                line-height: 35px;
                border-radius: 50%;
                transform: translateY(-50%);
                border: 1px solid var(--optionalColor);
                font-size: var(--fontSize);

                &.owl-next {
                    left: auto;
                    right: -45px;
                }
                i {
                    line-height: 1;
                }
                &:hover {
                    background-color: var(--blackColor);
                    border-color: var(--blackColor);
                    color: var(--whiteColor);
                }
            }
        }
        &:hover {
            .owl-nav {
                opacity: 1;
                visibility: visible;
            }
        }
    }
}

/*================================================
Who We Are Area CSS
=================================================*/
.who-we-are-area {
    .row {
        margin: {
            left: 0;
            right: 0;
        };
        .col-lg-6 {
            padding: {
                left: 0;
                right: 0;
            };
        }
    }
}
.who-we-are-content {
    padding: 40px;
    background-color: #f3f4f7;

    .sub-title {
        display: block;
        margin-bottom: 10px;
        color: var(--consultingMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h2 {
        margin-bottom: 15px;
        line-height: 1.5;
        font-size: 21px;
    }
    .default-btn {
        margin-top: 10px;
    }
}
.who-we-are-image {
    text-align: center;
    position: relative;

    .video-btn {
        top: 50%;
        left: 50%;
        width: 80px;
        height: 80px;
        font-size: 30px;
        border-radius: 50%;
        position: absolute;
        display: inline-block;
        color: var(--blackColor);
        background-color: var(--whiteColor);
        transform: translateY(-50%) translateX(-50%);

        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        &::after, &::before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            z-index: -1;
            bottom: 0;
            left: 0;
            border-radius: 50%;
            border: 1.5px solid var(--saasMainColor);
        }
        &::before {
            animation: ripple 2s linear infinite
        }
        &::after {
            animation: ripple 2s linear 1s infinite
        }
    }
}

/*================================================
Video Area CSS
=================================================*/
.video-box {
    text-align: center;
    position: relative;

    img {
        width: 100%;
    }
    .video-btn {
        position: absolute;
        left: 50%;
        display: inline-block;
        top: 40%;
        transform: translateY(-40%) translateX(-50%);
        width: 80px;
        height: 80px;
        background-color: var(--whiteColor);
        border-radius: 50%;
        color: var(--blackColor);
        font-size: 30px;

        i {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        &::after, &::before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            z-index: -1;
            bottom: 0;
            left: 0;
            border-radius: 50%;
            border: 2px solid var(--saasMainColor);
        }
        &::before {
            animation: ripple 2s linear infinite
        }
        &::after {
            animation: ripple 2s linear 1s infinite
        }
    }
}

/*================================================
Process Area CSS
=================================================*/
.single-process-box {
    margin-bottom: 30px;
    text-align: center;
    border: 1px dashed #e1e1e1;
    transition: var(--transition);
    padding: 40px 25px;

    img {
        margin-bottom: 30px;
        transition: var(--transition);
    }
    h3 {
        margin-bottom: 12px;
        font-size: 20px;
    }
    &:hover {
        box-shadow: 3px 5px 25px 0 rgba(0,0,0,.1);
        border-color: var(--whiteColor);

        img {
            transform: scale(0.9);
        }
    }
}

/*================================================
Funfacts Area CSS
=================================================*/
.funfacts-area {
    &.bg-business-color {
        background: var(--businessGradientColor);
    }
    &.bg-startup-color {
        background: var(--startupMainColor);

        .single-funfacts-box {
            &.without-bg-color {
                border-color: var(--whiteColor);
            }
        }
    }
    &.bg-image {
        background: {
            color: var(--blackColor);
            image: url(/assets/img/bg8.jpg);
            position: center center;
            size: cover;
            repeat: no-repeat;
        };
    }
    &.bg-f9f9f9 {
        position: relative;
        z-index: 1;

        &::before {
            left: 0;
            right: 0;
            bottom: 0;
            height: 50%;
            z-index: -1;
            content: '';
            position: absolute;
            background-color: var(--whiteColor);
        }
    }
}
.single-funfacts-box {
    margin-bottom: 30px;
    color: var(--whiteColor);
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--blackColor);
    padding: {
        top: 40px;
        bottom: 40px;
        left: 85px;
        right: 30px;
    };
    .icon {
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--startupMainColor);
        font-size: 45px;
    }
    h3 {
        color: var(--whiteColor);
        margin-bottom: 4px;
        font-size: 40px;

        .odometer-formatting-mark {
            display: none;
        }
        .sign {
            position: relative;
            top: 1px;
        }
    }
    .sub-title {
        display: block;
        font-weight: 600;
    }
    .shape {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
    }
    &.bg-white {
        color: var(--optionalColor);
        background-color: var(--whiteColor);
        box-shadow: 3px 5px 25px 0 rgba(0,0,0,.1);

        .icon {
            &.color-fd5444 {
                color: #fd5444;
            }
            &.color-3251ad {
                color: #3251ad;
            }
            &.color-62bd5e {
                color: #62bd5e;
            }
            &.color-ff6720 {
                color: #ff6720;
            }
        }
        h3 {
            color: var(--blackColor);
        }
        .shape {
            opacity: .15;
        }
    }
    &.without-bg-color {
        background-color: transparent;
        //border-right: 1px dashed #a684f5;
        border-right: 1px dashed var(--whiteColor);
        margin-right: 40px;
        padding: {
            right: 0;
            top: 15px;
            bottom: 15px;
            left: 65px;
        };
        .icon {
            left: 0;
            color: var(--whiteColor);
        }
    }
    &.text-center {
        border-right: 2px dashed rgba(255, 255, 255, .20);
        background-color: transparent;
        padding: {
            left: 0;
            top: 20px;
            bottom: 20px;
        };
    }
    &.consulting-color {
        h3 {
            color: var(--consultingMainColor);
        }
    }
}
.funfacts-inner {
    background-color: var(--blackColor);
    padding: {
        left: 30px;
        right: 30px;
    };
    &.bg-app-image {
        background: {
            image: url(/assets/img/bg4.jpg);
            position: center center;
            size: cover;
            repeat: no-repeat;
        };
        .single-funfacts-box {
            &.without-bg-color {
                padding: 0;
                border: none;
                text-align: center;
                margin-right: 0;
            }
        }
    }
    &.it-agency-color {
        background: var(--itAgencyGradientColor);
        background: {
            size: cover;
            repeat: no-repeat;
            position: center center;
            image: url(/assets/img/bg9.jpg);
        };
    }
    &.border-radius {
        border-radius: 10px;

        &.ptb-70 {
            padding-bottom: 40px;
        }
    }
}
.row {
    .col-lg-3 {
        &:last-child {
            .single-funfacts-box {
                &.without-bg-color, &.text-center {
                    border-right: none;
                }
            }
        }
    }
}

/*================================================
Products Area CSS
=================================================*/
.products-area {
    &.with-top-border {
        border-top: 1px solid #eeeeee;
    }
}
.single-products-box {
    margin-bottom: 30px;
    text-align: center;

    .image {
        position: relative;
        overflow: hidden;

        img {
            transition: var(--transition);
        }
        .new {
            position: absolute;
            left: 12px;
            top: 12px;
            background-color: var(--blackColor);
            color: var(--whiteColor);
            width: 45px;
            height: 45px;
            text-align: center;
            line-height: 45px;
            border-radius: 50%;
            z-index: 2;
            font: {
                size: 13px;
                weight: 600;
            };
        }
        .sale {
            position: absolute;
            z-index: 2;
            right: 12px;
            top: 12px;
            background-color: red;
            color: var(--whiteColor);
            width: 45px;
            height: 45px;
            text-align: center;
            line-height: 45px;
            border-radius: 50%;
            font: {
                size: 13px;
                weight: 600;
            };
        }
        .buttons-list {
            position: absolute;
            text-align: center;
            z-index: 1;
            left: 0;
            right: 0;
            bottom: 20px;
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                opacity: 0;
                visibility: hidden;
                display: inline-block;
                transform: translateY(30px);
                transition: all 0.3s ease-in-out 0s;
                margin: {
                    left: 3px;
                    right: 3px;
                };
                a {
                    display: inline-block;
                    font-size: 16px;
                    color: var(--blackColor);
                    position: relative;
                    width: 40px;
                    border-radius: 50%;
                    line-height: 39px;
                    background-color: var(--whiteColor);
                    height: 40px;
                    border: 1px solid #eeeeee;

                    .tooltip-label {
                        right: 50%;
                        top: -15px;
                        transform: translateX(50%);
                        position: absolute;
                        padding: 0 10px;
                        line-height: 28px;
                        font-size: 12px;
                        letter-spacing: .3px;
                        visibility: hidden;
                        white-space: nowrap;
                        opacity: 0;
                        color: transparent;
                        background-color: transparent;
                        transition: all .2s ease-in-out;
                        background-color: var(--blackColor);
                        color: var(--whiteColor);

                        &::before {
                            content: "\f0dd";
                            color: var(--blackColor);
                            left: 50%;
                            position: absolute;
                            transform: translateX(-50%) rotate(0deg);
                            transition: all .2s ease-in-out;
                            bottom: -12px;
                            font: {
                                family: "Font Awesome 5 Free";
                                variant-ligatures: normal;
                                variant-caps: normal;
                                style: normal;
                                weight: 900;
                                size: 20px;
                            };
                        }
                    }
                    &:hover {
                        background-color: var(--blackColor);
                        border-color: var(--blackColor);
                        color: var(--whiteColor);

                        .tooltip-label {
                            visibility: visible;
                            opacity: 1;
                            top: -45px;
                        }
                    }
                }
                &:nth-child(1) {
                    transition-delay: 0.1s;
                }
                &:nth-child(2) {
                    transition-delay: 0.2s;
                }
                &:nth-child(3) {
                    transition-delay: 0.3s;
                }
            }
        }
    }
    .content {
        margin-top: 25px;

        .rating {
            margin-bottom: 12px;

            i {
                color: #fec900;
                line-height: 1;
            }
        }
        h3 {
            margin-bottom: 13px;
            font-size: 20px;
        }
        .price {
            span {
                color: var(--blackColor);
                font: {
                    size: 17px;
                    weight: 700;
                };
                &.old-price {
                    color: var(--optionalColor);
                    text-decoration: line-through;
                }
            }
        }
    }
    &:hover {
        .image {
            img {
                transform: scale(1.05);
            }
            .buttons-list {
                li {
                    transform: translateY(0);
                    visibility: visible;
                    opacity: 1;
                }
            }
        }
    }
}
.noke-grid-sorting {
    margin-bottom: 40px;

    .result-count {
        p {
            .count {
                font-weight: 700;
                color: var(--blackColor);
            }
        }
    }
    .ordering {
        text-align: end;

        label {
            display: inline-block;
            color: var(--optionalColor);
            margin: {
                bottom: 0;
                right: 5px;
            };
        }
        select {
            width: 215px;
            height: 45px;
            cursor: pointer;
            line-height: 45px;
            display: inline-block;
            background: #f8f8f8;
            border-color: #eeeeee;
            color: var(--blackColor);
            transition: var(--transition);
            padding: {
                top: 1px;
                left: 12px;
            };
            font: {
                size: var(--fontSize);
                weight: 600;
            };
        }
    }
}

/*================================================
Products Details Area CSS
=================================================*/
.products-details-desc {
    padding-left: 15px;

    h3 {
        margin-bottom: 15px;
        font-size: 20px;
    }
    .price {
        color: var(--blackColor);
        margin: {
            top: 15px;
            bottom: 12px;
        };
        font: {
            weight: 700;
            size: 17px;
        };
        .old-price {
            text-decoration: line-through;
            color: #9b9494;
            font-weight: normal;
        }
    }
    .products-review {
        .rating {
            display: inline-block;
            padding-right: 3px;
            font-size: 14px;

            i {
                display: inline-block;
                color: #f49f0b;
                line-height: 1;
            }
        }
        .rating-count {
            display: inline-block;
            color: var(--optionalColor);
            line-height: initial;
            position: relative;
            top: 1px;

            &:hover {
                color: var(--blackColor);
            }
        }
    }
    .products-meta {
        margin-top: 20px;

        span {
            display: block;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--optionalColor);

            span {
                display: inline-block;
                margin-bottom: 0;

                &.sku {
                    color: var(--startupMainColor);
                }
            }
            a {
                display: inline-block;
                color: var(--blackColor);

                &:hover, &:focus {
                    color: var(--startupMainColor);
                }
            }
            &.in-stock {
                color: green;
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .products-add-to-cart {
        margin-top: 25px;

        .quantities {
            position: relative;
            padding-left: 45px;

            .sub-title {
                left: 0;
                top: 50%;
                display: block;
                font-weight: 600;
                position: absolute;
                transform: translateY(-50%);
            }
        }
        .input-counter {
            display: block;
            max-width: 120px;
            min-width: 120px;
            text-align: center;
            position: relative;
            margin-bottom: 25px;

            span {
                top: 0;
                width: 35px;
                height: 100%;
                cursor: pointer;
                font-size: 15px;
                line-height: 38px;
                position: absolute;
                color: var(--blackColor);
                border: 1px solid #eeeeee;
                background-color: transparent;
                transition: var(--transition);

                i {
                    position: relative;
                    top: 1px;
                }
                &.minus-btn {
                    left: 0;
                }
                &.plus-btn {
                    right: 0;
                }
                &:hover {
                    color: var(--optionalColor);
                }
            }
            input {
                height: 40px;
                outline: 0;
                width: 100%;
                display: block;
                text-align: center;
                color: var(--blackColor);
                border: 1px solid #eeeeee;
                background-color: transparent;
                font: {
                    size: 17px;
                    weight: 600;
                }
                &::placeholder {
                    color: var(--blackColor);
                }
            }
        }
    }
    .default-btn {
        box-shadow: unset !important;
    }
    .social-share {
        padding-left: 0;
        list-style-type: none;
        margin: {
            bottom: 0;
            top: 30px;
        };
        li {
            display: inline-block;
            margin-right: 12px;

            span {
                font-weight: 600;
                position: relative;
                top: -1px;
            }
            a {
                line-height: 1;
                font-size: 18px;
                color: var(--optionalColor);

                &:hover {
                    color: var(--blackColor);
                }
            }
        }
    }
}
.products-details-tabs {
    margin-top: 50px;

    .single-tabs-box {
        margin-bottom: 40px;

        h2 {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            font-size: 22px;
            z-index: 1;

            span {
                display: inline-block;
                background-color: var(--whiteColor);
                padding: {
                    left: 20px;
                    right: 20px;
                };
            }
            &::before {
                left: 0;
                right: 0;
                top: 50%;
                z-index: -1;
                height: 1px;
                content: '';
                margin-top: 1px;
                position: absolute;
                background-color: #eeeeee;
                transform: translateY(-50%);
            }
        }
        &:last-child {
            margin-bottom: 0;
        }
        .inner-box {
            max-width: 800px;
            margin: {
                left: auto;
                right: auto;
            };
            h3 {
                font-size: 20px;
                margin-bottom: 15px;
            }
            ul {
                margin: {
                    top: 20px;
                    bottom: 0;
                };
                li {
                    font-weight: 500;
                    margin-bottom: 12px;
                    color: var(--optionalColor);

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }
            .table-striped {
                margin-bottom: 0;

                tbody {
                    tr {
                        td {
                            border: none;
                            padding: 15px;
                            color: var(--optionalColor);
                            font: {
                                weight: 500;
                                size: var(--fontSize);
                            };
                        }
                    }
                }
            }
            .products-review-comments {
                margin-top: 40px;

                .user-review {
                    position: relative;
                    margin-bottom: 20px;
                    padding: 0 0 20px 110px;
                    border-bottom: 1px solid #eeeeee;

                    img {
                        top: 0;
                        left: 0;
                        width: 90px;
                        height: 90px;
                        border-radius: 5px;
                        position: absolute;
                    }
                    .sub-comment {
                        margin-bottom: 8px;
                        font: {
                            weight: 600;
                            family: var(--headingFontFamily);
                        };
                    }
                    .review-rating {
                        display: block;
                        margin-bottom: 8px;

                        .review-stars {
                            display: inline-block;

                            i {
                                color: #cecfd2;
                                display: inline-block;

                                &.checked {
                                    color: orange;
                                }
                            }
                        }
                    }
                }
            }
            .review-form-wrapper {
                margin-top: 30px;

                h3 {
                    margin-bottom: 10px;
                }
                .comment-notes {
                    span {
                        color: red;
                    }
                }
                form {
                    margin-top: 20px;

                    .form-group {
                        margin-bottom: 25px;
                        text-align: start;
                    }
                    .rating {
                        text-align: start;
                        overflow: hidden;
                        max-width: 115px;
                        margin: {
                            top: -5px;
                            bottom: 25px;
                        };
                        label {
                            float: right;
                            position: relative;
                            width: 23px;
                            height: 23px;
                            cursor: pointer;

                            &:not(:first-of-type) {
                                padding-right: 5px;
                            }
                            &:before {
                                content: "\2605";
                                transition: var(--transition);
                                font-size: 27px;
                                color: #CCCCCC;
                                line-height: 1;
                            }
                        }
                        input {
                            display: none;
                        }
                        input:checked ~ label:before, &:not(:checked) > label:hover:before, &:not(:checked) > label:hover ~ label:before {
                            color: #f6b500;
                        }
                    }
                    .comment-form-cookies-consent {
                        text-align: start;
                        margin-bottom: 0;

                        [type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
                            display: none;
                        }
                        [type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label {
                            position: relative;
                            padding-left: 28px;
                            cursor: pointer;
                            line-height: 20px;
                            display: inline-block;
                            margin-bottom: 0;
                            color: var(--optionalColor);
                        }
                        [type="checkbox"]:checked + label:before, [type="checkbox"]:not(:checked) + label:before {
                            content: '';
                            position: absolute;
                            left: 0;
                            top: 0;
                            width: 19px;
                            height: 19px;
                            transition: all 0.2s ease;
                            border: 1px solid #eeeeee;
                            border-radius: 3px;
                            background: var(--whiteColor);
                        }
                        [type="checkbox"]:checked + label:after, [type="checkbox"]:not(:checked) + label:after {
                            content: '';
                            width: 8px;
                            height: 8px;
                            background: var(--startupMainColor);
                            position: absolute;
                            top: 6.5px;
                            left: 6px;
                            -webkit-transition: all 0.2s ease;
                            transition: all 0.2s ease;
                        }
                        [type="checkbox"]:not(:checked) + label:after {
                            opacity: 0;
                            -webkit-transform: scale(0);
                            transform: scale(0);
                        }
                        [type="checkbox"]:checked + label:after {
                            opacity: 1;
                            -webkit-transform: scale(1);
                            transform: scale(1);
                        }
                        [type="checkbox"]:hover + label:before {
                            border-color: var(--startupMainColor);
                        }
                        [type="checkbox"]:checked + label:before {
                            border-color: var(--startupMainColor);
                        }
                    }
                    button {
                        margin-top: 22px;
                        border: none;
                        display: inline-block;
                        text-align: center;
                        overflow: hidden;
                        color: var(--whiteColor);
                        background-color: var(--startupMainColor);
                        transition: var(--transition);
                        border-radius: 5px;
                        padding: 13px 40px;
                        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.2rem rgba(0, 0, 0, 0.1);
                        font: {
                            weight: 700;
                            size: var(--fontSize);
                        };
                        &:hover {
                            background-color: var(--blackColor);
                            color: var(--whiteColor);
                        }
                    }
                }
            }
        }
    }
}

/*================================================
Cart Area CSS
=================================================*/
.cart-table-desc {
    table {
        margin-bottom: 0;

        thead {
            tr {
                th {
                    border: none;
                    padding: 13px 20px;
                    vertical-align: middle;
                    color: var(--whiteColor);
                    background-color: var(--blackColor);
                    font: {
                        family: var(--headingFontFamily);
                        size: var(--fontSize);
                        weight: 600;
                    };
                }
            }
        }
        tbody {
            tr {
                td {
                    color: var(--optionalColor);
                    vertical-align: middle;
                    font: {
                        size: 15px;
                        weight: 600;
                    };
                    padding: {
                        left: 0;
                        right: 0;
                        top: 15px;
                        bottom: 15px;
                    };
                    border: {
                        left: none;
                        right: none;
                        color: #ebebeb;
                    };
                    &.product-thumbnail {
                        a {
                            display: inline-block;

                            img {
                                width: 80px;
                            }
                        }
                    }
                    &.product-name {
                        a {
                            display: inline-block;
                        }
                    }
                    &.product-subtotal {
                        .remove {
                            top: 2px;
                            color: red;
                            line-height: 1;
                            font-size: 20px;
                            margin-left: 40px;
                            position: relative;
                        }
                    }
                    &.product-quantity {
                        .input-counter {
                            max-width: 120px;
                            min-width: 120px;
                            text-align: center;
                            display: inline-block;
                            position: relative;

                            span {
                                top: 0;
                                width: 35px;
                                height: 100%;
                                font-size: 14px;
                                line-height: 37px;
                                position: absolute;
                                cursor: pointer;
                                color: var(--blackColor);
                                background-color: transparent;
                                transition: var(--transition);
                                border: 1px solid #eeeeee;

                                i {
                                    position: relative;
                                    top: 1px;
                                }
                                &.minus-btn {
                                    left: 0;
                                }
                                &.plus-btn {
                                    right: 0;
                                }
                                &:hover {
                                    color: var(--mainColor);
                                }
                            }
                            input {
                                height: 40px;
                                outline: 0;
                                width: 100%;
                                display: block;
                                text-align: center;
                                color: var(--blackColor);
                                border: 1px solid #eeeeee;
                                background-color: transparent;
                                font: {
                                    size: 17px;
                                    weight: 600;
                                }
                                &::placeholder {
                                    color: var(--blackColor);
                                }
                            }
                        }
                    }
                    &.product-subtotal {
                        overflow: hidden;
                    }
                }
                &:last-child {
                    td {
                        border-bottom: none;
                    }
                }
            }
        }
    }
}
.cart-buttons-desc {
    .shopping-coupon-code {
        position: relative;

        .form-control {
            height: 50px;
        }
        button {
            top: 0;
            right: 0;
            height: 50px;
            border: none;
            padding: 0 25px;
            position: absolute;
            color: var(--whiteColor);
            border-radius: 0 5px 5px 0;
            transition: var(--transition);
            background-color: var(--blackColor);
            font: {
                size: var(--fontSize);
                weight: 700;
            };
            &:hover {
                background-color: var(--startupMainColor);
            }
        }
    }
    .default-btn {
        box-shadow: unset;
    }
}
.cart-totals-desc {
    padding: 30px;
    background-color: #f5f5f5;

    h3 {
        padding: 16px 20px;
        margin-bottom: 30px;
        color: var(--whiteColor);
        font-size: var(--fontSize);
        background-color: var(--blackColor);
        margin: {
            top: -30px;
            left: -30px;
            right: -30px;
        };
    }
    ul {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            overflow: hidden;
            display: block;
            margin-bottom: 12px;
            padding-bottom: 12px;
            font-weight: 500;
            color: var(--optionalColor);
            border-bottom: 1px solid #ebebeb;

            span {
                float: right;
            }
            &:last-child {
                font-weight: 700;
                color: var(--blackColor);
                padding-bottom: 0;
                margin-bottom: 0;
                border-bottom: none;
            }
        }
    }
    .default-btn {
        margin-top: 25px;
        box-shadow: unset;
    }
}

/*================================================
Checkout Area CSS
=================================================*/
.billing-details-desc {
    padding: 30px 30px 10px;
    background-color: #f5f5f5;

    h3 {
        font-size: 20px;
        margin-bottom: 30px;
        color: var(--whiteColor);
        background-color: var(--blackColor);
        padding: {
            top: 17px;
            left: 30px;
            right: 30px;
            bottom: 17px;
        };
        margin: {
            right: -30px;
            left: -30px;
            top: -30px;
        };
    }
    .form-group {
        margin-bottom: 20px;

        label {
            display: block;
            font-weight: 500;
            margin-bottom: 12px;
            color: var(--blackColor);

            .required {
                color: red;
            }
        }
        .form-control {
            background-color: var(--whiteColor) !important;
        }
        select {
            background-color: var(--whiteColor);
            height: 50px;
            cursor: pointer;
            border: none;
            display: block;
            width: 100%;
            padding-left: 15px;
        }
    }
}
.order-details-desc {
    padding: 30px;
    background-color: #f5f5f5;

    h3 {
        font-size: 20px;
        margin-bottom: 30px;
        color: var(--whiteColor);
        background-color: var(--blackColor);
        padding: {
            left: 30px;
            right: 30px;
            top: 17px;
            bottom: 17px;
        };
        margin: {
            left: -30px;
            right: -30px;
            top: -30px;
        };
    }
    .order-details {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            display: block;
            font-weight: 500;
            overflow: hidden;
            margin-bottom: 12px;
            padding-bottom: 12px;
            color: var(--optionalColor);
            border-bottom: 1px solid #ebebeb;

            span {
                float: right;
            }
            &:last-child {
                font-weight: 700;
                margin-bottom: 0;
                padding-bottom: 0;
                border-bottom: none;
                color: var(--blackColor);
            }
        }
    }
    .payment-method {
        margin: {
            top: 30px;
            bottom: 20px;
        };
        p {
            margin-bottom: 12px;

            &:last-child {
                margin-bottom: 0;
            }
            [type="radio"] {
                &:checked, &:not(:checked) {
                    display: none;
                }
            }
            [type="radio"] {
                &:checked, &:not(:checked) {
                    + label {
                        padding-left: 27px;
                        cursor: pointer;
                        display: block;
                        color: var(--blackColor);
                        position: relative;
                        margin-bottom: 8px;
                        font: {
                            size: var(--fontSize);
                            weight: 700;
                        };
                        &::before {
                            content: '';
                            position: absolute;
                            left: 0;
                            top: 5px;
                            width: 18px;
                            height: 18px;
                            border: 1px solid #dddddd;
                            border-radius: 50%;
                            background: var(--whiteColor);
                        }
                        &::after {
                            content: '';
                            width: 12px;
                            height: 12px;
                            background: var(--startupMainColor);
                            position: absolute;
                            top: 8px;
                            left: 3px;
                            border-radius: 50%;
                            transition: var(--transition);
                        }
                    }
                }
            }
            [type="radio"] {
                &:not(:checked) {
                    + label {
                        &::after {
                            opacity: 0;
                            visibility: hidden;
                            transform: scale(0);
                        }
                    }
                }
            }
            [type="radio"] {
                &:checked {
                    + label {
                        &::after {
                            opacity: 1;
                            visibility: visible;
                            transform: scale(1);
                        }
                    }
                }
            }
        }
    }
    .form-check {
        color: var(--optionalColor);
        font-weight: 500;

        a {
            color: var(--startupMainColor);

            &:hover {
                text-decoration: underline;
            }
        }
    }
    .default-btn {
        margin-top: 25px;
        display: block;
        width: 100%;
        box-shadow: unset;
        border-radius: 5px;
        padding: {
            top: 13px;
            bottom: 13px;
            left: 30px;
            right: 30px;
        };
    }
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-area {
    &.bg-image {
        background: {
            image: url(/assets/img/bg10.jpg);
            position: center center;
            repeat: no-repeat;
            size: cover;
        };
        .section-title {
            &.style-three {
                h2 {
                    span {
                        background-color: #f7eee8;
                    }
                }
            }
        }
    }
}
.testimonials-inner {
    background-color: var(--blackColor);
    padding: {
        left: 60px;
        right: 60px;
    };
    &.bg-app-image {
        background: {
            image: url(/assets/img/bg5.jpg);
            position: center center;
            size: cover;
            repeat: no-repeat;
        };
    }
    .testimonials-item {
        max-width: 650px;
        box-shadow: unset;
        background-color: transparent;
        padding: 0;
        margin: {
            left: auto;
            right: auto;
        };
        .icon {
            color: var(--whiteColor);
        }
        p {
            color: var(--whiteColor);
        }
        .info {
            .title {
                h3 {
                    color: var(--whiteColor);
                }
                span {
                    color: var(--whiteColor);
                    opacity: 0.9;
                }
            }
        }
    }
    .testimonials-slides {
        &.owl-theme {
            .owl-nav {
                [class*=owl-] {
                    margin: 0;
                    background-color: var(--whiteColor);
                    color: var(--appMainColor);
                    padding: 0 !important;
                    border-radius: 50%;
                    border: none;
                    font-size: 20px;
                    width: 50px;
                    height: 50px;
                    line-height: 50px;

                    &:hover {
                        background-color: var(--blackColor);
                        color: var(--whiteColor);
                    }
                }
            }
        }
    }
    &.it-agency-color {
        background-color: transparent;

        .testimonials-item {
            .icon {
                color: var(--itAgencyMainColor);
            }
            p {
                color: var(--blackColor);
            }
            .info {
                .title {
                    h3 {
                        color: var(--blackColor);
                    }
                    span {
                        color: var(--optionalColor);
                        opacity: 1;
                    }
                }
            }
        }
        .testimonials-slides {
            &.owl-theme {
                .owl-nav {
                    [class*=owl-] {
                        background: var(--itAgencyGradientColor);
                        color: var(--whiteColor);
                    }
                }
            }
        }
    }
    &.minimal-portfolio-color {
        background-color: transparent;

        .testimonials-item {
            .icon {
                color: var(--minimalPortfolioColor);
            }
            p {
                color: var(--blackColor);
            }
            .info {
                .title {
                    h3 {
                        color: var(--blackColor);
                    }
                    span {
                        color: var(--optionalColor);
                        opacity: 1;
                    }
                }
            }
        }
        .testimonials-slides {
            &.owl-theme {
                .owl-nav {
                    [class*=owl-] {
                        background: #f9f9f9;
                        color: var(--blackColor);

                        &:hover {
                            background-color: var(--minimalPortfolioColor);
                            color: var(--whiteColor);
                        }
                    }
                }
            }
        }
    }
    &.shop-color {
        background-color: transparent;

        .testimonials-item {
            .icon {
                color: var(--shopMainColor);
            }
            p {
                color: var(--blackColor);
            }
            .info {
                .title {
                    h3 {
                        color: var(--blackColor);
                    }
                    span {
                        color: var(--optionalColor);
                        opacity: 1;
                    }
                }
            }
        }
        .testimonials-slides {
            &.owl-theme {
                .owl-nav {
                    [class*=owl-] {
                        background: var(--whiteColor);
                        color: var(--blackColor);

                        &:hover {
                            background-color: var(--blackColor);
                            color: var(--whiteColor);
                        }
                    }
                }
            }
        }
    }
}
.testimonials-item {
    text-align: center;
    background-color: var(--whiteColor);
    padding: 30px;
    box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, .1);

    .icon {
        line-height: 1;
        margin-bottom: 25px;
        color: var(--appMainColor);
        display: block;
        font-size: 45px;
    }
    p {
        color: var(--blackColor);
        font: {
            size: 20px;
            weight: 500;
        };
    }
    .info {
        margin-top: 30px;
        text-align: start;

        img {
            display: inline-block !important;
            width: 80px !important;
            height: 80px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .title {
            margin-left: 10px;

            h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }
            span {
                display: block;
                font-weight: 500;
                color: var(--appMainColor);
                opacity: .85;
            }
        }
    }
}
.startup-testimonials-area {
    .container-fluid {
        max-width: 1400px;
    }
}
.startup-testimonials-image {
    z-index: 1;
    text-align: center;
    position: relative;
    background-color: #2d2d37;
    padding: {
        top: 80px;
        left: 80px;
        bottom: 80px;
    };
    img {
        width: auto !important;
        display: inline-block !important;
    }
}
.startup-testimonials-content {
    text-align: center;
    padding: {
        left: 40px;
        right: 40px;
        bottom: 100px;
    };
    .icon {
        line-height: 1;
        margin-bottom: 20px;
        color: var(--startupMainColor);
        display: block;
        font-size: 45px;
    }
    p {
        color: var(--blackColor);
        font: {
            size: 18px;
            weight: 600;
        };
    }
    .info {
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid #eeeeee;

        h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        span {
            display: block;
            font-weight: 500;
        }
    }
}
.startup-testimonials-slides {
    &.owl-theme {
        .owl-nav {
            margin-top: 0;
            position: absolute;
            right: 22%;
            bottom: 105px;
            transform: translateX(22%);

            [class*=owl-] {
                margin: 0 5px;
                background-color: var(--startupMainColor);
                color: var(--whiteColor);
                padding: 8px 25px 7px !important;
                border-radius: 0;
                transition: var(--transition);
                border: none;
                cursor: pointer;
                font-size: var(--fontSize);

                i {
                    line-height: 1;
                }
                &.owl-prev {
                    margin-left: 0;
                }
                &.owl-next {
                    margin-right: 0;
                }
                &:hover {
                    background-color: var(--blackColor);
                    color: var(--whiteColor);
                }
            }
        }
    }
}
.marketing-testimonials-area {
    border-bottom: 1px solid #f0f0f0;
}
.marketing-testimonials-image {
    text-align: center;
    position: relative;
    z-index: 2;
    margin: {
        right: 50px;
        left: 50px;
    };
    &::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        content: '';
        position: absolute;
        border-radius: 50%;
        background-color: var(--marketingMainColor);
    }
    &::after {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -2;
        content: '';
        position: absolute;
        border-radius: 65% 35% 70% 30% / 64% 31% 69% 36%;
        background-color: #ffac00;
    }
    img {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        display: inline-block !important;
        width: auto !important;
    }
}
.marketing-testimonials-content {
    text-align: center;
    padding-bottom: 60px;

    .icon {
        line-height: 1;
        margin-bottom: 20px;
        color: var(--marketingMainColor);
        display: block;
        font-size: 45px;
    }
    p {
        color: var(--blackColor);
        font: {
            size: 18px;
            weight: 600;
        };
    }
    .info {
        margin-top: 25px;

        h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        span {
            display: block;
            font-weight: 500;
        }
    }
}
.marketing-testimonials-slides {
    &.owl-theme {
        .owl-nav {
            right: 22%;
            margin-top: 0;
            bottom: 100px;
            position: absolute;
            transform: translateX(22%);

            [class*=owl-] {
                margin: 0 5px;
                background-color: var(--marketingMainColor);
                color: var(--whiteColor);
                padding: 8px 25px 7px !important;
                border-radius: 0;
                transition: var(--transition);
                border: none;
                cursor: pointer;
                font-size: var(--fontSize);

                i {
                    line-height: 1;
                }
                &.owl-prev {
                    margin-left: 0;
                }
                &.owl-next {
                    margin-right: 0;
                }
                &:hover {
                    background-color: var(--blackColor);
                    color: var(--whiteColor);
                }
            }
        }
    }
}
.business-testimonials-area {
    background: var(--businessGradientColor);
    background: {
        image: url(/assets/img/bg1.jpg);
        position: center center;
        size: cover;
        repeat: no-repeat;
    };
}
.business-testimonials-image {
    text-align: center;
    position: relative;
    margin-right: 30px;
    z-index: 2;

    &::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        content: '';
        position: absolute;
        border-radius: 20% 80% 50% 50% / 20% 50% 50% 80%;
        border: 2px solid var(--whiteColor);
    }
    &::after {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -2;
        content: '';
        position: absolute;
        border-radius: 65% 35% 70% 30% / 64% 31% 69% 36%;
        background-color: #ffac00;
    }
    img {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        display: inline-block !important;
        width: auto !important;
    }
}
.business-testimonials-content {
    text-align: center;

    .icon {
        line-height: 1;
        margin-bottom: 25px;
        color: var(--whiteColor);
        display: block;
        font-size: 45px;
    }
    p {
        color: var(--whiteColor);
        font: {
            size: 20px;
            weight: 500;
        };
    }
    .info {
        margin-top: 30px;

        h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--whiteColor);
        }
        span {
            display: block;
            font-weight: 500;
            color: var(--whiteColor);
            opacity: .85;
        }
    }
}
.saas-testimonials-item {
    border: 1px solid #242532;
    background-color: rgba(4, 6, 17, .90);
    padding: 30px;

    .info {
        margin-bottom: 25px;

        img {
            display: inline-block !important;
            width: 80px !important;
            height: 80px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .title {
            margin-left: 10px;

            h3 {
                font-size: 18px;
                margin-bottom: 8px;
                color: var(--whiteColor);
            }
            span {
                display: block;
                font-weight: 600;
                color: var(--saasMainColor);
            }
        }
    }
    p {
        font-size: 16px;
        color: var(--whiteColor);
    }
}
.testimonials-slides {
    &.owl-theme {
        padding: {
            left: 120px;
            right: 120px;
        };
        .owl-nav {
            margin-top: 0;

            [class*=owl-] {
                margin: 0;
                background-color: transparent;
                color: var(--whiteColor);
                padding: 8px 25px 6px !important;
                border-radius: 0;
                transition: var(--transition);
                border: none;
                cursor: pointer;
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                border: 1px solid var(--whiteColor);
                font-size: var(--fontSize);

                &.owl-next {
                    left: auto;
                    right: 0;
                }
                i {
                    line-height: 1;
                }
                &:hover {
                    background-color: var(--whiteColor);
                    color: var(--blackColor);
                }
            }
        }
    }
}
.saas-testimonials-slides {
    &.owl-theme {
        position: relative;
        margin-top: -100px;
        z-index: 1;
        padding: {
            left: 80px;
            right: 80px;
        };
        .owl-nav {
            margin-top: 0;

            [class*=owl-] {
                top: 50%;
                margin: 0;
                left: 30px;
                border: none;
                font-size: 20px;
                cursor: pointer;
                border-radius: 0;
                position: absolute;
                color: var(--whiteColor);
                transform: translateY(-50%);
                transition: var(--transition);
                background-color: transparent !important;

                &.owl-next {
                    left: auto;
                    right: 30px;
                }
                i {
                    line-height: 1;
                }
                &:hover {
                    color: var(--saasMainColor);
                }
            }
        }
    }
}
.testimonials-box {
    text-align: center;
    border: 1px solid #d5edff;
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);

    .icon {
        width: 80px;
        height: 80px;
        line-height: 82px;
        background-color: #d5edff;
        border-radius: 50%;
        font-size: 35px;
        display: block;
        color: #2ea7ff;
        transition: var(--transition);
        margin: {
            left: auto;
            right: auto;
            bottom: 20px;
        };
    }
    p {
        color: var(--blackColor);
        font: {
            size: 16px;
            weight: 500;
        };
    }
    .info {
        margin-top: 25px;

        h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        span {
            display: block;
            font-weight: 500;
            color: var(--personalPortfolioMainColor);
            opacity: .85;
        }
    }
    &:hover {
        border-color: var(--personalPortfolioMainColor) !important;

        .icon {
            background-color: #2ea7ff;
            color: var(--whiteColor);
        }
        &.bg-ca83ff {
            .icon {
                color: var(--whiteColor);
                background-color: #ca83ff;
            }
        }
        &.bg-ff9f07 {
            .icon {
                color: var(--whiteColor);
                background-color: #ff9f07;
            }
        }
    }
    &.bg-ca83ff {
        border-color: #faf2ff;

        .icon {
            background-color: #faf2ff;
            color: #ca83ff;
        }
    }
    &.bg-ff9f07 {
        border-color: #fff5e6;

        .icon {
            background-color: #fff5e6;
            color: #ff9f07;
        }
    }
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
    &.with-border {
        border-top: 1px solid #f0f0f0;
    }
}
.single-team-member {
    background-color: #f9f4f0;
    margin-bottom: 30px;
    text-align: center;

    .content {
        padding: 25px 20px;
        z-index: 1;
        position: relative;
        transition: var(--transition);

        h3 {
            transition: var(--transition);
            font-size: 20px;
            margin-bottom: 10px;
        }
        span {
            display: block;
            color: var(--startupMainColor);
            transition: var(--transition);
        }
        .social {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 25px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);

            li {
                display: inline-block;
                margin: {
                    left: 7px;
                    right: 7px;
                };
                a {
                    display: block;
                    font-size: 20px;
                    color: var(--whiteColor);

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
            }
        }
        &::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 40px;
            background-color: var(--blackColor);
            top: -40px;
            z-index: -1;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }
    }
    &:hover, &.active {
        .content {
            background-color: var(--blackColor);

            h3 {
                color: var(--whiteColor);
                transform: translateY(-40px);
            }
            span {
                color: var(--whiteColor);
                transform: translateY(-40px);
            }
            .social {
                opacity: 1;
                visibility: visible;
            }
            &::before {
                opacity: 1;
                visibility: visible;
            }
        }
    }
    &.marketing-color {
        .content {
            span {
                color: var(--marketingMainColor);
            }
            .social {
                li {
                    a {
                        &:hover {
                            color: var(--marketingMainColor);
                        }
                    }
                }
            }
            &::before {
                background-color: var(--marketingMainColor);
            }
        }
        &:hover, &.active {
            .content {
                background-color: var(--marketingMainColor);

                span {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.business-color {
        .content {
            position: relative;
            z-index: 1;

            span {
                color: var(--businessMainColor);
            }
            .social {
                li {
                    a {
                        &:hover {
                            color: var(--whiteColor);
                        }
                    }
                }
            }
            &::after {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                z-index: -1;
                background: var(--businessGradientColor);
                content: '';
                transition: var(--transition);
                opacity: 0;
                visibility: hidden;
            }
            &::before {
                background: var(--businessGradientColor);
            }
        }
        &:hover, &.active {
            .content {
                background-color: transparent;

                &::after {
                    opacity: 1;
                    visibility: visible;
                }
                span {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.bg-ffefef {
        background-color: #ffefef;
    }
    &.bg-f0efff {
        background-color: #f0efff;
    }
    &.it-agency-color {
        .content {
            position: relative;
            z-index: 1;

            span {
                color: var(--itAgencyMainColor);
            }
            .social {
                li {
                    a {
                        &:hover {
                            color: var(--whiteColor);
                        }
                    }
                }
            }
            &::after {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                z-index: -1;
                background: var(--itAgencyGradientColor);
                content: '';
                transition: var(--transition);
                opacity: 0;
                visibility: hidden;
            }
            &::before {
                background: var(--itAgencyGradientColor);
            }
        }
        &:hover, &.active {
            .content {
                background-color: transparent;

                &::after {
                    opacity: 1;
                    visibility: visible;
                }
                span {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.border-radius {
        border-radius: 10px;

        img {
            border-radius: 10px 10px 0 0;
        }
    }
}
.single-team-box {
    text-align: center;
    margin-bottom: 30px;

    .image {
        position: relative;

        .social {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding-left: 0;
            margin-bottom: 15px;
            list-style-type: none;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            padding: 25px;

            li {
                display: inline-block;
                margin: {
                    left: 2px;
                    right: 2px;
                };
                a {
                    display: block;
                    width: 35px;
                    height: 35px;
                    border-radius: 50%;
                    line-height: 35px;
                    background-color: var(--whiteColor);
                    color: var(--blackColor);

                    &:hover {
                        background-color: var(--startupMainColor);
                        color: var(--whiteColor);
                    }
                }
            }
        }
    }
    .content {
        margin-top: 22px;

        h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }
        span {
            display: block;
            color: var(--startupMainColor);
        }
    }
    &:hover {
        .image {
            .social {
                opacity: 1;
                margin-bottom: 0;
                visibility: visible;
            }
        }
    }
    &.consulting-color {
        .image {
            .social {
                li {
                    a {
                        &:hover {
                            background-color: var(--consultingMainColor);
                        }
                    }
                }
            }
        }
        .content {
            span {
                color: var(--consultingMainColor);
            }
        }
    }
}
.team-member {
    margin-bottom: 30px;
    text-align: center;

    .content {
        z-index: 1;
        padding: 25px 20px;
        position: relative;
        transition: var(--transition);
        background-color: var(--whiteColor);
        box-shadow: 0 5px 20px rgba(34, 34, 34, 0.1);
        margin: {
            left: 15px;
            top: -30px;
            right: 15px;
        };
        h3 {
            transition: var(--transition);
            font-size: 20px;
            margin-bottom: 10px;
        }
        span {
            display: block;
            color: var(--startupMainColor);
            transition: var(--transition);
        }
        .social {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 25px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);

            li {
                display: inline-block;
                margin: {
                    left: 7px;
                    right: 7px;
                };
                a {
                    display: block;
                    font-size: 20px;
                    color: var(--whiteColor);

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
            }
        }
        &::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 40px;
            background-color: var(--blackColor);
            top: -40px;
            z-index: -1;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }
    }
    &:hover, &.active {
        .content {
            background-color: var(--blackColor);

            h3 {
                color: var(--whiteColor);
                transform: translateY(-40px);
            }
            span {
                color: var(--whiteColor);
                transform: translateY(-40px);
            }
            .social {
                opacity: 1;
                visibility: visible;
            }
            &::before {
                opacity: 1;
                visibility: visible;
            }
        }
    }
    &.marketing-color {
        .content {
            span {
                color: var(--marketingMainColor);
            }
            .social {
                li {
                    a {
                        &:hover {
                            color: var(--whiteColor);
                        }
                    }
                }
            }
            &::before {
                background-color: var(--marketingMainColor);
            }
        }
        &:hover, &.active {
            .content {
                background-color: var(--marketingMainColor);

                span {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.business-color {
        .content {
            position: relative;
            z-index: 1;

            span {
                color: var(--businessMainColor);
            }
            .social {
                li {
                    a {
                        &:hover {
                            color: var(--whiteColor);
                        }
                    }
                }
            }
            &::after {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                z-index: -1;
                background: var(--businessGradientColor);
                content: '';
                transition: var(--transition);
                opacity: 0;
                visibility: hidden;
            }
            &::before {
                background: var(--businessGradientColor);
            }
        }
        &:hover, &.active {
            .content {
                background-color: transparent;

                &::after {
                    opacity: 1;
                    visibility: visible;
                }
                span {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.bg-ffefef {
        background-color: #ffefef;
    }
    &.bg-f0efff {
        background-color: #f0efff;
    }
    &.it-agency-color {
        .content {
            position: relative;
            z-index: 1;

            span {
                color: var(--itAgencyMainColor);
            }
            .social {
                li {
                    a {
                        &:hover {
                            color: var(--whiteColor);
                        }
                    }
                }
            }
            &::after {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                z-index: -1;
                background: var(--itAgencyGradientColor);
                content: '';
                transition: var(--transition);
                opacity: 0;
                visibility: hidden;
            }
            &::before {
                background: var(--itAgencyGradientColor);
            }
        }
        &:hover, &.active {
            .content {
                background-color: transparent;

                &::after {
                    opacity: 1;
                    visibility: visible;
                }
                span {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.border-radius {
        border-radius: 10px;

        img {
            border-radius: 10px 10px 0 0;
        }
    }
}
.team-box {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    .content {
        left: 0;
        right: 0;
        z-index: 1;
        bottom: -100px;
        padding: 25px;
        transition: .3s;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        background: var(--startupMainColor);

        h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--whiteColor);
        }
        span {
            display: block;
            color: var(--whiteColor);
            margin-bottom: 15px;
            font-weight: 600;
        }
        .social {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                display: inline-block;
                margin: {
                    left: 7px;
                    right: 7px;
                };
                a {
                    display: block;
                    font-size: 20px;
                    color: var(--whiteColor);

                    &:hover {
                        color: var(--whiteColor);
                        opacity: 0.85;
                    }
                }
            }
        }
    }
    &:hover, &.active {
        img {
            transform: scale(1.1);
        }
        .content {
            bottom: 0;
            opacity: 1;
            visibility: visible;
        }
    }
    &.business-color {
        .content {
            background: var(--businessGradientColor);
        }
    }
}

/*================================================
How It Works Area CSS
=================================================*/
.how-it-works-area {
    .section-title {
        max-width: 668px;
    }
}
.how-it-works-content {
    padding-right: 30px;

    ul {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            margin-bottom: 30px;
            position: relative;
            padding-left: 65px;

            i {
                position: absolute;
                left: 0;
                top: 0;
                font-size: 45px;
                background: var(--saasGradientColor);
                -webkit-background-clip: text;
                -moz-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            h3 {
                font-size: 20px;
                margin-bottom: 12px;
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    &.white-color {
        ul {
            li {
                color: var(--whiteColor);

                h3 {
                    color: var(--whiteColor);
                }
                p {
                    color: var(--whiteColor);
                    opacity: 0.9;
                }
            }
        }
    }
}
.how-it-works-image {
    text-align: center;
}

/*================================================
Skills Area CSS
=================================================*/
.skills-area {
    &.with-border {
        border-top: 1px solid #f0f0f0;
    }
}
.single-skills-box {
    margin-bottom: 30px;
    text-align: center;
    padding: 30px;
    background-color: #ffefef;

    &.bg-eaf6ff {
        background-color: #eaf6ff;
    }
    &.bg-fff5e6 {
        background-color: #fff5e6;
    }
    &.bg-f0efff {
        background-color: #f0efff;
    }
}

/*================================================
Expertise Area CSS
=================================================*/
.expertise-area {
    border-bottom: 1px solid #f0f0f0;
}
.expertise-box {
    margin-bottom: 30px;

    .icon {
        display: block;
        width: 80px;
        height: 80px;
        font-size: 40px;
        line-height: 80px;
        color: var(--personalPortfolioMainColor);
        border-radius: 10px;
        transition: var(--transition);
        margin-bottom: 25px;
        text-align: center;
        background-color: #f0efff;

        &.bg-fff5e6 {
            background-color: #fff5e6;
        }
        &.bg-f3f9e7 {
            background-color: #f3f9e7;
        }
        &.bg-ffefef {
            background-color: #ffefef;
        }
        &.bg-eaf6ff {
            background-color: #eaf6ff;
        }
        &.bg-faf2ff {
            background-color: #faf2ff;
        }
    }
    h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    &:hover {
        .icon {
            background-color: var(--personalPortfolioMainColor);
            color: var(--whiteColor);
        }
    }
}

/*================================================
CTA Area CSS
=================================================*/
.cta-area {
    position: relative;
    z-index: 1;
    background: {
        color: var(--blackColor);
        position: center center;
        repeat: no-repeat;
        size: cover;
        image: url(/assets/img/cta-bg1.jpg);
    };
    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        background-color: #000000;
        opacity: .75;
    }
}
.cta-content {
    text-align: center;
    max-width: 720px;
    margin: {
        left: auto;
        right: auto;
    };
    h2 {
        color: var(--whiteColor);
        margin-bottom: 0;
        line-height: 1.4;
        font-size: 40px;
    }
    p {
        color: var(--whiteColor);
        max-width: 600px;
        opacity: 0.9;
        margin: {
            right: auto;
            left: auto;
            top: 20px;
        };
    }
    .default-btn {
        margin-top: 15px;

        &:hover {
            background-color: var(--whiteColor);
            color: var(--blackColor);

            i {
                color: var(--blackColor);
            }
        }
    }
}
.call-to-action-area {
    &.bg-image {
        background: {
            image: url(/assets/img/bg7.jpg);
            position: right center;
            repeat: no-repeat;
            size: cover;
        };
    }
}
.call-to-action-content {
    color: var(--whiteColor);

    h2 {
        color: var(--whiteColor);
        margin-bottom: 0;
        line-height: 1.4;
        font-size: 37px;
    }
}
.call-to-action-btn {
    text-align: end;

    .default-btn {
        &:hover {
            background-color: var(--whiteColor);
            color: var(--blackColor);

            i {
                color: var(--blackColor);
            }
        }
    }
}
.call-to-action-inner {
    background-color: var(--blackColor);
    border-radius: 10px;
    padding: {
        left: 50px;
        right: 50px;
    };
    &.it-agency-color {
        background: var(--itAgencyGradientColor);

        .default-btn {
            background: var(--whiteColor);
            color: var(--blackColor);

            i {
                color: var(--blackColor);
            }
            &:hover {
                background: var(--blackColor);
                color: var(--whiteColor);

                i {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.startup-color {
        background: var(--startupMainColor);

        .default-btn {
            background: var(--whiteColor);
            color: var(--blackColor);

            i {
                color: var(--blackColor);
            }
            &:hover {
                background: var(--blackColor);
                color: var(--whiteColor);

                i {
                    color: var(--whiteColor);
                }
            }
        }
    }
}

/*================================================
Timeline/Short Brief Area CSS
=================================================*/
.short-brief-area {
    border-bottom: 1px solid #f0f0f0;
}
.short-brief-content {
    margin-bottom: 30px;

    .timeline {
        width: 100%;
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
    }
    .timeline-item {
        padding-left: 40px;
        position: relative;

        &:last-child {
            .timeline-content {
                padding-bottom: 0;
            }
        }
        &:not(.period):hover {
            .timeline-marker {
                &::before {
                    background: transparent;
                    border: 3px solid var(--blackColor);
                }
            }
        }
    }
    .timeline-marker {
        position: absolute;
        width: 15px;
        bottom: 0;
        top: 0;
        left: 0;

        &::before {
            transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
            background: var(--blackColor);
            border: 3px solid transparent;
            border-radius: 100%;
            position: absolute;
            display: block;
            height: 15px;
            width: 15px;
            content: "";
            top: 4px;
            left: 0;
        }
        &::after {
            background: #eeeeee;
            position: absolute;
            display: block;
            content: "";
            top: 24px;
            bottom: 0;
            left: 6px;
            width: 3px;
        }
    }
    .timeline-content {
        padding-bottom: 30px;

        h3 {
            font-size: 20px;
            margin-bottom: 13px;
        }
    }
    .timeline-info {
        .sub-title {
            color: var(--optionalColor);
            margin-bottom: 12px;
            font-weight: 500;
            display: block;

            span {
                display: inline-block;
                font: {
                    size: 18px;
                    weight: 700;
                };
            }
        }
    }
}

/*================================================
App Download Area CSS
=================================================*/
.app-download-area {
    background: {
        image: url(/assets/img/bg6.jpg);
        position: center center;
        repeat: no-repeat;
        size: cover;
    };
}
.app-download-image {
    text-align: center;
    padding-right: 30px;
}
.app-download-content {
    .sub-title {
        display: block;
        margin-bottom: 12px;
        color: var(--businessMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h2 {
        margin-bottom: 15px;
        font-size: 40px;
    }
    .btn-box {
        margin-top: 25px;

        .store-btn {
            display: inline-block;
            background-color: var(--whiteColor);
            position: relative;
            color: var(--optionalColor);
            padding: 11px 30px 11px 70px;
            margin-right: 15px;
            border-radius: 5px;
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.02), 0 1.5rem 2.2rem rgba(0, 0, 0, 0.04);
            font: {
                size: 13.5px;
                weight: 600;
            };
            img {
                position: absolute;
                left: 18px;
                top: 50%;
                transform: translateY(-50%);
                color: var(--blackColor);
                font: {
                    size: 40px;
                    weight: normal;
                };
            }
            span {
                display: block;
                color: var(--blackColor);
                margin-top: 2px;
                font: {
                    size: 18px;
                    weight: 700;
                };
            }
            &:last-child {
                margin-right: 0;
            }
        }
    }
}

/*================================================
Trending Style Area CSS
=================================================*/
.trending-style-image {
    position: relative;
    margin-right: 15px;
    padding: {
        bottom: 100px;
        right: 150px;
    };
    img {
        &:nth-child(2) {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 315px;
        }
    }
}
.trending-style-content {
    padding-left: 15px;

    .sub-title {
        display: block;
        margin-bottom: 12px;
        color: var(--shopMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
    }
    h2 {
        margin-bottom: 16px;
        font-size: 40px;
    }
    h3 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .default-btn {
        margin-top: 10px;
    }
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area {
    &.with-black-border {
        border-top: 1px solid #12141a;
    }
}
.single-pricing-box {
    padding: 40px;
    margin-bottom: 30px;
    border: 1px dashed #eeeeee;
    background-color: var(--whiteColor);
    box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, .1);
    transition: var(--transition);

    .pricing-header {
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #eeeeee;

        h3 {
            color: var(--marketingMainColor);
            margin-bottom: 12px;
            line-height: 1;
            font: {
                weight: 700;
                size: 45px;
            };
            span {
                color: var(--optionalColor);
                font: {
                    size: var(--fontSize);
                    weight: normal;
                };
            }
        }
        .sub-title {
            display: block;
            font-weight: 700;
            color: var(--blackColor);
        }
    }
    .features-list {
        margin-bottom: 25px;
        padding-left: 0;
        list-style-type: none;

        li {
            margin-bottom: 12px;
            color: var(--optionalColor);
            font-family: var(--headingFontFamily);
            position: relative;
            padding-left: 25px;

            i {
                position: absolute;
                left: 0;
                top: 5px;
                color: var(--marketingMainColor);

                &.close {
                    color: red;
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .default-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: {
            left: 35px;
            right: 35px;
            top: 14px;
            bottom: 14px;
        };
        &:hover {
            color: var(--whiteColor);
            background-color: #ffac00;
        }
    }
    &:hover {
        border-color: var(--marketingMainColor);
    }
}
.pricing-box {
    margin-bottom: 30px;
    text-align: center;
    background-color: var(--whiteColor);
    box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, .1);
    padding: 30px;

    .pricing-header {
        background: var(--appMainColor);
        margin: -30px -30px 30px;
        padding: 30px;
        position: relative;
        z-index: 1;
        overflow: hidden;

        h3 {
            margin-bottom: 15px;
            font-size: 20px;
            color: var(--whiteColor);
        }
        .price {
            color: var(--whiteColor);
            margin-bottom: 12px;
            line-height: 1;
            font: {
                weight: 700;
                size: 45px;
            };
            span {
                opacity: 0.9;
                font: {
                    size: var(--fontSize);
                    weight: normal;
                };
            }
        }
        &::before {
            width: 400px;
            height: 400px;
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 50%;
            bottom: 10px;
            background-color: #0084ff;
            opacity: 0.1;
            z-index: -1;
            transition: var(--transition);
        }
    }
    .features-list {
        padding-left: 0;
        margin-bottom: 30px;
        list-style-type: none;

        li {
            margin-bottom: 12px;
            color: var(--optionalColor);
            font-family: var(--headingFontFamily);
            position: relative;

            &.unactive {
                text-decoration: line-through;
                color: #9b9dbb;
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .default-btn {
        background: transparent;
        color: var(--blackColor);
        border: 1px solid var(--appMainColor);
        box-shadow: unset;

        i {
            color: var(--blackColor);
        }
        &:hover {
            background: var(--appMainColor);
            border-color: var(--appMainColor);
            color: var(--whiteColor);

            i {
                color: var(--whiteColor);
            }
        }
    }
    &.saas-color {
        .pricing-header {
            background: var(--saasGradientColor);

            &::before {
                background-color: var(--appMainColor);
            }
        }
        .default-btn {
            border-color: #4d4d57;;

            &:hover {
                background: var(--saasMainColor);
                border-color: var(--saasMainColor);
            }
        }
    }
    &.bg-black {
        box-shadow: unset;
        background-color: #040611;
        border: 1px solid #272836;
        transition: var(--transition);

        .pricing-header {
            transition: var(--transition);
            background: transparent;
            border-bottom: 1px solid #272836;
            padding: 0 0 30px;
            margin: {
                top: 0;
                left: 0;
                right: 0;
            };
            &::before {
                display: none;
            }
        }
        .features-list {
            color: var(--whiteColor);

            li {
                color: var(--whiteColor);

                &.unactive {
                    color: #5c5656;
                }
            }
        }
        .default-btn {
            color: var(--whiteColor);

            i {
                color: var(--whiteColor);
            }
        }
    }
    &:hover {
        .pricing-header {
            &::before {
                bottom: -185%;
            }
        }
    }
    &.active {
        .default-btn {
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.2rem rgba(0, 0, 0, 0.1);
            background: var(--appGradientColor);
            color: var(--whiteColor);
            border: none;

            i {
                color: var(--whiteColor);
            }
            &.saas-color {
                background: var(--saasGradientColor);
            }
        }
    }
}
.pricing-tabs {
    margin-top: -10px;

    .nav {
        padding-left: 0;
        margin-bottom: 50px;
        list-style-type: none;
        justify-content: center;
        border-bottom: none;

        .nav-item {
            .nav-link {
                background-color: var(--whiteColor);
                position: relative;
                z-index: 1;
                color: var(--blackColor);
                border-radius: 0;
                border: none;
                padding: 11px 35px;
                font: {
                    size: var(--fontSize);
                    weight: 700;
                };
                &::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    z-index: -1;
                    background: var(--saasGradientColor);
                    transition: var(--transition);
                    opacity: 0;
                    visibility: hidden;
                }
                &:hover, &.active {
                    color: var(--whiteColor);

                    &::before {
                        opacity: 1;
                        visibility: visible;
                    }
                }
            }
            &:first-child {
                .nav-link {
                    border-radius: 5px 0 0 5px;

                    &::before {
                        border-radius: 5px 0 0 5px;
                    }
                }
            }
            &:last-child {
                .nav-link {
                    border-radius: 0 5px 5px 0;

                    &::before {
                        border-radius: 0 5px 5px 0;
                    }
                }
            }
        }
    }
}
.pricing-item {
    padding: 30px;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    background-color: #f3f4f7;
    transition: var(--transition);

    .pricing-header {
        border-bottom: 1px solid #e5e4e4;
        transition: var(--transition);
        margin: -30px 0 30px;
        padding: 30px;

        h3 {
            transition: var(--transition);
            margin-bottom: 15px;
            font-size: 20px;
        }
        .price {
            color: var(--consultingMainColor);
            margin-bottom: 12px;
            line-height: 1;
            font: {
                weight: 700;
                size: 45px;
            };
            span {
                opacity: 0.9;
                color: var(--optionalColor);
                transition: var(--transition);
                font: {
                    size: var(--fontSize);
                    weight: normal;
                };
            }
        }
    }
    .features-list {
        padding-left: 0;
        margin-bottom: 30px;
        list-style-type: none;

        li {
            margin-bottom: 12.5px;
            font-family: var(--headingFontFamily);

            &.unactive {
                text-decoration: line-through;
                color: #b0b1c0;
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .ribbon {
        top: -10px;
        right: -25px;
        width: 150px;
        height: 150px;
        overflow: hidden;
        position: absolute;

        span {
            background-color: var(--whiteColor);
            text-transform: uppercase;
            color: var(--blackColor);
            transform: rotate(45deg);
            text-align: center;
            position: absolute;
            display: block;
            width: 225px;
            left: -25px;
            top: 30px;
            padding: {
                top: 8px;
                bottom: 8px;
            };
            font: {
                size: var(--fontSize);
                weight: 700;
            };
        }
    }
    &.active, &:hover {
        color: var(--whiteColor);
        background-color: var(--blackColor);

        .pricing-header {
            border-bottom-color: #464c59;

            h3 {
                color: var(--whiteColor);
            }
            .price {
                span {
                    color: var(--whiteColor);
                }
            }
        }
        .default-btn {
            background-color: var(--whiteColor);
            color: var(--blackColor);

            i {
                color: var(--blackColor);
            }
        }
    }
    &.border-radius {
        border-radius: 10px;
        background-color: #f9f9f9;
    }
    &.it-agency-color {
        .pricing-header {
            border-bottom: none;
            background-color: #fff5e6;
            margin: {
                left: -30px;
                right: -30px;
            };
            h3 {
                color: var(--blackColor);
            }
            .price {
                color: var(--blackColor);
            }
        }
        .features-list {
            color: var(--blackColor);

            li {
                color: var(--blackColor);

                &.unactive {
                    color: #b0b1c0;
                }
            }
        }
        .default-btn {
            background-color: var(--blackColor);
            color: var(--whiteColor);

            i {
                color: var(--whiteColor);
            }
        }
        &:hover {
            .pricing-header {
                .price {
                    span {
                        color: var(--optionalColor);
                    }
                }
            }
        }
        &.active {
            background-color: #f9f9f9;

            .pricing-header {
                background: var(--itAgencyGradientColor);

                h3 {
                    color: var(--whiteColor);
                }
                .price {
                    color: var(--whiteColor);

                    span {
                        color: var(--whiteColor);
                    }
                }
            }
            .default-btn {
                background: var(--itAgencyGradientColor);
                color: var(--whiteColor);

                i {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.startup-color {
        .pricing-header {
            .price {
                color: var(--startupMainColor);
            }
        }
    }
}

/*================================================
App Screenshot Area CSS
=================================================*/
.app-screenshot-area {
    background: var(--appGradientColor);
    position: relative;
    overflow: hidden;
    z-index: 1;

    .section-title {
        h2 {
            color: var(--whiteColor);
        }
        p {
            color: var(--whiteColor);
        }
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 200px;
        z-index: -1;
        background-color: var(--whiteColor);
    }
    .overlay {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -2;

        &::before {
            width: 650px;
            height: 650px;
            position: absolute;
            left: -3%;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: -25%;
            content: '';
            background-color: #0084ff;
            opacity: 0.10;
            animation: border-transform 10s linear infinite alternate forwards;
        }
        &::after {
            right: -3%;
            bottom: 0;
            content: '';
            opacity: 0.10;
            width: 600px;
            height: 600px;
            position: absolute;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background-color: #0084ff;
            animation: border-transform 10s linear infinite alternate forwards;
        }
    }
}
.single-sccrenshot-item {
    text-align: center;
}
.screenshot-wrap {
    position: relative;

    .screenshot-frame {
        z-index: 2;
        border-radius: 20px;
        display: block;
        width: 241px;
        height: 504px;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: 10px 0;
        left: 50%;
        transform: translateX(-50%);
        background: {
            image: url(/assets/img/screenshot/frame.png);
            repeat: no-repeat;
            size: 100% 100%;
        };
    }
}
.screenshot-slides {
    margin: {
        top: -10px;
        bottom: -10px;
    };
    &.owl-theme {
        .owl-nav {
            margin-top: 0;

            [class*=owl-] {
                margin: 0;
                background-color: var(--whiteColor);
                color: var(--appMainColor);
                transition: var(--transition);
                border: none;
                cursor: pointer;
                position: absolute;
                left: -40px;
                top: 50%;
                width: 40px;
                line-height: 40px;
                height: 40px;
                border-radius: 50%;
                transform: translateY(-50%);
                font-size: 18px;

                &.owl-next {
                    left: auto;
                    right: -40px;
                }
                i {
                    line-height: 1;
                }
                &:hover {
                    background-color: var(--blackColor);
                    color: var(--whiteColor);
                }
            }
        }
    }
}

/*================================================
Facility Area CSS
=================================================*/
.facility-content {
    padding-right: 50px;

    .item {
        margin-bottom: 30px;
        position: relative;
        padding-left: 65px;

        &:last-child {
            margin-bottom: 0;
        }
        i {
            position: absolute;
            font-size: 45px;
            left: 0;
            top: 0;
        }
        h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }
    }
}

/*================================================
Latest Posts Area CSS
=================================================*/
.latest-posts-area {
    .section-title {
        &.style-four {
            padding-bottom: 8px;
            margin: {
                top: -7px;
                bottom: 30px;
            };
        }
    }
}
.single-latest-post-box {
    margin-bottom: 30px;

    .post-image {
        overflow: hidden;

        img {
            transition: var(--transition);
        }
    }
    .post-content {
        padding: {
            top: 25px;
            left: 25px;
            right: 25px;
        };
        .tag {
            margin-bottom: 12px;
            display: inline-block;
            position: relative;
            font-weight: 600;
            color: var(--blackColor);
        }
        .meta {
            padding-left: 0;
            margin-bottom: 13px;
            list-style-type: none;

            li {
                display: inline-block;
                margin-right: 15px;
                position: relative;
                padding-left: 22px;
                color: var(--optionalColor);

                i {
                    position: absolute;
                    left: 0;
                    top: 4px;
                    color: var(--blackColor);
                }
                a {
                    color: var(--optionalColor);

                    &:hover {
                        color: var(--blackColor);
                    }
                }
            }
        }
        h3 {
            margin-bottom: 12px;
            line-height: 1.4;
            font-size: 25px;
        }
        .link-btn {
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-right: 12px;

            i {
                position: absolute;
                right: 0;
                top: 7px;
                font-size: 12px;
            }
            &::before {
                content: '';
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0%;
                height: 1px;
                background-color: var(--blackColor);
                transition: var(--transition);
            }
            &:hover {
                padding-right: 15px;
                color: var(--blackColor);

                &::before {
                    width: 100%;
                    right: auto;
                    left: 0;
                }
            }
        }
    }
    &:hover {
        .post-image {
            img {
                transform: scale(1.1);
            }
        }
    }
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
    &.bg-business-color {
        background: var(--businessGradientColor);
    }
    &.with-top-border {
        border-top: 1px solid #f0f0f0;
    }
    &.bg-it-agency-color {
        background: var(--itAgencyGradientColor);
    }
    &.bg-1b2232 {
        .section-title {
            h2 {
                color: var(--whiteColor);
            }
        }
    }
}
.partner-item {
    text-align: center;

    a {
        img {
            width: auto !important;
            display: inline-block !important;
        }
    }
}

/*================================================
Clients Area CSS
=================================================*/
.single-clients-box {
    margin-bottom: 30px;
    text-align: center;
    background-color: var(--whiteColor);

    a {
        padding: 30px;

        img {
            transition: var(--transition);
        }
    }
    &:hover {
        a {
            img {
                transform: scale(1.05);
            }
        }
    }
}

/*================================================
Featured Video Area CSS
=================================================*/
.single-featured-video-box {
    margin-bottom: 30px;

    .image {
        position: relative;
        overflow: hidden;

        img {
            transition: var(--transition);
        }
        .video-btn {
            position: absolute;
            left: 15px;
            bottom: 15px;
            color: var(--whiteColor);
            font-weight: 600;

            i {
                display: inline-block;
                width: 40px;
                height: 40px;
                color: var(--blackColor);
                background-color: var(--whiteColor);
                text-align: center;
                border-radius: 50%;
                line-height: 41px;
                margin-right: 10px;
                transition: var(--transition);
            }
            &:hover {
                i {
                    background-color: var(--blackColor);
                    color: var(--whiteColor);
                }
            }
        }
    }
    .content {
        margin-top: 25px;

        .tag {
            margin-bottom: 12px;
            display: inline-block;
            position: relative;
            font-weight: 600;
            color: var(--blackColor);
        }
        .meta {
            padding-left: 0;
            margin-bottom: 13px;
            list-style-type: none;

            li {
                display: inline-block;
                margin-right: 15px;
                position: relative;
                padding-left: 22px;
                color: var(--optionalColor);

                i {
                    position: absolute;
                    left: 0;
                    top: 4px;
                    color: var(--blackColor);
                }
                a {
                    color: var(--optionalColor);

                    &:hover {
                        color: var(--blackColor);
                    }
                }
            }
        }
        h3 {
            margin-bottom: 0;
            line-height: 1.4;
            font-size: 25px;
        }
    }
    &:hover {
        img {
            transform: scale(1.1);
        }
    }
}
.featured-video-item-list {
    .single-featured-video-item {
        margin-bottom: 30px;

        .row {
            margin: {
                left: 0;
                right: 0;
            };
            .col-lg-4, .col-lg-8 {
                padding: {
                    left: 0;
                    right: 0;
                };
            }
        }
        .image {
            height: 100%;
            position: relative;
            background: {
                position: center center;
                repeat: no-repeat;
                size: cover;
            };
            &.bg1 {
                background-image: url(/assets/img/featured-video/featured-video2.jpg);
            }
            &.bg2 {
                background-image: url(/assets/img/featured-video/featured-video3.jpg);
            }
            &.bg3 {
                background-image: url(/assets/img/featured-video/featured-video4.jpg);
            }
            &.bg4 {
                background-image: url(/assets/img/featured-video/featured-video5.jpg);
            }
            img {
                display: none;
            }
            .link-btn {
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                z-index: 1;
                display: block;
                position: absolute;
            }
            .video-btn {
                color: var(--whiteColor);
                position: absolute;
                bottom: 10px;
                left: 10px;
                z-index: 2;
                font: {
                    size: 14px;
                    weight: 600;
                };
                i {
                    display: inline-block;
                    width: 35px;
                    height: 35px;
                    color: var(--blackColor);
                    background-color: var(--whiteColor);
                    text-align: center;
                    border-radius: 50%;
                    line-height: 36px;
                    margin-right: 5px;
                    transition: var(--transition);
                }
                &:hover {
                    i {
                        background-color: var(--blackColor);
                        color: var(--whiteColor);
                    }
                }
            }
        }
        .content {
            padding: {
                left: 25px;
                top: 9.5px;
                bottom: 9.5px;
            };
            .meta {
                padding-left: 0;
                margin-bottom: 13px;
                list-style-type: none;

                li {
                    display: inline-block;
                    margin-right: 15px;
                    position: relative;
                    padding-left: 22px;
                    color: var(--optionalColor);

                    i {
                        position: absolute;
                        left: 0;
                        top: 4px;
                        color: var(--blackColor);
                    }
                    a {
                        color: var(--optionalColor);

                        &:hover {
                            color: var(--blackColor);
                        }
                    }
                }
            }
            h3 {
                margin-bottom: 0;
                line-height: 1.4;
                font-size: 20px;
            }
        }
    }
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
    &.with-border {
        border-top: 1px solid #f0f0f0;
    }
    &.with-black-border {
        border-top: 1px solid #12141a;
    }
}
.single-blog-post {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    .content {
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 25px;
        position: absolute;

        .meta {
            padding-left: 0;
            margin-bottom: 13px;
            list-style-type: none;

            li {
                display: inline-block;
                margin-right: 15px;
                color: var(--whiteColor);
                position: relative;
                padding-left: 22px;

                i {
                    position: absolute;
                    left: 0;
                    top: 4px;
                    color: var(--startupMainColor);
                }
                a {
                    color: var(--whiteColor);
                }
            }
        }
        h3 {
            color: var(--whiteColor);
            margin-bottom: 13px;
            font-size: 20px;
            line-height: 1.4;

            a {
                color: var(--whiteColor);

                &:hover {
                    color: var(--startupMainColor);
                }
            }
        }
        .link-btn {
            font-weight: 500;
            position: relative;
            opacity: 0.85;
            color: var(--whiteColor);
            padding: {
                right: 12px;
                bottom: 2px;
            };
            i {
                position: absolute;
                right: 0;
                top: 7px;
                font-size: 12px;
            }
            &::before {
                content: '';
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0%;
                height: 1px;
                background-color: #eeeeee;
                transition: var(--transition);
            }
            &:hover {
                opacity: 1;
                padding-right: 15px;

                &::before {
                    width: 100%;
                    right: auto;
                    left: 0;
                }
            }
        }
    }
    &::before {
        position: absolute;
        height: 100%;
        content: "";
        width: 100%;
        z-index: 1;
        left: 0;
        top: 0;
        background: linear-gradient(to top, rgba(35, 35, 37, 0.9) 0, rgba(35, 35, 37, 0.5) 50%, rgba(22, 22, 23, 0) 75%, rgba(0, 0, 0, 0) 100%);
    }
    &:hover {
        img {
            transform: scale(1.05);
        }
    }
}
.blog-section-title {
    margin-bottom: 30px;

    h2 {
        margin-bottom: 0;
        font-size: 40px;
    }
    p {
        margin-top: 15px;
    }
    .sub-title {
        display: block;
        margin-bottom: 12px;
        color: var(--startupMainColor);
        font: {
            family: var(--headingFontFamily);
            weight: 600;
            size: 14px;
        };
        &.marketing-color {
            color: var(--marketingMainColor);
        }
    }
    .default-btn {
        margin-top: 10px;
    }
}
.single-post-item {
    margin-bottom: 30px;
    background-color: var(--whiteColor);
    box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, .1);

    .post-content {
        padding: 25px;

        .tag {
            margin-bottom: 14px;
            display: inline-block;
            position: relative;
            padding-left: 24px;
            font-weight: 600;
            color: var(--appMainColor);

            i {
                position: absolute;
                left: 0;
                top: 4px;
            }
        }
        .meta {
            padding-left: 0;
            margin-bottom: 13px;
            list-style-type: none;

            li {
                display: inline-block;
                margin-right: 15px;
                position: relative;
                padding-left: 22px;
                color: var(--optionalColor);

                i {
                    position: absolute;
                    left: 0;
                    top: 4px;
                    color: var(--marketingMainColor);
                }
                a {
                    color: var(--optionalColor);

                    &:hover {
                        color: var(--marketingMainColor);
                    }
                }
            }
        }
        h3 {
            margin-bottom: 14px;
            line-height: 1.4;
            font-size: 20px;
        }
        .link-btn {
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-right: 12px;

            i {
                position: absolute;
                right: 0;
                top: 7px;
                font-size: 12px;
            }
            &::before {
                content: '';
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0%;
                height: 1px;
                background-color: var(--marketingMainColor);
                transition: var(--transition);
            }
            &:hover {
                padding-right: 15px;
                color: var(--marketingMainColor);

                &::before {
                    width: 100%;
                    right: auto;
                    left: 0;
                }
            }
        }
    }
    &.border-radius {
        border-radius: 10px;

        .post-image {
            border-radius: 10px 10px 0 0;

            a {
                border-radius: 10px 10px 0 0;

                img {
                    border-radius: 10px 10px 0 0;
                }
            }
        }
    }
    &.business-color {
        .post-content {
            .meta {
                li {
                    i {
                        color: var(--businessMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--businessMainColor);
                        }
                    }
                }
            }
            .link-btn {
                &::before {
                    background-color: var(--businessMainColor);
                }
                &:hover {
                    color: var(--businessMainColor);
                }
            }
        }
    }
    &.app-color {
        .post-content {
            .meta {
                li {
                    i {
                        color: var(--appMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--appMainColor);
                        }
                    }
                }
            }
            .link-btn {
                &::before {
                    background-color: var(--appMainColor);
                }
                &:hover {
                    color: var(--appMainColor);
                }
            }
        }
    }
    &.saas-color {
        .post-content {
            .meta {
                li {
                    i {
                        color: var(--saasMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--saasMainColor);
                        }
                    }
                }
            }
            .link-btn {
                &::before {
                    background-color: var(--saasMainColor);
                }
                &:hover {
                    color: var(--saasMainColor);
                }
            }
        }
    }
    &.bg-black {
        background-color: #040611;
        box-shadow: unset;
        border: 1px solid #272836;
        transition: var(--transition);

        .post-content {
            .tag {
                color: var(--saasMainColor);
            }
            .meta {
                color: var(--whiteColor);

                li {
                    color: var(--whiteColor);

                    i {
                        color: var(--saasMainColor);
                    }
                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--saasMainColor);
                        }
                    }
                }
            }
            h3 {
                color: var(--whiteColor);

                a {
                    color: var(--whiteColor);

                    &:hover {
                        color: var(--saasMainColor);
                    }
                }
            }
            p {
                color: var(--whiteColor);
                opacity: 0.9;
            }
            .link-btn {
                color: var(--whiteColor);

                &::before {
                    background: var(--saasGradientColor);
                }
                &:hover {
                    color: var(--whiteColor);
                }
            }
        }
        &:hover {
            border-color: var(--whiteColor);
        }
    }
    &.bg-faf2ff {
        background-color: #faf2ff;
        box-shadow: unset;
    }
    &.bg-fff5e6 {
        background-color: #fff5e6;
        box-shadow: unset;
    }
    &.bg-eaf6ff {
        background-color: #eaf6ff;
        box-shadow: unset;
    }
    &.personal-portfolio-color {
        .post-content {
            .meta {
                li {
                    i {
                        color: var(--personalPortfolioMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                }
            }
            .link-btn {
                &::before {
                    background-color: var(--personalPortfolioMainColor);
                }
                &:hover {
                    color: var(--personalPortfolioMainColor);
                }
            }
        }
    }
    &.consulting-color {
        .post-content {
            .meta {
                li {
                    i {
                        color: var(--consultingMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                }
            }
            .link-btn {
                &::before {
                    background-color: var(--consultingMainColor);
                }
                &:hover {
                    color: var(--consultingMainColor);
                }
            }
        }
    }
    &.it-agency-color {
        .post-content {
            .tag {
                color: var(--optionalColor);

                i {
                    color: var(--itAgencyMainColor);
                }
            }
            .meta {
                li {
                    i {
                        color: var(--itAgencyMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--itAgencyMainColor);
                        }
                    }
                }
            }
            .link-btn {
                &::before {
                    background-color: var(--itAgencyMainColor);
                }
                &:hover {
                    color: var(--itAgencyMainColor);
                }
            }
        }
    }
    &.without-box-shadow {
        box-shadow: unset;

        .post-content {
            padding-bottom: 0;

            .meta {
                li {
                    i {
                        color: var(--blackColor);
                    }
                    a {
                        &:hover {
                            color: var(--blackColor);
                        }
                    }
                }
            }
            .link-btn {
                &::before {
                    background-color: var(--blackColor);
                }
                &:hover {
                    color: var(--blackColor);
                }
            }
        }
    }
    &.startup-color {
        .post-content {
            .tag {
                color: var(--startupMainColor);
            }
            .meta {
                li {
                    i {
                        color: var(--startupMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--startupMainColor);
                        }
                    }
                }
            }
            .link-btn {
                &::before {
                    background-color: var(--startupMainColor);
                }
                &:hover {
                    color: var(--startupMainColor);
                }
            }
        }
    }
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc {
    .article-content {
        margin-top: 30px;

        .entry-meta {
            margin-bottom: 15px;

            ul {
                padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;

                li {
                    display: inline-block;
                    margin-right: 20px;
                    color: var(--optionalColor);
                    font-weight: 500;
                    position: relative;
                    padding-left: 22px;

                    i {
                        position: absolute;
                        left: 0;
                        top: 4px;
                        color: var(--startupMainColor);
                    }
                    &:last-child {
                        margin-right: 0;
                    }
                }
            }
        }
        h3 {
            font-size: 22px;
            margin: {
                bottom: 15px;
                top: 25px;
            };
        }
        .wp-block-gallery {
            &.columns-3 {
                padding-left: 0;
                list-style-type: none;
                display: flex;
                flex-wrap: wrap;
                margin: {
                    right: -10px;
                    left: -10px;
                    bottom: 30px;
                    top: 30px;
                }
                li {
                    flex: 0 0 33.3333%;
                    max-width: 33.3333%;
                    padding: {
                        right: 10px;
                        left: 10px;
                    }
                    figure {
                        margin-bottom: 0;
                    }
                }
            }
        }
        .features-list {
            margin: {
                top: 25px;
                bottom: 30px;
            };
            li {
                margin-bottom: 15px;
                color: var(--optionalColor);
                font-weight: 500;

                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
    .article-footer {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #eeeeee;

        .article-tags {
            flex: 0 0 50%;
            max-width: 50%;

            p {
                line-height: 1;
                margin-bottom: 0;
                color: var(--blackColor);
                font-weight: 600;
                text-transform: uppercase;
            }
            a {
                display: inline-block;
                margin-left: 10px;
                background-color: #f9f9f9;
                color: var(--blackColor);
                border-radius: 30px;
                padding: 7px 20px;

                &:hover {
                    background-color: var(--startupMainColor);
                    color: var(--whiteColor);
                }
            }
        }
        .article-share {
            flex: 0 0 50%;
            max-width: 50%;

            .social {
                padding-left: 0;
                list-style-type: none;
                text-align: end;
                margin-bottom: 0;

                li {
                    display: inline-block;

                    span {
                        display: inline-block;
                        margin-right: 3px;
                        font-weight: 600;
                    }
                    a {
                        display: block;
                        width: 32px;
                        height: 32px;
                        line-height: 32px;
                        border-radius: 50%;
                        background-color: var(--startupMainColor);
                        color: var(--whiteColor);
                        border: 1px solid var(--startupMainColor);
                        text-align: center;
                        font-size: 14px;
                        margin-left: 2px;

                        &:hover, &:focus {
                            color: var(--startupMainColor);
                            background-color: transparent;
                        }
                        &.facebook {
                            background-color: #3b5998;
                            border-color: #3b5998;
                            color: var(--whiteColor);

                            &:hover, &:focus {
                                color: #3b5998;
                                background-color: transparent;
                            }
                        }
                        &.twitter {
                            background-color: #1da1f2;
                            border-color: #1da1f2;
                            color: var(--whiteColor);

                            &:hover, &:focus {
                                color: #1da1f2;
                                background-color: transparent;
                            }
                        }
                        &.linkedin {
                            background-color: #007bb5;
                            border-color: #007bb5;
                            color: var(--whiteColor);

                            &:hover, &:focus {
                                color: #007bb5;
                                background-color: transparent;
                            }
                        }
                        &.instagram {
                            background-color: #c13584;
                            border-color: #c13584;
                            color: var(--whiteColor);

                            &:hover, &:focus {
                                color: #c13584;
                                background-color: transparent;
                            }
                        }
                    }
                }
            }
        }
    }
}
blockquote, .blockquote {
    z-index: 1;
    overflow: hidden;
    position: relative;
    background-color: #fafafa;
    padding: 40px 50px !important;
    margin: {
        bottom: 20px;
        top: 20px;
    };
    p {
        line-height: 1.7;
        margin-bottom: 0;
        color: var(--blackColor);
        font: {
            weight: 700;
            style: italic;
            size: 17px !important;
        };
    }
    cite {
        display: none;
    }
    &::after {
        top: 0;
        left: 0;
        bottom: 0;
        width: 3px;
        content: '';
        position: absolute;
        background-color: var(--startupMainColor);
        margin: {
            top: 20px;
            bottom: 20px;
        };
    }
}
.comments-area {
    margin-top: 30px;

    .comments-title {
        font-size: 22px;
        margin-bottom: 30px;
        line-height: initial;
    }
    ol, ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }
    .comment-list {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }
    .children {
        margin-left: 20px;
    }
    .comment-body {
        border-bottom: 1px dashed #eeeeee;
        padding-left: 70px;
        color: var(--blackColor);
        margin-bottom: 20px;
        padding-bottom: 20px;

        .reply {
            margin-top: 15px;

            a {
                border: 1px dashed #ded9d9;
                color: var(--blackColor);
                display: inline-block;
                padding: 5px 20px 6px;
                border-radius: 30px;
                font: {
                    size: 13px;
                    weight: 700;
                };
                &:hover {
                    color: var(--whiteColor);
                    background-color: var(--startupMainColor);
                    border-color: var(--startupMainColor);
                }
            }
        }
    }
    .comment-author {
        font-size: 16px;
        margin-bottom: 6px;
        position: relative;
        z-index: 2;

        .avatar {
            height: 50px;
            left: -65px;
            position: absolute;
            width: 50px;
            top: 4px;
        }
        .says {
            display: none;
        }
    }
    .comment-metadata {
        margin-bottom: .7em;
        color: var(--optionalColor);
        letter-spacing: 0.01em;
        font: {
            size: 13px;
            weight: 500;
        };
    }
    .comment-respond {
        margin-top: 30px;

        .comment-reply-title {
            margin-bottom: 0;
            font-size: 22px;

            #cancel-comment-reply-link {
                display: inline-block;
            }
        }
        .comment-form {
            overflow: hidden;
        }
        .comment-notes {
            margin: {
                bottom: 20px;
                top: 10px;
            };
            .required {
                color: red;
            }
        }
        .comment-form-comment {
            float: left;
            width: 100%;
        }
        label {
            display: none;
        }
        input[type="date"], input[type="time"], input[type="datetime-local"], input[type="week"], input[type="month"], input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea {
            outline: 0;
            width: 100%;
            border: none;
            height: 50px;
            display: block;
            font-size: 15px;
            border-radius: 3px;
            padding: 1px 0 0 15px;
            color: var(--blackColor);
            background-color: #f9f9f9;

            &::placeholder {
                color: var(--optionalColor);
                transition: var(--transition);
            }
            &:focus {
                &::placeholder {
                    color: transparent;
                }
            }
        }
        textarea {
            height: auto !important;
            padding-top: 15px;
        }
        .comment-form-author {
            float: left;
            width: 50%;
            padding-right: 10px;
            margin-bottom: 20px;
        }
        .comment-form-email {
            float: left;
            width: 50%;
            padding-left: 12px;
            margin-bottom: 20px;
        }
        .comment-form-url {
            float: left;
            width: 100%;
            margin-bottom: 20px;
        }
        .comment-form-cookies-consent {
            width: 100%;
            float: left;
            position: relative;
            padding-left: 20px;
            margin: {
                bottom: 20px;
                top: 15px;
            };
            input {
                position: absolute;
                left: 0;
                top: 6px;
            }
            label {
                margin: 0;
                display: inline-block;
                color: var(--optionalColor);
                font: {
                    weight: normal;
                    size: var(--fontSize);
                };
            }
        }
        .form-submit {
            float: left;
            width: 100%;

            input {
                border: none;
                cursor: pointer;
                border-radius: 4px;
                padding: 10px 30px;
                display: inline-block;
                color: var(--whiteColor);
                background: var(--startupMainColor);
                transition: var(--transition);
                font: {
                    weight: 700;
                    size: var(--fontSize);
                };
                &:hover, &:focus {
                    color: var(--whiteColor);
                    background-color: var(--blackColor);
                }
            }
        }
    }
}

/*================================================
Widget Area CSS
=================================================*/
.widget-area {
    .widget {
        margin-bottom: 35px;

        .widget-title {
            border-bottom: 1px solid #eeeeee;
            padding-bottom: 12px;
            margin-bottom: 30px;
            position: relative;
            font-size: 20px;

            &::before {
                left: 0;
                width: 70px;
                height: 1px;
                content: '';
                bottom: -1px;
                position: absolute;
                background-color: var(--blackColor);
            }
        }
        &:last-child {
            margin-bottom: 0;
        }
    }
    .widget_search {
        box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
        background-color: var(--whiteColor);
        padding: 15px;

        form {
            position: relative;

            label {
                display: block;
                margin-bottom: 0;
            }
            .screen-reader-text {
                display: none;
            }
            .search-field {
                outline: 0;
                width: 100%;
                height: 50px;
                display: block;
                padding: 0 0 0 15px;
                transition: var(--transition);
                border: 1px solid #eeeeee;
                background-color: transparent;

                &:focus {
                    border-color: var(--startupMainColor);
                }
            }
            button {
                position: absolute;
                right: 0;
                outline: 0;
                bottom: 0;
                height: 50px;
                width: 50px;
                border: none;
                color: var(--whiteColor);
                background-color: var(--startupMainColor);
                transition: var(--transition);

                &:hover {
                    color: var(--whiteColor);
                    background-color: var(--blackColor);
                }
            }
        }
    }
    .widget_about_author {
        .about-author {
            transition: var(--transition);
            border: 1px solid #eeeeee;
            text-align: center;
            padding: 30px;

            .main-image {
                width: 100px;
            }
            p {
                margin: {
                    bottom: 15px;
                    top: 25px;
                };
            }
            &:hover {
                border-color: var(--blackColor);
            }
        }
    }
    .widget_noke_posts_thumb {
        position: relative;
        overflow: hidden;

        .item {
            margin-bottom: 20px;
            position: relative;
            padding-left: 115px;

            .thumb {
                top: 0;
                left: 0;
                width: 100px;
                float: unset;
                height: 100%;
                display: block;
                position: absolute;

                .fullimage {
                    width: 100px;
                    height: 100%;
                    display: inline-block;
                    background: {
                        repeat: no-repeat;
                        size: cover !important;
                        position: center center !important;
                    };
                    &.bg1 {
                        background-image: url(/assets/img/blog/blog-img1.jpg);
                    }
                    &.bg2 {
                        background-image: url(/assets/img/blog/blog-img2.jpg);
                    }
                    &.bg3 {
                        background-image: url(/assets/img/blog/blog-img3.jpg);
                    }
                    &.bg4 {
                        background-image: url(/assets/img/blog/blog-img4.jpg);
                    }
                }
                &::before, &::after {
                    content: '';
                    z-index: 1;
                    top: 50%;
                    left: 50%;
                    opacity: 0;
                    position: absolute;
                    background-color: var(--whiteColor);
                    transform: translate(-50%, -50%);
                    transition: all .8s cubic-bezier(.2, 1, .22, 1);
                }
                &::before {
                    width: 40px;
                    height: 1px;
                    left: 100%;
                }
                &::after {
                    height: 40px;
                    width: 1px;
                    top: 0;
                }
            }
            .info {
                .title {
                    font-size: 16px;
                    line-height: 1.5;
                    margin-bottom: 8px;

                    a {
                        display: inline-block;
                    }
                }
                .date {
                    padding-left: 20px;
                    position: relative;
                    color: var(--optionalColor);

                    i {
                        position: absolute;
                        left: 0;
                        top: 3px;
                    }
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
            &:hover {
                .thumb {
                    &::before, &::after {
                        opacity: 1;
                        top: 50%;
                        left: 50%;
                    }
                }
            }
        }
    }
    .widget_follow_us {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                margin-bottom: 15px;

                a {
                    display: block;
                    position: relative;
                    color: var(--whiteColor);
                    background-color: var(--blackColor);
                    padding: {
                        right: 15px;
                        top: 10px;
                        bottom: 10px;
                        left: 55px;
                    };
                    i {
                        position: absolute;
                        left: 14px;
                        top: 50%;
                        font-size: 18px;
                        line-height: 1;
                        transform: translateY(-50%);
                    }
                    &::before {
                        content: '';
                        position: absolute;
                        left: 42px;
                        top: 0;
                        height: 100%;
                        width: 1px;
                        opacity: 0.3;
                        background-color: var(--whiteColor);
                    }
                    &.facebook {
                        background-color: #39569e;
                    }
                    &.twitter {
                        background-color: #52aaf4;
                    }
                    &.linkedin {
                        background-color: #0185ae;
                    }
                    &.instagram {
                        background-color: #c8359d;
                    }
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
    .widget_recent_posts {
        .item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eeeeee;

            .tag {
                position: relative;
                margin-bottom: 8px;
                display: inline-block;
                color: var(--blackColor);
            }
            .title {
                font-size: 16px;
                line-height: 1.5;
                margin-bottom: 10px;

                a {
                    display: inline-block;
                }
            }
            .date {
                padding-left: 20px;
                position: relative;
                color: var(--optionalColor);

                i {
                    position: absolute;
                    left: 0;
                    top: 3px;
                }
            }
        }
    }
    .widget_tag_cloud {
        .tagcloud {
            margin-bottom: -8px;

            a {
                display: inline-block;
                border: 1px solid #eeeeee;
                padding: 6px 15px;
                color: var(--optionalColor);
                margin: {
                    right: 8px;
                    bottom: 8px;
                };
                font: {
                    size: 14px !important;
                    weight: 600;
                };
                &:hover {
                    background-color: var(--blackColor);
                    color: var(--whiteColor);
                    border-color: var(--blackColor);
                }
            }
        }
    }
    .widget_newsletter {
        background-color: #f6f7f9;
        border: 1px solid #eeeeee;
        text-align: center;
        padding: 30px;

        h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .newsletter-form {
            margin-top: 20px;

            .input-newsletter {
                display: block;
                width: 100%;
                background-color: var(--whiteColor);
                border: 1px solid #eeeeee;
                height: 50px;
                padding-left: 15px;
                color: var(--blackColor);
                transition: var(--transition);

                &:focus {
                    border-color: var(--blackColor);
                }
            }
            button {
                display: block;
                width: 100%;
                text-align: center;
                margin-top: 15px;
                background-color: var(--blackColor);
                color: var(--whiteColor);
                border: none;
                transition: var(--transition);
                padding: 13px 30px;
                font: {
                    size: var(--fontSize);
                    weight: 700;
                };
                &:hover {
                    background-color: var(--optionalColor);
                }
            }
        }
    }
    .widget_categories {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                margin-bottom: 12px;
                position: relative;
                padding-left: 15px;

                &::before {
                    left: 0;
                    top: 50%;
                    width: 8px;
                    height: 8px;
                    content: '';
                    position: absolute;
                    border-radius: 50%;
                    transform: translateY(-50%);
                    background-color: var(--optionalColor);
                }
                a {
                    font-weight: 500;
                    display: inline-block;
                    color: var(--optionalColor);

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
    .widget_archive {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                margin-bottom: 12px;
                position: relative;
                padding-left: 15px;

                &::before {
                    left: 0;
                    top: 50%;
                    width: 8px;
                    height: 8px;
                    content: '';
                    position: absolute;
                    border-radius: 50%;
                    transform: translateY(-50%);
                    background-color: var(--optionalColor);
                }
                a {
                    font-weight: 500;
                    display: inline-block;
                    color: var(--optionalColor);

                    &:hover {
                        color: var(--startupMainColor);
                    }
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
    .widget_colors {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                display: block;
                margin-bottom: 12px;
                border-bottom: 1px dashed #eeeeee;
                padding-bottom: 12px;

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

                    span {
                        display: block;
                        color: var(--optionalColor);

                        &:nth-child(1) {
                            width: 17px;
                            height: 17px;
                            font-size: 0;
                            margin-right: 8px;
                            letter-spacing: 0;
                            border-radius: 50%;
                            transition: var(--transition);

                            &.gray {
                                background-color: gray;
                            }
                            &.red {
                                background-color: red;
                            }
                            &.green {
                                background-color: green;
                            }
                            &.black {
                                background-color: black;
                            }
                            &.brown {
                                background-color: brown
                            }
                        }
                    }
                    &:hover {
                        span {
                            &:nth-child(1) {
                                transform: scale(1.2);
                            }
                        }
                    }
                }
            }
        }
    }
    .widget_price_filter {
        .collection_filter_by_price {
            .irs-handle {
                cursor: pointer;
            }
            .irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single {
                background-color: var(--startupMainColor);
                padding: 1px 5px 1px 11.5px;

                &::before {
                    border-top-color: var(--startupMainColor);
                }
                &::after {
                    content: '$';
                    position: absolute;
                    left: 5px;
                    top: 0.5px;
                }
            }
            .irs--flat .irs-bar {
                background-color: var(--startupMainColor);
            }
            .irs--flat .irs-handle>i:first-child {
                background-color: var(--startupMainColor);
            }
            .irs--flat .irs-min, .irs--flat .irs-max {
                padding: 1px 3px 1px 9.5px;

                &::before {
                    content: '$';
                    position: absolute;
                    left: 3px;
                    top: 0.5px;
                }
            }
        }
    }
    .widget_top_rated_products {
        .item {
            margin-bottom: 15px;
            position: relative;
            padding-left: 95px;

            .thumb {
                top: 0;
                left: 0;
                width: 80px;
                float: unset;
                height: 100%;
                display: block;
                position: absolute;

                .fullimage {
                    width: 80px;
                    height: 100%;
                    display: inline-block;
                    border: 1px solid #eeeeee;
                    background: {
                        repeat: no-repeat;
                        size: cover !important;
                        position: center center !important;
                    };
                    &.bg1 {
                        background-image: url(/assets/img/products/products-img1.jpg);
                    }
                    &.bg2 {
                        background-image: url(/assets/img/products/products-img2.jpg);
                    }
                    &.bg3 {
                        background-image: url(/assets/img/products/products-img3.jpg);
                    }
                    &.bg4 {
                        background-image: url(/assets/img/products/products-img4.jpg);
                    }
                }
            }
            .info {
                padding: {
                    top: 5px;
                    bottom: 5px;
                };
                .title {
                    margin-bottom: 8px;
                    line-height: 1.4;
                    font: {
                        size: var(--fontSize);
                        weight: 600;
                    };
                    a {
                        display: inline-block;
                    }
                }
                .star-rating {
                    font-size: 14px;

                    i {
                        color: #f49f0b;
                    }
                }
                .price {
                    margin-top: 8px;
                    display: block;
                    color: var(--optionalColor);
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .widget_service_categories {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                font-weight: 500;
                overflow: hidden;
                margin-bottom: 13px;
                padding-bottom: 13px;
                color: var(--optionalColor);
                border-bottom: 1px dashed #eeeeee;

                a {
                    display: block;
                    position: relative;
                    color: var(--optionalColor);

                    i {
                        position: absolute;
                        right: 5px;
                        top: 50%;
                        font-size: 14px;
                        transform: translateY(-50%);
                        transition: var(--transition);
                        color: var(--optionalColor);
                    }
                    &:hover {
                        color: var(--startupMainColor);

                        i {
                            right: 0;
                            color: var(--startupMainColor);
                        }
                    }
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
    &.extra-padding {
        padding-left: 15px;

        &.left-sidebar {
            padding: {
                left: 0;
                right: 15px;
            };
        }
    }
}

/*================================================
Profile Authentication Area CSS
=================================================*/
.profile-authentication-area {
    height: 100vh;
    position: relative;
    background-color: rgb(243, 243, 243);

    .logo {
        left: 0;
        right: 0;
        top: 20px;
        position: absolute;
        text-align: center;
        display: inline-block;
    }
}
.signin-form {
    max-width: 550px;
    border-radius: 5px;
    padding: 40px;
    background-color: var(--whiteColor);
    margin: {
        left: auto;
        right: auto;
    };
    h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    form {
        .form-group {
            margin-bottom: 25px;

            .form-control {
                background-color: #f5f5f5 !important;
            }
        }
        .remember-me-wrap {
            margin-bottom: 0;

            [type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
                display: none;
            }
            [type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label {
                position: relative;
                padding-left: 28px;
                cursor: pointer;
                line-height: 20px;
                display: inline-block;
                margin-bottom: 0;
                color: var(--optionalColor);
            }
            [type="checkbox"]:checked + label:before, [type="checkbox"]:not(:checked) + label:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 19px;
                height: 19px;
                transition: all 0.2s ease;
                border: 1px solid #f5f5f5;
                border-radius: 3px;
                background: #f5f5f5;
            }
            [type="checkbox"]:checked + label:after, [type="checkbox"]:not(:checked) + label:after {
                content: '';
                width: 8px;
                height: 8px;
                background: var(--startupMainColor);
                position: absolute;
                top: 5.5px;
                left: 6px;
                transition: all 0.2s ease;
            }
            [type="checkbox"]:not(:checked) + label:after {
                opacity: 0;
                transform: scale(0);
            }
            [type="checkbox"]:checked + label:after {
                opacity: 1;
                transform: scale(1);
            }
            [type="checkbox"]:hover + label:before {
                border-color: var(--startupMainColor);
            }
            [type="checkbox"]:checked + label:before {
                border-color: var(--startupMainColor);
            }
        }
        .lost-your-password-wrap {
            text-align: end;

            a {
                display: inline-block;
                position: relative;
                line-height: 1.5;
                font-weight: 500;

                &::before {
                    width: 100%;
                    height: 1px;
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    content: '';
                    transition: var(--transition);
                    background-color: #eeeeee;
                }
                &::after {
                    width: 0;
                    height: 1px;
                    position: absolute;
                    left: 0;
                    transition: var(--transition);
                    bottom: 0;
                    content: '';
                    background-color: var(--startupMainColor);
                }
                &:hover {
                    &::before {
                        width: 0;
                    }
                    &::after {
                        width: 100%;
                    }
                }
            }
        }
        button {
            width: 100%;
            border: none;
            display: block;
            overflow: hidden;
            margin-top: 20px;
            border-radius: 5px;
            text-align: center;
            padding: 14px 30px;
            color: var(--whiteColor);
            transition: var(--transition);
            background-color: var(--startupMainColor);
            font: {
                size: var(--fontSize);
                weight: 700;
            };
            &:hover {
                background-color: var(--blackColor);
                color: var(--whiteColor);
            }
        }
        .dont-account {
            display: block;
            margin-top: 25px;
            color: var(--optionalColor);

            a {
                font-weight: 600;
            }
        }
    }
    .sign-in-with-button {
        margin-top: 25px;

        button {
            width: 100%;
            display: block;
            color: #248BD2;
            border-radius: 5px;
            border: 1px solid #D2D2D2;
            background-color: transparent;
            transition: var(--transition);
            padding: {
                top: 13px;
                bottom: 13px;
                left: 30px;
                right: 30px;
            };
            svg {
                position: absolute;
                margin-left: -25px;
                margin: {
                    left: -25px;
                    top: 1.5px;
                };
            }
            &:hover {
                color: var(--blackColor);
                background-color: #E9E9E9;
            }
        }
    }
}
.signup-form {
    max-width: 550px;
    border-radius: 5px;
    padding: 40px;
    background-color: var(--whiteColor);
    margin: {
        left: auto;
        right: auto;
    };
    h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    form {
        .form-group {
            margin-bottom: 25px;

            label {
                display: block;
                margin-bottom: 13px;
                color: var(--blackColor);
                font-weight: 600;
            }
            .form-control {
                background-color: #f5f5f5 !important;
            }
        }
        .remember-me-wrap {
            margin-bottom: 0;

            [type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
                display: none;
            }
            [type="checkbox"]:checked + label, [type="checkbox"]:not(:checked) + label {
                position: relative;
                padding-left: 28px;
                cursor: pointer;
                line-height: 20px;
                display: inline-block;
                margin-bottom: 0;
                color: var(--optionalColor);
            }
            [type="checkbox"]:checked + label:before, [type="checkbox"]:not(:checked) + label:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 19px;
                height: 19px;
                transition: all 0.2s ease;
                border: 1px solid #f5f5f5;
                border-radius: 3px;
                background: #f5f5f5;
            }
            [type="checkbox"]:checked + label:after, [type="checkbox"]:not(:checked) + label:after {
                content: '';
                width: 8px;
                height: 8px;
                background: var(--startupMainColor);
                position: absolute;
                top: 5.5px;
                left: 6px;
                transition: all 0.2s ease;
            }
            [type="checkbox"]:not(:checked) + label:after {
                opacity: 0;
                transform: scale(0);
            }
            [type="checkbox"]:checked + label:after {
                opacity: 1;
                transform: scale(1);
            }
            [type="checkbox"]:hover + label:before {
                border-color: var(--startupMainColor);
            }
            [type="checkbox"]:checked + label:before {
                border-color: var(--startupMainColor);
            }
        }
        .lost-your-password-wrap {
            text-align: end;

            a {
                display: inline-block;
                position: relative;
                line-height: 1.5;
                font-weight: 500;

                &::before {
                    width: 100%;
                    height: 1px;
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    content: '';
                    transition: var(--transition);
                    background-color: #eeeeee;
                }
                &::after {
                    width: 0;
                    height: 1px;
                    position: absolute;
                    left: 0;
                    transition: var(--transition);
                    bottom: 0;
                    content: '';
                    background-color: var(--startupMainColor);
                }
                &:hover {
                    &::before {
                        width: 0;
                    }
                    &::after {
                        width: 100%;
                    }
                }
            }
        }
        button {
            width: 100%;
            border: none;
            display: block;
            overflow: hidden;
            margin-top: 20px;
            border-radius: 5px;
            text-align: center;
            padding: 14px 30px;
            color: var(--whiteColor);
            transition: var(--transition);
            background-color: var(--startupMainColor);
            font: {
                size: var(--fontSize);
                weight: 700;
            };
            &:hover {
                background-color: var(--blackColor);
                color: var(--whiteColor);
            }
        }
        .dont-account {
            display: block;
            margin-top: 25px;
            color: var(--optionalColor);

            a {
                font-weight: 600;
            }
        }
    }
    .sign-in-with-button {
        margin-top: 25px;

        button {
            width: 100%;
            display: block;
            color: #248BD2;
            border-radius: 5px;
            border: 1px solid #D2D2D2;
            background-color: transparent;
            transition: var(--transition);
            padding: {
                top: 13px;
                bottom: 13px;
                left: 30px;
                right: 30px;
            };
            svg {
                position: absolute;
                margin-left: -25px;
                margin: {
                    left: -25px;
                    top: 1.5px;
                };
            }
            &:hover {
                color: var(--blackColor);
                background-color: #E9E9E9;
            }
        }
    }
}

/*================================================
Instagram Area CSS
=================================================*/
.instagram-area {
    .container-fluid {
        padding: {
            left: 0;
            right: 0;
        };
    }
    &.bg-dark {
        .section-title {
            border-color: rgba(255, 255, 255, .08);

            &::before {
                background-color: var(--whiteColor);
            }
        }
    }
}
.single-instagram-item {
    position: relative;

    .link-btn {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 2;
    }
    i {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        font-size: 25px;
        color: var(--whiteColor);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #000000;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    &:hover {
        i {
            opacity: 1;
            visibility: visible;
        }
        &::before {
            opacity: 0.5;
            visibility: visible;
        }
    }
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
    background: {
        position: center center;
        repeat: no-repeat;
        color: #f9faff;
        size: cover;
    };
    padding: {
        top: 160px;
        bottom: 170px;
    };
    &.transparent-bg1 {
        background-image: url(/assets/img/page-title/page-title-bg1.jpg);
    }
    &.transparent-bg2 {
        background-image: url(/assets/img/page-title/page-title-bg2.jpg);
    }
    &.transparent-bg3 {
        background-image: url(/assets/img/page-title/page-title-bg3.jpg);
    }
    &.transparent-bg4 {
        background-image: url(/assets/img/page-title/page-title-bg4.jpg);
    }
    &.transparent-bg5 {
        background-image: url(/assets/img/page-title/page-title-bg5.jpg);
    }
    &.bg-f9faff {
        background-color: #f9faff;
    }
    &.bg-image {
        background-color: var(--blackColor);
        position: relative;
        z-index: 1;

        .page-title-content {
            color: var(--whiteColor);

            h2 {
                color: var(--whiteColor);
            }
            ul {
                li {
                    font-weight: 600;

                    &::before {
                        background-color: var(--optionalColor);
                    }
                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--startupMainColor);
                        }
                    }
                }
            }
        }
        &::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: -1;
            background-color: #000000;
            opacity: 0.7;
        }
    }
    //&.bg1 {
    //    background-image: url(/assets/img/page-title/page-title-bg-image1.jpg);
    //}
    //&.bg2 {
    //    background-image: url(/assets/img/page-title/page-title-bg-image2.jpg);
    //}
    //&.bg3 {
    //    background-image: url(/assets/img/page-title/page-title-bg-image3.jpg);
    //}
    //&.bg4 {
    //    background-image: url(/assets/img/page-title/page-title-bg-image4.jpg);
    //}
    //&.bg5 {
    //    background-image: url(/assets/img/page-title/page-title-bg-image5.jpg);
    //}
    &.bg1 {
        background-image: url(/assets/images/header_backgrounds/1.jpeg);
    }
    &.bg2 {
        background-image: url(/assets/images/header_backgrounds/2.jpg);
    }
    &.bg3 {
        background-image: url(/assets/images/header_backgrounds/3.jpg);
    }
    &.bg4 {
        background-image: url(/assets/images/header_backgrounds/4.jpg);
    }
    &.bg5 {
        background-image: url(/assets/images/header_backgrounds/5.jpg);
    }
    &.bg6 {
        background-image: url(/assets/images/header_backgrounds/6.jpg);
    }
    &.bg7 {
        background-image: url(/assets/images/header_backgrounds/7.jpg);
    }
    &.style-two {
        padding: {
            top: 260px;
            bottom: 150px;
        };
    }
    &.style-three {
        padding: {
            top: 275px;
            bottom: 150px;
        };
    }
    &.style-four {
        position: relative;
        z-index: 1;
        padding: {
            top: 170px;
            bottom: 170px;
        };
        &::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: -1;
            background: {
                size: cover;
                repeat: no-repeat;
                position: center center;
                image: url(/assets/img/bg12.png);
            };
        }
    }
}
.page-title-content {
    text-align: center;

    h2 {
        margin-bottom: 0;
        font-size: 45px;
    }
    ul {
        padding-left: 0;
        list-style-type: none;
        margin: {
            bottom: 0;
            top: 20px;
        };
        li {
            color: var(--startupMainColor);
            display: inline-block;
            position: relative;
            font-weight: 500;
            font-size: 16px;
            margin: {
                left: 12px;
                right: 12px;
            };
            &::before {
                content: '';
                position: absolute;
                right: -18px;
                top: 50%;
                transform: translateY(-50%);
                height: 1px;
                width: 10px;
                background-color: var(--optionalColor);
                margin-top: 1px;
            }
            a {
                color: var(--blackColor);

                &:hover {
                    color: var(--startupMainColor);
                }
            }
            &:last-child {
                margin-right: 0;

                &::before {
                    display: none;
                }
            }
            &:first-child {
                margin-left: 0;
            }
        }
    }
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
    margin-top: 20px;

    .page-numbers {
        width: 45px;
        height: 45px;
        line-height: 43px;
        position: relative;
        text-align: center;
        border-radius: 50%;
        display: inline-block;
        border: 1px solid #eeeeee;
        color: var(--blackColor);
        background-color: transparent;
        font: {
            size: 18px;
            weight: 600;
        };
        margin: {
            left: 3px;
            right: 3px;
        };
        &:hover, &.current {
            color: var(--whiteColor);
            background-color: var(--startupMainColor);
            border-color: var(--startupMainColor) !important;
        }
    }
}

/*================================================
Gallery Area CSS
=================================================*/
.single-gallery-item {
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    overflow: hidden;

    img {
        transition: var(--transition);
    }
    .popup-image {
        position: absolute;
        left: 0;
        transform: translateY(-50%) scale(0);
        top: 50%;
        z-index: 2;
        right: 0;
        width: 45px;
        height: 45px;
        line-height: 45px;
        color: var(--whiteColor);
        border: 1px solid var(--whiteColor);
        border-radius: 3px;
        margin: {
            left: auto;
            right: auto;
        };
        &:hover {
            border-radius: 50%;
            color: var(--blackColor);
            background-color: var(--whiteColor);
        }
    }
    &::before {
        z-index: 1;
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: var(--startupMainColor);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin: 10px;
    }
    &:hover {
        img {
            transform: scale(1.1);
        }
        &::before {
            opacity: 1;
            margin: 20px;
            visibility: visible;
        }
        .popup-image {
            transform: translateY(-50%) scale(1);
        }
    }
    &.left-overlay {
        &::before {
            left: 0;
            top: 0;
            margin: 0;
            width: 0%;
            height: 100%;
            right: auto;
            bottom: auto;
            opacity: .80;
        }
        &:hover {
            &::before {
                width: 100%;
            }
        }
    }
    &.top-overlay {
        &::before {
            left: 0;
            top: 0;
            margin: 0;
            width: 100%;
            height: 0%;
            right: auto;
            bottom: auto;
            opacity: .80;
        }
        &:hover {
            &::before {
                height: 100%;
            }
        }
    }
}
.shorting {
    .mix {
        display: none;
    }
}
.shorting-menu {
    text-align: center;
    margin-bottom: 40px;

    .filter {
        background-color: transparent;
        transition: var(--transition);
        letter-spacing: 2px;
        color: #b0b0b0;
        border: none;
        padding: 0;
        font: {
            size: var(--fontSize);
            weight: 500;
        };
        margin: {
            left: 20px;
            right: 20px;
        };
        &:last-child {
            margin-right: 0;
        }
        &:first-child {
            margin-left: 0;
        }
        &:hover, &.active {
            color: var(--blackColor);
        }
    }
}

/*================================================
Portfolio Details Area CSS
=================================================*/
.portfolio-details-image {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}
.portfolio-details-desc {
    h3 {
        font-size: 25px;
        margin: {
            bottom: 15px;
            top: 30px;
        };
        &:first-child {
            margin-top: 0;
        }
    }
    .image {
        padding-right: 15px;
        border-radius: 5px;
        margin: {
            top: 15px;
            bottom: 30px;
        };
    }
    .content {
        margin: {
            top: 15px;
            bottom: 30px;
        };
        h3 {
            margin: {
                top: 0;
                bottom: 25px;
            };
        }
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                color: var(--optionalColor);
                margin-bottom: 12px;
                position: relative;
                padding-left: 18px;
                font-weight: 500;

                &::before {
                    left: 0;
                    top: 50%;
                    width: 7px;
                    height: 7px;
                    content: '';
                    position: absolute;
                    border-radius: 50%;
                    transform: translateY(-50%);
                    background-color: var(--startupMainColor);
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
}
.portfolio-details-info {
    box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--startupMainColor);
    background-color: var(--whiteColor);
    border-radius: 5px;
    padding: 40px 30px;
    margin-left: 15px;

    ul {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            font-weight: 500;
            position: relative;
            margin-bottom: 20px;
            color: var(--optionalColor);
            border-bottom: 1px solid #eeeeee;
            padding: {
                left: 35px;
                bottom: 20px;
            };
            span {
                color: var(--blackColor);
                margin-bottom: 10px;
                display: block;
                font: {
                    size: 19px;
                    weight: 700;
                };
            }
            a {
                margin-bottom: 8px;
                display: inline-block;
                color: var(--optionalColor);

                &:last-child {
                    margin-bottom: 0;
                }
                &:hover {
                    color: var(--startupMainColor);
                }
            }
            .icon {
                left: 0;
                top: 6px;
                font-size: 25px;
                position: absolute;
                color: var(--startupMainColor);
            }
            &:last-child {
                margin-bottom: 0;
                padding-bottom: 0;
                border-bottom: none;
            }
        }
    }
}
.portfolio-details-slides {
    &.owl-theme {
        .owl-nav {
            opacity: 0;
            margin-top: 0;
            visibility: hidden;
            transition: var(--transition);

            [class*=owl-] {
                margin: 0;
                background-color: var(--whiteColor);
                color: var(--blackColor);
                padding: 0 !important;
                border-radius: 0;
                transition: var(--transition);
                border: none;
                cursor: pointer;
                position: absolute;
                left: 25px;
                top: 50%;
                width: 45px;
                height: 45px;
                line-height: 45px;
                border-radius: 50%;
                transform: translateY(-50%);
                font-size: 20px;

                &.owl-next {
                    left: auto;
                    right: 25px;
                }
                i {
                    line-height: 1;
                }
                &:hover {
                    background-color: var(--blackColor);
                    border-color: var(--blackColor);
                    color: var(--whiteColor);
                }
            }
        }
        &:hover {
            .owl-nav {
                opacity: 1;
                visibility: visible;
            }
        }
        .owl-dots {
            margin-top: 40px;

            .owl-dot {
                span {
                    width: 18px;
                    height: 18px;
                    border-radius: 50%;
                    transition: var(--transition);
                    margin: 0 5px;
                }
                &:hover, &.active {
                    span {
                        background-color: var(--startupMainColor);
                    }
                }
            }
        }
    }
}

/*================================================
Portfolio Details Navigation Area CSS
=================================================*/
.portfolio-details-navigation {
    background-color: #f7f7f7;
    padding: {
        top: 40px;
        bottom: 40px;
    };
}
.portfolio-details-left {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;

    a {
        display: inline-block;
        color: var(--optionalColor);
        position: relative;
        padding-left: 25px;

        i {
            position: absolute;
            left: 0;
            top: 0;
        }
        &:hover {
            color: var(--startupMainColor);
        }
    }
}
.menu-icon {
    line-height: 1;
    font-size: 22px;
    color: var(--optionalColor);

    &:hover {
        color: var(--startupMainColor);
    }
}
.portfolio-details-right {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;

    a {
        display: inline-block;
        color: var(--optionalColor);
        position: relative;
        padding-right: 25px;

        i {
            position: absolute;
            right: 0;
            top: 0;
        }
        &:hover {
            color: var(--startupMainColor);
        }
    }
}

/*================================================
Privacy Policy Area CSS
=================================================*/
.privacy-policy-content {
    h3 {
        font-size: 20px;
        margin-bottom: 15px;

        &:not(:first-child) {
            margin-top: 25px;
        }
    }
    strong {
        color: var(--blackColor) !important;
    }
    ul {
        li {
            color: var(--optionalColor);
            margin-bottom: 12px;

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

/*================================================
Terms & Conditions Area CSS
=================================================*/
.terms-conditions-content {
    h3 {
        font-size: 20px;
        margin-bottom: 15px;

        &:not(:first-child) {
            margin-top: 25px;
        }
    }
    strong {
        color: var(--blackColor) !important;
    }
    ul {
        li {
            color: var(--optionalColor);
            margin-bottom: 12px;

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

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion {
    max-width: 800px;
    margin: {
        left: auto;
        right: auto;
    };
    .accordion-item {
        margin-bottom: 15px;
        border: 1px solid #eeeeee;

        .accordion-button {
            border: none;
            padding: 20px 20px 20px 45px;
            position: relative;
            border: none;
            box-shadow: unset !important;
            text-align: start;
            margin: 0;
            font: {
                size: 18px;
                weight: 700;
            };
            &:not(.collapsed) {
                color: var(--blackColor);
                background-color: transparent;

                &::after {
                    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
                }
            }
            &::after {
                position: absolute;
                left: 20px;
                top: 25px;
                width: 15px;
                height: 15px;
                background-size: 15px;
            }
        }
        .accordion-collapse {
            border: none;
        }
        .accordion-body {
            padding: 0 20px 20px 45px;

            p {
                strong {
                    color: var(--blackColor);
                }
            }
            ul {
                margin-bottom: 15px;

                li {
                    margin-bottom: 12px;
                    color: var(--optionalColor);

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
        &:last-child {
            margin-bottom: 0;
        }
        &:first-of-type {
            .accordion-button {
                border: {
                    top: {
                        left-radius: 0;
                        right-radius: 0;
                    }
                };
            }
        }
    }
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
    border: {
        top: 1px dashed #eeeeee;
        bottom: 1px dashed #eeeeee;
    };
}
.error-content {
    text-align: center;

    h3 {
        font-size: 30px;
        margin: {
            bottom: 20px;
            top: 45px;
        };
    }
    p {
        max-width: 550px;
        margin: {
            left: auto;
            right: auto;
            bottom: 0;
        };
    }
    .default-btn {
        margin-top: 30px;
    }
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
    height: 100vh;
}
.coming-soon-image {
    height: 100%;
    background: {
        image: url(/assets/img/coming-soon.jpg);
        position: center center;
        repeat: no-repeat;
        size: cover;
    };
    img {
        display: none;
    }
}
.coming-soon-content {
    height: 100vh;
    text-align: center;
    padding: {
        left: 30px;
        right: 30px;
    };
    .logo {
        display: inline-block;
    }
    h2 {
        font-size: 40px;
        margin: {
            top: 30px;
            bottom: 0;
        };
    }
    #timer {
        margin-top: 35px;

        div {
            width: 120px;
            height: 120px;
            border-radius: 5px;
            color: var(--blackColor);
            background-color: #f8f8f8;
            font: {
                size: 35px;
                weight: 700;
            };
            margin: {
                left: 10px;
                right: 10px;
            };
            span {
                display: block;
                margin-top: 2px;
                font: {
                    size: var(--fontSize);
                    weight: 500;
                };
            }
            &:first-child {
                margin-left: 0;
            }
            &:last-child {
                margin-right: 0;
            }
        }
    }
    form {
        position: relative;
        max-width: 530px;
        margin: {
            left: auto;
            right: auto;
            top: 40px;
        };
        .input-newsletter {
            padding: 0 0 0 15px;
            width: 100%;
            height: 60px;
            border: none;
            display: block;
            border-radius: 4px;
            color: var(--blackColor);
            font-size: var(--fontSize);
            transition: var(--transition);
            border: 1px solid #eeeeee;

            &::placeholder {
                color: var(--optionalColor);
                transition: var(--transition);
            }
            &:focus {
                border-color: var(--startupMainColor);

                &::placeholder {
                    color: transparent;
                }
            }
        }
        .default-btn {
            position: absolute;
            right: 5px;
            box-shadow: unset;
            bottom: 6px;
            padding: {
                left: 35px;
                right: 35px;
            };
            &:hover {
                background-color: var(--blackColor);
                color: var(--whiteColor);
            }
        }
        #validator-newsletter {
            position: absolute;
            bottom: -32px;
            left: 0;

            &.validation-danger {
                color: red;
            }
        }
    }
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
    position: relative;
    z-index: 1;

    &.bg-image {
        background: {
            image: url(/assets/img/cta-bg1.jpg);
            position: center center;
            repeat: no-repeat;
            size: cover;
        };
        &::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: -1;
            background-color: #000000;
            opacity: 0.8;
        }
        .section-title {
            h2 {
                color: var(--whiteColor);
            }
        }
    }
}
.single-contact-info-box {
    padding: 35px;
    margin-bottom: 30px;
    background-color: #F9FAFB;

    .icon {
        line-height: 1;
        font-size: 40px;
        margin-bottom: 25px;
        color: var(--startupMainColor);
    }
    h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    p {
        margin-bottom: 2px;

        a {
            color: var(--optionalColor);
            display: inline-block;

            &:hover {
                color: var(--startupMainColor);
            }
        }
        &:last-child {
            margin-bottom: 0;
        }
    }
    &.style-two {
        padding: 0;
        text-align: center;
        background-color: transparent;

        .icon {
            width: 80px;
            color: var(--whiteColor);
            background-color: var(--blackColor);
            border-radius: 50%;
            position: relative;
            height: 80px;
            font-size: 35px;
            transition: var(--transition);
            margin: {
                left: auto;
                right: auto;
                bottom: 25px;
            };
            i {
                position: absolute;
                left: 0;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
            }
        }
        &:hover {
            .icon {
                background-color: var(--startupMainColor);
                color: var(--whiteColor);
            }
        }
    }
}
.contact-form {
    padding: 34px;
    margin-bottom: 30px;
    background-color: var(--whiteColor);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);

    form {
        .form-group {
            margin-bottom: 20px;

            label {
                display: block;
                margin-bottom: 10px;
                color: var(--optionalColor);
            }
            .form-control {
                border-radius: 0;
                background-color: #f9faff;
                border: 1px solid #eeeeee !important;
            }
        }
        .form-check {
            margin: {
                bottom: 15px;
                top: 5px;
            };
            a {
                color: var(--startupMainColor);

                &:hover {
                    color: var(--blackColor);
                    text-decoration: underline;
                }
            }
        }
        .default-btn {
            margin-top: 5px;
            padding: {
                left: 35px;
                right: 35px;
            };
        }
        .help-block {
            &.with-errors {
                color: red;
                margin: {
                    bottom: 0;
                    top: 15px;
                };
            }
        }
        #msgSubmit {
            margin: 0;

            &.text-danger {
                margin-top: 15px;
            }
        }
    }
}
#maps {
    iframe {
        margin-bottom: -7px;
        height: 500px;
        border: none;
        width: 100%;
    }
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
    padding-top: 100px;
    position: relative;
    z-index: 1;

    &.marketing-footer {
        border-top: 1px solid #eeeeee;

        .footer-top {
            border-bottom: none;
            margin-bottom: 0;
        }
        .copyright-area {
            border-top: 1px solid #eeeeee;

            p {
                a {
                    color: var(--marketingMainColor);
                }
            }
        }
        .single-footer-widget {
            .footer-contact {
                li {
                    i {
                        color: var(--marketingMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--marketingMainColor);
                        }
                    }
                }
            }
            .info-links {
                li {
                    a {
                        &:hover {
                            color: var(--marketingMainColor);
                        }
                    }
                }
            }
            .newsletter-form {
                button {
                    &:hover {
                        color: var(--whiteColor);
                        background-color: var(--marketingMainColor);
                    }
                }
            }
        }
    }
    &.business-footer {
        padding-top: 0;

        .footer-top {
            background: var(--businessGradientColor);
            margin-bottom: 100px;
            border: none;
            padding: {
                top: 70px;
                bottom: 70px;
            };
            .content {
                h3 {
                    color: var(--whiteColor);
                }
                .default-btn {
                    background: transparent;
                    color: var(--whiteColor);
                    border: 1px solid var(--whiteColor);
                    box-shadow: unset;

                    i {
                        color: var(--whiteColor);
                    }
                    &:hover {
                        background-color: var(--whiteColor);
                        color: var(--blackColor);

                        i {
                            color: var(--blackColor);
                        }
                    }
                }
            }
        }
        .copyright-area {
            border-top: 1px solid #eeeeee;

            p {
                a {
                    color: var(--businessMainColor);
                }
            }
        }
        .single-footer-widget {
            .footer-contact {
                li {
                    i {
                        color: var(--businessMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--businessMainColor);
                        }
                    }
                }
            }
            .info-links {
                li {
                    a {
                        &:hover {
                            color: var(--businessMainColor);
                        }
                    }
                }
            }
            .newsletter-form {
                button {
                    &:hover {
                        color: var(--whiteColor);
                        background-color: var(--businessMainColor);
                    }
                }
            }
        }
    }
    &.app-footer {
        background: var(--appGradientColor);

        .footer-top {
            border-color: #0e49b5;

            .content {
                h3 {
                    color: var(--whiteColor);
                }
                .default-btn {
                    background: transparent;
                    color: var(--whiteColor);
                    border: 1px solid var(--whiteColor);
                    box-shadow: unset;

                    i {
                        color: var(--whiteColor);
                    }
                    &:hover {
                        background-color: var(--whiteColor);
                        color: var(--blackColor);

                        i {
                            color: var(--blackColor);
                        }
                    }
                }
            }
        }
        .copyright-area {
            opacity: 0.9;
            border-top: 1px solid #2c4687;
            background: transparent;

            p {
                color: var(--whiteColor);

                a {
                    color: var(--whiteColor);
                }
            }
        }
        .single-footer-widget {
            h3 {
                color: var(--whiteColor);
            }
            p {
                color: var(--whiteColor);
            }
            .footer-contact {
                li {
                    color: var(--whiteColor);

                    i {
                        color: var(--whiteColor);
                    }
                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--whiteColor);
                        }
                    }
                }
            }
            .info-links {
                li {
                    color: var(--whiteColor);

                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--whiteColor);
                        }
                    }
                }
            }
            .newsletter-form {
                button {
                    border-left: 1px solid var(--blackColor);

                    &:hover {
                        color: var(--blackColor);
                        border-color: #eeeeee;
                        background-color: var(--whiteColor);
                    }
                }
            }
        }
    }
    &.saas-footer {
        background: #000000;

        .footer-top {
            border-color: #121419;

            .content {
                h3 {
                    color: var(--whiteColor);
                }
                .default-btn {
                    background: transparent;
                    color: var(--whiteColor);
                    border: 1px solid var(--whiteColor);
                    box-shadow: unset;

                    i {
                        color: var(--whiteColor);
                    }
                    &:hover {
                        background-color: var(--whiteColor);
                        color: var(--blackColor);

                        i {
                            color: var(--blackColor);
                        }
                    }
                }
            }
        }
        .copyright-area {
            border-top: 1px solid #121419;
            background: transparent;

            p {
                color: #959595;

                a {
                    color: var(--whiteColor);
                }
            }
        }
        .single-footer-widget {
            h3 {
                color: var(--whiteColor);
            }
            p {
                color: var(--whiteColor);
            }
            .footer-contact {
                li {
                    color: var(--whiteColor);

                    i {
                        color: var(--saasMainColor);
                    }
                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--saasMainColor);
                        }
                    }
                }
            }
            .info-links {
                li {
                    color: var(--whiteColor);

                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--saasMainColor);
                        }
                    }
                }
            }
            .newsletter-form {
                button {
                    background: var(--saasGradientColor);
                }
            }
        }
    }
    &.personal-portfolio-footer {
        border-top: 1px solid #eeeeee;

        .single-footer-widget {
            .footer-contact {
                li {
                    i {
                        color: var(--personalPortfolioMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                }
            }
            .info-links {
                li {
                    a {
                        &:hover {
                            color: var(--personalPortfolioMainColor);
                        }
                    }
                }
            }
            .newsletter-form {
                button {
                    &:hover {
                        color: var(--whiteColor);
                        background-color: var(--personalPortfolioMainColor);
                    }
                }
            }
        }
        .copyright-area {
            border-top: none;
            background: #06080e;

            p {
                color: #959595;

                a {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.consulting-footer {
        overflow: hidden;
        background-color: #f3f4f7;

        .single-footer-widget {
            .footer-contact {
                li {
                    i {
                        color: var(--consultingMainColor);
                    }
                    a {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                }
            }
            .info-links {
                li {
                    a {
                        &:hover {
                            color: var(--consultingMainColor);
                        }
                    }
                }
            }
            .newsletter-form {
                button {
                    &:hover {
                        background-color: var(--consultingMainColor);
                    }
                }
            }
        }
        .copyright-area {
            background-color: transparent;
            border-top: 1px solid #e4eaf5;

            p {
                a {
                    color: var(--blackColor);

                    &:hover {
                        color: var(--consultingMainColor);
                    }
                }
            }
        }
    }
    &.it-agency-footer {
        background-color: #111111;

        .footer-top {
            border-color: #272727;

            .content {
                h3 {
                    color: var(--whiteColor);
                }
                .default-btn {
                    border: 1px solid var(--whiteColor);
                    color: var(--whiteColor);
                    background: transparent;
                    box-shadow: unset;

                    i {
                        color: var(--whiteColor);
                    }
                    &:hover {
                        background-color: var(--whiteColor);
                        color: var(--blackColor);

                        i {
                            color: var(--blackColor);
                        }
                    }
                }
            }
        }
        .single-footer-widget {
            h3 {
                color: var(--whiteColor);
            }
            p {
                color: var(--whiteColor);
            }
            .footer-contact {
                li {
                    color: var(--whiteColor);

                    i {
                        color: var(--itAgencyMainColor);
                    }
                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--itAgencyMainColor);
                        }
                    }
                }
            }
            .info-links {
                li {
                    color: var(--whiteColor);

                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--itAgencyMainColor);
                        }
                    }
                }
            }
            .newsletter-form {
                button {
                    background: var(--itAgencyGradientColor);
                }
            }
        }
        .copyright-area {
            border-top: 1px solid #272727;
            background-color: transparent;

            p {
                color: #c8c5c5;

                a {
                    color: var(--whiteColor);
                }
            }
        }
    }
    &.bg-dark {
        .footer-top {
            border-color: rgba(255, 255, 255, .07);

            .content {
                h3 {
                    color: var(--whiteColor);
                }
                .default-btn {
                    border: 1px solid var(--whiteColor);
                    color: var(--whiteColor);
                    background: transparent;
                    box-shadow: unset;

                    i {
                        color: var(--whiteColor);
                    }
                    &:hover {
                        background-color: var(--whiteColor);
                        color: var(--blackColor);

                        i {
                            color: var(--blackColor);
                        }
                    }
                }
            }
        }
        .single-footer-widget {
            color: var(--whiteColor);

            h3 {
                color: var(--whiteColor);
            }
            p {
                color: var(--whiteColor);
            }
            .footer-contact {
                li {
                    color: var(--whiteColor);

                    i {
                        color: var(--whiteColor);
                    }
                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--whiteColor);
                        }
                    }
                }
            }
            .info-links {
                li {
                    color: var(--whiteColor);

                    a {
                        color: var(--whiteColor);

                        &:hover {
                            color: var(--whiteColor);
                        }
                    }
                }
            }
            .newsletter-form {
                button {
                    background-color: var(--optionalColor);
                    color: var(--whiteColor);

                    &:hover {
                        color: var(--whiteColor);
                        background-color: var(--blackColor);
                    }
                }
            }
        }
        .copyright-area {
            background-color: #06080e;
            border-top: 1px solid #292929;

            p {
                color: #c6c6c6;

                a {
                    font-weight: 800;
                    color: var(--whiteColor);
                }
            }
            .social-links {
                li {
                    a {
                        color: var(--whiteColor);
                    }
                }
            }
        }
    }
    &.minimal-portfolio-color {
        padding: 0;

        .copyright-area {
            margin: 0;
            padding: {
                top: 50px;
                bottom: 50px;
            };
            p {
                a {
                    color: var(--minimalPortfolioColor);
                }
            }
        }
    }
}
.footer-top {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 70px;
    margin-bottom: 70px;

    .logo {
        display: inline-block;
    }
    .content {
        h3 {
            font-size: 20px;
            margin-bottom: 0;
        }
    }
}
.single-footer-widget {
    margin-bottom: 30px;

    h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .footer-contact {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            position: relative;
            margin-bottom: 12px;
            padding-left: 24px;
            color: var(--optionalColor);

            i {
                position: absolute;
                left: 0;
                top: 4px;
                color: var(--startupMainColor);
            }
            a {
                display: inline-block;
                color: var(--optionalColor);

                &:hover {
                    color: var(--startupMainColor);
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .info-links {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            margin-bottom: 12px;

            a {
                display: inline-block;
                color: var(--optionalColor);

                &:hover {
                    color: var(--startupMainColor);
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .newsletter-form {
        position: relative;

        .input-newsletter {
            display: block;
            width: 100%;
            height: 50px;
            border: 1px solid #eeeeee;
            background-color: var(--whiteColor);
            color: var(--blackColor);
            padding-left: 15px;

            &::placeholder {
                transition: var(--transition);
                color: var(--optionalColor);
            }
            &:focus {
                &::placeholder {
                    color: transparent;
                }
            }
        }
        button {
            position: absolute;
            right: 0;
            top: 0;
            height: 50px;
            width: 60px;
            background-color: var(--blackColor);
            color: var(--whiteColor);
            border: none;
            transition: var(--transition);

            &:hover {
                color: var(--whiteColor);
                background-color: var(--startupMainColor);
            }
        }
        #validator-newsletter {
            position: absolute;
            bottom: -32px;
            left: 0;

            &.validation-danger {
                color: red;
            }
        }
    }
    &.pl-4 {
        padding-left: 4rem;
    }
    &.pl-2 {
        padding-left: 2rem;
    }
    .social-links {
        padding-left: 0;
        list-style-type: none;
        margin-bottom: 0;

        li {
            display: inline-block;
            margin-right: 12px;

            a {
                display: inline-block;
                font-size: 18px;
            }
            &:last-child {
                margin-right: 0;
            }
        }
    }
    .logo {
        display: inline-block;
        margin-bottom: 15px;
    }
    &.style-two {
        h3 {
            position: relative;
            padding-left: 55px;

            &::before {
                width: 40px;
                height: 1px;
                background-color: var(--personalPortfolioMainColor);
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
            }
        }
    }
}
.copyright-area {
    background-color: var(--whiteColor);
    text-align: center;
    margin-top: 70px;
    padding: {
        top: 25px;
        bottom: 25px;
    };
    p {
        a {
            font-weight: 600;
            display: inline-block;
            color: var(--startupMainColor);
        }
    }
    .social-links {
        padding-left: 0;
        list-style-type: none;
        margin-bottom: 0;
        text-align: end;

        li {
            display: inline-block;
            margin-right: 12px;

            a {
                display: inline-block;
                font-size: 18px;
            }
            &:last-child {
                margin-right: 0;
            }
        }
    }
    &.bg-faf7f2 {
        background-color: #faf7f2;
    }
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 20px;
    right: 20px;
    z-index: 4;
    width: 43px;
    height: 45px;
    opacity: 0;
    font-size: 20px;
    visibility: hidden;
    text-align: center;
    color: var(--whiteColor);
    transition: var(--transition);
    background-color: var(--startupMainColor);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);

    i {
        right: 0;
        left: 0;
        top: 50%;
        text-align: center;
        position: absolute;
        transform: translateY(-50%);
        margin: {
            left: auto;
            right: auto;
        };
    }
    &.active {
        opacity: 1;
        visibility: visible;
        bottom: 20px;
    }
    &:hover {
        color: var(--whiteColor);
        background-color: var(--blackColor) !important;
    }
    &.marketing-color {
        background-color: var(--marketingMainColor);
    }
    &.business-color {
        background: var(--businessGradientColor);
    }
    &.app-color {
        background: var(--appGradientColor);
    }
    &.saas-color {
        background: var(--saasGradientColor);
    }
    &.personal-portfolio-color {
        background-color: var(--personalPortfolioMainColor);
    }
    &.consulting-color {
        background-color: var(--consultingMainColor);
    }
    &.it-agency-color {
        background: var(--itAgencyGradientColor);
    }
    &.shop-color {
        background: var(--shopMainColor);
    }
    &.minimal-portfolio-color {
        background: var(--minimalPortfolioColor);
    }
}

/*extra-css*/
.shape1 {
    position: absolute;
    right: 10%;
    top: 5%;
    z-index: -1;
    animation: moveleftbounce 5s linear infinite;
}
.shape2 {
    position: absolute;
    right: 3%;
    bottom: 12%;
    z-index: -1;
    animation: {
        duration: 20s;
        name: rotateme;
        timing-function: linear;
        iteration-count: infinite;
    };
}
.shape3 {
    position: absolute;
    right: 33.6%;
    bottom: 7%;
    z-index: -1;
}
.shape4 {
    position: absolute;
    top: 85px;
    left: 20px;
    z-index: -1;
    animation: movebounce 5s linear infinite;
}
.shape5 {
    position: absolute;
    bottom: 40px;
    right: 20px;
    z-index: -1;
    animation: moveleftbounce 5s linear infinite;
}
.shape6 {
    position: absolute;
    left: 40px;
    top: 45px;
    animation: {
        duration: 20s;
        name: rotateme;
        timing-function: linear;
        iteration-count: infinite;
    };
}
.shape7 {
    position: absolute;
    left: 30px;
    top: 20px;
    z-index: -1;
    animation: {
        duration: 20s;
        name: rotateme;
        timing-function: linear;
        iteration-count: infinite;
    };
}
.shape8 {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: -1;
    animation: {
        duration: 30s;
        name: rotateme;
        timing-function: linear;
        iteration-count: infinite;
    };
}
.shape9 {
    position: absolute;
    right: 0;
    top: 65px;
    z-index: -1;
    animation: moveleftbounce 5s linear infinite;
}
.shape10 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.shape11 {
    position: absolute;
    top: 8%;
    left: 0;
    z-index: -1;
    animation: {
        duration: 40s;
        name: rotateme2;
        timing-function: linear;
        iteration-count: infinite;
    };
}
.shape12 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: -1;
    animation: {
        duration: 30s;
        name: rotateme;
        timing-function: linear;
        iteration-count: infinite;
    };
}
.shape13 {
    position: absolute;
    right: 12%;
    bottom: 2%;
    z-index: -1;
    animation: {
        duration: 30s;
        name: rotateme;
        timing-function: linear;
        iteration-count: infinite;
    };
}
.shape14 {
    position: absolute;
    left: 0;
    bottom: 76px;
    z-index: -1;
    opacity: 0.23;
}
.shape15 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: -1;

    img {
        animation: movescale 5s linear infinite;
    }
}
.shape16 {
    position: absolute;
    right: 5px;
    top: 0;
    z-index: -1;
    animation: moveleftbounce 5s linear infinite;
}
.shape17 {
    left: 0;
    bottom: 98px;
    z-index: -1;
    opacity: .05;
    position: absolute;
}
.shape18 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.shape19 {
    position: absolute;
    right: 35%;
    top: 12%;
    z-index: -1;
    animation: {
        duration: 30s;
        name: rotateme;
        timing-function: linear;
        iteration-count: infinite;
    };
}
.divider {
    width: 100%;
    position: absolute;
    height: 100px;
    pointer-events: none;
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3csvg viewBox='0 0 100 100' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3e%3cpath d='M0,0 C16.6666667,66 33.3333333,98 50,98 C66.6666667,98 83.3333333,66 100,0 L100,100 L0,100 L0,0 Z' fill='%23fff'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml;utf8,%3csvg viewBox='0 0 100 100' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3e%3cpath d='M0,0 C16.6666667,66 33.3333333,98 50,98 C66.6666667,98 83.3333333,66 100,0 L100,100 L0,100 L0,0 Z' fill='%23fff'/%3e%3c/svg%3e");
    -webkit-mask-size: 100% 101%;
    mask-size: 100% 101%;
    background-color: var(--whiteColor);
    bottom: 0;
    left: 0;
    z-index: -1;
}
@keyframes border-transform {
    0%,100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }
	14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }
	28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }
	42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }
	56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }
	70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }
	84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}
@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes rotateme2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
@keyframes movebounce {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes moveleftbounce {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes scroller {
    0% {
        bottom: 34px;
    }
    5% {
        top: 4px;
    }
    32% {
        bottom: 4px;
    }
    66% {
        top: 34px;
        bottom: 4px;
    }
    100% {
        top: 4px;
        bottom: 34px;
    }
}
@keyframes movescale {
    0% {
        transform: scale(.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.9);
    }
}
@keyframes rotate3d {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
@keyframes animationFramesOne {
    0% {
        transform: translate(0px,0px) rotate(0deg) ;
    }
    20% {
        transform: translate(73px,-1px) rotate(36deg) ;
    }
    40% {
        transform: translate(141px,72px) rotate(72deg) ;
    }
    60% {
        transform: translate(83px,122px) rotate(108deg) ;
    }
    80% {
        transform: translate(-40px,72px) rotate(144deg) ;
    }
    100% {
        transform:  translate(0px,0px) rotate(0deg) ;
    }
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    75% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}
.owl-item {
    overflow: hidden;

    &.active {
        .startup-works-image {
            animation: {
                duration: .8s;
                fill-mode: both;
                name: fadeInRight;
                delay: .5s;
            };
            img {
                display: inline-block !important;
                width: auto !important;
            }
        }
        .startup-testimonials-image {
            overflow: hidden;

            .main-image {
                animation: {
                    duration: .8s;
                    fill-mode: both;
                    name: fadeInRight;
                    delay: .5s;
                };
            }
        }
    }
}

/*================================================
Modal CSS
=================================================*/
.productsQuickView {
    padding-right: 0 !important;

    .modal-dialog {
        max-width: 900px;
        margin: 0 auto;
    }
    .modal-content {
        border: none;
        padding: 40px;
        border-radius: 0;

        button {
            &.btn-close {
                top: 0;
                right: 0;
                margin: 0;
                z-index: 3;
                outline: 0;
                opacity: 1;
                padding: 0;
                width: 35px;
                height: 35px;
                border: none;
                font-size: 17px;
                line-height: 38px;
                box-shadow: unset;
                text-shadow: unset;
                position: absolute;
            }
        }
        .products-content {
            h3 {
                margin-bottom: 15px;
                font-size: 20px;
            }
            .price {
                color: var(--blackColor);
                margin: {
                    top: 15px;
                    bottom: 12px;
                };
                font: {
                    weight: 700;
                    size: 17px;
                };
                .old-price {
                    text-decoration: line-through;
                    color: #9b9494;
                    font-weight: normal;
                }
            }
            .products-review {
                .rating {
                    display: inline-block;
                    padding-right: 3px;
                    font-size: 14px;

                    i {
                        display: inline-block;
                        color: #f49f0b;
                        line-height: 1;
                    }
                }
                .rating-count {
                    display: inline-block;
                    color: var(--optionalColor);
                    line-height: initial;
                    position: relative;
                    top: 1px;

                    &:hover {
                        color: var(--blackColor);
                    }
                }
            }
            .products-add-to-cart {
                margin-top: 25px;

                .quantities {
                    position: relative;
                    padding-left: 45px;

                    .sub-title {
                        left: 0;
                        top: 50%;
                        display: block;
                        font-weight: 600;
                        position: absolute;
                        transform: translateY(-50%);
                    }
                }
                .input-counter {
                    display: block;
                    max-width: 120px;
                    min-width: 120px;
                    text-align: center;
                    position: relative;
                    margin-bottom: 25px;

                    span {
                        top: 0;
                        width: 35px;
                        height: 100%;
                        cursor: pointer;
                        font-size: 15px;
                        line-height: 38px;
                        position: absolute;
                        color: var(--blackColor);
                        border: 1px solid #eeeeee;
                        background-color: transparent;
                        transition: var(--transition);

                        i {
                            position: relative;
                            top: 1px;
                        }
                        &.minus-btn {
                            left: 0;
                        }
                        &.plus-btn {
                            right: 0;
                        }
                        &:hover {
                            color: var(--optionalColor);
                        }
                    }
                    input {
                        height: 40px;
                        outline: 0;
                        width: 100%;
                        display: block;
                        text-align: center;
                        color: var(--blackColor);
                        border: 1px solid #eeeeee;
                        background-color: transparent;
                        font: {
                            size: 17px;
                            weight: 600;
                        }
                        &::placeholder {
                            color: var(--blackColor);
                        }
                    }
                }
            }
            .default-btn {
                box-shadow: unset !important;
            }
            .social-share {
                padding-left: 0;
                list-style-type: none;
                margin: {
                    bottom: 0;
                    top: 30px;
                };
                li {
                    display: inline-block;
                    margin-right: 12px;

                    span {
                        font-weight: 600;
                        position: relative;
                        top: -1px;
                    }
                    a {
                        line-height: 1;
                        font-size: 18px;
                        color: var(--optionalColor);

                        &:hover {
                            color: var(--blackColor);
                        }
                    }
                }
            }
        }
    }
}
