/*================================================
Default CSS
=================================================*/

@import url('https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap');
$main-font-family: 'Open Sans',
sans-serif;
$optional-font-family: 'Dosis',
sans-serif;
$main-color: #19bdc3;
$optional-color: #000642;
$white-color: #ffffff;
$black-color: #333333;
$paragraph-color: #57647c;
$font-size: 16px;
$transition: .5s;
body {
    padding: 0;
    margin: 0;
    font: {
        family: $main-font-family;
        size: $font-size;
    }
}

a {
    display: inline-block;
    transition: $transition;
    text-decoration: none;
    color: $black-color;
    &:hover,
    &:focus {
        text-decoration: none;
        color: $main-color;
    }
}

button {
    outline: 0 !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: $black-color;
    font: {
        family: $optional-font-family;
    }
}

.d-table {
    width: 100%;
    height: 100%;
    &-cell {
        vertical-align: middle;
    }
}

p {
    font-size: 16px;
    color: #57647c;
    margin-bottom: 15px;
    line-height: 1.8;
    &:last-child {
        margin-bottom: 0;
    }
}

.ptb-110 {
    padding: {
        top: 110px;
        bottom: 110px;
    }
}

img {
    max-width: 100%;
}

.bg-f2f6f9 {
    background-color: #f2f6f9;
}

.bg-fafafa {
    background-color: #fafafa;
}


/*section-title*/

.section-title {
    text-align: center;
    max-width: 670px;
    margin: {
        left: auto;
        right: auto;
        bottom: 60px;
        top: -6px;
    }
    span {
        display: block;
        color: $main-color;
        text-transform: uppercase;
        margin-bottom: 5px;
        font: {
            weight: 600;
            size: 15px;
            family: $optional-font-family;
        }
    }
    h2 {
        margin-bottom: 0;
        font: {
            size: 40px;
            weight: 700;
        }
    }
    p {
        max-width: 580px;
        margin: {
            bottom: 0;
            top: 15.5px;
            left: auto;
            right: auto;
        }
    }
}


/*btn-primary*/

.btn {
    border: none;
    line-height: initial;
    border-radius: 30px;
    transition: $transition;
    padding: 10px 32px 12px;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    font: {
        size: 16px;
        family: $optional-font-family;
        weight: 600;
    }
}

.btn-primary {
    color: $white-color;
    background-color: $main-color;
    &.disabled,
    &:disabled {
        color: $white-color;
        background-color: $main-color;
    }
    &:hover,
    &:focus {
        background-color: $optional-color !important;
        color: $white-color !important;
        box-shadow: unset !important;
    }
}


/*learn-more-btn*/

.learn-more-btn {
    display: inline-block;
    position: relative;
    color: $main-color;
    letter-spacing: .5px;
    font: {
        size: 15px;
        weight: 600;
        family: $optional-font-family;
    }
    i {
        margin-left: 2px;
        position: relative;
        top: -0.6px;
        &::before {
            font-size: 11px;
        }
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        background: $main-color;
        height: 1px;
        opacity: 0;
        visibility: hidden;
        transition: $transition;
    }
    &:hover {
        color: $main-color;
        &::before {
            width: 100%;
            opacity: 1;
            visibility: visible;
        }
    }
}


/*form-control*/

.form-control {
    height: 45px;
    border: 1px solid #eeeeee;
    background-color: transparent;
    border-radius: 0;
    transition: $transition;
    color: $black-color;
    line-height: initial;
    padding-left: 13px;
    font: {
        size: 14px;
    }
    &:hover,
    &:focus {
        box-shadow: unset;
    }
    &::placeholder {
        color: #999999;
    }
    &:focus {
        box-shadow: unset;
        border-color: $main-color;
    }
}


/*================================================
Preloader Area CSS
=================================================*/

.preloader {
    position: fixed;
    left: 0;
    width: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    z-index: 9999999;
    transition: .9s;
    .loader {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: inline-block;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 45%;
        transform: translateY(-45%);
        transition: $transition;
        .loader-outter {
            position: absolute;
            border: 4px solid $white-color;
            border-left-color: transparent;
            border-bottom: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
        }
        .loader-inner {
            position: absolute;
            border: 4px solid $white-color;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            left: calc(50% - 20px);
            top: calc(50% - 20px);
            border-right: 0;
            border-top-color: transparent;
            animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
        }
    }
    &::before,
    &::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 60%;
        z-index: -1;
        background: $main-color;
        transition: .9s;
    }
    &::after {
        top: auto;
        bottom: 0;
    }
    &.preloader-deactivate {
        visibility: hidden;
        &::after,
        &::before {
            height: 0;
        }
        .loader {
            opacity: 0;
            visibility: hidden;
        }
    }
}

@keyframes loader-outter {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}


/*================================================
Navbar Area CSS
=================================================*/

.sparsity-responsive-nav {
    display: block;
}

.navbar-brand {
    padding: {
        top: 0;
        bottom: 0;
    }
    img {
        &.optional-logo {
            display: none;
        }
    }
}

.sparsity-nav {
    background-color: transparent;
    padding: {
        top: 15px;
        bottom: 15px;
        right: 20px;
        left: 20px;
    }
    .navbar {
        padding: {
            right: 0;
            top: 0;
            left: 0;
            bottom: 0;
        }
        ul {
            padding-left: 0;
            list-style-type: none;
            margin-bottom: 0;
        }
        .navbar-nav {
            font-family: $optional-font-family;
            margin-left: auto;
            .nav-item {
                position: relative;
                padding: {
                    top: 15px;
                    bottom: 15px;
                    left: 0;
                    right: 0;
                }
                a {
                    font: {
                        size: 18px;
                        weight: 600;
                    }
                    color: #f3ebeb;
                    text-transform: capitalize;
                    padding: {
                        left: 0;
                        right: 0;
                        top: 0;
                        bottom: 0;
                    }
                    margin: {
                        left: 13px;
                        right: 13px;
                    }
                    &:hover,
                    &:focus,
                    &.active {
                        color: $white-color;
                    }
                    i {
                        font-size: 10px;
                    }
                }
                &:last-child {
                    a {
                        margin-right: 0;
                    }
                }
                &:first-child {
                    a {
                        margin-left: 0;
                    }
                }
                &:hover,
                &:focus,
                &.active {
                    a {
                        color: $white-color;
                    }
                }
                .dropdown-menu {
                    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
                    background: $white-color;
                    position: absolute;
                    border: none;
                    top: 80px;
                    left: 0;
                    width: 250px;
                    z-index: 99;
                    display: block;
                    opacity: 0;
                    visibility: hidden;
                    border-radius: 0;
                    transition: all 0.3s ease-in-out;
                    padding: {
                        top: 20px;
                        left: 5px;
                        right: 5px;
                        bottom: 20px;
                    }
                    li {
                        padding: 0;
                        a {
                            text-transform: capitalize;
                            padding: 8px 15px;
                            margin: 0;
                            color: $black-color;
                            font: {
                                size: 16px;
                            }
                            &:hover,
                            &:focus,
                            &.active {
                                color: $main-color;
                            }
                        }
                        .dropdown-menu {
                            left: 220px;
                            top: 0;
                            opacity: 0;
                            visibility: hidden;
                            li {
                                a {
                                    color: $black-color;
                                    &:hover,
                                    &:focus,
                                    &.active {
                                        color: $main-color;
                                    }
                                }
                                .dropdown-menu {
                                    left: 220px;
                                    top: 0;
                                    opacity: 0;
                                    visibility: hidden;
                                    li {
                                        a {
                                            color: $black-color;
                                            text-transform: capitalize;
                                            &:hover,
                                            &:focus,
                                            &.active {
                                                color: $main-color;
                                            }
                                        }
                                        .dropdown-menu {
                                            left: -250px;
                                            top: 0;
                                            opacity: 0;
                                            visibility: hidden;
                                            li {
                                                a {
                                                    color: $black-color;
                                                    text-transform: capitalize;
                                                    &:hover,
                                                    &:focus,
                                                    &.active {
                                                        color: $main-color;
                                                    }
                                                }
                                                .dropdown-menu {
                                                    left: -250px;
                                                    top: 0;
                                                    opacity: 0;
                                                    visibility: hidden;
                                                    li {
                                                        a {
                                                            color: $black-color;
                                                            text-transform: capitalize;
                                                            &:hover,
                                                            &:focus,
                                                            &.active {
                                                                color: $main-color;
                                                            }
                                                        }
                                                        .dropdown-menu {
                                                            left: -250px;
                                                            top: 0;
                                                            opacity: 0;
                                                            visibility: hidden;
                                                            li {
                                                                a {
                                                                    color: $black-color;
                                                                    text-transform: capitalize;
                                                                    &:hover,
                                                                    &:focus,
                                                                    &.active {
                                                                        color: $main-color;
                                                                    }
                                                                }
                                                                .dropdown-menu {
                                                                    left: -250px;
                                                                    top: 0;
                                                                    opacity: 0;
                                                                    visibility: hidden;
                                                                    li {
                                                                        a {
                                                                            color: $black-color;
                                                                            text-transform: capitalize;
                                                                            &:hover,
                                                                            &:focus,
                                                                            &.active {
                                                                                color: $main-color;
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                                &.active {
                                                                    a {
                                                                        color: $main-color;
                                                                    }
                                                                }
                                                                &:hover {
                                                                    .dropdown-menu {
                                                                        opacity: 1;
                                                                        visibility: visible;
                                                                        top: -15px;
                                                                    }
                                                                }
                                                            }
                                                        }
                                                        &.active {
                                                            a {
                                                                color: $main-color;
                                                            }
                                                        }
                                                        &:hover {
                                                            .dropdown-menu {
                                                                opacity: 1;
                                                                visibility: visible;
                                                                top: -15px;
                                                            }
                                                        }
                                                    }
                                                }
                                                &.active {
                                                    a {
                                                        color: $main-color;
                                                    }
                                                }
                                                &:hover {
                                                    .dropdown-menu {
                                                        opacity: 1;
                                                        visibility: visible;
                                                        top: -15px;
                                                    }
                                                }
                                            }
                                        }
                                        &.active {
                                            a {
                                                color: $main-color;
                                            }
                                        }
                                        &:hover {
                                            .dropdown-menu {
                                                opacity: 1;
                                                visibility: visible;
                                                top: -15px;
                                            }
                                        }
                                    }
                                }
                                &.active {
                                    a {
                                        color: $main-color;
                                    }
                                }
                                &:hover {
                                    .dropdown-menu {
                                        opacity: 1;
                                        visibility: visible;
                                        top: -15px;
                                    }
                                }
                            }
                        }
                        &.active {
                            a {
                                color: $main-color;
                            }
                        }
                        &:hover {
                            .dropdown-menu {
                                opacity: 1;
                                visibility: visible;
                                top: -15px;
                            }
                        }
                    }
                }
                &:hover {
                    .dropdown-menu {
                        opacity: 1;
                        visibility: visible;
                        top: 100%;
                    }
                }
            }
        }
        .others-options {
            margin-left: 20px;
            .cart-btn {
                display: inline-block;
                position: relative;
                top: 3px;
                color: $white-color;
                &:hover {
                    color: $white-color;
                }
            }
            .btn {
                margin-left: 15px;
            }
            .btn-primary {
                background-color: $white-color;
                color: $main-color;
                &:hover {
                    color: $white-color !important;
                    background-color: $main-color !important;
                }
            }
            .option-item {
                color: $black-color;
                display: inline-block;
                position: relative;
                line-height: initial;
                margin-left: 15px;
                top: 4px;
                .search-btn {
                    cursor: pointer;
                    transition: $transition;
                    color: $white-color;
                    &::before {
                        font-size: 17px;
                    }
                    &:hover {
                        color: $white-color;
                    }
                }
                .close-btn {
                    cursor: pointer;
                    display: none;
                    font-size: 17px;
                    transition: $transition;
                    width: 17px;
                    color: $white-color;
                    &.active {
                        display: block;
                    }
                    &:hover {
                        color: $white-color;
                    }
                }
            }
        }
    }
}

.navbar-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    background-color: transparent;
    transition: $transition;
    &.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
        background: $white-color !important;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        transition: $transition;
        .sparsity-nav {
            background-color: $white-color;
            padding: {
                top: 10px;
                bottom: 10px;
            }
            .navbar {
                .navbar-nav {
                    .nav-item {
                        a {
                            color: $black-color;
                            &:hover,
                            &:focus,
                            &.active {
                                color: $main-color;
                            }
                        }
                        &:hover,
                        &:focus,
                        &.active {
                            a {
                                color: $main-color;
                            }
                        }
                        .dropdown-menu {
                            li {
                                a {
                                    color: $black-color;
                                    &:hover,
                                    &:focus,
                                    &.active {
                                        color: $main-color;
                                    }
                                }
                                .dropdown-menu {
                                    li {
                                        a {
                                            color: $black-color;
                                            &:hover,
                                            &:focus,
                                            &.active {
                                                color: $main-color;
                                            }
                                        }
                                        .dropdown-menu {
                                            li {
                                                a {
                                                    color: $black-color;
                                                    &:hover,
                                                    &:focus,
                                                    &.active {
                                                        color: $main-color;
                                                    }
                                                }
                                                .dropdown-menu {
                                                    li {
                                                        a {
                                                            color: $black-color;
                                                            &:hover,
                                                            &:focus,
                                                            &.active {
                                                                color: $main-color;
                                                            }
                                                        }
                                                        .dropdown-menu {
                                                            li {
                                                                a {
                                                                    color: $black-color;
                                                                    &:hover,
                                                                    &:focus,
                                                                    &.active {
                                                                        color: $main-color;
                                                                    }
                                                                }
                                                                .dropdown-menu {
                                                                    li {
                                                                        a {
                                                                            color: $black-color;
                                                                            &:hover,
                                                                            &:focus,
                                                                            &.active {
                                                                                color: $main-color;
                                                                            }
                                                                        }
                                                                        .dropdown-menu {
                                                                            li {
                                                                                a {
                                                                                    color: $black-color;
                                                                                    &:hover,
                                                                                    &:focus,
                                                                                    &.active {
                                                                                        color: $main-color;
                                                                                    }
                                                                                }
                                                                            }
                                                                        }
                                                                        &.active {
                                                                            a {
                                                                                color: $main-color;
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                                &.active {
                                                                    a {
                                                                        color: $main-color;
                                                                    }
                                                                }
                                                            }
                                                        }
                                                        &.active {
                                                            a {
                                                                color: $main-color;
                                                            }
                                                        }
                                                    }
                                                }
                                                &.active {
                                                    a {
                                                        color: $main-color;
                                                    }
                                                }
                                            }
                                        }
                                        &.active {
                                            a {
                                                color: $main-color;
                                            }
                                        }
                                    }
                                }
                                &.active {
                                    a {
                                        color: $main-color;
                                    }
                                }
                            }
                        }
                    }
                }
                .others-options {
                    .cart-btn {
                        color: $black-color;
                        &:hover {
                            color: $main-color;
                        }
                    }
                    .btn-primary {
                        background-color: $main-color;
                        color: $white-color;
                        &:hover {
                            color: $white-color !important;
                            background-color: $optional-color !important;
                        }
                    }
                    .option-item {
                        color: $black-color;
                        .search-btn {
                            color: $black-color;
                            &:hover {
                                color: $main-color;
                            }
                        }
                        .close-btn {
                            color: $black-color;
                            &:hover {
                                color: $main-color;
                            }
                        }
                    }
                }
            }
        }
        .navbar-brand {
            padding: {
                top: 0;
                bottom: 0;
            }
            img {
                &.main-logo {
                    display: none;
                }
                &.optional-logo {
                    display: block;
                }
            }
        }
    }
    &.navbar-style-two {
        .sparsity-nav {
            padding: {
                left: 0;
                right: 0;
            }
        }
    }
}

.search-overlay {
    display: none;
    &.search-popup {
        position: absolute;
        top: 100%;
        width: 300px;
        right: 0;
        background: $white-color;
        z-index: 2;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
        .search-form {
            position: relative;
            .search-input {
                display: block;
                width: 100%;
                height: 40px;
                line-height: initial;
                border: 1px solid #eeeeee;
                padding-left: 10px;
                color: $black-color;
                outline: 0;
                transition: $transition;
                &:focus {
                    border-color: $main-color;
                }
            }
            .search-button {
                position: absolute;
                right: 0;
                top: 0;
                height: 40px;
                background: transparent;
                border: none;
                width: 40px;
                outline: 0;
                color: $paragraph-color;
                transition: $transition;
                &:hover,
                &:focus {
                    color: $main-color;
                }
            }
        }
    }
}

.navbar-style-three {
    .sparsity-nav {
        padding: {
            left: 0;
            right: 0;
        }
        ;
        .navbar-brand {
            img {
                display: inline-block !important;
            }
        }
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        color: $black-color;
                        &:hover,
                        &:focus,
                        &.active {
                            color: $main-color;
                        }
                    }
                    &:hover,
                    &:focus,
                    &.active {
                        a {
                            color: $main-color;
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: $black-color;
                                &:hover,
                                &:focus,
                                &.active {
                                    color: $main-color;
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: $black-color;
                                        &:hover,
                                        &:focus,
                                        &.active {
                                            color: $main-color;
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: $black-color;
                                                text-transform: capitalize;
                                                &:hover,
                                                &:focus,
                                                &.active {
                                                    color: $main-color;
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: $black-color;
                                                        &:hover,
                                                        &:focus,
                                                        &.active {
                                                            color: $main-color;
                                                        }
                                                    }
                                                    .dropdown-menu {
                                                        li {
                                                            a {
                                                                color: $black-color;
                                                                &:hover,
                                                                &:focus,
                                                                &.active {
                                                                    color: $main-color;
                                                                }
                                                            }
                                                            .dropdown-menu {
                                                                li {
                                                                    a {
                                                                        color: $black-color;
                                                                        &:hover,
                                                                        &:focus,
                                                                        &.active {
                                                                            color: $main-color;
                                                                        }
                                                                    }
                                                                    .dropdown-menu {
                                                                        li {
                                                                            a {
                                                                                color: $black-color;
                                                                                &:hover,
                                                                                &:focus,
                                                                                &.active {
                                                                                    color: $main-color;
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                    &.active {
                                                                        a {
                                                                            color: $main-color;
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                            &.active {
                                                                a {
                                                                    color: $main-color;
                                                                }
                                                            }
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: $main-color;
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: $main-color;
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: $main-color;
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: $main-color;
                                }
                            }
                        }
                    }
                }
            }
            .others-options {
                .cart-btn {
                    color: $black-color;
                    &:hover {
                        color: $main-color;
                    }
                }
                .option-item {
                    color: $black-color;
                    .search-btn {
                        color: $black-color;
                        &:hover {
                            color: $main-color;
                        }
                    }
                    .close-btn {
                        color: $black-color;
                        &:hover {
                            color: $main-color;
                        }
                    }
                }
            }
        }
    }
}

.navbar-style-four {
    .sparsity-nav {
        .navbar-brand {
            img {
                display: inline-block !important;
            }
        }
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        color: $black-color;
                        &:hover,
                        &:focus,
                        &.active {
                            color: $main-color;
                        }
                    }
                    &:hover,
                    &:focus,
                    &.active {
                        a {
                            color: $main-color;
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: $black-color;
                                &:hover,
                                &:focus,
                                &.active {
                                    color: $main-color;
                                }
                            }
                            .dropdown-menu {
                                li {
                                    a {
                                        color: $black-color;
                                        &:hover,
                                        &:focus,
                                        &.active {
                                            color: $main-color;
                                        }
                                    }
                                    .dropdown-menu {
                                        li {
                                            a {
                                                color: $black-color;
                                                text-transform: capitalize;
                                                &:hover,
                                                &:focus,
                                                &.active {
                                                    color: $main-color;
                                                }
                                            }
                                            .dropdown-menu {
                                                li {
                                                    a {
                                                        color: $black-color;
                                                        &:hover,
                                                        &:focus,
                                                        &.active {
                                                            color: $main-color;
                                                        }
                                                    }
                                                    .dropdown-menu {
                                                        li {
                                                            a {
                                                                color: $black-color;
                                                                &:hover,
                                                                &:focus,
                                                                &.active {
                                                                    color: $main-color;
                                                                }
                                                            }
                                                            .dropdown-menu {
                                                                li {
                                                                    a {
                                                                        color: $black-color;
                                                                        &:hover,
                                                                        &:focus,
                                                                        &.active {
                                                                            color: $main-color;
                                                                        }
                                                                    }
                                                                    .dropdown-menu {
                                                                        li {
                                                                            a {
                                                                                color: $black-color;
                                                                                &:hover,
                                                                                &:focus,
                                                                                &.active {
                                                                                    color: $main-color;
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                    &.active {
                                                                        a {
                                                                            color: $main-color;
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                            &.active {
                                                                a {
                                                                    color: $main-color;
                                                                }
                                                            }
                                                        }
                                                    }
                                                    &.active {
                                                        a {
                                                            color: $main-color;
                                                        }
                                                    }
                                                }
                                            }
                                            &.active {
                                                a {
                                                    color: $main-color;
                                                }
                                            }
                                        }
                                    }
                                    &.active {
                                        a {
                                            color: $main-color;
                                        }
                                    }
                                }
                            }
                            &.active {
                                a {
                                    color: $main-color;
                                }
                            }
                        }
                    }
                }
            }
            .others-options {
                .cart-btn {
                    color: $black-color;
                    &:hover {
                        color: $main-color;
                    }
                }
                .option-item {
                    color: $black-color;
                    .search-btn {
                        color: $black-color;
                        &:hover {
                            color: $main-color;
                        }
                    }
                    .close-btn {
                        color: $black-color;
                        &:hover {
                            color: $main-color;
                        }
                    }
                }
            }
        }
    }
}

// Mobile and iPad Navbar
@media only screen and (max-width: 991px) {
    .navbar-area {
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        padding: {
            top: 15px;
            bottom: 15px;
        }
        &.is-sticky {
            border-bottom: none;
            box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
            .sparsity-responsive-nav {
                .logo {
                    img {
                        &.main-logo {
                            display: none;
                        }
                        &.optional-logo {
                            display: block;
                        }
                    }
                }
                .mean-container {
                    a {
                        &.meanmenu-reveal {
                            color: $black-color;
                            span {
                                background: $black-color;
                            }
                        }
                    }
                }
            }
            .others-options {
                .cart-btn {
                    color: $black-color;
                    &:hover {
                        color: $main-color;
                    }
                }
            }
        }
    }
    .sparsity-responsive-nav {
        display: block;
        .sparsity-responsive-menu {
            position: relative;
            &.mean-container {
                .mean-nav {
                    ul {
                        font-size: 14px;
                        li {
                            a {
                                &.active {
                                    color: $main-color;
                                }
                            }
                            li {
                                a {
                                    font-size: 13.5px;
                                }
                            }
                        }
                    }
                }
                .navbar-nav {
                    overflow-y: scroll;
                    height: 350px;
                    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
                }
            }
        }
        .mean-container {
            a {
                &.meanmenu-reveal {
                    color: $white-color;
                    span {
                        background: $white-color;
                    }
                }
            }
        }
        .logo {
            position: relative;
            width: 50%;
            z-index: 999;
            img {
                &.optional-logo {
                    display: none;
                }
            }
        }
    }
    .others-options {
        position: absolute;
        right: 55px;
        top: 7px;
        .btn,
        .option-item {
            display: none;
        }
        .cart-btn {
            color: $white-color;
            &:hover {
                color: $main-color;
            }
        }
    }
    .sparsity-nav {
        display: none;
    }
    .navbar-style-three {
        .sparsity-responsive-nav {
            .logo {
                img {
                    display: inline-block !important;
                }
            }
            .mean-container {
                a {
                    &.meanmenu-reveal {
                        color: $black-color;
                        span {
                            background: $black-color;
                        }
                    }
                }
            }
        }
        .others-options {
            .cart-btn {
                color: $black-color;
                &:hover {
                    color: $main-color;
                }
            }
        }
    }
    .navbar-style-four {
        .sparsity-responsive-nav {
            .logo {
                img {
                    display: inline-block !important;
                }
            }
            .mean-container {
                a {
                    &.meanmenu-reveal {
                        color: $black-color;
                        span {
                            background: $black-color;
                        }
                    }
                }
            }
        }
        .others-options {
            .cart-btn {
                color: $black-color;
                &:hover {
                    color: $main-color;
                }
            }
        }
    }
}


/*================================================
Main Banner Area CSS
=================================================*/

.main-banner {
    height: 950px;
    position: relative;
    background: {
        image: url(../../assets/img/main-banner.jpg);
        position: center center;
        size: cover;
        repeat: no-repeat;
    }
    .container-fluid {
        padding: {
            left: 100px;
            right: 100px;
        }
    }
    &.home-video {
        position: relative;
        overflow: hidden;
        z-index: 1;
        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background-color: #000000;
            z-index: -1;
            opacity: 0.75;
        }
        .background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: auto;
            height: auto;
            max-width: 100%;
            min-height: 100%;
            z-index: -2;
        }
        .main-banner {
            position: relative;
            z-index: 3;
        }
    }
}

.main-banner-content {
    margin-top: -160px;
    max-width: 720px;
    h1 {
        color: $white-color;
        margin-bottom: 0;
        line-height: 1.1;
        font: {
            size: 70px;
            weight: 700;
        }
    }
    p {
        font-size: 15px;
        color: $white-color;
        max-width: 600px;
        margin: {
            top: 25px;
            bottom: 0;
        }
    }
    .btn-box {
        margin-top: 30px;
        .optional-btn {
            display: inline-block;
            color: $white-color;
            position: relative;
            margin-left: 20px;
            font: {
                family: $optional-font-family;
                size: 16px;
                weight: 700;
            }
            &::before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 2px;
                background-color: $white-color;
                transition: $transition;
            }
            &::after {
                content: '';
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0;
                height: 2px;
                background-color: $main-color;
                transition: $transition;
            }
            &:hover {
                color: $white-color;
                &::before {
                    width: 0;
                }
                &::after {
                    width: 100%;
                    right: auto;
                    left: 0;
                }
            }
        }
    }
}

.banner-section {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: {
        image: url(../../assets/img/banner-bg-shape.jpg);
        position: center center;
        size: cover;
        repeat: no-repeat;
    }
    ;
    padding: {
        top: 240px;
        bottom: 120px;
    }
    ;
}

.banner-content {
    h1 {
        margin-bottom: 0;
        line-height: 1.1;
        font: {
            size: 67px;
            weight: 700;
        }
    }
    p {
        font-size: 15px;
        max-width: 600px;
        margin: {
            top: 25px;
            bottom: 0;
        }
    }
    .btn-box {
        margin-top: 30px;
        .optional-btn {
            display: inline-block;
            color: $black-color;
            position: relative;
            margin-left: 20px;
            font: {
                family: $optional-font-family;
                size: 16px;
                weight: 700;
            }
            &::before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 2px;
                background-color: $black-color;
                transition: $transition;
            }
            &::after {
                content: '';
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0;
                height: 2px;
                background-color: $main-color;
                transition: $transition;
            }
            &:hover {
                color: $main-color;
                &::before {
                    width: 0;
                }
                &::after {
                    width: 100%;
                    right: auto;
                    left: 0;
                }
            }
        }
    }
}

.banner-image {
    position: relative;
    width: 100%;
    height: 100%;
    top: -75px;
    img {
        position: absolute;
        &:nth-child(1) {
            left: 115px;
            bottom: 70px;
            z-index: 4;
            animation-name: rotateMe;
            animation-duration: 20s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }
        &:nth-child(2) {
            left: 87px;
            bottom: 45px;
            z-index: 3;
        }
        &:nth-child(3) {
            right: 45px;
            bottom: -35px;
        }
        &:nth-child(4) {
            left: -40px;
            bottom: -75px;
            z-index: 3;
        }
        &:nth-child(5) {
            left: 40px;
            bottom: -55px;
            z-index: 2;
        }
        &:nth-child(6) {
            left: -45px;
            top: 185px;
            z-index: 1;
        }
        &:nth-child(7) {
            right: 245px;
            top: 0;
        }
        &:nth-child(8) {
            left: 30px;
            bottom: -63px;
        }
        &.main-pic {
            display: none;
        }
    }
}

.hero-banner {
    position: relative;
    z-index: 1;
    background: {
        image: url(../../assets/img/banner-bg-shape.jpg);
        position: center center;
        size: cover;
        repeat: no-repeat;
    }
    ;
    padding: {
        top: 180px;
        bottom: 100px;
    }
    ;
    .container-fluid {
        padding: {
            left: 70px;
            right: 70px;
        }
        ;
    }
}

.hero-banner-content {
    h1 {
        margin-bottom: 0;
        line-height: 1.1;
        font: {
            size: 67px;
            weight: 700;
        }
    }
    p {
        font-size: 15px;
        max-width: 600px;
        margin: {
            top: 25px;
            bottom: 0;
        }
    }
    .btn-box {
        margin-top: 30px;
        .optional-btn {
            display: inline-block;
            color: $black-color;
            position: relative;
            margin-left: 20px;
            font: {
                family: $optional-font-family;
                size: 16px;
                weight: 700;
            }
            &::before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 2px;
                background-color: $black-color;
                transition: $transition;
            }
            &::after {
                content: '';
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0;
                height: 2px;
                background-color: $main-color;
                transition: $transition;
            }
            &:hover {
                color: $main-color;
                &::before {
                    width: 0;
                }
                &::after {
                    width: 100%;
                    right: auto;
                    left: 0;
                }
            }
        }
    }
}

.hero-banner-image {
    text-align: center;
}


/*================================================
Featured Services Area CSS
=================================================*/

.featured-services-area {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
}

.single-featured-services-box {
    position: relative;
    z-index: 1;
    transition: $transition;
    padding: 20px 30px;
    .icon {
        margin-bottom: 5px;
        color: $main-color;
        transition: $transition;
        i {
            font-size: 45px;
            &::before {
                font-size: 45px;
            }
        }
    }
    h3 {
        margin-bottom: 0;
        color: $white-color;
        transition: $transition;
        font: {
            size: 23px;
            weight: 700;
        }
        a {
            color: $white-color;
        }
    }
    p {
        color: #dddddd;
        transition: $transition;
        margin: {
            top: 12px;
            bottom: 0;
        }
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        background-color: $main-color;
        width: 2px;
        height: 100%;
        transition: $transition;
        z-index: -1;
    }
    &:hover,
    &.active {
        .icon {
            color: $white-color;
        }
        h3 {
            color: $white-color;
            a {
                color: $white-color;
            }
        }
        p {
            color: #f0f0f0;
        }
        &::before {
            width: 100%;
        }
    }
}


/*================================================
Featured Solutions Area CSS
=================================================*/

.featured-solutions-area {
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.single-featured-solutions-box {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    padding: 35px;
    border-radius: 5px;
    background: linear-gradient(to left bottom, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #ffffff);
    .icon {
        position: relative;
        z-index: 1;
        margin-bottom: 25px;
        img {
            transition: $transition;
        }
        &::before {
            height: 50px;
            width: 50px;
            background: linear-gradient(to right, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #ffffff);
            position: absolute;
            left: -10px;
            top: 50%;
            transform: translateY(-50%);
            z-index: -1;
            content: '';
            border-radius: 50%;
            transition: $transition;
        }
    }
    h3 {
        margin-bottom: 0;
        transition: $transition;
        font: {
            size: 23px;
            weight: 700;
        }
    }
    p {
        margin: {
            top: 13px;
            bottom: 0;
        }
    }
    .learn-more-btn {
        margin-top: 12px;
        font-size: 16px;
        &::before {
            width: 100%;
            opacity: 1;
            visibility: visible;
        }
        &:hover {
            &::before {
                width: 0;
            }
        }
    }
    &:hover {
        .icon {
            img {
                transform: rotateY(-180deg);
            }
            &::before {
                transform: translateY(-50%) rotate(180deg);
            }
        }
    }
}


/*================================================
About Area CSS
=================================================*/

.about-area {
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    padding-bottom: 100px;
    img {
        &:nth-child(2) {
            position: absolute;
            right: 0;
            bottom: 0;
            border-radius: 0 10px 0 0;
        }
    }
}

.about-content {
    padding-left: 25px;
    h2 {
        margin-bottom: 18px;
        line-height: 1.3;
        font: {
            size: 40px;
            weight: 700;
        }
    }
    p {
        margin-bottom: 13px;
    }
    .btn {
        margin-top: 7px;
    }
}

.about-inner-area {
    margin-top: 60px;
}

.about-text {
    h3 {
        margin-bottom: 0;
        font: {
            size: 23px;
            weight: 700;
        }
    }
    p {
        margin: {
            top: 13px;
            bottom: 0;
        }
    }
}

.about-img {
    text-align: center;
}

.about-content {
    .features-list {
        padding-left: 0;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        margin: {
            bottom: 20px;
            right: -10px;
            left: -10px;
        }
        ;
        li {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
            padding: {
                left: 10px;
                right: 10px;
                top: 13px;
            }
            ;
            span {
                display: block;
                position: relative;
                color: $black-color;
                padding-left: 28px;
                font: {
                    family: $optional-font-family;
                    weight: 600;
                    size: 17px;
                }
                ;
                i {
                    width: 20px;
                    display: inline-block;
                    height: 20px;
                    border-radius: 2px;
                    position: absolute;
                    left: 0;
                    top: 4px;
                    color: $white-color;
                    line-height: 16px;
                    background-color: $main-color;
                    text-align: center;
                    transition: $transition;
                    &::before {
                        font-size: 10px;
                    }
                }
                &:hover {
                    i {
                        background-color: $optional-color;
                    }
                }
            }
        }
    }
}

.shape-img1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
    opacity: .40;
}

.shape-img2 {
    position: absolute;
    left: 5%;
    top: 5%;
    z-index: -1;
    animation-name: rotateMe;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.shape-img7 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: .20;
    animation: rotate3d 4s linear infinite;
}

.shape-img3 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: .10;
    animation: rotate3d 4s linear infinite;
}

.shape-img4 {
    position: absolute;
    right: 40%;
    bottom: 8%;
    z-index: -1;
    animation: animationFramesOne 20s infinite linear;
}

.shape-img5 {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    opacity: 0.7;
    animation-name: rotateMe;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.shape-img6 {
    position: absolute;
    left: 2%;
    bottom: 0;
    z-index: -1;
    opacity: .40;
    animation: moveLeftBounce 5s linear infinite;
}

.dot-shape1 {
    position: absolute;
    top: 5%;
    left: 50%;
    z-index: -1;
    animation: animationFramesTwo 40s infinite linear;
    opacity: 0.5;
}

.dot-shape2 {
    position: absolute;
    left: 5%;
    top: 45%;
    z-index: -1;
    animation: animationFramesTwo 30s infinite linear;
    opacity: 0.5;
}

.dot-shape4 {
    position: absolute;
    right: 15%;
    top: 50%;
    z-index: -1;
    animation: rotate3d 4s linear infinite;
}

.dot-shape5 {
    position: absolute;
    left: 30%;
    top: 50%;
    z-index: -1;
    animation: animationFramesOne 20s infinite linear;
}

.dot-shape6 {
    position: absolute;
    right: 45%;
    bottom: 5%;
    z-index: -1;
    animation: rotate3d 4s linear infinite;
}

@keyframes moveBounce {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateMe {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        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 moveLeftBounce {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes animationFramesTwo {
    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);
    }
}


/*================================================
Services Area CSS
=================================================*/

.services-area {
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    .pagination-area {
        margin-bottom: 30px;
    }
}

.single-services-box {
    background-color: #ffffff;
    margin-bottom: 30px;
    padding: 30px 25px;
    transition: $transition;
    position: relative;
    .icon {
        margin-bottom: 18px;
        background-color: #19bdc33d;
        border-radius: 5px;
        width: 75px;
        height: 75px;
        line-height: 75px;
        transition: $transition;
        text-align: center;
        color: $main-color;
        i {
            &::before {
                font-size: 35px;
            }
        }
    }
    h3 {
        margin-bottom: 0;
        font: {
            size: 23px;
            weight: 700;
        }
    }
    p {
        margin: {
            top: 12px;
            bottom: 0;
        }
    }
    &::before {
        content: '';
        height: 3px;
        width: 20px;
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: $main-color;
        transition: $transition;
    }
    &:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
        .icon {
            background-color: $main-color;
            color: $white-color;
        }
        &::before {
            width: 100%;
            height: 4px;
        }
    }
}

.services-section {
    position: relative;
    z-index: 1;
}

.services-tab-list {
    .tabs {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
        li {
            margin-bottom: 10px;
            a {
                display: block;
                background-color: $white-color;
                position: relative;
                padding: 20px;
                border-radius: 5px;
                color: #313e5b;
                font: {
                    size: 19px;
                    weight: 600;
                }
                ;
                i {
                    display: inline-block;
                    width: 55px;
                    height: 55px;
                    background: linear-gradient(to left bottom, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #ffffff);
                    text-align: center;
                    line-height: 55px;
                    border-radius: 5px;
                    margin-right: 7px;
                    color: $main-color;
                    &::before {
                        font-size: 30px;
                    }
                }
                &:hover {
                    background-color: $main-color;
                    color: $white-color;
                }
            }
            &.current {
                a {
                    background-color: $main-color;
                    color: $white-color;
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .tab-content {
        padding-left: 30px;
        .tabs-item {
            .image {
                margin-bottom: 30px;
            }
            .content {
                .btn {
                    margin-top: 5px;
                }
            }
        }
    }
}


/*================================================
Services Details Area CSS
=================================================*/

.services-details-overview {
    -ms-flex-align: center!important;
    align-items: center!important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: {
        right: -15px;
        left: -15px;
        top: 50px;
    }
    &:first-child {
        margin-top: 0;
    }
    .services-details-desc {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: {
            right: 15px;
            left: 15px;
        }
        h3 {
            margin-bottom: 15px;
            font: {
                size: 23px;
                weight: 700;
            }
        }
        .services-details-accordion {
            .accordion {
                list-style-type: none;
                padding-left: 0;
                margin: {
                    bottom: 0;
                    top: 25px;
                }
                .accordion-item {
                    display: block;
                    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
                    background: $white-color;
                    margin-bottom: 10px;
                    border: none;
                    &:last-child {
                        margin-bottom: 0;
                    }
                }
                .accordion-title {
                    padding: 12px 20px 12px 51px;
                    color: $black-color;
                    position: relative;
                    border-bottom: 1px solid transparent;
                    margin-bottom: -1px;
                    font: {
                        size: 15px;
                        weight: 700;
                        family: $optional-font-family;
                    }
                    i {
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 40px;
                        text-align: center;
                        height: 100%;
                        background: $main-color;
                        color: $white-color;
                        &::before {
                            position: absolute;
                            left: 0;
                            top: 50%;
                            right: 0;
                            transform: translateY(-50%);
                            font-size: 13px;
                        }
                    }
                    &.active {
                        border-bottom-color: #eeeeee;
                        i {
                            &::before {
                                content: "\f068";
                            }
                        }
                    }
                }
                .accordion-content {
                    display: none;
                    position: relative;
                    padding: 15px 15px;
                    &.show {
                        display: block;
                    }
                }
            }
        }
    }
    .services-details-image {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: {
            right: 15px;
            left: 15px;
        }
    }
}


/*================================================
Webinar Area CSS
=================================================*/

.webinar-content {
    margin-left: auto;
    max-width: 635px;
    padding: {
        top: 150px;
        bottom: 150px;
        right: 87px;
    }
    h2 {
        margin-bottom: 15px;
        font: {
            size: 40px;
            weight: 700;
        }
    }
    p {
        margin-bottom: 20px;
    }
}

.webinar-video-image {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    background: {
        position: center center;
        size: cover;
        repeat: no-repeat;
        image: url(../../assets/img/woman.jpg);
    }
    img {
        display: none;
    }
    .video-btn {
        position: absolute;
        left: -45px;
        display: inline-block;
        top: 50%;
        transform: translateY(-50%);
        width: 90px;
        height: 90px;
        line-height: 90px;
        background-color: $main-color;
        border-radius: 50%;
        color: $white-color;
        z-index: 1;
        i {
            &::before {
                font-size: 38px;
            }
        }
        &::after,
        &::before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            z-index: -1;
            bottom: 0;
            left: 0;
            border-radius: 50%;
            border: 1px solid $main-color;
        }
        &::before {
            animation: ripple 2s linear infinite
        }
        &::after {
            animation: ripple 2s linear 1s infinite
        }
        &:hover,
        &:focus {
            background-color: $optional-color;
            color: $white-color;
        }
    }
}

@keyframes ripple {
    0% {
        transform: scale(1)
    }
    75% {
        transform: scale(1.75);
        opacity: 1
    }
    100% {
        transform: scale(2);
        opacity: 0
    }
}


/*================================================
Projects Area CSS
=================================================*/

.projects-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 80px;
    .section-title {
        text-align: left;
        max-width: 540px;
        margin: {
            left: 0;
            right: 0;
        }
        ;
    }
    .container-fluid {
        position: relative;
    }
}

.single-projects-box {
    position: relative;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.175);
    background-color: $white-color;
    img {
        border-radius: 5px;
    }
    .plus-icon {
        a {
            background-color: $main-color;
            width: 70px;
            height: 70px;
            position: absolute;
            top: 20px;
            right: 20px;
            transform: scale(0);
            transition: all .4s ease-out 0s;
            overflow: hidden;
            border-radius: 50%;
            span {
                width: 25px;
                height: 25px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                &::before,
                &::after {
                    position: absolute;
                    content: '';
                    width: 2px;
                    height: 100%;
                    background-color: $white-color;
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                }
                &::after {
                    height: 2px;
                    width: 100%;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                }
            }
            &:hover {
                background-color: $optional-color;
            }
        }
    }
    &:hover {
        .plus-icon {
            a {
                transform: scale(1);
            }
        }
    }
}

.projects-slides {
    &.owl-theme {
        .owl-stage-outer {
            padding: {
                left: 15px;
                right: 15px;
            }
            ;
        }
        .owl-nav {
            margin-top: 0;
            position: absolute;
            right: 20%;
            top: -115px;
            [class*=owl-] {
                color: $black-color;
                font-size: 15px;
                margin: 0;
                padding: 0;
                background-color: transparent;
                display: inline-block;
                width: 45px;
                height: 45px;
                line-height: 45px;
                transition: $transition;
                position: relative;
                border-radius: 30% 70% 70% 30% / 40% 60% 40% 60%;
                z-index: 1;
                &.owl-next {
                    margin-left: 10px;
                    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
                    &::before {
                        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
                    }
                }
                &::before {
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(to left bottom, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #ffffff);
                    border-radius: 30% 70% 70% 30% / 40% 60% 40% 60%;
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0;
                    z-index: -1;
                    transition: $transition;
                }
                &:hover {
                    background-color: $main-color;
                    color: $white-color;
                    &::before {
                        opacity: 0;
                        visibility: hidden;
                    }
                }
            }
        }
    }
}

.circle-shape1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}


/*================================================
Projects Details Area CSS
=================================================*/

.projects-details {
    padding: 40px;
    box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
    background-color: $white-color;
}

.projects-details-image {
    box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.3);
    background-color: $white-color;
}

.projects-details-info {
    width: 100%;
    height: 100%;
    padding: 25px;
    box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
    background-color: $white-color;
    ul {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
        li {
            margin-bottom: 12px;
            color: $paragraph-color;
            &:last-child {
                margin-bottom: 0;
            }
            a {
                display: inline-block;
                color: $paragraph-color;
                &:hover {
                    color: $main-color;
                }
            }
            span {
                color: $black-color;
                font: {
                    weight: 600;
                    size: 16px;
                }
                ;
            }
        }
    }
}

.projects-details-desc {
    margin-top: 35px;
    h3 {
        margin-bottom: 12px;
        font: {
            size: 23px;
            weight: 700;
        }
        ;
    }
    p {
        margin-bottom: 12px;
    }
    blockquote,
    .blockquote {
        p {
            font-size: 25px;
        }
    }
}


/*================================================
Team Area CSS
=================================================*/

.team-area {
    padding-bottom: 80px;
}

.single-team-box {
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    background-color: $white-color;
    transition: $transition;
    text-align: center;
    .image {
        position: relative;
        overflow: hidden;
        img {
            transition: $transition;
        }
        .social {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-decoration: none;
            opacity: 0;
            margin-top: -100px;
            padding: 8px 15px;
            background: $white-color;
            border-radius: 35px;
            visibility: hidden;
            transition: $transition;
            a {
                display: inline-block;
                color: $main-color;
                font-size: 17px;
                margin: 0 7px;
                &:hover {
                    color: $optional-color;
                }
            }
        }
    }
    .content {
        padding: 25px;
        min-height: 210px;
        position: relative;
        transition: $transition;
        h3 {
            margin-bottom: 0;
            transition: $transition;
            font: {
                size: 23px;
                weight: 700;
            }
        }
        span {
            display: block;
            margin-top: 8px;
            color: $main-color;
            transition: $transition;
            font: {
                family: $optional-font-family;
                size: 15px;
                weight: 500;
            }
        }
    }
    &:hover {
        transform: translateY(-5px);
        .image {
            img {
                transform: scale(1.2);
            }
            .social {
                opacity: 1;
                margin-top: 0;
                visibility: visible;
            }
        }
        .content {
            background-color: $main-color;
            h3 {
                color: $white-color;
            }
            span {
                color: $white-color;
            }
        }
    }
}


/*================================================
Fun Facts Area CSS
=================================================*/

.fun-facts-area {
    position: relative;
    z-index: 1;
}

.single-funfacts {
    margin-bottom: 30px;
    text-align: center;
    h3 {
        color: $main-color;
        margin-bottom: 0;
        font: {
            size: 32px;
            weight: 700;
        }
        ;
        .odometer-auto-theme {
            font: {
                family: $optional-font-family;
            }
            ;
        }
    }
    p {
        line-height: initial;
        margin-bottom: 0;
    }
}

.contact-cta-box {
    max-width: 600px;
    border-radius: 5px;
    border: 1px solid #f5f5f5;
    padding: 25px 220px 25px 40px;
    position: relative;
    margin: {
        left: auto;
        top: 40px;
        right: auto;
    }
    ;
    h3 {
        margin-bottom: 0;
        font: {
            size: 23px;
            weight: 600;
        }
        ;
    }
    p {
        line-height: initial;
        margin: {
            top: 10px;
            bottom: 0;
        }
        ;
    }
    .btn {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.shape-map1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    text-align: center;
    margin: {
        left: auto;
        right: auto;
    }
    ;
}


/*================================================
Partner Area CSS
=================================================*/

.partner-area {
    padding-bottom: 100px;
}

.customers-partner-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: {
        right: -5px;
        left: -5px;
    }
}

.partner-item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: {
        left: 5px;
        right: 5px;
    }
    a {
        display: block;
        padding: 25px;
        background: $white-color;
        text-align: center;
        position: relative;
        margin-bottom: 10px;
        &::before,
        &::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            opacity: 0;
            visibility: hidden;
            transition: $transition;
        }
        &::before {
            left: 0;
            top: 0;
            border: {
                left: 3px solid $main-color;
                top: 3px solid $main-color;
            }
        }
        &::after {
            right: 0;
            bottom: 0;
            border: {
                right: 3px solid $main-color;
                bottom: 3px solid $main-color;
            }
        }
        img {
            transition: $transition;
        }
        &:hover {
            &::after,
            &::before {
                width: 40px;
                height: 40px;
                opacity: 1;
                visibility: visible;
            }
            img {
                transform: scale(.8);
            }
        }
    }
    &:nth-child(6) {
        margin-left: 10%;
    }
}

.partner-section {
    position: relative;
    padding-bottom: 80px;
    z-index: 1;
}

.single-partner-item {
    margin-bottom: 30px;
    text-align: center;
    a {
        display: block;
        img {
            width: auto !important;
            display: inline-block !important;
        }
    }
}


/*================================================
Feedback Area CSS
=================================================*/

.feedback-area {
    position: relative;
    z-index: 1;
}

.feedback-item {
    position: relative;
    z-index: 3;
    margin-left: auto;
    max-width: 635px;
    padding: {
        top: 100px;
        bottom: 100px;
    }
    p {
        margin-bottom: 0;
        color: $white-color;
        font: {
            size: 19px;
            style: italic;
        }
    }
    &::before {
        content: "\f113";
        color: #f8b5a6;
        display: inline-block;
        position: relative;
        margin-top: -15px;
        font: {
            style: normal;
            size: 50px;
            family: Flaticon;
        }
    }
    .client-info {
        margin-top: 20px;
        img {
            width: 75px !important;
            display: none !important;
            margin-bottom: 15px;
            border-radius: 5px;
        }
        h3 {
            margin-bottom: 0;
            color: $white-color;
            font: {
                size: 18px;
                weight: 700;
            }
        }
        span {
            display: block;
            font-weight: 300;
            margin-top: 4px;
            color: $white-color;
        }
    }
    &::after {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        content: '';
        background-color: $main-color;
        z-index: -1;
        display: none;
    }
}

.client-image {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    background: {
        position: center center;
        size: cover;
        repeat: no-repeat;
    }
    img {
        display: none !important;
        width: auto !important;
    }
    &.bg1 {
        background: {
            image: url(../../assets/img/client/1.jpg);
        }
    }
    &.bg2 {
        background: {
            image: url(../../assets/img/client/2.jpg);
        }
    }
    &.bg3 {
        background: {
            image: url(../../assets/img/client/3.jpg);
        }
    }
}

.feedback-slides {
    &.owl-theme {
        .owl-stage {
            .owl-item {
                &::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 68%;
                    height: 100%;
                    z-index: 1;
                    background: {
                        image: url(../../assets/img/1.png);
                        position: right top;
                        size: cover;
                        repeat: no-repeat;
                    }
                }
            }
        }
        .owl-nav {
            margin-top: 0;
            transition: $transition;
            opacity: 0;
            visibility: hidden;
            [class*=owl-] {
                position: absolute;
                left: 50px;
                top: 50%;
                transform: translateY(-50%);
                background-color: transparent !important;
                color: $white-color;
                outline: 0;
                transition: $transition;
                font-size: 50px;
                i {
                    &::before {
                        font-size: 50px;
                    }
                }
                &.owl-next {
                    left: auto;
                    right: 50px;
                }
            }
        }
        &:hover {
            .owl-nav {
                opacity: 1;
                visibility: visible;
            }
        }
        .owl-dots {
            position: absolute;
            left: 0;
            bottom: 15px;
            right: 0;
            .owl-dot {
                outline: 0;
                span {
                    background-color: $white-color;
                    transition: $transition;
                    margin: 0 4px;
                    border-radius: 50%;
                    width: 12px;
                    height: 12px;
                }
                &.active,
                &:hover {
                    span {
                        background-color: #3a3a3a;
                    }
                }
            }
        }
    }
}

.testimonials-area {
    background: linear-gradient(to right, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #ffffff);
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.single-testimonials-item {
    box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 45px;
    background-color: $white-color;
    position: relative;
    padding: 60px 70px 60px 190px;
    border-radius: 5px;
    .client-info {
        position: absolute;
        left: 70px;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        img {
            border-radius: 5px;
            border: 2px solid #f4f5fe;
            width: 80px !important;
            height: 80px !important;
            padding: 5px;
            display: inline-block !important;
        }
        h3 {
            margin: {
                bottom: 0;
                top: 10px;
            }
            ;
            font: {
                size: 19px;
                weight: 700;
            }
            ;
        }
        span {
            display: block;
            color: $main-color;
            margin-top: 5px;
            font-size: 13px;
        }
    }
    p {
        font-size: 15px;
        margin-bottom: 0;
        color: #4a6f8a;
    }
    .rating {
        margin-top: 10px;
        i {
            color: #ff612f;
            &::before {
                font-size: 14px;
            }
        }
    }
    &::before {
        content: "\f113";
        color: #f5f5f5;
        position: absolute;
        right: 25px;
        bottom: 0;
        font: {
            style: normal;
            size: 80px;
            family: Flaticon;
        }
        ;
    }
    &::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        border-radius: 5px;
        bottom: -15px;
        background-color: $white-color;
        box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.04);
        z-index: -1;
        margin: {
            left: 30px;
            right: 30px;
        }
        ;
    }
}

.testimonials-slides {
    max-width: 750px;
    margin: -40px auto 0;
    .single-testimonials-item {
        margin-top: 40px;
    }
    .owl-item {
        padding: {
            left: 50px;
            right: 50px;
        }
        ;
    }
    .owl-nav {
        &.disabled+.owl-dots {
            line-height: .01;
            margin: {
                top: 10px;
                bottom: 30px;
            }
            ;
        }
    }
    .owl-dots {
        .owl-dot {
            span {
                width: 15px;
                height: 15px;
                margin: 0 3px;
                background: transparent;
                transition: $transition;
                border: 2px solid #8d95a7;
                border-radius: 50%;
                position: relative;
                &::before {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    background-color: $main-color;
                    margin: 2px;
                    content: '';
                    transition: $transition;
                    border-radius: 50%;
                    transform: scale(0);
                }
            }
            &:hover,
            &.active {
                span {
                    border-color: $main-color;
                    background-color: transparent;
                    &::before {
                        transform: scale(1);
                    }
                }
            }
        }
    }
}


/*================================================
Pricing Area CSS
=================================================*/

.pricing-area {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

.single-pricing-box {
    background-color: $white-color;
    margin-bottom: 30px;
    padding: 30px;
    transition: $transition;
    border-radius: 5px;
    .pricing-header {
        h3 {
            margin-bottom: 0;
            font: {
                size: 26px;
                weight: 700;
            }
        }
        p {
            transition: $transition;
            line-height: 1.6;
            margin: {
                top: 10px;
                bottom: 0;
            }
        }
    }
    .price {
        font: {
            size: 50px;
            weight: 700;
            family: $optional-font-family;
        }
        margin: {
            bottom: 10px;
        }
        span {
            display: inline-block;
            margin-left: -7px;
            font: {
                size: 20px;
                weight: 600;
            }
        }
    }
    .buy-btn {
        margin-bottom: 25px;
        .btn-primary {
            &::after {
                background: linear-gradient(to right top, #a3a3a3, #9a9a9a, #909090, #878787, #7e7e7e);
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                transition: $transition;
                z-index: -1;
                border-radius: 30px;
            }
        }
    }
    .pricing-features {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
        li {
            margin-bottom: 12px;
            color: $paragraph-color;
            position: relative;
            padding-left: 19px;
            &:last-child {
                margin-bottom: 0;
            }
            i {
                color: $main-color;
                font-size: 12px;
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                &::before {
                    font-size: 12px;
                }
            }
        }
    }
    &:hover,
    &.active {
        box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
        background-color: $white-color;
        border-color: $white-color;
        .buy-btn {
            .btn-primary {
                &::after {
                    opacity: 0;
                    visibility: hidden;
                }
            }
        }
    }
}

.tabs-item {
    display: none;
    &:first-child {
        display: block;
    }
}

.pricing-tab {
    .tabs {
        padding-left: 0;
        margin-bottom: 45px;
        list-style-type: none;
        text-align: center;
        li {
            display: inline-block;
            a {
                background-color: $white-color;
                padding: 10px 30px 11px;
                margin: {
                    left: -2px;
                    right: -2px;
                }
                font: {
                    family: $optional-font-family;
                    weight: 600;
                    size: 16px;
                }
                &:hover {
                    color: $white-color;
                    background-color: $black-color;
                }
            }
            &.current {
                a {
                    color: $white-color;
                    background-color: $black-color;
                }
            }
            &:nth-child(1) {
                a {
                    border-radius: 5px 0 0 5px;
                    &::before {
                        border-radius: 5px 0 0 5px;
                    }
                }
            }
            &:nth-child(2) {
                a {
                    border-radius: 0 5px 5px 0;
                    &::before {
                        border-radius: 0 5px 5px 0;
                    }
                }
            }
        }
    }
}

.pricing-box {
    background: linear-gradient(to left bottom, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #ffffff);
    margin-bottom: 30px;
    text-align: center;
    padding: 30px;
    transition: $transition;
    border-radius: 5px;
    .pricing-header {
        h3 {
            margin-bottom: 0;
            font: {
                size: 26px;
                weight: 700;
            }
        }
        p {
            transition: $transition;
            line-height: 1.6;
            margin: {
                top: 10px;
                bottom: 0;
            }
        }
    }
    .price {
        font: {
            size: 50px;
            weight: 700;
            family: $optional-font-family;
        }
        margin: {
            bottom: 10px;
        }
        span {
            display: inline-block;
            margin-left: -7px;
            font: {
                size: 20px;
                weight: 600;
            }
        }
    }
    .buy-btn {
        margin-bottom: 25px;
        .btn-primary {
            &::after {
                background: linear-gradient(to right top, #a3a3a3, #9a9a9a, #909090, #878787, #7e7e7e);
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                transition: $transition;
                z-index: -1;
                border-radius: 30px;
            }
        }
    }
    .pricing-features {
        margin-bottom: 0;
        list-style-type: none;
        text-align: left;
        padding: {
            left: 15px;
            right: 15px;
        }
        ;
        li {
            margin-bottom: 12px;
            color: #495771;
            position: relative;
            padding-left: 19px;
            &:last-child {
                margin-bottom: 0;
            }
            i {
                color: $main-color;
                font-size: 12px;
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                &::before {
                    font-size: 12px;
                }
            }
        }
    }
    &:hover,
    &.active {
        .buy-btn {
            .btn-primary {
                &::after {
                    opacity: 0;
                    visibility: hidden;
                }
            }
        }
    }
}

.pricing-tab {
    &.bg-color {
        .tabs {
            li {
                a {
                    background: linear-gradient(to left bottom, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #ffffff);
                    &:hover {
                        color: $black-color;
                        background: linear-gradient(to left bottom, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #ffffff);
                    }
                }
                &.current {
                    a {
                        color: $white-color;
                        background: $black-color;
                    }
                }
            }
        }
    }
}


/*================================================
Blog Area CSS
=================================================*/

.blog-area {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
    .pagination-area {
        margin-bottom: 30px;
    }
}

.single-blog-post {
    margin-bottom: 30px;
    transition: $transition;
    border-radius: 5px;
    background-color: #f4faff;
    .entry-thumbnail {
        a {
            img {
                transition: $transition;
                border-radius: 5px;
            }
        }
    }
    .entry-post-content {
        padding: 20px;
        .entry-meta {
            margin-bottom: 6px;
            ul {
                padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;
                li {
                    display: inline-block;
                    position: relative;
                    margin-right: 12px;
                    color: $paragraph-color;
                    font: {
                        family: $optional-font-family;
                        size: 15px;
                    }
                    &::before {
                        content: '';
                        position: absolute;
                        right: -7px;
                        top: 50%;
                        transform: rotate(14deg) translateY(-50%);
                        background: $paragraph-color;
                        width: 1px;
                        height: 13px;
                    }
                    a {
                        display: inline-block;
                        color: $paragraph-color;
                        &:hover {
                            color: $main-color;
                        }
                    }
                    &:last-child {
                        margin-right: 0;
                        &::before {
                            display: none;
                        }
                    }
                }
            }
        }
        h3 {
            margin-bottom: 0;
            line-height: 1.4;
            font: {
                size: 23px;
                weight: 700;
            }
        }
        p {
            margin: {
                top: 8px;
                bottom: 0;
            }
        }
        .learn-more-btn {
            margin-top: 15px;
        }
    }
    &:hover {
        box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
        transform: translateY(-5px);
        background-color: $white-color;
        .entry-thumbnail {
            a {
                img {
                    opacity: .7;
                }
            }
        }
    }
}


/*================================================
Blog Details Area CSS
=================================================*/

.blog-details {
    .article-content {
        margin-top: 30px;
        .entry-meta {
            margin-bottom: 10px;
            ul {
                padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;
                font-family: $optional-font-family;
                li {
                    position: relative;
                    display: inline-block;
                    color: $black-color;
                    margin-right: 21px;
                    font-size: 15px;
                    span {
                        display: inline-block;
                        color: $black-color;
                        font-weight: 600;
                    }
                    a {
                        display: inline-block;
                        color: $paragraph-color;
                        &:hover {
                            color: $main-color;
                        }
                    }
                    i {
                        color: $main-color;
                        margin-right: 2px;
                    }
                    &::before {
                        content: '';
                        position: absolute;
                        top: 11px;
                        right: -15px;
                        width: 6px;
                        height: 1px;
                        background: $main-color;
                    }
                    &:last-child {
                        margin-right: 0;
                        &::before {
                            display: none;
                        }
                    }
                }
            }
        }
        h3 {
            margin-bottom: 15px;
            font: {
                size: 23px;
                weight: 700;
            }
        }
        .wp-block-gallery {
            &.columns-3 {
                padding-left: 0;
                list-style-type: none;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                margin: {
                    right: -10px;
                    left: -10px;
                    bottom: 30px;
                    top: 30px;
                }
                li {
                    -ms-flex: 0 0 33.3333%;
                    flex: 0 0 33.3333%;
                    max-width: 33.3333%;
                    padding: {
                        right: 10px;
                        left: 10px;
                    }
                    figure {
                        margin-bottom: 0;
                    }
                }
            }
        }
        .article-features-list {
            padding-left: 0;
            list-style-type: none;
            margin: {
                bottom: 15px;
                left: 20px;
            }
            li {
                margin-bottom: 12px;
                color: $paragraph-color;
                position: relative;
                padding-left: 20px;
                &::before {
                    background: $main-color;
                    height: 7px;
                    width: 7px;
                    content: '';
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    border-radius: 50%;
                    position: absolute;
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
    .article-footer {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: {
            top: 15px;
            bottom: 15px;
        }
        border: {
            top: 1px solid #eeeeee;
            bottom: 1px solid #eeeeee;
        }
        margin: {
            top: 30px;
        }
        .article-tags {
            -ms-flex: 0 0 50%;
            -webkit-box-flex: 0;
            flex: 0 0 50%;
            max-width: 50%;
            span {
                display: inline-block;
                color: $black-color;
                font-size: 20px;
                margin-right: 5px;
                position: relative;
                top: 2px;
            }
            a {
                display: inline-block;
                color: #818181;
                &:hover {
                    color: $main-color;
                }
            }
        }
        .article-share {
            -ms-flex: 0 0 50%;
            -webkit-box-flex: 0;
            flex: 0 0 50%;
            max-width: 50%;
            .social {
                padding-left: 0;
                list-style-type: none;
                text-align: right;
                margin: {
                    bottom: 0;
                }
                li {
                    display: inline-block;
                    a {
                        color: $black-color;
                        background-color: #f7f7f7;
                        width: 33px;
                        height: 33px;
                        line-height: 33px;
                        text-align: center;
                        border-radius: 50%;
                        font-size: 13px;
                        &:hover {
                            color: $white-color;
                            background-color: $main-color;
                        }
                    }
                }
            }
        }
    }
}

blockquote,
.blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 50px !important;
    position: relative;
    text-align: center;
    z-index: 1;
    font-family: $optional-font-family;
    margin: {
        bottom: 20px;
        top: 20px;
    }
    p {
        color: $black-color;
        line-height: 1.6;
        margin-bottom: 0;
        font: {
            style: italic;
            weight: 600;
            size: 20px;
        }
    }
    cite {
        display: none;
    }
    &::before {
        color: #efefef;
        content: "\f10d";
        position: absolute;
        left: 50px;
        top: -60px;
        z-index: -1;
        font: {
            family: "Font Awesome 5 Free";
            size: 140px;
            weight: 900;
        }
    }
}

.comments-area {
    margin-top: 30px;
    .comments-title {
        line-height: initial;
        margin: {
            bottom: 30px;
        }
        font: {
            size: 23px;
            weight: 700;
        }
    }
    ol,
    ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }
    .comment-list {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
    }
    .children {
        margin-left: 20px;
    }
    .comment-body {
        border-bottom: 1px solid #eeeeee;
        padding-left: 65px;
        color: $black-color;
        font-size: 14px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        .reply {
            margin-top: 15px;
            a {
                border: 1px solid #eeeeee;
                color: $paragraph-color;
                display: inline-block;
                padding: 5px 20px;
                border-radius: 30px;
                text-transform: uppercase;
                font: {
                    size: 12px;
                    weight: 700;
                    family: $optional-font-family;
                }
                &:hover {
                    color: $white-color;
                    background-color: $main-color;
                    border-color: $main-color;
                }
            }
        }
    }
    .comment-meta {
        margin-bottom: .8em;
    }
    .comment-author {
        font-size: 15px;
        margin-bottom: 0.4em;
        position: relative;
        z-index: 2;
        .avatar {
            height: 50px;
            left: -65px;
            position: absolute;
            width: 50px;
        }
        .fn {
            font: {
                weight: 700;
                family: $optional-font-family;
            }
        }
        .says {
            display: none;
        }
    }
    .comment-metadata {
        color: $paragraph-color;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font: {
            size: 10px;
            weight: 600;
        }
        a {
            color: $paragraph-color;
            &:hover {
                color: $main-color;
            }
        }
    }
    .comment-content {
        p {
            font-size: 13px;
        }
    }
    .comment-respond {
        .comment-reply-title {
            margin-bottom: 0;
            font: {
                size: 23px;
                weight: 700;
            }
            #cancel-comment-reply-link {
                font-size: 15px;
                display: inline-block;
            }
        }
        .comment-form {
            overflow: hidden;
        }
        .comment-notes {
            font-size: 13px;
            margin: {
                bottom: 0;
                top: 10px;
            }
            .required {
                color: red;
            }
        }
        .comment-form-comment {
            margin-top: 15px;
            float: left;
            width: 100%;
        }
        label {
            display: block;
            margin-bottom: 5px;
            color: $black-color;
            font: {
                weight: 600;
                family: $optional-font-family;
            }
        }
        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 {
            display: block;
            width: 100%;
            background-color: $white-color;
            border: 1px solid #eeeeee;
            padding: 0.625em 0.7375em;
            outline: 0;
            transition: $transition;
            &:focus {
                border-color: $main-color;
            }
        }
        .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;
            input {
                position: absolute;
                left: 0;
                top: 6px;
            }
            label {
                display: inline-block;
                margin: 0;
                color: $paragraph-color;
                font-weight: normal;
            }
        }
        .form-submit {
            float: left;
            width: 100%;
            input {
                background-color: $main-color;
                border: none;
                color: $white-color;
                padding: 10.5px 25px;
                display: inline-block;
                cursor: pointer;
                outline: 0;
                border-radius: 0;
                text-transform: uppercase;
                transition: $transition;
                font: {
                    family: $optional-font-family;
                    weight: 700;
                    size: 14px;
                }
                &:hover,
                &:focus {
                    color: $white-color;
                    background-color: $optional-color;
                }
            }
        }
    }
}


/*================================================
Free Trial Area CSS
=================================================*/

.free-trial-area {
    position: relative;
    z-index: 1;
    &::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 68%;
        height: 100%;
        z-index: 1;
        background: {
            image: url(../../assets/img/2.png);
            position: left top;
            size: cover;
            repeat: no-repeat;
        }
    }
}

.free-trial-content {
    position: relative;
    z-index: 2;
    max-width: 555px;
    padding-left: 30px;
    padding: {
        top: 110px;
        bottom: 110px;
    }
    h2 {
        margin-bottom: 0;
        color: $white-color;
        font: {
            size: 40px;
            weight: 700;
        }
    }
    form {
        position: relative;
        margin: {
            top: 25px;
            bottom: 10px;
        }
        .input-newsletter {
            display: block;
            width: 72%;
            height: 45px;
            color: $white-color;
            border: none;
            outline: 0;
            background-color: $black-color;
            border-radius: 30px;
            padding-left: 20px;
            &::placeholder {
                color: #d5d5d5;
            }
        }
        button {
            position: absolute;
            right: 0;
            top: 0;
            height: 45px;
            border: none;
            padding: 0 30px;
            line-height: 45px;
            background-color: $white-color;
            border-radius: 30px;
            transition: $transition;
            color: $main-color;
            font: {
                family: $optional-font-family;
                size: 16px;
                weight: 600;
            }
            &:hover {
                background-color: $optional-color;
                color: $white-color;
            }
        }
    }
    p {
        color: $white-color;
        margin-bottom: 0;
        max-width: 350px;
    }
    &::after {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        content: '';
        background-color: $main-color;
        z-index: -1;
        display: none;
    }
}

.free-trial-image {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    background: {
        position: center center;
        size: cover;
        repeat: no-repeat;
        image: url(../../assets/img/woman2.jpg);
    }
    img {
        display: none;
    }
}

.free-trial-section {
    position: relative;
    z-index: 1;
    &::before {
        width: 40%;
        height: 100%;
        z-index: -1;
        position: absolute;
        right: 0;
        top: 0;
        background: linear-gradient(to left bottom, #f8f9fd, #fafafd, #fcfcfe, #fdfdfe, #ffffff);
        content: '';
    }
}

.free-trial-img {
    margin-left: -15px;
    text-align: center;
}

.free-trial-text {
    padding-left: 15px;
    h2 {
        margin-bottom: 0;
        font: {
            size: 40px;
            weight: 700;
        }
    }
    form {
        position: relative;
        margin: {
            top: 25px;
            bottom: 10px;
        }
        .input-newsletter {
            display: block;
            width: 72%;
            height: 45px;
            color: $white-color;
            border: none;
            outline: 0;
            background-color: $black-color;
            border-radius: 30px;
            padding-left: 20px;
            &::placeholder {
                color: #d5d5d5;
                transition: $transition;
            }
            &:focus {
                &::placeholder {
                    color: transparent;
                }
            }
        }
        button {
            position: absolute;
            right: 0;
            top: 0;
            height: 45px;
            border: none;
            padding: 0 30px;
            line-height: 45px;
            background-color: $main-color;
            border-radius: 30px;
            transition: $transition;
            color: $white-color;
            font: {
                family: $optional-font-family;
                size: 16px;
                weight: 600;
            }
            &:hover {
                background-color: $optional-color;
                color: $white-color;
            }
        }
    }
    p {
        margin-bottom: 0;
    }
}


/*================================================
Page Title Area CSS
=================================================*/

.page-title-area {
    position: relative;
    z-index: 1;
    padding: {
        top: 210px;
        bottom: 140px;
    }
    background: {
        color: #000000;
        position: center center;
        size: cover;
        repeat: no-repeat;
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: #021534;
        opacity: .60;
    }
    &.item-bg1 {
        background: {
            image: url(../../assets/img/page-title-bg1.jpg);
        }
    }
    &.item-bg2 {
        background: {
            image: url(../../assets/img/page-title-bg2.jpg);
        }
    }
    &.item-bg3 {
        background: {
            image: url(../../assets/img/bg.jpg);
        }
    }
}

.page-title-content {
    h2 {
        margin-bottom: 0;
        color: $white-color;
        font: {
            size: 40px;
            weight: 700;
        }
    }
    ul {
        padding-left: 0;
        list-style-type: none;
        font-family: $optional-font-family;
        margin: {
            top: 10px;
            bottom: 0;
        }
        li {
            display: inline-block;
            color: $white-color;
            margin: {
                right: 10px;
                left: 10px;
            }
            position: relative;
            font: {
                weight: 600;
                size: 16px;
            }
            a {
                color: $main-color;
                &:hover {
                    color: $main-color;
                }
            }
            &::before {
                content: "\f054";
                position: absolute;
                right: -15px;
                top: 6px;
                font: {
                    weight: 900;
                    family: "Font Awesome 5 Free";
                    size: 10px;
                }
            }
            &:last-child {
                margin-right: 0;
                &::before {
                    display: none;
                }
            }
            &:first-child {
                margin-left: 0;
            }
        }
    }
}


/*================================================
Pagination Area CSS
=================================================*/

.pagination-area {
    margin-top: 40px;
    text-align: center;
    font-family: $optional-font-family;
    .page-numbers {
        width: 40px;
        height: 40px;
        margin: 0 3px;
        display: inline-block;
        background-color: $white-color;
        line-height: 40px;
        color: $black-color;
        box-shadow: 0 2px 10px 0 #d8dde6;
        font: {
            size: 16px;
            weight: 700;
        }
        &.current,
        &:hover,
        &:focus {
            background: $main-color;
            color: $white-color;
            box-shadow: unset;
        }
    }
}


/*================================================
Sidebar Area CSS
=================================================*/

.widget-area {
    .widget {
        margin-top: 30px;
        &:first-child {
            margin-top: 0;
        }
        .widget-title {
            border-bottom: 1px solid #eeeeee;
            padding-bottom: 10px;
            margin-bottom: 20px;
            text-transform: capitalize;
            position: relative;
            font: {
                weight: 700;
                size: 20px;
            }
            &::before {
                content: '';
                position: absolute;
                background: $main-color;
                bottom: -1px;
                left: 0;
                width: 50px;
                height: 1px;
            }
        }
    }
    .widget_search {
        box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
        background-color: $white-color;
        padding: 15px;
        form {
            position: relative;
            label {
                display: block;
                margin-bottom: 0;
            }
            .screen-reader-text {
                display: none;
            }
            .search-field {
                background-color: transparent;
                height: 50px;
                padding: 6px 15px;
                border: 1px solid #eeeeee;
                width: 100%;
                display: block;
                outline: 0;
                transition: $transition;
                &:focus {
                    border-color: $main-color;
                }
            }
            button {
                position: absolute;
                right: 0;
                outline: 0;
                bottom: 0;
                height: 50px;
                width: 50px;
                z-index: 1;
                border: none;
                color: $white-color;
                background-color: $main-color;
                transition: $transition;
                &:hover {
                    background-color: $optional-color;
                    color: $white-color;
                }
            }
        }
    }
    .widget_sparsity_posts_thumb {
        position: relative;
        overflow: hidden;
        .item {
            overflow: hidden;
            margin-bottom: 15px;
            &:last-child {
                margin-bottom: 0;
            }
            .thumb {
                float: left;
                height: 80px;
                overflow: hidden;
                position: relative;
                width: 80px;
                margin-right: 15px;
                .fullimage {
                    width: 80px;
                    height: 80px;
                    display: inline-block;
                    background: {
                        size: cover !important;
                        repeat: no-repeat;
                        position: center center !important;
                    }
                    &.bg1 {
                        background-image: url(../../assets/img/blog/1.jpg);
                    }
                    &.bg2 {
                        background-image: url(../../assets/img/blog/2.jpg);
                    }
                    &.bg3 {
                        background-image: url(../../assets/img/blog/3.jpg);
                    }
                }
            }
            .info {
                overflow: hidden;
                time {
                    display: block;
                    color: $paragraph-color;
                    text-transform: uppercase;
                    margin: {
                        bottom: 4px;
                    }
                    font: {
                        size: 11px;
                    }
                }
                .title {
                    margin-bottom: 0;
                    line-height: 1.4;
                    font: {
                        size: 20px;
                        weight: 700;
                    }
                }
            }
        }
    }
    .widget_recent_entries {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;
            li {
                position: relative;
                margin-bottom: 12px;
                color: $paragraph-color;
                padding-left: 14px;
                line-height: 1.5;
                font: {
                    weight: 600;
                    size: 14.5px;
                    family: $optional-font-family;
                }
                &:last-child {
                    margin-bottom: 0;
                }
                &::before {
                    background: $main-color;
                    position: absolute;
                    height: 7px;
                    width: 7px;
                    content: '';
                    left: 0;
                    top: 7px;
                }
                a {
                    color: $paragraph-color;
                    &:hover {
                        color: $main-color;
                    }
                }
                .post-date {
                    display: block;
                    font-size: 13px;
                    color: $paragraph-color;
                    margin-top: 4px;
                }
            }
        }
    }
    .widget_recent_comments {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;
            li {
                position: relative;
                margin-bottom: 12px;
                color: $black-color;
                padding-left: 14px;
                line-height: 1.5;
                font: {
                    size: 14.5px;
                    weight: 600;
                    family: $optional-font-family;
                }
                &:last-child {
                    margin-bottom: 0;
                }
                &::before {
                    background: $main-color;
                    height: 7px;
                    width: 7px;
                    content: '';
                    left: 0;
                    top: 7px;
                    position: absolute;
                }
                span {
                    display: inline-block;
                }
                a {
                    color: $paragraph-color;
                    display: inline-block;
                    &:hover {
                        color: $main-color;
                    }
                }
            }
        }
    }
    .widget_archive {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;
            li {
                position: relative;
                margin-bottom: 12px;
                padding-left: 14px;
                color: $paragraph-color;
                font: {
                    size: 14.5px;
                    weight: 600;
                    family: $optional-font-family;
                }
                &:last-child {
                    margin-bottom: 0;
                }
                &::before {
                    background: $main-color;
                    height: 7px;
                    width: 7px;
                    content: '';
                    left: 0;
                    top: 7px;
                    position: absolute;
                }
                a {
                    color: $paragraph-color;
                    &:hover {
                        color: $main-color;
                    }
                }
            }
        }
    }
    .widget_categories {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;
            li {
                position: relative;
                margin-bottom: 12px;
                color: $paragraph-color;
                padding-left: 14px;
                font: {
                    size: 14.5px;
                    family: $optional-font-family;
                    weight: 600;
                }
                &:last-child {
                    margin-bottom: 0;
                }
                &::before {
                    background: $main-color;
                    height: 7px;
                    width: 7px;
                    content: '';
                    left: 0;
                    top: 7px;
                    position: absolute;
                }
                a {
                    color: $paragraph-color;
                    &:hover {
                        color: $main-color;
                    }
                }
                .post-count {
                    float: right;
                }
            }
        }
    }
    .widget_meta {
        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;
            li {
                position: relative;
                margin-bottom: 12px;
                color: $paragraph-color;
                padding-left: 14px;
                font: {
                    size: 14.5px;
                    family: $optional-font-family;
                    weight: 600;
                }
                &:last-child {
                    margin-bottom: 0;
                }
                &::before {
                    background: $main-color;
                    height: 7px;
                    width: 7px;
                    content: '';
                    left: 0;
                    top: 7px;
                    position: absolute;
                }
                a {
                    color: $paragraph-color;
                    &:hover {
                        color: $main-color;
                    }
                }
            }
        }
    }
    .widget_tag_cloud {
        .widget-title {
            margin-bottom: 12px;
        }
    }
    .tagcloud {
        a {
            display: inline-block;
            color: $paragraph-color;
            font: {
                weight: 600;
                size: 12.5px !important;
            }
            padding: 6px 13px;
            border: 1px dashed #eeeeee;
            margin: {
                top: 8px;
                right: 4px;
            }
            &:hover,
            &:focus {
                color: $white-color;
                background-color: $main-color;
                border-color: $main-color;
            }
        }
    }
}


/*================================================
404 Error Area CSS
=================================================*/

.error-area {
    height: 100vh;
}

.error-content {
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
    h3 {
        font: {
            size: 40px;
            weight: 700;
        }
        margin: {
            top: 30px;
            bottom: 17px;
        }
    }
    p {
        max-width: 520px;
        margin: 0 auto 20px;
    }
}


/*================================================
FAQ Area CSS
=================================================*/

.faq-content {
    .section-title {
        text-align: left;
        max-width: 100%;
        margin: {
            left: 0;
            right: 0;
            bottom: 20px;
        }
        p {
            max-width: 100%;
            margin: {
                left: 0;
                right: 0;
            }
        }
    }
}

.faq-accordion {
    .accordion {
        list-style-type: none;
        padding-left: 0;
        margin: {
            bottom: 0;
        }
        .accordion-item {
            display: block;
            box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
            background: $white-color;
            border: none;
            margin-bottom: 10px;
            &:last-child {
                margin-bottom: 0;
            }
        }
        .accordion-title {
            padding: 12px 20px 12px 51px;
            color: $black-color;
            position: relative;
            border-bottom: 1px solid transparent;
            margin-bottom: -1px;
            font: {
                size: 15px;
                weight: 700;
                family: $optional-font-family;
            }
            i {
                position: absolute;
                left: 0;
                top: 0;
                width: 40px;
                text-align: center;
                height: 100%;
                background: $main-color;
                color: $white-color;
                &::before {
                    position: absolute;
                    left: 0;
                    top: 50%;
                    right: 0;
                    transform: translateY(-50%);
                    font-size: 13px;
                }
            }
            &.active {
                border-bottom-color: #eeeeee;
                i {
                    &::before {
                        content: "\f068";
                    }
                }
            }
        }
        .accordion-content {
            display: none;
            position: relative;
            padding: 15px 15px;
            &.show {
                display: block;
            }
        }
    }
}

.faq-contact {
    margin-top: 110px;
}

.faq-contact-form {
    form {
        padding-left: 50px;
        .form-group {
            margin-bottom: 25px;
        }
        .form-control {
            background-color: $white-color;
            border: none;
            box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2);
            height: 50px;
            font: {
                family: $optional-font-family;
                size: 16px;
            }
        }
        .row {
            margin: {
                left: -7px;
                right: -7px;
            }
            .col-lg-12,
            .col-lg-6 {
                padding: {
                    left: 7px;
                    right: 7px;
                }
            }
        }
        textarea.form-control {
            height: auto;
            padding-top: 15px;
        }
        .btn {
            padding: 13px 35px 15px;
            font-size: 17px;
            box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
            &.disabled {
                cursor: not-allowed !important;
                &:hover,
                &:focus {
                    &::before {
                        opacity: 1;
                        visibility: visible;
                    }
                    &::after {
                        opacity: 0;
                        visibility: hidden;
                    }
                }
            }
        }
        .form-check {
            .form-check-input {
                position: relative;
                top: 1px;
            }
        }
        .form-check-label {
            font-size: 15px;
            font-weight: 500;
            color: $paragraph-color;
            a {
                display: inline-block;
                color: $paragraph-color;
                &:hover {
                    color: $main-color;
                }
            }
        }
        .help-block {
            ul {
                padding-left: 0;
                list-style-type: none;
                margin: {
                    top: 5px;
                    bottom: 0;
                }
                li {
                    color: red;
                }
            }
        }
        #msgSubmit {
            margin-bottom: 0;
            &.text-danger,
            &.text-success {
                margin-top: 8px;
                font: {
                    size: 23px;
                    weight: 700;
                }
            }
        }
    }
}


/*================================================
Coming Soon Area CSS
=================================================*/

.coming-soon-area {
    position: relative;
    z-index: 1;
    .coming-soon-content {
        height: 100vh;
        position: relative;
        padding: {
            left: 100px;
            right: 100px;
        }
        .logo {
            position: absolute;
            left: 100px;
            top: 30px;
        }
        h3 {
            line-height: 1.3;
            margin: {
                bottom: 25px;
            }
            font: {
                size: 40px;
                weight: 700;
            }
        }
        form {
            max-width: 520px;
            .form-group {
                margin-bottom: 15px;
            }
            .form-control {
                height: 50px;
                border: none;
                box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2);
            }
            .btn {
                display: block;
                width: 100%;
                padding: 15px 28px;
                box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2);
            }
            p {
                margin: {
                    bottom: 0;
                    top: 15px;
                }
            }
        }
        .social {
            position: absolute;
            left: 100px;
            bottom: 30px;
            text-align: center;
            ul {
                padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;
                li {
                    display: inline-block;
                    margin: 0 2px;
                    a {
                        width: 35px;
                        height: 35px;
                        line-height: 37px;
                        border-radius: 50%;
                        background-color: #dddddd;
                        color: $black-color;
                        font-size: 14px;
                        &.twitter {
                            background-color: #1da1f2;
                            color: $white-color;
                        }
                        &.youtube {
                            background-color: #ff0000;
                            color: $white-color;
                        }
                        &.facebook {
                            background-color: #3b5998;
                            color: $white-color;
                        }
                        &.linkedin {
                            background-color: #0077b5;
                            color: $white-color;
                        }
                        &.instagram {
                            background-color: #c13584;
                            color: $white-color;
                        }
                        &:hover {
                            background-color: $main-color;
                            color: $white-color;
                        }
                    }
                }
            }
        }
    }
    .coming-soon-time {
        width: 100%;
        height: 100%;
        position: relative;
        text-align: center;
        z-index: 1;
        background: {
            image: url(../../assets/img/coming-soon-bg.jpg);
            position: center center;
            size: cover;
            repeat: no-repeat;
        }
        img {
            display: none;
        }
        #timer {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            max-width: 420px;
            margin: {
                left: auto;
                right: auto;
            }
            div {
                width: 155px;
                height: 155px;
                border: 1px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                display: inline-block;
                color: $white-color;
                line-height: initial;
                padding-top: 37px;
                margin: {
                    right: 15px;
                    left: 15px;
                    bottom: 15px;
                    top: 15px;
                }
                font: {
                    size: 45px;
                    weight: 700;
                    family: $optional-font-family;
                }
                span {
                    text-transform: uppercase;
                    display: block;
                    margin-top: 3px;
                    font: {
                        size: 14px;
                        weight: 600;
                    }
                }
            }
        }
        &::before {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: #000000;
            opacity: .7;
            z-index: -1;
        }
    }
}


/*================================================
Shop Area CSS
=================================================*/

.woocommerce-topbar {
    margin-bottom: 40px;
    .woocommerce-result-count {
        p {
            font: {
                family: $optional-font-family;
                size: 16px;
            }
        }
    }
    .woocommerce-topbar-ordering {
        text-align: right;
        .nice-select {
            background-color: $white-color;
            color: $paragraph-color;
            border-radius: 0;
            border: none;
            box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
            float: unset;
            height: unset;
            line-height: initial;
            padding: 15px 35px 15px 20px;
            font: {
                family: $optional-font-family;
                size: 16px;
            }
            .list {
                background-color: $white-color;
                box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
                border-radius: 0;
                margin-top: 0;
                width: 100%;
                padding: {
                    top: 10px;
                    bottom: 10px;
                }
                .option {
                    transition: $transition;
                    font: {
                        size: 15px;
                    }
                    padding: {
                        left: 20px;
                        right: 20px;
                    }
                    &:hover {
                        background-color: $main-color !important;
                        color: $white-color;
                    }
                    &.selected {
                        background-color: transparent;
                    }
                }
            }
            &:after {
                right: 20px;
            }
        }
    }
}

.single-product-box {
    margin-bottom: 30px;
    text-align: center;
    background-color: $white-color;
    box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
    .product-image {
        overflow: hidden;
        position: relative;
        text-align: left;
        a {
            img {
                transition: $transition;
                &:nth-child(2) {
                    position: absolute;
                    left: 0;
                    top: 0;
                    opacity: 0;
                    visibility: hidden;
                    margin-top: 20px;
                }
            }
        }
        .add-to-cart-btn {
            position: absolute;
            bottom: -46px;
            left: 0;
            width: 100%;
            background-color: $black-color;
            color: $white-color;
            padding: 12px 20px;
            text-transform: uppercase;
            opacity: 0;
            visibility: hidden;
            font: {
                family: $optional-font-family;
                size: 15px;
                weight: 600;
            }
            i {
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }
            &:hover {
                background-color: $main-color;
                color: $white-color;
            }
        }
        .sale-btn {
            position: absolute;
            left: 20px;
            top: 20px;
            background-color: red;
            color: $white-color;
            width: 55px;
            height: 55px;
            line-height: 55px;
            text-align: center;
            border-radius: 50%;
            text-transform: uppercase;
            font: {
                family: $optional-font-family;
                weight: 600;
            }
        }
    }
    .product-content {
        padding: 25px;
        h3 {
            margin-bottom: 8px;
            font: {
                size: 25px;
                weight: 700;
            }
        }
        .price {
            color: $black-color;
            font: {
                family: $optional-font-family;
                weight: 700;
            }
            .old {
                text-decoration: line-through;
                color: #828893;
                font: {
                    size: 13px;
                }
            }
        }
        .rating {
            margin-top: 8px;
            color: #ffb708;
            i {
                margin-right: -1px;
            }
        }
    }
    &:hover {
        .product-image {
            a {
                img {
                    &:nth-child(2) {
                        opacity: 1;
                        visibility: visible;
                        margin-top: 0;
                    }
                }
            }
            .add-to-cart-btn {
                bottom: 0;
                opacity: 1;
                visibility: visible;
            }
        }
    }
}


/*================================================
Product Details Area CSS
=================================================*/

.product-details-image {
    img {
        border-radius: 5px;
    }
}

.product-details-desc {
    h3 {
        margin-bottom: 15px;
        font: {
            size: 30px;
            weight: 700;
        }
    }
    p {
        margin-bottom: 0;
    }
    .price {
        margin-bottom: 15px;
        color: $black-color;
        font: {
            family: $optional-font-family;
            weight: 700;
        }
        .old-price {
            text-decoration: line-through;
            color: #828893;
            font: {
                size: 13px;
            }
        }
    }
    .product-review {
        margin-bottom: 15px;
        .rating {
            display: inline-block;
            padding-right: 5px;
            font-size: 14px;
            i {
                color: #ffba0a;
            }
        }
        .rating-count {
            display: inline-block;
            color: $black-color;
            border-bottom: 1px solid $black-color;
            line-height: initial;
            &:hover {
                color: $main-color;
                border-color: $main-color;
            }
        }
    }
    .product-add-to-cart {
        margin-top: 20px;
        .input-counter {
            max-width: 130px;
            min-width: 130px;
            margin-right: 10px;
            text-align: center;
            display: inline-block;
            position: relative;
            span {
                position: absolute;
                top: 0;
                background-color: transparent;
                cursor: pointer;
                color: #d0d0d0;
                width: 40px;
                height: 100%;
                line-height: 48px;
                transition: $transition;
                &.minus-btn {
                    left: 0;
                }
                &.plus-btn {
                    right: 0;
                }
                &:hover {
                    color: $main-color;
                }
            }
            input {
                height: 45px;
                color: $black-color;
                outline: 0;
                display: block;
                border: none;
                background-color: #f8f8f8;
                text-align: center;
                width: 100%;
                font: {
                    size: 17px;
                    weight: 600;
                }
                &::placeholder {
                    color: $black-color;
                }
            }
        }
        .btn {
            height: 45px;
            top: -2px;
            position: relative;
            padding: {
                top: 0;
                bottom: 0;
            }
            i {
                margin-right: 2px;
            }
        }
    }
    .buy-checkbox-btn {
        margin-top: 20px;
        input {
            display: none;
        }
        .cbx {
            margin: auto;
            -webkit-user-select: none;
            user-select: none;
            cursor: pointer;
            span {
                display: inline-block;
                vertical-align: middle;
                transform: translate3d(0, 0, 0);
                &:first-child {
                    position: relative;
                    width: 18px;
                    height: 18px;
                    border-radius: 3px;
                    transform: scale(1);
                    vertical-align: middle;
                    border: 1px solid #ebebeb;
                    transition: all 0.2s ease;
                    transition: $transition;
                    svg {
                        position: absolute;
                        top: 3px;
                        left: 2px;
                        fill: none;
                        stroke: $white-color;
                        stroke-width: 2;
                        stroke-linecap: round;
                        stroke-linejoin: round;
                        stroke-dasharray: 16px;
                        stroke-dashoffset: 16px;
                        transition: all 0.3s ease;
                        transition-delay: 0.1s;
                        transform: translate3d(0, 0, 0);
                        transition: $transition;
                    }
                    &:before {
                        content: "";
                        width: 100%;
                        height: 100%;
                        background: $black-color;
                        display: block;
                        transform: scale(0);
                        opacity: 1;
                        border-radius: 50%;
                        transition: $transition;
                    }
                }
                &:last-child {
                    padding-left: 4px;
                    color: $paragraph-color;
                }
            }
            &:hover {
                span {
                    &:first-child {
                        border-color: $black-color;
                    }
                }
            }
        }
        .inp-cbx:checked+.cbx span:first-child {
            background: $black-color;
            border-color: $black-color;
            animation: wave 0.4s ease;
        }
        .inp-cbx:checked+.cbx span:first-child svg {
            stroke-dashoffset: 0;
        }
        .inp-cbx:checked+.cbx span:first-child:before {
            transform: scale(3.5);
            opacity: 0;
            transition: all 0.6s ease;
        }
        .item {
            &:not(:first-child) {
                margin-top: 15px;
            }
        }
        .btn {
            display: block;
            width: 100%;
        }
        .btn-light {
            background-color: #f2f2f2;
        }
    }
    .custom-payment-options {
        margin-top: 20px;
        span {
            display: block;
            color: $paragraph-color;
            margin-bottom: 8px;
        }
        .payment-methods {
            a {
                display: inline-block;
                img {
                    width: 40px;
                }
            }
        }
    }
}

.tab {
    .tabs_item {
        display: none;
        &:first-child {
            display: block;
        }
    }
}

.products-details-tab {
    margin-top: 50px;
    .tabs {
        list-style-type: none;
        margin-bottom: -1px;
        padding: {
            left: 0;
        }
        li {
            display: inline-block;
            line-height: initial;
            margin-right: 5px;
            a {
                display: inline-block;
                position: relative;
                text-transform: uppercase;
                color: $black-color;
                border: 1px dashed #eeeeee;
                padding: {
                    top: 15px;
                    bottom: 15px;
                    right: 30px;
                    left: 48px;
                }
                font: {
                    weight: 700;
                    family: $optional-font-family;
                }
                .dot {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    left: 30px;
                    width: 12px;
                    height: 12px;
                    border: 1px solid $black-color;
                    transition: $transition;
                    border-radius: 50%;
                    &::before {
                        position: absolute;
                        top: 0;
                        content: '';
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: $black-color;
                        margin: 2px;
                        border-radius: 50%;
                        transition: $transition;
                    }
                }
                &:hover,
                &:focus {
                    color: $white-color;
                    background-color: $main-color;
                    border-color: $main-color;
                    .dot {
                        border-color: $white-color;
                        &::before {
                            background: $white-color;
                        }
                    }
                }
            }
            &.current {
                a {
                    color: $white-color;
                    background-color: $main-color;
                    border-color: $main-color;
                    .dot {
                        border-color: $white-color;
                        &::before {
                            background: $white-color;
                        }
                    }
                }
            }
            &:last-child {
                margin-right: 0;
            }
        }
    }
    .tab_content {
        border: 1px dashed #eeeeee;
        padding: 30px;
        .tabs_item {
            .products-details-tab-content {
                p {
                    margin-bottom: 20px;
                    &:last-child {
                        margin-bottom: 0;
                    }
                }
                .additional-information {
                    padding-left: 0;
                    margin-bottom: 0;
                    list-style-type: none;
                    text-align: left;
                    li {
                        border: 1px solid #eeeeee;
                        border-bottom: none;
                        padding: 10px 15px;
                        color: $paragraph-color;
                        &:last-child {
                            border-bottom: 1px solid #eeeeee;
                            ;
                        }
                        span {
                            display: inline-block;
                            width: 30%;
                            color: $black-color;
                            font: {
                                family: $optional-font-family;
                                size: 16px;
                                weight: 600;
                            }
                        }
                    }
                }
                h3 {
                    margin-bottom: 15px;
                    font: {
                        size: 23px;
                        weight: 700;
                    }
                }
                .product-review-form {
                    .review-title {
                        position: relative;
                        .rating {
                            display: inline-block;
                            .fas.fa-star {
                                color: #ffba0a;
                            }
                            i {
                                color: #ebebeb;
                                font-size: 14px;
                            }
                        }
                        p {
                            margin-bottom: 0;
                            display: inline-block;
                            padding-left: 5px;
                            line-height: initial;
                        }
                        .btn {
                            position: absolute;
                            right: 0;
                            bottom: 0;
                        }
                    }
                    .review-comments {
                        margin-top: 35px;
                        .review-item {
                            margin-top: 30px;
                            position: relative;
                            padding-right: 200px;
                            border-top: 1px dashed #eeeeee;
                            padding-top: 30px;
                            .rating {
                                .fas.fa-star {
                                    color: #ffba0a;
                                }
                                i {
                                    font-size: 14px;
                                    color: #ebebeb;
                                }
                            }
                            h3 {
                                font-size: 18px;
                                margin: {
                                    top: 10px;
                                    bottom: 10px;
                                }
                            }
                            span {
                                margin-bottom: 10px;
                                font-size: 13px;
                                display: block;
                                strong {
                                    font-weight: 600;
                                }
                            }
                            p {
                                margin-bottom: 0;
                            }
                            .review-report-link {
                                position: absolute;
                                right: 0;
                                color: $paragraph-color;
                                top: 40px;
                                text-decoration: underline;
                                &:hover {
                                    color: $main-color;
                                }
                            }
                        }
                    }
                    .review-form {
                        margin-top: 30px;
                        form {
                            .form-group {
                                margin-bottom: 20px;
                                label {
                                    color: $paragraph-color;
                                    text-transform: uppercase;
                                    font: {
                                        size: 14px;
                                        weight: 600;
                                        family: $optional-font-family;
                                    }
                                }
                                textarea {
                                    padding-top: 15px;
                                    &.form-control {
                                        min-height: 120px;
                                    }
                                }
                            }
                            .btn {
                                margin-top: 0;
                            }
                        }
                    }
                }
            }
        }
    }
}

.related-products {
    margin-top: 70px;
    .section-title {
        margin-bottom: 10px;
    }
    .single-product-box {
        margin: {
            bottom: 0;
            top: 30px;
        }
    }
}


/*================================================
Cart Area CSS
=================================================*/

.cart-table {
    table {
        margin-bottom: 0;
        thead {
            tr {
                th {
                    border-bottom-width: 0px;
                    vertical-align: middle;
                    padding: 25px 0 25px;
                    text-transform: uppercase;
                    border: none;
                    font: {
                        weight: 700;
                        family: $optional-font-family;
                        size: 15px;
                    }
                }
            }
        }
        tbody {
            tr {
                td {
                    vertical-align: middle;
                    color: $paragraph-color;
                    padding: {
                        left: 0;
                        right: 0;
                    }
                    border: {
                        color: #eaedff;
                        left: none;
                        right: none;
                    }
                    &.product-thumbnail {
                        a {
                            display: block;
                            img {
                                width: 80px;
                            }
                        }
                    }
                    &.product-name {
                        font: {
                            family: $optional-font-family;
                            size: 15px;
                        }
                        a {
                            color: $paragraph-color;
                            font-weight: 600;
                            display: inline-block;
                            &:hover {
                                color: $optional-color;
                            }
                        }
                    }
                    &.product-price {
                        span {
                            font-weight: 500;
                        }
                    }
                    &.product-subtotal {
                        .remove {
                            color: red;
                            float: right;
                            position: relative;
                            top: -1px;
                        }
                    }
                    &.product-quantity {
                        .input-counter {
                            max-width: 130px;
                            min-width: 130px;
                            text-align: center;
                            display: inline-block;
                            position: relative;
                            span {
                                position: absolute;
                                top: 0;
                                background-color: transparent;
                                cursor: pointer;
                                color: #d0d0d0;
                                width: 40px;
                                height: 100%;
                                line-height: 48px;
                                transition: $transition;
                                &.minus-btn {
                                    left: 0;
                                }
                                &.plus-btn {
                                    right: 0;
                                }
                                &:hover {
                                    color: $optional-color;
                                }
                            }
                            input {
                                height: 45px;
                                color: $black-color;
                                outline: 0;
                                display: block;
                                border: none;
                                background-color: #f8f8f8;
                                text-align: center;
                                width: 100%;
                                font: {
                                    size: 17px;
                                    weight: 600;
                                }
                                &::placeholder {
                                    color: $black-color;
                                }
                            }
                        }
                    }
                    &.product-subtotal {
                        overflow: hidden;
                        span {
                            font-weight: 500;
                        }
                    }
                }
            }
        }
    }
}

.cart-buttons {
    margin-top: 30px;
    text-align: right;
    .shopping-coupon-code {
        position: relative;
        max-width: 430px;
        button {
            position: absolute;
            right: 0;
            top: 0;
            height: 45px;
            background: $main-color;
            color: $white-color;
            border: none;
            padding: 0 25px;
            font-weight: 700;
            outline: 0;
            transition: $transition;
            &:hover {
                background-color: $optional-color;
            }
        }
    }
}

.cart-totals {
    background: $white-color;
    padding: 40px;
    max-width: 620px;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    margin: {
        left: auto;
        top: 50px;
    }
    h3 {
        margin-bottom: 25px;
        font: {
            size: 23px;
            weight: 700;
        }
    }
    ul {
        padding: 0;
        margin: 0 0 25px;
        list-style-type: none;
        li {
            border: 1px solid #eaedff;
            padding: 20px;
            color: $black-color;
            overflow: hidden;
            font: {
                weight: 700;
                family: $optional-font-family;
                size: 15px;
            }
            &:first-child {
                border: {
                    bottom: none;
                }
            }
            &:last-child {
                border: {
                    top: none;
                }
            }
            span {
                float: right;
                color: $paragraph-color;
                font: {
                    weight: normal;
                    family: $main-font-family;
                    size: 14px;
                }
            }
        }
    }
}


/*================================================
Checkout Area CSS
=================================================*/

.user-actions {
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    background: $white-color;
    padding: 18px 20px 15px;
    margin-bottom: 65px;
    border-top: 3px solid $main-color;
    position: relative;
    &::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: -35px;
        width: 100%;
        height: 1px;
        background: #eeeeee;
    }
    i {
        color: $main-color;
        margin-right: 2px;
    }
    span {
        display: inline-block;
        font-weight: 600;
        color: $main-color;
        a {
            display: inline-block;
            color: $black-color;
            &:hover,
            &:focus {
                color: $main-color;
            }
        }
    }
}

.checkout-area {
    .title {
        margin-bottom: 25px;
        font: {
            size: 23px;
            weight: 700;
        }
    }
}

.billing-details {
    .form-group {
        margin-bottom: 20px;
        label {
            display: block;
            color: $paragraph-color;
            margin-bottom: 7px;
            font: {
                size: 14px;
                weight: 600;
                family: $optional-font-family;
            }
            .required {
                color: red;
            }
        }
        .nice-select {
            float: unset;
            line-height: 45px;
            color: $paragraph-color;
            font-weight: 600;
            font-size: 13px;
            padding: {
                top: 0;
                bottom: 0;
            }
            .list {
                background-color: $white-color;
                box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
                border-radius: 0;
                margin-top: 0;
                width: 100%;
                padding: {
                    top: 10px;
                    bottom: 10px;
                }
                .option {
                    transition: $transition;
                    padding: {
                        left: 20px;
                        right: 20px;
                    }
                    &:hover {
                        background-color: $optional-color !important;
                        color: $white-color;
                    }
                    &.selected {
                        background-color: transparent;
                    }
                }
            }
            &:after {
                right: 20px;
            }
        }
        textarea {
            padding-top: 13px;
            height: 100px;
        }
    }
    .form-check {
        margin-bottom: 20px;
        font-family: $optional-font-family;
        .form-check-label {
            color: $paragraph-color;
        }
        label {
            position: relative;
            left: -3px;
            top: 1px;
            font: {
                size: 14px;
                weight: 600;
            }
        }
    }
    .col-lg-12 {
        &:last-child {
            .form-group {
                margin-bottom: 0;
            }
        }
    }
}

.order-details {
    .order-table {
        table {
            margin-bottom: 0;
            thead {
                tr {
                    th {
                        border-bottom-width: 0;
                        vertical-align: middle;
                        border-color: #eaedff;
                        padding: {
                            left: 20px;
                            top: 15px;
                            right: 20px;
                            bottom: 15px;
                        }
                        font: {
                            weight: 700;
                            family: $optional-font-family;
                            size: 15px;
                        }
                    }
                }
            }
            tbody {
                tr {
                    td {
                        vertical-align: middle;
                        color: $paragraph-color;
                        border-color: #eaedff;
                        padding: {
                            left: 20px;
                            right: 20px;
                        }
                        &.product-name {
                            font: {
                                family: $optional-font-family;
                                size: 15px;
                            }
                            a {
                                color: $paragraph-color;
                                display: inline-block;
                                font: {
                                    weight: 500;
                                }
                                &:hover {
                                    color: $main-color;
                                }
                            }
                        }
                        &.order-subtotal,
                        &.order-shipping,
                        &.total-price {
                            font: {
                                family: $optional-font-family;
                                size: 15px;
                            }
                            span {
                                color: $black-color;
                                font-weight: 600;
                            }
                        }
                        &.shipping-price,
                        &.order-subtotal-price,
                        &.product-subtotal {
                            font-weight: 600;
                        }
                    }
                }
            }
        }
    }
    .payment-box {
        background-color: $white-color;
        box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
        margin-top: 30px;
        padding: 30px;
        .payment-method {
            p {
                font: {
                    size: 14px;
                }
                [type="radio"] {
                    &:checked,
                    &:not(:checked) {
                        display: none;
                    }
                }
                [type="radio"] {
                    &:checked,
                    &:not(:checked) {
                        +label {
                            padding-left: 27px;
                            cursor: pointer;
                            display: block;
                            color: $black-color;
                            position: relative;
                            margin-bottom: 8px;
                            font: {
                                weight: 600;
                            }
                            &::before {
                                content: '';
                                position: absolute;
                                left: 0;
                                top: 3px;
                                width: 18px;
                                height: 18px;
                                border: 1px solid #dddddd;
                                border-radius: 50%;
                                background: $white-color;
                            }
                            &::after {
                                content: '';
                                width: 12px;
                                height: 12px;
                                background: $main-color;
                                position: absolute;
                                top: 6px;
                                left: 3px;
                                border-radius: 50%;
                                transition: $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);
                            }
                        }
                    }
                }
            }
        }
        .btn {
            &.order-btn {
                display: block;
                margin-top: 25px;
                box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2);
            }
        }
    }
}


/*================================================
Contact Area CSS
=================================================*/

.contact-area {
    .section-title {
        margin-bottom: 40px;
    }
}

.contact-form {
    form {
        padding-left: 50px;
        .form-group {
            margin-bottom: 25px;
        }
        .form-control {
            background-color: $white-color;
            border: none;
            box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2);
            height: 50px;
            font: {
                family: $optional-font-family;
                size: 16px;
            }
        }
        .row {
            margin: {
                left: -7px;
                right: -7px;
            }
            .col-lg-12,
            .col-lg-6 {
                padding: {
                    left: 7px;
                    right: 7px;
                }
            }
        }
        textarea.form-control {
            height: auto;
            padding-top: 15px;
        }
        .btn {
            padding: 13px 35px 15px;
            font-size: 17px;
            box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5);
            &.disabled {
                cursor: not-allowed !important;
                &:hover,
                &:focus {
                    &::before {
                        opacity: 1;
                        visibility: visible;
                    }
                    &::after {
                        opacity: 0;
                        visibility: hidden;
                    }
                }
            }
        }
        .form-check {
            .form-check-input {
                position: relative;
                top: 1px;
            }
        }
        .form-check-label {
            font-size: 15px;
            font-weight: 500;
            color: $paragraph-color;
            a {
                display: inline-block;
                color: $paragraph-color;
                &:hover {
                    color: $main-color;
                }
            }
        }
        .help-block {
            ul {
                padding-left: 0;
                list-style-type: none;
                margin: {
                    top: 5px;
                    bottom: 0;
                }
                li {
                    color: red;
                }
            }
        }
        #msgSubmit {
            margin-bottom: 0;
            &.text-danger,
            &.text-success {
                margin-top: 8px;
                font: {
                    size: 23px;
                    weight: 700;
                }
            }
        }
    }
}

.contact-info {
    text-align: center;
    margin-top: 60px;
    .contact-info-content {
        h3 {
            margin-bottom: 15px;
            font: {
                size: 23px;
                weight: 700;
            }
        }
        h2 {
            margin-bottom: 0;
            font: {
                size: 40px;
                weight: 700;
            }
            a {
                display: inline-block;
                color: $main-color;
                &:hover {
                    color: $optional-color;
                }
                &:not(:first-child) {
                    color: $optional-color;
                    &:hover {
                        color: $main-color;
                    }
                }
            }
            span {
                display: block;
                color: $paragraph-color;
                margin: {
                    top: 8px;
                    bottom: 0;
                }
                font: {
                    size: 18px;
                    weight: 500;
                }
            }
        }
        .social {
            padding-left: 0;
            list-style-type: none;
            margin: {
                bottom: 0;
                top: 20px;
            }
            li {
                display: inline-block;
                margin: 0 2px;
                a {
                    width: 35px;
                    height: 35px;
                    line-height: 35px;
                    border: 1px solid #dadada;
                    border-radius: 50%;
                    color: #aba5a5;
                    i {
                        font-size: 14px;
                    }
                    &:hover {
                        color: $white-color;
                        border-color: $main-color;
                        background-color: $main-color;
                    }
                }
            }
        }
    }
}


/*================================================
Footer Area CSS
=================================================*/

.footer-area {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    background-color: #15171a;
}

.single-footer-widget {
    margin-bottom: 30px;
    .logo {
        margin-bottom: 20px;
        p {
            color: $white-color;
            margin: {
                top: 18px;
                bottom: 0;
            }
        }
    }
    p {
        color: $white-color;
        font-size: 14px;
    }
    .social {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
        li {
            display: inline-block;
            transition: $transition;
            margin: {
                left: 1px;
                right: 1px;
            }
            a {
                width: 35px;
                height: 35px;
                background-color: $black-color;
                line-height: 35px;
                border-radius: 50%;
                color: $white-color;
                text-align: center;
                i {
                    &::before {
                        font-size: 13px;
                    }
                }
                &:hover {
                    background-color: $main-color;
                    color: $white-color;
                }
            }
        }
    }
    h3 {
        margin-bottom: 23px;
        color: $white-color;
        position: relative;
        padding-bottom: 6px;
        font: {
            size: 23px;
            weight: 700;
        }
        &::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: $main-color;
        }
    }
    .footer-services-list {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
        li {
            margin-bottom: 12px;
            color: $white-color;
            font-size: 16px;
            a {
                display: inline-block;
                color: $white-color;
                &:hover {
                    color: $main-color;
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .quick-links-list {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
        li {
            margin-bottom: 12px;
            color: $white-color;
            font-size: 14px;
            a {
                display: inline-block;
                color: $white-color;
                &:hover {
                    color: $main-color;
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .footer-contact-list {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
        li {
            margin-bottom: 6px;
            color: $white-color;
            font-size: 16px;
            line-height: 1.7;
            a {
                display: inline-block;
                color: $white-color;
                &:hover {
                    color: $main-color;
                }
            }
            span {
                font-weight: 700;
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}

.copyright-area {
    background-color: #000000;
    margin-top: 70px;
    padding: {
        top: 20px;
        bottom: 20px;
    }
    p {
        color: $white-color;
        a {
            display: inline-block;
            color: $white-color;
            font-weight: 600;
            &:hover {
                color: $main-color;
            }
        }
    }
    ul {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
        text-align: right;
        li {
            display: inline-block;
            margin-left: 15px;
            position: relative;
            color: $white-color;
            font-size: 16px;
            line-height: initial;
            a {
                color: $white-color;
                &:hover {
                    color: $main-color;
                }
            }
            &::before {
                content: '';
                width: 4px;
                height: 1px;
                background: $white-color;
                left: -11px;
                top: 50%;
                position: absolute;
                transform: translateY(-50%);
            }
            &:first-child {
                margin-left: 0;
                &::before {
                    display: none;
                }
            }
        }
    }
}

.circle-map {
    position: absolute;
    top: 20%;
    right: 18%;
    z-index: -1;
}

.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
    z-index: -1;
    .line {
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: rgba(255, 255, 255, 0.1);
        overflow: hidden;
        &::after {
            content: "";
            display: block;
            position: absolute;
            height: 15vh;
            width: 100%;
            top: -50%;
            left: 0;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, $white-color 75%, $white-color 100%);
            animation: run 7s 0s infinite;
            animation-fill-mode: forwards;
            animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
        }
        &:nth-child(1) {
            margin-left: -25%;
            &::after {
                animation-delay: 2s;
            }
        }
        &:nth-child(3) {
            margin-left: 25%;
            &::after {
                animation-delay: 2.5s;
            }
        }
    }
}

@keyframes run {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}


/*================================================
Go Top CSS
=================================================*/

.go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 15px;
    color: $white-color;
    background: $main-color;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    transition: .9s;
    &.active {
        top: 98%;
        transform: translateY(-98%);
        opacity: 1;
        visibility: visible;
    }
    i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0 auto;
        transition: $transition;
        &:last-child {
            opacity: 0;
            visibility: hidden;
            top: 60%;
        }
    }
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: $optional-color;
        opacity: 0;
        visibility: hidden;
        transition: $transition;
    }
    &:hover,
    &:focus {
        color: $white-color;
        &::before {
            opacity: 1;
            visibility: visible;
        }
        i {
            &:first-child {
                opacity: 0;
                top: 0;
                visibility: hidden;
            }
            &:last-child {
                opacity: 1;
                visibility: visible;
                top: 50%;
            }
        }
    }
}


/*new-css*/


/*================================================
Navbar Area CSS
=================================================*/

.navbar-area {
    &.navbar-style-three {
        &.p-relative {
            position: relative;
            .sparsity-nav {
                .navbar {
                    .others-options {
                        .btn-primary {
                            background-color: $main-color;
                            color: $white-color;
                        }
                    }
                }
            }
            &.is-sticky {
                position: fixed;
            }
        }
    }
}


/*================================================
Main Banner Area CSS
=================================================*/

.home-slides {
    .main-banner {
        height: auto;
        padding: {
            top: 310px;
            bottom: 220px;
        }
        ;
        .main-banner-content {
            overflow: hidden;
            margin: {
                left: 0;
                top: 0;
            }
            ;
            p {
                margin: {
                    top: 30px;
                }
                ;
            }
        }
        &.item-bg1 {
            background-image: url(../../assets/img/main-banner-bg1.jpg);
        }
        &.item-bg2 {
            background-image: url(../../assets/img/main-banner-bg2.jpg);
        }
    }
    &.owl-theme {
        .owl-nav {
            margin-top: 0;
            transition: $transition;
            opacity: 0;
            visibility: hidden;
            [class*=owl-] {
                margin: 0;
                position: absolute;
                left: 25px;
                top: 50%;
                transform: translateY(-50%);
                background-color: $white-color;
                color: $black-color;
                width: 50px;
                height: 50px;
                line-height: 50px;
                text-align: center;
                transition: $transition;
                font-size: unset;
                border-radius: 0;
                overflow: hidden;
                i {
                    &::before {
                        font-size: 25px;
                    }
                }
                &.owl-next {
                    left: auto;
                    right: 25px;
                }
                &:hover {
                    background-color: $main-color;
                    color: $white-color;
                }
            }
        }
        &:hover {
            .owl-nav {
                opacity: 1;
                visibility: visible;
            }
        }
    }
}

.startup-banner-area {
    padding: {
        left: 30px;
        right: 30px;
    }
    ;
}

.startup-banner-inner {
    background: {
        position: left center;
        size: cover;
        repeat: no-repeat;
        image: url(../../assets/img/startup-banner.jpg);
    }
    ;
    padding: {
        top: 160px;
        bottom: 160px;
    }
    ;
}

.startup-banner-content {
    max-width: 720px;
    h1 {
        margin-bottom: 0;
        line-height: 1.1;
        font: {
            size: 60px;
            weight: 700;
        }
    }
    p {
        max-width: 600px;
        color: #434343;
        font: {
            weight: 500;
            size: 15px;
        }
        ;
        margin: {
            top: 25px;
            bottom: 0;
        }
    }
    .btn-box {
        margin-top: 30px;
        .optional-btn {
            display: inline-block;
            color: $black-color;
            position: relative;
            margin-left: 20px;
            font: {
                family: $optional-font-family;
                size: 16px;
                weight: 700;
            }
            &::before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 2px;
                background-color: $black-color;
                transition: $transition;
            }
            &::after {
                content: '';
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0;
                height: 2px;
                background-color: $main-color;
                transition: $transition;
            }
            &:hover {
                color: $black-color;
                &::before {
                    width: 0;
                }
                &::after {
                    width: 100%;
                    right: auto;
                    left: 0;
                }
            }
        }
    }
}


/*================================================
Main Services Area CSS
=================================================*/

.main-services-area {
    padding-bottom: 80px;
}

.single-main-services-box {
    margin-bottom: 30px;
    border: 1px solid #ffd1bf;
    padding: 30px;
    transition: $transition;
    box-shadow: 5px 5px #ffd1bf;
    .icon {
        margin-bottom: 22px;
        line-height: 1;
        color: $main-color;
        i {
            &::before {
                font-size: 50px;
            }
        }
    }
    h3 {
        margin-bottom: 12px;
        font: {
            size: 23px;
            weight: 700;
        }
        ;
    }
    .link-btn {
        display: inline-block;
        font-weight: 600;
        color: $main-color;
    }
    &:hover {
        border-color: $main-color;
        box-shadow: 5px 5px $main-color;
    }
}


/*================================================
Why Choose Us Area CSS
=================================================*/

.why-choose-us-content {
    h2 {
        margin-bottom: 15px;
        font: {
            size: 40px;
            weight: 700;
        }
        ;
    }
    .btn {
        margin-top: 25px;
    }
    .row {
        margin-top: -15px;
    }
}

.single-why-choose-us-box {
    margin-top: 30px;
    h3 {
        margin-bottom: 12px;
        font: {
            size: 21px;
            weight: 700;
        }
        ;
    }
}


/*================================================
Solutions Area CSS
=================================================*/

.solutions-area {
    padding-bottom: 80px;
    background: {
        color: #ffefe9;
        image: url(../../assets/img/solutions-bg.jpg);
        position: center center;
        size: cover;
        repeat: no-repeat;
    }
    ;
}

.single-solutions-box {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid transparent;
    background-color: transparent;
    transition: $transition;
    .icon {
        margin-bottom: 20px;
        background-color: $white-color;
        border-radius: 5px;
        width: 75px;
        height: 75px;
        line-height: 75px;
        transition: $transition;
        text-align: center;
        color: $main-color;
        i {
            &::before {
                font-size: 35px;
            }
        }
    }
    h3 {
        margin-bottom: 12px;
        font: {
            size: 23px;
            weight: 700;
        }
        ;
    }
    &.active,
    &:hover {
        border-color: $main-color;
        box-shadow: 5px 5px $main-color;
        background-color: $white-color;
        .icon {
            background-color: $main-color;
            color: $white-color;
        }
    }
}


/*================================================
Testimonials Area CSS
=================================================*/

.testimonials-section {
    .section-title {
        margin-bottom: 50px;
        .content {
            text-align: right;
            padding-right: 30px;
            position: relative;
            &::before {
                content: '';
                position: absolute;
                right: -15px;
                top: 0;
                height: 100%;
                width: 1px;
                background-color: #ffe3d8;
            }
        }
        .icon {
            text-align: left;
            margin-bottom: -15px;
            padding-left: 30px;
            i {
                color: $main-color;
                line-height: 1;
                &::before {
                    line-height: 1;
                    font-size: 90px;
                }
            }
        }
    }
    .testimonials-slides {
        max-width: 800px;
        margin: {
            left: auto;
            right: auto;
            top: 0;
        }
        ;
        .owl-nav {
            &.disabled+.owl-dots {
                margin-bottom: 0;
                margin-top: 0;
            }
        }
    }
}

.single-testimonials-box {
    text-align: center;
    margin-bottom: 30px;
    p {
        color: $black-color;
        margin-bottom: 0;
        font: {
            size: 22px;
        }
        ;
    }
    .client-info {
        margin-top: 25px;
        h3 {
            margin-bottom: 9px;
            font: {
                size: 20px;
                weight: 700;
            }
            ;
        }
        span {
            color: $main-color;
        }
    }
}


/*================================================
Webinar Area CSS
=================================================*/

.webinar-inner {
    background-color: #f4f0e6;
    padding: {
        left: 15px;
        right: 125px;
        top: 10px;
    }
    ;
    .content {
        h2 {
            margin-bottom: 15px;
            font: {
                size: 40px;
                weight: 700;
            }
            ;
        }
        p {
            max-width: 540px;
        }
        .btn {
            margin-top: 5px;
        }
    }
}


/*================================================
Pricing Area CSS
=================================================*/

.pricing-bg-color {
    &.pricing-tab {
        .tabs {
            li {
                a {
                    background-color: #ffefe9;
                }
                &.current,
                &:hover {
                    a {
                        background-color: $black-color;
                    }
                }
            }
        }
    }
    .single-pricing-box {
        border: 1px solid #ffd1bf;
        box-shadow: 5px 5px #ffd1bf;
        border-radius: 0;
        text-align: center;
        &.active,
        &:hover {
            border-color: $main-color;
            box-shadow: 5px 5px $main-color;
        }
        .pricing-features {
            text-align: left;
        }
    }
}


/*================================================
Newsletter Area CSS
=================================================*/

.newsletter-inner {
    background-color: $white-color;
    border: 1px solid #ffd1bf;
    box-shadow: 5px 5px #ffd1bf;
    transition: $transition;
    padding: {
        left: 15px;
        right: 100px;
        top: 5px;
    }
    ;
    .content {
        padding-left: 30px;
        h2 {
            margin-bottom: 25px;
            font: {
                size: 40px;
                weight: 700;
            }
            ;
        }
        form {
            margin-bottom: 15px;
            .input-newsletter {
                display: block;
                width: 100%;
                height: 50px;
                border: none;
                background-color: #ffdacb !important;
                color: $black-color;
                outline: 0 !important;
                box-shadow: unset !important;
                padding-left: 20px;
                border-radius: 30px;
                &::placeholder {
                    color: #464646;
                    font-weight: 500;
                    transition: $transition;
                }
                &:focus {
                    &::placeholder {
                        color: transparent;
                    }
                }
            }
            button {
                display: block;
                width: 100%;
                margin-top: 10px;
                border-radius: 30px;
                border: none;
                line-height: initial;
                border-radius: 30px;
                transition: $transition;
                padding: 13px 30px;
                color: $white-color;
                background-color: $main-color;
                font: {
                    size: 16px;
                    family: $optional-font-family;
                    weight: 600;
                }
                ;
                &:hover {
                    background-color: $optional-color;
                    color: $white-color;
                }
            }
        }
    }
    &:hover {
        border-color: $main-color;
        box-shadow: 5px 5px $main-color;
    }
}


/*Start "Home Demo - 6", "Home Demo - 7" & "Home Demo - 8" Style CSS*/

.ptb-100 {
    padding: {
        top: 100px;
        bottom: 100px;
    }
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-70 {
    padding-bottom: 70px;
}

.section-title {
    &.with-underline-text {
        max-width: 700px;
        h2 {
            b {
                display: inline-block;
                text-decoration-line: underline;
                color: #437FEC;
                font-weight: bold;
            }
        }
        p {
            max-width: 100%;
        }
    }
}


/*================================================
Topbar Wrap Area CSS
=================================================*/

.topbar-wrap-area {
    background-color: $white-color;
    box-shadow: 0px 6px 15px rgba(71, 113, 188, 0.07);
    padding: {
        top: 15px;
        bottom: 15px;
    }
    ;
    .container-fluid {
        padding: {
            left: 30px;
            right: 30px;
        }
        ;
    }
}

.topbar-content {
    span {
        font-size: 16px;
        font-weight: 600;
        a {
            color: $main-color;
            border-bottom: 1px solid $main-color;
            display: inline-block;
            &:hover {
                color: $optional-color;
                border-bottom: 1px solid $optional-color;
            }
        }
    }
}

.topbar-action-list {
    padding: 0;
    margin-bottom: 0;
    text-align: end;
    li {
        font-size: 16px;
        font-weight: 600;
        list-style-type: none;
        display: inline-block;
        margin-right: 30px;
        position: relative;
        padding-left: 20px;
        &::before {
            content: "";
            position: absolute;
            top: 1px;
            right: -20px;
            width: 1px;
            height: 20px;
            border: 2px solid #E4E7FB;
        }
        &:last-child {
            margin-right: 0;
            &::before {
                display: none;
            }
            i {
                top: 6.5px;
            }
        }
        &:first-child {
            i {
                left: 2px;
            }
        }
        i {
            position: absolute;
            left: 0;
            top: 5px;
            color: $main-color;
            font-size: 15px !important;
        }
        a {
            &:hover {
                color: $optional-color;
            }
        }
    }
}


/*================================================
Navbar Area CSS
=================================================*/

.navbar-area-with-position-relative {
    position: relative;
    background: linear-gradient(180deg, #F5FCFE 3.31%, #F6FCFF 100%);
    &.with-white-color {
        background: $white-color;
    }
    .sparsity-nav {
        padding: {
            left: 0;
            right: 0;
        }
        ;
        .container-fluid {
            padding: {
                left: 30px;
                right: 30px;
            }
            ;
        }
        .navbar {
            .navbar-nav {
                .nav-item {
                    a {
                        color: $black-color;
                        &:hover,
                        &:focus,
                        &.active {
                            color: $main-color;
                        }
                    }
                    &:hover,
                    &:focus,
                    &.active {
                        a {
                            color: $main-color;
                        }
                    }
                    .dropdown-menu {
                        li {
                            a {
                                color: $black-color;
                                &:hover,
                                &:focus,
                                &.active {
                                    color: $main-color;
                                }
                            }
                        }
                    }
                }
            }
            .others-options {
                .cart-btn {
                    color: $black-color;
                    &:hover {
                        color: $main-color;
                    }
                }
                .btn-primary {
                    background-color: $main-color;
                    color: $white-color;
                    &:hover {
                        color: $white-color !important;
                        background-color: $optional-color !important;
                    }
                }
                .option-item {
                    color: $black-color;
                    .search-btn {
                        color: $black-color;
                        &:hover {
                            color: $main-color;
                        }
                    }
                    .close-btn {
                        color: $black-color;
                        &:hover {
                            color: $main-color;
                        }
                    }
                }
            }
        }
    }
}


/*================================================
AI Main Banner Area CSS
=================================================*/

.ai-main-banner-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(180deg, #F5FCFE 3.31%, #F6FCFF 100%);
    padding: {
        top: 120px;
        bottom: 120px;
    }
    ;
    .container-fluid {
        padding: {
            left: 0;
            right: 0;
        }
        ;
    }
}

.ai-main-banner-content {
    text-align: center;
    max-width: 750px;
    margin: auto;
    position: relative;
    top: -10px;
    h1 {
        font-size: 70px;
        font-weight: bold;
        margin-bottom: 18.5px;
        span {
            text-decoration-line: underline;
            color: #437FEC;
        }
    }
    p {
        max-width: 575px;
        margin: auto;
        font-size: 16px;
    }
    .banner-btn {
        padding: 0;
        margin: {
            top: 30px;
            bottom: 0;
        }
        ;
        li {
            display: inline-flex;
            margin-right: 20px;
            &:last-child {
                margin-right: 0;
            }
            .video-btn {
                margin-left: 5px;
                font-size: 14.5px;
                font-weight: 600;
                color: $black-color;
                i {
                    background: linear-gradient(320.56deg, #074ECE 0%, #4D8CFF 100%);
                    box-shadow: -3px 8px 20px rgba(67, 127, 236, 0.12);
                    height: 40px;
                    width: 40px;
                    display: inline-block;
                    color: $white-color;
                    text-align: center;
                    line-height: 40px;
                    border-radius: 50%;
                    padding-left: 5px;
                    margin-right: 8px;
                }
            }
        }
    }
}

.ai-main-banner-image {
    position: absolute;
    left: 0;
    bottom: 10%;
    transform: translateY(-10%);
    z-index: -1;
    width: 30%;
    .circle-shape {
        width: 450px;
        height: 300px;
        border-radius: 50%;
        background-color: $white-color;
        z-index: -1;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -150px;
    }
    &.right-image {
        right: 0;
        left: auto;
        .circle-shape {
            right: -150px;
            left: auto;
        }
    }
}

.ai-main-banner-shape-1 {
    position: absolute;
    top: 5%;
    left: 22%;
    transform: translateY(-5%) translateX(-22%);
    z-index: -1;
    img {
        animation-name: rotateMe;
        animation-duration: 20s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
}

.ai-main-banner-shape-2 {
    position: absolute;
    top: 10%;
    right: 25%;
    transform: translateY(-10%) translateX(-25%);
    z-index: -1;
    animation: animationFramesOne 10s infinite linear;
}

.ai-main-banner-shape-3 {
    position: absolute;
    bottom: 10%;
    left: 35%;
    transform: translateY(-10%) translateX(-35%);
    z-index: -1;
    animation: animationFramesOne 10s infinite linear;
}


/*================================================
Fun Facts Area CSS
=================================================*/

.fun-facts-wrap-area {
    position: relative;
    z-index: 1;
    &::before {
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        top: 0;
        z-index: -1;
        width: 100%;
        height: 120px;
        background: linear-gradient(180deg, #F5FCFE 3.31%, #F6FCFF 100%);
    }
    &.without-before-color {
        &::before {
            display: none;
        }
    }
}

.fun-facts-wrap-area-inner-box {
    background: linear-gradient(90deg, #DD24ED 0%, #7609EA 97.61%);
    box-shadow: -3px 8px 20px rgba(80, 80, 161, 0.07);
    padding: {
        left: 100px;
        right: 100px;
    }
    ;
    &.gradient-optional-color {
        /* background: linear-gradient(90deg, #61967D 0%, #4A4493 100%);*/
        background: linear-gradient(to right, #19bdc3, #0f50bc);
        overflow: hidden;
        position: relative;
        z-index: 1;
        .fun-facts-inner-shape {
            position: absolute;
            top: 30px;
            left: 30%;
            transform: translateX(-30%);
            z-index: -1;
            animation: animationFramesOne 20s infinite linear;
        }
    }
}

.single-funfacts-card {
    margin-bottom: 30px;
    h3 {
        color: $white-color;
        font-size: 50px;
        font-weight: bold;
        margin-bottom: 0;
        .odometer-auto-theme {
            font: {
                family: $optional-font-family;
            }
            ;
        }
    }
    p {
        color: $white-color;
        font-size: 18px;
        margin: {
            top: 5px;
            bottom: 0;
        }
        ;
    }
}

.fun-facts-wrap-shape {
    position: absolute;
    bottom: -35px;
    right: 75px;
    z-index: -1;
    animation: rotate3d 4s linear infinite;
}


/*================================================
Top Featured Area CSS
=================================================*/

.top-featured-content {
    margin-bottom: 30px;
    h2 {
        font-size: 40px;
        margin-bottom: 15px;
        font-weight: bold;
        span {
            text-decoration-line: underline;
            color: #437FEC;
        }
    }
    p {
        margin-bottom: 0;
    }
    .featured-btn {
        margin-top: 20px;
    }
}

.top-featured-card {
    margin-bottom: 30px;
    background: #F8FBFF;
    padding: 35px 25px;
    border-radius: 5px;
    .image-icon {
        display: inline-block;
        height: 100px;
        width: 100px;
        line-height: 100px;
        background-color: $white-color;
        box-shadow: -3px 8px 20px rgba(67, 127, 236, 0.05);
        text-align: center;
        border-radius: 50%;
        margin-bottom: 20px;
        transition: $transition;
        position: relative;
        z-index: 1;
        &::before {
            position: absolute;
            content: "";
            display: inline-block;
            height: 100px;
            width: 100px;
            line-height: 100px;
            left: 0;
            right: 0;
            top: 0;
            background: linear-gradient(0deg, #FFC2CC 0%, #FFF2F4 100%);
            z-index: -1;
            transition: $transition;
            border-radius: 50%;
            opacity: 0;
            visibility: hidden;
        }
    }
    h3 {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 0;
    }
    .learn-btn {
        background-color: $white-color;
        box-shadow: -3px 8px 20px rgba(67, 127, 236, 0.05);
        display: inline-block;
        padding: 10px 15px;
        border-radius: 30px;
        color: $paragraph-color;
        font-weight: 600;
        font-size: 15px;
        margin-top: 22px;
    }
    &:hover {
        .image-icon {
            animation: jackInTheBox 1s;
            &::before {
                opacity: 1;
                visibility: visible;
            }
        }
        .learn-btn {
            color: $main-color;
        }
    }
}

.top-featured-btn {
    text-align: center;
    margin-top: 10px;
}

.top-featured-inner-box {
    position: relative;
    z-index: 1;
    margin-top: -100px;
}


/*================================================
AI About Area CSS
=================================================*/

.ai-about-content {
    padding-left: 45px;
    h3 {
        font-size: 40px;
        margin-bottom: 15px;
        font-weight: bold;
        span {
            text-decoration-line: underline;
            color: #437FEC;
        }
    }
    p {
        margin-bottom: 0;
    }
    .about-list {
        padding: 0;
        margin: {
            top: 20px;
            bottom: 0;
        }
        ;
        max-width: 450px;
        li {
            list-style-type: none;
            background-color: $white-color;
            box-shadow: -3px 4px 30px rgba(67, 127, 236, 0.08);
            padding: 14px 15px 15px 42px;
            border-radius: 5px;
            margin-bottom: 18px;
            position: relative;
            font-size: $font-size;
            font-weight: 600;
            color: $paragraph-color;
            &:last-child {
                margin-bottom: 0;
            }
            i {
                font-size: $font-size;
                color: #03B5A9;
                position: absolute;
                left: 20px;
                top: 50%;
                transform: translateY(-50%);
            }
        }
    }
    .about-btn {
        margin-top: 25px;
        .btn-primary {
            background-color: transparent;
            border: 2px solid $main-color;
            color: $paragraph-color;
            &:hover {
                border: 2px solid $optional-color;
            }
        }
    }
}

.ai-about-image {
    position: relative;
    z-index: 1;
    text-align: center;
    .circle-shape {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
    }
    .vector-shape {
        position: absolute;
        left: 40px;
        top: 30px;
        z-index: -1;
        animation: rotate3d 4s linear infinite;
    }
}


/*================================================
AI Services Area CSS
=================================================*/

.ai-services-area {
    background: #F7FBFF;
    position: relative;
    z-index: 1;
    overflow: hidden;
    &.with-linear-gradient-color {
        background: linear-gradient(269.49deg, #DD24ED 0.44%, #7609EA 99.58%);
        .section-title {
            h2 {
                color: $white-color;
                b {
                    color: $white-color;
                }
            }
            p {
                color: $white-color;
            }
        }
        .single-services-card {
            border-radius: 0;
        }
    }
    &.with-linear-gradient-optional-color {
        background: linear-gradient(90deg, #61967D 0%, #4A4493 100%);
        position: relative;
        z-index: 1;
        &::before {
            position: absolute;
            content: "";
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            width: 100%;
            height: 250px;
            background: $white-color;
        }
        .section-title {
            h2 {
                color: $white-color;
                b {
                    color: $white-color;
                }
            }
            p {
                color: $white-color;
            }
        }
        .single-services-card {
            border-radius: 0;
            padding: 35px 30px;
        }
    }
}

.single-services-card {
    background-color: $white-color;
    box-shadow: 0px 10px 40px rgba(67, 127, 236, 0.07);
    padding: 35px 45px;
    border-radius: 5px;
    transition: $transition;
    margin-bottom: 30px;
    .image-icon {
        display: inline-block;
        height: 90px;
        width: 90px;
        line-height: 90px;
        background: linear-gradient(0deg, #FFC2CC 0%, #FFF2F4 100%);
        text-align: center;
        border-radius: 50%;
        margin-bottom: 22px;
        transition: $transition;
        &.bg-two {
            background: linear-gradient(0deg, #FFBEF9 0%, #FFF1FF 100%);
        }
        &.bg-three {
            background: linear-gradient(0deg, #FFE59A 0%, #FFFFD5 100%);
        }
        &.bg-four {
            background: linear-gradient(0deg, #FFBEF9 0%, #FFF1FF 100%);
        }
        &.bg-five {
            background: linear-gradient(0deg, #C3FFE8 0%, #F0FFF4 99.73%);
        }
        &.bg-six {
            background: linear-gradient(0deg, #ADDCFF 0%, #EAF6FF 50.28%, #EAF6FF 100%);
        }
    }
    h3 {
        font-size: 23.8px;
        font-weight: bold;
        margin-bottom: 15.5px;
    }
    .read-btn {
        background: #19bdc3;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        border-bottom: 1px solid #19bdc3;
        font-size: 15px;
        font-weight: 600;
    }
    &:hover {
        transform: translateY(-5px);
        .image-icon {
            animation: jackInTheBox 1s;
        }
    }
}

.ai-all-services-btn {
    text-align: center;
    margin-top: 10px;
}

.ai-services-shape {
    position: absolute;
    top: 15%;
    right: 15%;
    transform: translateY(-5%) translateX(-5%);
    z-index: -1;
    animation: animationFramesOne 10s infinite linear;
}


/*================================================
Computer Vision AI Area CSS
=================================================*/

.computer-vision-ai-content {
    h3 {
        font-size: 40px;
        margin-bottom: 15px;
        font-weight: bold;
        span {
            text-decoration-line: underline;
            color: #437FEC;
        }
    }
    p {
        margin-bottom: 0;
    }
    .vision-ai-inner-card {
        margin-top: 30px;
        .content {
            position: relative;
            padding: 15px 0 15px 70px;
            .image-icon {
                display: inline-block;
                height: 55px;
                width: 55px;
                line-height: 55px;
                background: #F3F9FF;
                text-align: center;
                border-radius: 50%;
                transition: $transition;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
            }
            h4 {
                font-size: 22.5px;
                margin-bottom: 0;
                font-weight: bold;
            }
        }
        p {
            margin: {
                top: 15px;
                bottom: 0;
            }
            ;
        }
    }
    .computer-vision-ai-btn {
        margin-top: 30px;
    }
}


/*================================================
AI Pricing Area CSS
=================================================*/

.ai-pricing-area {
    background-color: #F7FBFF;
    position: relative;
    z-index: 1;
    overflow: hidden;
    &.with-linear-gradient-color {
        background: linear-gradient(270deg, #5151B7 0%, #A02B7E 100%);
    }
}

.ai-pricing-card {
    background-color: $white-color;
    box-shadow: 0px 10px 30px rgba(67, 127, 236, 0.07);
    padding: 45px 50px;
    border-radius: 5px;
    transition: $transition;
    position: relative;
    margin-bottom: 30px;
    .pricing-header {
        text-align: center;
        h3 {
            font-size: 23.5px;
            margin-bottom: 0;
            font-weight: bold;
        }
        p {
            margin: {
                top: 10px;
                bottom: 0;
            }
            ;
        }
    }
    .price {
        text-align: center;
        font-size: 40px;
        font-weight: bold;
        color: $main-color;
        font-family: $optional-font-family;
        margin: {
            top: 22px;
            bottom: 22px;
        }
        ;
        span {
            font-size: $font-size;
            color: $paragraph-color;
            font-weight: 400;
        }
    }
    .pricing-features {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;
        li {
            margin-bottom: 14px;
            color: $paragraph-color;
            font-size: 15px;
            position: relative;
            padding-left: 18px;
            &:last-child {
                margin-bottom: 0;
            }
            i {
                color: #03B5A9;
                font-size: 14px;
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                &::before {
                    font-size: 12px;
                }
                &.fa-times {
                    color: #E8346F;
                }
            }
        }
    }
    .pricing-btn {
        margin-top: 30px;
        text-align: center;
        .btn-primary {
            background-color: transparent;
            border: 2px solid $main-color;
            color: $paragraph-color;
            &:hover,
            &:focus {
                background-color: $main-color !important;
                color: $white-color !important;
                box-shadow: unset !important;
            }
        }
    }
    .tag {
        display: inline-block;
        background: linear-gradient(270deg, #FA887D 0%, #FE6088 100%);
        padding: 8px 25px;
        border-radius: 30px;
        color: $white-color;
        font-size: 14.5px;
        font-weight: 600;
        position: absolute;
        right: 25px;
        top: -10px;
        animation: moveLeftBounce 5s linear infinite;
    }
    &:hover {
        transform: translateY(-5px);
        .pricing-btn {
            .btn-primary {
                background-color: $main-color;
                border: 2px solid $main-color;
                color: $white-color;
            }
        }
    }
}

.ai-pricing-content {
    padding-left: 20px;
    h3 {
        font-size: 40px;
        margin-bottom: 15px;
        font-weight: bold;
        color: $white-color;
        span {
            text-decoration-line: underline;
            color: $white-color;
        }
    }
    p {
        margin-bottom: 0;
        color: $white-color;
    }
}

.ai-pricing-shape-1 {
    position: absolute;
    top: 10%;
    left: 15%;
    transform: translateY(-10%) translateX(-15%);
    z-index: -1;
    animation: animationFramesOne 10s infinite linear;
}

.ai-pricing-shape-2 {
    position: absolute;
    top: 10%;
    right: 15%;
    transform: translateY(-10%) translateX(-15%);
    z-index: -1;
    animation: animationFramesOne 10s infinite linear;
}


/*================================================
AI Blog Area CSS
=================================================*/

.ai-blog-card {
    margin-bottom: 30px;
    .entry-thumbnail {
        overflow: hidden;
        a {
            img {
                transition: $transition;
            }
        }
    }
    .entry-post-content {
        margin-top: 25px;
        .tag {
            margin-bottom: 16.5px;
            a {
                display: inline-block;
                background: rgba(255, 72, 0, 0.05);
                border-radius: 30px;
                color: $main-color;
                padding: 10px 25px;
                font-weight: 600;
            }
        }
        h3 {
            font-size: 24.5px;
            font-weight: bold;
            line-height: 1.5;
            margin-bottom: 0;
            position: relative;
            padding-left: 0;
            transition: $transition;
            a {
                color: $black-color;
                position: relative;
                display: inline;
                transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
                padding: 0.1% 0px;
                background: {
                    image: linear-gradient(270deg, #19bdc3 0%, #19bdc3 100%);
                    size: 0px 2px;
                    position: 0px 95%;
                    repeat: no-repeat;
                }
            }
            &::before {
                position: absolute;
                content: "";
                left: 0;
                top: 12px;
                height: 3.5px;
                width: 35px;
                background-color: $main-color;
                z-index: -1;
                border-radius: 15px;
                opacity: 0;
                visibility: hidden;
                transition: $transition;
            }
        }
        .entry-meta {
            padding: 0;
            margin: {
                top: 18px;
                bottom: 0;
            }
            ;
            li {
                color: $paragraph-color;
                margin-right: 15px;
                list-style-type: none;
                font-size: $font-size;
                display: inline-block;
                position: relative;
                padding-left: 15px;
                font-weight: 500;
                &::before {
                    position: absolute;
                    content: "";
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    height: 8px;
                    width: 8px;
                    background-color: $main-color;
                    border-radius: 50%;
                }
                a {
                    color: $paragraph-color;
                    &:hover {
                        color: $main-color;
                        text-decoration-line: underline;
                    }
                }
                &:last-child {
                    margin-right: 0;
                }
            }
        }
    }
    &:hover {
        .entry-thumbnail {
            a {
                img {
                    transform: scale(1.2);
                }
            }
        }
        .entry-post-content {
            h3 {
                padding-left: 50px;
                a {
                    color: $main-color;
                    background-size: 100% 2px;
                }
                &::before {
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
}


/*================================================
AI Subscribe Area CSS
=================================================*/

.ai-subscribe-area {
    background: #F7FBFF;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ai-subscribe-content {
    text-align: center;
    max-width: 470px;
    margin: auto;
    h2 {
        margin-bottom: 0;
        font-size: 40px;
        font-weight: bold;
    }
    .newsletter-form {
        max-width: 550px;
        position: relative;
        margin: {
            left: auto;
            right: auto;
            top: 30px;
        }
        .input-newsletter {
            display: block;
            width: 100%;
            background-color: $white-color;
            box-shadow: -3px 8px 20px rgba(67, 127, 236, 0.05);
            border: none;
            height: 55px;
            padding-left: 28px;
            border-radius: 70px;
            outline: 0;
            color: $paragraph-color;
            font-weight: 500;
            font-size: 15px;
            &::placeholder {
                color: $paragraph-color;
                transition: $transition;
            }
            &:focus {
                &::placeholder {
                    color: transparent;
                }
            }
        }
        button {
            position: absolute;
            right: 0;
            top: 0;
            background-color: $main-color;
            color: $white-color;
            border: none;
            height: 55px;
            padding: 0 35px;
            border-radius: 70px;
            transition: $transition;
            line-height: 55px;
            font-family: $optional-font-family;
            font: {
                size: 15px;
                weight: 700;
            }
            &:hover {
                background-color: $optional-color;
                color: $white-color;
            }
        }
        .newsletter-checkbox-btn {
            margin-top: 20px;
            input {
                display: none;
            }
            .cbx {
                margin: auto;
                user-select: none;
                cursor: pointer;
                span {
                    display: inline-block;
                    vertical-align: middle;
                    transform: translate3d(0, 0, 0);
                    &:first-child {
                        position: relative;
                        width: 15px;
                        height: 15px;
                        border-radius: 2px;
                        transform: scale(1);
                        vertical-align: middle;
                        border: 1px solid #437FEC;
                        transition: all 0.2s ease;
                        transition: $transition;
                        svg {
                            position: absolute;
                            top: 1px;
                            left: 1px;
                            fill: none;
                            stroke: $white-color;
                            stroke-width: 2;
                            stroke-linecap: round;
                            stroke-linejoin: round;
                            stroke-dasharray: 12px;
                            stroke-dashoffset: 12px;
                            transition: all 0.3s ease;
                            transition-delay: 0.1s;
                            transform: translate3d(0, 0, 0);
                            transition: $transition;
                        }
                        &:before {
                            content: "";
                            width: 100%;
                            height: 100%;
                            background: $black-color;
                            display: block;
                            transform: scale(0);
                            opacity: 1;
                            border-radius: 50%;
                            transition: $transition;
                        }
                    }
                    &:last-child {
                        padding-left: 4px;
                        color: $paragraph-color;
                    }
                }
                &:hover {
                    span {
                        &:first-child {
                            border-color: $main-color;
                        }
                    }
                }
            }
            .inp-cbx:checked+.cbx span:first-child {
                background: $main-color;
                border-color: $main-color;
                animation: wave 0.4s ease;
            }
            .inp-cbx:checked+.cbx span:first-child svg {
                stroke-dashoffset: 0;
            }
            .inp-cbx:checked+.cbx span:first-child:before {
                transform: scale(3.5);
                opacity: 0;
                transition: all 0.6s ease;
            }
        }
    }
}

.ai-subscribe-shape {
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    left: 0;
    right: 0;
    margin: auto;
}


/*================================================
ML Main Banner Area CSS
=================================================*/

.ml-main-banner-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #F5FCFE;
    padding: {
        top: 70px;
        bottom: 120px;
    }
    ;
    .container-fluid {
        padding: {
            left: 30px;
            right: 30px;
        }
        ;
    }
    &.with-linear-gradient-color {
        background: linear-gradient(0deg, #EB8A6F 0%, #E33879 100%);
        padding: {
            top: 120px;
            bottom: 230px;
        }
        ;
        .container-fluid {
            padding-right: 0;
        }
    }
}

.ml-main-banner-content {
    .sub-title {
        background-color: $white-color;
        box-shadow: -2px 6px 15px rgba(67, 127, 236, 0.07);
        padding: 12px 15px;
        border-radius: 5px;
        color: $paragraph-color;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 22px;
        b {
            background: #738BAE;
            padding: 2px 12px;
            border-radius: 30px;
            color: $white-color;
            font-weight: 500;
            margin-left: 5px;
        }
    }
    h1 {
        font-size: 70px;
        font-weight: bold;
        max-width: 680px;
        margin-bottom: 18.5px;
        span {
            text-decoration-line: underline;
            color: #437FEC;
        }
    }
    p {
        margin-bottom: 0;
        max-width: 550px;
        font-size: 18px;
    }
    .banner-form {
        max-width: 550px;
        position: relative;
        margin-top: 30px;
        .input-newsletter {
            display: block;
            width: 100%;
            background-color: $white-color;
            box-shadow: -3px 8px 20px rgba(67, 127, 236, 0.05);
            border: none;
            height: 55px;
            padding-left: 28px;
            border-radius: 70px;
            outline: 0;
            color: $paragraph-color;
            font-weight: 500;
            font-size: 15px;
            &::placeholder {
                color: $paragraph-color;
                transition: $transition;
            }
            &:focus {
                &::placeholder {
                    color: transparent;
                }
            }
        }
        button {
            position: absolute;
            right: 0;
            top: 0;
            background-color: $main-color;
            color: $white-color;
            border: none;
            height: 55px;
            padding: 0 35px;
            border-radius: 70px;
            transition: $transition;
            line-height: 55px;
            font-family: $optional-font-family;
            font: {
                size: 15px;
                weight: 700;
            }
            &:hover {
                background-color: $optional-color;
                color: $white-color;
            }
        }
    }
    .banner-btn {
        padding: 0;
        margin: {
            top: 30px;
            bottom: 0;
        }
        ;
        li {
            display: inline-flex;
            margin-right: 20px;
            &:last-child {
                margin-right: 0;
            }
            .video-btn {
                margin-left: 5px;
                font-size: 14.5px;
                font-weight: 600;
                color: $white-color;
                i {
                    background: linear-gradient(320.56deg, #074ECE 0%, #4D8CFF 100%);
                    box-shadow: -3px 8px 20px rgba(67, 127, 236, 0.12);
                    height: 40px;
                    width: 40px;
                    display: inline-block;
                    color: $white-color;
                    text-align: center;
                    line-height: 40px;
                    border-radius: 50%;
                    padding-left: 5px;
                    margin-right: 8px;
                }
            }
            .btn-primary {
                background: #561A8A;
                box-shadow: -3px 8px 20px rgba(255, 72, 0, 0.13);
            }
        }
    }
    &.with-white-color-text {
        h1 {
            color: $white-color;
            span {
                color: $white-color;
            }
        }
        p {
            color: $white-color;
        }
    }
}

.ml-main-banner-image {
    position: relative;
    z-index: 1;
    .circle-shape {
        position: absolute;
        content: "";
        width: 530px;
        height: 530px;
        left: 80px;
        top: 25px;
        background: linear-gradient(109.28deg, #FE6D5B 11.53%, #FE9C42 89.63%);
        border-radius: 50%;
        z-index: -1;
        animation-name: rotateMe;
        animation-duration: 10s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
    .wrap-shape {
        position: absolute;
        bottom: 30px;
        left: 100px;
        z-index: -1;
        animation: moveLeftBounce 5s linear infinite;
    }
    .wrap-text {
        background-color: $white-color;
        box-shadow: -3px 4px 30px rgba(67, 127, 236, 0.09);
        border-radius: 5px 30.5px 5px 5px;
        display: inline-block;
        padding: 15px 15px 15px 35px;
        position: absolute;
        top: 15%;
        right: 12%;
        transform: translateY(-15%) translateX(-12%);
        i {
            display: inline-block;
            height: 30px;
            width: 30px;
            line-height: 30px;
            background: #03B5A9;
            box-shadow: 0px 4px 10px rgba(3, 181, 169, 0.12);
            text-align: center;
            border-radius: 50px;
            color: $white-color;
            position: absolute;
            left: -8px;
            top: -2px;
        }
        span {
            color: $paragraph-color;
            font-weight: 500;
        }
    }
}

.ai-main-banner-shape1 {
    position: absolute;
    top: 8%;
    left: 5%;
    transform: translateY(-8%) translateX(-5%);
    z-index: -1;
    animation: moveLeftBounce 5s linear infinite;
}

.ai-main-banner-shape2 {
    position: absolute;
    bottom: 10%;
    left: 40%;
    transform: translateY(-10%) translateX(-40%);
    z-index: -1;
    animation: rotate3d 4s linear infinite;
}

.ai-main-banner-shape3 {
    position: absolute;
    top: 8%;
    right: 10%;
    transform: translateY(-8%) translateX(-10%);
    z-index: -1;
    animation: animationFramesTwo 30s infinite linear;
}

.ai-main-banner-shape4 {
    position: absolute;
    top: 5%;
    left: 2%;
    transform: translateY(-5%) translateX(-2%);
    z-index: -1;
    animation: moveLeftBounce 5s linear infinite;
}

.ml-main-banner-wrap-image {
    position: relative;
    z-index: 1;
    padding-left: 10px;
    .circle-shape {
        width: 890px;
        height: 550px;
        border-radius: 50%;
        background-color: $white-color;
        z-index: -1;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -160px;
    }
}


/*================================================
Business Solution Area CSS
=================================================*/

.business-solution-area {
    background-color: #F7FBFF;
}

.business-solution-content {
    h3 {
        font-size: 43px;
        margin-bottom: 15px;
        font-weight: bold;
        span {
            text-decoration-line: underline;
            color: #437FEC;
        }
    }
    p {
        margin-bottom: 0;
    }
    .solution-list {
        padding: 0;
        margin: {
            top: 25px;
            bottom: 0;
        }
        ;
        max-width: 450px;
        li {
            list-style-type: none;
            background-color: $white-color;
            box-shadow: -3px 4px 30px rgba(67, 127, 236, 0.08);
            padding: 14px 15px 15px 42px;
            border-radius: 5px;
            margin-bottom: 18px;
            position: relative;
            font-size: $font-size;
            font-weight: 600;
            color: $paragraph-color;
            &:last-child {
                margin-bottom: 0;
            }
            i {
                font-size: $font-size;
                color: #03B5A9;
                position: absolute;
                left: 20px;
                top: 50%;
                transform: translateY(-50%);
            }
        }
    }
    .solution-btn {
        margin-top: 30px;
    }
    &.with-some-gap {
        padding-left: 30px;
    }
}

.business-solution-image {
    position: relative;
    z-index: 1;
    text-align: center;
    .circle-shape {
        position: absolute;
        left: 0;
        right: 0;
        z-index: -1;
        top: 50%;
        transform: translateY(-50%);
    }
    .wrap-text {
        background-color: $white-color;
        box-shadow: -3px 4px 30px rgba(67, 127, 236, 0.09);
        border-radius: 5px 30.5px 5px 5px;
        display: inline-block;
        padding: 15px 15px 15px 35px;
        position: absolute;
        top: 10%;
        left: 20%;
        transform: translateY(-10%) translateX(-20%);
        i {
            display: inline-block;
            height: 30px;
            width: 30px;
            line-height: 30px;
            background: #03B5A9;
            box-shadow: 0px 4px 10px rgba(3, 181, 169, 0.12);
            text-align: center;
            border-radius: 50px;
            color: $white-color;
            position: absolute;
            left: -8px;
            top: -2px;
        }
        span {
            color: $paragraph-color;
            font-weight: 500;
        }
    }
}


/*================================================
Unique Testimonials Area CSS
=================================================*/

.unique-testimonials-box {
    background: #F7FBFF;
    padding: 70px 100px 0;
    border-radius: 5px;
    text-align: center;
    max-width: 1050px;
    margin: auto;
    position: relative;
    z-index: 1;
    margin-top: 15px;
    .sub-title {
        display: inline-block;
        background: rgba(255, 72, 0, 0.05);
        border-radius: 30px;
        color: $main-color;
        padding: 10px 25px;
        font-weight: 600;
        margin-bottom: 22px;
    }
    p {
        color: $black-color;
        margin-bottom: 0;
        font: {
            size: 22.8px;
        }
        ;
        position: relative;
        padding-bottom: 22px;
        &::before {
            position: absolute;
            content: "";
            width: 40px;
            height: 3.5px;
            border-radius: 20px;
            left: 0;
            right: 0;
            margin: auto;
            bottom: 0;
            background: #437FEC;
        }
    }
    .client-info {
        margin-top: 25px;
        h3 {
            margin-bottom: 12px;
            font: {
                size: 23.8px;
                weight: 700;
            }
            ;
        }
        span {
            color: $paragraph-color;
        }
        .image {
            margin-top: 20px;
            img {
                display: inline-block;
                width: auto;
                max-width: 100px;
                border: 5px solid $white-color;
            }
        }
    }
    &::before {
        color: $main-color;
        position: absolute;
        left: 0;
        right: 0;
        top: -30px;
        font-style: normal;
        font-size: 50px;
        font-family: Flaticon;
        content: "\f113";
    }
    &::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 45px;
        background-color: $white-color;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    .testimonials-shape-1 {
        position: absolute;
        left: -50px;
        top: -10px;
        img {
            animation-name: rotateMe;
            animation-duration: 20s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }
    }
    .testimonials-shape-2 {
        position: absolute;
        right: -35px;
        bottom: 10px;
        img {
            animation-name: rotateMe;
            animation-duration: 20s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }
    }
}

.unique-testimonials-slides {
    .owl-dots {
        margin-top: 30px !important;
        .owl-dot {
            span {
                width: 15px;
                height: 15px;
                margin: 0 3px;
                background: transparent;
                transition: $transition;
                border: 2px solid #8d95a7;
                border-radius: 50%;
                position: relative;
                &::before {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    background-color: $main-color;
                    margin: 2px;
                    content: '';
                    transition: $transition;
                    border-radius: 50%;
                    transform: scale(0);
                }
            }
            &:hover,
            &.active {
                span {
                    border-color: $main-color;
                    background-color: transparent;
                    &::before {
                        transform: scale(1);
                    }
                }
            }
        }
    }
}


/*================================================
Creativity Area CSS
=================================================*/

.creativity-content {
    h3 {
        font-size: 40px;
        margin-bottom: 15px;
        font-weight: bold;
        span {
            text-decoration-line: underline;
            color: #437FEC;
        }
    }
    p {
        margin-bottom: 0;
    }
    .skill-bar {
        margin-top: 25px;
        .progress-title-holder {
            position: relative;
            margin-bottom: 10px;
        }
        .progress-title {
            font-size: 16.5px;
            color: $black-color;
            font-weight: bold;
        }
        .progress-number-mark {
            position: absolute;
            bottom: 0;
            transform: translateX(-50%);
            font-size: $font-size;
            font-weight: 500;
            color: $paragraph-color;
            display: inline-block;
            padding: 2px 8px;
            border-radius: 5px;
            background-color: $white-color;
            box-shadow: -2px 4px 30px rgba(67, 127, 236, 0.05);
            border: 1px solid #f9f9f9;
            transition: $transition;
            &:hover {
                background-color: $main-color;
                color: $white-color;
                border: 1px solid $main-color;
            }
        }
        .progress-content-outter {
            background-color: #E3E9FF;
            border-radius: 50px;
        }
        .progress-content {
            height: 5px;
            background: linear-gradient(90deg, #FFA68D 0%, #FD3A84 100%);
            border-radius: 50px;
            width: 0%;
        }
    }
    .creativity-btn {
        margin-top: 30px;
    }
}

.creativity-card {
    background-color: $white-color;
    box-shadow: 0px 10px 40px rgba(67, 127, 236, 0.07);
    border-radius: 5px;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    .icon-image {
        display: inline-block;
        height: 90px;
        width: 90px;
        line-height: 90px;
        box-shadow: 0px 10px 40px rgba(67, 127, 236, 0.07);
        background-color: $white-color;
        text-align: center;
        border-radius: 50%;
        margin-bottom: 22px;
        transition: $transition;
    }
    h3 {
        font-size: 22.5px;
        font-weight: bold;
        margin-bottom: 0;
    }
    &:hover {
        .icon-image {
            animation: jackInTheBox 1s;
        }
    }
}

.creativity-card-content {
    position: relative;
    z-index: 1;
    .col-lg-6 {
        &:nth-child(2) {
            margin-top: 30px;
        }
        &:nth-child(4) {
            margin-top: 30px;
        }
    }
    .creativity-circle-shape {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: auto;
        z-index: -1;
    }
}


/*================================================
AI Team Area CSS
=================================================*/

.ai-team-area {
    background: #F5FCFF;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ai-team-card {
    text-align: center;
    max-width: 230px;
    margin: 0 auto 30px;
    .team-image {
        position: relative;
        img {
            border: 5px solid $white-color;
        }
        .social {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            z-index: 2;
            text-decoration: none;
            padding: 10px 12px;
            background: linear-gradient(270deg, #FA887D 0%, #FE6088 100%);
            border-radius: 35px;
            opacity: 0;
            visibility: hidden;
            transition: $transition;
            a {
                display: block;
                color: $white-color;
                font-size: 16.8px;
                margin: 8px 0;
                transition: $transition;
                &:hover {
                    color: $black-color;
                }
            }
        }
    }
    .team-content {
        margin-top: 30px;
        padding-top: 25px;
        position: relative;
        &::before {
            position: absolute;
            content: "";
            left: 0;
            right: 0;
            top: 0;
            margin: auto;
            background: #437FEC;
            border-radius: 15px;
            height: 3.5px;
            width: 35px;
        }
        h3 {
            font-size: 22.5px;
            margin-bottom: 0;
            font-weight: bold;
        }
        span {
            color: $paragraph-color;
            font-weight: 500;
            display: inline-block;
            margin-top: 10px;
        }
    }
    &:hover {
        .team-image {
            .social {
                opacity: 1;
                visibility: visible;
            }
        }
    }
}

.ai-all-team-btn {
    margin-top: 10px;
    text-align: center;
}

.ai-team-shape-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    transform: translateY(-10%) translateX(-5%);
    z-index: -1;
    img {
        animation-name: rotateMe;
        animation-duration: 20s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
}

.ai-team-shape-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    transform: translateY(-10%) translateX(-5%);
    z-index: -1;
    img {
        animation-name: rotateMe;
        animation-duration: 20s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
}


/*================================================
Footer Wrap Area CSS
=================================================*/

.footer-wrap-area {
    background-color: #000642;
    ;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-wrap-shape-1 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    text-align: center;
    opacity: 55%;
}

.footer-wrap-shape-2 {
    position: absolute;
    top: 10%;
    right: 10%;
    transform: translateY(-10%) translateX(-10%);
    z-index: -1;
    animation: animationFramesOne 10s infinite linear;
}

.footer-wrap-shape-3 {
    position: absolute;
    bottom: 15%;
    left: 10%;
    transform: translateY(-15%) translateX(-10%);
    z-index: -1;
    animation: animationFramesOne 20s infinite linear;
}


/*End Style CSS*/