
/* ============================================================== 
    # Template Default Styles
=================================================================== */

body.landing-page-active {
	background-color: var(--white);
    font-family: var(--font-default);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	overflow-x: hidden;
	background-color: var(--white);
	color: var(--color-paragraph);


    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: var(--color-heading);
        font-weight: normal;
        line-height: 1.2;
        font-family: var(--font-heading);
        letter-spacing: 0;
        margin: 0;
        margin-bottom: 25px;
        font-weight: 600;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 27px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    a,
    .btn,
    button {
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
        outline: medium none;
        text-decoration: none;
        font-weight: 600;
    }

    p {
        color: var(--color-paragraph);
        margin: 0 0 25px;
        text-transform: none;
        font-weight: 400;
        font-family: var(--font-default);
    }

    /* Dixor Template Fixes */
    header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999 !important;
        width: 100%;
    }


    /* ============================================================== 
        # Helper CSS
    =================================================================== */

    .container-full {
        padding: 0 15px;
        margin: auto;
        max-width: 1400px;
    }

    @media (min-width: 576px) {
        .container-full {
            max-width: 540px;
            width: 100%;
        }
    }

    @media (min-width: 768px) {
        .container-full {
            max-width: 720px;
            width: 100%;
        }
    }

    @media (min-width: 992px) {
        .container-full {
            max-width: 960px;
            width: 100%;
        }
    }

    @media (min-width: 1200px) {
        .container-full {
            max-width: 95%;
            width: 95%;
        }

        .box-layout {
            width: 94%;
            margin: auto;
            border-radius: 30px;
        }
    }

    .container-fill {
        padding: 0 15px;
        margin: auto;
        max-width: 100%;
    }

    @media (min-width: 576px) {
        .container-fill {
            max-width: 540px;
            width: 100%;
        }
    }

    @media (min-width: 768px) {
        .container-fill {
            max-width: 720px;
            width: 100%;
        }
    }

    @media (min-width: 992px) {
        .container-fill {
            max-width: 960px;
            width: 100%;
        }
    }

    @media (min-width: 1200px) {
        .container-fill {
            width: 100%;
            max-width: 1600px;
            padding-left: 50px;
            padding-right: 50px;
        }
    }

    @media only screen and (max-width: 767px) {
        .row {
            --bs-gutter-x: 1.5rem;
        }
    }

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

    .bg-cover {
        background-position: center center !important;
        background-size: cover !important;
    }

    .bg-fixed {
        background-attachment: fixed !important;
        background-position: center center !important;
        background-size: cover !important;
    }

    .bg-fit {
        background-size: 100% 100% !important;
        background-position: center !important;
    }

    .bg-gray {
        background: var(--bg-gray);
    }

    .bg-dark .bg-gray {
        background: var(--dark-secondary);
    }

    .bg-gray-secondary {
        background: var(--bg-gray-secondary);
    }

    .bg-light {
        background-color: var(--white) !important;
    }

    .bg-dark {
        background-color: var(--dark) !important;
    }

    .bg-dark-secondary {
        background-color: var(--dark-secondary) !important;
    }

    .bg-theme {
        background-color: var(--color-primary);
    }

    .bg-gradient {
        background-color: var(--color-primary);
        background: var(--bg-gradient) !important;
    }

    .bg-gradient-secondary {
        background-color: var(--color-optional);
        background: var(--bg-gradient-reverse) !important;
    }

    .text-light {
        color: var(--white);
    }

    .text-light h1,
    .text-light h2,
    .text-light h3,
    .text-light h4,
    .text-light h5,
    .text-light h6,
    .text-light p,
    .text-light span,
    .text-light a {
        color: var(--white);
    }

    .shadow {
        -webkit-box-shadow: inherit !important;
        box-shadow: inherit !important;
    }

    .shadow.dark {
        position: relative;
        z-index: 1;
    }

    .shadow.dark:after {
        background: var(--dark);
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.5;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    .shadow.dark-hard {
        position: relative;
        z-index: 1;
    }

    .shadow.dark-hard:after {
        background: var(--black) none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.8;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    .shadow.theme {
        position: relative;
        z-index: 1;
    }

    .shadow.theme:after {
        background: var(--color-primary) none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.7;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    .shadow.light {
        position: relative;
        z-index: 1;
    }

    .shadow.light:after {
        background: var(--white) none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.6;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    .default-padding,
    .default-padding-top,
    .default-padding-bottom,
    .default-padding-mx {
        position: relative;
    }

    .default-padding {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    @media only screen and (max-width: 767px) {
        .default-padding {
            padding-top: 60px;
            padding-bottom: 60px;
        }
    }

    .default-padding-big {
        padding: 250px 0;
    }

    @media only screen and (max-width: 767px) {
        .default-padding-big {
            padding: 60px 0;
        }
    }

    .default-padding-top {
        padding-top: 120px;
    }

    @media only screen and (max-width: 767px) {
        .default-padding-top {
            padding-top: 50px;
        }
    }

    .default-padding-bottom {
        padding-bottom: 120px;
    }

    @media only screen and (max-width: 767px) {
        .default-padding-bottom {
            padding-bottom: 50px;
        }
    }

    .default-padding.bottom-less {
        padding-top: 120px;
        padding-bottom: 90px;
    }

    @media only screen and (max-width: 767px) {
        .default-padding.bottom-less {
            padding-top: 50px;
            padding-bottom: 20px;
        }
    }

    .default-padding-bottom.bottom-less {
        margin-bottom: -30px;
    }

    @media only screen and (max-width: 767px) {
        .default-padding-bottom.bottom-less {
            margin-bottom: 0;
            padding-bottom: 20px;
        }
    }

    .default-padding-top.bottom-less {
        margin-bottom: -30px;
    }

    @media only screen and (max-width: 767px) {
        .default-padding-top.bottom-less {
            margin-bottom: -20px;
        }
    }

    @media only screen and (min-width: 1200px) {
        .align-center {
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }
    }

    .relative {
        position: relative;
    }

    .overflow-hidden {
        overflow: hidden;
    }

    .border-top {
        border-top: 1px solid #e7e7e7;
    }

    .border-bottom {
        border-bottom: 1px solid #e7e7e7;
    }

    .border-left {
        border-left: 1px solid #e7e7e7;
    }

    .border-right {
        border-right: 1px solid #e7e7e7;
    }

    .heading {
        font-weight: 600;
        margin-bottom: 25px;
        margin-top: -5px;
        font-size: 42px;
        line-height: 1.3;
    }

    .heading span {
        font-weight: 400;
    }

    .site-heading {
        margin-bottom: 60px;
    }

    .site-heading strong {
        display: inline-block;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

    .title {
        font-weight: 600;
        font-size: 60px !important;
        margin-top: -15px;
    }

    @media (max-width: 767px) {
        .title {
            font-size: 36px !important;
            margin-top: 0;
        }
    }

    .bg-dark .title {
        color: var(--white);
    }

    .site-heading .title {
        margin-bottom: 0;
    }

    .bg-dark .site-heading .title {
        color: var(--white);
    }

    .sub-title {
        text-transform: uppercase;
        color: var(--color-heading);
        font-weight: 700;
        display: inline-block;
        position: relative;
        z-index: 1;
        margin-bottom: 25px;
        border: 1px solid #cccccc;
        padding: 8px 30px;
        border-radius: 30px;
        font-size: 18px;
        max-width: max-content;
    }

    .bg-dark .sub-title {
        font-weight: 600;
        color: #cccccc;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .bg-gradient .sub-title,
    .bg-theme .sub-title {
        font-weight: 600;
        font-size: 18px;
        color: var(--white);
        -webkit-background-clip: inherit;
        background-clip: inherit;
        -webkit-text-fill-color: inherit;
        background: transparent;
        border-color: var(--color-heading);
    }

    @media (max-width: 767px) {
        .sub-title {
            margin-bottom: 15px;
        }
    }

    .site-heading p {
        margin-bottom: 0;
        margin-top: 25px;
        padding: 0 10%;
    }

    .site-heading .devider {
        display: inline-block;
        width: 50px;
        height: 2px;
        background: var(--color-primary);
        position: relative;
        z-index: 1;
        left: 10px;
    }

    .site-heading.light .devider,
    .bg-theme .site-heading .devider,
    .bg-gradient .site-heading .devider,
    .shadow .site-heading .devider,
    .bg-dark .site-heading .devider {
        background: var(--white);
    }

    @media (max-width: 767px) {
        .site-heading p {
            padding: 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .site-heading {
            margin-bottom: 40px;
            text-align: center;
        }

        .site-heading a.btn-circle {
            margin-top: 30px;
            margin-bottom: 10px !important;
        }

        .site-heading .text-end {
            text-align: center !important;
        }
    }

    .heading-left {
        position: relative;
        z-index: 1;
        margin-bottom: 60px;
    }

    .heading-left .heading {
        font-weight: 600;
        margin-bottom: 0;
    }

    .heading-left h2 {
        margin: 0;
    }

    .heading-left p {
        margin: 0;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .heading-left .heading {
            margin-bottom: 40px;
        }
    }

    @media only screen and (max-width: 767px) {
        .heading-left .heading {
            margin-bottom: 15px;
            font-size: 36px;
            line-height: 1.2;
        }
    }

    .heading-left p {
        margin-bottom: 0;
    }

    .heading-left .btn {
        margin-top: 30px;
    }

    @media only screen and (max-width: 767px) {
        .heading-left {
            margin-bottom: 30px;
        }
    }

    .sub-heading {
        text-transform: uppercase;
        color: var(--color-primary);
        font-weight: 600;
        background: var(--bg-gradient-reverse);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
    }

    .shadow .sub-heading {
        -webkit-text-fill-color: var(--white);
        font-weight: 600;
    }

    .bg-gradient .sub-heading {
        color: var(--white);
        background: transparent;
        -webkit-background-clip: inherit;
        background-clip: inherit;
        -webkit-text-fill-color: inherit;
        opacity: 0.9;
    }

    .site-heading.text-light .sub-title,
    .site-heading.text-light .sub-heading {
        -webkit-text-fill-color: inherit;
        color: var(--white);
    }

    @media (min-width: 1024px) {
        .blurry-shape-left {
            position: relative;
            z-index: 1;
        }

        .blurry-shape-left::after {
            position: absolute;
            left: 0;
            bottom: 0;
            content: "";
            height: 200px;
            width: 200px;
            background: var(--color-primary);
            z-index: -1;
            border-radius: 50%;
            filter: blur(120px);
        }

        .blurry-shape-right {
            position: relative;
            z-index: 1;
        }

        .blurry-shape-right::after {
            position: absolute;
            right: 0;
            bottom: 0;
            content: "";
            height: 200px;
            width: 200px;
            background: var(--color-primary);
            z-index: -1;
            border-radius: 50%;
            filter: blur(120px);
        }
    }

    /* ============================================================== 
        # Video Play Button 
    =================================================================== */
    .video-play-button i {
        display: inline-block;
        background: var(--color-primary);
        height: 100px;
        width: 100px;
        line-height: 100px;
        text-align: center;
        border-radius: 50%;
        color: var(--color-heading);
        position: relative;
        font-weight: 100;
        font-size: 35px;
    }

    .video-play-button i::before {
        position: relative;
        left: 3px;
    }

    .video-play-button .effect {
        position: absolute;
        width: 150px;
        height: 150px;
        background: #07071e;
        opacity: 0;
        border-radius: 100%;
        left: 50%;
        top: 50%;
        z-index: -1;
        -webkit-animation: video-play 1500ms ease-out infinite;
        animation: video-play 1500ms ease-out infinite;
    }

    .video-play-button .effect::after {
        position: absolute;
        content: "";
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.2);
        opacity: 0;
        border-radius: 100%;
        left: 50%;
        top: 50%;
        -webkit-animation: video-play 1500ms ease-out infinite;
        animation: video-play 1500ms ease-out infinite;
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }

    .video-play-button .effect::before {
        position: absolute;
        content: "";
        width: 150px;
        height: 150px;
        background: #07071e;
        opacity: 0;
        border-radius: 100%;
        left: 50%;
        top: 50%;
        -webkit-animation: video-play 1500ms ease-out infinite;
        animation: video-play 1500ms ease-out infinite;
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
    }

    .video-play-button.with-text {
        width: auto;
        background: transparent;
    }

    .video-play-button.with-text span {
        position: relative;
        z-index: 1;
    }

    .video-play-button.with-text span i {
        margin-left: 25px;
        margin-right: 30px;
        color: var(--white);
        left: -1px;
    }

    .video-play-button.with-text .effect {
        height: 60px;
        width: 60px;
        left: 0;
        -webkit-animation: inherit;
        animation: inherit;
        background: var(--color-primary);
        top: 0;
        opacity: 1;
        z-index: 1;
    }

    .video-play-button.with-text .effect::before {
        display: none;
    }

    .video-play-button.with-text .effect::after {
        background: var(--color-primary);
        height: 100%;
        width: 100%;
        z-index: inherit;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    @-webkit-keyframes pulse-border {
        0% {
            -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            opacity: 1;
        }

        100% {
            -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            opacity: 0;
        }
    }

    @keyframes pulse-border {
        0% {
            -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            opacity: 1;
        }

        100% {
            -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            opacity: 0;
        }
    }



    /* ============================================================== 
        # Template Animation
    =================================================================== */

    /* Video Paly */
    @-webkit-keyframes video-play {
        0% {
            -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            opacity: 1;
        }

        100% {
            -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            opacity: 0;
        }
    }

    @keyframes video-play {
        0% {
            -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            opacity: 1;
        }

        100% {
            -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            opacity: 0;
        }
    }

    /*Zoom Animation */
    .zoom-animation {
        -webkit-animation: zoom 2000ms ease-out infinite;
        animation: zoom 2000ms ease-out infinite;
    }

    /* Slider Zoom Effect */
    @-webkit-keyframes zoom {
        from {
            -webkit-transform: scale(1, 1);
        }

        to {
            -webkit-transform: scale(1.2, 1.2);
        }
    }

    @keyframes zoom {
        from {
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
        }

        to {
            -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
        }
    }

    /* Spiner Animation */
    .spiner-animation {
        -webkit-animation: spinner 20s infinite linear;
        animation: spinner 20s infinite linear;
    }

    /*Preloader Spiner Animation */
    @-webkit-keyframes spinner {
        0% {
            transform: rotate(0deg);
        }

        50% {
            transform: rotate(180deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes spinner {
        0% {
            transform: rotate(0deg);
        }

        50% {
            transform: rotate(180deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }


    /* Spiner Animation */
    .spiner-reverse-animation {
        -webkit-animation: spinnerReverse 20s infinite linear;
        animation: spinnerReverse 20s infinite linear;
    }

    /*Preloader Spiner Animation */
    @-webkit-keyframes spinnerReverse {
        to {
            -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
        }
    }

    @keyframes spinnerReverse {
        to {
            -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
        }
    }

    /* Infinite Up Down Animation */
    @keyframes UpDown {
        0% {
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }

        50% {
            -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
        }

        100% {
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }
    }

    /* Animation UpDown */
    .updown-animation {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
        animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
        -webkit-animation-name: UpDown;
        animation-name: UpDown;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

    @-webkit-keyframes UpDown {
        0% {
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }

        50% {
            -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
        }

        100% {
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }
    }

    /* Animation Left Right */
    .leftRight-animation {
        -webkit-animation: fadeLeftRight 10s ease-out infinite;
        animation: fadeLeftRight 10s ease-out infinite;
    }

    /* Fade Left Right */
    @keyframes fadeLeftRight {

        0%,
        100% {
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
        }

        50% {
            -webkit-transform: translateX(100px);
            transform: translateX(100px);
        }
    }

    @-webkit-keyframes fadeLeftRight {

        0%,
        100% {
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
        }

        50% {
            -webkit-transform: translateX(100px);
            transform: translateX(100px);
        }
    }

    /* Animation Right Left */
    .rightLeft-animation {
        -webkit-animation: fadeRightLeft 10s ease-out infinite;
        animation: fadeRightLeft 10s ease-out infinite;
    }

    @keyframes fadeRightLeft {

        0%,
        100% {
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
        }

        50% {
            -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
        }
    }

    @-webkit-keyframes fadeRightLeft {

        0%,
        100% {
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
        }

        50% {
            -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
        }
    }

    /* Animation Zoom Up Down */
    .zoomUpDown-animation {
        -webkit-animation: zoomUpDown 10s ease-out infinite;
        animation: zoomUpDown 10s ease-out infinite;
    }

    /* Zoom Up Down */
    @keyframes zoomUpDown {

        0%,
        100% {
            -webkit-transform: scale(0.5);
            transform: scale(0.5);
        }

        50% {
            -webkit-transform: scale(0.7);
            transform: scale(0.7);
        }
    }

    @-webkit-keyframes zoomUpDown {

        0%,
        100% {
            -webkit-transform: scale(0.5);
            transform: scale(0.5);
        }

        50% {
            -webkit-transform: scale(0.8);
            transform: scale(0.8);
        }
    }

    /* Animation Moving */
    .moving-animation {
        -webkit-animation: moving 10s ease-out infinite;
        animation: moving 10s ease-out infinite;
    }

    /* Mooving Animation */
    @-webkit-keyframes moving {
        0% {
            -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
        }

        20% {
            -webkit-transform: translate(0px, -30px);
            transform: translate(0px, -30px);
        }

        50% {
            -webkit-transform: translate(-100px, -30px);
            transform: translate(-100px, -30px);
        }

        70% {
            -webkit-transform: translate(-100px, 0px);
            transform: translate(-100px, 0px);
        }

        100% {
            -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
        }
    }

    @keyframes moving {
        0% {
            -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
        }

        20% {
            -webkit-transform: translate(0px, -30px);
            transform: translate(0px, -30px);
        }

        50% {
            -webkit-transform: translate(-100px, -30px);
            transform: translate(-100px, -30px);
        }

        70% {
            -webkit-transform: translate(-100px, 0px);
            transform: translate(-100px, 0px);
        }

        100% {
            -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
        }
    }

    /* Animation Rotation */
    @keyframes infinite-rotate {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        50% {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @-webkit-keyframes infinite-rotate {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        50% {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    /* Button Border Animation */
    @-webkit-keyframes open {
        0% {
            width: 0;
            height: 0;
        }

        50% {
            width: 100px;
            height: 0;
        }

        100% {
            width: 100px;
            height: 55px;
        }
    }

    @keyframes open {
        0% {
            width: 0;
            height: 0;
        }

        50% {
            width: 100px;
            height: 0;
        }

        100% {
            width: 100px;
            height: 55px;
        }
    }

    @-webkit-keyframes openB {
        0% {
            width: 0px;
        }

        100% {
            width: 100px;
        }
    }

    @keyframes openB {
        0% {
            width: 0px;
        }

        100% {
            width: 100px;
        }
    }

    /* Animation Shine (A shine color will move inside the text) */

    @-webkit-keyframes shine {
        0% {
            background-position: 0;
        }

        60% {
            background-position: 180px;
        }

        100% {
            background-position: 180px;
        }
    }

    @keyframes shine {
        0% {
            background-position: 0;
        }

        60% {
            background-position: 180px;
        }

        100% {
            background-position: 180px;
        }
    }

    @-webkit-keyframes infiniteMove {
        0% {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }

        50% {
            border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        }

        100% {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }
    }

    @keyframes infiniteMove {
        0% {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }

        50% {
            border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        }

        100% {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }
    }

    @-webkit-keyframes infiniteMove2 {
        0% {
            border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
        }

        50% {
            border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
        }

        100% {
            border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
        }
    }

    @keyframes infiniteMove2 {
        0% {
            border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
        }

        50% {
            border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
        }

        100% {
            border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
        }
    }

    .split-text {
        overflow: hidden;
        position: relative;
    }


    /* ============================================================== 
        # Button Styles
    =================================================================== */
    .btn {
        display: inline-block;
        font-weight: 600;
        text-transform: capitalize;
        transition: all 0.35s ease-in-out;
        overflow: hidden;
        border-radius: 7px;
        border: 2px solid transparent;
        -webkit-box-shadow: inherit;
        box-shadow: none !important;
        font-size: 16px;
        letter-spacing: 0;
        padding: 13px 30px;
        background: #E7EDF8;
        position: relative;
        z-index: 1;
    }

    .btn:focus,
    .btn.active {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        border: 2px solid transparent;
    }

    .btn:hover {
        background-color: var(--color-primary);
        color: var(--white);
    }

    .btn.radius {
        border-radius: 6px;
    }

    .btn.btn-border {
        border: 2px solid #dddddd;
        background: transparent;
        position: relative;
        z-index: 1;
        overflow: hidden;
        font-weight: 600;
    }

    .btn.btn-border::after {
        position: absolute;
        top: inherit;
        right: inherit;
        bottom: inherit;
        left: -5%;
        content: "";
        height: 150px;
        width: 115%;
        z-index: -1;
        background-color: var(--dark);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        -webkit-transform: translateY(-45%) skew(25deg) scale(0);
        transform: translateY(-45%) skew(25deg) scale(0);
    }

    .btn.btn-border:hover::after {
        -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
        transform: translateY(-45%) skew(25deg) scale(1.2);
    }

    .btn.btn-border:hover {
        border-color: var(--dark);
    }

    .btn.btn-border.animation::after {
        position: absolute;
        top: 0;
        right: inherit;
        bottom: inherit;
        left: 0;
        content: "";
        height: 100%;
        width: 0;
        z-index: -1;
        background: #e7e7e7;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }

    .btn.btn-border.animation:hover {
        border-color: #e7e7e7;
        color: var(--dark);
    }

    .btn.btn-border.animation:hover::after {
        width: 100%;
    }

    .btn.btn-border-dark {
        border: 2px solid var(--dark);
        background: transparent;
    }

    .btn.btn-border-dark:hover {
        background: var(--dark);
        border-color: var(--dark);
    }

    .btn.btn-border-dark.animation::after {
        position: absolute;
        top: 0;
        right: inherit;
        bottom: inherit;
        left: 0;
        content: "";
        height: 100%;
        width: 0;
        z-index: -1;
        background: var(--dark);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }

    .btn.btn-border-dark.animation:hover {
        border-color: var(--dark);
        color: var(--white);
    }

    .btn.btn-border-dark.animation:hover::after {
        width: 100%;
    }

    .btn.btn-border-theme {
        border: 2px solid var(--color-primary);
        background: transparent;
    }

    .btn.btn-border-theme:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }

    .btn.btn-border-theme.animation::after {
        position: absolute;
        top: 0;
        right: inherit;
        bottom: inherit;
        left: 0;
        content: "";
        height: 100%;
        width: 0;
        z-index: -1;
        background: var(--color-primary);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }

    .btn.btn-border-theme.animation:hover {
        border-color: var(--color-primary);
        color: var(--white);
    }

    .btn.btn-border-theme.animation:hover::after {
        width: 100%;
    }

    .btn.btn-border-light {
        border: 2px solid var(--white);
        background: transparent;
        color: var(--white);
    }

    .btn.btn-border-light:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--dark);
    }

    .btn.btn-border-light.animation::after {
        position: absolute;
        top: 0;
        right: inherit;
        bottom: inherit;
        left: 0;
        content: "";
        height: 100%;
        width: 0;
        z-index: -1;
        background: var(--white);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }

    .btn.btn-border-light.animation:hover {
        border-color: var(--white);
        color: var(--dark);
    }

    .btn.btn-border-light.animation:hover::after {
        width: 100%;
    }

    .btn.btn-border.light {
        color: var(--white);
        border-color: var(--white);
    }

    .btn.btn-border.light::after {
        background: var(--color-primary);
    }

    .btn.btn-border.light:hover {
        border-color: var(--color-primary);
    }

    .btn.btn-gradient {
        border: none;
        color: var(--color-heading);
    }

    .btn.btn-gradient::after {
        position: absolute;
        top: 0;
        right: inherit;
        bottom: inherit;
        left: 0;
        content: "";
        height: 100%;
        width: 100%;
        z-index: -1;
        background-image: linear-gradient(to left, var(--color-primary), var(--color-secondary), var(--color-primary));
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        background-size: 220%;
    }

    .btn.btn-gradient:hover::after {
        background-position: -70% 0;
    }

    .btn.btn-gradient:hover {
        color: var(--color-heading);
    }

    .btn.btn-gradient.active {
        background-position: -70% 0;
    }

    .btn.btn-theme {
        color: var(--color-heading);
        border: none;
        background: var(--color-primary);
    }

    .btn.btn-theme::after {
        position: absolute;
        top: inherit;
        right: inherit;
        bottom: inherit;
        left: -5%;
        content: "";
        height: 150px;
        width: 115%;
        z-index: -1;
        background-color: var(--dark);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        -webkit-transform: translateY(-45%) skew(25deg) scale(0);
        transform: translateY(-45%) skew(25deg) scale(0);
    }

    .bg-dark .btn.btn-theme::after {
        background-color: var(--white);
    }

    .bg-dark .btn.btn-theme:hover {
        color: var(--color-heading);
    }

    .btn.btn-theme:hover {
        color: var(--white);
    }

    .banner-style-four .btn.btn-theme::after {
        position: absolute;
        top: inherit;
        right: inherit;
        bottom: inherit;
        left: -5%;
        content: "";
        height: 150px;
        width: 115%;
        z-index: -1;
        background: var(--white) !important;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        -webkit-transform: translateY(-45%) skew(25deg) scale(0);
        transform: translateY(-45%) skew(25deg) scale(0);
    }

    .btn.btn-theme:hover::after {
        -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
        transform: translateY(-45%) skew(25deg) scale(1.2);
    }

    .banner-style-four .btn.btn-theme:hover {
        color: var(--color-heading) !important;
    }

    button {
        display: inline-block;
        font-weight: 600;
        text-transform: capitalize;
        transition: all 0.35s ease-in-out;
        overflow: hidden;
        border-radius: 7px;
        border: 2px solid transparent;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        font-size: 16px;
        letter-spacing: 0;
        padding: 14px 40px;
        background: #E7EDF8;
        position: relative;
        z-index: 1;
        border: none;
        background: var(--color-primary);
    }

    button:hover {
        color: var(--white);
    }

    .bg-dark button:hover {
        color: var(--color-heading);
    }

    button::after {
        position: absolute;
        top: inherit;
        right: inherit;
        bottom: inherit;
        left: -5%;
        content: "";
        height: 150px;
        width: 115%;
        z-index: -1;
        background-color: var(--dark);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        -webkit-transform: translateY(-45%) skew(25deg) scale(0);
        transform: translateY(-45%) skew(25deg) scale(0);
    }

    button:hover::after {
        -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
        transform: translateY(-45%) skew(25deg) scale(1.2);
    }

    button i {
        margin-right: 4px;
    }

    .btn.btn-theme.secondary {
        color: var(--white);
        border: none;
        background: var(--color-optional);
    }

    .btn.btn-theme.secondary::after {
        position: absolute;
        top: inherit;
        right: inherit;
        bottom: inherit;
        left: -5%;
        content: "";
        height: 150px;
        width: 115%;
        z-index: -1;
        background-color: var(--dark);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        -webkit-transform: translateY(-45%) skew(25deg) scale(0);
        transform: translateY(-45%) skew(25deg) scale(0);
    }

    .text-light .btn.btn-theme.secondary::after {
        background-color: var(--white);
    }

    .text-light .btn.btn-theme.secondary:hover {
        color: var(--color-heading);
    }

    .btn.btn-theme.secondary:hover::after {
        -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
        transform: translateY(-45%) skew(25deg) scale(1.2);
    }

    .btn.btn-theme.hover-light::after {
        background-color: var(--white);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }

    .btn.btn-theme.hover-light:hover {
        color: var(--dark);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }

    .btn.btn-theme.hover-light:hover::after {
        -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
        transform: translateY(-45%) skew(25deg) scale(1.2);
    }

    .btn.btn-light {
        color: var(--color-heading);
        border: none;
        background: var(--white);
        border: 2px solid transparent;
    }

    .btn.btn-light.btn-md {
        padding: 13px 52px;
    }

    .btn.btn-light:hover {
        color: var(--color-heading);
        background: transparent;
        border: 2px solid var(--white);
    }

    .btn.btn-dark {
        color: var(--white);
        background: var(--dark);
        border: none;
    }

    .btn.btn-dark::after {
        position: absolute;
        top: inherit;
        right: inherit;
        bottom: inherit;
        left: -5%;
        content: "";
        height: 150px;
        width: 115%;
        z-index: -1;
        background-color: var(--color-primary);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        -webkit-transform: translateY(-45%) skew(25deg) scale(0);
        transform: translateY(-45%) skew(25deg) scale(0);
    }

    .btn.btn-dark:hover::after {
        -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
        transform: translateY(-45%) skew(25deg) scale(1.2);
    }

    .btn.btn-dark:hover {
        background: var(--color-primary);
        color: var(--color-heading);
    }

    .btn.btn-dark.secondary {
        color: var(--white);
        border: none;
        background: var(--dark);
    }

    .btn.btn-dark.secondary::after {
        position: absolute;
        top: inherit;
        right: inherit;
        bottom: inherit;
        left: -5%;
        content: "";
        height: 150px;
        width: 115%;
        z-index: -1;
        background-color: var(--color-optional);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        -webkit-transform: translateY(-45%) skew(25deg) scale(0);
        transform: translateY(-45%) skew(25deg) scale(0);
    }

    .btn.btn-dark.secondary:hover::after {
        -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
        transform: translateY(-45%) skew(25deg) scale(1.2);
    }

    .btn i {
        position: relative;
        top: 1px;
        margin-left: 5px;
    }

    .btn.text-slide {
        min-width: 150px;
        height: 55px;
        line-height: 55px;
    }

    .btn.text-slide span {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        text-align: center;
    }

    .btn.animate-border {
        overflow: inherit;
        z-index: inherit;
        width: 200px;
        height: 55px;
        line-height: 55px;
        padding: 0;
    }

    .btn.animate-border:hover {
        background: transparent;
        color: var(--dark);
    }

    .btn.animate-border:hover .hover-border::after,
    .btn.animate-border:hover .hover-border::before {
        opacity: 1;
        -webkit-animation: open 0.4s;
        /* Chrome, Safari, Opera */
        animation: open 0.4s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
        animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
        -webkit-animation-direction: normal;
        animation-direction: normal;
    }

    .btn.animate-border:hover .hover-border-bottom::after,
    .btn.animate-border:hover .hover-border-bottom::before {
        opacity: 1;
        -webkit-animation: openB 0.4s;
        /* Chrome, Safari, Opera */
        animation: openB 0.4s;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
        animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
        -webkit-animation-direction: normal;
        animation-direction: normal;
    }

    .btn.animate-border .hover-border {
        position: absolute;
        left: 0;
        top: -1px;
        height: 100%;
        width: 100%;
    }

    .btn.animate-border .hover-border::before {
        position: absolute;
        content: "";
        height: 0;
        width: 0;
        display: block;
        opacity: 0;
        border-top: solid 2px var(--color-primary);
        border-left: solid 2px var(--color-primary);
        right: 98px;
        top: -1px;
    }

    .btn.animate-border .hover-border::after {
        position: absolute;
        content: "";
        height: 0;
        width: 0;
        display: block;
        opacity: 0;
        border-top: solid 2px var(--color-primary);
        border-right: solid 2px var(--color-primary);
        left: 98px;
        top: -1px;
    }

    .btn.animate-border .hover-border-bottom {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
    }

    .btn.animate-border .hover-border-bottom::before {
        position: absolute;
        content: "";
        width: 0;
        display: block;
        opacity: 0;
        height: 55px;
        border-bottom: solid 2px var(--color-primary);
        right: -1px;
        bottom: -2px;
    }

    .btn.animate-border .hover-border-bottom::after {
        position: absolute;
        content: "";
        width: 0;
        display: block;
        opacity: 0;
        height: 100%;
        border-bottom: solid 2px var(--color-primary);
        left: 0;
        bottom: -2px;
    }

    .btn.animated-arrow {
        border: none;
        background: transparent;
        min-width: 14rem;
        height: auto;
        padding: 0;
    }

    .btn.animated-arrow .circle {
        -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: relative;
        display: block;
        margin: 0;
        width: 3.5rem;
        height: 3.5rem;
        background: var(--color-primary);
        border-radius: 2rem;
    }

    .btn.animated-arrow .circle .icon {
        -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        left: 15px;
        width: 1.125rem;
        height: 0.125rem;
        background: none;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .btn.animated-arrow .circle .icon::before {
        position: absolute;
        content: "";
        top: -0.25rem;
        right: 0.0625rem;
        width: 0.625rem;
        height: 0.625rem;
        border-top: 0.125rem solid var(--white);
        border-right: 0.125rem solid var(--white);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .btn.animated-arrow .button-text {
        -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 15px 0;
        margin: 0 0 0 70px;
        color: var(--dark);
        line-height: 2;
        text-align: left;
        width: 100%;
        font-size: 14px;
    }

    .btn.animated-arrow:hover {
        color: var(--white);
    }

    .btn.animated-arrow:hover .circle {
        width: 100%;
    }

    .btn.animated-arrow:hover .circle .icon.arrow {
        background: var(--white);
        -webkit-transform: translate(1.5rem, 0);
        transform: translate(1.5rem, 0);
    }

    .btn.animated-arrow:hover .button-text {
        color: var(--white);
    }

    .btn.circle {
        border-radius: 30px !important;
    }

    .btn-border.dark {
        border: 2px solid;
    }

    .btn-simple {
        line-height: 1;
        text-transform: uppercase;
        display: inline-block;
        color: var(--color-paragraph);
    }

    .btn-simple i {
        transform: rotate(-45deg);
        display: inline-block;
        margin-left: 2px;
    }

    .btn-simple:hover {
        color: var(--color-primary);
    }

    .video-btn i {
        display: inline-block;
        height: 55px;
        width: 55px;
        text-align: center;
        line-height: 55px;
        background: var(--color-primary);
        border-radius: 50%;
        position: relative;
        margin-right: 20px;
        color: var(--white);
    }

    .text-light .video-btn i {
        background: var(--white);
        color: var(--color-primary);
    }

    .video-btn i::after {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 60px;
        height: 60px;
        background: var(--color-primary) repeat scroll 0 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        -webkit-animation: pulse-border 1500ms ease-out infinite;
        animation: pulse-border 1500ms ease-out infinite;
        z-index: -1;
    }

    .text-light .video-btn i::after {
        background: var(--white) repeat scroll 0 0;
    }

    .text-shine {
        background: linear-gradient(to right, var(--dark) 0, var(--white) 10%, var(--color-primary) 20%);
        background-position: 0;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-animation: shine 3s infinite linear;
        animation: shine 3s infinite linear;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-text-size-adjust: none;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        white-space: nowrap;
        padding: 12px 48px;
    }

    .animate-inout {
        background: -webkit-gradient(linear, left top, right top, from(#8A6552), to(#472d20));
        background: linear-gradient(90deg, #8A6552 0%, #472d20 100%);
        color: var(--white);
        font-size: 12px;
        text-transform: capitalize;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        border: solid 2px var(--color-primary);
        cursor: pointer;
    }

    .btn-icon {
        position: relative;
        padding-left: 20px;
    }

    .btn-icon:hover {
        color: var(--color-primary);
    }

    .btn-icon::after {
        position: absolute;
        right: 10px;
        top: 50%;
        content: "";
        height: 2px;
        left: 0;
        background: var(--color-heading);
        transform: translateY(-50%);
        margin-top: -1px;
        transition: all 0.35s ease-in-out;
    }

    .btn-icon:hover::after {
        background: var(--color-primary);
    }

    .btn-icon i {
        font-weight: 600;
    }

    .btn-icon:hover {
        padding-left: 40px;
    }

    .animate-inout span {
        z-index: 1;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        line-height: 20px;
    }

    .animate-inout::before,
    .animate-inout::after {
        width: 0%;
        height: 0%;
        position: absolute;
        content: "";
        border-radius: 100%;
    }

    .animate-inout:after {
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        background-color: var(--white);
    }

    .animate-inout:before {
        -webkit-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        background: var(--color-primary);
    }

    .animate-inout.animate-inout-borde {
        background: transparent;
        color: var(--dark);
    }

    .animate-inout.animate-inout-borde::after {
        background: -webkit-gradient(linear, left top, right top, from(#8A6552), to(#472d20));
        background: linear-gradient(90deg, #8A6552 0%, #472d20 100%);
    }

    .animate-inout.animate-inout-borde:hover {
        color: var(--white);
    }

    .animate-inout.animate-inout-borde:hover::before {
        -webkit-transition: all 0.5s ease-in;
        transition: all 0.5s ease-in;
    }

    .animate-inout.animate-inout-borde:hover::after {
        -webkit-transition: all 0.7s ease-in;
        transition: all 0.7s ease-in;
    }

    .animate-inout:hover {
        color: var(--dark);
    }

    .animate-inout:hover::before,
    .animate-inout:hover::after {
        width: 200px;
        height: 200px;
        border-radius: 4px;
    }

    .animate-inout:hover::before {
        -webkit-transition: all 0.5s ease-in;
        transition: all 0.5s ease-in;
    }

    .animate-inout:hover::after {
        -webkit-transition: all 0.7s ease-in;
        transition: all 0.7s ease-in;
    }

    .btn-md {
        padding: 16px 52px;
        font-size: 17px;
    }

    .btn-md.btn-border {
        padding: 14px 52px;
    }

    .btn-sm {
        padding: 16px 45px;
        font-size: 18px;
    }

    .mfp-close-btn-in .mfp-close::after {
        display: none;
    }

    /* Btn Animation */

    .btn-animation {
        z-index: 1;
        position: relative;
        font-size: 18px;
        display: flex;
        align-items: center;
        margin-left: 10px;
    }

    .bg-dark .btn-animation {
        color: var(--white);
    }

    .btn-animation i {
        display: inline-block;
        height: 55px;
        width: 55px;
        text-align: center;
        line-height: 55px;
        background: var(--dark);
        color: var(--white);
        border-radius: 50%;
        font-weight: 400;
        margin-right: 10px;
        transition: all 0.35s ease-in-out;
        transform: scale(0);
    }

    .bg-dark .btn-animation i {
        background: var(--white);
        color: var(--color-heading);
    }

    .btn-animation:hover {
        margin-left: 0;
        color: var(--color-heading);
    }

    .bg-dark .btn-animation:hover {
        color: var(--white);
    }

    .btn-animation:hover i {
        transform: scale(1);
    }

    .btn-animation::after {
        position: absolute;
        left: -13px;
        top: 0;
        content: "";
        height: 60px;
        width: 60px;
        border: 1px solid #c2bfbf;
        border-radius: 50%;
        transition: all 0.35s ease-in-out;
        transform: scale(1);
        z-index: -1;
    }

    .bg-dark .btn-animation::after {
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .btn-animation:hover::after {
        transform: scale(0);
    }

    .btn-animation span {
        transition: all 0.35s ease-in-out;
        left: -50px;
        position: relative;
        text-transform: uppercase;
        font-weight: 600;
    }

    .btn-animation:hover span {
        left: 0;
    }

    .btn-animation.dark::after {
        border-color: #c5c5c5;
        z-index: -1;
    }

    .btn-animation.dark i {
        background: var(--color-primary);
        color: var(--white);
    }

    .btn-animation.dark:hover {
        color: var(--color-heading);
    }

    @media only screen and (max-width: 767px) {
        .row {
            --bs-gutter-x: 1.5rem;
        }
    }

    a.btn-round-animation {
        display: inline-flex;
        height: 180px;
        width: 180px;
        text-align: center;
        border: 1px solid #cccccc;
        border-radius: 50%;
        font-size: 20px;
        font-weight: 600;
        overflow: hidden;
        position: relative;
        z-index: 1;
        padding: 0 50px;
        text-transform: uppercase;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        line-height: 1.4;
    }

    a.btn-round-animation i {
        display: inline-block;
        transform: rotate(-45deg);
        font-weight: 600;
        margin-bottom: 10px;
    }

    a.btn-round-animation::after {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 0;
        width: 100%;
        background: var(--color-primary);
        z-index: -1;
        transition: all 0.30s ease-in-out;
        border-radius: 50%;
    }

    a.btn-round-animation::before {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 0;
        width: 100%;
        background: var(--bg-gradient);
        z-index: -1;
        transition: all 0.40s ease-in-out;
        border-radius: 50%;
    }

    a.btn-round-animation:hover {
        color: var(--color-heading);
    }

    a.btn-round-animation:hover::before {
        height: 100%;
    }

    a.btn-round-animation:hover::after {
        opacity: 0.4;
        height: 80%;
    }

    .bg-dark a.btn-round-animation.dark {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-style-two {
        display: inline-flex;
        font-size: 24px;
        line-height: 1.2;
        position: relative;
        z-index: 1;
        text-transform: uppercase;
        max-width: max-content;
    }

    .btn-style-two:hover {
        color: var(--color-heading);
    }

    .bg-dark .btn-style-two,
    .bg-dark .btn-style-two:hover {
        color: var(--white);
    }

    .btn-style-two i {
        display: inline-block;
        transform: rotate(-45deg);
        font-weight: 100;
        height: 60px;
        width: 60px;
        text-align: center;
        line-height: 60px;
        background: var(--color-primary);
        color: var(--color-heading);
        border-radius: 50%;
        margin-right: 15px;
        transition: all 0.35s ease-in-out;
        border: 2px solid transparent;
    }

    .btn-style-two:hover i {
        transform: rotate(0);
        background: transparent;
        border: 2px solid var(--color-primary);
    }

    .bg-dark .btn-style-two:hover i {
        color: var(--white);
    }

    .bg-dark,
    .bg-dark-secondary,
    .bg-dark p,
    .bg-dark-secondary p {
        color: #cccccc;
    }

    .bg-gradient p,
    .bg-theme p {
        color: var(--white);
        opacity: 0.9;
    }

    .bg-dark h1,
    .bg-dark h2,
    .bg-dark h3,
    .bg-dark h4,
    .bg-dark h5,
    .bg-dark h6 {
        color: var(--white);
    }

    /* ============================================================== 
        # Nice Select Styles
    =================================================================== */
    .nice-select {
        -webkit-tap-highlight-color: transparent;
        background-color: var(--white);
        border: solid 1px #e8e8e8;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        clear: both;
        cursor: pointer;
        display: block;
        float: left;
        font-family: inherit;
        font-size: 16px;
        font-weight: normal;
        height: 50px;
        line-height: 50px;
        outline: none;
        padding-left: 18px;
        padding-right: 30px;
        position: relative;
        text-align: left !important;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        white-space: nowrap;
        width: 100%;
        margin-bottom: 15px;
    }

    .nice-select:hover {
        border-color: #dbdbdb;
    }

    .nice-select:active,
    .nice-select.open,
    .nice-select:focus {
        border-color: #999999;
    }

    .nice-select::after {
        border-bottom: 2px solid #999999;
        border-right: 2px solid #999999;
        content: '';
        display: block;
        height: 5px;
        margin-top: -6px;
        pointer-events: none;
        position: absolute;
        right: 12px;
        top: 50%;
        -webkit-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        width: 5px;
    }

    .nice-select.open .list {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        overflow-y: auto !important;
        height: auto;
    }

    .nice-select.open ::after {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .nice-select.disabled {
        border-color: #ededed;
        color: #999999;
        pointer-events: none;
    }

    .nice-select.disabled::after {
        border-color: #96aac1;
    }

    .nice-select.wide {
        width: 100%;
    }

    .nice-select.wide .list {
        left: 0 !important;
        right: 0 !important;
    }

    .nice-select.right {
        float: right;
    }

    .nice-select.right .list {
        left: auto;
        right: 0;
    }

    .nice-select.small {
        font-size: 12px;
        height: 36px;
        line-height: 34px;
    }

    .nice-select.small::after {
        height: 4px;
        width: 4px;
    }

    .nice-select.small .option {
        line-height: 34px;
        min-height: 34px;
    }

    .nice-select .list {
        background-color: var(--white);
        border-radius: 5px;
        -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
        box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 4px;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(0.75) translateY(-21px);
        transform: scale(0.75) translateY(-21px);
        -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        z-index: 9;
        width: 100%;
    }

    .nice-select .list:hover .option:not(:hover) {
        background-color: transparent !important;
    }

    .nice-select .option {
        cursor: pointer;
        font-weight: 400;
        line-height: 40px;
        list-style: none;
        min-height: 40px;
        outline: none;
        padding-left: 18px;
        padding-right: 29px;
        text-align: left;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .nice-select .option:hover,
    .nice-select .option.focus,
    .nice-select .option.selected.focus {
        background-color: #f6f6f6;
    }

    .nice-select .option.selected {
        font-weight: 600;
    }

    .nice-select .option.disabled {
        background-color: transparent;
        color: #999999;
        cursor: default;
    }

    .no-csspointerevents .nice-select .list {
        display: none;
    }

    .no-csspointerevents .nice-select.open .list {
        display: block;
    }

    .mfp-iframe-holder .mfp-close {
        color: transparent;
        background: transparent;
    }

    .mfp-iframe-holder .mfp-close::before {
        position: absolute;
        right: 0;
        top: 0;
        height: 20px;
        width: 20px;
        z-index: 1;
        display: block;
        content: "\f00d";
        font-family: "Font Awesome 5 Pro";
        font-weight: 100;
        color: var(--white);
    }

    .split-text .line,
    .split-text .split-parent {
        overflow: hidden;
        display: none;
    }



    /* ============================================================== 
        # Text Scroll Animation 
    =================================================================== */
    .text-scroll-animation .text {
        width: 100%;
        color: rgb(0, 0, 0, 0.4);
        background: linear-gradient(to right, var(--color-heading), var(--color-heading)) no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        background-size: 0%;
        transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        position: relative;
    }

    .bg-dark .text-scroll-animation .text {
        color: rgb(255, 255, 255, 0.2);
        background: linear-gradient(to right, var(--white), var(--white)) no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        background-size: 0%;
        transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
    }

    .bg-theme .text-scroll-animation .text {
        color: rgb(0, 0, 0, 0.6);
        background: linear-gradient(to right, var(--color-heading), var(--color-heading)) no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        background-size: 0%;
        transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
    }



    /* ============================================================== 
        # Banner Styles
    =================================================================== */
    .banner-area {
        height: 100%;
        width: 100%;
        position: relative;
    }

    @media (max-width: 1023px) {
        .banner-area {
            height: auto;
        }

        .shape-right-bottom {
            display: none;
        }
    }

    .banner-area div {
        height: 100%;
    }

    .banner-area div.swiper-slide .row div {
        height: auto;
    }

    .banner-area.top-pad-80 .content {
        padding-top: 80px;
    }

    @media (max-width: 1023px) {
        .banner-area.top-pad-80 .content {
            padding-top: 200px;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-area.top-pad-80 .content {
            padding-top: 140px;
        }
    }

    .banner-area.top-pad-90 .content {
        padding-top: 90px;
    }

    @media (max-width: 1023px) {
        .banner-area.top-pad-90 .content {
            padding-top: 200px;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-area.top-pad-90 .content {
            padding-top: 140px;
        }
    }

    .banner-area.top-pad-100 .content {
        padding-top: 100px;
    }

    @media (max-width: 1023px) {
        .banner-area.top-pad-100 .content {
            padding-top: 200px;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-area.top-pad-100 .content {
            padding-top: 140px;
        }
    }

    .banner-area.top-pad-110 .content {
        padding-top: 110px;
    }

    @media (max-width: 1023px) {
        .banner-area.top-pad-110 .content {
            padding-top: 200px;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-area.top-pad-110 .content {
            padding-top: 140px;
        }
    }

    .banner-area.top-pad-120 .content {
        padding-top: 120px;
    }

    @media (max-width: 1023px) {
        .banner-area.top-pad-120 .content {
            padding-top: 200px;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-area.top-pad-120 .content {
            padding-top: 140px;
        }
    }

    .banner-area.top-pad-130 .content {
        padding-top: 130px;
    }

    @media (max-width: 1023px) {
        .banner-area.top-pad-130 .content {
            padding-top: 200px;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-area.top-pad-130 .content {
            padding-top: 140px;
        }
    }

    .banner-area.top-pad-150 .content {
        padding-top: 150px;
    }

    @media (max-width: 1023px) {
        .banner-area.top-pad-150 .content {
            padding-top: 200px;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-area.top-pad-150 .content {
            padding-top: 140px;
        }
    }

    .banner-area.auto-height {
        height: auto;
    }

    .banner-area.auto-height div {
        height: auto;
    }

    .banner-area.auto-height .content {
        padding: 200px 0;
    }

    @media only screen and (max-width: 767px) {
        .banner-area.auto-height .content {
            padding: 60px 0;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-area.auto-height .content {
            padding: 120px 0;
        }
    }

    .banner-area.auto-height .content .thumb {
        padding-left: 35px;
    }

    @media (max-width: 991px) {
        .banner-area.auto-height .content .thumb {
            padding-left: 0;
            margin-top: 50px;
        }
    }

    .banner-area.auto-height.inc-header-transparent .content {
        padding-top: 250px;
    }

    @media only screen and (max-width: 767px) {
        .banner-area.auto-height.inc-header-transparent .content {
            padding-top: 140px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-area.auto-height.inc-header-transparent .content {
            padding-top: 220px;
        }
    }

    .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb .content .info {
        padding-top: 80px;
    }

    .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb .content .thumb {
        margin-top: 250px;
    }

    @media only screen and (max-width: 767px) {
        .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb .content .thumb {
            margin-top: 30px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb .content .thumb {
            margin-top: 50px;
        }
    }

    .banner-area .content {
        position: relative;
        z-index: 9;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    @media (max-width: 1023px) {
        .banner-area .content {
            padding: 120px 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-area .content {
            padding: 60px 0;
        }
    }

    .banner-area h4 {
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: translate3d(-15%, 0, 0);
        transform: translate3d(-15%, 0, 0);
        opacity: 0;
        visibility: hidden;
    }

    .banner-area h2 {
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
    }

    .banner-area p,
    .banner-area ul {
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
        padding-right: 25%;
        margin: 0;
        visibility: hidden;
    }

    @media (max-width: 1023px) {
        .banner-area p {
            padding-right: 0;
        }
    }

    .banner-area.text-center p {
        padding-left: 13%;
        padding-right: 13%;
    }

    @media (max-width: 1023px) {
        .banner-area.text-center p {
            padding: 0;
        }
    }

    .banner-area .thumb {
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        opacity: 0;
        visibility: hidden;
    }

    .banner-area .button {
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
        visibility: hidden;
        margin-top: 30px;
    }

    .banner-area .banner-slide h4 {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

    .banner-area .banner-slide h2 {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

    .banner-area .banner-slide p,
    .banner-area .banner-slide ul {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

    .banner-area .banner-slide .button {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

    .banner-area .banner-slide .swiper-slide.swiper-slide-active h4 {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 1200ms;
        transition-delay: 1200ms;
    }

    .banner-area .banner-slide .swiper-slide.swiper-slide-active h2 {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 1400ms;
        transition-delay: 1400ms;
    }

    .banner-area .banner-slide .swiper-slide.swiper-slide-active p,
    .banner-area .banner-slide .swiper-slide.swiper-slide-active ul {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 1600ms;
        transition-delay: 1600ms;
    }

    .banner-area .banner-slide .swiper-slide.swiper-slide-active .button {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 1800ms;
        transition-delay: 1800ms;
    }

    .banner-area.double-items .thumb {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

    .banner-area.double-items .swiper-slide.swiper-slide-active .thumb {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 500ms;
        transition-delay: 500ms;
        visibility: visible;
        opacity: 1;
    }

    .banner-area.double-items.bottom-thumb .content {
        padding: 0;
    }

    .banner-area.double-items.bottom-thumb .content .thumb {
        margin-top: 120px;
    }

    @media only screen and (max-width: 767px) {
        .banner-area.double-items.bottom-thumb .content {
            padding: 50px 0;
        }

        .banner-area.double-items.bottom-thumb .content .thumb {
            margin-top: 30px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-area.double-items.bottom-thumb .content {
            padding: 120px 0;
        }

        .banner-area.double-items.bottom-thumb .content .thumb {
            margin-top: 50px;
        }
    }

    .banner-area.zoom-effect .banner-thumb {
        -webkit-transition: 10s ease-out;
        transition: 10s ease-out;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 100%;
    }

    .banner-area.zoom-effect .swiper-slide.swiper-slide-active .banner-thumb {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .banner-area .swiper-notification {
        display: none;
    }

    .banner-area .swiper-slide.swiper-slide-active h4 {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 800ms;
        transition-delay: 800ms;
    }

    .banner-area .swiper-slide.swiper-slide-active h2 {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 1600ms;
        transition-delay: 1600ms;
    }

    .banner-area .swiper-slide.swiper-slide-active p,
    .banner-area .swiper-slide.swiper-slide-active ul {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 2400ms;
        transition-delay: 2400ms;
    }

    .banner-area .swiper-slide.swiper-slide-active .button {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 3200ms;
        transition-delay: 3200ms;
    }

    .banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
        -webkit-transition-delay: 2400ms;
        transition-delay: 2400ms;
    }

    .banner-area .banner-items {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transition-property: -webkit-transform;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-transform: translate3d(0px, 0, 0);
        transform: translate3d(0px, 0, 0);
    }

    .banner-area:hover .swiper-button-prev,
    .banner-area:hover .swiper-button-next {
        opacity: 1;
    }

    .banner-area:hover .swiper-button-prev {
        left: 30px;
        right: auto;
    }

    .banner-area:hover .swiper-button-next {
        right: 30px;
        left: auto;
    }

    .banner-area .swiper-button-prev,
    .banner-area .swiper-button-next {
        height: auto;
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
        opacity: 0;
    }

    .banner-area .swiper-button-prev::after,
    .banner-area .swiper-button-next::after {
        font-size: 28px;
        color: var(--color-heading);
    }

    .banner-area.navigation-circle .swiper-button-prev,
    .banner-area.navigation-circle .swiper-button-next {
        height: 60px;
        width: 60px;
        line-height: 60px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        border: 1px solid var(--color-primary);
    }

    .banner-area.navigation-circle .swiper-button-prev::after,
    .banner-area.navigation-circle .swiper-button-next::after {
        font-size: 16px;
    }

    .banner-area.navigation-right-bottom .swiper-button-prev,
    .banner-area.navigation-right-bottom .swiper-button-next {
        left: auto;
        right: 30px;
        opacity: 1;
        top: auto;
        -webkit-transform: inherit;
        transform: inherit;
        bottom: 50px;
        border-radius: inherit;
    }

    .banner-area.navigation-right-bottom .swiper-button-prev {
        right: 92px;
    }

    .banner-area.navigation-between-bottom .content {
        padding-bottom: 105px;
    }

    @media only screen and (min-width: 829px) and (max-width: 1023px) {
        .banner-area.navigation-between-bottom .content {
            padding-bottom: 220px;
        }
    }

    .banner-area.navigation-between-bottom .swiper-button-prev,
    .banner-area.navigation-between-bottom .swiper-button-next {
        left: auto;
        right: 30px;
        opacity: 1;
        top: auto;
        -webkit-transform: inherit;
        transform: inherit;
        bottom: 30px;
        border-radius: inherit;
    }

    .banner-area.navigation-between-bottom .swiper-button-prev {
        left: 30px;
        right: auto;
    }

    @media only screen and (max-width: 830px) {

        .banner-area .swiper-button-prev,
        .banner-area .swiper-button-next {
            display: none;
        }
    }

    .banner-area.navigation-custom .swiper-button-prev::after {
        font-family: 'ElegantIcons';
        content: "\23";
        font-size: 22px;
    }

    .banner-area.navigation-custom .swiper-button-next::after {
        font-family: 'ElegantIcons';
        content: "\24";
        font-size: 22px;
    }

    .banner-area.navigation-text .swiper-button-prev,
    .banner-area.navigation-text .swiper-button-next {
        opacity: 1;
        top: auto;
        -webkit-transform: inherit;
        transform: inherit;
        left: auto;
        right: 0;
        bottom: 0;
        display: inline-block;
        width: 150px;
        background: rgba(0, 0, 0, 0.2);
        text-align: center;
        height: 100px;
        line-height: 100px;
    }

    @media only screen and (max-width: 830px) {

        .banner-area.navigation-text .swiper-button-prev,
        .banner-area.navigation-text .swiper-button-next {
            display: none;
        }
    }

    .banner-area.navigation-text .swiper-button-prev {
        right: 151px;
    }

    .banner-area.navigation-text .swiper-button-prev::after {
        font-family: var(--font-heading);
        content: "Prev";
        text-transform: uppercase !important;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.6px;
    }

    .banner-area.navigation-text .swiper-button-next::after {
        font-family: var(--font-heading);
        content: "Next";
        text-transform: uppercase !important;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.6px;
    }

    .banner-area.navigation-icon-solid .swiper-button-prev::after,
    .banner-area.navigation-icon-solid .swiper-button-next::after {
        font-size: 30px;
    }

    .banner-area.navigation-custom-large .swiper-button-prev,
    .banner-area.navigation-custom-large .swiper-button-next {
        min-width: 65px;
        height: 30px;
        margin: 0;
    }

    .banner-area.navigation-custom-large .swiper-button-prev::after {
        font-family: "Font Awesome 5 Pro";
        content: "\f104";
        font-weight: 100;
        font-size: 30px;
        position: absolute;
        left: 8px;
        color: var(--white);
    }

    .banner-area.navigation-custom-large .swiper-button-prev::before {
        position: absolute;
        top: 50%;
        right: inherit;
        bottom: inherit;
        left: 12px;
        content: "";
        height: 2px;
        width: 50px;
        z-index: -1;
        background-color: var(--white);
        margin-top: -1px;
    }

    .banner-area.navigation-custom-large .swiper-button-next::after {
        font-family: "Font Awesome 5 Pro";
        content: "\f105";
        font-weight: 100;
        font-size: 30px;
        position: absolute;
        right: 8px;
        color: var(--white);
    }

    .banner-area.navigation-custom-large .swiper-button-next::before {
        position: absolute;
        top: 50%;
        right: 12px;
        bottom: inherit;
        left: inherit;
        content: "";
        height: 2px;
        width: 50px;
        z-index: -1;
        background-color: var(--white);
        margin-top: -1px;
    }

    .banner-area.navigation-right-botom .swiper-button-prev,
    .banner-area.navigation-right-botom .swiper-button-next {
        position: absolute;
        left: auto;
        right: 30px;
        top: auto;
        bottom: 40px;
        opacity: 1;
        -webkit-transform: inherit;
        transform: inherit;
    }

    .banner-area.navigation-right-botom .swiper-button-prev {
        right: 60px;
    }

    .banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev,
    .banner-area.navigation-right-botom.navigation-custom-large .swiper-button-next {
        bottom: 30px;
    }

    .banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev {
        right: 100px;
    }

    .banner-area .swiper-pagination {
        height: auto;
        bottom: 35px;
    }

    .banner-area .swiper-pagination span.swiper-pagination-bullet {
        height: 4px;
        width: 50px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
        border-radius: inherit;
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    .banner-area .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: white;
        height: 7px;
    }

    @media only screen and (max-width: 767px) {
        .banner-area.include-pagination .content {
            padding-bottom: 100px;
        }
    }

    .banner-area .swiper-pagination-fraction span {
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    .banner-area .swiper-pagination-fraction span.swiper-pagination-current {
        font-size: 30px;
        font-family: var(--font-heading);
        font-weight: 600;
    }


    /* Banner Custom CSS */

    .banner-style-one-area {
        padding-top: 250px;
        padding-bottom: 190px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .banner-style-one-heading .thumb {
        float: right;
        max-width: 50%;
        position: relative;
        z-index: 1;
        margin-left: -25%;
    }

    @media (min-width: 1200px) {
        .banner-style-one-heading .thumb {
            margin-right: -7%;
        }

        .banner-style-one-heading .thumb img {
            margin-left: -50%;
            max-width: 150%;
        }
    }

    .banner-style-one-heading .thumb img {
        animation: spinner 60s infinite linear;
    }

    .banner-style-one-heading {
        position: relative;
        z-index: 1;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .banner-style-one-heading h2 {
        font-size: 120px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 0;
        z-index: 9;
        position: relative;
        overflow: hidden;
        float: right;
        line-height: 1;
    }

    .banner-style-one-heading h2:first-child {
        margin-right: -50px;
    }

    .banner-style-one-heading .title-right {
        text-align: left;
        float: left;
        color: transparent;
        -webkit-text-stroke: 2px var(--color-heading);
        font-weight: 900;
    }

    .bg-dark .banner-style-one-heading .title-right {
        color: transparent;
        -webkit-text-stroke: 1px var(--white);
    }

    .banner-style-one-heading .title-center {
        float: right;
    }

    .title-border {
        position: relative;
        z-index: 1;
        font-weight: 500;
        text-transform: uppercase;
    }

    .title-border::after {
        position: absolute;
        top: 50%;
        content: "";
        transform: translateY(-50%);
        height: 2px;
        background: var(--bg-gradient);
        z-index: -1;
        left: 0;
        width: 100%;
    }

    .title-border strong {
        background: var(--white);
        padding-right: 15px;
    }

    .bg-gray .title-border strong {
        background: var(--bg-gradient);
    }

    .bg-dark .title-border strong {
        background: var(--dark);
    }

    .bg-dark .bg-gray .title-border strong {
        background: var(--dark-secondary);
    }

    .banner-style-one-info {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 50px 0;
    }

    .banner-style-one-info .top-info h4 {
        margin-bottom: 10px;
    }

    .banner-style-one-info .top-info p {
        margin: 0;
    }

    .banner-style-one-info .top-info {
        border-bottom: 2px solid;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    /* Banner Two */

    .banner-style-two-area {
        position: relative;
        z-index: 1;
    }

    /* Banner Two */

    .banner-style-two-area {
        position: relative;
        z-index: 1;
        overflow: hidden;
        padding-top: 100px;
    }

    .banner-style-two-area,
    .banner-style-two-area div {
        height: 100%;
    }

    .banner-style-two-area .row div {
        height: auto;
    }

    @media (min-width: 1024px) {
        .banner-style-two-area {
            height: 100vh;
        }
    }

    .banner-style-two-area {
        border-bottom: 1px solid #e7e7e7;
    }

    .bg-dark .banner-style-two-area {
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .banner-style-two-area .align-center {
        align-items: center;
    }

    @media (max-width: 1023px) {

        .banner-style-two-area,
        .banner-style-two-area div {
            height: auto;
        }
    }

    @media only screen and (min-width: 992px) and (max-width: 1023px) {
        .banner-style-two-area {
            padding: 120px 0;
        }
    }

    .banner-style-two-area:before {
        content: '';
        position: absolute;
        z-index: -1;
        top: 107px;
        bottom: 0;
        left: 0;
        right: 0;
        mix-blend-mode: overlay;
        background-image: linear-gradient(var(--dark), transparent 1px), linear-gradient(to right, var(--dark), transparent 1px);
        background-size: 100% 51px, 51px 100%;
        opacity: 0.1;
    }

    .bg-dark .banner-style-two-area:before {
        background-image: linear-gradient(var(--white), transparent 1px), linear-gradient(to right, var(--white), transparent 1px);
        background-size: 100% 51px, 51px 100%;
        opacity: 0.1;
    }

    .banner-two-content .item-title {
        font-size: 100px;
        font-weight: 600;
        line-height: 1;
    }

    .banner-two-content .item-title.text-end {
        margin-bottom: 40px;
    }

    .banner-two-content p {
        margin: 0;
        font-size: 20px;
        font-weight: 500;
    }

    .banner-style-two-area .d-flex img {
        max-width: 200px;
        margin-right: 50px;
        border-radius: 50%;
    }

    .banner-style-two-area .d-flex {
        align-items: center;
    }

    .banner-two-content .item-title strong {
        display: inline-block;
        position: relative;
        z-index: 1;
        padding: 5px 30px;
    }

    .banner-two-content .item-title strong::after {
        position: absolute;
        left: 0;
        top: 12px;
        content: "";
        height: 100%;
        width: 100%;
        background: var(--bg-gradient);
        z-index: -1;
        border-radius: 10px;
    }

    .banner-two-content .item-title strong::before {
        position: absolute;
        right: -25px;
        top: -15px;
        content: "";
        height: 100%;
        width: 100%;
        background: url(/assets/img/shape/4.png);
        background-repeat: no-repeat;
        z-index: -1;
        background-position: right top;
        filter: brightness(0);
    }

    .bg-dark .banner-two-content .item-title strong::before {
        filter: brightness(0) invert(1);
    }

    .curve-text svg {
        fill: var(--white);
        height: 170px;
        width: 170px;
        overflow: inherit;
        animation: spinner 20s infinite linear;
        text-shadow: 1px 1px #000000;
    }

    .curve-text svg {
        border-radius: 50%;
        position: relative;
        z-index: 1;
        font-size: 18px;
        height: 120px;
        width: 120px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .curve-text svg a {
        display: inline-block;
        position: absolute;
        left: 50%;
        top: 50%;
    }

    .curve-text {
        display: inline-block;
        position: relative;
    }

    .curve-text a {
        display: inline-block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        z-index: 9;
        height: 45px;
        width: 45px;
        line-height: 45px;
        text-align: center;
        font-size: 40px;
        -webkit-text-stroke: 1px var(--color-heading);
        color: transparent;
    }

    .bg-dark .curve-text a {
        -webkit-text-stroke: 1px var(--white);
        color: transparent;
    }

    .curve-text svg path {
        fill: none;
    }

    .curve-text svg text {
        fill: var(--color-heading);
        letter-spacing: 8px;
        text-shadow: none;
    }

    .bg-dark .curve-text svg text {
        fill: var(--white);
    }

    .banner-two-thumb {
        position: relative;
    }

    .banner-two-thumb img:nth-child(2) {
        position: absolute;
        left: -77px;
        bottom: -20px;
        width: 150px;
    }

    .banner-two-thumb .curve-text {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 10px;
    }

    .bg-dark .banner-two-content .item-title strong::after {
        background: transparent;
        border: 2px solid;
    }

    .banner-two-content .item-title.text-end img {
        filter: brightness(0);
    }

    .bg-dark .banner-two-content .item-title.text-end img {
        filter: brightness(1);
    }

    /* Banner Three */

    body.fixed-cursor {
        overflow: hidden;
    }

    .banner-style-three-area {
        height: 100%;
    }

    @media (min-width: 1024px) {
        .banner-style-three-area {
            padding-top: 200px;
        }
    }

    .banner-style-three-area .banner-style-three div {
        height: auto;
    }

    .banner-style-three .thumb {
        height: calc(100vh - 390px) !important;
        position: relative;
    }

    .banner-style-three .thumb img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .banner-style-three .thumb .banner {
        position: absolute;
        left: 0;
        top: 0;
        height: 100% !important;
        width: 100%;
    }

    .banner-style-three-area .banner-style-three div .bnner {
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .banner-slide-counter .swiper-slide {
        transition: all 0.35s ease-in-out;
    }

    .banner-style-three .content {
        display: flex;
        justify-content: space-between;
        padding-left: 50px;
        padding-right: 30px;
        z-index: 1;
        position: relative;
        align-items: center;
        transform: translateX(30px);
        transition: all 0.35s ease-in-out;
    }

    .content-info h2 {
        margin-bottom: 10px;
        margin-top: -20px;
    }

    @media (min-width: 992px) {
        .banner-style-three .content {
            opacity: 0;
            visibility: hidden;
        }

        .content-info h2 {
            transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        }

        .banner-slide-counter .swiper-slide.swiper-slide-active .content-info h2 {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            transition-delay: 0.3s;
        }

        .banner-slide-counter .swiper-slide {
            filter: grayscale(1);
            transition: all 0.35s ease-in-out;
        }

        .banner-slide-counter .swiper-slide.swiper-slide-active {
            filter: grayscale(0);
        }
    }

    .banner-style-three .content-info span {
        text-transform: uppercase;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 15px;
        border: 1px solid;
        padding: 3px 15px;
        border-radius: 40px;
    }

    .banner-style-three .content-info span {
        background: var(--bg-gradient);
        color: var(--color-heading);
        border-radius: inherit;
        border: none;
        position: relative;
        top: -35px;
    }

    .banner-style-three .content-info .button {
        position: relative;
        top: -80px;
    }

    .banner-style-three .content .date {
        font-weight: 400;
    }

    .swiper-slide.swiper-slide-active .banner-style-three .content {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition-delay: 0.25s;
    }

    .banner-slide-counter {
        position: relative;
    }

    .banner-style-three-area .banner-style-three {
        height: auto;
    }

    .banner-style-three a:hover {
        color: var(--color-paragraph);
    }

    .bg-dark .banner-style-three a:hover {
        color: var(--white);
    }

    .bg-dark .banner-style-three-area .banner-style-three a {
        color: var(--white);
    }

    .banner-slide-pagination {
        height: auto !important;
        position: absolute;
        left: 50px;
        bottom: 0;
        font-weight: 600;
        font-size: 20px;
    }

    .banner-slide-counter .banner-slide-button-prev,
    .banner-slide-counter .banner-slide-button-next {
        position: absolute;
        left: auto;
        right: 50px;
        top: auto;
        bottom: 0;
        opacity: 1;
        -webkit-transform: inherit;
        transform: inherit;
        height: 30px;
        z-index: 9;
        min-width: 65px;
        cursor: pointer;
    }

    .banner-slide-counter .banner-slide-button-prev {
        right: 150px;
    }

    .banner-slide-counter .banner-slide-button-next::before {
        position: absolute;
        top: 50%;
        right: 12px;
        bottom: inherit;
        left: inherit;
        content: "";
        height: 2px;
        width: 50px;
        z-index: -1;
        background-color: var(--color-heading);
        margin-top: -1px;
    }

    .bg-dark .banner-slide-counter .banner-slide-button-next::before {
        background-color: #ffffff;
    }

    .banner-slide-counter .banner-slide-button-next::after {
        font-family: "Font Awesome 5 Pro";
        content: "\f105";
        font-weight: 100;
        font-size: 30px;
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--color-heading);
    }

    .bg-dark .banner-slide-counter .banner-slide-button-next::after {
        color: var(--white);
    }

    .banner-slide-counter .banner-slide-button-prev::before {
        position: absolute;
        top: 50%;
        right: inherit;
        bottom: inherit;
        left: 12px;
        content: "";
        height: 2px;
        width: 50px;
        z-index: -1;
        background-color: var(--color-heading);
        margin-top: -1px;
    }

    .bg-dark .banner-slide-counter .banner-slide-button-prev::before {
        background-color: #ffffff;
    }

    .banner-slide-counter .banner-slide-button-prev::after {
        font-family: "Font Awesome 5 Pro";
        content: "\f104";
        font-weight: 100;
        font-size: 30px;
        position: absolute;
        left: 8px;
        top: 50%;
        height: auto;
        transform: translateY(-50%);
        color: var(--color-heading);
    }

    .bg-dark .banner-slide-counter .banner-slide-button-prev::after {
        color: var(--white);
    }

    .popup-single-modal .modal-dialog {
        position: relative;
    }

    .popup-single-modal::after {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 0;
        width: 100%;
        background: var(--bg-gray);
        display: block;
        z-index: -1;
        transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .bg-dark .popup-single-modal::after {
        background: var(--dark-secondary);
    }

    .popup-single-modal::before {
        position: absolute;
        left: 0;
        top: 50%;
        content: "";
        height: 0;
        width: 100%;
        background: var(--bg-gray);
        display: block;
        z-index: -1;
        transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .bg-dark .popup-single-modal::before {
        background: var(--dark-secondary);
    }

    .popup-single-modal.show::after,
    .popup-single-modal.show::before {
        height: 50%;
    }

    .popup-single-modal .modal-dialog {
        transition-duration: 1s;
        transition: all 0.15s ease-in-out;
        width: 100%;
        max-width: 100%;
        margin: 0;
        height: 100%;
    }

    .popup-single-modal.show .modal-dialog {
        transition: all 0.30s ease-in-out;
        transition-delay: 0.7s;
    }

    .popup-single-modal {
        display: block !important;
        visibility: hidden;
        opacity: 0;
        transition: all 0.35s ease-in-out;
    }

    .popup-single-modal.show {
        opacity: 1;
        visibility: visible;
    }

    .popup-single-modal .modal-dialog .modal-content {
        margin: 0;
        border: none;
        border-radius: 0;
    }

    .modal-content .modal-body {
        padding: 0;
    }

    .bg-dark .modal-content {
        background: var(--dark);
    }

    /* Banner Four */
    .banner-style-four-carousel {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    .banner-style-four-carousel div {
        height: 100%;
    }

    .banner-style-four-item {
        background-size: cover;
        background-position: center;
    }

    .banner-style-four-bullet {
        box-sizing: border-box;
        position: absolute;
        width: 100%;
        max-height: 100vh;
    }

    .banner-style-four-bullet .swiper-slide {
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }

    .bg-dark .banner-style-four-bullet .swiper-slide {
        opacity: 0.4;
    }

    .banner-style-four-bullet .swiper-slide-active,
    .bg-dark .banner-style-four-bullet .swiper-slide-active {
        opacity: 1;
    }

    .banner-style-four-bullet {
        text-align: center;
    }

    .banner-style-four-bullet .swiper-wrapper {
        position: relative;
        top: -50px;
    }

    .swiper-bullet-item {
        text-align: center;
    }

    ul.project-meta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    ul.project-meta li {
        display: inline-block;
        margin: 0 10px;
        color: var(--color-heading);
        position: relative;
        z-index: 1;
        font-size: 18px;
    }

    .bg-dark ul.project-meta li {
        color: var(--white);
    }

    ul.project-meta li::after {
        position: absolute;
        right: -13px;
        top: 50%;
        content: "";
        height: 4px;
        width: 4px;
        background: var(--color-heading);
        border-radius: 50%;
    }

    .bg-dark ul.project-meta li::after {
        background: var(--white);
    }

    ul.project-meta li:last-child:after {
        display: none;
    }

    .banner-style-four-bullet .swiper-slide .swiper-bullet-item {
        transition: all 0.35s ease-in-out;
        display: inline-block;
        position: relative;
        z-index: 1;
    }

    .banner-style-four-bullet .swiper-slide.swiper-slide-active .swiper-bullet-item {
        margin: 40px 0;
    }

    .banner-style-four-bullet .swiper-slide.swiper-slide-active .swiper-bullet-item {
        transform: scale(1.5);
    }

    .banner-style-four-bullet .swiper-slide .swiper-bullet-item h2 {
        margin: 0;
        text-transform: uppercase;
        font-size: 80px;
        line-height: 1;
    }

    .bg-dark .banner-style-four-bullet .swiper-slide .swiper-bullet-item a {
        color: var(--white);
    }

    ul.project-meta {
        transition: all 0.35s ease-in-out;
    }

    .swiper-slide.swiper-slide-active ul.project-meta {
        transform: translateY(5px);
    }

    .swiper-slide.swiper-slide-active .swiper-bullet-item h2 strong {
        -webkit-text-stroke: 1px var(--color-heading);
        color: transparent;
    }

    .bg-dark .swiper-slide.swiper-slide-active .swiper-bullet-item h2 strong {
        -webkit-text-stroke: 1px var(--color-primary);
        color: transparent;
    }

    .banner-style-four-item img {
        position: absolute;
        width: 25%;
        top: 120px;
        transition: all 0.35s ease-in-out;
        transform: translateX(-200px);
    }

    .banner-style-four-item img:nth-child(2) {
        right: 0;
        bottom: 0;
        top: auto;
        transform: translateY(200px);
    }

    .swiper-slide-active .banner-style-four-item img,
    .swiper-slide-active .banner-style-four-item img:nth-child(2) {
        transform: translate(0);
    }

    @media (min-width: 1700px) {
        .banner-style-four-item img {
            width: 28%;
        }
    }

    /* Banner Five  */

    .banner-style-five-area,
    .banner-style-five-area div {
        height: 100%;
    }

    @media (min-width: 1024px) {
        .banner-style-five-area {
            height: 100vh;
        }
    }

    .banner-style-five-area .content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .banner-style-five-area .content div {
        height: auto;
    }

    .banner-style-five-area .content h2 {
        font-size: 200px;
        text-transform: uppercase;
        font-weight: 700;
        margin: 0;
        line-height: 1;
    }

    .banner-style-five-area .content .info h2:nth-child(2) .line div {
        text-align: right;
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        float: right;
    }

    .banner-style-five-area .bottom-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
        margin-top: 50px;
    }

    .banner-style-five-area .bottom-info>div {
        flex-basis: 50%;
    }

    .user-card .thumb img {
        height: 60px;
        width: 60px;
        border-radius: 50%;
        margin-left: -30px;
        border: 3px solid var(--dark);
    }

    .user-card {
        display: inline-flex;
        align-items: center;
        justify-content: right;
        text-align: left;
    }

    .user-card .thumb {
        margin-left: 30px;
        margin-right: 20px;
    }

    .user-card .fun-fact .counter {
        display: flex;
        align-items: center;
        font-size: 50px;
        line-height: 45px;
        font-weight: 600;
        color: var(--color-heading);
    }

    .bg-dark .user-card .fun-fact .counter {
        color: var(--white);
    }

    .user-card .fun-fact {
        text-align: left;
    }

    .banner-style-five-area .bottom-info p {
        font-size: 20px;
        padding-right: 20%;
        font-weight: 500;
        margin: 0;
    }

    /* Banner Style Six */

    .banner-style-six-area {
        padding-top: 250px;
    }

    .banner-six-thumb {
        border-radius: 10px;
        position: relative;
        z-index: 1;
    }

    .banner-six-right-info {
        background: var(--white);
        padding: 50px;
        border-bottom-left-radius: 20px;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .bg-dark .banner-six-right-info {
        background: var(--dark);
    }

    .banner-six-right-info::after {
        position: absolute;
        left: -20px;
        top: 0;
        content: "";
        height: 20px;
        width: 20px;
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23ffffff"></path></svg>');
        transform: rotate(90deg);
        background-repeat: no-repeat;
    }

    .bg-dark .banner-six-right-info::after {
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23120f12"></path></svg>');
        background-repeat: no-repeat;
    }

    .banner-six-right-info::before {
        position: absolute;
        right: 0;
        bottom: -20px;
        content: "";
        height: 20px;
        width: 20px;
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23ffffff"></path></svg>');
        background-repeat: no-repeat;
        transform: rotate(90deg);
    }

    .bg-dark .banner-six-right-info::before {
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23120f12"></path></svg>');
        background-repeat: no-repeat;
    }

    .banner-six-right-info h2 {
        font-size: 90px;
        line-height: 1.1;
        margin: 0;
    }

    .banner-six-right-info h2 strong {
        display: inline-block;
        position: relative;
        z-index: 1;
        padding: 0 15px;
        color: var(--color-heading);
    }

    .banner-six-right-info h2 strong::after {
        position: absolute;
        left: 0;
        top: 7px;
        content: "";
        height: 100%;
        width: 100%;
        background: var(--bg-gradient);
        z-index: -1;
        border-radius: 10px;
    }

    .banner-six-right-info h2 strong::before {
        position: absolute;
        right: -25px;
        top: -15px;
        content: "";
        height: 100%;
        width: 100%;
        background: url(/assets/img/shape/4.png);
        background-repeat: no-repeat;
        z-index: -1;
        background-position: right top;
    }

    .bg-dark .banner-six-right-info h2 strong::before {
        filter: brightness(0) invert(1);
    }

    .banner-six-right-info .curve-text {
        background: var(--bg-gray);
        border-radius: 50%;
        padding: 15px;
        border: 1px solid;
    }

    .bg-dark .banner-six-right-info .curve-text {
        background: var(--dark-secondary);
    }

    .banner-six-right-info .curve-text svg {
        padding: 10px;
    }

    .banner-six-bottom-info {
        background: var(--white);
        padding: 30px;
        border-top-right-radius: 20px;
        padding-left: 0;
        padding-bottom: 0;
        margin-top: 300px;
        position: relative;
        z-index: 1;
    }

    .bg-dark .banner-six-bottom-info {
        background: var(--dark);
    }

    .banner-six-bottom-info::after {
        position: absolute;
        left: 0;
        top: -20px;
        content: "";
        height: 20px;
        width: 20px;
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23ffffff"></path></svg>');
        transform: rotate(-90deg);
        background-repeat: no-repeat;
    }

    .bg-dark .banner-six-bottom-info::after {
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23120f12"></path></svg>');
        transform: rotate(-90deg);
    }

    .banner-six-bottom-info::before {
        position: absolute;
        right: -20px;
        bottom: 0;
        content: "";
        height: 20px;
        width: 20px;
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23ffffff"></path></svg>');
        background-repeat: no-repeat;
        transform: rotate(-90deg);
    }

    .bg-dark .banner-six-bottom-info::before {
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23120f12"></path></svg>');
        background-repeat: no-repeat;
    }

    .banner-six-bottom-info p {
        margin: 0;
    }

    .banner-six-bottom-info h4 {
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 9px;
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }

    .expert-card {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

    .expert-card .thumb img {
        height: 60px;
        width: 60px;
        border-radius: 50%;
        border: 4px solid var(--dark);
        margin-left: -25px;
    }

    .expert-card .thumb {
        margin-left: 25px;
        margin-right: 20px;
    }

    .expert-card a {
        color: var(--color-heading);
        font-weight: 500;
        display: inline-block;
        text-transform: uppercase;
    }

    .bg-dark .expert-card a {
        color: var(--white);
    }

    .expert-card a i {
        margin-left: 5px;
        transform: rotate(-45deg);
        font-weight: 400;
    }


    /* Banner Seven */
    .banner-seven-bottom-info .container {
        margin-right: calc((100% - 1320px)/ 2);
        width: auto;
        min-width: auto;
        max-width: max-content;
        padding-left: 0;
    }

    .banner-style-seven-area {
        padding-top: 190px;
        padding-bottom: 120px;
    }

    .banner-seven-info {
        margin-bottom: -50px;
        position: relative;
        z-index: 1;
    }

    .banner-seven-thumb {
        display: grid;
        position: relative;
        grid-column-gap: 50px;
        grid-template-columns: 1fr 1fr;
    }

    .banner-seven-info h2 {
        font-size: 90px;
        margin: 0;
        margin-bottom: -20px;
        text-transform: uppercase;
    }

    .banner-seven-info h2.text-end {
        color: var(--color-primary);
    }

    @media (min-width: 1700px) {

        .banner-seven-info {
            margin-bottom: -60px;
        }

        .banner-seven-info h2 {
            font-size: 120px;
        }
    }

    .banner-seven-bottom-info .content {
        display: flex;
        padding-left: 80px;
        margin-top: 100px;
    }

    .banner-seven-bottom-info .content .fun-fact {
        min-width: 180px;
        margin-right: 50px;
        color: var(--color-heading);
    }

    .bg-dark .banner-seven-bottom-info .content .fun-fact {
        color: var(--white);
    }

    .banner-seven-bottom-info .content .fun-fact .counter {
        display: flex;
        align-items: center;
        font-size: 80px;
        font-weight: 600;
        line-height: 1;
    }

    .banner-seven-bottom-info .content p {
        margin: 0;
        font-size: 20px;
    }

    .banner-seven-bottom-info .content .fun-fact .counter .operator {
        font-weight: 600;
    }

    /* Banner Style Eight */

    .banner-style-eight-area {
        padding-top: 175px;
        padding-bottom: 150px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .card-style-one {
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        height: 100%;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.7);
    }

    .card-style-one .bottom {
        color: var(--color-heading);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .card-style-one h4 {
        color: var(--white);
        line-height: 1.4;
        font-size: 24px;
    }

    .card-style-one .bottom a {
        height: 60px;
        width: 60px;
        text-align: center;
        background: var(--color-primary);
        border-radius: 50%;
        color: var(--color-heading);
        line-height: 65px;
    }

    .bg-dark .card-style-one .bottom a {
        background: var(--white);
    }

    .card-style-one .bottom a i {
        transform: rotate(-45deg);
        font-size: 22px;
        font-weight: 100;
    }

    .bg-dark .card-style-one {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
    }

    .bg-dark .card-style-one .bottom {
        color: var(--white);
    }

    .card-style-one .bottom span.medium {
        font-weight: 600;
    }

    .banner-style-eight-heading h2 {
        font-size: 90px;
        text-transform: uppercase;
        line-height: 1;
        margin: 0;
    }

    .banner-style-eight-heading h2.title-right {
        text-align: right;
    }

    .banner-style-eight-heading {
        overflow: hidden;
        margin-bottom: 50px;
        margin-right: -40px;
    }

    .banner-style-eight-area .d-grid {
        grid-template-columns: 1fr 2.75fr;
    }

    .banner-style-eight-area .d-grid h4 {
        position: relative;
        z-index: 1;
        text-transform: uppercase;
        font-size: 26px;
        top: -15px;
    }

    .banner-style-eight-area .d-grid .right {
        border-top: 2px solid;
        padding-top: 50px;
    }

    .bg-dark .banner-style-eight-area .d-grid .right {
        border-top: 2px solid var(--white);
    }

    .banner-style-eight-area .thumb {
        position: relative;
        z-index: -1;
        bottom: -50px;
        max-width: 310px;
        right: 50px;
        transform: rotate(-30deg);
    }

    .banner-style-eight-area .thumb img {
        position: absolute;
    }


    /* Banner Style Nine */
    .banner-style-nine-items {
        padding-top: 240px;
        padding-bottom: 200px;
        position: relative;
        z-index: 1;
    }

    .banner-style-nine-area .content h2 {
        font-size: 170px;
        text-transform: uppercase;
        margin: 0;
        line-height: 1;
        font-weight: 700;
    }

    .banner-style-nine-area .content h2:nth-child(2) {
        text-align: right;
        position: relative;
        z-index: 1;
        float: right;
        padding-left: 170px;
    }

    @keyframes text-animation {

        0%,
        100% {
            clip-path: polygon(0% 45%,
                    16% 44%,
                    33% 50%,
                    54% 60%,
                    70% 61%,
                    84% 59%,
                    100% 52%,
                    100% 100%,
                    0% 100%);
        }

        50% {
            clip-path: polygon(0% 60%,
                    15% 65%,
                    34% 66%,
                    51% 62%,
                    67% 50%,
                    84% 45%,
                    100% 46%,
                    100% 100%,
                    0% 100%);
        }
    }

    .banner-style-nine-area .content h2:nth-child(2) strong {
        position: absolute;
        color: var(--color-primary);
        animation: text-animation 4s ease-in-out infinite;
        right: 0;
        bottom: 0;
        background: var(--color-primary);
        -webkit-background-clip: text;
        background-clip: text;
        background-size: cover;
        background-position: bottom left;
        font-weight: 700;
    }

    .bg-dark .banner-style-nine-area .content h2:nth-child(2) strong {
        font-weight: 600;
    }

    .banner-style-nine-area .content h2:nth-child(2)::after {
        position: absolute;
        left: 0;
        top: 50%;
        content: "";
        height: 100%;
        width: 150px;
        border-radius: 60px;
        transform: translateY(-50%);
        z-index: -1;
        margin-top: 10px;
        background: url(/assets/img/shape/6.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
    }

    .banner-style-nine-area .content p {
        margin: 0;
        font-size: 20px;
        padding-left: 35%;
        margin-top: 30px;
    }

    .banner-style-nine-items>.thumb img {
        position: absolute;
        right: -80px;
        top: 0;
        width: 35%;
        z-index: -1;
    }

    .banner-style-nine-items .text-end {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .banner-style-nine-items .main-content {
        float: left;
        width: 100%;
    }

    .user-card-two .thumb img {
        height: 60px;
        width: 60px;
        border-radius: 50%;
        margin-left: -30px;
        border: 3px solid var(--white);
    }

    .bg-dark .user-card-two .thumb img {
        border: 3px solid var(--dark);
    }

    .user-card-two .thumb {
        margin-left: 30px;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .banner-style-nined-right {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    ul.list-style-two {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    ul.list-style-two li {
        font-size: 20px;
        border-bottom: 1px solid #cccccc;
        margin-bottom: 10px;
        padding-bottom: 10px;
        font-weight: 500;
    }

    ul.list-style-two li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }

    .bg-dark ul.list-style-two li {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .bg-dark ul.list-style-two li {
        color: var(--white);
    }

    .banner-style-nine-items ul.list-style-two {
        margin-top: 20px;
    }

    .user-card-two .thumb i {
        display: inline-block;
        height: 55px;
        width: 55px;
        text-align: center;
        line-height: 55px;
        background: var(--white);
        color: var(--color-heading);
        font-weight: 400;
        border-radius: 50%;
        margin-left: -30px;
    }

    .user-card-two p {
        margin: 0;
        font-size: 20px;
        line-height: 1.2;
        color: var(--color-heading);
        font-weight: 500;
    }

    .bg-dark .user-card-two p {
        color: var(--white);
    }


    /* Banner Style Ten */
    .banner-style-ten-area {
        padding-top: 220px;
        padding-bottom: 150px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .banner-style-ten-area video {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        object-fit: cover;
    }

    .banner-ten-content h2 {
        font-size: 80px;
        text-transform: uppercase;
        margin-top: -15px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .banner-ten-content h2 strong {
        display: inline-block;
        color: var(--color-heading);
        position: relative;
        z-index: 1;
        padding: 0 10px;
    }

    .banner-ten-content h2 strong::after {
        position: absolute;
        left: 0;
        bottom: -3px;
        content: "";
        height: 100%;
        width: 100%;
        background: var(--color-primary);
        z-index: -1;
        border-radius: 10px;
    }

    .banner-style-ten-left-info {
        height: 100%;
        position: relative;
        z-index: 1;
        padding-bottom: 50px;
    }

    .banner-style-ten-left-info img {
        border-radius: 10px;
    }

    .banner-ten-content .fun-fact-style-two {
        margin-top: -105px;
    }

    .fun-fact-style-two {
        display: inline-block;
        background: var(--dark-optional);
        padding: 50px;
        border-radius: 15px;
    }

    .bg-dark .fun-fact-style-two {
        color: var(--white);
    }

    .fun-fact-style-two .counter {
        display: flex;
        align-items: center;
        font-size: 80px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 5px;
        margin-top: -5px;
        color: var(--color-heading);
    }

    .bg-dark .fun-fact-style-two .counter {
        color: var(--color-primary);
    }

    .banner-ten-content p {
        margin: 0;
    }

    .banner-ten-content h2 b {
        display: block;
        width: 100%;
        margin-left: 180px;
    }

    .banner-ten-content p {
        padding-left: 180px;
    }

    .banner-style-ten-left-info .fun-fact-style-two {
        position: absolute;
        right: -80px;
        bottom: 0;
        border: 1px solid #e7e7e7;
        background: var(--white);
    }

    .bg-dark .banner-style-ten-left-info .fun-fact-style-two {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
    }

    /* Cursor Hover Effect */
    .cursor-hover-parent {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
    }

    .banner-style-three-area .cursor-hover-parent div {
        height: auto;
    }

    .cursor {
        position: absolute;
        background: var(--color-primary);
        cursor: pointer;
        width: 16px;
        height: 16px !important;
        border-radius: 100%;
        z-index: 9;
        transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none;
        transform: scale(0.8);
        -webkit-backdrop-filter: blur(1px);
        backdrop-filter: blur(1px);
        text-align: center;
    }

    .cursor.active {
        opacity: 1;
        transform: scale(8);
        background: rgba(0, 0, 0, 0.5);
        transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    }

    .cursor::before {
        content: "\f061";
        font-family: "Font Awesome 5 Pro";
        width: 100%;
        height: 100%;
        position: absolute;
        font-size: 4px;
        top: 50%;
        left: 50%;
        display: block;
        border-radius: 100%;
        opacity: 0;
        color: var(--white);
        text-align: center;
        transform: translate(-50%, -50%) rotate(-45deg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-weight: 600;
    }

    .cursor.active::before {
        opacity: 1;
    }

    .cursor-follower {
        position: absolute;
        width: 40px;
        height: 40px !important;
        border-radius: 100%;
        z-index: 2;
        background-color: #cccccc;
        transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity, 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) background;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none;
        transform: translate(4px, 4px);
    }

    .bg-dark .cursor-follower {
        background-color: rgba(255, 255, 255, 0.7);
    }

    .cursor-follower.active {
        opacity: 0.3;
        transform: scale(0);
        text-align: center;
    }



    /* ============================================================== 
        # Video Scroll
    =================================================================== */
    .home-container {
        display: flex;
        align-items: center;
        position: relative;
        justify-content: center;
        height: 100vh;
        margin: auto;
    }

    .home-container video,
    .home-container img {
        width: 100%;
        position: absolute;
        left: 50%;
        top: 0;
        right: 0;
        bottom: 0;
        object-fit: cover;
        width: 100%;
        transform: translateX(-50%);
        height: 100%;
    }

    @media only screen and (max-width: 767px) {
        .home-container {
            width: 100%;
            height: auto;
            min-height: 350px;
        }
    }

    @media only screen and (max-width: 1023px) {

        .home-container video {
            width: 100%;
            height: auto;
            min-height: 350px;
        }
    }

    .video-content h1 {
        font-size: 34px;
        color: #ffffff;
    }

    .video-content p {
        font-size: 18px;
        color: #000000;
    }


    /* ============================================================== 
        # Video Scroll
    =================================================================== */
    .video-container {
        display: flex;
        align-items: center;
        position: relative;
        justify-content: center;
        height: 100vh;
        margin: auto;
    }

    .video-container video {
        width: 100%;
        position: absolute;
        left: 50%;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        object-fit: cover;
        width: 100%;
        transform: translateX(-50%);
        height: 100%;
    }

    .video-content {
        position: absolute;
        top: 50%;
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    @media only screen and (max-width: 767px) {
        .video-container {
            width: 100%;
        }
    }

    @media only screen and (max-width: 1023px) {

        .video-container video {
            height: 100%;
        }
    }

    .video-content h1 {
        font-size: 34px;
        color: #ffffff;
    }

    .video-content p {
        font-size: 18px;
        color: #000000;
    }

    /* ============================================================== 
        # Brand
    =================================================================== */

    .brand-items {
        position: relative;
        display: flex;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 50px;
        justify-content: center;
    }

    .brand-style-two-area .brand-items {
        padding: 70px 0;
        padding-bottom: 100px;
    }

    .brand-conetnt {
        display: flex;
        align-items: center;
        justify-content: center;
        animation: slide-left 50s linear infinite;
    }

    .brand-conetnt h2 {
        font-size: 120px;
        margin: 0 80px;
        font-weight: 700;
        line-height: 1.4;
        text-decoration: underline;
        color: var(--color-heading);
    }

    .brand-conetnt .item:nth-child(2n) h2 {
        -webkit-text-stroke: 1px var(--color-heading);
        color: transparent;
        border: none;
        text-decoration: none;
    }

    .brand-style-two-area .brand-conetnt .item:nth-child(2n) h2 {
        -webkit-text-stroke: 1px var(--color-heading);
        color: transparent;
        border: none;
        text-decoration: none;
    }

    .brand-conetnt .item {
        position: relative;
    }

    .brand-conetnt .item::after {
        position: absolute;
        right: -40px;
        top: 50%;
        content: "";
        height: 80px;
        width: 80px;
        background: url(/assets/img/shape/12.png);
        background-repeat: no-repeat;
        background-position: right center;
        background-size: contain;
        transform: translateY(-50%);
        margin-top: 15px;
    }

    @-webkit-keyframes slide-left {
        0% {
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
        }

        100% {
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
        }
    }

    @keyframes slide-left {
        0% {
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
        }

        100% {
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
        }
    }

    /* ============================================================== 
        # Brand Style Two
    =================================================================== */
    .brand-style-two .item img {
        padding: 0 60px;
        height: 50px;
        width: auto;
        max-width: max-content;
    }

    .brand-style-two .brand-conetnt .item::after {
        margin: 0;
    }

    .brand-style-two .brand-items {
        padding: 0;
    }

    .brand-heading {
        position: relative;
        z-index: 1;
    }

    .brand-heading::after {
        position: absolute;
        left: 0;
        right: 0;
        content: "";
        height: 2px;
        top: 50%;
        transform: translateY(-50%);
        border-top: 1px solid #cccccc;
        margin-top: 2px;
    }

    .bg-dark .brand-heading::after {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .brand-heading h3 {
        background: var(--white);
        display: inline-block;
        position: relative;
        z-index: 1;
        padding-right: 30px;
        margin: 0;
    }

    .bg-dark .brand-heading h3 {
        background: var(--dark);
    }

    .bg-gray .brand-heading h3 {
        background: var(--bg-gray);
    }

    .bg-dark .bg-gray .brand-heading h3 {
        background: var(--dark-secondary);
    }

    .brand-carousel img {
        max-height: 40px;
    }

    .brand-carousel {
        padding-top: 50px;
    }


    /* ============================================================== 
        # Achivement
    =================================================================== */
    .achivement-thumb img {
        animation: UpDown 4s ease-out infinite;
    }

    .award-item-two {
        display: flex;
        align-items: center;
        background: var(--bg-gray);
        position: relative;
        overflow: hidden;
        margin-bottom: 13px;
    }

    .bg-dark .award-item-two {
        background: var(--dark-optional);
    }

    .award-item-two:last-child {
        border: none;
    }

    .award-item-two i {
        display: inline-block;
        font-size: 50px;
        height: 170px;
        width: 170px;
        text-align: center;
        line-height: 170px;
        border-right: 12px solid var(--white);
        margin-right: 50px;
        color: var(--color-heading);
    }

    .bg-dark .award-item-two i {
        border-right: 12px solid #cccccc;
        color: var(--white);
    }

    .award-item-two .fa-vuejs {
        font-size: 60px;
    }

    .award-item-two h4 {
        margin-bottom: 8px;
        text-align: left;
        text-transform: uppercase;
    }

    .bg-dark .award-item-two i {
        border-color: var(--dark);
        color: var(--white);
    }

    .award-item-two h2 {
        margin: 0;
        position: absolute;
        right: 50px;
        font-weight: 900;
        font-size: 50px;
        color: transparent;
        -webkit-text-stroke: 1px var(--white);
        opacity: 0.2;
    }

    .award-item-two p {
        margin: 0;
    }

    /* ============================================================== 
        # About
    =================================================================== */
    .fun-fact .counter {
        display: flex;
        align-items: center;
    }

    .about-style-one-left-info {
        border-right: 1px solid #dddddd;
    }

    .bg-dark .about-style-one-left-info {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .about-style-one-left-info .counter {
        position: relative;
        font-size: 80px;
        color: var(--color-heading);
        font-weight: 600;
        line-height: 1;
        margin-bottom: 10px;
    }

    .bg-dark .about-style-one-left-info .counter {
        color: var(--white);
    }

    .about-style-one-left-info .fun-fact {
        margin-top: 50px;
    }

    .about-style-one-left-info .fun-fact:first-child {
        margin-top: 0;
    }

    .about-style-one-info h2 {
        margin: 0;
        text-transform: uppercase;
    }

    .about-style-one-info.text-scroll-animation .text {
        color: rgb(0, 0, 0, 0.3);
        background: linear-gradient(to right, var(--color-heading), var(--color-heading)) no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        background-size: 0%;
        transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
    }

    .bg-dark .about-style-one-info.text-scroll-animation .text {
        color: rgb(255, 255, 255, 0.2);
        background: linear-gradient(to right, var(--white), var(--white)) no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        background-size: 0%;
        transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
    }

    .about-style-one-info .d-flex a {
        font-size: 140px;
        margin-right: 30px;
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 1px var(--color-primary);
    }

    .about-style-one-info .d-flex a img {
        height: 120px;
        max-width: max-content;
        position: relative;
        top: -10px;
    }

    .about-style-one-info .d-flex a i {
        transform: rotate(-45deg);
    }

    .video-card .thumb img {
        height: 70px;
        width: 70px;
        border-radius: 50%;
        margin-left: -30px;
        border: 1px solid transparent;
        transform: scale(0.8);
    }

    .video-card .thumb img:nth-child(2) {
        border: 3px solid var(--white);
        transform: scale(1);
    }

    .bg-dark .video-card .thumb img:nth-child(2) {
        border: 3px solid var(--dark);
    }

    .video-card .thumb {
        margin-left: 30px;
        margin-right: 30px;
    }

    .video-card {
        display: flex;
        align-items: center;
    }

    .video-card a i {
        display: inline-block;
        height: 60px;
        width: 60px;
        text-align: center;
        line-height: 60px;
        border: 1px solid #cccccc;
        border-radius: 50%;
        margin-right: 5px;
    }

    .bg-dark .video-card a i {
        border: 1px solid rgba(255, 255, 255, 0.7);
    }

    .video-card a {
        display: inline-block;
        text-transform: uppercase;
        color: var(--color-heading);
    }

    .bg-dark .video-card a {
        color: var(--color-primary);
    }

    .about-style-one-area .bottom-info .thumb {
        position: relative;
        text-align: center;
        padding-bottom: 100px;
        padding-right: 100px;
    }

    .img-container {
        position: relative;
        overflow: hidden;
        padding-top: 55%;
    }

    .img-container img {
        width: auto;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transform: translateX(-50%) scale(1.4);
        transform-origin: 50% 50%;
    }

    .about-style-one-area .bottom-info .thumb .about-skills {
        position: absolute;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 80px;
        text-align: left;
        box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    }

    .bg-dark .about-style-one-area .bottom-info .thumb .about-skills {
        background: var(--dark-optional);
        box-shadow: none;
    }

    .about-style-one-area .bottom-info .thumb .about-skills .progress {
        height: 5px;
        overflow: inherit;
        background: #cccccc;
    }

    .bg-dark .about-style-one-area .bottom-info .thumb .about-skills .progress {
        background: #bebebe;
    }

    .about-style-one-area .bottom-info .thumb .about-skills .progress .progress-bar {
        background: var(--bg-gradient);
        position: relative;
        overflow: inherit;
        color: var(--color-heading);
        font-weight: 600;
        width: 60%;
    }

    .bg-dark .about-style-one-area .bottom-info .thumb .about-skills .progress .progress-bar {
        color: var(--white);
    }

    .about-style-one-area .bottom-info .thumb .about-skills .progress .progress-bar span {
        position: absolute;
        right: 0;
        font-size: 19px;
        top: -40px;
        font-weight: 600;
    }

    .about-style-one-area .bottom-info .thumb .about-skills h5 {
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 17px;
        padding-right: 180px;
    }

    .bg-gray .about-style-one-area .bottom-info .thumb .about-skills h5 {
        color: var(--white);
    }

    .about-style-one-area .bottom-info .thumb .about-skills .progress-box {
        margin-top: 30px;
    }

    .about-style-one-area .bottom-info .thumb .about-skills .progress-box:first-child {
        margin-top: 0;
    }

    /* About Style Two */

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

    .about-style-two-area::after {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 50%;
        background: var(--bg-gray);
        z-index: -1;
    }

    .bg-dark .about-style-two-area::after {
        background: var(--dark-secondary);
    }

    .experience-card {
        border: 2px solid var(--color-primary);
        padding: 80px 60px;
    }

    .bg-dark .experience-card {
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .experience-card .fun-fact .counter {
        font-size: 100px;
        line-height: 80px;
        margin-bottom: 15px;
        font-weight: 700;
        color: transparent;
        -webkit-text-stroke: 1px var(--color-heading);
    }

    .experience-card .fun-fact .counter .operator {
        font-weight: 700;
    }

    .bg-dark .experience-card .counter {
        -webkit-text-stroke: 1px var(--white);
    }

    .experience-card .medium {
        color: var(--color-heading);
        font-weight: 600;
        font-size: 20px;
    }

    .bg-dark .experience-card .medium {
        color: var(--white);
    }


    /* ============================================================== 
        # About Style Three
    =================================================================== */

    .thumb-style-three {
        position: relative;
        z-index: 1;
    }

    .thumb-style-three img {
        width: 100%;
    }

    .thumb-style-three .curve-text {
        position: absolute;
        right: -55px;
        top: 80px;
        text-shadow: 1px 1px var(--dark);
    }

    .about-style-three-info .left {
        min-width: 30%;
    }

    h4.sub-title-border {
        position: relative;
        z-index: 1;
    }

    h4.sub-title-border::after {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 2px;
        width: 100%;
        border-top: 2px solid #cccccc;
        content: "";
        z-index: -1;
        margin-top: 1px;
    }

    .bg-dark h4.sub-title-border::after {
        border-color: var(--white);
    }

    h4.sub-title-border strong {
        background: var(--white);
        padding-right: 15px;
        color: var(--color-heading);
    }

    .bg-gray h4.sub-title-border strong {
        background: var(--bg-gray);
        color: var(--color-heading);
    }

    .bg-dark h4.sub-title-border strong {
        background: var(--dark);
        color: var(--white);
    }

    .bg-dark .bg-gray h4.sub-title-border strong {
        background: var(--dark-secondary);
        color: var(--white);
    }

    .about-style-three-info .d-flex {
        gap: 50px;
    }

    .scroll-shape {
        position: absolute;
        right: -60px;
        bottom: 100px;
        height: 100px;
        width: 60px;
        background: var(--bg-gradient);
    }

    .scroll-shape::after {
        position: absolute;
        left: -60px;
        top: -60px;
        content: "";
        height: 60px;
        width: 60px;
        background: var(--white);
        z-index: -1;
    }

    .orb-container {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
      }

      .circular-text {
        margin: 0 auto;
        border-radius: 50%;
        width: 200px;
        position: relative;
        height: 200px;
        font-weight: bold;
        color: #fff;
        font-weight: 900;
        text-align: center;
        cursor: pointer;
        transform-origin: 50% 50%;
        -webkit-transform-origin: 50% 50%;
      }
      
      .circular-text span {
        position: absolute;
        display: inline-block;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        font-size: 24px;
        transition: all 0.5s cubic-bezier(0, 0, 0, 1);
      }

      .card-swap-container {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: translate(5%, 20%);
        transform-origin: bottom right;
      
        perspective: 900px;
        overflow: visible;
      }
      
      .card {
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 12px;
        border: 1px solid #fff;
        background: #000;
      
        transform-style: preserve-3d;
        will-change: transform;
        backface-visibility: hidden;
      }
      
      @media (max-width: 768px) {
        .card-swap-container {
          transform: scale(0.75) translate(25%, 25%);
        }
      }
      
      @media (max-width: 480px) {
        .card-swap-container {
          transform: scale(0.55) translate(25%, 25%);
        }
      }

    /* ============================================================== 
        # About Style Four
    =================================================================== */

    .about-four-title .title {
        text-transform: uppercase;
    }

    .move-shape {
        height: 100%;
        position: relative;
        z-index: 1;
    }

    .move-shape::after {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 80%;
        width: 100px;
        background: var(--dark);
        z-index: -1;
        opacity: 0.1;
    }

    .bg-dark .move-shape::after {
        background: var(--white);
        opacity: 0.1;
    }

    .move-shape::before {
        position: absolute;
        left: 90px;
        bottom: 0;
        content: "";
        height: 50px;
        width: 50px;
        background: var(--dark);
        opacity: 0.1;
    }

    .bg-dark .move-shape::before {
        background: var(--white);
        opacity: 0.1;
    }

    .about-style-four-info p {
        font-size: 25px;
    }

    .about-style-four-thumb img {
        border-radius: 10px;
    }

    .progress-style-two .progress {
        height: 5px;
        overflow: inherit;
    }

    .progress-style-two .progress .progress-bar {
        background: var(--bg-gradient);
        position: relative;
        overflow: inherit;
        width: 60%;
    }

    .progress-style-two .progress .progress-bar span {
        position: absolute;
        right: 0;
        font-size: 19px;
        top: -40px;
        font-weight: 500;
        color: var(--color-heading);
    }

    .bg-dark .progress-style-two .progress .progress-bar span {
        color: var(--white);
    }

    .progress-style-two h5 {
        font-weight: 500;
        margin-bottom: 15px;
        font-size: 17px;
        padding-right: 100px;
    }

    .progress-style-two .progress-box {
        margin-top: 30px;
    }

    .progress-style-two .progress-box:first-child {
        margin-top: 0;
    }

    .about-style-four-info .progress-style-two {
        margin-left: -35%;
        background: var(--white);
        padding: 80px;
        position: relative;
        z-index: 1;
        border-radius: 10px;
        width: 145%;
    }

    .bg-dark .about-style-four-info .progress-style-two {
        background: var(--dark);
    }

    .about-style-four-info .progress-style-two::after {
        position: absolute;
        left: 71px;
        top: -10px;
        content: "";
        height: 10px;
        width: 10px;
        transform: rotate(180deg);
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23ffffff"></path></svg>');
    }

    .bg-dark .about-style-four-info .progress-style-two::after {
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23120f12"></path></svg>');
    }

    .about-style-four-info .progress-style-two::before {
        position: absolute;
        left: 71px;
        bottom: -10px;
        content: "";
        height: 10px;
        width: 10px;
        transform: rotate(90deg);
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23ffffff"></path></svg>');
    }

    .bg-dark .about-style-four-info .progress-style-two::before {
        background: url('data:image/svg+xml,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-11 h-11"><path d="M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z" fill="%23120f12"></path></svg>');
    }

    .about-style-four-info img {
        border-radius: 10px;
    }


    /* ============================================================== 
        # About Style Five
    =================================================================== */

    .banner-style-five-info {
        position: relative;
        z-index: 1;
    }

    .shape-right-bottom {
        position: absolute;
        right: 2%;
        bottom: 50%;
        max-width: 180px;
    }

    .banner-style-five-info .d-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .about-style-five-content {
        box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
        padding: 50px;
        background-size: 40%;
        background-repeat: no-repeat;
        background-position: center top;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .bg-dark .about-style-five-content {
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        background-size: 40%;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .banner-style-five-info p:last-child {
        margin-bottom: 0;
    }

    .about-style-five-content a {
        display: inline-block;
    }

    .about-style-five-content a i {
        height: 60px;
        width: 60px;
        text-align: center;
        line-height: 60px;
        background: var(--dark);
        color: var(--white);
        font-size: 22px;
        font-weight: 100;
        transform: rotate(-45deg);
        border-radius: 50%;
        margin-top: 10px;
    }

    .bg-dark .about-style-five-content a i {
        background: var(--white);
        color: var(--color-heading);
    }

    ul.list-style-four {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    ul.list-style-four li {
        display: flex;
        padding: 40px 30px;
        position: relative;
        z-index: 1;
    }

    .bg-dark ul.list-style-four li {
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

    ul.list-style-four li img {
        min-width: 60px;
        max-width: 60px;
        margin-right: 20px;
    }

    ul.list-style-four li h4 {
        margin-bottom: 10px;
    }

    ul.list-style-four li p {
        margin: 0;
    }

    ul.list-style-four li:first-child {
        border-top: 1px solid #cccccc;
        border-top-right-radius: 27px;
    }

    .bg-dark ul.list-style-four li:first-child {
        border-top-right-radius: 30px;
    }

    ul.list-style-four li:nth-child(2) {
        border-top-left-radius: 30px;
        border-left: 1px solid #cccccc;
    }

    ul.list-style-four li:last-child {
        border-right: none;
        padding-bottom: 0;
    }

    ul.list-style-four li:first-child::after {
        position: absolute;
        right: 0;
        bottom: 0;
        content: "";
        border-bottom: 1px solid #cccccc;
        height: 50px;
        left: 101px;
        border-bottom-right-radius: 25px;
    }

    ul.list-style-four li:first-child::before {
        height: 100%;
        width: 50px;
        content: "";
        position: absolute;
        right: 0;
        border-right: 1px solid #cccccc;
        top: 0;
        border-radius: 30px;
    }

    .bg-dark ul.list-style-four li:first-child::after {
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

    .bg-dark ul.list-style-four li:first-child::before {
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

    ul.list-style-four li:last-child::after {
        position: absolute;
        left: 0;
        top: -1px;
        content: "";
        height: 50px;
        width: 100px;
        border-top: 1px solid #cccccc;
        border-top-left-radius: 30px;
    }

    .bg-dark ul.list-style-four li:last-child::after {
        border-color: rgba(255, 255, 255, 0.1);
    }

    /* ============================================================== 
        # About
    =================================================================== */

    .about-style-six-area {
        background-size: 45%;
        background-repeat: no-repeat;
        background-position: right top;
    }

    .card-style-two {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
    }

    .card-style-two h4 {
        text-transform: uppercase;
        font-size: 30px;
    }

    ul.list-style-one {
        margin: 0;
        padding: 0;
        list-style: none;
        text-transform: uppercase;
        display: inline-block;
    }

    ul.list-style-one li {
        padding: 5px 0;
        color: var(--color-heading);
    }

    .bg-dark ul.list-style-one li {
        color: var(--white);
    }

    ul.list-style-one li:first-child {
        border-top: none;
        padding-top: 0;
    }

    ul.list-style-one li strong {
        min-width: 100px;
        display: inline-block;
        font-weight: 400;
    }

    .about-style-six-info .d-flex img {
        min-width: 115px;
        width: 115px;
        margin-right: 30px;
    }

    .about-style-six-info .title {
        text-transform: uppercase;
    }

    .thumb-style-four img {
        border-radius: 30px;
    }

    ul.service-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-column-gap: 30px;
        grid-auto-columns: minmax(0, 1fr);
        grid-auto-flow: column;
    }

    ul.service-list a {
        display: block;
        border: 1px solid #e7e7e7;
        padding: 50px 30px;
        border-radius: 10px;
        text-transform: capitalize;
        position: relative;
        background: #fdfdfd;
    }

    .bg-dark ul.service-list a {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
    }

    ul.service-list a i {
        display: inline-block;
        margin-bottom: 30px;
        font-weight: 100;
        font-size: 30px;
        transform: rotate(-45deg);
    }

    ul.service-list li a.active,
    ul.service-list li a:hover {
        background: var(--color-primary);
        color: var(--color-heading);
        border-color: transparent;
    }

    .about-style-six-info ul.service-list {
        margin-left: -230px;
        margin-top: 50px;
    }

    ul.service-list a span {
        display: inline-block;
        height: 45px;
        width: 45px;
        text-align: center;
        line-height: 45px;
        background: #2e2d2d;
        border-radius: 50%;
        margin-right: 15px;
        font-weight: 700;
        position: absolute;
        top: 50px;
        transition: all 0.35s ease-in-out;
        color: var(--white);
    }

    ul.service-list li:first-child a span,
    ul.service-list li a:hover span {
        top: 10px;
        opacity: 0;
        visibility: hidden;
    }

    /* ============================================================== 
        # About Style Seven
    =================================================================== */

    .about-style-seven-area {
        position: relative;
    }

    .about-style-seven-left-info {
        border-right: 1px solid #dddddd;
        padding-right: 30px;
    }

    .bg-dark .about-style-seven-left-info {
        border-color: rgba(255, 255, 255, 0.15);
    }

    .about-style-one-items {
        position: relative;
        z-index: 1;
    }

    .about-style-one-items .shape img {
        position: absolute;
        right: 100%;
        height: 150px;
        bottom: -50px;
        z-index: -1;
        margin-right: 30px;
    }

    .about-style-seven-info .d-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }

    .about-style-seven-info .d-grid .list-style-one {
        margin-bottom: 15px;
    }

    .award-style-one .icon img {
        height: 80px;
    }

    .award-style-one {
        height: 100%;
        background: var(--color-primary);
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        text-align: center;
    }

    .award-style-one .user-card-two .thumb {
        justify-content: center;
    }

    .award-style-one h4 {
        line-height: 1.4;
        color: var(--color-heading);
    }

    .award-style-one .icon img {
        margin-bottom: 30px;
    }

    .award-style-one .user-card-two .thumb {
        margin-bottom: 0;
    }

    .about-style-seven-info h2 {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .about-style-seven-info p {
        margin-bottom: 0;
    }

    /* ============================================================== 
        # Services
    =================================================================== */

    .services-style-one-items {
        position: relative;
        z-index: 1;
    }

    .services-style-one-items .shape {
        position: absolute;
        right: -250px;
        top: -180px;
        z-index: -1;
        max-width: 350px;
    }

    .services-style-one-area {
        overflow: hidden;
    }

    .services-style-one-item {
        padding: 60px 37px;
        border-radius: 30px;
        background: var(--bg-gray);
    }

    .bg-gray .services-style-one-item {
        background: var(--white);
    }

    .bg-dark .services-style-one-item {
        padding: 60px 37px;
        background: linear-gradient(0deg, var(--dark-optional) 20%, #1d1d1d 100%);
        border-radius: 30px;
    }

    .services-style-one-items .single-item {
        padding: 0 1px;
        height: 100%;
    }

    a.btn-full {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #dddddd;
        border-radius: 30px;
        color: var(--color-heading);
        padding: 3px;
        padding-left: 30px;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
    }

    a.btn-full i {
        display: inline-block;
        height: 45px;
        width: 45px;
        line-height: 45px;
        text-align: center;
        border-radius: 50%;
        transform: rotate(-45deg);
        font-size: 16px;
        transition: all 0.35s ease-in-out;
        border: 1px solid #e7e7e7;
    }

    .services-style-one-item.active .btn-full i {
        background: var(--color-primary);
        border-color: transparent;
    }

    .bg-dark a.btn-full {
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
        background: transparent;
    }

    .bg-dark a.btn-full i {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .bg-dark .active a.btn-full i {
        background: var(--white);
        color: var(--color-heading);
    }

    .services-style-one-item img {
        height: 60px;
        margin-bottom: 35px;
    }

    .services-style-one-item p {
        opacity: 0;
        transform: translateY(50px);
        transition: all .5s;
        transition-delay: 0.1s;
        margin: 0;
    }

    .services-style-one-item:hover p,
    .services-style-one-item.active p {
        opacity: 1;
        transform: translateY(0);
    }

    .services-style-one-item h4 {
        transform: translateY(60px);
        transition: all .5s;
    }

    .services-style-one-item:hover h4,
    .services-style-one-item.active h4 {
        transform: translateY(0);
    }

    .services-style-one-item .btn-full {
        margin-top: 35px;
    }


    /* ============================================================== 
        # Service Style Two
    =================================================================== */

    .service-hover-item {
        width: 100%;
        display: block;
        position: relative;
        z-index: 1;
        counter-increment: count;
        padding: 70px 0;
    }

    .service-hover-item::after {
        position: absolute;
        left: -100%;
        top: 0;
        content: "";
        height: 0;
        width: 400%;
        background: linear-gradient(90deg, var(--dark-optional) 20%, #1d1d1d 100%);
        z-index: -1;
        transition: all 0.35s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

    .active .service-hover-item::after,
    .service-hover-item:hover::after {
        height: 100%;
        visibility: visible;
        opacity: 1;
    }

    .service-hover-item::before {
        position: absolute;
        left: -100%;
        top: 0;
        content: "";
        height: 2px;
        width: 400%;
        z-index: -1;
        transition: all 0.35s ease-in-out;
        border-bottom: 1px solid #e7e7e7;
    }

    .bg-dark .service-hover-item::before {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .service-hover-content>div {
        position: relative;
        z-index: 1;
    }

    .service-hover-wrapper {
        position: absolute;
        width: 337px;
        top: 50%;
        left: 185px;
        pointer-events: none;
        transform: translate(-100%, -50%);
        overflow: hidden;
        opacity: 0;
        transform: scale(0.8);
        transition: all .5s ease-out;
    }

    .service-hover-wrapper img {
        height: 100%;
    }

    .service-hover-content {
        display: grid;
        grid-template-columns: 1.5fr 2fr 1fr;
        grid-column-gap: 60px;
    }

    .service-hover-content .arrow {
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .service-hover-items .icon i {
        display: inline-block;
        font-weight: 100;
        font-size: 55px;
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 50px;
    }

    .service-hover-content h2 {
        font-weight: 600;
        margin: 0;
        text-transform: uppercase;
    }

    .active .service-hover-content h2 {
        color: var(--white);
    }

    .service-hover-content ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .service-hover-content ul li {
        font-weight: 600;
        position: relative;
        z-index: 1;
        padding-left: 35px;
        margin-top: 5px;
    }

    .bg-dark .service-hover-content ul li,
    .active .service-hover-content ul li {
        color: var(--white);
    }

    .service-hover-content ul li::after {
        position: absolute;
        left: 0;
        top: 50%;
        content: "";
        text-align: center;
        font-size: 15px;
        font-weight: 100;
        border-top: 1px solid;
        height: 2px;
        width: 20px;
        margin-top: 1px;
    }

    .service-hover-content p {
        margin-bottom: 0;
    }

    .bg-dark .service-hover-content p,
    .active .service-hover-content p {
        color: var(--white);
    }

    .service-hover-content .item-title {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .service-hover-content .item-title span {
        text-transform: uppercase;
        display: block;
        color: var(--color-paragraph);
        margin-bottom: 10px;
    }

    .bg-dark .service-hover-content .item-title span,
    .active .service-hover-content .item-title span {
        color: #cccccc;
    }

    .service-hover-content .arrow .btn-animation {
        left: 50px;
    }

    .service-hover-content .btn-animation::after {
        background: rgba(255, 255, 255, 0.1);
        border: none;
    }

    .service-hover-content .left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .btn-arrow-xl {
        display: inline-block;
        height: 120px;
        width: 120px;
        line-height: 120px;
        border: 1px solid #e7e7e7;
        text-align: center;
        border-radius: 50%;
        transform: rotate(-45deg);
        transition: all 0.35s ease-in-out;
    }

    .bg-dark .btn-arrow-xl {
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .btn-arrow-xl i {
        display: inline-block;
        font-size: 40px;
        line-height: 120px;
        transition: all 0.35s ease-in-out;
        font-weight: 100;
    }

    .service-hover-items>ul>li:hover .btn-arrow-xl {
        transform: rotate(0);
    }

    .active .btn-arrow-xl {
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(0, 0, 0, 0.3);
    }

    .bg-dark .service-hover-items>ul>li:hover .btn-arrow-xl {
        background: #272727;
    }

    .service-hover-items>ul>li:hover .btn-arrow-xl i {
        color: var(--color-primary);
    }

    .service-hover-content .details {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
    }

    .service-hover-content .details span {
        font-size: 70px;
        line-height: 1;
        opacity: 0.3;
        margin-top: 15px;
        margin-bottom: -8px;
    }

    .bg-dark .service-hover-content .details span {
        color: var(--white);
    }

    .service-hover-content .icon img {
        height: 70px;
        margin-bottom: 30px;
    }

    .image-move-bg {
        position: relative;
    }

    .image-move-bg .animation-zoom-banner {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    /* ============================================================== 
        # Service Style Three
    =================================================================== */

    .service-style-three-items li {
        overflow: hidden;
    }

    .service-style-three-items {
        overflow: hidden;
        margin: 0 auto;
        padding: 0;
        list-style: none;
        display: flex;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;
        position: relative;
        gap: 30px;
    }

    .service-style-three-items li {
        cursor: grab;
        position: relative;
        z-index: 1;
        overflow: hidden;
        margin: 0;
        padding: 60px 37px;
        list-style: none;
        width: 30%;
        height: inherit;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        -webkit-transition: all 250ms ease-in-out;
        -moz-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        border: 1px solid #dddddd;
        border-radius: 20px;
    }

    .bg-dark .service-style-three-items li {
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .service-style-three-items li.out::after {
        opacity: 0;
    }

    .service-style-three-items li .service-three-content.big-section {
        width: 100%;
    }

    .service-style-three-items li.out {
        width: 45%;
        background: var(--bg-gray);
    }

    .bg-gray .service-style-three-items li.out {
        background: var(--white);
    }

    .bg-dark .service-style-three-items li.out {
        background: var(--dark-optional);
    }

    .accrdion-portfolio-area .service-three-content {
        display: inline-block;
        height: auto;
        min-height: auto;
        padding: 30px;
        border-radius: 20px;
        position: relative;
        z-index: 1;
    }

    .service-three-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .service-three-content .icon img {
        height: 70px;
        margin-bottom: 50px;
    }

    .service-three-content .info h4 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .bg-dark .service-three-content .info a {
        color: var(--white);
    }

    .service-three-content .info p {
        transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
        opacity: 0;
        transform: translateX(40px);
        margin: 0;
        visibility: hidden;
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    .bg-dark .service-three-content .info p {
        color: #cccccc;
    }

    .service-style-three-items li.out .service-three-content .info p {
        transform: translateX(0px);
        opacity: 1;
        transition-delay: 0.4s;
        visibility: visible;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .bg-dark .service-style-three-items li.out .service-three-content .info h4 a {
        color: var(--white);
    }

    .service-three-content .botom h4 {
        transition: all 035s ease-in-out;
    }

    .service-three-content .bottom h4 {
        transition: all 0.35s ease-in-out;
    }

    .service-style-three-items li.out .service-three-content .bottom h4 {
        display: none;
        transform: translateX(40px);
        visibility: hidden;
    }

    .bg-dark .out a.btn-full {
        border-color: rgba(255, 255, 255, 0.3);
        color: var(--white);
    }

    .bg-dark .out a.btn-full i {
        color: var(--color-heading);
        background: var(--white);
    }

    .service-style-three-items li.out .service-three-content .top h4 {
        display: none;
        transform: translateY(40px);
        visibility: hidden;
        transition-delay: 0.2s;
    }

    .service-three-content .bottom {
        margin-top: 10px;
        font-size: 40px;
        font-weight: 700;
        color: var(--color-heading);
        line-height: 1;
    }

    .bg-dark .service-three-content .bottom {
        color: var(--white);
    }

    /* ============================================================== 
        # Services Style Four
    =================================================================== */
    @media only screen and (min-width: 1400px) {
        .container-stage {
            margin-left: calc((100% - 1320px)/ 2);
            width: auto;
            min-width: auto;
            max-width: inherit;
            padding-right: 0;
        }
    }

    .services-style-four-area {
        position: relative;
    }

    .shape-left-top {
        position: absolute;
        left: 0;
        top: -170px;
        z-index: -1;
        max-width: 30%;
    }

    .cteative-service-item .top {
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        justify-content: space-between;
    }

    .cteative-service-item .top h4 {
        margin: 0;
        line-height: 1.5;
        font-size: 24px;
    }

    .services-item-one-items .services-carousel {
        padding-left: 1px;
    }

    .cteative-service-item {
        padding: 70px 50px;
        border: 1px solid #dddddd;
        position: relative;
        z-index: 1;
        border-radius: 10px;
        overflow: hidden;
        padding-bottom: 60px;
    }

    @media (min-width: 1800px) {
        .cteative-service-item {
            padding: 90px 70px;
            padding-bottom: 60px;
        }
    }

    .bg-dark .cteative-service-item {
        background: var(--dark-optional);
        border: none;
    }

    .bg-dark .cteative-service-item a {
        color: var(--white);
    }

    .cteative-service-item img {
        height: 70px;
        margin-left: 25px;
    }

    .bg-dark .cteative-service-item img {
        filter: brightness(0) invert(1);
    }

    .cteative-service-item .top strong {
        display: block;
        padding-left: 50px;
        position: relative;
        z-index: 1;
    }

    .cteative-service-item .top strong::after {
        position: absolute;
        left: 0;
        top: 50%;
        content: "";
        height: 1px;
        width: 30px;
        border-top: 1px solid;
        z-index: -1;
        margin-top: 1px;
    }

    .bg-dark .cteative-service-item .top strong::after {
        border-top: 1px solid rgba(255, 255, 255, 0.6);
    }

    .cteative-service-item span {
        font-size: 80px;
        line-height: 1;
        font-weight: 800;
        color: transparent;
        -webkit-text-stroke: 1px var(--white);
        opacity: 0.1;
        position: absolute;
        bottom: -12px;
    }

    .services-button-prev,
    .services-button-next {
        height: 60px;
        width: 70px;
        line-height: 60px;
        position: relative;
        z-index: 1;
        cursor: pointer;
    }

    .services-nav .nav-items {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dddddd;
        overflow: hidden;
        border-radius: 30px;
    }

    .bg-dark .services-nav .nav-items {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .services-button-prev {
        border-right: 1px solid #dddddd;
    }

    .bg-dark .services-button-prev {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .services-button-next::after {
        position: absolute;
        left: 50%;
        top: 50%;
        content: "\f061";
        font-family: "Font Awesome 5 Pro";
        transform: translate(-50%, -50%);
        margin-top: 1px;
    }

    .services-button-prev::after {
        position: absolute;
        left: 50%;
        top: 50%;
        content: "\f060";
        font-family: "Font Awesome 5 Pro";
        transform: translate(-50%, -50%);
        margin-top: 1px;
    }

    .services-nav {
        display: flex;
        position: relative;
        right: 0;
        top: -130px;
        justify-content: right;
        padding: 0 30px;
        max-width: 100%;
        margin-bottom: -60px;
    }

    @media (min-width: 576px) {
        .services-nav {
            max-width: 540px;
        }
    }

    @media (min-width: 768px) {
        .services-nav {
            max-width: 720px;
        }
    }

    @media (min-width: 992px) {
        .services-nav {
            max-width: 960px;
        }
    }

    @media (min-width: 1400px) {
        .services-nav {
            max-width: 1320px;
        }
    }


    /* ============================================================== 
        # Services Style Five
    =================================================================== */

    @media (max-width: 1023px) {
        .services-style-five-area {
            overflow: hidden;
        }
    }

    .service-style-five-items .image-hover-item {
        padding: 0;
        margin-top: 50px;
        z-index: 1;
        width: 100%;
        display: block;
        position: relative;
        counter-increment: count;
    }

    .service-style-five-items .image-hover-item img {
        width: 50px;
        margin-right: 30px;
    }

    .service-style-five-items .item-content h2 {
        font-size: 50px;
        margin: 0;
        border-bottom: 2px solid;
        position: relative;
    }

    .service-style-five-items .image-hover-item .image-hover-wrapper {
        position: absolute;
        bottom: 0;
        pointer-events: none;
        overflow: hidden;
        opacity: 0;
        transition: all .5s ease-out;
        left: auto !important;
        z-index: -1;
        margin-top: -25%;
        width: 50%;
        min-width: 250px;
        border-radius: 30px;
    }

    .service-style-five-items .image-hover-item .image-hover-wrapper img {
        width: auto;
    }

    .service-style-five-items .image-hover-item::after {
        display: none;
    }

    .service-style-five-items ul {
        margin: 0 -30px;
        margin-top: -30px;
    }

    .service-style-five-items ul li {
        display: inline-block;
        margin: 0 30px;
    }

    .heading-fixed {
        position: relative;
        z-index: 1;
    }

    .fixed-heading {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        color: transparent !important;
        -webkit-text-stroke: 1px #7d7676;
        text-transform: uppercase;
        font-size: 160px;
        line-height: 0.8;
        font-weight: 900;
        z-index: -1;
        opacity: 0.2;
        margin-top: -50px;
    }

    .image-hover-item .item-content {
        display: flex;
        align-items: center;
    }

    .image-hover-item .item-content span {
        display: inline-block;
        background: var(--bg-gradient);
        height: 60px;
        width: 60px;
        min-width: 60px;
        text-align: center;
        border-radius: 50%;
        line-height: 60px;
        font-weight: 800;
        font-size: 20px;
        margin-right: 20px;
        margin-top: 5px;
        color: var(--color-heading);
    }


    /* ============================================================== 
        # Service Style Six
    =================================================================== */

    @media (min-width: 1024px) {
        .service-style-six-info {
            position: sticky;
            top: 220px;
        }
    }

    .service-style-six-items {
        margin-bottom: 20px;
    }

    .service-style-six-items ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .service-style-six-items ul li {
        display: flex;
        background: linear-gradient(0deg, var(--bg-gray) 20%, #ffffff 100%) !important;
        padding: 80px;
        margin-bottom: 30px;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
        border: 1px solid #e7e7e7;
    }

    .bg-dark .service-style-six-items ul li {
        background: var(--dark) !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .service-style-six-items ul li .icon {
        min-width: 70px;
        margin-right: 50px;
    }

    .bg-dark .service-style-six-items ul li img {
        filter: brightness(0) invert(1);
    }

    .service-style-six-items ul li:last-child .details {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }

    .service-style-six-items ul li:last-child {
        margin-bottom: 0;
    }

    .service-style-six-items ul li .details>span {
        position: absolute;
        bottom: -45px;
        font-size: 80px;
        font-weight: 900;
        color: #595959;
    }

    .service-style-six-items ul li .item-title span {
        text-transform: uppercase;
        display: block;
        margin-bottom: 15px;
        border-bottom: 1px solid;
        padding-bottom: 15px;
        font-weight: 500;
    }

    a.btn-circle {
        display: inline-flex;
        align-items: center;
        text-transform: uppercase;
        position: relative;
        z-index: 1;
        min-width: 160px;
        color: var(--color-heading);
        padding-left: 25px;
        padding-bottom: 42px;
        padding-top: 35px;
    }

    a.btn-circle img {
        height: 12px;
        margin-right: 15px;
        transition: all 0.35s ease-in-out;
    }

    a.btn-circle span {
        position: relative;
    }

    a.btn-circle::after {
        position: absolute;
        left: 0;
        top: 50%;
        content: "";
        height: 110px;
        width: 110px;
        transform: translateY(-50%);
        border-radius: 50%;
        background: url(/assets/img/icon/round-shape.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        transition: all 0.35s ease-in-out;
    }

    .bg-dark a.btn-circle::after {
        filter: brightness(0) invert(1);
    }

    .bg-dark a.btn-circle img {
        filter: brightness(0) invert(1);
    }

    a.btn-circle .button-content {
        position: relative;
        z-index: 1;
    }

    .bg-dark a.btn-circle {
        color: var(--white);
    }

    a.btn-circle:hover::after {
        background: var(--color-primary);
        filter: none;
        transform: translateY(-50%) scale(0.8);
        left: -10px;
    }

    a.btn-circle:hover img {
        filter: none;
    }

    a.btn-circle strong {
        transition: all 0.35s ease-in-out;
    }

    a.btn-circle:hover strong {
        margin-left: 25px;
    }

    .text-end a.btn-circle:hover strong {
        transform: translateX(25px);
        margin-left: 0;
    }

    /* ============================================================== 
        # Services Details
    =================================================================== */

    .feature-list-item {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .feature-list-item li {
        position: relative;
        z-index: 1;
        padding-left: 35px;
        margin-top: 5px;
        font-size: 20px;
        font-weight: 500;
    }

    .feature-list-item li::after {
        position: absolute;
        left: 0;
        top: 9px;
        content: "\f00c";
        font-family: "Font Awesome 5 Pro";
        color: var(--white);
        font-weight: 400;
        font-size: 12px;
        height: 20px;
        width: 20px;
        text-align: center;
        line-height: 21px;
        background: var(--dark);
        border-radius: 50%;
    }

    .bg-dark .feature-list-item li::after {
        color: var(--dark);
        background: var(--white);
    }

    .quick-contact-widget {
        background-size: cover;
        position: relative;
        z-index: 1;
        padding: 60px 37px;
        background-position: center center;
        overflow: hidden;
    }

    .quick-contact-widget .content {
        position: relative;
        z-index: 1;
    }

    .quick-contact-widget h2 {
        font-weight: 600;
        margin-bottom: 10px;
        margin-top: 25px;
    }

    .quick-contact-widget h4 a {
        font-weight: 400;
        border-bottom: 2px solid;
    }

    .quick-contact-widget i {
        display: inline-block;
        height: 60px;
        width: 60px;
        line-height: 60px;
        font-weight: 100;
        background: #ffffff;
        color: var(--color-primary);
        font-size: 22px;
        border-radius: 50%;
        margin-bottom: 40px;
        position: relative;
    }

    .quick-contact-widget i::after {
        position: absolute;
        left: -10px;
        top: -10px;
        content: "";
        height: 80px;
        width: 80px;
        background: #ffffff;
        z-index: -1;
        border-radius: 50%;
        opacity: 0.8;
    }

    .quick-contact-widget .btn-sm {
        font-size: 16px;
    }

    .services-sidebar .single-widget {
        margin-top: 50px;
    }

    .services-sidebar .single-widget .widget-title {
        display: block;
        font-weight: 600;
        margin-bottom: 30px;
        margin-top: -5px;
        position: relative;
        z-index: 1;
        display: inline-block;
        padding-bottom: 15px;
    }

    .services-sidebar .single-widget .widget-title::after {
        position: absolute;
        left: 10px;
        bottom: 0;
        content: "";
        height: 3px;
        width: 50px;
        border-bottom: 3px solid var(--color-primary);
    }

    .services-sidebar .single-widget .widget-title::before {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 3px;
        width: 5px;
        background: var(--dark);
    }

    .services-sidebar .single-widget h4.widget-title {
        font-size: 24px;
    }

    .services-sidebar .single-widget:first-child {
        margin-top: 0;
    }

    .widget-brochure ul {
        padding-left: 0;
        list-style: none;
    }

    .widget-brochure ul li a {
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 15px;
        background: #ffffff;
        padding: 20px 25px;
        border-radius: 5px;
        border: 2px solid #cddff7;
        color: var(--color-heading);
    }

    .widget-brochure ul li a:hover {
        color: var(--color-primary);
    }

    .widget-brochure ul li:first-child a {
        margin-top: 0;
    }

    .widget-brochure ul li:first-child a,
    .widget-brochure ul li a:hover {
        background: var(--dark);
        border-color: transparent;
        color: var(--white);
    }

    .widget-brochure ul li i {
        font-size: 35px;
        font-weight: 100;
        margin-right: 16px;
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        -webkit-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    .widget-brochure ul li:hover i,
    .widget-brochure ul li:first-child i {
        color: var(--white);
    }

    @media only screen and (max-width: 767px) {
        .services-more .row {
            margin-top: -20px;
        }
    }

    .services-more .item {
        padding: 50px;
        overflow: hidden;
        margin-top: 30px;
        position: relative;
        border-radius: 10px;
        background: var(--white);
        box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
    }

    .services-more .item img {
        height: 60px;
        margin-bottom: 30px;
    }

    .services-more .item i::before {
        line-height: inherit;
    }

    @media only screen and (max-width: 767px) {
        .services-more .item {
            margin-top: 30px;
            text-align: center;
        }
    }

    .services-more .item i {
        display: inline-block;
        font-size: 40px;
        margin-bottom: 30px;
        background: var(--color-primary);
        color: var(--white);
        height: 70px;
        width: 70px;
        text-align: center;
        line-height: 70px;
        border-radius: 50%;
    }

    .services-more .item a {
        color: var(--color-heading);
    }

    .services-more .item a:hover {
        color: var(--color-primary);
    }

    .services-more .item p {
        margin: 0;
    }

    .service-single-thumb {
        position: relative;
        z-index: 1;
    }

    .service-single-thumb img {
        margin-bottom: 60px;
    }

    .services-list-widget {
        padding: 50px;
        background-size: cover;
        background-position: center;
        border: 2px solid;
        padding-top: 60px;
    }

    .services-list-widget a {
        display: block;
        padding: 10px 0;
        font-weight: 700;
        position: relative;
        padding-right: 50px;
        font-size: 17px;
    }

    .services-list-widget .current-item a {
        color: var(--color-primary);
        font-weight: 600;
    }

    .services-list-widget li {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .services-list-widget li:first-child {
        border: none;
        margin-top: -10px;
    }

    .services-list-widget a i {
        float: right;
        font-weight: 400;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        margin-top: 1px;
    }

    .services-sidebar .single-widget.text-light .widget-title::after {
        border-color: var(--white);
    }

    .service-fun-fact {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .service-fun-fact .fun-fact {
        flex-basis: 50%;
        border-bottom: 2px solid #dddddd;
        padding-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .bg-dark .service-fun-fact .fun-fact {
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }

    .service-fun-fact .fun-fact .counter {
        font-weight: 700;
        margin: 0;
        font-size: 50px;
        color: var(--color-heading);
    }

    .service-fun-fact .fun-fact .counter .operator {
        font-weight: 700;
    }

    .bg-dark .service-fun-fact .fun-fact .counter {
        color: var(--white);
    }

    .service-fun-fact .fun-fact img {
        height: 70px;
        margin-right: 20px;
    }

    .service-single-features {
        gap: 50px;
        align-items: center;
    }

    .service-single-features p:last-child {
        margin: 0;
    }

    .service-single-features .thumb {
        min-width: 35%;
    }

    .services-details-items .feature-list-item {
        margin-bottom: 30px;
    }

    .d-grid.colums-2 {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 80px;
    }

    .services-details-items .title-border::after {
        height: 2px;
        background: transparent;
        border-top: 1px solid #cccccc;
        margin-top: 1px;
    }

    .bg-dark .services-details-items .title-border::after {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .services-details-items p:last-child {
        margin-bottom: 0;
    }

    .bg-dark .services-more .item {
        background: var(--dark-optional);
        box-shadow: none;
    }

    .bg-dark .services-more .item a {
        color: var(--white);
    }

    .services-more .item h4 {
        margin-bottom: 15px;
    }

    .services-details-items .accordion {
        position: relative;
        z-index: 1;
    }

    .services-details-items .accordion::after {
        position: absolute;
        left: 13px;
        top: 0;
        content: "";
        height: 100%;
        width: 1px;
        border-left: 1px solid #e7e7e7;
        z-index: -1;
    }

    .bg-dark .services-details-items .accordion::after {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .bg-dark .services-details-items .accordion button::after {
        background: var(--dark-secondary) !important;
    }

    .process-style-two {
        display: grid;
        gap: 50px;
        position: relative;
        z-index: 1;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .process-style-two-item p {
        margin: 0;
        opacity: 0.9;
    }

    .process-style-two-item h4 {
        font-size: 24px;
    }

    .process-style-two::after {
        position: absolute;
        left: 5px;
        right: 5px;
        content: "";
        height: 3px;
        border-top: 1px solid #e7e7e7;
        top: 35px;
        z-index: -1;
    }

    .bg-dark .process-style-two::after {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .process-style-two-item span {
        display: inline-block;
        height: 70px;
        width: 70px;
        line-height: 50px;
        background: var(--bg-gradient);
        text-align: center;
        color: var(--color-heading);
        font-weight: 700;
        border-radius: 50%;
        margin-bottom: 30px;
        border: 10px solid var(--white);
    }

    .bg-dark .process-style-two-item span {
        border: 10px solid var(--dark);
    }

    /* ============================================================== 
        # Projects
    =================================================================== */

    .portfolio-style-one-content {
        position: relative;
        padding-left: 100px;
    }

    .portfolio-style-one-item {
        position: relative;
        padding-left: 320px;
    }

    .portfolio-style-one-item .info {
        position: absolute;
        left: 0;
        top: 50%;
        max-width: 60%;
        transform: translateY(-50%);
    }

    .portfolio-style-one-left-info .text-info {
        padding-right: 20%;
    }

    .portfolio-style-one-item .info h2 {
        font-size: 120px;
        margin: 0;
        line-height: 1;
    }

    .bg-dark .portfolio-style-one-item .info h2 {
        text-shadow: -2px 2px 0px var(--dark);
    }

    .portfolio-style-one-item .info h2 a {
        color: var(--color-heading);
    }

    .bg-dark .portfolio-style-one-item .info h2 a {
        color: var(--white);
    }

    .project-swiper-nav {
        position: absolute;
        left: 0;
        top: 50%;
        display: flex;
        height: 250px;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        transform: translateY(-50%);
        z-index: 9;
    }

    .project-swiper-nav>div {
        height: 40px;
        width: 40px;
        background: #343232;
        z-index: 9;
        position: relative;
        border-radius: 50%;
        cursor: pointer;
    }

    .project-swiper-nav>div::after {
        position: absolute;
        top: 7px;
        content: "";
        height: 100%;
        width: 100%;
        font-family: "Font Awesome 5 Pro";
        text-align: center;
        color: var(--white);
    }

    .project-swiper-nav .project-button-next::after {
        content: "\f105";
    }

    .project-swiper-nav .project-button-prev::after {
        content: "\f104";
    }

    .project-style-one-carousel {
        padding-top: 120px;
        margin-top: -120px;
    }

    .project-swiper-nav .project-pagination {
        background: transparent;
        position: absolute;
        line-height: 1.2;
        color: var(--color-heading);
        font-size: 20px;
        font-weight: 600;
        left: 0;
        transform: translateY(-50%);
        top: 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 36px;
        height: 75px;
    }

    .bg-dark .project-swiper-nav .project-pagination {
        color: var(--white);
        background: transparent;
    }

    .portfolio-style-one-item .info h2 strong {
        display: block;
        margin-left: 100px;
    }

    .project-swiper-nav .project-pagination span {
        height: 17px;
        width: 15px;
        border-right: 2px solid var(--color-heading);
        position: absolute;
        transform: rotate(45deg) translateY(-50%);
        top: 50%;
        left: 0;
        margin-top: -5px;
    }

    .bg-dark .project-swiper-nav .project-pagination span {
        border-right: 2px solid var(--white);
    }

    .portfolio-style-one-item .btn-animation {
        margin-left: 115px;
    }

    .portfolio-info-card {
        display: flex;
        border-top: 1px solid #dddddd;
        margin-top: 40px;
        padding-top: 35px;
        padding-left: 20%;
    }

    .bg-dark .portfolio-info-card {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .portfolio-info-card .fun-fact .counter {
        font-size: 60px;
        font-weight: 600;
        line-height: 1;
        margin-top: -8px;
    }

    .portfolio-info-card .fun-fact {
        margin-right: 30px;
        min-width: 40%;
    }

    .portfolio-info-card h5 {
        line-height: 1.4;
        margin: 0;
        font-weight: 500;
        font-size: 28px;
    }

    /* ============================================================== 
        # Portfolio Style Two
    =================================================================== */
    .thumb-zoom {
        overflow: hidden;
    }

    /* ============================================================== 
        # Team
    =================================================================== */
    .text-large {
        font-size: 180px;
        text-transform: uppercase;
        line-height: 150px;
        font-weight: 700;
        margin-bottom: 10px;
        margin-top: -10px;
    }

    .text-large .line {
        padding-bottom: 5px;
    }

    .team-style-one-items .nav-tabs {
        position: relative;
        z-index: 1;
        padding-right: 60px;
        margin: 0;
        border: none;
    }

    .team-style-one-items .nav-tabs::after {
        position: absolute;
        right: 0;
        top: -120px;
        height: 1000%;
        width: 1px;
        border-right: 1px solid #dddddd;
    }

    .bg-dark .team-style-one-items .nav-tabs::after {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .team-style-one-items {
        position: relative;
        z-index: 1;
        padding-top: 120px;
    }

    .team-style-one-items::after {
        position: absolute;
        left: -100%;
        top: 0;
        content: "";
        height: 1px;
        width: 500%;
        border-top: 1px solid #dddddd;
    }

    .bg-dark .team-style-one-items::after {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .team-style-one-heading {
        border-top: 1px solid #dddddd;
        padding-top: 70px;
    }

    .bg-dark .team-style-one-heading {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .team-style-one-area {
        height: 100%;
        border-bottom: 1px solid #dddddd;
    }

    .bg-dark .team-style-one-area {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .team-style-one-items .nav-tabs li.nav-item {
        display: block;
    }

    .team-style-one-top .title {
        margin: 0;
    }

    .team-style-one-top {
        margin-bottom: 60px;
    }

    .team-style-one-items .nav-tabs li.nav-item .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 28px 30px;
        margin-top: 30px;
        color: var(--color-heading);
        border-radius: 10px;
        box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
        background: var(--white);
        border: none;
    }

    .bg-dark .team-style-one-items .nav-tabs li.nav-item .nav-link {
        color: var(--white);
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }

    .team-style-one-items .nav-tabs li.nav-item .nav-link strong {
        font-size: 24px;
        font-weight: 600;
        display: block;
    }

    .team-style-one-items .nav-tabs li.nav-item .nav-link span {
        color: var(--color-paragraph);
        font-weight: 500;
        font-size: 18px;
    }

    .team-style-one-items .nav-tabs li.nav-item:first-child .nav-link {
        margin-top: 0;
    }

    .team-style-one-items .nav-tabs li.nav-item .nav-link.active {
        background: var(--color-primary);
        color: var(--color-heading);
        border-color: transparent;
        box-shadow: none;
    }

    .team-style-one-items .nav-tabs li.nav-item .nav-link::after {
        display: none;
    }

    .bg-dark .team-style-one-items .nav-tabs li.nav-item .nav-link span {
        color: #cccccc;
    }

    .team-style-one-items .nav-tabs li.nav-item .nav-link.active span {
        color: var(--color-heading);
    }

    .team-style-one-items .nav-tabs li.nav-item .nav-link.active h4 {
        color: var(--white);
    }

    .team-style-one-item {
        overflow: hidden;
        border-radius: 10px;
    }

    .team-style-one-item .info {
        padding: 30px;
        overflow: hidden;
        background: var(--bg-gray-secondary);
    }

    .bg-gray .team-style-one-item .info {
        background: var(--white);
    }

    .team-style-one-item .info h4 {
        margin-bottom: 5px;
    }

    .bg-dark .team-style-one-item .info h4 a {
        color: var(--white);
    }

    .team-style-one-item .info span {
        color: var(--color-heading);
    }

    .bg-dark .team-style-one-item .info span {
        color: #cccccc;
    }

    .bg-dark .team-style-one-item .info {
        background: linear-gradient(0deg, var(--dark-optional) 0%, #121010 100%);
    }

    .team-style-one-item .thumb {
        position: relative;
        z-index: 1;
    }

    .team-style-one-item .thumb a>img {
        transition: all 0.35s ease-in-out;
    }

    .bg-dark .team-style-one-item .thumb a>img {
        filter: grayscale(1);
    }

    .bg-dark .team-style-one-item:hover .thumb a>img {
        filter: grayscale(0);
    }

    .social-overlay .icon {
        background: var(--white);
        border-radius: 60px;
        border: 10px solid var(--bg-gray-secondary);
        position: relative;
        z-index: 1;
    }

    .bg-gray .social-overlay .icon {
        background: var(--white);
        border: 10px solid var(--white);
    }

    .social-overlay .icon::before {
        position: absolute;
        left: -28px;
        bottom: 22px;
        content: "";
        height: 40px;
        width: 22px;
        border-bottom-right-radius: 20px;
        box-shadow: 0 20px 0 0 var(--bg-gray-secondary);
    }

    .bg-gray .social-overlay .icon::before {
        box-shadow: 0 20px 0 0 var(--white);
    }

    .social-overlay .icon::after {
        position: absolute;
        right: -17px;
        bottom: 22px;
        content: "";
        height: 27px;
        width: 8px;
        border-bottom-left-radius: 10px;
        box-shadow: 0 20px 0 0 var(--bg-gray-secondary);
    }

    .bg-gray .social-overlay .icon::after {
        box-shadow: 0 20px 0 0 var(--white);
    }

    .bg-gray .social-overlay .icon::before {
        box-shadow: 0 20px 0 0 var(--white);
    }

    .social-overlay {
        position: absolute;
        right: 50px;
        bottom: -32px;
        z-index: 1;
    }

    .social-overlay .icon i {
        display: inline-block;
        height: 45px;
        width: 45px;
        line-height: 45px;
        background: var(--dark);
        color: var(--white);
        border-radius: 50%;
        cursor: pointer;
        font-weight: 400;
    }

    .team-style-one-item h4 {
        margin: 0;
    }

    .color-style-two .social-overlay .icon i {
        background: var(--color-style-two);
    }

    .color-style-three .social-overlay .icon i {
        background: var(--color-style-three);
    }

    .social-overlay ul li {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    .social-overlay ul li a {
        display: inline-block;
    }

    .social-overlay ul li a i {
        display: inline-block;
        height: 45px;
        width: 45px;
        line-height: 45px;
        background: var(--color-primary);
        color: var(--white);
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
        transform: translateY(40px);
        transition: all 0.35s ease-in-out;
    }

    .color-style-two .social-overlay ul li a i {
        background: var(--color-style-two);
    }

    .color-style-three .social-overlay ul li a i {
        background: var(--color-style-three);
    }

    .social-overlay ul li:first-child a i {
        transition-delay: 0.60ms;
    }

    .social-overlay ul li:nth-child(2) a i {
        transition-delay: 0.45ms;
    }

    .social-overlay ul li:nth-child(3) a i {
        transition-delay: 0.30ms;
    }

    .social-overlay ul li:nth-child(4) a i {
        transition-delay: 0.15ms;
    }

    .team-style-one-item:hover .thumb .social-overlay ul li a i {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .social-overlay ul li a i.fa-facebook-f {
        background: #3B5998;
    }

    .social-overlay ul li a i.fa-dribbble {
        background: #ea4c89;
    }

    .social-overlay ul li a i.fa-linkedin-in {
        background: #0077B5;
    }

    .bg-dark .social-overlay .icon::before,
    .bg-dark .social-overlay .icon::after {
        box-shadow: 0 20px 0 0 #121010;
    }

    .bg-dark .social-overlay .icon {
        border: 10px solid #121010;
    }

    .bg-dark .social-overlay .icon i {
        background: var(--white);
        color: var(--color-heading);
    }

    /* ============================================================== 
        # Team Style Two 
    =================================================================== */
    .team-style-two-item {
        display: grid;
        grid-template-columns: 2fr 1fr;
        align-items: end;
        gap: 50px;
    }

    .bg-dark .team-style-two-item a {
        color: var(--white);
    }

    .team-style-two-item .info {
        border: 1px solid #dddddd;
        padding: 50px;
        border-radius: 10px;
        margin-left: -120px;
        position: relative;
        margin-bottom: 50px;
        background: var(--white);
    }

    .bg-dark .team-style-two-item .info {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: var(--dark);
    }

    .team-style-two-item img {
        border-radius: 10px;
    }

    .team-style-two-item .info h2 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .team-style-two-item .info h2 a {
        color: var(--color-heading);
    }

    .bg-dark .team-style-two-item .info h2 a {
        color: var(--white);
    }

    .bg-dark .team-style-two-item .info span {
        color: #cccccc;
    }

    .team-style-two-item .thumb {
        position: relative;
        padding-left: 40px;
    }

    .team-style-two-item .thumb::after {
        position: absolute;
        top: 50px;
        bottom: 50px;
        left: 0;
        width: 85px;
        background: var(--bg-gradient);
        content: "";
        border-radius: 10px;
    }

    .team-style-two-item .share-link ul {
        margin: 0;
        padding: 0;
        margin-bottom: 50px;
    }

    .team-style-two-item .share-link li a i,
    .team-style-two-item .share-link li a img {
        display: inline-block;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        background: var(--bg-gradient);
        border-radius: 50%;
        margin-top: 7px;
        transition: all 0.35s ease-in-out;
        transform: translateY(50px);
        opacity: 0;
        visibility: hidden;
        color: var(--white);
    }

    .team-style-two-item .share-link>i {
        display: inline-block;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        position: absolute;
        bottom: 0;
        z-index: 1;
        color: var(--white);
    }

    .team-style-two-item .share-link {
        position: absolute;
        left: 23px;
        bottom: 70px;
        z-index: 1;
    }

    .team-style-two-item .share-link ul li:first-child li a i,
    .team-style-two-item .share-link ul li:first-child li a img {
        transition-duration: 0.3s;
    }

    .team-style-two-item:hover .share-link ul li i,
    .team-style-two-item:hover .share-link ul li img {
        transform: translateY(0);
    }

    .team-style-two-item .share-link li:first-child a i,
    .team-style-two-item .share-link li:first-child a img {
        transition-delay: 0.05s;
    }

    .team-style-two-item .share-link li:nth-child(2) a i,
    .team-style-two-item .share-link li:nth-child(2) a img {
        transition-delay: 0.08s;
    }

    .team-style-two-item:hover .share-link li a i,
    .team-style-two-item:hover .share-link li a img {
        opacity: 1;
        visibility: visible;
    }

    .team-style-two-item .share-link li a i.fa-facebook-f {
        background: #3B5998;
    }

    .team-style-two-item .share-link li a i.fa-youtube {
        background: #FF0000;
    }

    .team-style-two-item .share-link li a i.fa-twitter {
        background: #1DA1F2;
    }

    .team-style-two-item .share-link li a i.fa-linkedin-in {
        background: #0a66c2;
    }

    .team-style-two-item .share-link li a img {
        background: #1DA1F2;
        padding: 10px;
    }

    .team-carousel.swiper .swiper-pagination {
        margin-bottom: -7px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .team-carousel.swiper .swiper-pagination span.swiper-pagination-bullet {
        height: 10px;
        width: 10px;
        margin: 0 5px;
        background: var(--dark);
    }

    .bg-dark .team-carousel.swiper .swiper-pagination span.swiper-pagination-bullet {
        background: var(--white);
    }

    .team-carousel.swiper .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
        height: 17px;
        width: 17px;
        background: var(--color-secondary);
        opacity: 1;
    }

    /* ============================================================== 
        # Team Three  
    =================================================================== */
    .site-heading a.btn-circle {
        margin-bottom: 0;
    }

    .team-style-three-area {
        position: relative;
        z-index: 1;
    }

    .team-style-three-area::after {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        bottom: 40%;
        width: 100%;
        background: url(/assets/img/shape/5.png);
        z-index: -1;
    }

    .team-style-three-item {
        position: relative;
        z-index: 1;
    }

    .team-style-three-area .row {
        --bs-gutter-x: 10px;
    }

    .team-style-three-item .thumb img {
        border-radius: 30px;
        max-width: none;
        width: -webkit-calc(100% + 60px);
        width: calc(100% + 60px);
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
        -webkit-transform: translate3d(-50px, 0, 0);
        transform: translate3d(-50px, 0, 0);
    }

    .team-style-three-item:hover .thumb img {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .team-style-three-item h4 {
        margin: 0;
        font-size: 32px;
        position: relative;
        margin-top: 20px;
    }

    .bg-dark .team-style-three-item h4 {
        top: -25px;
        margin-bottom: -25px;
        margin-top: 0;
    }

    .team-style-three-item .info {
        margin-left: 50px;
        text-align: right;
        margin-right: 50px;
    }

    .team-style-three-item .info span {
        font-size: 20px;
    }

    .team-style-three-item .thumb {
        overflow: hidden;
        border-radius: 30px;
        position: relative;
    }

    .team-style-three-item .thumb::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 200px;
        width: 100%;
        background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 130%) repeat scroll 0 0;
    }


    /* ============================================================== 
        # Team Single  
    =================================================================== */
    .team-right-info h2 {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .team-right-info .fun-fact .medium {
        display: block;
        color: var(--color-heading);
        font-weight: 500;
        margin-bottom: 25px;
    }

    .team-right-info ul {
        margin-top: 25px;
        border-top: 2px solid #dddddd;
        padding-top: 17px;
    }

    .bg-dark .team-right-info ul {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    ul.user-location li {
        display: grid;
        grid-template-columns: 2fr 4fr;
        margin-top: 15px;
    }

    ul.user-location li p {
        margin: 0;
    }

    .team-right-info ul li a {
        font-weight: 600;
    }

    .team-right-info ul li strong {
        font-weight: 600;
        color: var(--color-heading);
    }

    .bg-dark .team-right-info ul li strong {
        color: var(--white);
    }

    .team-right-info ul li a {
        font-weight: 400;
    }

    .bg-dark .team-right-info ul li a {
        color: #cccccc;
    }

    .team-right-info ul li a:hover {
        color: var(--color-primary);
    }

    .team-right-info>span {
        text-transform: uppercase;
        color: var(--color-secondary);
        font-weight: 600;
        display: block;
        margin-bottom: 20px;
    }

    .bg-dark .team-right-info>span {
        color: var(--color-primary);
    }

    .team-right-info .social {
        display: flex;
        margin-top: 25px;
        font-weight: 600;
        align-items: center;
    }

    .team-right-info .social h4 {
        font-weight: 600;
        margin-bottom: 0;
        margin-right: 25px;
    }

    .team-right-info .social ul {
        margin: 0;
        padding: 0;
        border: none;
    }

    .team-right-info .social .share-link {
        position: relative;
        z-index: 1;
        margin-left: 15px;
        padding-right: 20px;
    }

    .team-right-info .social .share-link>i {
        display: inline-block;
        height: 45px;
        background: var(--dark);
        line-height: 45px;
        width: 45px;
        text-align: center;
        border-radius: 50%;
        cursor: pointer;
        color: var(--white);
    }

    .bg-dark .team-right-info .social .share-link>i {
        background: var(--dark-optional);
    }

    .team-right-info .social ul {
        display: flex;
        list-style-type: none;
        grid-gap: 10px;
        padding: 0;
        margin: 0;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease-in-out 0s;
    }

    .team-right-info .social .share-link:hover ul {
        left: 58px;
        opacity: 1;
        pointer-events: auto;
    }

    .team-right-info .social ul li {
        display: inline-block;
        margin: 0;
    }

    .team-right-info .social ul li a {
        display: flex;
        height: 45px;
        width: 45px;
        line-height: 47px;
        background: var(--color-primary);
        text-align: center;
        border-radius: 50%;
        color: var(--color-heading);
        align-items: center;
        justify-content: center;
    }

    .team-right-info .social ul li a img {
        height: 17px;
    }

    .skill-items .progress-box {
        margin-bottom: 30px;
    }

    .skill-items .progress-box:last-child {
        margin-bottom: 0;
    }

    .skill-items .progress-box h5 {
        font-weight: 700;
        margin-bottom: 5px;
        text-align: left;
        position: relative;
        z-index: 1;
        font-size: 16px;
    }

    .skill-items .progress-box h5 span {
        position: absolute;
        font-size: 50px;
        line-height: 1;
        top: -21px;
        left: 0;
        z-index: -1;
        opacity: 0.05;
        font-weight: 600;
    }

    .skill-items .skill-items {
        margin-top: 40px;
    }

    .skill-items .progress-box .progress {
        background: transparent;
        box-shadow: inherit;
        border-radius: inherit;
        overflow: inherit;
    }

    .skill-items .progress-box .progress .progress-bar {
        height: 6px;
        background: var(--bg-gradient);
        top: 12px;
        position: relative;
        overflow: inherit;
        border-radius: 30px;
    }

    .skill-items .progress-box .progress .progress-bar span {
        position: absolute;
        right: 0;
        top: -40px;
        display: block;
        font-size: 16px;
        color: var(--color-heading);
        font-weight: 600;
    }

    .bg-dark .skill-items .progress-box .progress .progress-bar span {
        color: var(--white);
    }

    .qualification-item {
        display: inline-block;
        position: relative;
        padding: 60px;
        border-radius: 5px;
        z-index: 1;
        overflow: hidden;
        background: var(--white);
        box-shadow: 0 3px 40px 0 rgb(0 0 0 / 10%);
    }

    .qualification-grid {
        display: grid;
        grid-template-columns: 0.3fr 1fr 1fr;
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        align-items: center;
    }

    .qualification-item i {
        display: inline-block;
        font-size: 70px;
        margin-bottom: 15px;
        color: var(--color-heading);
        line-height: 1;
    }

    .qualification-item h4 {
        margin: 0;
        font-weight: 600;
    }

    .bg-dark .qualification-item {
        background: var(--dark-optional);
    }

    .bg-dark .qualification-item i {
        filter: brightness(0) invert(1);
    }

    .team-right-info {
        padding-left: 70px;
    }

    .team-experience .fun-fact .counter {
        font-weight: 600;
        color: transparent;
        -webkit-text-stroke: 1px var(--white);
        font-size: 70px;
        letter-spacing: -2px;
    }

    .team-right-info p {
        opacity: 0.9;
    }

    .team-content-top {
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-radius: 10px;
        border: 1px solid #e7e7e7;
        padding: 120px;
    }

    .team-content-top::after {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    .team-content-top .thumb img {
        position: relative;
        padding-right: 0;
        border-radius: 10px;
    }

    .team-qualifcations h2 {
        font-weight: 600;
        margin-bottom: 30px;
        font-size: 30px;
    }

    .team-qualifcations p:last-child {
        margin-bottom: 0;
    }

    .qualification-grid h2 {
        writing-mode: vertical-lr;
        text-transform: uppercase;
        margin: 0;
        color: #b9bdc6;
        font-size: 32px;
    }

    .achivement-fact .fun-fact {
        float: left;
        border-right: 1px solid #cccccc;
        margin-right: 50px;
        padding-right: 50px;
    }

    .bg-dark .achivement-fact .fun-fact {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .achivement-fact .fun-fact:last-child {
        border: none;
    }

    .achivement-fact .fun-fact .counter {
        margin: 0;
        font-size: 60px;
        font-weight: 600;
    }

    .achivement-fact {
        overflow: hidden;
        margin-top: 30px;
    }

    .achivement-award-area .choose-us-style-two {
        align-items: normal;
    }

    .achivement-award-area .choose-us-style-two .award-grid:first-child .award-item {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .bg-dark .team-content-top {
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* ============================================================== 
        # Choose Us Style Three 
    =================================================================== */
    .choose-us-style-three .fun-fact .counter {
        font-size: 200px;
        line-height: 0.8;
        display: inline-flex;
        padding-right: 30px;
        color: var(--color-heading);
    }

    .choose-us-style-three .fun-fact .counter .operator {
        position: absolute;
        right: 0;
        top: 0;
        font-size: 40px;
        height: 60px;
        width: 60px;
        text-align: center;
        line-height: 53px;
        background: var(--white);
        font-weight: 300;
        border-radius: 50%;
        color: var(--color-heading);
    }

    .bg-dark .choose-us-style-three .fun-fact .counter .operator {
        background: var(--dark);
        color: var(--white);
    }

    .choose-us-style-three .fun-fact h3 {
        margin-top: 15px;
    }

    .bg-dark .choose-us-style-three .fun-fact .counter {
        color: var(--white);
    }

    ul.list-style-three {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .choose-us-style-three ul.list-style-three {
        border-top: 1px solid #e7e7e7;
        padding-top: 40px;
        margin-top: 40px;
        padding-left: 45px;
    }

    .choose-us-style-three ul.list-style-three h4 {
        margin-bottom: 15px;
    }

    ul.list-style-three li {
        position: relative;
        z-index: 1;
        padding-left: 60px;
        margin-top: 30px;
    }

    ul.list-style-three li::after {
        position: absolute;
        left: 0;
        top: 0;
        content: "\f00c";
        font-family: "Font Awesome 5 Pro";
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        background: var(--color-primary);
        color: var(--color-heading);
        border-radius: 50%;
    }

    ul.list-style-three li p {
        margin: 0;
    }

    ul.list-style-three li:first-child {
        margin-top: 0;
    }

    .bg-dark .choose-us-style-three ul.list-style-three {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .choose-us-style-three-info .title {
        margin-bottom: 50px;
    }

    .choose-us-style-three {
        border-left: 1px solid #e7e7e7;
    }

    .choose-us-style-three .fun-fact {
        padding-left: 45px;
    }

    .bg-dark .choose-us-style-three {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .choose-us-style-three-area {
        position: relative;
        z-index: 1;
    }

    .choose-us-style-three-area::after {
        position: absolute;
        right: 0;
        bottom: 0;
        content: "";
        height: 400px;
        width: 400px;
        background: #e7ff88;
        z-index: -1;
        filter: blur(150px);
        opacity: 0.3;
    }

    .bg-dark .choose-us-style-three-area::after {
        background: red;
    }

    .bg-dark .choose-us-style-three-area::after {
        background: #3b86f6;
    }

    /* ============================================================== 
        # Testimonial 
    =================================================================== */
    .testimonial-quote {
        height: 350px;
        width: 350px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid #dddddd;
        justify-content: center;
        border-radius: 50%;
        position: relative;
        float: right;
        margin-right: 50px;
    }

    .bg-dark .testimonial-quote {
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .testimonial-quote img {
        height: 70px;
        width: auto;
    }

    .bg-dark .testimonial-quote img {
        filter: brightness(100%);
        opacity: 1;
    }

    .testimonial-one-quote {
        position: relative;
    }

    .testimonial-one-quote .sub-title {
        position: absolute;
        left: 0;
        top: 50px;
        font-size: 42px;
        border: none;
        background: var(--white);
        padding: 15px 0;
        -webkit-text-fill-color: var(--color-heading);
    }

    .bg-dark .testimonial-one-quote .sub-title {
        background: var(--dark);
        -webkit-text-fill-color: var(--white);
    }

    .bg-gray .testimonial-one-quote .sub-title {
        background: var(--bg-gray);
    }

    .bg-dark .bg-gray .testimonial-one-quote .sub-title {
        background: var(--dark-secondary);
    }

    .tm-provider {
        display: flex;
        align-items: center;
        margin-top: 40px;
    }

    .tm-provider img {
        height: 80px;
        width: 80px;
        margin-right: 20px;
        border-radius: 50%;
    }

    .tm-provider h4 {
        margin-bottom: 5px;
    }

    .testimonial-style-one-carousel p {
        font-size: 27px;
        line-height: 1.6;
    }

    .testimonial-style-one-carousel {
        position: relative;
    }

    .testimonial-style-one-carousel .testimonial-one-navigation {
        position: absolute;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }

    .testimonial-style-one-carousel .testimonial-one-navigation .swiper-button-next {
        position: relative;
        left: auto;
        right: auto;
    }

    .testimonial-style-one-carousel .testimonial-one-navigation .swiper-button-prev {
        position: relative;
        left: auto;
        right: 0;
    }

    .testimonial-style-one-carousel .testimonial-one-navigation>div {
        height: 50px;
        width: 50px;
        background: var(--bg-gray);
        margin-left: 10px;
        color: var(--color-heading);
        border-radius: 50%;
    }

    .bg-dark .testimonial-style-one-carousel .testimonial-one-navigation>div {
        background: #262626;
        color: var(--white);
    }

    .testimonial-style-one-carousel .testimonial-one-navigation>div::after {
        font-size: 16px;
    }

    .testimonial-style-one-carousel .swiper-slide-container>img {
        height: 60px;
        margin-bottom: 30px;
    }

    /* ============================================================== 
        # Testimonial Style Two
    =================================================================== */
    .testimonial-bullet {
        box-sizing: border-box;
        padding: 10px 0;
    }

    .testimonial-bullet .swiper-slide {
        width: 20%;
        height: 100%;
        opacity: 0.4;
    }

    .testimonial-bullet .swiper-slide-active {
        opacity: 1;
    }

    .testimonial-bullet {
        text-align: center;
        max-width: 40%;
    }

    .testimonial-bullet .swiper-slide {
        width: 33%;
    }

    .swiper-bullet-item img {
        transform: scale(0.8);
        border-radius: 50%;
    }

    .swiper-bullet-item .swiper-slide-active img {
        transform: scale(1);
    }

    .swiper-slide-active .swiper-bullet-item img {
        transform: scale(1);
    }

    .testimonial-style-two .tm-provider {
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #cccccc;
        display: inline-flex;
        min-width: 50%;
        padding-bottom: 30px;
        margin-top: 15px;
        position: relative;
    }

    .bg-dark .testimonial-style-two .tm-provider {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .testimonial-style-two p {
        font-size: 30px;
        line-height: 1.5;
        font-weight: 500;
    }

    .testimonial-style-two .tm-provider::after,
    .testimonial-style-two .tm-provider::before {
        position: absolute;
        margin: auto;
        bottom: -15px;
        left: 0;
        right: 0;
        width: 17px;
        height: 15px;
        border-right: 1px solid #cccccc;
        border-top: 1px solid var(--white);
        content: "";
    }

    .bg-gray .testimonial-style-two .tm-provider::after,
    .bg-gray .testimonial-style-two .tm-provider::before {
        border-top: 1px solid var(--bg-gray);
    }

    .bg-dark .testimonial-style-two .tm-provider::before {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-top: 1px solid var(--dark);
    }

    .bg-dark .bg-gray .testimonial-style-two .tm-provider::before {
        border-top: 1px solid var(--dark-secondary);
    }

    .testimonial-style-two .tm-provider::after {
        border-right: transparent;
        border-top: transparent;
        border-left: 1px solid #cccccc;
        -webkit-transform: rotate(-49deg);
        -ms-transform: rotate(-49deg);
        transform: rotate(-49deg);
        width: 4px;
        height: 23px;
        right: -2px;
        bottom: -18px;
    }

    .bg-dark .testimonial-style-two .tm-provider::after {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        border-top-color: var(--dark);
    }

    .bg-dark .bg-gray .testimonial-style-two .tm-provider::after {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        border-top-color: var(--dark-secondary);
    }

    .testimonials-quote i {
        color: var(--color-primary);
        display: inline-block;
        font-size: 40px;
        margin-bottom: 15px;
        position: relative;
        background: var(--white);
        padding: 0 20px;
    }

    .bg-gray .testimonials-quote i {
        background: var(--bg-gray);
    }

    .bg-dark .bg-gray .testimonials-quote i {
        background: var(--dark-secondary);
    }

    .bg-dark .testimonials-quote i {
        background: var(--dark);
    }

    .testimonial-style-two-carousel {
        position: relative;
        z-index: 1;
    }

    .testimonial-style-two-area::after {
        position: absolute;
        left: 50%;
        top: 50%;
        content: "";
        height: 500px;
        width: 500px;
        border-top: 1px solid;
        z-index: -1;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        opacity: 0.3;
        margin-top: 80px;
    }

    .testimonial-style-two-area {
        position: relative;
        z-index: 1;
    }

    .testimonial-style-two-carousel .swiper-wrapper {
        padding-top: 28px;
    }

    .testimonials-quote .icon {
        height: 50px;
        margin: auto;
        background: var(--white);
        padding: 0 30px;
        display: inline-block;
    }

    .testimonials-quote .icon img {
        width: 50px;
    }

    .bg-gray .testimonials-quote .icon {
        background: var(--bg-gray);
    }

    .bg-gray-secondary .testimonials-quote .icon {
        background: var(--bg-gray-secondary);
    }

    .bg-dark .testimonials-quote .icon {
        background: var(--dark);
    }

    .bg-dark .bg-gray .testimonials-quote .icon {
        background: var(--dark-secondary);
    }

    /* ============================================================== 
        # Testimonial Style Three
    =================================================================== */
    .testimonial-heading {
        position: relative;
        margin-bottom: 60px;
    }

    h2.text-large-gradient {
        text-transform: uppercase;
        background: linear-gradient(90deg, var(--color-heading) 20%, var(--color-primary) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        font-size: 80px;
        line-height: 0.9;
        font-weight: 700;
        margin-bottom: 0;
    }

    .bg-dark h2.text-large-gradient {
        background: linear-gradient(90deg, var(--white) 0%, var(--color-primary) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .shape-style-one {
        position: absolute;
        left: 3%;
        top: 50%;
        width: 12%;
        transform: translateY(-50%);
    }

    .testimonial-three-quote {
        display: inline-flex;
        text-align: left;
        align-items: center;
        color: var(--color-heading);
        font-weight: 600;
    }

    .bg-dark .testimonial-three-quote {
        color: var(--white);
    }

    .testimonial-three-quote h2 {
        margin: 0;
        font-size: 50px;
        height: 150px;
        width: 150px;
        text-align: center;
        line-height: 145px;
        border-radius: 50%;
        margin-right: 20px;
        border: 1px solid #dddddd;
    }

    .bg-dark .testimonial-three-quote h2 {
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .testimonial-heading h2.text-large-gradient {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .testimonial-three-quote span {
        display: block;
        margin-top: 7px;
        font-size: 20px;
    }

    .testimonial-style-three-item {
        border: 1px solid #e7e7e7;
        padding: 50px;
        border-radius: 30px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        background: var(--white);
    }

    .bg-dark .testimonial-style-three-item {
        border: none;
        background: linear-gradient(0deg, var(--dark-optional) 20%, #1d1d1d 100%);
    }

    .testimonial-style-three-item::after {
        position: absolute;
        right: 0;
        bottom: 0;
        content: "";
        height: 300px;
        width: 300px;
        background: var(--color-primary);
        z-index: -1;
        border-radius: 50%;
        filter: blur(150px);
        opacity: 0.4;
    }

    .bg-dark .testimonial-style-three-item::after {
        background: #3b86f6;
    }

    .testimonial-style-three-item>img {
        height: 60px;
        margin-bottom: 30px;
    }

    .testimonial-style-three-item p {
        font-size: 24px;
        color: var(--color-heading);
        font-weight: 500;
    }

    .bg-dark .testimonial-style-three-item p {
        color: #cccccc;
    }

    .tes-rating {
        display: flex;
        align-items: center;
        font-size: 20px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 30px;
        color: var(--color-heading);
    }

    .bg-dark .tes-rating {
        color: var(--white);
    }

    .tes-rating span {
        margin-right: 5px;
        line-height: 1;
    }

    .tes-rating i {
        font-size: 15px;
        line-height: 1;
        position: relative;
        top: -2px;
        color: var(--color-secondary);
    }

    .bg-dark .tes-rating i {
        color: var(--color-primary);
    }

    .testimonial-style-three-carousel .testimonial-control {
        height: 60px;
        position: relative;
        margin-top: 30px;
    }

    .testimonial-style-three-carousel .testimonial-control .swiper-button-prev {
        height: 50px;
        width: 50px;
        text-align: center;
        border: 2px solid var(--color-paragraph);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        left: 0;
    }

    .testimonial-style-three-carousel .testimonial-control .swiper-button-prev::after {
        color: var(--color-heading);
        font-size: 24px;
    }

    .testimonial-style-three-carousel .testimonial-control .swiper-button-next {
        height: 50px;
        width: 50px;
        text-align: center;
        border: 2px solid var(--color-paragraph);
        border-radius: 8px;
        right: 0;
    }

    .testimonial-style-three-carousel .testimonial-control .swiper-button-next::after {
        color: var(--color-heading);
        font-size: 22px;
    }

    .testimonial-style-three-carousel .testimonial-control .swiper-pagination {
        display: grid;
        grid-column-gap: 30px;
        grid-auto-columns: minmax(0, 1fr);
        grid-auto-flow: column;
        padding: 0 70px;
        bottom: 12px;
    }

    .testimonial-style-three-carousel .testimonial-control .swiper-pagination span.swiper-pagination-bullet {
        border-radius: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .testimonial-style-three-carousel .testimonial-control .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: var(--bg-gradient);
    }

    .bg-dark .testimonial-style-three-carousel .testimonial-control .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: var(--bg-gradient);
    }

    .bg-dark .testimonial-style-three-carousel .testimonial-control .swiper-button-prev::after,
    .bg-dark .testimonial-style-three-carousel .testimonial-control .swiper-button-next::after {
        color: var(--white);
    }

    .bg-dark .testimonial-style-three-carousel .testimonial-control .swiper-pagination span.swiper-pagination-bullet {
        background: var(--white);
    }

    /* ============================================================== 
        # Clients
    =================================================================== */
    .client-style-one-items {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        border-left: 1px solid #cccccc;
        border-bottom: 1px solid #cccccc;
        position: relative;
    }

    .bg-dark .client-style-one-items {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .client-style-one-item {
        text-align: center;
        border-right: 1px solid #cccccc;
        border-top: 1px solid #cccccc;
        padding: 30px 50px;
        position: relative;
        z-index: 1;
        min-height: 150px;
    }

    .bg-dark .client-style-one-item {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .client-style-one-item img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        max-height: 40px;
    }

    .client-style-one-item:first-child::after {
        position: absolute;
        top: -1px;
        left: 0;
        height: 1px;
        width: 100%;
        border-top: 1px solid var(--white);
        content: "";
    }

    .bg-dark .client-style-one-item:first-child::after {
        border-top: 1px solid var(--dark);
    }

    .bg-dark .bg-gray .client-style-one-item:first-child::after {
        border-top: 1px solid var(--dark-secondary);
    }

    .bg-gray .client-style-one-item:first-child::after {
        border-top: 1px solid var(--bg-gray);
    }

    .client-style-one-item:first-child::before {
        position: absolute;
        top: 0;
        left: -1px;
        height: 100%;
        width: 1px;
        border-left: 1px solid var(--white);
        content: "";
    }

    .bg-dark .client-style-one-item:first-child::before {
        border-left: 1px solid var(--dark);
    }

    .bg-dark .bg-gray .client-style-one-item:first-child::before {
        border-left: 1px solid var(--dark-secondary);
    }

    .bg-gray .client-style-one-item:first-child::before {
        border-left: 1px solid var(--bg-gray);
    }

    .client-style-one-item:last-child::after {
        position: absolute;
        bottom: -1px;
        right: 0;
        height: 1px;
        width: 100%;
        background: var(--white);
        content: "";
    }

    .bg-dark .client-style-one-item:last-child::after {
        background: var(--dark);
    }

    .bg-dark .bg-gray .client-style-one-item:last-child::after {
        background: var(--dark-secondary);
    }

    .bg-gray .client-style-one-item:last-child::after {
        background: var(--bg-gray);
    }

    .client-style-one-item:last-child::before {
        position: absolute;
        bottom: 0;
        right: -1px;
        height: 100%;
        width: 1px;
        background: var(--white);
        content: "";
    }

    .bg-dark .client-style-one-item:last-child::before {
        background: var(--dark);
    }

    .bg-dark .bg-gray .client-style-one-item:last-child::before {
        background: var(--dark-secondary);
    }

    .bg-gray .client-style-one-item:last-child::before {
        background: var(--bg-gray);
    }

    .client-style-one-item img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        max-height: 40px;
    }

    .client-style-one-item .fun-fact {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .client-style-one-item .fun-fact .counter {
        font-size: 80px;
        font-weight: 600;
        line-height: 66px;
        margin-bottom: 10px;
        color: var(--color-heading);
        margin-top: -10px;
    }

    .bg-dark .client-style-one-item .fun-fact .counter {
        color: var(--white);
    }

    .client-style-one-item .fun-fact .counter .operator {
        font-size: 60px;
    }

    .client-style-one-item .fun-fact span.medium {
        font-size: 20px;
        font-weight: 600;
    }

    .client-style-one-item a {
        position: relative;
        display: block;
        color: var(--color-heading);
        text-transform: uppercase;
        font-size: 20px;
        border-bottom: 1px solid var(--color-heading);
    }

    .bg-dark .client-style-one-item a {
        color: var(--white);
        border-bottom: 2px solid var(--white);
    }

    .clients-card {
        display: flex;
        align-items: center;
        margin-left: 25px;
    }

    .clients-card img {
        height: 55px;
        width: 55px;
        border-radius: 50%;
        margin-left: -25px;
        border: 2px solid var(--white);
    }

    .bg-dark .clients-card img {
        border: 2px solid var(--dark);
    }

    .clients-card i {
        display: inline-block;
        height: 55px;
        width: 55px;
        line-height: 51px;
        background: var(--dark);
        text-align: center;
        border-radius: 50%;
        margin-left: -25px;
        border: 2px solid var(--white);
        color: var(--white);
    }

    .brand-info {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 1;
        padding-right: 60px;
    }

    .brand-info .title {
        font-size: 45px !important;
    }

    .brand-info::after {
        position: absolute;
        right: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 1px;
        background: linear-gradient(to top, rgba(255, 255, 255, 0), var(--color-heading), rgba(255, 255, 255, 0));
    }

    .bg-dark .brand-info::after {
        background: linear-gradient(to top, rgba(255, 255, 255, 0), var(--color-primary), rgba(255, 255, 255, 0));
    }

    /* ============================================================== 
        # Faq 
    =================================================================== */

    .faq-style-one {
        position: relative;
    }

    .faq-style-one button.accordion-button {
        overflow: inherit;
    }

    .faq-style-one button.accordion-button {
        color: var(--color-heading);
        font-size: 20px;
        font-weight: 700 !important;
        padding: 0 !important;
        background: transparent !important;
        padding-left: 40px !important;
        position: relative;
        box-shadow: inherit;
        border: none;
        border-radius: inherit !important;
        text-transform: inherit;
    }

    .bg-dark .faq-style-one button.accordion-button {
        font-weight: 600 !important;
    }

    .faq-style-one button.accordion-button::after {
        background: transparent;
        content: "\f067";
        font-family: "Font Awesome 5 Pro";
        font-weight: 100;
        font-size: 13px;
        position: absolute;
        left: 0;
        opacity: 1;
        height: 100%;
        transform: inherit;
        height: 26px;
        width: 26px;
        line-height: 26px;
        border: 1px solid #cccccc;
        text-align: center;
        border-radius: 50%;
        top: 1px;
        background: var(--white);
    }

    .bg-dark .faq-style-one button.accordion-button::after {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: var(--dark);
    }

    .faq-style-one button.accordion-button:not(.collapsed)::after {
        -webkit-transform: inherit;
        transform: inherit;
        content: "\f068";
    }

    .faq-style-one button.accordion-button:focus {
        background: transparent;
        color: var(--color-heading);
        border: none;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        padding-left: 0;
        font-weight: 800;
    }

    .faq-style-one .accordion-item {
        background: transparent;
        border: none;
        margin-bottom: 25px;
    }

    .faq-style-one .accordion-body {
        padding-left: 40px;
        padding-top: 15px;
        padding-bottom: 0;
    }

    .faq-style-one-content {
        margin-top: -15px;
    }

    .faq-style-one .accordion-body p:last-child {
        margin: 0;
    }

    .bg-dark .faq-style-one button.accordion-button {
        color: var(--white);
    }

    .faq-style-one .accordion-item:last-child {
        margin-bottom: 0;
    }

    /* ============================================================== 
        # Process
    =================================================================== */

    .process-style-one-items {
        position: relative;
        z-index: 1;
    }

    .process-style-one-item:nth-child(2n) {
        border-top: none !important;
        border-bottom: 1px solid #cccccc;
    }

    .bg-dark .process-style-one-item:nth-child(2n) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-style-one-item:nth-child(2n)::after {
        position: absolute;
        left: -1px;
        top: 65px;
        width: 50px;
        content: "";
        border-left: 1px solid #cccccc;
        bottom: 0;
        border-bottom-left-radius: 30px;
    }

    .bg-dark .process-style-one-item:nth-child(2n)::after {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-style-one-item:nth-child(odd)::after {
        position: absolute;
        right: 0;
        bottom: auto;
        content: "";
        top: 0;
        height: 64px;
        width: 50px;
        border-right: 1px solid #cccccc;
        border-top-right-radius: 30px;
    }

    .bg-dark .process-style-one-item:nth-child(odd)::after {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-style-one-item:nth-child(odd)::before {
        position: absolute;
        left: 0;
        bottom: 60px;
        content: "";
        top: 0;
        width: 50px;
        border-left: 1px solid #cccccc;
        border-top-left-radius: 30px;
    }

    .bg-dark .process-style-one-item:nth-child(odd)::before {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-style-one-item:nth-child(2n)::before {
        position: absolute;
        right: -2px;
        content: "";
        bottom: 0;
        height: 64px;
        width: 50px;
        border-right: 1px solid #cccccc;
        border-bottom-right-radius: 30px;
    }

    .bg-dark .process-style-one-item:nth-child(2n)::before {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-style-one-item:last-child {
        border-right: 1px solid #cccccc;
        border-top-right-radius: 0;
    }

    .bg-dark .process-style-one-item:last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-style-one-item:first-child {
        border-left: 1px solid #cccccc;
        border-bottom-left-radius: 0;
    }

    .bg-dark .process-style-one-item:first-child {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-style-one-item:first-child::before {
        display: none;
    }

    .process-style-one-items .row {
        margin: 0;
    }

    .process-style-one-item .item {
        padding: 50px 30px;
        position: relative;
        z-index: 1;
    }

    .process-style-one-item .item span {
        position: absolute;
        right: 30px;
        top: 50px;
        font-size: 55px;
        z-index: -1;
        line-height: 1;
        font-weight: 900;
        opacity: 0.2;
    }

    .bg-dark .process-style-one-item .item span {
        opacity: 0.06;
    }

    .process-style-one-item:nth-child(2n) .item span {
        top: auto;
        bottom: 50px;
    }

    .process-style-one-item {
        position: relative;
        z-index: 1;
        border-top: 1px solid #cccccc;
        border-radius: 30px;
    }

    .bg-dark .process-style-one-item {
        border-top: 1px solid rgb(255, 255, 255, 0.1);
    }

    .process-style-one-item p {
        margin: 0;
    }

    .process-style-one-item .item img {
        height: 60px;
        margin: auto;
        margin-bottom: 30px;
    }

    .process-style-one-item .item .icon {
        position: relative;
        z-index: 1;
    }

    .process-style-one-item:last-child::before {
        top: 0;
        bottom: 7px;
        display: none;
    }

    /* Contact */

    .contact-panel-bg {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 40%;
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

    ul.contact-list {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-top: 50px;
        display: inline-block;
        border-top: 1px solid #dddddd;
        padding-top: 30px;
    }

    .bg-dark ul.contact-list {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    ul.contact-list li {
        float: left;
        display: flex;
        margin-right: 50px;
    }

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

    ul.contact-list li i {
        display: inline-block;
        height: 62px;
        width: 62px;
        text-align: center;
        line-height: 62px;
        background: var(--color-primary);
        border-radius: 50%;
        margin-right: 15px;
        font-size: 20px;
        color: var(--color-heading);
    }

    ul.contact-list li h4 {
        margin-bottom: 5px;
    }

    ul.contact-list li a {
        font-weight: 400;
        font-size: 16px;
    }

    .panel.contact-panel {
        position: relative;
        z-index: 1;
    }

    .panel.contact-panel::after {
        position: absolute;
        left: 50%;
        top: 50%;
        content: "";
        height: 600px;
        width: 600px;
        background: var(--black);
        z-index: -1;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.03;
    }

    .bg-dark .panel.contact-panel::after {
        background: var(--white);
    }

    ul.contact-list li .info {
        text-align: left;
    }

    @media (min-width: 1024px) {
        .process-style-one-item:nth-child(2n) .item {
            display: flex;
            flex-direction: column-reverse;
        }

        .process-style-one-item:nth-child(2n) .item p {
            margin: 0;
        }

        .process-style-one-item:nth-child(2n) .item h4 {
            margin: 0;
            margin-top: 30px;
        }

        .process-style-one-item:nth-child(2n) .item img {
            margin: 0;
            margin-top: 30px;
        }
    }


    /* ============================================================== 
        # Partner
    =================================================================== */
    .bg-gradient h1,
    .bg-gradient h2,
    .bg-gradient h3,
    .bg-gradient h4,
    .bg-gradient h5,
    .bg-gradient h6 {
        color: var(--color-heading) !important;
    }

    .bg-gradient p {
        color: var(--color-heading);
    }

    .brand-style-two-items {
        padding-bottom: 60px;
    }

    .partner-two-thumb {
        height: 100%;
    }

    .partner-two-thumb img {
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
    }

    .partner-two-item {
        background: var(--bg-gray-secondary);
        padding: 50px;
        border-radius: 10px;
    }

    .bg-gray .partner-two-item {
        background: var(--white);
    }

    .bg-dark .partner-two-item {
        background: var(--dark-optional);
    }

    .brand-two-carousel {
        margin-left: -53%;
    }

    .partner-two-item h4 {
        margin: 0;
        background: var(--color-primary);
        padding: 6px 25px;
        display: inline-block;
        border-radius: 30px;
        line-height: 1;
        padding-bottom: 10px;
        font-size: 18px;
        color: var(--color-heading);
    }

    .partner-two-item img {
        margin-bottom: 30px;
        max-height: 45px;
    }

    .bg-dark .partner-two-item img {
        filter: brightness(0) invert(1);
    }

    .partner-two-item h5 {
        text-transform: uppercase;
    }

    /* ============================================================== 
        # Slide Multi Section
    =================================================================== */

    .thecontainer {
        width: 300%;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        position: relative;
        z-index: 7;
    }

    .panel {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .panel .title {
        margin-bottom: 0;
    }

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

    .award-items {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 30px;
        margin-left: -100px;
        margin-top: 50px;
        position: relative;
        z-index: 1;
    }

    .award-item {
        padding: 50px;
        width: 100%;
        background: var(--white);
        box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
    }

    .bg-gray .award-item {
        background: var(--white);
    }

    .bg-dark .award-item {
        background: var(--dark-optional);
        box-shadow: none;
    }

    .award-item i {
        display: inline-block;
        font-size: 50px;
        margin-bottom: 15px;
        color: var(--color-primary);
    }

    .award-item h4 {
        margin: 0;
    }

    .thumb-style-one {
        position: relative;
        z-index: 1;
    }

    .thumb-style-one img:nth-child(2) {
        position: absolute;
        left: 0;
        bottom: 0;
        max-width: 70%;
    }


    /* Tablet */
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        /* Multi Section */

        .multi-section .pin-spacer {
            width: auto !important;
            height: auto !important;
            padding: 0 !important;
        }

        .thecontainer {
            max-width: inherit !important;
            height: auto !important;
            width: auto !important;
            display: block !important;
            position: inherit !important;
            transform: none !important;
        }

        .panel.overflow-hidden {
            display: block;
            height: auto;
            min-height: auto;
            transform: none !important;
            padding: 120px 0;
            text-align: center;
        }
    }

    @media (max-width: 767px) {
        /* Multi Section */

        .multi-section .pin-spacer {
            width: auto !important;
            height: auto !important;
            padding: 0 !important;
        }

        .thecontainer {
            max-width: inherit !important;
            height: auto !important;
            width: auto !important;
            display: block !important;
            position: inherit !important;
            transform: none !important;
        }

        .panel.overflow-hidden {
            display: block;
            height: auto;
            min-height: auto;
            transform: none !important;
            padding: 60px 0;
            text-align: center;
        }
    }

    /* ============================================================== 
        # Why Choose us
    =================================================================== */
    .progressbar.circle {
        display: inline-block;
        padding: 50px;
        margin-right: 50px;
        text-align: center;
        background: var(--bg-gray-secondary);
        border-radius: 10px;
    }

    .bg-gray .progressbar.circle {
        background: var(--white);
    }

    .bg-dark .progressbar.circle {
        text-align: center;
        padding: 50px;
        background: linear-gradient(0deg, var(--dark-optional) 20%, #1d1d1d 100%);
    }

    .progressbar.circle .circle {
        display: inline-block;
        position: relative;
        z-index: 1;
        margin-bottom: 10px;
        width: 130px;
        height: 130px;
    }

    .progressbar.circle .circle canvas {
        width: 130px;
        height: 130px;
    }

    .progressbar.circle .circle strong {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-weight: 600;
        color: var(--color-heading);
        font-size: 20px;
    }

    .bg-dark .progressbar.circle .circle strong {
        color: var(--white);
    }

    .progressbar.circle h4 {
        margin: 0;
    }

    .faq-style-one.d-flex {
        align-items: center;
    }

    .choose-us-style-two {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        grid-column-gap: 30px;
    }

    .award-grid .award-item {
        margin-top: 30px;
        box-shadow: none;
    }

    .award-grid .award-item:first-child {
        margin-top: 0;
    }


    /* ============================================================== 
        # Pricing
    =================================================================== */

    .shape-left-top {
        position: absolute;
        left: 0;
        top: -25%;
        width: 30%;
        z-index: -1;
    }

    .pricing-style-one-area {
        position: relative;
        z-index: 1;
    }

    .pricing-items {
        margin-top: -30px;
    }

    .pricing-style-one {
        display: flex;
        padding: 60px 40px;
        margin-top: 30px;
        border-radius: 30px;
        border: 2px solid transparent;
        transition: all 0.35s ease-in-out;
        box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
        background: var(--white);
    }

    .bg-dark .pricing-style-one {
        background: var(--dark-optional);
        box-shadow: none;
        transition: all 0.35s ease-in-out;
    }

    .pricing-style-one.active {
        border: 2px solid var(--color-primary);
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.35s ease-in-out;
    }

    .bg-dark .pricing-style-one.active {
        border: 2px solid var(--color-primary);
        background: transparent;
        transition: all 0.35s ease-in-out;
    }

    .pricing-style-one .left {
        width: 50%;
        border-right: 1px solid #cccccc;
        margin-right: 50px;
        padding-right: 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
    }

    .bg-dark .pricing-style-one .left {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pricing-style-one h4 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .bg-dark .pricing-style-one.active h4 {
        color: var(--white);
    }

    .pricing-style-one ul li {
        position: relative;
        z-index: 1;
        padding-left: 25px;
        margin-top: 10px;
        position: relative;
    }

    .pricing-style-one ul li:first-child {
        margin-top: 0;
    }

    .pricing-style-one ul li::after {
        position: absolute;
        left: 0;
        top: 17px;
        content: "";
        height: 17px;
        width: 17px;
        background: url(/assets/img/icon/check-mark.png);
        background-size: contain;
        background-repeat: no-repeat;
    }

    .bg-dark .pricing-style-one ul li::after {
        filter: brightness(0) invert(1);
    }

    .bg-dark .pricing-style-one.active ul li {
        color: var(--white);
    }

    .pricing-style-one ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .pricing-style-one h2 {
        margin: 0;
        font-weight: 600;
        font-size: 50px;
    }

    .bg-dark .pricing-style-one.active h2 {
        color: var(--white);
    }

    .bg-dark .pricing-style-one span {
        color: #cccccc;
    }

    .bg-dark .pricing-style-one.active span {
        color: var(--white);
    }

    .pricing-items p {
        margin-top: 25px;
    }

    .pricing-items h5 {
        font-weight: 700;
        margin-bottom: 20px;
    }

    .bg-dark .pricing-items h5 {
        color: var(--white);
    }

    .pricing-items h5 strong {
        font-size: 36px;
        text-decoration: underline;
        margin: 0 3px;
        color: var(--color-primary);
    }

    .pricing-style-one .btn-light {
        background: var(--dark);
        color: var(--white);
        border: none;
    }

    .bg-dark .pricing-style-one .btn-light {
        background: var(--white);
        color: var(--color-heading);
    }

    .pricing-style-one .btn-light:hover {
        background: var(--color-primary);
        color: var(--color-heading);
        border-color: none;
        border: none;
    }


    /* ============================================================== 
        # Pricing Style Two
    =================================================================== */

    .pricing-style-two-area {
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .pricing-style-two-area::after {
        position: absolute;
        right: 0;
        bottom: 0;
        content: "";
        height: 300px;
        width: 300px;
        background: #c9f31d;
        z-index: -1;
        border-radius: 50%;
        filter: blur(150px);
        opacity: 0.4;
    }

    .nav.nav-tabs.pricing-tab-navs {
        border: none;
        display: inline-block;
        position: relative;
        z-index: 1;
        background: var(--white);
        border-radius: 50px;
        margin-bottom: 50px;
        overflow: hidden;
        border: 1px solid var(--bg-gray);
    }

    .nav.nav-tabs.pricing-tab-navs button {
        display: inline-block;
        border: none;
        color: var(--color-heading);
        padding: 13px 40px;
        border-radius: 0;
        text-transform: capitalize;
        font-weight: 600;
        position: relative;
        transition: all 0.35s ease-in-out;
        margin: 0;
        font-size: 20px;
        overflow: hidden;
    }

    .nav.nav-tabs.pricing-tab-navs button::after {
        display: none;
    }

    .nav.nav-tabs.pricing-tab-navs button.active {
        background: var(--color-primary);
        color: var(--color-heading);
    }

    .pricing-style-two {
        background: linear-gradient(180deg, #fbffed 0, #ffffff 60%);
        padding: 60px;
        border-radius: 10px;
        border: 1px solid var(--bg-gray);
    }

    .pricing-style-two .btn {
        width: 100%;
    }

    .pricing-style-two ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .pricing-style-two ul li {
        padding-left: 25px;
        position: relative;
        z-index: 1;
        color: var(--color-heading);
        font-size: 18px;
        margin-top: 7px;
    }

    .pricing-style-two ul li::after {
        position: absolute;
        left: 0;
        top: 5px;
        content: "\f336";
        font-family: "Font Awesome 5 Pro";
        font-size: 14px;
        font-weight: 600;
    }

    .pricing-style-two .pricing-header {
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        margin-bottom: 25px;
        padding-bottom: 30px;
    }

    .pricing-style-two .pricing-header h4 {
        font-size: 30px;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .pricing-style-two .price h2 {
        font-size: 42px;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .pricing-style-two .price h2 sub {
        font-size: 20px;
        font-weight: 400;
    }

    .pricing-style-two .price h2 del {
        color: #cccccc;
        font-weight: 500;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    .pricing-style-two .price h2 del::after {
        position: absolute;
        left: 0;
        top: 50%;
        content: "";
        height: 3px;
        width: 100%;
        transform: translateY(-50%);
        border-top: 2px solid;
        margin-top: 2px;
    }

    .bg-dark .nav.nav-tabs.pricing-tab-navs button {
        color: var(--white);
    }

    .bg-dark .nav.nav-tabs.pricing-tab-navs button.active {
        color: var(--color-heading);
    }

    .bg-dark .nav.nav-tabs.pricing-tab-navs {
        background: var(--dark-optional);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .bg-dark .pricing-style-two {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .bg-dark .pricing-style-two ul li {
        color: #cccccc;
        font-weight: 400;
    }

    .bg-dark .pricing-style-two .pricing-header {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .bg-dark .btn-border.dark {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .bg-dark .pricing-style-two ul li::after {
        color: var(--color-primary);
    }

    .bg-dark .btn-border.dark::after {
        background: var(--color-primary);
    }

    .bg-dark .btn-border.dark:hover {
        border-color: var(--color-primary);
        color: var(--color-heading);
    }

    /* ============================================================== 
        # Award Style Two
    =================================================================== */

    .award-area {
        background-size: 15% !important;
        background-position: right bottom !important;
        background-repeat: no-repeat !important;
    }

    .award-area .title {
        margin-bottom: 0;
    }

    .award-style-two-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--bg-gray);
        padding: 50px;
        margin-top: 30px;
        border-radius: 10px;
    }

    .bg-gray .award-style-two-item {
        background: var(--white);
    }

    .bg-dark .award-style-two-item {
        background: var(--dark-optional);
    }

    .bg-dark .bg-gray .award-style-two-item {
        background: var(--dark-optional);
    }

    .award-style-two-item a {
        display: inline-block;
        font-size: 45px;
        height: 80px;
        width: 80px;
        background: var(--dark-optional);
        text-align: center;
    }

    .award-style-two-item .date {
        font-size: 36px;
        line-height: 1;
        font-weight: 600;
        opacity: 0.4;
    }

    .award-style-two-item .award {
        display: flex;
        align-items: center;
    }

    .award-style-two-item .award i {
        display: inline-block;
        font-size: 60px;
        margin-right: 15px;
        position: relative;
        font-weight: 600;
        color: var(--color-heading);
        min-width: 100px;
    }

    .bg-dark .award-style-two-item .award i {
        color: var(--white);
    }

    .award-style-two-item .award h4 {
        margin: 0;
        font-size: 24px;
    }

    /* ============================================================== 
        # Portfolio
    =================================================================== */

    .portfolio-style-two {
        margin-top: 100px;
    }

    .thumb-zoom img {
        margin-bottom: 30px;
    }

    .pf-tags {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .pf-tags span:first-child {
        border-radius: 30px;
        background: var(--color-primary);
        color: var(--color-heading);
    }

    .pf-tags span {
        display: inline-block;
        padding: 5px 20px;
        font-weight: 600;
    }

    .pf-item-info {
        margin-left: 50px;
        border-bottom: 1px solid #cccccc;
        padding-bottom: 30px;
        padding-right: 68px;
        position: relative;
    }

    .bg-dark .pf-item-info {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .pf-item-info h2 {
        margin: 0;
        position: relative;
        z-index: 1;
    }

    .portfolio-style-two a {
        position: relative;
        z-index: 1;
        display: block;
        color: var(--color-heading);
    }

    .bg-dark .portfolio-style-two a {
        color: var(--white);
    }

    /* ============================================================== 
        # Portfolio Style Three
    =================================================================== */

    .portfolio-style-three-items {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        position: relative;
    }

    .portfolio-style-three-item {
        position: sticky;
        top: 60px;
        padding: 120px;
        background: var(--white);
        border-radius: 30px;
        box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
        border: 2px solid var(--white);
    }

    .bg-gray .portfolio-style-three-item {
        background: var(--bg-gray);
    }

    .bg-dark .portfolio-style-three-item {
        background: var(--dark-optional);
        border: 5px solid rgba(0, 0, 0, 0.3);
        box-shadow: none;
    }

    .bg-dark .portfolio-style-three-item a {
        color: var(--white);
    }

    .portfolio-style-three-item h2 {
        font-size: 120px;
        position: relative;
        left: -130px;
        line-height: 1;
    }

    .bg-dark .portfolio-style-three-item h2 a {
        color: var(--white);
    }

    .portfolio-style-three-item h2 strong {
        margin-left: 70px;
    }

    .portfolio-style-three-item .date {
        position: relative;
        left: -100px;
        padding-left: 130px;
        padding-bottom: 15px;
        display: inline-block;
        margin-bottom: 20px;
        color: var(--color-heading);
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 600;
    }

    .portfolio-style-three-item .btn-animation {
        margin-left: 40px;
    }

    .bg-dark .portfolio-style-three-item .date {
        color: var(--white);
    }

    .portfolio-style-three-item .date::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 2px;
        width: 100%;
        border-bottom: 2px solid;
    }

    .portfolio-style-three-item img {
        border-radius: 10px;
    }

    .bg-dark .portfolio-style-three-item .btn-animation {
        color: var(--white);
    }

    .bg-dark .portfolio-style-three-item .btn-animation i {
        background: var(--white);
        color: var(--color-heading);
    }

    .portfolio-style-five-area {
        position: relative;
        z-index: 1;
    }

    .portfolio-style-five-area::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 20%;
        width: 100%;
        background: var(--white);
    }

    .portfolio-style-five {
        position: relative;
        z-index: 1;
    }

    .bg-gray.portfolio-style-five-area::after {
        background: var(--bg-gray);
    }

    .bg-dark .portfolio-style-five-area::after {
        background: var(--dark);
    }

    .bg-dark .portfolio-style-five-area.bg-gray::after {
        background: var(--dark-secondary);
    }

    .portfolio-style-five .overlay {
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 30px;
        right: 20%;
        z-index: 1;
        transition: all 0.35s ease-in-out;
        transform: translateX(50px);
        opacity: 0;
        visibility: hidden;
    }

    .portfolio-style-five .overlay h2 {
        font-size: 30px;
        margin-bottom: 10px;
        color: var(--white);
    }

    .portfolio-style-five .overlay span {
        text-transform: uppercase;
        color: var(--color-primary);
    }

    .portfolio-style-five .thumb-zoom {
        position: relative;
        z-index: 1;
    }

    .portfolio-style-five .thumb-zoom::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 50%;
        width: 100%;
        background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 130%) repeat scroll 0 0;
        transition: all 0.35s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

    .portfolio-style-five:hover .overlay {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .portfolio-style-five:hover .thumb-zoom::after {
        height: 80%;
        visibility: visible;
        opacity: 1;
    }

    /* ============================================================== 
        # Portfolio Style Four
    =================================================================== */

    @media (min-width: 1200px) {
        .container-full.no-gap {
            max-width: 100%;
            width: 100%;
            padding: 0;
        }
    }

    .portfolio-style-four .content {
        background: var(--dark-optional);
        display: inline-block;
        padding: 50px;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 300px;
        transition: all 0.35s ease-in-out;
        opacity: 0;
        visibility: hidden;
        transform: translateX(50px);
        z-index: 1;
    }

    .portfolio-style-four .content::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 5px;
        width: 100%;
        background: var(--bg-gradient);
        z-index: -1;
    }

    .swiper-slide.swiper-slide-active .portfolio-style-four .content {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        transition-delay: 0.1s;
    }

    .portfolio-style-four .thumb {
        padding-left: 50px;
        padding-bottom: 50px;
    }

    .portfolio-style-four .content>span {
        text-transform: uppercase;
        color: var(--color-primary);
        font-weight: 500;
        margin-bottom: 8px;
        display: block;
    }

    .portfolio-style-four .content h2 {
        font-size: 27px;
        color: var(--white);
    }

    .portfolio-style-four .content a.btn-animation {
        font-size: 16px;
    }

    .project-center-button-prev,
    .project-center-button-next {
        height: 60px;
        width: 80px;
        line-height: 60px;
        position: relative;
        z-index: 1;
        cursor: pointer;
    }

    .project-four-nav .nav-items {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid;
        overflow: hidden;
        border-radius: 30px;
    }

    .portfolio-style-four .content .btn-animation {
        color: var(--white);
    }

    .portfolio-style-four .content .btn-animation i {
        background: var(--white);
        color: var(--color-heading);
    }

    .bg-dark .project-four-nav .nav-items {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .project-center-button-prev {
        border-right: 1px solid;
    }

    .bg-dark .project-center-button-prev {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .project-center-button-next::after {
        position: absolute;
        left: 50%;
        top: 50%;
        content: "\f061";
        font-family: "Font Awesome 5 Pro";
        transform: translate(-50%, -50%);
        margin-top: 1px;
    }

    .project-center-button-prev::after {
        position: absolute;
        left: 50%;
        top: 50%;
        content: "\f060";
        font-family: "Font Awesome 5 Pro";
        transform: translate(-50%, -50%);
        margin-top: 1px;
    }

    .project-four-nav {
        display: flex;
        justify-content: right;
        max-width: 100%;
        margin: auto;
        padding: 0 15px;
    }

    .project-four-nav .nav-items {
        position: relative;
        right: 0;
        top: -130px;
        margin-bottom: -60px;
    }

    .project-page .project-four-nav {
        justify-content: center;
        top: auto;
        bottom: 120px;
        position: absolute;
        left: 0;
        width: 100%;
        right: 0;
    }

    .project-page .project-four-nav .nav-items {
        top: auto;
        bottom: 0;
        margin: 0;
    }

    .project-page .project-style-four-items {
        padding-bottom: 140px;
    }

    @media (min-width: 576px) {
        .project-four-nav {
            max-width: 540px;
        }
    }

    @media (min-width: 768px) {
        .project-four-nav {
            max-width: 720px;
        }
    }

    @media (min-width: 992px) {
        .project-four-nav {
            max-width: 960px;
        }
    }

    @media (min-width: 1400px) {
        .project-four-nav {
            max-width: 1320px;
        }
    }

    /* ============================================================== 
        # Portfolio Style Five
    =================================================================== */
    .portfolio-style-five-items {
        position: relative;
    }

    .title-fixed h2 {
        margin: 0;
        top: 0;
        font-size: 20rem;
        line-height: 0.8;
        margin-top: -20px;
        text-transform: uppercase;
        font-weight: 700;
        background: linear-gradient(90deg, #d7dacd 40%, #3f432f 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .bg-dark .title-fixed h2 {
        background: linear-gradient(90deg, #dedede 40%, #191919 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    @media (min-width: 1024px) {
        .portfolio-style-five-items .title-fixed {
            position: sticky;
            top: 220px;
        }
    }

    .portfolio-style-five-item {
        display: flex;
        align-items: center;
        margin-top: 80px;
    }

    .portfolio-style-five .thumb-zoom img {
        margin: 0;
    }

    .portfolio-style-five-area .upDownScrol {
        position: absolute;
        top: 50%;
        left: 2%;
    }

    .portfolio-style-five-area .upDownScrol img {
        width: 200px;
    }



    /* ============================================================== 
        # Project Details
    =================================================================== */
    .modal-content .modal-header {
        border: none;
        padding: 0;
        position: absolute;
        right: 50px;
        top: 50px;
    }

    .modal-content .modal-header button.btn-close {
        color: var(--white);
        opacity: 1;
        background: var(--dark-optional);
        font-weight: 100;
        padding: 0;
        height: 40px;
        width: 40px;
        line-height: 41px;
        text-align: center;
    }

    .modal-content .modal-header button.btn-close::before {
        position: absolute;
        left: 50%;
        top: 50%;
        content: "\f00d";
        font-family: "Font Awesome 5 Pro";
        transform: translate(-50%, -50%);
        height: auto;
        width: auto;
        z-index: 1;
        background: transparent;
        color: var(--white);
        opacity: 1;
        font-weight: 100;
    }

    .modal-content .modal-header button.btn-close::after {
        display: none;
    }

    .project-details-thumb img {
        margin-bottom: 60px;
    }

    .project-single-tags a {
        display: inline-block;
        position: relative;
        z-index: 1;
        padding: 5px 20px;
        text-transform: uppercase;
        font-weight: 500;
        background: var(--color-primary);
        color: var(--color-heading);
        border-radius: 5px;
        margin-right: 10px;
        margin-bottom: 15px;
    }

    .project-single-tags a:hover {
        background: var(--dark);
        color: var(--white);
    }

    .bg-dark .project-single-tags a:hover {
        background: var(--white);
        color: var(--color-heading);
    }

    .project-single-tags {
        margin-bottom: 25px;
    }

    .project-details-thumb h2 {
        margin: 0;
        padding-right: 15%;
    }

    .project-author-details ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-row-gap: 30px;
    }

    .project-author-details ul li {
        display: grid;
        grid-template-columns: 1fr 3fr;
        grid-column-gap: 60px;
        position: relative;
        z-index: 1;
        border-top: 1px solid #dddddd;
        padding-top: 30px;
    }

    .bg-dark .project-author-details ul li {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .project-author-details ul li:first-child {
        border: none;
        padding: 0;
    }

    .project-author-details ul li h3 {
        font-size: 20px;
        margin: 0;
    }

    .project-author-details ul li p {
        margin: 0;
    }

    p.project-inner-tag {
        font-weight: 500;
        line-height: 2;
        text-transform: uppercase;
    }

    .item-grid-container {
        display: grid;
        grid-row-gap: 60px;
    }

    .item-grid-container img {
        margin-top: 50px;
    }

    .item-grid-colum {
        display: grid;
        grid-template-columns: 1fr 2.5fr;
        grid-column-gap: 50px;
        grid-row-gap: 60px;
    }

    .thumb-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 30px;
        grid-row-gap: 30px;
    }

    ul.list-disc {
        list-style: disc;
        margin-left: 20px;
        padding: 0;
    }

    ul.list-disc li {
        list-style: disc;
        margin-top: 7px;
    }

    .bg-dark ul.list-disc li {
        color: #cccccc;
    }

    .item-grid-colum .left-info h3 {
        display: flex;
        align-items: center;
    }

    .item-grid-colum .left-info h3 strong {
        position: relative;
        z-index: 1;
        margin-right: 25px;
        padding-right: 50px;
        color: transparent;
        -webkit-text-stroke: 1px #666666;
        font-size: 40px;
        font-weight: 900;
    }

    .bg-dark .item-grid-colum .left-info h3 strong {
        -webkit-text-stroke: 1px #cccccc;
    }

    .item-grid-colum .left-info h3 strong::after {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        content: "";
        height: 1px;
        width: 30px;
        border-top: 1px solid;
        margin-top: 3px;
        color: #666666;
        -webkit-text-stroke: inherit;
    }

    .bg-dark .item-grid-colum .left-info h3 strong::after {
        border-top: 1px solid;
        color: var(--white);
    }

    .project-details-items .single-grid p:last-child {
        margin-bottom: 0;
    }

    .modal-content .shape-fixed {
        position: fixed;
        height: 100%;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left top;
    }

    .project-paginvation-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #dddddd;
        padding-top: 60px;
    }

    .bg-dark .project-paginvation-items {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .project-previous a,
    .project-next a {
        display: flex;
        align-items: center;
    }

    .project-next a {
        text-align: right;
    }

    .project-previous .icon {
        height: 60px;
        width: 60px;
        text-align: center;
        line-height: 60px;
        background: #dbdee0;
        margin-right: 15px;
        color: var(--color-heading);
    }

    .bg-dark .project-previous .icon {
        background: var(--dark-optional);
        color: var(--white);
    }

    .project-next .icon {
        height: 60px;
        width: 60px;
        text-align: center;
        line-height: 60px;
        background: #dbdee0;
        margin-left: 15px;
        color: var(--color-heading);
    }

    .bg-dark .project-next .icon {
        background: var(--dark-optional);
        color: var(--white);
    }

    .project-previous h5,
    .project-next h5 {
        margin: 0;
    }

    .project-previous .nav-title,
    .project-next .nav-title {
        text-transform: uppercase;
        font-weight: 500;
        font-size: 15px;
    }

    .project-previous .nav-title h5,
    .project-next .nav-title h5 {
        text-transform: none;
        font-size: 20px;
    }

    .project-paginvation-items .project-all i {
        display: inline-block;
        height: 60px;
        width: 60px;
        text-align: center;
        line-height: 60px;
        background: var(--color-primary);
        color: var(--color-heading);
    }

    .project-previous .icon i,
    .project-next .icon i {
        font-weight: 500;
    }


    /* Related Projects */
    .related-project-items {
        border-top: 1px solid #dddddd;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .item-grid-container {
            grid-row-gap: 30px;
        }

        .item-grid-colum {
            grid-template-columns: 1fr;
            grid-row-gap: 15px;
        }

        .project-details-thumb h2 {
            padding-right: 0;
        }

        .project-details-style-two .thumb-grid {
            margin-top: 0;
            margin-bottom: 40px;
        }

        .item-grid-container img {
            margin-top: 30px;
        }
    }

    @media (max-width: 767px) {
        .project-details-thumb img {
            margin-bottom: 30px;
        }

        .project-details-thumb h2 {
            padding-right: 0;
        }

        .project-author-details ul li {
            grid-template-columns: 1fr;
            grid-row-gap: 15px;
        }

        .item-grid-colum {
            grid-template-columns: 1fr;
            grid-row-gap: 0;
        }

        .item-grid-container img {
            margin-top: 30px;
        }

        .item-grid-container {
            grid-row-gap: 30px;
        }

        .project-details-style-two .thumb-grid {
            margin-top: 0;
            margin-bottom: 40px;
        }
    }



    /* ============================================================== 
        # Fun Factor
    =================================================================== */
    .fun-fact .counter {
        display: flex;
        align-items: center;
        font-size: 80px;
        line-height: 1.2;
        position: relative;
        font-weight: 600;
    }

    .fun-fact .timer {
        transform: none !important;
    }

    .fun-fact .counter .operator {
        font-weight: 600;
    }

    .fun-fact-circle-lists {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-top: 195px;
        margin-bottom: 170px;
    }

    .fun-fact-circle-lists .fun-fact {
        position: relative;
        padding: 15px;
        text-align: center;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .fun-fact-circle-lists .fun-fact .operator {
        font-weight: 600;
    }

    .bg-dark .fun-fact-circle-lists .fun-fact .operator {
        font-weight: 600;
    }

    .fun-fact-circle-lists .fun-fact .counter {
        justify-content: center;
        color: var(--color-heading);
        font-weight: 600;
    }

    .bg-dark .fun-fact-circle-lists .fun-fact .counter {
        color: var(--white);
        font-weight: 600;
    }

    .fun-fact-circle-lists .fun-fact::after {
        height: 300px;
        width: 300px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border: 1px solid #c9c4c4;
        content: "";
        position: absolute;
        border-radius: 50%;
        z-index: -1;
    }

    .bg-dark .fun-fact-circle-lists .fun-fact::after {
        border: 1px solid #6f6c6c;
    }

    .fun-fact-circle-lists .fun-fact:nth-child(2)::after {
        height: 380px;
        width: 380px;
        background: var(--white);
    }

    .bg-dark .fun-fact-circle-lists .fun-fact:nth-child(2)::after {
        background: var(--dark);
    }

    .fun-fact-circle-lists .fun-fact:last-child::after {
        height: 420px;
        width: 420px;
        background: var(--white);
    }

    .bg-dark .fun-fact-circle-lists .fun-fact:last-child::after {
        background: var(--dark);
    }

    .fun-fact-circle-lists .fun-fact:last-child .counter {
        margin: 0;
    }

    .fun-fact-circle-lists .fun-fact span.medium {
        font-weight: 600;
    }

    .bg-dark .fun-fact-circle-lists .fun-fact span.medium {
        color: var(--white);
        opacity: 0.9;
    }

    .fun-fact-circle-lists .fun-fact:nth-child(2) {
        position: relative;
        top: 40px;
        left: -5px;
        z-index: 9;
    }

    .fun-fact-circle-lists .fun-fact:nth-child(3) {
        top: -120px;
        left: -35px;
    }

    .fun-fact-circle-lists .fun-fact:nth-child(3)::after {
        height: 330px;
        width: 330px;
    }

    .fun-fact-circle-lists .fun-fact:last-child {
        top: 50px;
        right: 60px;
    }

    .fun-fact-circle-lists .fun-fact:last-child .counter .timer {
        font-size: 100px;
        font-weight: 600;
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        margin-top: 0;
    }

    /* ============================================================== 
        # Zoom Video
    =================================================================== */

    .zoom-video-area {
        position: relative;
        overflow: hidden;
    }

    .video-items {
        position: absolute;
        width: 50%;
        text-align: center;
    }

    .video-items .content {
        display: inline-block;
        text-align: left;
    }

    .video-items .content h2 {
        margin: 0;
        font-size: 150px;
        text-transform: uppercase;
        text-align: center;
        color: #cccac6;
    }

    .bg-dark .video-items .content h2 {
        color: var(--white);
    }

    .video-items .content h2 strong {
        display: inline-flex;
        margin-left: 100px;
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        align-items: center;
    }

    .video-items .content h2 strong i {
        font-size: 100px;
        margin-left: 25px;
    }

    @media (max-width: 1023px) {

        .video-items .content {
            text-align: center;
            transform: none !important;
            padding: 0 15px;
        }
    }

    /* ============================================================== 
        # Home Blog 
    =================================================================== */

    .home-blog-one {
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-radius: 10px;
    }

    .home-blog-one .content {
        padding: 40px;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
        transition: all 0.35s ease-in-out;
        transform: translateY(50px);
    }

    .home-blog-one::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 60%;
        width: 100%;
        background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) repeat scroll 0 0;
    }

    .home-blog-one .meta li,
    .home-blog-one .meta li a {
        color: var(--white);
    }

    .blog-area .home-blog-one .meta li::after {
        background: var(--white);
    }

    .home-blog-one a.button-regular {
        opacity: 0;
        border-bottom: 1px solid;
        padding-bottom: 4px;
    }

    .home-blog-one:hover .content {
        transform: translateY(0);
    }

    .home-blog-one:hover .content a.button-regular {
        opacity: 1;
    }

    .bg-dark .blog-area .meta li::after {
        background: #cccccc;
    }

    .bg-dark .blog-area .post-title a {
        color: var(--white);
    }

    .home-blog-style-one .thumb {
        margin-right: 30px;
    }

    .home-blog-one .content h3 {
        margin-bottom: 15px;
    }

    .home-blog-one .content a {
        color: var(--white);
    }

    .home-blog-one a.button-regular.border {
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        padding: 13px 25px;
        border-radius: 30px;
        padding-bottom: 15px;
    }

    .home-blog-one a.button-regular.border i {
        display: inline-block;
        transform: rotate(-45deg);
    }

    .home-blog-one .date {
        position: absolute;
        left: 40px;
        top: 40px;
        background: var(--bg-gradient);
        padding: 6px 20px;
        font-weight: 600;
        color: var(--color-heading);
        border-radius: 5px;
    }

    .bg-dark .home-blog-one .date {
        background: var(--white);
        color: var(--color-heading);
    }

    .home-blog-one img {
        transition: all 0.35s ease-in-out;
    }

    .home-blog-one:hover img {
        transform: scale(1.1);
    }

    .home-blog-two .thumb img {
        border-radius: 10px;
    }

    .home-blog-two .info .content {
        background: var(--white);
        padding: 45px;
        border-radius: 10px;
        position: relative;
        box-shadow: 0 3px 40px 0 rgb(0 0 0 / 10%);
    }

    .bg-dark .home-blog-two .info .content {
        background: var(--dark-optional);
        box-shadow: none;
    }

    .home-blog-two .info {
        position: relative;
        padding-left: 150px;
        top: -80px;
        margin-bottom: -80px;
        padding-right: 30px;
    }

    .bg-dark .blog-area .home-blog-two .meta li,
    .bg-dark .blog-area .home-blog-two .meta li a {
        color: #cccccc;
    }

    .bg-dark .blog-area .home-blog-two .meta li a:hover {
        color: var(--white);
    }

    .bg-dark .blog-area .home-blog-two a.button-regular {
        color: #cccccc;
    }

    .bg-dark .blog-area .home-blog-two a.button-regular:hover {
        color: var(--white);
    }

    .home-blog-two .thumb .date {
        position: absolute;
        left: 30px;
        bottom: -25px;
        background: var(--bg-gradient);
        color: var(--white);
        font-size: 50px;
        text-align: center;
        line-height: 1;
    }

    .home-blog-two .thumb .date {
        display: block;
        font-size: 36px;
        padding: 20px 30px;
        text-align: center;
        font-weight: 700;
        line-height: 1.2;
        padding-bottom: 25px;
        border-radius: 10px;
        color: var(--color-heading);
    }

    .bg-dark .home-blog-two .thumb .date {
        background: var(--white);
    }

    .home-blog-two .thumb .date strong {
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 600;
        display: block;
    }

    @media (min-width: 1024px) {
        .blog-style-two-area .row {
            --bs-gutter-x: 60px;
        }
    }

    /* ============================================================== 
        # Quick Contact
    =================================================================== */
    .quick-contact-items h2 {
        font-size: 150px;
        line-height: 1;
        margin-top: -20px;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .quick-contact-items h2 strong {
        color: transparent;
        -webkit-text-stroke: 1px var(--color-heading);
        font-weight: 700;
    }

    .bg-dark .quick-contact-items h2 strong {
        color: transparent;
        -webkit-text-stroke: 1px var(--white);
    }

    .btn-large-border a {
        display: inline-flex;
        height: 150px;
        width: 150px;
        min-width: 150px;
        padding: 0 20px;
        text-align: center;
        border: 1px solid #cccccc;
        text-transform: uppercase;
        justify-content: center;
        flex-direction: column;
        border-radius: 50%;
        line-height: 1.3;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .btn-large-border a:hover {
        color: var(--color-heading);
    }

    .bg-dark .btn-large-border a {
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
    }

    .btn-large-border a::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 50%;
        width: 50%;
        background: var(--bg-gradient);
        z-index: -1;
        transition: all 0.25s ease-in-out;
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
    }

    .btn-large-border a:hover::after {
        height: 100%;
        width: 100%;
        opacity: 1;
        visibility: visible;
    }

    .btn-large-border a:hover {
        border: 1px solid transparent;
        color: var(--color-heading);
    }

    .btn-large-border a:hover i {
        color: var(--color-heading);
    }

    .btn-large-border a i {
        display: inline-block;
        transform: rotate(-45deg);
        margin-bottom: 10px;
        font-size: 40px;
        line-height: 1;
        color: var(--color-primary);
        font-weight: 300;
        transition: all 0.35s ease-in-out;
    }

    .quick-contact-items .btn-large-border {
        margin-left: 50px;
    }

    .quick-contact-items p {
        margin: 0;
    }

    .bg-theme .btn-large-border a {
        border: 2px solid;
    }

    .bg-theme .btn-large-border a i {
        color: var(--color-heading);
    }

    .bg-theme .btn-large-border a::after {
        background: var(--dark);
    }

    .bg-theme .btn-large-border a:hover {
        border-color: transparent;
        color: var(--white);
    }

    .bg-theme .btn-large-border a:hover i {
        color: var(--white);
    }


    /* ============================================================== 
        # Contact
    =================================================================== */
    .contact-style-one-items {
        padding: 80px;
        background: var(--white);
        border-radius: 10px;
        position: relative;
        z-index: 1;
        box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    }

    .bg-dark .contact-style-one-items {
        background: var(--dark-optional);
        box-shadow: none;
    }

    .contact-style-one-info h4 {
        margin-bottom: 10px;
    }

    .contact-style-one-info ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .contact-style-one-info ul li {
        margin-bottom: 50px;
    }

    .contact-style-one-info ul li:last-child {
        margin-bottom: 0;
    }

    .contact-style-one-info ul li a {
        font-weight: 400;
    }

    form.contact-form .form-group {
        margin-bottom: 15px;
    }

    form.contact-form .form-group input,
    form.contact-form .form-group textarea {
        background: transparent;
        color: var(--color-heading);
        border: none;
        border-bottom: 1px solid #cccccc;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .bg-dark form.contact-form .form-group input,
    .bg-dark form.contact-form .form-group textarea {
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    form.contact-form .form-group input:focus,
    form.contact-form .form-group textarea:focus {
        box-shadow: none;
    }

    .contact-form .form-group textarea {
        height: 150px;
        margin-top: 15px;
    }

    .contact-form button {
        margin-top: 15px;
    }

    .bg-dark .contact-form button::after {
        background: var(--white);
    }

    .bg-dark .contact-form button:hover {
        color: var(--color-heading);
    }

    .contact-address .phone-link {
        color: var(--color-primary);
        font-weight: 600;
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 30px;
        line-height: 1;
        padding-top: 10px;
    }

    .contact-address .phone-link i {
        font-size: 40px;
        margin-right: 5px;
    }

    .bg-dark form.contact-form .form-group input::-webkit-input-placeholder,
    .bg-dark form.contact-form .form-group textarea::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #cccccc;
    }

    .bg-dark form.contact-form .form-group input::-moz-placeholder,
    .bg-dark form.contact-form .form-group textarea::-moz-placeholder {
        /* Firefox 19+ */
        color: #cccccc;
    }

    .bg-dark form.contact-form .form-group input:-ms-input-placeholder,
    .bg-dark form.contact-form .form-group textarea:-ms-input-placeholder {
        /* IE 10+ */
        color: #cccccc;
    }

    .bg-dark form.contact-form .form-group input:-moz-placeholder,
    .bg-dark form.contact-form .form-group textarea:-moz-placeholder {
        /* Firefox 18- */
        color: #cccccc;
    }

    .contact-style-one-info ul.social-link li {
        display: inline-block;
        margin: 0;
    }

    .contact-style-one-info ul.social-link li a {
        display: inline-flex;
        height: 45px;
        width: 45px;
        line-height: 46px;
        background: var(--bg-gray-secondary);
        text-align: center;
        border-radius: 50%;
        margin-right: 10px;
        color: var(--color-heading);
        align-items: center;
        justify-content: center;
    }

    .bg-dark .contact-style-one-info ul.social-link li a {
        background: rgba(255, 255, 255, 1);
    }

    .contact-style-one-info ul.social-link li a img {
        height: 17px;
    }

    .bg-dark .contact-style-one-info ul.social-link li a {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .bg-dark .contact-style-one-info ul.social-link li a img {
        filter: brightness(0) invert(1);
    }

    .bg-dark .contact-style-one-info ul.social-link li a:hover img {
        filter: inherit;
    }

    .bg-dark .contact-style-one-info ul.social-link li a:hover {
        background: var(--color-primary);
        color: var(--color-heading);
    }

    .maps-area {
        margin-bottom: -8px;
        position: relative;
        margin-top: -100px;
    }

    .maps-area iframe {
        width: 100%;
        min-height: 650px;
    }

    /* ============================================================== 
        # Footer
    =================================================================== */
    footer {
        border-top: 1px solid #dddddd;
    }

    .bg-dark footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: var(--dark-secondary);
    }

    .bg-dark footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    @media (min-width: 850px) {
        footer.style-two {
            width: 92%;
            margin: auto;
            border-radius: 30px 30px 0 0;
            border: 1px solid #dddddd;
            border-bottom: none;
        }

        .bg-dark footer.style-two {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
    }

    ul.address-list {
        margin: 0;
        padding: 0;
        list-style: none;
        gap: 80px;
        margin-top: 50px;
        display: flex;
    }

    h4.widget-title {
        font-size: 24px;
    }

    ul.useful-link li {
        font-size: 20px;
    }

    ul.address-list li {
        flex-basis: 50%;
    }

    ul.address-list li p {
        margin-bottom: 0;
    }

    .footer-item {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .footer-item.about {
        border-right: 1px solid #dddddd;
    }

    .bg-dark .footer-item.about {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    ul.useful-link {
        margin: 0;
        padding: 0;
        margin: 0 -15px;
        overflow: hidden;
    }

    ul.useful-link li {
        float: left;
        width: 50%;
        padding: 3px 15px;
    }

    ul.useful-link li a {
        font-weight: 400;
        color: var(--color-paragraph);
    }

    .bg-dark ul.useful-link li a {
        color: #cccccc;
    }

    .footer-item .top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-item .top img {
        height: 50px;
    }

    .footer-item .top h2 {
        margin: 0;
        font-size: 70px;
        color: var(--color-primary);
        background: linear-gradient(90deg, var(--color-heading) 20%, var(--color-secondary) 50%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: -10px;
        text-transform: uppercase;
        font-weight: 700;
    }

    .bg-dark .footer-item .top h2 {
        background: linear-gradient(90deg, #989898 10%, var(--dark-optional) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .quick-btn {
        display: inline-block;
        height: 100px;
        width: 100px;
        text-align: center;
        line-height: 120px;
        background: var(--color-primary);
        min-width: 100px;
        border-radius: 50%;
    }

    .quick-btn:hover {
        color: var(--color-heading);
    }

    .bg-dark .quick-btn {
        background: rgba(255, 255, 255, 0.1);
    }

    .quick-btn i {
        font-weight: 100;
        font-size: 40px;
        transform: rotate(-45deg);
    }

    .bg-dark .quick-btn i {
        color: var(--white);
    }

    form.newsletter {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        position: relative;
        margin-top: 30px;
        max-width: 70%;
        background: var(--white);
        border: 1px solid;
    }

    .bg-dark form.newsletter {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
    }

    form.newsletter input,
    form.newsletter input:focus {
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 25px;
        color: var(--color-heading);
    }

    .bg-dark form.newsletter input,
    .bg-dark form.newsletter input:focus {
        color: var(--white);
    }

    form.newsletter button {
        padding: 0;
        background: transparent;
        position: absolute;
        right: 0;
        top: 0;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        color: var(--color-heading);
    }

    .bg-dark form.newsletter button {
        color: var(--white);
    }

    form.newsletter button::after {
        display: none;
    }

    .footer-bottom {
        border-top: 1px solid #dddddd;
        padding: 15px 0;
    }

    .bg-dark .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    form.newsletter.style-two input {
        width: 100%;
        border: none;
        padding: 15px 30px;
        font-size: 20px;
    }

    form.newsletter input::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: var(--color-heading);
        opacity: 1;
        /* Firefox */
    }

    form.newsletter input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: var(--color-heading);
    }

    form.newsletter input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: var(--color-heading);
    }

    .bg-dark form.newsletter input::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: var(--white);
        opacity: 1;
        /* Firefox */
    }

    .bg-dark form.newsletter input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: var(--white);
    }

    .bg-dark form.newsletter input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: var(--white);
    }

    form.newsletter.style-two {
        max-width: 100%;
        border: none;
        border-radius: 0;
        border: 1px solid #e7e7e7;
        border-radius: 10px;
        background: transparent;
    }

    .bg-gray form.newsletter.style-two {
        border: 1px solid #c6c5c8;
        background: rgba(255, 255, 255, 0.3);
    }

    .bg-dark form.newsletter.style-two {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: transparent;
    }

    form.newsletter.style-two button {
        width: auto;
        padding: 17px 0;
        height: 60px;
        right: 15px;
    }

    form.newsletter.style-two button img {
        height: 100%;
        object-fit: contain;
        object-position: center;
        position: relative;
        top: -2px;
    }

    .bg-dark form.newsletter.style-two button img {
        filter: brightness(0) invert(1);
    }

    ul.footer-social li {
        display: inline-block;
        margin-right: 10px;
    }

    ul.footer-social li a {
        display: inline-block;
        height: 40px;
        width: 40px;
        line-height: 40px;
        text-align: center;
        background: var(--white);
        border-radius: 50%;
        color: var(--color-heading);
        border: 1px solid #e7e7e7;
    }

    .bg-dark ul.footer-social li a {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border: none;
    }

    ul.footer-social li a img {
        padding: 12px;
        position: relative;
        top: -2px;
        filter: brightness(0%);
    }

    .bg-dark ul.footer-social li a img {
        filter: brightness(100%);
    }

    .footer-bottom p {
        margin: 0;
    }

    .footer-bottom .row {
        align-items: center;
    }

    .footer-contact {
        border-top: 1px solid #e7e7e7;
        padding-top: 30px;
        margin-top: 30px;
    }

    .bg-gray .footer-contact {
        border-top: 1px solid #dddddd;
    }

    .bg-dark .footer-contact {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-contact a {
        font-size: 26px;
        font-weight: 500;
    }

    .footer-contact ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 30px;
        row-gap: 5px;
        flex-wrap: wrap;
    }

    .bg-dark .footer-contact ul li:nth-child(2) a {
        color: var(--color-primary);
    }

    @media screen and (max-width: 991px) {
        form.newsletter.style-two input {
            padding: 15px 30px;
        }

        form.newsletter.style-two {
            border: 1px solid #e7e7e7;
            border-radius: 10px;
        }

        form.newsletter.style-two button {
            right: 15px;
        }
    }







    /* ============================================================== 
        # 404 page
    =================================================================== */

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

    .error-page-area .shape-left {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 20%;
        background-position: left !important;
        background-repeat: no-repeat !important;
        z-index: -1;
        opacity: 0.3;
        background-size: contain !important;
    }

    .error-page-area .shape-right {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 20%;
        background-position: right !important;
        background-repeat: no-repeat !important;
        z-index: -1;
        opacity: 0.3;
        background-size: contain !important;
    }

    .error-box {
        padding-top: 60px;
    }

    .error-box h1 {
        font-size: 150px;
        line-height: 110px;
        font-weight: 600;
        margin-bottom: 40px;
        text-shadow: 3px 3px #c0c0c0;
    }

    .error-box h2 {
        font-weight: 600;
        margin-bottom: 20px;
    }

    .error-box p {
        padding: 0 10%;
    }

    /* ============================================================== 
        # Responsive CSS
    =================================================================== */

    @media only screen and (min-width: 992px) and (max-width: 1199px) {

        .title {
            font-size: 50px !important;
        }

        .testimonial-style-two-area::after {
            margin-top: 50px;
        }

        /* Banner Syle One */

        .banner-style-one-area {
            padding-top: 200px;
            padding-bottom: 140px;
        }

        .banner-style-one-heading .thumb {
            max-width: 30%;
            margin-right: 0;
        }

        .banner-style-one-heading h2 {
            font-size: 130px;
            text-align: left;
            float: left;
        }

        .banner-style-one-info p {
            font-size: 20px;
            padding-right: 40%;
        }

        .banner-style-one-info {
            padding-left: 23%;
        }

        /* Banner Style Two */
        .banner-two-content .item-title {
            font-size: 70px;
        }

        .banner-style-two-area .d-flex img {
            display: none;
        }

        /* Banner Style Five */
        .banner-style-five-area,
        .banner-style-five-area div {
            height: auto;
        }

        .banner-style-five-area .content h2 {
            font-size: 100px;
        }

        .banner-style-five-area {
            padding-top: 150px;
            padding-bottom: 120px;
        }

        .banner-style-five-area .bottom-info p {
            padding: 0;
            font-size: 16px;
        }

        .banner-style-five-area .bottom-info {
            gap: 50px;
        }

        /* Banner Six */
        .banner-six-bottom-info {
            display: block;
            min-width: 380px;
        }

        .banner-six-right-info h2 {
            font-size: 70px;
        }

        /* Banner Style Seven */
        .banner-seven-thumb {
            grid-template-columns: 1fr;
        }

        .banner-seven-thumb img:nth-child(2) {
            display: none;
        }

        .banner-seven-bottom-info .content {
            padding: 0;
            margin-top: 50px;
        }

        .banner-seven-bottom-info .container {
            max-width: 960px;
            margin: 0 auto;
        }

        .banner-seven-info {
            padding-right: 30px;
        }

        .banner-seven-bottom-info {
            margin-top: 80px;
        }

        /* Banner Style Eight */
        .banner-style-eight-heading {
            margin-right: 0;
        }

        .banner-style-eight-area .thumb {
            max-width: 250px;
            bottom: -80px;
        }

        .card-style-one {
            height: auto;
            display: inline-flex;
            margin-top: 50px;
            margin-left: 33%;
        }

        /* Banner Style Nine */
        .banner-style-nine-area .content h2 {
            font-size: 120px;
        }

        .banner-style-nine-area .content h2:nth-child(2)::after {
            width: 100px;
        }

        .banner-style-nine-area .content h2:nth-child(2) {
            padding-left: 120px;
        }

        /* Banner Ten */
        .banner-ten-content h2 {
            font-size: 55px;
        }

        .banner-ten-content h2 b {
            width: auto;
            display: inline-block;
            margin: 0;
        }

        .banner-ten-content p {
            padding-left: 50px;
        }

        /* Video Section */
        .video-items .content h2 {
            font-size: 100px;
        }

        .video-items .content h2 strong i {
            font-size: 80px;
            margin-left: 5px;
        }

        .video-items {
            width: 100%;
        }

        .video-items .content h2 strong {
            margin: 0;
            display: block;
        }

        /* About Style One */
        .about-style-one-info h2 {
            font-size: 40px !important;
        }

        .about-style-four-info .progress-style-two {
            margin-left: -80%;
            width: 200%;
        }

        .client-style-one-item {
            padding: 30px 25px;
        }

        /* About Style Two */

        .bg-dark .about-style-two-area {
            background: var(--dark-secondary);
        }

        .about-style-two-info {
            padding-right: 0;
        }

        .about-style-two-info .title {
            font-size: 50px !important;
        }

        .experience-card {
            padding: 50px 17px;
        }

        .about-style-two-area::after {
            display: none;
        }

        /* About Five */
        .banner-style-five-info .d-grid .thumb {
            display: none;
        }

        .banner-style-five-info .d-grid {
            grid-template-columns: 1fr;
        }


        /* About Six */
        .about-style-six-info .d-flex a {
            display: none;
        }

        .about-style-six-info .info {
            padding-left: 30px;
        }

        .about-style-six-info .info .title {
            margin-top: 0;
        }

        .about-style-six-info ul.service-list {
            margin-left: 30px;
            gap: 15px;
        }

        ul.service-list a {
            padding: 50px 20px;
            font-size: 15px;
        }

        /* About Seven */
        .about-style-seven-info .d-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        /* Project Style One */
        .about-style-one-info h2 {
            font-size: 40px !important;
        }

        .project-style-one-area .align-center {
            align-items: center;
        }

        .portfolio-style-one-item .info h2 {
            font-size: 80px;
        }

        .portfolio-style-one-item {
            padding-left: 200px;
        }

        .portfolio-info-card {
            margin: 0;
            padding: 0;
            border: none !important;
        }

        .portfolio-style-one-item .info h2 strong {
            margin-left: 50px;
        }

        .portfolio-style-one-item .btn-animation {
            margin-left: 65px;
        }

        /* Brand */
        .brand-two-carousel {
            margin-left: -70%;
        }

        /* Project Style Two */
        .pf-item-info h2 {
            font-size: 28px;
        }

        .pf-item-info {
            padding-right: 60px;
            margin-left: 0;
        }

        /* Portfolio Style Three */
        .swiper-slide .portfolio-style-four .content {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            transition-delay: 0.1s;
        }

        .thumb-zoom img {
            transform: none !important;
        }

        .portfolio-style-three-item h2 {
            font-size: 80px;
        }

        /* Team Style One */
        .team-style-one-top .title {
            font-size: 36px !important;
        }

        .team-style-one-top .align-center {
            align-items: center;
        }

        /* Fun Factor */
        .fun-fact-circle-lists .fun-fact:nth-child(2)::after {
            height: 300px;
            width: 300px;
        }

        .fun-fact-circle-lists .fun-fact:last-child::after {
            height: 350px;
            width: 350px;
        }

        .fun-fact-circle-lists .fun-fact::after {
            height: 270px;
            width: 270px;
        }

        /* Why Choose Us */
        .choose-us-style-two {
            margin-top: 50px;
        }

        .choose-us-style-two .award-grid {
            height: 100%;
        }

        .choose-us-style-two .award-grid:first-child .award-item {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }


        /* Multi Section */
        .process-style-one-item .item {
            padding: 50px 20px;
        }

        .process-style-one-item p {
            font-size: 15px;
        }

        .award-items {
            margin-left: 30px;
            display: none;
        }

        .award-items .award-item:nth-child(3) {
            display: none;
        }

        .process-style-one-item .item {
            padding: 50px 20px;
        }

        .process-style-one-item p {
            font-size: 15px;
        }

        /* Award */
        .award-item-two {
            display: block;
            margin-bottom: 30px;
            padding: 50px;
        }

        .award-item-two i {
            border: none !important;
            height: auto;
            width: auto;
            margin: 0;
            text-align: inherit;
            line-height: inherit;
        }

        .award-item-two h2 {
            right: auto;
            position: inherit;
            margin-top: 10px;
        }

        .award-item-two:last-child {
            margin-bottom: 0;
        }

        .choose-us-style-three {
            border: 1px solid;
            margin-bottom: 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
        }

        .choose-us-style-three .fun-fact {
            padding: 60px;
        }

        .choose-us-style-three .fun-fact h3 {
            margin-bottom: 0;
        }

        .choose-us-style-three ul.list-style-three {
            margin-top: 0;
            padding: 60px;
            border: none;
            border-left: 1px solid;
        }

        .award-items-style-two {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-column-gap: 30px;
        }

        /* Service One */
        .services-style-one-items .single-item {
            padding: 0 15px;
            margin-top: 30px;
        }

        /* Service Style Three */
        .service-style-three-items {
            display: grid;
            border: none !important;
            grid-template-columns: 1fr 1fr;
            grid-column-gap: 30px;
        }

        .service-style-three-items li {
            width: 100%;
            border: none;
            background: transparent;
            margin-top: 30px;
            border: 1px solid #dddddd;
        }

        .bg-dark .service-style-three-items li {
            border: none !important;
            background: var(--dark-optional);
        }

        .service-style-three-items li.out {
            width: 100%;
        }

        .service-style-three-items li:first-child {
            border: none;
        }

        .service-style-three-items li .service-three-content .info h4 {
            transform: translateY(0px);
            opacity: 1;
            transition-delay: 0.2s;
            visibility: visible;
        }

        .service-style-three-items li .service-three-content .info p {
            transform: translateX(0px);
            opacity: 1;
            transition-delay: 0.4s;
            visibility: visible;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }

        .service-three-content .bottom {
            margin-top: 30px;
        }

        .service-three-content .bottom h4 {
            display: none;
        }

        h2.text-large-gradient {
            font-size: 90px;
        }

        /* Service Six */
        .service-style-six-items ul li {
            padding: 60px;
            position: relative;
        }

        /* Team Style One */
        .team-style-one-items .nav-tabs {
            padding-right: 0;
            margin-bottom: 60px;
            display: grid;
            grid-auto-columns: minmax(0, 1fr);
            grid-auto-flow: column;
            gap: 30px;
        }

        .team-style-one-items .nav-tabs::after {
            display: none;
        }

        .team-style-one-items .nav-tabs li.nav-item {
            display: inline-block;
        }

        .team-style-one-items .nav-tabs::before,
        .team-style-one-items .nav-tabs::after {
            display: none;
        }

        .team-style-one-items .nav-tabs li.nav-item .nav-link {
            margin: 0;
        }

        /* Team Style Two */
        .team-style-two-item {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .team-style-two-item .info {
            margin: 0;
            margin-top: -30px;
            text-align: center;
            margin-right: 15px;
            margin-left: 15px;
        }

        .team-style-two-item .thumb {
            padding: 0;
        }

        .team-style-two-item .share-link {
            left: 50%;
            bottom: 10px;
            transform: translateX(-50%);
        }

        .team-style-two-item .thumb::after {
            left: 15px;
            top: auto;
            height: 65%;
            display: none;
        }

        .team-style-two-item .share-link>i {
            background: var(--bg-gradient);
            border: 2px solid;
            line-height: 36px;
        }

        /* Team Single */
        .team-qualifcations .skill-items {
            padding: 0;
            margin-top: 60px;
        }

        /* Home Blog */
        .home-blog-one .content h3 {
            font-size: 20px;
        }

        .home-blog-one .meta li {
            font-size: 15px;
        }


        /* Footer */
        .footer-item.about {
            padding-right: 50px;
        }

        .footer-item .top {
            gap: 50px;
        }

        .footer-item .top h2 {
            font-size: 40px;
        }
    }

    @media screen and (max-width: 1023px) {

        /* Text Scroll Animation */
        .text-scroll-animation .text {
            background: transparent;
            color: var(--color-heading) !important;
        }

        .bg-dark .text-scroll-animation .text {
            background: transparent;
            color: var(--white) !important;
        }

        .text-scroll-animation p.text {
            color: var(--color-paragraph) !important;
        }

        .bg-dark .text-scroll-animation p.text {
            color: #cccccc !important;
        }

        .cursor-hover-parent {
            display: none;
        }

        .banner-style-three .content {
            transform: none !important;
        }

        .banner-style-two-area:before {
            top: 0;
        }

        .about-style-one-area .bottom-info .img-container {
            padding: 0;
        }

        .about-style-one-area .bottom-info .thumb img {
            position: relative;
            transform: none !important;
            transform-origin: inherit;
            width: 100%;
            height: auto;
            left: 0;
        }

        #smooth-wrapper {
            height: auto !important;
            position: inherit !important;
        }

        #smooth-content {
            transform: none !important;
            overflow: inherit !important;
        }
    }


    /* Tablet Layout Custom */
    @media only screen and (min-width: 768px) and (max-width: 1023px) {}

    @media screen and (max-width: 991px) {

        /* global reset - start */
        .order-last {
            order: 0;
        }

        .banner-style-three-area {
            padding-top: 102px;
        }

        .banner-style-four-area {
            padding-top: 102px;
        }
    }

    /* Tablet Layout: 768px.*/
    @media only screen and (min-width: 768px) and (max-width: 991px) {

        .title {
            font-size: 55px !important;
        }

        .site-heading {
            text-align: center;
        }

        .site-heading .text-end {
            text-align: center !important;
        }

        .site-heading a.btn-circle {
            margin-top: 30px;
            margin-bottom: 10px;
        }

        /* Banner Style One */
        .banner-style-one-area {
            padding-top: 190px;
            padding-bottom: 120px;
        }

        .banner-style-one-info p {
            font-size: 20px;
            margin-top: 20px;
        }

        .banner-style-one-heading .thumb {
            display: none;
        }

        .banner-style-one-heading h2 {
            float: left;
            font-size: 80px;
        }

        .banner-style-one-heading h2:first-child {
            margin-right: 0;
        }

        .banner-style-one-info .top-info {
            padding-bottom: 20px;
        }

        .banner-style-one-info {
            padding-bottom: 0;
        }

        /* Banner Style Two */
        .banner-style-two-area {
            padding: 120px 0;
            padding-top: 200px;
        }

        .banner-two-content .item-title {
            font-size: 80px;
        }

        .banner-two-thumb {
            margin-top: 50px;
        }

        .banner-two-thumb img:nth-child(2) {
            left: -30px;
            width: 100px;
        }


        /* Banner Style Three */
        .banner-style-three .thumb {
            height: calc(100vh - 360px) !important;
        }

        .banner-slide-counter .banner-slide-button-prev,
        .banner-slide-counter .banner-slide-button-next {
            bottom: -70px;
        }

        .banner-slide-pagination {
            bottom: -70px;
        }



        /* Banner Style Four */
        .banner-style-four-bullet .swiper-wrapper {
            top: 0;
        }

        .banner-style-four-item img {
            width: 100%;
            object-fit: cover;
            height: 100%;
            transform: inherit;
            top: 100px;
        }

        .banner-style-four-item img:nth-child(2) {
            display: none;
        }

        .banner-style-four-item {
            position: relative;
            z-index: 1;
        }

        .banner-style-four-item::after {
            position: absolute;
            left: 0;
            top: 0;
            content: "";
            height: 100%;
            width: 100%;
            background: #000000;
            opacity: 0.3;
        }

        .banner-style-four-bullet .swiper-slide {
            opacity: 0.6;
        }

        .banner-style-four-bullet .swiper-slide.swiper-slide-active {
            opacity: 1;
        }

        .banner-style-four-bullet .swiper-slide .swiper-bullet-item h2 {
            font-size: calc(1rem + 8vw);
        }

        .banner-style-four-bullet .swiper-slide .swiper-bullet-item h2 a {
            color: var(--white);
        }

        ul.project-meta li {
            font-size: calc(1rem + 1vw);
            color: var(--white);
        }

        .banner-style-four-bullet .swiper-slide.swiper-slide-active .swiper-bullet-item {
            transform: scale(1.2);
            margin: 0;
        }

        .banner-style-four-bullet {
            margin-top: -60px;
        }

        .swiper-slide.swiper-slide-active .swiper-bullet-item h2 strong {
            -webkit-text-stroke: 1px var(--white);
            color: transparent;
        }

        ul.project-meta li::after {
            background: var(--white);
        }

        /* Banner Style Five */
        .banner-style-five-area,
        .banner-style-five-area div {
            height: auto;
        }

        .banner-style-five-area .content h2 {
            font-size: 100px;
        }

        .banner-style-five-area {
            padding-top: 200px;
            padding-bottom: 120px;
        }

        .banner-style-five-area .bottom-info p {
            padding: 0;
            font-size: 16px;
        }

        .banner-style-five-area .bottom-info {
            gap: 50px;
        }

        /* Banner Six */
        .banner-style-six-area {
            padding-top: 220px;
        }

        .banner-six-right-info h2 {
            font-size: 50px;
        }

        .banner-six-right-info .curve-text {
            display: none;
        }

        .banner-six-right-info {
            display: inline-flex;
            float: right;
        }

        .banner-six-bottom-info {
            display: inline-block;
        }

        /* Banner Style Seven */
        .banner-seven-thumb {
            grid-template-columns: 1fr;
        }

        .banner-seven-thumb img:first-child {
            display: none;
        }

        .banner-seven-info h2 {
            font-size: 90px;
        }

        .banner-style-seven-area {
            padding-top: 200px;
        }

        .banner-seven-bottom-info .content {
            padding: 0;
            margin-top: 50px;
        }

        .banner-seven-bottom-info .container {
            max-width: 720px;
            margin: 0 auto;
            padding-left: 15px;
        }

        .banner-seven-info {
            padding-right: 30px;
        }

        /* Banner Style Eight */
        .banner-style-eight-heading h2 {
            font-size: 120px;
        }

        .banner-style-eight-heading {
            margin-right: 0;
        }

        .card-style-one {
            height: auto;
            display: inline-flex;
            margin-top: 50px;
            display: none;
        }

        .card-style-one .bottom {
            gap: 50px;
        }

        .banner-style-eight-area .thumb {
            display: none;
        }

        .banner-style-eight-heading h2:first-child {
            color: var(--color-primary);
        }

        /* Banner Style Nine */
        .banner-style-nine-area .content h2 {
            font-size: 140px;
        }

        .banner-style-nine-items {
            padding-top: 200px;
            padding-bottom: 120px;
        }

        .banner-style-nine-area .content h2:nth-child(2) {
            padding-left: 120px;
        }

        .banner-style-nine-area .content h2:nth-child(2)::after {
            width: 100px;
        }

        .banner-style-nined-right {
            display: grid;
            gap: 50px;
            margin-top: 30px;
        }

        /* Banner Ten */

        .banner-style-ten-area {
            padding-top: 200px;
            padding-bottom: 120px;
        }

        .banner-ten-content h2 {
            font-size: 70px;
        }

        .banner-ten-content h2 b {
            display: inline-block;
            margin: 0;
            width: auto;
        }

        .banner-ten-content p {
            padding: 0;
        }

        .banner-style-ten-left-info img {
            margin-top: 40px;
        }

        .banner-style-ten-left-info .fun-fact-style-two {
            position: inherit;
            right: 0;
            margin-top: 40px;
            width: 100%;
            text-align: center;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .banner-style-ten-left-info .fun-fact-style-two .counter {
            justify-content: center;
        }

        .banner-style-ten-left-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding-bottom: 0;
        }

        /* About Style One */
        .about-style-one-left-info {
            border: none !important;
        }

        .about-style-one-left-info .fun-fact {
            display: inline-block;
            border-right: 1px solid #cccccc;
            margin-right: 50px;
            padding-right: 50px;
            margin-top: 0;
            margin-bottom: 50px;
        }

        .bg-dark .about-style-one-left-info .fun-fact {
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .about-style-one-left-info .fun-fact:last-child {
            margin-right: 0;
            padding-right: 0;
            border: none;
        }

        .about-style-one-area .bottom-info .thumb {
            padding: 0;
        }

        .about-style-one-area .bottom-info .thumb .about-skills {
            position: inherit;
        }

        .about-style-one-area .bottom-info .thumb img {
            margin-bottom: 30px;
        }


        /* About Style Two */
        .about-style-two-area::after {
            display: none;
        }

        .bg-dark .about-style-two-area {
            background: var(--dark-secondary);
        }

        .about-style-two-info {
            margin-bottom: 60px;
        }

        .experience-card {
            padding: 50px;
            margin-right: 50px;
        }

        /* About Style Three */
        .thumb-style-three .curve-text {
            right: auto;
            left: 50%;
            transform: translateX(-50%);
            bottom: 50px;
            top: auto;
        }

        .scroll-shape {
            display: none;
        }

        .thumb-style-three {
            margin-bottom: 40px;
        }


        /* About Style Four */
        .about-four-title {
            text-align: center;
        }

        .about-style-four-thumb img {
            width: 100%;
            margin-bottom: 50px;
        }

        .about-style-four-info .progress-style-two {
            margin: 0;
            padding: 0;
            padding-right: 50px;
        }

        /* About Style Five */
        .about-style-five-thumb img {
            margin-bottom: 50px;
        }

        .about-style-five-info .experience-card {
            margin: 0;
            margin-right: 50px;
        }

        .banner-style-five-info {
            margin-top: 50px;
        }

        .banner-style-five-info .d-grid {
            grid-template-columns: 1fr;
        }

        /* About Style Six */
        .about-style-six-info ul.service-list {
            margin-left: 0;
        }

        .about-style-six-info {
            margin-top: 50px;
        }

        .about-style-six-area ul.list-style-one {
            display: block;
        }

        ul.list-style-one li {
            display: inline-block;
            border: none;
            border-right: 1px solid;
            padding: 0;
            padding-right: 15px;
            margin-right: 15px;
            line-height: 1;
        }

        ul.list-style-one li:last-child {
            border-right: none;
            padding-right: 0;
            margin-right: 0;
        }

        ul.list-style-one li strong {
            min-width: auto;
            color: var(--color-heading);
            font-weight: 600;
            margin-right: 15px;
        }

        .bg-dark ul.list-style-one li strong {
            color: var(--white);
        }

        /* About Style Serven  */
        .about-style-seven-area::after {
            display: none;
        }

        .about-style-seven-info {
            margin-top: 50px;
        }

        .about-style-seven-info ul.list-style-one li {
            margin: 0;
            padding: 0;
            border: none;
            margin-bottom: 25px;
            display: block;
        }

        .about-style-seven-info .d-grid .list-style-one {
            margin: 0;
        }

        .about-style-seven-left-info {
            padding: 0;
            border: none;
        }


        /* Brand */

        .partner-two-thumb {
            height: auto;
        }

        .partner-two-thumb img {
            margin-bottom: 50px;
        }

        .brand-two-carousel {
            margin: 0;
            margin-top: 30px;
        }

        .brand-style-two-items {
            padding-bottom: 0;
        }


        /* Why Choose Us */
        .choose-us-style-two {
            margin-top: 50px;
        }

        .choose-us-style-two .award-grid {
            height: 100%;
        }

        .choose-us-style-two .award-grid:first-child .award-item {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Services Style One */
        .services-style-one-items .single-item {
            padding: 0 15px;
            margin-top: 30px;
        }

        .services-style-one-items {
            margin-top: -30px;
        }

        .services-style-one-item h4 {
            transform: translateY(0);
        }

        .services-style-one-item p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Service Style Two */
        .service-hover-content {
            grid-template-columns: 1fr;
        }

        .service-hover-content .left {
            display: block;
            margin-bottom: 20px;
        }

        .service-hover-content .arrow {
            text-align: left;
            justify-content: flex-start;
            margin-top: 30px;
        }

        .service-hover-content .details span {
            position: absolute;
            right: 80px;
            bottom: 100px;
            margin: 0;
        }

        .service-hover-content .details {
            position: inherit;
        }

        /* Service Style Three */
        .service-style-three-items {
            display: grid;
            border: none !important;
            grid-template-columns: 1fr 1fr;
            grid-column-gap: 30px;
        }

        .service-style-three-items li {
            width: 100%;
            border: none;
            background: transparent;
            margin-top: 30px;
            border: 1px solid #dddddd;
        }

        .bg-dark .service-style-three-items li {
            background: var(--dark-optional);
            border: none !important;
        }

        .service-style-three-items li.out {
            width: 100%;
        }

        .service-style-three-items li:first-child {
            border: none;
        }

        .service-style-three-items li .service-three-content .info h4 {
            transform: translateY(0px);
            opacity: 1;
            transition-delay: 0.2s;
            visibility: visible;
        }

        .service-style-three-items li .service-three-content .info p {
            transform: translateX(0px);
            opacity: 1;
            transition-delay: 0.4s;
            visibility: visible;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }

        .service-three-content .bottom {
            margin-top: 30px;
        }

        .service-three-content .bottom h4 {
            display: none;
        }

        /* Service Style Four */
        .services-item-one-items {
            position: relative;
            padding-bottom: 120px;
        }

        .cteative-service-item {
            padding: 50px;
        }

        .services-nav {
            position: absolute;
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            top: auto;
            bottom: 0;
            margin: 0;
        }

        .cteative-service-item .top {
            display: block;
        }

        .cteative-service-item img {
            margin: 0;
            margin-top: 30px;
        }

        .cteative-service-item .top strong {
            display: inline-block;
            padding: 0;
        }

        .cteative-service-item .top strong::after {
            display: none;
        }


        /* Service Five */
        .fixed-heading {
            font-size: calc(1rem + 10vw);
            top: 0;
        }

        .service-style-five-items .image-hover-item {
            margin-top: 30px;
        }

        .service-style-five-items ul {
            margin: 0;
        }

        .service-style-five-items ul li {
            margin: 0;
            margin-right: 20px;
        }

        .service-style-five-items li:first-child .image-hover-item {
            margin-top: 0;
        }

        /* Service Style Six */
        .service-style-six-info {
            text-align: center;
            margin-bottom: 50px;
        }

        .service-style-six-items ul li {
            position: relative;
        }

        /* Service Details */
        .service-fun-fact .fun-fact {
            display: block;
        }

        .service-fun-fact .fun-fact img {
            margin: 0;
            margin-bottom: 20px;
        }

        .services-details-items .thumb img {
            margin-bottom: 30px;
        }

        .services-details-items .title-border {
            margin: 0;
        }

        .services-details-items .title-border::after {
            display: none;
        }

        .d-grid.colums-2 {
            grid-template-columns: 1fr;
            grid-row-gap: 40px;
        }


        /* Fun Factor */
        .fun-fact-circle-lists {
            grid-template-columns: 1fr 1fr;
            margin: 0;
            grid-row-gap: 50px;
        }

        .fun-fact-circle-lists .fun-fact {
            left: auto !important;
            right: auto !important;
            top: auto !important;
            bottom: auto !important;
            margin: 30px auto auto !important;
        }

        .fun-fact-circle-lists .fun-fact::after {
            height: 100% !important;
            width: 100% !important;
        }

        .fun-fact-circle-lists .fun-fact {
            height: 300px !important;
            width: 300px !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin: 0;
            visibility: visible !important;
            opacity: 1 !important;
            animation: none !important;
        }

        .fun-fact-circle-lists .fun-fact:first-child {
            margin-top: 0;
        }

        .fun-fact-circle-lists .fun-fact .counter {
            margin: 0;
        }


        /* Video Section */
        .video-items .content h2 {
            font-size: 100px;
        }

        .video-items .content h2 strong i {
            font-size: 80px;
            margin-left: 5px;
        }

        .video-items {
            width: 100%;
        }

        .video-items .content h2 strong {
            margin: 0;
        }

        /* Team */

        .team-style-one-item {
            text-align: center;
        }

        .text-large {
            text-align: center;
        }

        .team-style-one-top .title {
            margin-bottom: 20px;
            text-align: center;
        }

        .team-style-one-top {
            padding: 30px 0;
        }

        .team-style-one-items .nav-tabs {
            padding: 0;
            margin-bottom: 50px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
        }

        .team-style-one-items .nav-tabs li.nav-item .nav-link {
            text-align: center;
            margin: 0;
            padding: 30px 20px;
        }

        .team-style-one-items .nav-tabs li.nav-item .nav-link strong {
            font-size: 18px;
            margin-bottom: 0;
        }

        .team-style-one-items .nav-tabs li.nav-item .nav-link span {
            margin-top: 5px;
            display: block;
            font-size: 16px;
        }

        .team-style-one-items .nav-tabs li.nav-item {
            display: inherit;
            margin: 0;
            padding: 0;
        }

        .team-style-one-items .nav-tabs::after,
        .team-style-one-items .nav-tabs::before {
            display: none;
        }

        .team-style-one-top .title .line {
            text-align: center !important;
        }

        .team-style-one-items .nav-tabs::after {
            display: none;
        }

        /* Team Style Two */
        .team-style-two-item {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .team-style-two-item .info {
            margin: 0;
            margin-top: -30px;
            text-align: center;
            margin-right: 15px;
            margin-left: 15px;
        }

        .team-style-two-item .thumb {
            padding: 0;
        }

        .team-style-two-item .share-link {
            left: 50%;
            bottom: 10px;
            transform: translateX(-50%);
        }

        .team-style-two-item .thumb::after {
            left: 15px;
            top: auto;
            height: 65%;
            display: none;
        }

        .team-style-two-item .share-link>i {
            background: var(--bg-gradient);
            border: 2px solid var(--white);
            line-height: 36px;
            color: var(--color-heading);
        }


        /* Team Style Three */
        .team-style-three-item .info {
            text-align: left;
            margin: 0;
            margin-left: 30px;
        }

        .team-style-three-area::after {
            bottom: 60%;
        }

        /* Team Single */
        .team-content-top .thumb img {
            padding: 0;
            margin: 0;
        }

        .team-content-top {
            margin: 0;
            padding: 60px;
        }

        .team-content-top::after {
            display: none;
        }

        .team-right-info {
            padding: 0;
            margin-top: 50px;
        }

        .award-area .site-title {
            margin-bottom: 60px;
        }

        /* Testimonial */
        .testimonial-one-quote .sub-title {
            left: 50%;
            transform: translateX(-50%);
            font-size: 60px;
        }

        .testimonial-quote {
            justify-content: center;
            margin: 0;
            float: none;
            margin: auto auto 30px;
        }

        .testimonial-quote img {
            margin-top: 60px;
        }

        .testimonial-style-one-carousel {
            text-align: center;
        }

        .tm-provider {
            justify-content: center;
        }

        .testimonial-style-one-carousel .testimonial-one-navigation {
            position: inherit;
            text-align: center;
            justify-content: center;
            margin-top: 70px;
        }

        /* Testimonial */
        .testimonial-bullet .swiper-slide {
            width: 30%;
        }

        /* Testimonial Three */
        .testimonial-heading h2.text-large-gradient {
            font-size: 10vw;
            position: relative;
            text-align: center;
            width: 100%;
            top: 0;
            transform: inherit;
            margin-bottom: 30px;
        }

        .testimonial-heading .text-end {
            text-align: center !important;
        }

        .testimonial-three-quote h2 {
            height: 120px;
            width: 120px;
            line-height: 110px;
            color: var(--color-primary);
        }

        .testimonial-style-three-item {
            text-align: center;
            padding: 50px 30px;
        }

        .testimonial-style-three-item p {
            font-size: 20px;
        }

        .tes-rating {
            justify-content: center;
        }

        /* Faq */
        .faq-area .col-lg-6:nth-child(2) .faq-style-one {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 30px;
            margin-top: 30px;
        }

        /* Process */

        .process-style-one-items .row {
            margin: 0 -15px;
            margin-bottom: -30px;
        }

        .client-style-one-item:nth-last-child(2) {
            border-bottom: none;
        }

        .thumb-style-one {
            margin-bottom: 40px;
        }

        .thumb-style-one img:nth-child(2) {
            display: none;
        }

        .choose-us-style-one {
            text-align: left;
        }

        .award-items {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-row-gap: 30px;
            margin: 0;
            margin-top: 40px;
        }

        .process-style-one-item::after,
        .process-style-one-item::before {
            display: none;
        }

        .process-style-one-items::before {
            display: none;
        }

        .process-style-one-item .item {
            border: 1px solid #cccccc;
        }

        .bg-dark .process-style-one-item .item {
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .process-style-one-items::after {
            display: none;
        }

        .process-style-one-item {
            margin-bottom: 30px;
            border: none !important;
        }

        .process-style-one-item:last-child {
            margin-bottom: 0;
        }

        .panel.contact-panel::after {
            display: none;
        }

        .contact-panel-bg {
            display: none;
        }

        /* Process */
        .process-style-two {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .process-style-two::after {
            border: none;
            border-left: 1px solid #e7e7e7;
            right: auto;
            top: 0;
            bottom: 0;
            left: 0;
            height: 100%;
            display: none;
        }

        .process-style-two-item span {
            border: none !important;
            height: 60px;
            width: 60px;
            line-height: 60px;
        }

        .process-style-two-item {
            border: 1px solid #e7e7e7;
            padding: 30px;
            border-radius: 10px;
        }

        .bg-dark .process-style-two-item {
            border-color: rgba(255, 255, 255, 0.2);
        }


        /* Portfolio Style One */
        .portfolio-info-card {
            padding: 0;
            margin: 0;
            border: none !important;
        }

        .portfolio-style-one-content {
            margin-top: 60px;
        }

        .portfolio-style-one-item {
            padding-left: 230px;
        }

        .portfolio-style-one-item .info h2 {
            font-size: 90px;
        }

        .portfolio-style-one-item .info h2 strong {
            margin-left: 50px;
        }

        .portfolio-style-one-item .btn-animation {
            margin-left: 70px;
        }

        /* Portfolio Style Three */
        .portfolio-style-three-item {
            padding: 50px;
            position: inherit;
            top: 0;
        }

        .portfolio-style-three-item h2 {
            left: 0;
            font-size: 80px;
            margin-bottom: 15px;
        }

        .portfolio-style-three-item .btn-animation {
            margin-left: 10px;
        }

        .portfolio-style-three-item h2 strong {
            margin: 0;
        }

        .portfolio-style-three-item .date {
            left: 0;
            padding: 0;
            border: none;
            margin-top: 30px;
            margin-bottom: 12px;
        }

        .portfolio-style-three-item .date::after {
            display: none;
        }

        /* Project Four */
        .project-page .project-four-nav {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: auto;
            bottom: 120px;
            justify-content: center;
        }

        .project-four-nav .nav-items {
            margin: 0;
            top: 0;
        }

        .project-style-four-items {
            padding-bottom: 120px;
        }

        /* Portfolio Five */
        .title-fixed h2 {
            font-size: 200px;
            line-height: 1;
        }

        .thumb-zoom img {
            transform: none !important;
        }

        /* Project Details */
        .project-details-items .thumb-grid {
            margin-bottom: 50px;
        }

        .project-details-items {
            margin-bottom: -60px;
        }

        /* Brand */
        .brand-info {
            padding-right: 0;
            text-align: center;
            justify-content: center;
            align-items: center;
        }

        .brand-info::after {
            display: none;
        }

        /* Pricing */
        .pricing-style-two {
            padding: 50px;
        }


        /* Award */
        .award-item-two {
            display: block;
            margin-bottom: 30px;
            padding: 50px;
        }

        .award-item-two i {
            border: none !important;
            height: auto;
            width: auto;
            margin: 0;
            text-align: inherit;
            line-height: inherit;
        }

        .award-item-two h2 {
            right: auto;
            position: inherit;
            margin-top: 10px;
        }

        .award-item-two:last-child {
            margin-bottom: 0;
        }

        .choose-us-style-three {
            border: 1px solid;
            margin-bottom: 50px;
        }

        .choose-us-style-three .fun-fact {
            padding: 60px;
        }

        .choose-us-style-three .fun-fact h3 {
            margin-bottom: 0;
        }

        .choose-us-style-three ul.list-style-three {
            margin-top: 0;
            padding: 60px;
        }

        .award-items-style-two {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-column-gap: 30px;
        }

        /* Home Blog */

        .home-blog-style-one {
            display: block;
            border: 1px solid #e7e7e7;
            border-radius: 30px;
            padding: 30px;
        }

        .home-blog-style-one .thumb {
            margin: 0;
        }

        .home-blog-style-one::after {
            display: none;
        }

        .bg-dark .home-blog-style-one {
            border-color: rgba(255, 255, 255, 0.3);
        }

        .home-blog-style-one .thumb {
            margin-bottom: 30px;
        }

        .home-blog-two .info {
            top: 0;
            padding: 0;
            margin: 0;
            border-radius: 0 0 10px 10px;
        }

        .home-blog-two .info .content {
            border-radius: inherit;
        }

        .home-blog-two .thumb .date {
            bottom: 30px;
        }

        .home-blog-two .thumb img {
            border-radius: 10px 10px 0 0;
        }

        /* Quick Contact */
        .quick-contact-items h2 {
            font-size: 100px;
        }

        /* Contact */
        .contact-form-style-one {
            margin-top: 50px;
        }

        /* Footer */
        .footer-item {
            padding-top: 50px;
            padding-bottom: 0;
        }

        footer .f-items {
            padding-bottom: 120px;
        }

        .footer-item.about,
        .bg-dark .footer-item.about {
            border: none;
        }

        ul.footer-social {
            text-align: center;
        }

        ul.footer-social li {
            margin: 0 10px;
        }

        .footer-bottom {
            padding: 30px 0;
        }

        .footer-bottom .text-end {
            text-align: center !important;
            margin-top: 15px;
        }
    }

    /* Mobile Layout: 320px. */
    @media only screen and (max-width: 767px) {

        /* Banner Style One */
        .banner-style-one-heading h2 {
            font-size: 36px;
            float: none;
            text-align: left;
            margin-bottom: 10px;
        }

        .banner-style-one-heading .title-right {
            text-align: left;
            font-size: 50px;
        }

        .banner-style-one-area {
            padding: 80px 0;
            padding-top: 150px;
        }

        .banner-style-one-heading .thumb {
            float: left;
            margin-right: -20%;
            margin-left: 0;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            display: none;
        }

        .banner-style-one-info {
            padding-top: 20px;
            padding-bottom: 0;
        }

        .banner-style-one-info .top-info {
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        /* Banner Style Two */
        .banner-style-two-area {
            padding-top: 160px;
            padding-bottom: 80px;
        }

        .banner-two-content .item-title {
            font-size: 50px;
            margin-bottom: 10px;
        }

        .banner-two-content .item-title.text-end {
            text-align: left !important;
        }

        .banner-two-content .item-title strong::after {
            top: 3px;
        }

        .banner-two-content .item-title strong {
            padding: 2px 10px;
        }

        .banner-two-content p {
            padding: 0;
        }

        .banner-two-thumb {
            margin-top: 50px;
        }

        .banner-two-thumb img:nth-child(2) {
            left: 30px;
            display: none;
        }

        .banner-style-two-area .d-flex {
            display: block !important;
        }

        .banner-style-two-area .d-flex img {
            display: none;
        }

        .banner-two-content .item-title.text-end img {
            display: none;
        }

        /* Banner Style Three */
        .banner-style-three .thumb {
            height: calc(100vh - 360px) !important;
        }

        .banner-slide-counter .banner-slide-button-prev,
        .banner-slide-counter .banner-slide-button-next {
            bottom: -60px;
        }

        .banner-slide-pagination {
            bottom: -60px;
        }



        /* Banner Style Four */
        .banner-style-four-bullet .swiper-wrapper {
            top: 0;
        }

        .banner-style-four-item img {
            width: 100%;
            object-fit: cover;
            height: 100%;
            transform: inherit;
            top: 100px;
        }

        .banner-style-four-item img:nth-child(2) {
            display: none;
        }

        .banner-style-four-item {
            position: relative;
            z-index: 1;
        }

        .banner-style-four-item::after {
            position: absolute;
            left: 0;
            top: 0;
            content: "";
            height: 100%;
            width: 100%;
            background: #000000;
            opacity: 0.3;
        }

        .banner-style-four-bullet .swiper-slide,
        .bg-dark .banner-style-four-bullet .swiper-slide {
            opacity: 0.6;
        }

        .banner-style-four-bullet .swiper-slide.swiper-slide-active {
            opacity: 1;
        }

        .banner-style-four-bullet .swiper-slide .swiper-bullet-item h2 {
            font-size: calc(1rem + 8vw);
        }

        .swiper-slide.swiper-slide-active .swiper-bullet-item h2 strong {
            -webkit-text-stroke: 1px var(--white);
            color: transparent;
        }

        ul.project-meta li::after {
            background: var(--white);
        }

        .banner-style-four-bullet .swiper-slide .swiper-bullet-item h2 a {
            color: var(--white);
        }

        ul.project-meta li {
            font-size: calc(1rem + 1vw);
            color: var(--white);
        }

        .banner-style-four-bullet .swiper-slide.swiper-slide-active .swiper-bullet-item {
            transform: scale(1.2);
            margin: 0;
        }

        ul.project-meta {
            margin-bottom: 5px;
        }

        .banner-style-four-bullet {
            margin-top: -60px;
        }

        /* Banner Style Five */
        .banner-style-five-area .content h2 {
            font-size: 50px;
            margin-bottom: 15px;
        }

        .banner-style-five-area {
            padding-top: 0;
        }

        .banner-style-five-area .content {
            display: block;
            padding: 80px 0;
            padding-top: 160px;
        }

        .banner-style-five-area .content .info h2:nth-child(2) .line div {
            float: left;
        }

        .banner-style-five-area .bottom-info {
            display: block;
            margin-top: 30px;
        }

        .banner-style-five-area,
        .banner-style-five-area div {
            height: auto;
        }

        .user-card {
            justify-content: flex-start;
        }

        .banner-style-five-area .bottom-info .text-end {
            text-align: left !important;
        }

        .banner-style-five-area .content .user-card {
            margin-top: 30px;
        }

        .banner-style-five-area .bottom-info p {
            padding: 0;
        }

        /* Banner Style Six */
        .banner-style-six-area {
            padding: 80px 0;
            text-align: center;
            padding-top: 160px;
        }

        .banner-six-right-info {
            display: block;
            padding: 0;
            background: transparent !important;
        }

        .banner-style-six-area {
            background: var(--bg-gray);
        }

        .bg-dark .banner-style-six-area {
            background: var(--dark-secondary);
        }

        .banner-six-right-info h2 {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .banner-six-right-info h2 strong::before {
            display: none;
        }

        .banner-six-right-info .curve-text {
            margin-top: 30px;
        }

        .banner-six-thumb {
            background-image: none !important;
        }

        .banner-six-bottom-info {
            margin: 0;
            padding: 0;
            margin-top: 20px;
            background: transparent !important;
        }

        .expert-card {
            display: grid;
            gap: 10px;
        }

        .banner-six-bottom-info::before,
        .banner-six-bottom-info::after {
            display: none;
        }

        .banner-six-right-info::after,
        .banner-six-right-info::before {
            display: none;
        }

        .banner-six-bottom-info .expert-card {
            border-top: 1px solid #cccccc;
            padding-top: 20px;
        }

        .bg-dark .banner-six-bottom-info .expert-card {
            border-color: rgba(255, 255, 255, 0.1);
        }

        /* Banner Style Seven */
        .banner-style-seven-area {
            padding: 80px 0;
            padding-top: 160px;
        }

        .banner-seven-info h2 {
            font-size: 40px;
            margin: 0;
        }

        .banner-seven-thumb {
            grid-template-columns: 1fr;
            grid-row-gap: 30px;
            display: none;
        }

        .banner-seven-bottom-info .content {
            padding: 0;
            margin: 0;
            display: block;
            text-align: center;
            margin-top: 50px;
        }

        .banner-seven-bottom-info .container {
            margin: 0;
            padding: 0 15px;
            width: 100%;
            max-width: 100%;
        }

        .banner-seven-info h2.text-end {
            text-align: center !important;
        }

        .banner-seven-info {
            text-align: center;
            margin: 0;
        }

        .banner-seven-info .line {
            text-align: center !important;
        }

        .banner-seven-bottom-info .content .fun-fact .counter {
            justify-content: center;
            align-items: center;
            font-size: 60px;
        }

        .banner-seven-bottom-info .content .fun-fact {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 5px;
            max-width: 400px;
            margin: auto auto 30px;
        }

        .banner-seven-bottom-info .split-text .line {
            text-align: center !important;
        }

        /* Banner Style Eight */
        .banner-style-eight-heading h2 {
            font-size: 55px;
            line-height: 1.2;
        }

        .banner-style-eight-area .d-grid {
            grid-template-columns: 1fr;
        }

        .banner-style-eight-area .card-style-one {
            margin-top: 40px;
            height: auto;
        }

        .banner-style-eight-area .thumb {
            display: none;
        }

        .banner-style-eight-area {
            padding-top: 140px;
            padding-bottom: 80px;
        }

        .banner-style-eight-heading {
            margin: 0;
            margin-bottom: 30px;
        }

        .banner-style-eight-area .d-grid h4 {
            top: 0;
            display: none;
        }

        .banner-style-eight-area .d-grid .right,
        .bg-dark .banner-style-eight-area .d-grid .right {
            padding: 0;
            border: none;
        }

        /* Banner Style Nine */
        .banner-style-nine-area .content h2 {
            font-size: 50px;
        }

        .banner-style-nine-area .content h2:nth-child(2) {
            float: left;
            text-align: left;
            padding-left: 65px;
        }

        .banner-style-nine-area .content h2:nth-child(2)::after {
            width: 100%;
            height: 45px;
            top: -5px;
            transform: none;
        }

        .banner-style-nine-items {
            padding-top: 160px;
            padding-bottom: 70px;
        }

        .banner-style-nine-area .content h2:nth-child(2) {
            margin-top: 5px;
        }

        .banner-style-nine-area .content p {
            padding: 0;
        }

        .banner-style-nined-right {
            display: grid;
            gap: 40px;
        }

        /* Banner Ten */
        .banner-ten-content h2 {
            font-size: 40px;
            line-height: 1.4;
        }

        .banner-ten-content h2 b {
            display: inline-block;
            margin: 0;
            width: auto;
        }

        .banner-ten-content p {
            padding: 0;
        }

        .banner-style-ten-left-info img {
            display: none;
        }

        .banner-style-ten-left-info .fun-fact-style-two {
            position: inherit;
            right: 0;
            width: 100%;
            margin-top: 30px;
        }

        .banner-style-ten-area {
            padding-top: 160px;
            padding-bottom: 70px;
        }

        .banner-style-ten-left-info {
            padding-bottom: 0;
        }

        /* Brand */
        .brand-conetnt h2 {
            font-size: 50px;
        }

        .brand-carousel img {
            max-height: 30px;
        }

        /* About */
        .about-style-one-left-info {
            border: none;
            display: none;
        }

        .about-style-one-left-info .fun-fact {
            display: inline-block;
            margin-bottom: 35px;
            margin-right: 50px;
        }

        .about-style-one-left-info .fun-fact:last-child {
            margin-right: 0;
        }

        .about-style-one-info .d-flex a {
            display: none;
        }

        .about-style-one-area .bottom-info .thumb .about-skills {
            position: inherit;
            margin-top: 30px;
            padding: 50px 30px;
        }

        .about-style-one-area .bottom-info .thumb {
            padding: 0;
        }

        /* About Style Two */

        .bg-dark .about-style-two-area {
            background: var(--dark-secondary);
        }

        .about-style-two-area::after {
            display: none;
        }

        .experience-card {
            padding: 50px;
            margin-bottom: 40px;
        }

        .experience-card .fun-fact .counter {
            font-size: 100px;
            line-height: 1;
            margin-bottom: 5px;
        }

        .about-style-two-info {
            margin-bottom: 50px;
        }

        /* About Style Three */
        .thumb-style-three .curve-text {
            right: auto;
            left: 50%;
            transform: translateX(-50%);
            bottom: 50px;
            top: auto;
        }

        .scroll-shape {
            display: none;
        }

        .thumb-style-three {
            margin-bottom: 40px;
        }

        .about-style-three-info .d-flex {
            display: block !important;
        }

        /* About Style Four */
        .about-style-four-thumb {
            margin-bottom: 30px;
        }

        .about-style-four-info p {
            font-size: 18px;
        }

        .about-style-four-info .progress-style-two {
            margin: 0;
            padding: 0;
            background: transparent;
            width: 100%;
        }

        .about-style-four-info .d-flex {
            display: block !important;
        }

        .about-style-four-info .d-flex .thumb.upDownScrolSlow {
            transform: none !important;
            margin-top: 40px;
        }

        .about-four-title {
            text-align: center;
        }

        .barnd-style-two-area {
            text-align: center;
        }

        /* About Style Five */
        .about-style-five-thumb img {
            margin-bottom: 50px;
        }

        .about-style-five-info .d-flex {
            display: block !important;
        }

        .about-style-five-info .experience-card {
            margin: 0;
        }

        .banner-style-five-info .d-grid {
            grid-template-columns: 1fr;
            margin-top: 30px;
        }

        /* About Style Six */
        .about-style-six-info {
            margin-top: 60px;
        }

        .about-style-six-info .d-flex a {
            display: none;
        }

        .about-style-six-info ul.service-list {
            margin: 0;
            grid-template-columns: 1fr;
            grid-auto-columns: inherit;
            grid-auto-flow: inherit;
            gap: 30px;
        }

        /* About Seven */
        .about-style-seven-info .d-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .about-style-seven-area::after {
            width: 100%;
            display: none;
        }

        .about-style-seven-info {
            margin-top: 30px;
            border-top: 1px solid #dddddd;
            padding-top: 30px;
        }

        .bg-dark .about-style-seven-info {
            border-top: 1px solid rgba(255, 255, 255, 0.3);
        }

        .about-style-seven-info .d-grid .list-style-one {
            display: block;
        }

        .about-style-seven-left-info {
            padding: 0;
            border: none;
        }


        /* Services */
        .services-style-one-items .single-item {
            margin-top: 30px;
            padding: 0 15px;
        }

        .services-style-one-items .single-item:first-child {
            margin-top: 0;
        }

        .services-style-one-item h4 {
            transform: translateY(0);
        }

        .services-style-one-item p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Service Styel Two */

        .services-style-two-area {
            padding-bottom: 60px;
        }

        .service-hover-content {
            grid-template-columns: 1fr;
        }

        .service-hover-item {
            padding: 50px;
        }

        .service-hover-item::after {
            border: 1px solid #cccccc;
            border-radius: 10px;
        }

        .bg-dark .service-hover-item::after {
            border: 1px solid rgba(255, 255, 255, 0.2);
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, var(--dark-optional) 20%, #1d1d1d 100%);
            opacity: 1;
            visibility: visible;
            height: 100%;
        }

        .service-hover-item::before {
            left: 0;
            width: 100%;
        }

        .service-hover-items>ul>li {
            margin-top: 30px;
        }

        .service-hover-items>ul>li:first-child {
            margin-top: 0;
        }

        .service-hover-content h2 {
            font-size: 28px;
        }

        .service-hover-content .item-title {
            margin-bottom: 30px;
        }

        .service-hover-content .arrow {
            justify-content: flex-start;
            margin-top: 30px;
        }

        .service-hover-content .details span {
            position: absolute;
            right: 50px;
            bottom: 50px;
            display: none;
        }

        .service-hover-items>ul>li {
            position: relative;
        }

        .btn-arrow-xl {
            transform: none;
        }

        /* Service Style Three */
        .service-style-three-items {
            display: block;
            border: none;
        }

        .service-style-three-items li {
            width: 100%;
            border: none;
            border: 1px solid #dddddd;
            margin-top: 30px;
        }

        .bg-dark .service-style-three-items li {
            background: var(--dark-optional);
            border: none !important;
        }

        .service-style-three-items li.out {
            width: 100%;
        }

        .service-style-three-items li:first-child {
            border: none;
            margin-top: 0;
        }

        .service-style-three-items li .service-three-content .info h4 {
            transform: translateY(0px);
            opacity: 1;
            transition-delay: 0.2s;
            visibility: visible;
        }

        .service-style-three-items li .service-three-content .info p {
            transform: translateX(0px);
            opacity: 1;
            transition-delay: 0.4s;
            visibility: visible;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }

        .service-three-content .bottom {
            margin-top: 30px;
        }

        .service-three-content .bottom h4 {
            display: none;
        }

        /* Service Style Four */
        .services-item-one-items {
            position: relative;
            padding-bottom: 120px;
        }

        .cteative-service-item {
            padding: 50px;
        }

        .services-nav {
            position: absolute;
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            top: auto;
            bottom: 0;
            margin: 0;
        }

        .cteative-service-item .top {
            display: block;
        }

        .cteative-service-item img {
            margin: 0;
            margin-top: 30px;
        }

        .cteative-service-item .top strong {
            display: inline-block;
            padding: 0;
        }

        .cteative-service-item .top strong::after {
            display: none;
        }

        /* Service Five */
        .fixed-heading {
            font-size: calc(1rem + 10vw);
            top: 30px;
            opacity: 0.1;
        }

        .service-style-five-items .item-content h2 {
            font-size: 30px;
        }

        .service-style-five-items .image-hover-item {
            margin-top: 30px;
        }

        .service-style-five-items li:first-child .image-hover-item {
            margin-top: 0;
        }

        .service-style-five-items ul {
            margin: 0;
        }

        .service-style-five-items ul li {
            margin: 0;
            display: block;
        }

        /* Service Six */
        .services-style-six-area {
            text-align: center;
        }

        .service-style-six-info {
            margin-bottom: 50px;
        }

        .service-style-six-items ul li {
            display: block;
            padding: 50px 37px;
            position: relative;
        }

        .service-style-six-items ul li .icon {
            min-width: auto;
            margin: 0;
            margin-bottom: 30px;
        }

        .service-style-six-items ul li .icon img {
            height: 80px;
        }

        .service-style-six-items ul li .item-title span {
            border: navajowhite;
            padding-bottom: 0;
        }

        .service-style-six-items ul li .details>span {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Service Details */
        .service-fun-fact .fun-fact {
            display: block;
        }

        .service-fun-fact .fun-fact img {
            margin: 0;
            margin-bottom: 20px;
        }

        .services-details-items .thumb img {
            margin-bottom: 30px;
        }

        .services-details-items .title-border {
            margin: 0;
        }

        .services-details-items .title-border::after {
            display: none;
        }

        .d-grid.colums-2 {
            grid-template-columns: 1fr;
            grid-row-gap: 40px;
        }

        .service-single-thumb img {
            margin-bottom: 25px;
        }


        /* Faq */
        .faq-area .col-lg-6:nth-child(2) .faq-style-one {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 30px;
            margin-top: 30px;
        }


        /* Brand */

        .partner-two-thumb {
            height: auto;
        }

        .partner-two-thumb img {
            margin-bottom: 40px;
        }

        .brand-two-carousel {
            margin: 0;
        }

        .brand-style-two-items {
            padding-bottom: 0;
        }

        .partner-two-item {
            text-align: center;
        }

        /* Fun Factor */


        .fun-fact-circle-lists {
            grid-template-columns: 1fr;
            margin: 0;
        }

        .fun-fact-circle-lists .fun-fact {
            left: auto !important;
            right: auto !important;
            top: auto !important;
            bottom: auto !important;
            margin: 30px auto auto;
        }

        .fun-fact-circle-lists .fun-fact::after {
            height: 100% !important;
            width: 100% !important;
        }

        .fun-fact-circle-lists .fun-fact {
            height: 300px !important;
            width: 300px !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .fun-fact-circle-lists .fun-fact:first-child {
            margin-top: 0;
        }

        .fun-fact-circle-lists .fun-fact .counter {
            margin: 0;
        }

        /* Video Section */
        .video-items .content h2 {
            font-size: 60px;
        }

        .video-items .content h2 strong i {
            font-size: 50px;
            margin-left: 5px;
        }

        .video-items {
            width: 100%;
        }

        .video-items .content h2 strong {
            margin: 0;
        }

        /* Team */

        .team-style-one-item {
            text-align: center;
        }

        .text-large {
            text-align: center;
            font-size: 60px;
            line-height: 1.2;
            margin: 0;
            -webkit-text-stroke: 1px var(--color-heading);
        }

        .bg-dark .text-large {
            -webkit-text-stroke: 1px #d1d1d1;
        }

        .team-style-one-top .title {
            font-size: 30px !important;
            margin-bottom: 10px;
            text-align: center;
        }

        .team-style-one-top {
            padding: 30px 0;
        }

        .team-style-one-items {
            padding-top: 50px;
            padding-bottom: 20px;
        }

        .team-style-one-items .nav-tabs {
            padding: 0;
            margin-bottom: 30px;
        }

        .team-style-one-items .nav-tabs li.nav-item .nav-link {
            text-align: center;
        }

        .team-style-one-top .title .line {
            text-align: center !important;
        }

        .team-style-one-items .nav-tabs::after {
            display: none;
        }


        /* Team Style Two */
        .team-style-two-item {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .team-style-two-item .info {
            margin: 0;
            margin-top: -30px;
            text-align: center;
            margin-right: 15px;
            margin-left: 15px;
        }

        .team-style-two-item .thumb {
            padding: 0;
        }

        .team-style-two-item .share-link {
            left: 50%;
            bottom: 10px;
            transform: translateX(-50%);
        }

        .team-style-two-item .thumb::after {
            left: 15px;
            top: auto;
            height: 65%;
            display: none;
        }

        .team-style-two-item .share-link>i {
            background: var(--bg-gradient);
            border: 2px solid var(--white);
            line-height: 36px;
            color: var(--color-heading);
        }

        .team-style-three-item .info {
            text-align: left;
            margin: 0;
            margin-left: 30px;
        }

        .team-style-two-area .swiper-wrapper {
            padding-bottom: 0;
        }

        /* Team Single */
        .team-content-top .thumb img {
            padding: 0;
            margin: 0;
        }

        .team-content-top {
            margin: 0;
            padding: 30px;
        }

        .team-content-top::after {
            display: none;
        }

        .award-area .site-title {
            margin-bottom: 30px;
        }

        .award-area {
            text-align: center;
        }

        .qualification-grid h2 {
            writing-mode: inherit;
        }

        .qualification-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .team-right-info {
            padding: 0;
            margin-top: 30px;
        }


        /* Testimonial */
        .testimonial-one-quote .sub-title {
            left: 50%;
            transform: translateX(-50%);
        }

        .testimonial-quote {
            justify-content: center;
            margin: 0;
            float: none;
            margin: auto auto 30px;
            height: 300px;
            width: 300px;
        }

        .testimonial-quote img {
            margin-top: 60px;
        }

        .testimonial-style-one-carousel {
            text-align: center;
        }

        .tm-provider {
            justify-content: center;
        }

        .testimonial-style-one-carousel .testimonial-one-navigation {
            position: inherit;
            text-align: center;
            justify-content: center;
            margin-top: 70px;
        }

        /* Testimonial */
        .testimonial-style-two-area::after {
            height: 320px;
            width: 320px;
            transform: translateX(-50%);
            top: 145px;
        }

        .testimonial-style-two p {
            font-size: 20px;
        }

        .testimonial-style-two-carousel .swiper-wrapper {
            padding-top: 15px;
        }

        .testimonial-bullet {
            max-width: 320px;
        }

        /* Testimonial Three */
        .testimonial-heading h2.text-large-gradient {
            font-size: 10vw;
            position: relative;
            text-align: center;
            width: 100%;
            top: 0;
            transform: inherit;
            margin-bottom: 30px;
        }

        .testimonial-heading .text-end {
            text-align: center !important;
        }

        .testimonial-three-quote h2 {
            height: 120px;
            width: 120px;
            line-height: 110px;
            color: var(--color-primary);
        }

        .testimonial-style-three-item {
            text-align: center;
        }

        .tes-rating {
            justify-content: center;
        }

        /* Clients */
        .client-style-one-items {
            grid-template-columns: 1fr 1fr;
        }

        .client-style-one-item:first-child::before {
            left: 0;
        }

        .client-style-one-item:last-child::before {
            right: 0;
        }

        .client-style-one-item:last-child::after {
            bottom: 0;
        }

        .client-style-one-item:nth-last-child(2) {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .client-style-one-item:last-child {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .client-style-one-item:first-child::after {
            top: 0;
        }

        .brand-info {
            padding-right: 0;
            margin-bottom: 50px;
            height: auto;
            text-align: center;
            justify-content: center;
            align-items: center;
        }

        .brand-info::after {
            display: none;
        }

        /* Process */

        .process-style-one-items .row {
            margin: 0 -15px;
        }

        .client-style-one-items {
            grid-template-columns: 1fr;
        }

        .client-style-one-item:nth-last-child(2) {
            border-bottom: none;
        }

        .thumb-style-one {
            margin-right: 15px;
            margin-bottom: 40px;
        }

        .choose-us-style-one {
            text-align: left;
        }

        .award-items {
            display: grid;
            grid-template-columns: 1fr;
            grid-row-gap: 30px;
            margin: 0;
            margin-top: 40px;
        }

        .process-style-one-item::after,
        .process-style-one-item::before {
            display: none;
        }

        .process-style-one-items::before {
            display: none;
        }

        .process-style-one-item .item {
            border: 1px solid #cccccc;
        }

        .bg-dark .process-style-one-item .item {
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .process-style-one-items::after {
            display: none;
        }

        .process-style-one-item {
            margin-bottom: 30px;
            border: none !important;
        }

        .process-style-one-item:last-child {
            margin-bottom: 0;
        }

        .panel.contact-panel::after {
            display: none;
        }

        .contact-panel-bg {
            display: none;
        }

        /* Choose Us Style Two */
        .faq-style-one.d-flex {
            display: block !important;
        }

        .progressbar.circle {
            margin: 0;
            padding: 0;
            border: none;
            margin-bottom: 40px;
            display: none;
        }

        .choose-us-style-two {
            grid-template-columns: 1fr;
            grid-row-gap: 30px;
            margin-top: 40px;
        }


        /* Process */
        .process-style-two {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .process-style-two::after {
            border: none;
            border-left: 1px solid #e7e7e7;
            right: auto;
            top: 0;
            bottom: 0;
            left: 0;
            height: 100%;
            display: none;
        }

        .process-style-two-item span {
            border: none !important;
            height: 60px;
            width: 60px;
            line-height: 60px;
        }

        .process-style-two-item {
            border: 1px solid #e7e7e7;
            padding: 30px;
            border-radius: 10px;
        }

        .bg-dark .process-style-two-item {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .gallery-two-columns {
            gap: 30px;
        }

        /* Project */
        .portfolio-info-card {
            padding: 0;
            margin: 0;
            border: none !important;
        }

        .portfolio-style-one-content {
            padding-left: 0;
        }

        .portfolio-style-one-item .info h2 strong {
            margin: 0;
        }

        .portfolio-style-one-item .info h2 {
            font-size: 10vw;
        }

        .portfolio-style-one-item {
            padding: 0;
            margin-top: 30px;
        }

        .project-swiper-nav {
            position: inherit;
            height: auto;
            transform: inherit;
            flex-direction: inherit;
            justify-content: space-between;
            gap: 30px;
            background: var(--bg-gray-secondary);
            border-radius: 50px;
        }

        .bg-dark .project-swiper-nav {
            background: #212020;
        }

        .bg-dark .project-swiper-nav>div {
            background: var(--color-primary);
        }

        .bg-dark .project-swiper-nav>div::after {
            color: var(--color-heading);
        }

        .project-swiper-nav .project-pagination {
            display: flex;
            width: 50px;
            height: auto;
            flex-direction: inherit;
            top: 10px;
            letter-spacing: 12px;
            left: 50%;
            transform: translateX(-50%);
        }

        .portfolio-style-one-item .info {
            position: inherit;
            transform: inherit;
            margin-top: 20px;
            padding-bottom: 40px;
            max-width: 100%;
            top: 0;
        }

        .portfolio-style-one-item .btn-animation {
            margin-left: 13px;
        }

        /* Portfolio Style Two */
        .pf-item-info {
            margin-left: 0;
        }

        .portfolio-style-two {
            margin-top: 50px;
        }

        .pf-item-info h2 {
            font-size: 30px;
        }

        /* Portfolio Style Three */
        .portfolio-style-three-item {
            padding: 50px;
            position: inherit;
            top: 0;
        }

        .portfolio-style-three-item h2 {
            left: 0;
            font-size: 36px;
            margin-bottom: 15px;
        }

        .portfolio-style-three-item .btn-animation {
            margin-left: 10px;
        }

        .portfolio-style-three-item h2 strong {
            margin: 0;
        }

        .portfolio-style-three-item .date {
            left: 0;
            padding: 0;
            border: none;
            margin-top: 30px;
            margin-bottom: 12px;
        }

        .portfolio-style-three-item .date::after {
            display: none;
        }

        /* Portfolio Style Four */
        .project-style-four-items {
            position: relative;
            padding-bottom: 100px;
        }

        .project-four-nav {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: auto;
            bottom: 0;
            justify-content: center;
        }

        .project-four-nav .nav-items {
            margin: 0;
            top: 0;
        }

        .portfolio-style-four .content {
            position: relative;
            width: 100%;
        }

        .portfolio-style-four .thumb {
            padding: 0;
        }

        .project-page .project-four-nav {
            bottom: 0;
            left: 50%;
        }

        .project-page .project-style-four-items {
            padding-bottom: 100px;
        }

        .pf-tags {
            display: block;
        }

        .pf-tags span {
            border: 1px solid #dddddd;
            border-radius: 30px;
            display: inline-block;
            margin-right: 5px;
            margin-bottom: 10px;
        }

        .bg-dark .pf-tags span {
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Project Details */

        .modal-content .modal-header {
            top: 68px;
            right: 20px;
        }

        .modal-content .modal-header {
            top: 68px;
            right: 20px;
        }

        .thumb-grid {
            grid-template-columns: 1fr;
            grid-row-gap: 30px;
        }

        .project-details-items .thumb-grid {
            margin-bottom: 40px;
        }

        .modal-content .shape-fixed {
            background-image: none !important;
        }

        .project-paginvation-items {
            display: block;
            text-align: center;
            border: none;
            padding: 0;
        }

        .project-previous .icon {
            display: none;
        }

        .project-next .icon {
            display: none;
        }

        .project-paginvation-items>div {
            margin: 10px 0;
        }

        .project-paginvation-items>div a {
            display: block;
            text-align: center !important;
            background: var(--bg-gray);
            padding: 20px;
        }

        .bg-dark .project-paginvation-items>div a {
            background: var(--dark-optional);
        }

        .project-paginvation-items>div:first-child {
            margin-top: 0;
        }

        .project-paginvation-items .project-all i {
            border: none;
            font-size: 30px;
        }

        /* Portfolio Style Five */
        .title-fixed h2 {
            font-size: 20vw;
            margin: 0;
        }

        .thumb-zoom img {
            transform: none !important;
        }

        .portfolio-style-five-item {
            margin-top: 30px;
        }

        .portfolio-style-five-area .upDownScrol {
            display: none;
        }

        /* Brand Carousel */
        .brand-heading::after {
            display: none;
        }

        .brand-heading h3 {
            padding: 0;
        }

        .brand-carousel {
            padding-top: 30px;
        }

        .about-four-title .title {
            text-align: center !important;
            align-items: center;
        }

        /* Award */
        .award-item-two {
            display: block;
            margin-bottom: 30px;
            padding: 50px;
        }

        .award-item-two i {
            border: none !important;
            height: auto;
            width: auto;
            margin: 0;
            text-align: inherit;
            line-height: inherit;
        }

        .award-item-two h2 {
            right: auto;
            position: inherit;
            margin-top: 10px;
        }

        .award-item-two:last-child {
            margin-bottom: 0;
        }

        .choose-us-style-three .fun-fact .counter {
            font-size: 150px;
        }

        .choose-us-style-three {
            border: 1px solid;
            margin-bottom: 50px;
        }

        .choose-us-style-three .fun-fact {
            padding: 30px;
        }

        .choose-us-style-three .fun-fact h3 {
            margin-bottom: 0;
        }

        .choose-us-style-three ul.list-style-three {
            margin-top: 0;
            padding: 30px;
        }

        /* Pricing */
        .pricing-style-one:first-child {
            margin-top: 40px;
        }

        .pricing-style-one {
            display: block;
        }

        .pricing-style-one .left {
            width: 100%;
            border: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .bg-dark .pricing-style-one .left {
            border: none;
            padding-right: 0;
        }

        .pricing-style-one:first-child {
            margin-top: 40px;
        }

        /* Home Blog */

        .home-blog-style-one {
            display: block;
            border: 1px solid #e7e7e7;
            border-radius: 30px;
            padding: 30px;
        }

        .home-blog-style-one .thumb {
            margin: 0;
        }

        .home-blog-style-one::after {
            display: none;
        }

        .bg-dark .home-blog-style-one {
            border-color: rgba(255, 255, 255, 0.3);
        }

        .home-blog-style-one .thumb {
            margin-bottom: 30px;
        }

        .home-blog-two .info {
            top: 0;
            padding: 0;
            margin: 0;
        }

        .home-blog-two .info .content {
            border-radius: inherit;
        }

        .home-blog-two .thumb .date {
            bottom: 30px;
        }

        .home-blog-two .thumb img {
            border-radius: 10px 10px 0 0;
        }

        /* Quick Contact */
        .quick-contact-items h2 {
            font-size: 60px;
            margin-bottom: 20px;
            line-height: 1;
        }

        .quick-contact-items .d-flex {
            display: block !important;
        }

        .quick-contact-items .btn-large-border {
            margin: 0;
            text-align: left !important;
            margin-top: 30px;
        }

        /* Contact */
        .contact-style-one-items {
            padding: 50px;
        }

        .contact-form-style-one {
            margin-top: 50px;
        }

        .maps-area iframe {
            min-height: 350px;
        }

        /* Footer */
        .footer-item {
            padding-top: 50px;
            padding-bottom: 0;
        }

        footer .f-items {
            padding-bottom: 60px;
        }

        .footer-item.about,
        .bg-dark .footer-item.about {
            border: none;
        }

        ul.footer-social {
            text-align: center;
        }

        ul.footer-social li {
            margin: 0 10px;
        }

        .footer-bottom .text-end {
            text-align: center !important;
            margin-top: 15px;
        }


        /* 404 */

        .error-box p {
            padding: 0;
        }
    }

    @media only screen and (max-width: 500px) {

        /* Navbar */
        .side .widget .logo img {
            height: 40px;
        }

        .nav-full-width .side a.close-side {
            top: 26px;
            right: 65px;
        }

        .nav-full-width .side {
            padding: 0 30px;
        }

        /* Testimonial */

        .testimonial-style-one-carousel p {
            font-size: 18px;
        }

        .testimonial-style-three-item {
            padding: 50px 30px;
        }

        /* Clients */
        .client-style-one-items {
            grid-template-columns: 1fr;
        }

        .client-style-one-item:nth-last-child(2) {
            border-bottom: none;
        }

        /* Award Style Two */
        .award-style-two-item {
            display: block;
            text-align: center;
        }

        .award-style-two-item .date {
            margin-top: 15px;
        }

        .award-style-two-item .award {
            display: block;
        }

        .award-style-two-item .award i {
            margin: 0;
            margin-bottom: 15px;
        }

        /* Video Section */
        .video-items .content h2 {
            font-size: 36px;
        }

        .video-items .content h2 strong i {
            font-size: 30px;
        }

        /* Team Single */
        .team-content-top .thumb img {
            padding: 0;
            margin: 0;
        }

        .team-content-top {
            margin: 0;
        }

        .team-content-top::after {
            display: none;
        }

        .team-right-info {
            padding: 0;
            margin-top: 30px;
        }

        .team-right-info .social {
            display: block;
        }

        .team-right-info .social .share-link {
            margin: 0;
            margin-top: 30px;
            display: none;
        }

        /* Multi Section Contact */
        ul.contact-list li {
            margin-top: 20px;
            float: none;
        }

        ul.contact-list li:first-child {
            margin-top: 0;
        }

        .panel.contact-panel {
            text-align: left;
        }

        ul.contact-list {
            display: block;
        }

        /* Blog */
        .home-blog-two .info .content {
            padding: 45px 30px;
            border-radius: 0 0 10px 10px;
        }

        /* Footer */
        .footer-item .top h2 {
            font-size: 27px;
            margin-top: 0;
            margin-right: 26px;
        }

        .quick-btn {
            height: 80px;
            width: 80px;
            line-height: 90px;
            min-width: 80px;
        }

        .quick-btn i {
            font-size: 30px;
        }

        .footer-item .top {
            justify-content: flex-start;
        }

        ul.useful-link {
            margin: 0;
        }

        ul.useful-link li {
            float: none;
            width: 100%;
            padding: 0;
            margin-bottom: 15px;
        }

        form.newsletter {
            max-width: 100%;
        }

        ul.address-list {
            display: block;
        }

        ul.address-list li {
            margin-bottom: 30px;
        }

        ul.address-list li:last-child {
            margin-bottom: 0;
        }

        ul.address-list li h4 {
            margin-bottom: 15px;
        }

        .achivement-fact .fun-fact {
            float: none;
            border: none;
            margin: 0;
            padding: 0;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #cccccc;
        }

        .bg-dark .achivement-fact .fun-fact {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            border-right: none;
        }

        .achivement-fact .fun-fact:last-child {
            margin: 0;
            padding: 0;
            border: none;
        }

        /* Service Details */
        .service-fun-fact {
            display: grid;
            gap: 30px;
        }

        .service-fun-fact .fun-fact {
            display: flex;
            align-items: center;
        }

        .service-fun-fact .fun-fact img {
            margin: 0;
            margin-right: 25px;
            height: auto;
            width: 70px;
        }
    }

    @media only screen and (max-width: 400px) {



        .banner-two-content .item-title {
            font-size: 42px;
        }

        .banner-ten-content h2 {
            font-size: 30px;
        }

        /* Blog */
        .home-blog-one .content {
            padding: 30px;
        }

        .home-blog-one .date {
            left: 30px;
            top: 30px;
        }

        .pricing-style-two {
            padding: 50px 37px;
        }
    }

    @media only screen and (max-width: 360px) {
        .video-card .thumb {
            display: none;
        }

        .video-card {
            margin-bottom: 30px;
        }

        .about-style-one-area .bottom-info .thumb .about-skills h5 {
            font-size: 15px;
            padding-right: 100px;
        }

        .about-style-one-area .bottom-info .thumb .about-skills .progress .progress-bar span {
            font-size: 15px;
            top: -35px;
        }

        .contact-style-one-items {
            padding: 50px 30px;
        }
    }


    /* ============================================================== 
        # Preloader CSS
    =================================================================== */
    #preloader {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: var(--dark);
        z-index: 999;
    }

    .dixor-loader-wrap {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        width: 100%;
    }

    .dixor-loader-inner {
        position: fixed;
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }

    .dixor-loader {
        margin-left: 92px;
    }

    @media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
        .dixor-loader {
            transform: scale(0.8);
            margin-left: 66px;
        }
    }

    .dixor-loader-item {
        position: absolute;
        width: 6px;
        height: 80px;
        margin-top: -45px;
        border-radius: 0px;
        background-color: var(--color-primary);
        animation: dixor-loader-aim 0.8s infinite;
        animation-direction: alternate-reverse;
    }

    .dixor-loader .dixor-loader-item:nth-child(1) {
        margin-left: 0px;
    }

    .dixor-loader .dixor-loader-item:nth-child(2) {
        margin-left: -14px;
        animation-delay: 0.1s;
    }

    .dixor-loader .dixor-loader-item:nth-child(3) {
        margin-left: -28px;
        animation-delay: 0.2s;
    }

    .dixor-loader .dixor-loader-item:nth-child(4) {
        margin-left: -42px;
        animation-delay: 0.3s;
    }

    .dixor-loader .dixor-loader-item:nth-child(5) {
        margin-left: -56px;
        animation-delay: 0.4s;
    }

    .dixor-loader .dixor-loader-item:nth-child(6) {
        margin-left: -70px;
        animation-delay: 0.5s;
    }

    .dixor-loader .dixor-loader-item:nth-child(7) {
        margin-left: -84px;
        animation-delay: 0.6s;
    }

    .dixor-loader .dixor-loader-item:nth-child(8) {
        margin-left: -98px;
        animation-delay: 0.7s;
    }

    @keyframes dixor-loader-aim {
        0% {
            height: 2px;
            margin-top: 0;
            transform: rotate(0deg);
        }

        100% {
            height: 80px;
            transform: rotate(0deg);
        }
    }

    /* Fixing Css */
    .team-style-one-item .thumb a>img {
        width: 100%;
    }

    .thumb-style-one img {
        width: 100%;
    }

    .portfolio-style-one-item img {
        width: 100%;
    }

    .thumb-style-four img {
        width: 100%;
    }

    .blog-area .thumb img {
        width: 100%;
    }

    .banner-two-thumb img {
        width: 100%;
    }

    .portfolio-style-five .thumb-zoom img {
        width: 100%;
    }

    .blog-area .thumb img {
        width: 100%;
    }

    .portfolio-style-three-item img {
        width: 100%;
    }

    .banner-style-ten-left-info img {
        width: 100%;
    }

    .partner-two-thumb img {
        width: 100%;
    }

    .thumb-zoom img {
        width: 100%;
    }

    .about-style-four-thumb img {
        width: 100%;
    }

    .about-style-four-info img {
        width: 100%;
    }

    .banner-seven-thumb img {
        width: 100%;
    }

    .banner-style-five-info .thumb img {
        width: 100%;
    }

    .portfolio-style-four .thumb img {
        width: 100%;
    }

    .team-style-two-item img {
        width: 100%;
    }

    .team-content-top .thumb img {
        width: 100%;
    }

    .project-details-items .thumb-grid img {
        width: 100%;
    }

    .item-grid-container img {
        width: 100%;
    }

    .gallery-two-columns img {
        width: 100%;
    }

    .blog-area.full-blog .post-author img {
        width: 150px;
    }

    /* Toastify Button Customization */
    button.Toastify__close-button::after {
        display: none;
    }

    button.Toastify__close-button {
        background: transparent;
        box-shadow: none !important;
        color: red;
    }

    /* React Modal Button Modified */

    .modal-video {
        position: fixed !important;
    }

    .modal-video-close-btn {
        padding: 0;
    }

    .modal-video-close-btn:hover:after {
        transform: rotate(-45deg);
    }

    /* Custom Scroll To Top  */
    .to-top-progress {
        z-index: 999999;
        bottom: 50px !important;
    }

    .to-top-progress circle:nth-child(1) {
        stroke: none;
        fill: none;
    }

    .to-top-progress circle:nth-child(2) {
        stroke: var(--color-primary);
        fill: #F7FBFE;
        stroke-width: 2;

    }

    .to-top-progress i {
        color: #000;
        font-size: 22px;
        position: relative;
        top: 3px;
        font-weight: 100;
    }

    /* ----- Menu Style ----- */

    @media only screen and (min-width: 1024px) {
        #navbar-menu ul li {
            position: relative;
        }

        #navbar-menu ul li.megamenu-fw {
            position: static;
        }

        #navbar-menu ul li.dropdown ul.dropdown-menu {
            position: absolute;
            top: 130%;
            transition: all .3s ease-in-out;
            display: block;
            opacity: 0;
            visibility: hidden;
        }

        #navbar-menu ul li.dropdown:hover>ul.dropdown-menu {
            opacity: 1;
            visibility: visible;
            top: 100%;
        }
    }

    .dropdown.on>.dropdown-menu {
        display: block;
    }

    @media only screen and (min-width: 1024px) and (max-width: 1399px) {

        nav.navbar ul.nav>li.dropdown:nth-last-child(2) ul.dropdown-menu ul.dropdown-menu,
        nav.navbar ul.nav>li.dropdown:nth-last-child(3) ul.dropdown-menu ul.dropdown-menu,
        nav.navbar ul.nav>li.dropdown:last-child ul.dropdown-menu ul.dropdown-menu {
            left: auto;
            right: 100%;
        }
    }


    @media (max-width: 1023px) {

        .home-container img,
        .home-container video {
            width: 100% !important;
        }

        .home-container .video {
            opacity: 1 !important;
            transform: translate(-50%, -50%) !important;
            left: 50%;
            position: absolute;
            top: 50%;
        }
    }

    @media screen and (max-width: 991px) {
        .portfolio-style-five {
            width: 100%;
        }

        .portfolio-style-two {
            width: 100%;
        }
    }

    /* Style the Get Started button */
    .btn-theme {
        background: var(--modelplug-primary) !important;
        color: white !important;
        border: none !important;
        padding: 10px 25px !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
    }

    .btn-theme:hover {
        background: var(--modelplug-secondary) !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    }

    /* Style active menu items */
    .navbar-nav li a.active {
        color: var(--modelplug-primary) !important;
    }

    /* Fix multi-section horizontal scroll on smaller screens */
    @media (max-width: 1023px) {
        .multi-section .thecontainer {
            display: block !important;
        }
        
        .multi-section .panel {
            width: 100% !important;
            transform: none !important;
        }
    }

    /* Fix portfolio section spacing */
    .project-style-one-area .portfolio-style-one-item {
        margin-bottom: 30px;
    }

    /* Fix team section grid on mobile */
    @media (max-width: 768px) {
        .team-style-one-area .team-style-one-item {
            margin-bottom: 30px;
        }
    }

    /* Fix services hover effect */
    .services-style-one-item {
        transition: all 0.3s ease-in-out;
    }

    /* Fix blog section spacing */
    .blog-style-two-area .blog-style-two-item {
        margin-bottom: 30px;
    }

    /* Ensure smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Fix testimonial carousel */
    .testimonial-style-three-area .swiper-slide {
        height: auto;
    }

    /* Fix Swiper container heights */
    .testimonial-style-three-carousel .swiper-wrapper,
    .team-style-one-carousel .swiper-wrapper {
        align-items: stretch;
    }

    /* Fix Bootstrap tab content */
    .team-style-one-area .tab-content {
        overflow: visible;
    }

    /* Fix team carousel visibility */
    .team-style-one-area .tab-pane {
        overflow: visible;
    }

    /* Ensure Swiper navigation buttons are visible */
    .swiper-button-next,
    .swiper-button-prev {
        color: var(--color-primary);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }

    /* Fix testimonial pagination */
    .testimonial-control .swiper-pagination {
        position: relative;
        bottom: auto;
        margin-top: 30px;
    }

    /* Fix footer spacing on mobile */
    @media (max-width: 768px) {
        .footer-style-one .footer-top {
            padding: 60px 0 30px;
        }
    }

    /* Fix banner text visibility */
    .banner-style-eight .content h1 {
        line-height: 1.2;
    }

    /* Fix expertise section animation */
    .expertise-style-one-area .expertise-item {
        transition: all 0.3s ease;
    }

    /* Fix client logos alignment */
    .clients-style-one-area .client-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Fix Bootstrap tab transitions */
    .tab-content > .tab-pane {
        display: none;
    }

    .tab-content > .tab-pane.show {
        display: block;
    }

    .tab-content > .tab-pane.active {
        display: block;
    }

    /* Mobile header background */
    @media (max-width: 1023px) {
        nav.navbar.validnavs {
            background: rgba(255, 255, 255, 0.95) !important;
        }
    }

    /* Logo styling */
    .navbar-brand .logo {
        max-height: 53px;
        width: auto;
        display: block;
    }

    /* Ensure logo fits well in sticky header */
    .navbar.sticked .navbar-brand .logo {
        transition: all 0.3s ease;
    }

    /* Footer logo styling */
    footer .top img {
        max-width: 200px;
        height: auto;
    }

    /* Mobile logo adjustments */
    @media (max-width: 768px) {
        .navbar-brand .logo {
            max-width: 160px;
            height: auto;
        }
        
        .collapse-mobile img {
            max-width: 160px;
            height: auto;
        }
    }

    /* Platform names in clients section */
    .client-style-one-item h5 {
        font-size: 24px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
        transition: all 0.3s ease;
    }

    .client-style-one-item:hover h5 {
        transform: scale(1.1);
        color: var(--modelplug-secondary);
    }

    /* Footer Get Started button */
    .footer-contact .btn-theme {
        background: white !important;
        color: var(--modelplug-primary) !important;
        border: 2px solid white !important;
        padding: 8px 20px !important;
    }

    .footer-contact .btn-theme:hover {
        background: transparent !important;
        color: white !important;
    }

    /* Newsletter form styling */
    .newsletter.style-two {
        margin-top: 20px;
    }

    .newsletter.style-two input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
    }

    .newsletter.style-two input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    /* Project idea CTA button */
    .contact-list + .mt-4 .btn-theme {
        font-size: 18px;
        padding: 15px 35px !important;
    }

    /* Fix multi-section - mobile vertical layout */
    @media (max-width: 1023px) {
        .multi-section .panel {
            padding: 80px 0;
        }
    }

    /* Fix multi-section - desktop horizontal scroll */
    @media (min-width: 1024px) {
        .multi-section .panel {
            padding: 0;
            display: flex;
            align-items: center;
        }
        
        /* Ensure GSAP can transform panels */
        .multi-section .thecontainer {
            transform-style: preserve-3d;
            will-change: transform;
        }
    }

    /* Platform integrations grid */
    .client-style-one-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .client-style-one-item {
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
        padding: 20px;
        transition: all 0.3s ease;
    }

    .client-style-one-item:hover {
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Multi-section vertical layout */
    .multi-section-vertical {
        position: relative;
        z-index: 1;
    }

    .multi-section-vertical .section-panel {
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    @media (max-width: 767px) {
        .multi-section-vertical .section-panel {
            padding: 60px 0;
        }
    }

    /* Contact panel styling */
    .multi-section-vertical .contact-panel {
        position: relative;
    }

    .multi-section-vertical .contact-panel .contact-panel-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-size: cover;
        background-position: center;
        opacity: 0.1;
    }

    /* Scroll to top button styling */
    .react-simple-scroll-up {
        position: fixed !important;
        bottom: 30px !important;
        right: 30px !important;
        width: 50px !important;
        height: 50px !important;
        background: var(--modelplug-primary) !important;
        color: white !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        z-index: 999 !important;
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
    }

    .react-simple-scroll-up:hover {
        background: var(--modelplug-secondary) !important;
        transform: translateY(-5px) !important;
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4) !important;
    }

    .react-simple-scroll-up i {
        font-size: 20px;
        color: white;
    }

    /* Hide on very small scroll */
    .react-simple-scroll-up.is-hidden {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(20px) !important;
    }

    /* Show when scrolled */
    .react-simple-scroll-up.is-shown {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .react-simple-scroll-up {
            bottom: 20px !important;
            right: 20px !important;
            width: 45px !important;
            height: 45px !important;
        }
        
        .react-simple-scroll-up i {
            font-size: 18px;
        }
    }

    /* Pricing section improvements */
    .pricing-style-one h2 span {
        font-size: 24px;
        font-weight: 400;
        color: #666;
    }

    .pricing-style-one .badge-popular {
        background: linear-gradient(135deg, #FFB68A 0%, #FF6B9D 100%);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-block;
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Make pricing cards equal height - ONLY for non-vertical layouts */
    .pricing-items .row {
        display: flex;
        align-items: stretch;
    }

    .pricing-items .row > [class*="col-"] {
        display: flex;
        margin-bottom: 30px;
    }

    .pricing-style-one:not(.vertical-layout) {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: stretch;
        min-height: 400px; /* Ensure minimum height */
    }

    .pricing-style-one:not(.vertical-layout) .left,
    .pricing-style-one:not(.vertical-layout) .right {
        display: flex;
        flex-direction: column;
    }

    .pricing-style-one:not(.vertical-layout) .left {
        justify-content: space-between;
        min-height: 100%;
    }

    .pricing-style-one:not(.vertical-layout) .right {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .pricing-style-one:not(.vertical-layout) .right h5 {
        margin-bottom: 20px;
    }

    .pricing-style-one:not(.vertical-layout) ul {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
    }

    .pricing-style-one:not(.vertical-layout) ul li {
        margin-bottom: 10px;
    }

    /* Ensure button stays at bottom */
    .pricing-style-one:not(.vertical-layout) .left .info {
        flex: 1;
    }

    .pricing-style-one:not(.vertical-layout) .left .btn {
        margin-top: auto;
    }

    /* Mobile responsiveness for non-vertical layouts */
    @media (max-width: 991px) {
        .pricing-style-one:not(.vertical-layout) {
            flex-direction: column;
            min-height: auto;
        }
        
        .pricing-style-one:not(.vertical-layout) .left {
            border-right: none;
            border-bottom: 1px solid #cccccc;
            margin-right: 0;
            padding-right: 0;
            padding-bottom: 30px;
            margin-bottom: 30px;
        }
    }

    /* Enterprise contact section */
    .pricing-contact-section {
        text-align: center;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }

    .pricing-contact-section h4 {
        color: #666;
        font-weight: 400;
        margin-bottom: 15px;
    }

    .pricing-contact-section a {
        color: var(--modelplug-primary);
        font-weight: 600;
        text-decoration: underline;
    }

    .pricing-contact-section a:hover {
        color: var(--modelplug-secondary);
    }

    /* Font Awesome icon fixes */
    @font-face {
        font-family: 'Font Awesome 6 Free';
        font-style: normal;
        font-weight: 900;
        font-display: block;
        src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2");
    }

    @font-face {
        font-family: 'Font Awesome 6 Free';
        font-style: normal;
        font-weight: 400;
        font-display: block;
        src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2") format("woff2");
    }

    @font-face {
        font-family: 'Font Awesome 6 Brands';
        font-style: normal;
        font-weight: 400;
        font-display: block;
        src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2") format("woff2");
    }

    /* Ensure Font Awesome icons render properly */
    [class^="fa-"]::before,
    [class*=" fa-"]::before {
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
    }

    /* Additional Font Awesome fixes for common issues */
    i[class*="fa-"] {
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 900 !important;
        font-style: normal !important;
    }

    /* Fix for Font Awesome 6 Free specific icons */
    .fa,
    .fa-solid,
    .fa-regular,
    .fa-light,
    .fa-thin,
    .fa-duotone,
    .fa-sharp,
    .fa-brands {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
    }

    .fa-solid,
    .fas {
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 900 !important;
    }

    .fa-regular,
    .far {
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 400 !important;
    }

    .fa-brands,
    .fab {
        font-family: 'Font Awesome 6 Brands' !important;
        font-weight: 400 !important;
    }

    /* Ensure icons don't inherit wrong font-family from parent elements */
    .navbar i[class*="fa-"],
    .btn i[class*="fa-"],
    .testimonial-style-three-area i[class*="fa-"],
    footer i[class*="fa-"],
    .social-share i[class*="fa-"],
    .footer-social i[class*="fa-"] {
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 900 !important;
    }

    /* Specific fixes for brand icons */
    .navbar i.fab,
    .btn i.fab,
    footer i.fab,
    .social-share i.fab,
    .footer-social i.fab {
        font-family: 'Font Awesome 6 Brands' !important;
        font-weight: 400 !important;
    }

    /* Header at-top state */
    .navbar.at-top {
        background: transparent !important;
        box-shadow: none !important;
        border-bottom: none !important;
    }

    /* Optional: Make logo bigger when at top */
    .navbar.at-top .navbar-brand .logo {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    /* Optional: Different button style at top */
    .navbar.at-top .btn-theme {
        background: rgba(139, 92, 246, 0.9) !important;
    }

    .navbar.at-top .btn-theme:hover {
        background: var(--modelplug-primary) !important;
    }

    /* Ensure smooth transitions */
    .navbar {
        transition: all 0.3s ease-in-out;
    }

    /* Mobile adjustments */
    @media (max-width: 1023px) {
        .navbar.at-top {
            background: rgba(255, 255, 255, 0.95) !important;
        }
    }

    /* Mobile Auth Buttons */
    .mobile-auth-buttons {
        display: none;
        padding: 20px 30px;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }

    @media (max-width: 1023px) {
        .mobile-auth-buttons {
            display: block;
        }
        
        .mobile-auth-buttons .btn {
            width: 100%;
            padding: 15px 25px;
            margin-bottom: 10px;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
        }
        
        .mobile-auth-buttons .btn:last-child {
            margin-bottom: 0;
        }
        
        /* Hide desktop auth buttons on mobile */
        .attr-right {
            display: none;
        }
    }

    /* Style mobile menu background */
    @media (max-width: 1023px) {
        .navbar-collapse.collapse-mobile {
            background: white;
        }
        
        .bg-dark .navbar-collapse.collapse-mobile {
            background: var(--dark);
        }
    }

    /* Vertical Pricing Card Layout */
    .pricing-style-one.vertical-layout {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        padding: 40px 35px;
        text-align: center;
        position: relative;
        border-radius: 50px;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .pricing-style-one.vertical-layout:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .pricing-style-one.vertical-layout.active {
        border: 2px solid var(--modelplug-primary);
        box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
    }

    /* Pricing Header */
    .pricing-style-one.vertical-layout .pricing-header {
        margin-bottom: 20px;
    }

    .pricing-style-one.vertical-layout .pricing-header h4 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 0;
        color: var(--color-heading);
    }

    /* Pricing Price */
    .pricing-style-one.vertical-layout .pricing-price {
        margin-bottom: 25px;
    }

    .pricing-style-one.vertical-layout .pricing-price h2 {
        font-size: 48px;
        font-weight: 700;
        color: var(--modelplug-primary);
        margin: 0;
    }

    .pricing-style-one.vertical-layout .pricing-price h2 sup {
        font-size: 24px;
        position: relative;
        top: -15px;
        margin-right: 5px;
    }

    .pricing-style-one.vertical-layout .pricing-price h2 span {
        font-size: 20px;
        font-weight: 400;
        color: #666;
    }

    /* Pricing Description */
    .pricing-style-one.vertical-layout .pricing-description {
        margin-bottom: 30px;
    }

    .pricing-style-one.vertical-layout .pricing-description p {
        font-size: 18px;
        font-weight: 500;
        color: #666;
        margin: 0;
        line-height: 1.6;
    }

    /* Pricing Features */
    .pricing-style-one.vertical-layout .pricing-features {
        flex: 1;
    }

    .pricing-style-one.vertical-layout .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pricing-style-one.vertical-layout .pricing-features ul li {
        padding: 10px 0;
        font-size: 20px;
        color: #555;
        position: relative;
        padding-left: 30px;
        text-align: left;
    }

    /* Pricing Footer */
    .pricing-style-one.vertical-layout .pricing-footer {
        margin-top: auto;
    }

    .pricing-style-one.vertical-layout .pricing-footer .btn {
        width: 100%;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 30px;
    }

    /* Override the original left/right layout styles */
    .pricing-style-one.vertical-layout .left,
    .pricing-style-one.vertical-layout .right {
        all: unset;
    }

    /* Keep cards side by side on mobile */
    @media (max-width: 767px) {
        .pricing-items .row {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 0 -15px;
            padding: 0 15px 50px 15px;
        }
        
        .pricing-style-one.vertical-layout {
            padding: 30px 25px;
            min-height: 500px;
        }
        
        .pricing-style-one.vertical-layout .pricing-header h4 {
            font-size: 24px;
        }
        
        .pricing-style-one.vertical-layout .pricing-price h2 {
            font-size: 36px;
        }
        
        .pricing-style-one.vertical-layout .pricing-description p {
            font-size: 14px;
        }
        
    }

    /* Small mobile adjustments */
    @media (max-width: 480px) {
        
        .pricing-style-one.vertical-layout {
            padding: 25px 20px;
        }
    }

    /* Enterprise contact section adjustment */
    .pricing-contact-section {
        text-align: center;
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid #eee;
    }

}