/* Defalut Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FFFFFF;
    --secondary: #CACFD8;
    --border: #222530;
    --theme: #121212;

    --black: #181B25;
    --black-2: #99A0AE;
    --white: #FFFFFF;
    --white-2: #CACFD8;

    --action: #005FFF;

    --font_inter: "Inter", sans-serif;
    --font_intervariable: "intervariable";

    .mode-light {
        --primary: #181B25;
        --secondary: #525866;
    }
}


body {
    font-family: var(--font_inter) !important;
    line-height: 1;
    background-color: #0E121B;
    color: var(--secondary);

    &.mode-light {
        background-color: var(--white);
    }
}



html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    color: var(--primary);
    font-family: var(--font_intervariable);
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;

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

}

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

p {
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--secondary);
    letter-spacing: -0.2px;

}

strong {
    font-weight: 500;
}

video,
iframe,
img {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

/* font inter  */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* font inter variable  */
@font-face {
    font-family: intervariable;
    src: url(../fonts/InterVariable.ttf);
}


.section-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.01em;


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

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

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

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

    @media (max-width: 500px) {
        font-size: 32px;
    }
}

.section-spacing {
    padding-top: 130px;
    padding-bottom: 130px;

    @media (max-width: 1400px) {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    @media (max-width: 1200px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    @media (max-width: 991px) {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-spacing-top {
    padding-top: 130px;

    @media (max-width: 1400px) {
        padding-top: 110px;
    }

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

    @media (max-width: 991px) {
        padding-top: 60px;
    }
}

.section-spacing-bottom {
    padding-bottom: 130px;

    @media (max-width: 1400px) {
        padding-bottom: 110px;
    }

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

    @media (max-width: 1200px) {
        padding-bottom: 60px;
    }
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {

    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {

    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {

    .container {
        max-width: 1140px
    }
}

@media (min-width: 1400px) {

    .container {
        max-width: 1410px
    }
}

.container-large {
    @media (min-width: 1600px) {
        max-width: 1630px;
        margin: auto;
    }
}



.wc-btn-link {
    font-size: 18px;
    text-decoration: underline;
}

.wc-btn-primary {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--white);
    padding: 12px 18px;
    gap: 8px;
    border-radius: 10px;
    background-color: #005FFF;
    box-shadow: 0px -3px 2px 0px rgba(5, 77, 219, 1) inset;
    justify-content: center;

    .mode-light & {
        background-color: #005FFF;
        box-shadow: none;
    }

    &:hover {
        background-color: #055AEA;
        color: var(--white);
    }
}



/* .btn-text-flip {
    perspective: 1000px;

    &:hover {
        span {
            transform: rotateX(90deg) translateY(-12px);
            color: inherit;
        }
    }

    span {
        position: relative;
        display: inline-block;
        padding: 0;
        transition: transform 0.5s;
        transform-origin: 50% 0;
        transform-style: preserve-3d;

        &:before {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            content: attr(data-text);
            transition: color 0.5s;
            transform: rotateX(-90deg);
            transform-origin: 50% 0;
            text-align: center;
        }
    }
} */

.show-light {
    display: inline-block;
}

.show-dark {
    display: none;
}

.mode-dark {
    .show-light {
        display: none;
    }

    .show-dark {
        display: inline-block;
    }
}


/* menu style  */
.main-menu {
    &.menu-dark>ul>li>a {
        color: var(--black);
    }

    &.menu-light>ul>li>a {
        color: var(--white);

    }

    >ul {
        display: flex;

        >li {
            &:hover {
                >a {
                    color: var(--primary);
                }

                >ul {
                    opacity: 1;
                    pointer-events: all;
                    inset-inline-start: 0;

                    &.dp-menu li {
                        &:hover {
                            >ul {
                                opacity: 1;
                                pointer-events: all;
                                inset-inline-start: 100%;
                            }
                        }
                    }
                }
            }
        }
    }

    li {
        position: relative;

        a {
            display: flex;
            align-items: center;
            font-weight: 500;
            font-size: 16px;
            line-height: 1;
            color: #E1E4EA;
            padding: 42px 12px;

            .mode-light & {
                color: #525866;
            }
        }
    }



    ul.dp-menu {
        background-color: #222530;
        padding: 18px 0px;
        width: 240px;
        position: absolute;
        inset-inline-start: 10px;
        opacity: 0;
        pointer-events: none;
        z-index: 10;
        transition: all 0.5s;
        transform: translateX(-50%);
        ul {
            background: var(--black);
            padding: 18px 0px;
            width: 230px;
            position: absolute;
            inset-inline-start: calc(100% + 10px);
            top: 0;
            opacity: 0;
            z-index: 10;
            transition: all 0.5s;
        }

        li {
            position: relative;
            padding: 0 25px;

            &:hover {
                >a {
                    color: var(--white);
                    background-color: transparent;
                }

                >ul {
                    opacity: 1;
                    transform: none !important;
                    pointer-events: all;
                }
            }

            a {
                font-size: 16px;
                font-weight: 500;
                color: var(--black-2);
                padding: 10px 0;
                background-color: transparent;
                border-radius: 8px;
                text-transform: capitalize;

                &:hover {
                    letter-spacing: 0.5px;
                }

                &:after {
                    transform: rotate(-90deg);
                    margin-left: auto;
                }

            }
        }

        &.col-2 {
            column-count: 2;
            width: 500px;
        }
    }

    .has-mega-menu {
        position: static;


    }

    li {

        &.menu-item-has-children {
            >a {
                .mode-light & {
                    &:after {
                        content: url(../imgs/icon/icon-1-dark.png);
                    }
                }

                &:after {
                    content: url(../imgs/icon/icon-1.png);
                    margin-inline-start: 6px;
                    margin-top: -6px;
                }
            }
        }
    }

    .mega-menu {
        background-color: var(--black);
        padding: 30px 50px;
        width: 100%;
        position: absolute;
        left: 10px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 50px;
        justify-content: center;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        z-index: 10;
        transition: all 0.5s;


        @media (max-width: 1400px) {
            column-gap: 30px;
        }



        li {
            a {
                font-size: 16px;
                font-weight: 500;
                color: var(--black-2);
                height: 40px;
                padding: 0 20px;
                display: flex;
                align-items: center;
                gap: 8px;
                background: var(--black);
                border-radius: 8px;
                overflow: hidden;

                &:hover {
                    color: var(--white);
                    background: #2C2C2F;
                }
            }
        }

        .title {
            font-weight: 600;
            color: var(--white);
            text-transform: uppercase;
            border-bottom: 1px solid #333337;
            padding-bottom: 20px;
            margin-bottom: 20px;
            pointer-events: none;
            border-radius: 0;
        }
    }
}



/* header area style  */
.header-area {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    z-index: 100;

    .header-area__inner {
        display: flex;
        align-items: center;
        gap: 40px;
        position: relative;
        height: 100px;


        &>*:first-child {
            margin-inline-end: auto;
        }
    }

    .header__nav {
        @media (max-width:1200px) {
            display: none;
        }

        .wc-btn-primary {
            padding: 8px 18px;
        }
    }

    .header__button {
        @media (max-width:1200px) {
            display: none;
        }
    }

    .offcanvas__icon {
        @media (min-width:1201px) {
            display: none;
        }
    }


}

/* footer area style  */
.footer-area {
    background-color: #181B25;

    .footer-logo {
        img {
            max-height: 32px;
        }
    }

    .footer-text {
        margin-top: 24px;

        .text {
            font-size: 16px;
            line-height: 1.5;
            max-width: 340px;
            color: var(--white-2);
        }
    }

    .footer-widget-box {
        .title {
            color: var(--white);
            font-size: 20px;
            line-height: 1.5;
        }


    }

    .footer-nav-list {
        margin-top: 20px;

        li {
            font-size: 16px;
            line-height: 1.5;
            color: var(--white-2);

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

            &:not(:first-child) {
                margin-top: 20px;
            }
        }
    }

    .social-links {
        display: flex;
        gap: 13px;
        margin-top: 28px;

        li {
            line-height: 1;

            a {
                width: 40px;
                height: 40px;
                display: inline-flex;
                background-color: #2B303B;
                border-radius: 50%;
                justify-content: center;
                align-items: center;

                &:hover {
                    color: var(--black-2);
                    box-shadow: 0px 0px 0px 2px #323847;

                }
            }
        }
    }




}

.footer-area-inner {
    padding-top: 100px;
    padding-bottom: 100px;

    @media (max-width: 1400px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    @media (max-width: 1200px) {
        padding-top: 60px;
        padding-bottom: 60px;
    }

}



.footer-widget-wrapper {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: 380px auto auto auto;
    justify-content: space-between;

    @media (max-width: 1400px) {
        grid-template-columns: 290px auto auto auto;
    }

    @media (max-width: 991px) {
        grid-template-columns: auto 1fr;
    }

    @media (max-width: 767px) {
        grid-template-columns: 1fr;
    }
}

.copyright-area {

    .copyright-text {
        .text {
            font-size: 14px;
            text-align: center;
            color: var(--white-2);
        }
    }
}

.copyright-area-inner {
    padding: 23px 0;
    position: relative;
    border-top: 1px solid #2B303B
}

/* newsletter area style  */
.newsletter-area {
    padding-top: 120px;

    @media (max-width:1200px) {
        padding-top: 80px;

    }

    .section-content {
        max-width: 680px;

        .text-wrapper {
            margin-top: 12px;
        }

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

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

.newsletter-area-inner {
    background-color: #222530;
    border: 2px solid #2B303B;
    border-radius: 20px;
    padding: 85px 70px;
    position: relative;
    z-index: 1;

    @media (max-width:991px) {
        padding: 45px 40px;

    }

    @media (max-width:767px) {
        padding: 25px 20px;

    }

    .area-shape-1 {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .area-shape-2 {
        position: absolute;
        right: 94px;
        top: 50%;
        transform: translateY(-50%);
        width: 264px;
        filter: grayscale(1);
        z-index: -1;

        @media (max-width:1200px) {
            right: 44px;
            width: 164px;

        }

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

.subscribe-form {
    margin-top: 36px;

    .input-field {
        display: flex;
        gap: 12px;

        @media (max-width: 500px) {
            flex-direction: column;
        }

        input {
            border: 1px solid rgba(82, 88, 102, 0.6);
            background: linear-gradient(180deg, #2B2E3A 0%, #343849 100%);
            width: 100%;
            height: 48px;
            border-radius: 12px;
            padding: 0 16px;
            outline: 0;
            max-width: 332px;
            color: var(--white);
            font-size: 18px;
            font-weight: 400;

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

            &::placeholder {
                color: var(--white-2);
                font-size: 18px;
                font-weight: 400;
                line-height: 1;
            }

            &:focus {
                outline: 0;
                background: linear-gradient(180deg, #252936 0%, #202434 100%);
                box-shadow: 0px 0px 0px 2px #323847;
            }
        }

        .wc-btn-primary {
            font-size: 16px;
            line-height: 1;
            font-weight: 500;
            transition: all 0.5s;
            color: var(--white);
            padding: 16px 18px;
            border-radius: 10px;
        }

    }
}

/* hero area style  */
.hero-area-inner {
    padding-top: 236px;
    padding-bottom: 160px;

    @media (max-width:1919px) {
        padding-top: 186px;
        padding-bottom: 110px;
    }

    @media (max-width: 1400px) {
        padding-top: 156px;
        padding-bottom: 90px;

    }
}

.hero-area {
    position: relative;
    z-index: 1;
    background-color: #060606;

    &:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        mix-blend-mode: normal;
        opacity: 0.8;
        z-index: -1;
    }

    .area-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -2;
        overflow: hidden;
    }

    .section-content {
        text-align: center;

        .section-title {
            font-size: 86px;
            line-height: 1;
            max-width: 1100px;
            margin-inline: auto;
            font-weight: 600;
            letter-spacing: -0.02em;

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

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

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

        .text {
            font-size: 22px;
            line-height: 32px;
        }

        .text-wrapper {
            margin-top: 36px;
        }

        .btn-wrapper {
            margin-top: 56px;
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .wc-btn-primary {
            font-size: 18px;
            font-weight: 500;
            line-height: 28px;
            letter-spacing: -0.2px;
            gap: 10px;
            padding: 12px 14px;
            border: 1px solid #2B303B;
            box-shadow: 0px -2px 4px 0px #FFFFFF29 inset;
            color: var(--white);

            .mode-light & {
                box-shadow: 0px -2px 4px 0px #FFFFFF29 inset;
                border: none;
            }

            &:hover {
                border-color: transparent;
            }

            &.wordpress {
                background: linear-gradient(180deg, #198BBF 0%, #04577C 100%);

                .mode-light & {
                    background: linear-gradient(180deg, #2798CC 0%, #41ABDC 100%);

                    &:hover {
                        background: linear-gradient(0deg, #1295D0 0%, #48BEF3 100%);

                    }

                }
            }

            &.webflow {
                background: linear-gradient(180deg, #1870F5 0%, #0E418F 100%);

                .mode-light & {
                    background: linear-gradient(180deg, #1870F5 0%, #3383FB 100%);

                    &:hover {
                        background: linear-gradient(0deg, #0361EF 0%, #5699FF 100%);

                    }
                }
            }

            img {
                max-width: 24px;
            }
        }

        .title-wrapper {
            margin-top: 64px;

            @media (max-width:1400px) {
                margin-top: 44px;
            }
        }

        .section-subtitle {
            display: inline-flex;
            align-items: center;
            border: 1px solid rgba(57, 66, 90, 1);
            padding: 8px 14px;
            border-radius: 50px;
            gap: 14px;
            font-size: 18px;
            line-height: 28px;
            font-weight: 400;
            color: var(--secondary);
            letter-spacing: -0.2px;
            background-image: linear-gradient(180deg, rgba(30, 37, 51, 0.6) 0%, rgba(19, 25, 37, 0.8) 100%);

            .mode-light & {
                background-color: var(--white);
                background-image: none;
                border-color: #0000000D;
                box-shadow: 0px 1px 4px 0px #0000000D;

            }
        }



        .search-form {
            margin-top: 56px;

            @media (max-width:1400px) {
                margin-top: 36px;
            }
        }

        .tags-wrapper-box {
            margin-top: 40px;
        }

        .tags-wrapper {
            max-width: 557px;
            margin-inline: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 9px;
        }

        .tag {
            font-size: 14px;
            color: var(--secondary);
            padding: 7px 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: inline-flex;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.1);
        }
    }

    .demo-image {
        position: relative;
        z-index: 1;

        .mode-light & {
            &:after {
                background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.346022) 59.94%, #FFFFFF 100%);
            }

        }

        &:after {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            left: 0;
            bottom: 0px;
            background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(10, 10, 10, 0.346022) 59.94%, #0E121B 100%);
        }
    }

}

.search-form {
    .input-field {
        width: 437px;
        border: 1px solid #2B303B;
        display: inline-flex;
        gap: 15px;
        padding: 16px 20px;
        border-radius: 12px;
        background: linear-gradient(180deg, #191C25 0%, #202536 100%);
        align-items: center;

        .mode-light & {
            background: #F5F7FA;
            border-color: #E1E4EA;
        }

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

        input {
            width: 100%;
            background-color: transparent;
            border: none;
            outline: none;
            font-size: 18px;
            color: var(--white);

            &::placeholder {
                color: var(--black-2);

            }
        }

        .search-btn {
            font-size: 16px;
            border: 1px solid #2B303B;
            border-radius: 4px;
            color: var(--black-2);
            padding: 3px 7px;

            .mode-light & {
                border-color: #E1E4EA;
            }
        }
    }

}

/* page title area style  */
.page-title-area-inner {
    padding-top: 180px;

    @media (max-width:1919px) {
        padding-top: 150px;
    }

    @media (max-width: 1400px) {
        padding-top: 140px;

    }
}

.page-title-area {
    position: relative;
    z-index: 1;

    .area-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;

        img {
            width: 100%;
        }
    }

    .section-header {
        text-align: center;

        .section-subtitle {
            font-size: 14px;
            font-weight: 400;
            line-height: 28px;
            color: rgba(245, 247, 250, 1);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: inline-block;
            padding: 1px 12px;
            border-radius: 30px;

            .mode-light & {
                background: linear-gradient(180deg, rgba(92, 114, 187, 0.05) 0%, rgba(36, 57, 126, 0.1) 100%);
                color: #222530;
            }
        }

        .section-title {
            font-size: 50px;
            font-weight: 600;
            line-height: 1.18;
            letter-spacing: -0.01em;

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

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

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

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

            @media (max-width: 500px) {
                font-size: 36px;
            }
        }

        .title-wrapper:not(:first-child) {
            margin-top: 16px;
        }

        .text {
            font-size: 18px;
            font-weight: 400;
            line-height: 30px;
            max-width: 600px;
            margin-inline: auto;
            color: var(--secondary);
        }

        .text-wrapper {
            margin-top: 12px;
        }
    }
}

/* contact area style  */

.contact-area {
 	position: relative;
    z-index: 3;
    .section-content-wrapper {
        margin-top: 70px;
        display: grid;
        gap: 50px 60px;
        grid-template-columns: 460px 800px;
        justify-content: space-between;

        @media (max-width:1400px) {
            grid-template-columns: 410px 600px;

        }

        @media (max-width:1200px) {
            grid-template-columns: 350px 500px;

        }

        @media (max-width:991px) {
            grid-template-columns: auto;

        }
    }

    .section-content {

        .section-title {
            font-weight: 600;
            line-height: 1.2;

            @media (min-width:1201px) {
                font-size: 48px;
            }
        }

        .text {
            font-size: 16px;
            font-weight: 400;
            line-height: 30px;
            letter-spacing: -0.01em;
            color: var(--secondary);
        }

        .text-wrapper {
            margin-top: 16px;
        }

        .contact-box-wrapper {
            margin-top: 42px;
        }


        .contact-box {
            display: flex;
            align-items: center;
            gap: 14px;

            .icon {
                background: rgba(34, 37, 48, 1);
                border: 1px solid rgba(43, 48, 59, 1);
                width: 52px;
                height: 52px;
                min-width: 52px;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;

                .mode-light & {
                    background: #F2F5F8;
                    border-color: #E1E4EA;
                }
            }

            p {
                font-size: 18px;
                font-weight: 400;
                line-height: 30px;
                letter-spacing: -0.01em;

                @media (max-width: 1400px) {
                    font-size: 16px;
                    line-height: 26px;
                }

                br {
                    display: block;
                }
            }
        }

        .contact-box:not(:first-child) {
            margin-top: 28px;
        }
    }

    .contact-formwrap {
        display: grid;
        gap: 16px 16px;
        grid-template-columns: repeat(2, 1fr);

        @media (max-width:767px) {
            grid-template-columns: repeat(1, 1fr);

        }

        .messages {
            grid-column: span 2;

            @media (max-width:767px) {
                grid-column: auto;
            }
        }
    }

    .contact-formfield {
        label {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: var(--secondary);
            display: inline-flex;
            align-items: flex-start;
            margin-bottom: 8px;

            img {
                margin-left: 2px;
                margin-top: 4px;
            }
        }

        input,
        textarea {
            width: 100%;
            height: 52px;
            outline: none;
            transition: all 0.5s;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            padding: 14px 16px;
            gap: 10px;
            border-radius: 8px;
            border: 1px solid rgba(43, 48, 59, 1);
            background: rgba(24, 27, 37, 1);
            color: var(--white);
            font-family: var(--font_inter);

            .mode-light & {
                background: var(--white);
                border-color: #E1E4EA;
                box-shadow: 0px 1px 2px 0px #0A0D1408;

                &::placeholder {
                    color: #717784;
                }
            }

            &::placeholder {
                color: var(--secondary);
                font-family: var(--font_inter);
            }
        }

        textarea {
            height: 200px;
        }

    }

    .submit-btn {
        margin-top: 32px;
    }
}

/* projects area style  */
.projects-area {
    .section-title {
        font-size: 32px;
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: 0;
    }

    .section-header {
        display: grid;
        gap: 20px 60px;
        grid-template-columns: 50% auto;
        justify-content: space-between;
        align-items: flex-end;

        @media (max-width:767px) {
            grid-template-columns: auto;
        }

        .section-info {
            display: flex;
            align-items: center;
            gap: 16px;

            .icon {
                width: 64px;
                height: 64px;
                border-radius: 50%;
                background: rgba(25, 139, 191, 1);
                display: inline-flex;
                justify-content: center;
                align-items: center;

                &.wordpress {
                    background: rgba(25, 139, 191, 1);

                }

                &.webflow {
                    background: rgba(24, 112, 245, 1);


                }
            }
        }

        .text-wrapper {
            margin-top: 6px;
        }

        .wc-btn-primary {
            padding: 9px 14px;
            background-color: #222530;
            border: 1px solid #2B303B;
            box-shadow: 0px -3px 1px 0px #2D20110F inset;

            .mode-light & {
                background-color: #F2F5F8;
                border-color: #E1E4EA;
                box-shadow: 0px 1px 2px 0px #2D20110A;
                color: #2B303B;

                &:hover {
                    background-color: #181B2505;
                    border-color: #22253010;
                }

            }

            &:hover {
                background-color: #181B25;
                border-color: #222530;

            }
        }
    }

    .projects-wrapper-box {
        margin-top: 36px;
    }

    .projects-wrapper {
        display: grid;
        gap: 40px 24px;
        grid-template-columns: repeat(4, 1fr);

        @media (max-width:1200px) {
            grid-template-columns: repeat(3, 1fr);

        }

        @media (max-width:991px) {
            grid-template-columns: repeat(2, 1fr);

        }

        @media (max-width:500px) {
            grid-template-columns: repeat(1, 1fr);

        }
    }

    .section-devider {
        border-bottom: 1px solid rgba(43, 48, 59, 1);
        margin-top: 80px;
        margin-bottom: 80px;

        .mode-light & {
            border-color: #E1E4EA;
        }

        @media (max-width:1200px) {
            margin-top: 60px;
            margin-bottom: 60px;
        }
    }
}

.project-box {
    &:hover {
        .post-thumbnail {
            img {
                transform: scale(1.1);
            }
        }
    }

    .thumb {
        border-radius: 10px;
        overflow: hidden;
        position: relative;

        img {
            width: 100%;
        }
    }

    .category {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: -0.08399999886751175px;
        color: rgba(43, 48, 59, 1);
        padding: 5px 7px 5px 6px;
        display: inline-flex;
        gap: 4px;
        border-radius: 40px;
        background: var(--white);
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 1;

        img {
            width: 18px;
        }
    }

    .content {
        margin-top: 16px;
        display: grid;
        gap: 10px 40px;
        grid-template-columns: 1fr;
        justify-content: space-between;
        align-items: flex-start;

        @media (max-width:767px) {
            grid-template-columns: 1fr;
        }
    }

    .title {
        font-size: 20px;
        font-weight: 600;
        line-height: 28px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .post-thumbnail {
        img {
            transition: all 0.5s;
        }
    }

    .item-tag {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: var(--white);
        padding: 0px 8px;
        border-radius: 30px;
        background: linear-gradient(45deg, #2C85D7 0%, #6BE060 100%);
        display: inline-block;
    }


    .tags {
        margin-top: 3px;
    }

    .tag {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #99A0AE;

        .mode-light & {
            color: #525866;
        }

        &:not(:first-child) {
            position: relative;
            padding-left: 18px;

            &:before {
                position: absolute;
                content: "";
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background: var(--secondary);
                left: 6px;
                top: 50%;
                transform: translateY(-50%);
            }
        }
    }

    .wc-btn-normal {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        display: inline-flex;
        gap: 8px;
        align-items: center;



    }


}




/* pricing area style  */
.pricing-area {
    .section-header {
        max-width: 600px;

        .section-subtitle {
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            color: rgba(53, 141, 245, 1);
        }

        .title-wrapper {
            margin-top: 12px;
        }

        .text-wrapper {
            margin-top: 16px;
        }

    }

    .pricing-wrapper-box {
        margin-top: 56px;

        @media (max-width:1919px) {
            margin-top: 46px;
        }

        @media (max-width:1400px) {
            margin-top: 36px;
        }
    }

    .pricing-wrapper {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr 1fr;

        @media (max-width:991px) {
            grid-template-columns: 1fr 1fr;
        }

        @media (max-width:767px) {
            grid-template-columns: 1fr;
        }
    }
}


.price-box {
    border-radius: 20px;
    border: 1.07px solid rgba(34, 37, 48, 1);
    background-color: #181B25;
    padding: 48px 40px;
    position: relative;
    transition: all 0.5s;

    .mode-light & {
        background-color: #F5F7FA80;
        border-color: #E1E4EA;

        &:hover {
            background-color: #F5F7FA;

            .wc-btn-primary {
                background: #E1E4EA;

            }
        }
    }

    @media (max-width:1400px) {
        padding: 38px 30px;

    }

    @media (max-width:1200px) {
        padding: 28px 20px;

    }

    &:hover {
        background: #222530;

        .wc-btn-primary {
            background-color: #525866;
        }
    }

    &.popular {
        outline: 3px solid rgba(72, 139, 252, 1);
        background-color: #222530;

        .wc-btn-primary {
            background-color: #525866;

            .mode-light & {
                background: #E1E4EA;

            }
        }

        .mode-light & {
            background-color: #F5F7FA;

        }
    }

    .icon {
        position: absolute;
        top: 23px;
        right: 23px;
    }

    .title {
        font-size: 20px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: -0.6000000238418579px;
    }

    .price {
        margin-top: 20px;
        font-size: 56px;
        font-weight: 500;
        line-height: 1.14;
        letter-spacing: -1px;
        color: var(--primary);

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

        span {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: -0.20000000298023224px;
            color: var(--secondary);
        }
    }


    .text-wrapper {
        margin-top: 16px;
    }

    .text {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: normal;
    }

    .btn-wrapper {
        margin-top: 24px;
    }

    .wc-btn-primary {
        width: 100%;
        border-radius: 10px;
        background-color: rgba(43, 48, 59, 1);
        color: var(--white);
        box-shadow: none;
        padding: 14px 18px;

        .mode-light & {
            background-color: #F2F5F8;
            border-color: #E1E4EA;
            color: var(--black);

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

        &:hover {
            background-color: #525866;

        }
    }

    .feature-box {
        border-top: 1px solid rgba(43, 48, 59, 1);
        padding-top: 32px;
        margin-top: 32px;

        .mode-light & {
            border-color: #E1E4EA;
        }

        .title {
            font-size: 16px;
            font-weight: 500;
            line-height: 22px;
            letter-spacing: -0.20px;
            color: var(--primary);
        }

        ul {
            margin-top: 20px;

            li {
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
                display: flex;
                gap: 10px;

                &:not(:first-child) {
                    margin-top: 16px;
                }

                &:before {
                    content: url(../imgs/icon/icon-15.png);
                    padding-top: 2px;
                }

                &.disabled {
                    color: rgba(113, 119, 132, 1);

                    .mode-light & {
                        color: #CACFD8;

                        &:before {
                            content: url(../imgs/icon/icon-16-light.png);
                        }
                    }

                    &:before {
                        content: url(../imgs/icon/icon-16.png);

                    }
                }
            }
        }
    }
}


.custom-plan-box {
    margin-top: 60px;
    position: relative;
    background: rgba(34, 37, 48, 1);
    border: 2px solid rgba(43, 48, 59, 1);
    border-radius: 20px;
    padding: 47px 70px;
    overflow: hidden;
    z-index: 1;

    .mode-light & {
        background: #F2F5F8;
        border-color: #E1E4EA;
    }

    @media (max-width:1919px) {
        margin-top: 50px;
    }

    @media (max-width:1200px) {
        padding: 27px 30px;
        margin-top: 40px;

    }

    @media (max-width:767px) {
        padding: 27px 20px;
    }

    .area-shape-1 {
        position: absolute;
        left: 49%;
        top: 50%;
        width: max-content;
        transform: translateY(-50%);
        z-index: -1;
    }

    .section-title {
        line-height: 1.33;

        @media (min-width: 1201px) {
            font-size: 48px;
        }
    }

    .text {
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: -0.20000000298023224px;
        max-width: 520px;
    }

    .text-wrapper {
        margin-top: 12px;
    }

    .section-content {
        display: grid;
        gap: 20px 60px;
        grid-template-columns: 500px auto;
        justify-content: space-between;
        align-items: center;

        @media (max-width:991px) {
            grid-template-columns: auto;
        }
    }
}

/* testimonial area style  */
.testimonial-area {
    background: rgba(24, 27, 37, 1);
    border-top: 1px solid rgba(43, 48, 59, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;

    .mode-light & {
        background: #F5F7FA;
        border-color: transparent;

        &:after {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 85%, #FFFFFF 100%);
        }
    }

    &:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 700px;
        left: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70%, #0E121B 100%);
        pointer-events: none;
    }

    .section-header {
        max-width: 600px;

        .section-subtitle {
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            color: rgba(53, 141, 245, 1);
        }

        .title-wrapper {
            margin-top: 12px;
        }

        .text-wrapper {
            margin-top: 16px;
        }

    }

    .testimonial-wrapper-box {
        margin-top: 32px;

        @media (max-width:1919px) {
            margin-top: 22px;
        }

        @media (max-width:1400px) {
            margin-top: 12px;
        }
    }

    .testimonial-wrapper {
        column-count: 2;
        column-gap: 24px;

        @media (max-width:767px) {
            column-count: auto;
        }

        >* {
            margin-top: 24px;



            &:nth-child(n+5) {
                @media (max-width:991px) {
                    display: none;
                }
            }

            &:nth-child(n+4) {
                @media (max-width:767px) {
                    display: none;
                }
            }
        }
    }

}

.testimonial-box {
    background-color: #222530;
    border: 1px solid #2B303B;
    border-radius: 16px;
    padding: 30px 30px;
    display: inline-block;
    transition: all 0.5s;

    .mode-light & {
        background-color: var(--white);
        border-color: #E1E4EA;

        .mode-light & {
            &:hover {
                background-color: var(--white);
                border-color: #E1E4EA;
                box-shadow: 0px 6px 12px 0px #0000000A;
            }
        }
    }

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

    &:hover {
        background-color: #2B303B;
        border-color: #525866;
    }

    .name {
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
        letter-spacing: -0.2px;
        color: var(--primary);
    }

    .user-id {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 3px;
    }

    .info-text {
        display: grid;
        justify-content: space-between;
        gap: 10px 30px;
        grid-template-columns: auto auto;
        align-items: center;

        @media (max-width:991px) {
            grid-template-columns: auto;
        }
    }

    .rating ul {
        display: flex;
        gap: 1px;
    }

    .text-wrapper {
        margin-top: 24px;
    }

    .text {
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
        letter-spacing: -0.2px;
    }
}

/* faq area style  */
.faq-area {
    .section-content {
        max-width: 600px;

        .section-subtitle {
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            color: rgba(53, 141, 245, 1);
        }

        .title-wrapper {
            margin-top: 12px;
        }

        .text-wrapper {
            margin-top: 16px;
        }

    }


    .note-text {
        margin-top: 36px;

        .text {
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;

            a {
                color: var(--primary);
            }
        }

    }
}

.faq-area-inner {
    display: grid;
    gap: 30px 60px;
    grid-template-columns: 500px 700px;
    justify-content: space-between;

    @media (max-width:1400px) {
        grid-template-columns: 430px 600px;
    }

    @media (max-width:1200px) {
        grid-template-columns: 350px 500px;
    }

    @media (max-width:991px) {
        grid-template-columns: auto;
    }
}

/* blog area style  */
.blog-area {

    .section-header {
        display: grid;
        gap: 20px 60px;
        grid-template-columns: 50% auto;
        justify-content: space-between;
        align-items: flex-end;

        @media (max-width:767px) {
            grid-template-columns: auto;
        }

        .section-subtitle {
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            color: rgba(53, 141, 245, 1);
        }

        .title-wrapper {
            margin-top: 12px;
        }

        .text-wrapper {
            margin-top: 16px;
        }

        .wc-btn-primary {
            background: rgba(34, 37, 48, 1);
            box-shadow: 0px -3px 1px 0px rgba(45, 32, 17, 0.06) inset;
            border: 1px solid rgba(43, 48, 59, 1);

            .mode-light & {
                background-color: #F2F5F8;
                border-color: #E1E4EA;
                box-shadow: 0px 1px 2px 0px #2D20110A;
                color: #2B303B;

                &:hover {
                    background-color: #181B2505;
                    border-color: #22253010;
                }
            }

            &:hover {
                background-color: #181B25;
                border-color: #222530;

            }
        }
    }

    .blog-wrapper-box {
        margin-top: 56px;

        @media (max-width:1919px) {
            margin-top: 46px;
        }

        @media (max-width:1400px) {
            margin-top: 36px;
        }
    }

    .blog-wrapper {
        display: grid;
        gap: 48px 32px;
        grid-template-columns: repeat(3, 1fr);

        @media (max-width:991px) {
            grid-template-columns: repeat(2, 1fr);

        }

        @media (max-width:767px) {
            grid-template-columns: repeat(1, 1fr);

        }
    }
}

.blog-item {
    .mode-light & {
        &:hover {
            .title {
                a {
                    color: #676b79;
                }
            }
        }
    }

    &:hover {
        .title {
            a {
                color: #CACFD8;
            }
        }

        .thumb {
            img {
                transform: scale(1.1);
            }
        }
    }

    .thumb {
        border-radius: 8px;
        overflow: hidden;

        img {
            width: 100%;
            transition: all 0.5s;
        }
    }


    .content-wrapper {
        margin-top: 20px;
    }

    .category {
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        color: rgba(53, 141, 245, 1);
    }

    .title {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        color: var(--primary);
        margin-top: 8px;
    }

    .text {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 8px;
    }

    .meta {
        display: flex;
        margin-top: 20px;
        align-items: center;

        >* {
            &:not(:first-child) {
                padding-left: 18px;
                position: relative;

                &:before {
                    position: absolute;
                    content: "";
                    width: 4px;
                    height: 4px;
                    background: var(--secondary);
                    border-radius: 50%;
                    left: 7px;
                    top: 50%;
                    transform: translateY(-50%);
                }
            }
        }
    }

    .author {
        display: flex;
        gap: 8px;
        align-items: center;
    }


    .meta span {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    span.name {
        font-weight: 500;
        color: var(--primary);
    }
}

/* service page style  */
.page-service {
    .pricing-wrapper-box {
        margin-top: 70px;

        @media (max-width:1919px) {
            margin-top: 60px;
        }

        @media (max-width:1400px) {
            margin-top: 50px;
        }
    }

    .faq-area-inner {
        grid-template-columns: 912px;
        justify-content: center;
        gap: 0;

        @media (max-width:1200px) {
            grid-template-columns: auto;
        }

    }

    &.faq-area {
        .note-text {
            .text {
                text-align: center;
            }
        }

        .section-content {
            text-align: center;
            max-width: 700px;
            margin-inline: auto;

            .text {
                max-width: 600px;
                margin-inline: auto;
            }
        }

        .accordion-faq {
            margin-top: 64px;

            @media (max-width:1400px) {
                margin-top: 44px;
            }
        }
    }
}


/* accordion  */
.accordionContainer {

    .accordionItem {
        border: 1px solid rgba(43, 48, 59, 1);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.06) 100%);
        border-radius: 12px;

        .mode-light & {
            background: #F5F7FA;
            border-color: #E1E4EA;
        }

        &:not(:first-child) {
            margin-top: 12px;
        }

        &.active {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.1) 100%);

            .mode-light & {
                background: #F5F7FA;
            }

            .accordionHeader {
                &:after {
                    content: "-";
                }
            }
        }
    }

    .accordionHeader {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: var(--primary);
        padding: 18px 20px;
        display: flex;
        gap: 10px;
        justify-content: space-between;

        &:hover {
            cursor: pointer;
        }

        &:after {
            content: "+";
            font-size: 23px;
            color: rgba(113, 119, 132, 1);
        }
    }

    .accordionContent {
        overflow: hidden;
        transition: 0.3s ease;
        transform: tanslateZ(0);
        height: 0px;
    }

    .accordionContentInner {
        padding: 18px 20px;
        margin-top: -6px;

        p {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            max-width: 640px;
            letter-spacing: 0;
        }
    }
}

/* pagination style  */
.pagination {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination a {
    width: 48px;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    line-height: 14px;
    text-align: center;
    color: var(--secondary);
    background: rgba(24, 27, 37, 1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.pagination a.active {
    color: var(--white);
    background: rgba(0, 95, 255, 1);
    box-shadow: 0px -3px 2px 0px rgba(5, 77, 219, 1) inset;


}

.pagination a:hover:not(.active) {
    background: rgba(0, 95, 255, 1);
    box-shadow: 0px -3px 2px 0px rgba(5, 77, 219, 1) inset;
}

.pagination-wrapper-box {
    padding-top: 32px;
    border-top: 1px solid rgba(43, 48, 59, 1);
    margin-top: 56px;
    display: grid;
    gap: 20px 60px;
    grid-template-columns: auto auto;
    justify-content: space-between;

    @media (max-width:1919px) {
        margin-top: 46px;
    }

    @media (max-width:1400px) {
        margin-top: 36px;
    }

    @media (max-width:767px) {
        grid-template-columns: auto;
    }

    .wc-btn-primary {
        background: rgba(34, 37, 48, 1);
        box-shadow: 0px -3px 1px 0px rgba(45, 32, 17, 0.06) inset;
    }
}

/* filter button style */
.filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;

    .btn {
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: var(--secondary);
        padding: 8px 16px;
        border-radius: 10px;
        background: rgba(34, 37, 48, 1);
        border: 1px solid rgba(43, 48, 59, 1);

        .mode-light & {
            background: #F5F7FA;
            border-color: #E1E4EA;
        }
    }

    .btn:hover {
        background: rgba(0, 95, 255, 1);
    }

    .btn.active {
        color: var(--white);
        background: rgba(0, 95, 255, 1);
        box-shadow: 0px -3px 2px 0px rgba(5, 77, 219, 1) inset;
        border-color: transparent;

        .mode-light & {
            box-shadow: 0px -3px 2px 0px #054DDB inset;
            background: #005FFF;
        }
    }
}

/* blog page style  */
.page-blog {
    .input-field {
        width: 360px;
        gap: 15px;
        padding: 9px 15px;
        border-radius: 8px;

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

    .filter-wrapper-box {
        display: grid;
        gap: 20px 60px;
        grid-template-columns: auto auto;
        justify-content: space-between;

        @media (max-width:991px) {
            grid-template-columns: 1fr;
        }
    }

    .blog-area-inner {
        margin-top: 70px;

        @media (max-width:1919px) {
            margin-top: 60px;
        }

        @media (max-width:1400px) {
            margin-top: 50px;
        }
    }
}

/* blog details page style  */
.page-blog-details {
    &.blog-area {

        .section-header {
            border-bottom: 1px solid rgba(43, 48, 59, 1);
            padding-bottom: 16px;

            .text-wrapper {
                margin-top: 0;
            }

            p.text {
                font-size: 18px;
                font-weight: 500;
                line-height: 28px;
                color: var(--white);
            }
        }

        .blog-wrapper-box {
            margin-top: 48px;

            @media (max-width:1400px) {
                margin-top: 38px;
            }
        }
    }

    &.page-title-area {
        .section-header {
            .title-wrapper {
                margin-top: 0;
                max-width: 1200px;
                margin-inline: auto;
            }

            .text-wrapper {
                margin-top: 16px;
            }

            .text {
                max-width: 920px;
            }
        }
    }
}

/* blog details area style  */
.blog-details-content-wrapper {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: 3fr 1.3fr;
    justify-content: space-between;
    margin-top: 20px;

    @media (max-width:1400px) {
        grid-template-columns: 1fr 400px;
    }

    @media (max-width:1200px) {
        grid-template-columns: 1fr;
    }

    .meta {
        display: flex;
        margin-top: 16px;
        padding-bottom: 8px;
        align-items: center;

        >* {
            &:not(:first-child) {
                padding-left: 22px;
                position: relative;

                &:before {
                    position: absolute;
                    content: "";
                    width: 4px;
                    height: 4px;
                    background: var(--secondary);
                    border-radius: 50%;
                    left: 7px;
                    top: 50%;
                    transform: translateY(-50%);
                }
            }
        }

        .author {
            display: flex;
            gap: 8px;
            align-items: center;

            img {
                margin-bottom: 0;
            }
        }


        .meta span {
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
        }

        .name {
            font-weight: 500;
            color: var(--primary);
        }

        .category {
            font-weight: 500;
            color: var(--primary);
        }
    }

    .details-content {
        .thumb {
            overflow: hidden;

            img {
                border-radius: 8px;

            }
        }
    }

    .content-block {
        margin-top: 40px;

        .title {
            font-size: 36px;
            font-weight: 600;
            line-height: 1.27;
            margin-bottom: 24px;

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

    .text-wrapper {
        .text {
            &:not(:first-child) {
                margin-top: 20px;
            }

            span {
                color: var(--white);
            }
        }
    }

    .thumb-gallery {
        margin-top: 40px;
    }

    .quote-box {
        margin-top: 40px;
        background: rgba(34, 37, 48, 1);
        border-radius: 8px;
        padding: 40px 40px;
        padding-right: 84px;
        position: relative;
        z-index: 1;
        overflow: hidden;

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

        .text {
            font-size: 20px;
            font-weight: 400;
            line-height: 30px;
            letter-spacing: -0.002em;
            color: var(--secondary);
        }

        .author {
            font-size: 20px;
            font-weight: 500;
            line-height: 30px;
            letter-spacing: -0.002em;
            display: inline-block;
            color: var(--white);
            margin-top: 16px;
        }

        .icon {
            position: absolute;
            right: 69px;
            bottom: 19px;
            z-index: -1;
        }
    }

    .widget-block {
        .title {
            font-size: 24px;
            font-weight: 500;
            line-height: 32px;
            color: var(--white);
            margin-top: 24px;
            margin-bottom: 20px;
        }
    }

    .feature-tile {
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
        color: white;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .sharing-box {
        border-top: 1px solid rgba(43, 48, 59, 1);
        margin-top: 32px;
        padding-top: 16px;
        display: grid;
        gap: 20px 60px;
        grid-template-columns: auto auto;
        justify-content: space-between;

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

        .social-links {
            display: flex;
            gap: 8px;

            a {
                width: 32px;
                height: 32px;
                background: rgba(43, 48, 59, 1);
                display: inline-flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;

                img {
                    max-width: 16px;
                }
            }
        }
    }

    .table-features {
        margin-top: 40px;
        border: 1px solid rgba(43, 48, 59, 1);
        border-radius: 4px;
        column-count: 2;
        column-rule: 1px solid rgba(43, 48, 59, 1);
        column-gap: 0;

        @media (max-width: 767px) {
            column-count: auto;
        }
    }

    .feature-column {
        .title {
            font-size: 18px;
            font-weight: 500;
            line-height: 28px;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: rgba(31, 193, 107, 0.1608);
            padding: 12px 20px;
            gap: 10px;
            border-bottom: 1px solid rgba(43, 48, 59, 1);
        }



        .list {
            li {
                font-size: 18px;
                font-weight: 400;
                line-height: 28px;
                color: rgba(225, 228, 234, 1);
                background-color: rgba(31, 193, 107, 0.102);
                padding: 12px 30px;

                &:not(:last-child) {
                    border-bottom: 1px solid rgba(43, 48, 59, 1);
                }
            }
        }

        &.negative {
            .title {
                background-color: rgba(251, 55, 72, 0.2392);
            }

            .list {
                li {
                    background-color: rgba(251, 55, 72, 0.102);
                }
            }
        }

    }

    .comment-block {
        margin-top: 80px;

        @media (max-width:1200px) {
            margin-top: 60px;
        }

        .title {
            font-size: 36px;
            font-weight: 600;
            line-height: 46px;
            margin-bottom: 12px;

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

    .comment-formwrap {
        display: grid;
        gap: 16px 16px;
        grid-template-columns: repeat(2, 1fr);

        @media (max-width:767px) {
            grid-template-columns: repeat(1, 1fr);

        }

        .span-2 {
            grid-column: span 2;

            @media (max-width:767px) {
                grid-column: auto;
            }
        }
    }

    .comment-formfield {
        label {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: var(--secondary);
            display: inline-flex;
            align-items: flex-start;
            margin-bottom: 8px;

            img {
                margin-left: 2px;
                margin-top: 4px;
            }
        }

        input,
        textarea {
            width: 100%;
            height: 52px;
            outline: none;
            transition: all 0.5s;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            padding: 14px 16px;
            gap: 10px;
            border-radius: 8px;
            border: 1px solid rgba(43, 48, 59, 1);
            background: rgba(24, 27, 37, 1);
            color: var(--white);
            font-family: var(--font_inter);


            &::placeholder {
                color: var(--secondary);
                font-family: var(--font_inter);
            }
        }

        textarea {
            height: 200px;
        }

    }

    .submit-btn {
        margin-top: 32px;
    }

    .comment-wrap {
        margin-top: 32px;
    }

    .form-note {
        display: block;
        margin-top: 16px;
    }

    .form-note input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .form-note label {
        position: relative;
        cursor: pointer;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: var(--secondary);
    }

    .form-note label:before {
        content: '';
        -webkit-appearance: none;
        background-color: transparent;
        border: 2px solid rgba(82, 88, 102, 1);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
        padding: 6px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 8px;
    }

    .form-note input:checked+label:after {
        content: '';
        display: block;
        position: absolute;
        top: 4px;
        left: 6px;
        width: 3px;
        height: 8px;
        border: solid rgba(82, 88, 102, 1);
        border-width: 0 1px 1px 0;
        transform: rotate(45deg);
    }
}

/* sidebar style  */
.sidebar {
    >*:not(:first-child) {
        margin-top: 24px;
    }

    .sidebar-box {
        background: rgba(24, 27, 37, 1);
        border: 1px solid rgba(34, 37, 48, 1);
        padding: 20px 20px;
        border-radius: 8px;

        .mode-light & {
            background: #F5F7FA;
            border-color: #E1E4EA;
        }
    }

    .box-title {
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
    }

    .blog-wrapper {
        margin-top: 24px;

        >* {
            display: block;

            &:not(:first-child) {
                padding-top: 20px;
                border-top: 1px solid rgba(43, 48, 59, 1);
                margin-top: 20px;

                .mode-light & {
                    border-color: #E1E4EA;
                }
            }
        }
    }



    .blog {
        display: grid;
        gap: 10px 16px;
        grid-template-columns: 85px 1fr;

        .thumb {
            width: 85px;
            height: 76px;
            border-radius: 6px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .title {
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            margin-top: 0;
        }

        .content-wrapper {
            margin-top: 0;
        }


        .meta {
            padding: 0;
            margin-top: 8px;

            span {
                font-size: 13px;
                font-weight: 500;
                line-height: 20px;
                letter-spacing: -0.01em;
            }
        }
    }

    .page-content-list {
        margin-top: 12px;

        li {
            &:not(:first-child) {
                border-top: 1px solid rgba(43, 48, 59, 1);

                .mode-light & {
                    border-color: #E1E4EA;
                }
            }
        }

        a {
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            padding: 10px 12px;
            display: block;

            &.active {
                background: rgba(34, 37, 48, 1);
                color: var(--white);
                border-radius: 6px;
            }
        }
    }

    .newsletter-sidebar-box {
        background: rgba(34, 37, 48, 1);
        border: 2px solid rgba(43, 48, 59, 1);
        border-radius: 8px;
        padding: 26px 20px;
        position: relative;
        z-index: 1;

        .mode-light & {
            background: #F2F5F8;
            border-color: #E1E4EA;
        }

        .area-shape-1 {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .area-shape-2 {
            position: absolute;
            right: 94px;
            top: 50%;
            transform: translateY(-50%);
            width: 264px;
            filter: grayscale(1);
            z-index: -1;

            @media (max-width:1200px) {
                right: 44px;
                width: 164px;

            }

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

        .section-title {
            font-size: 32px;
            font-weight: 500;
            line-height: 40px;
            letter-spacing: -0.01em;
        }

        .text {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
        }

        .text-wrapper {
            margin-top: 8px;
        }

        .subscribe-form {
            margin-top: 28px;
        }

        .input-field {
            display: flex;
            gap: 12px;
            flex-direction: column;

            input {
                width: 100%;
                max-width: 100%;

                .mode-light & {
                    background: var(--white);
                    border-color: #E1E4EA;

                    &::placeholder {
                        color: #99A0AE;
                    }
                }

            }
        }
    }

}



/* offcanvas style  */
.offcanvas-area {
    background-color: #1c1c1c;
    padding: 30px;
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 100;
    width: 360px;
    max-width: 360px;
    transition: 0.7s;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    overflow-y: scroll;
    z-index: 200;
}

@media (max-width: 767px) {
    .offcanvas-area {
        width: 100%;
        max-width: 100%;
    }
}

.offcanvas-area.show {
    opacity: 1;
    visibility: visible;
    left: 0;
}

#open_offcanvas {
    border: 0;
    padding: 0px;
    outline: 0;
}

.close-offcanvas {
    cursor: pointer;
    display: inline-block;
}

.offcanvas-area-meta-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-area-meta-wrapper .wc-btn-default {
    padding: 14px 25px;
    font-size: 14px;
}

/* accordion style  */
.accordion {
    width: 100%;
    max-width: 360px;
    margin: 30px auto 40px;
    border-radius: 4px;
}

.accordion .link {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    color: var(--black-2);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(49, 49, 49, 0.3764705882);
    position: relative;
    transition: all 0.4s ease;
}

.accordion li:last-child .link {
    border-bottom: 0;
}

.accordion li .angle-down {
    margin-left: auto;
    transition: all 0.4s ease;
}

.accordion li.open .link {
    color: var(--white);
}

.accordion li.open .angle-down {
    transform: rotate(180deg);
}

/**
   * Submenu
   -----------------------------*/
.submenu {
    display: none;
    background: transparent;
    font-size: 14px;
}

.submenu li {
    border-bottom: 1px solid rgba(49, 49, 49, 0.3764705882);
    margin-left: 15px;
}

.submenu a {
    display: block;
    text-decoration: none;
    color: #d9d9d9;
    padding: 10px 0px;
    transition: all 0.25s ease;
}

.submenu a:hover {
    background: transparent;
    color: #FFF;
}

/* blog Details Style */

.details-content .thumb img {
    width: 100%;
    height: auto;
}

.details-content h2 {
    font-size: 27px;
    margin-bottom: 30px;
    line-height: 1.1;
    margin-top: 10px;
}

.details-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top: 10px;
}

.details-content h4 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.details-content p {
    padding-bottom: 20px;
    line-height: 1.5;
}

.details-content img {
    max-width: 100%;
    margin-bottom: 20px;
}

.details-content ul {
    margin-bottom: 20px;
    line-height: 1.5;
    list-style: none;
}

.details-content ul li {
    font-size: 18px;
    line-height: 1.5;
    position: relative;
    padding: 2px 0 2px 20px;
}

.details-content ul li:before {
    position: absolute;
    top: 13px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    content: "";
    border-radius: 100%;
}

.details-content ol {
    margin-bottom: 20px;
    line-height: 1.5;
}

.details-content ol li {
    font-size: 18px;
    line-height: 1.5;
    position: relative;
    padding: 2px 0;
    list-style: numbers;
    margin-left: 20px;
}

/* about area style  */
.about-area {
    .section-header {
        max-width: 560px;

        .section-subtitle {
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            color: rgba(53, 141, 245, 1);
        }

        .title-wrapper {
            margin-top: 12px;
        }

        .text-wrapper {
            margin-top: 16px;
        }

    }

    .features-wrapper-box {
        margin-top: 56px;

        @media (max-width:1919px) {
            margin-top: 46px;
        }

        @media (max-width:1400px) {
            margin-top: 36px;
        }
    }

    .features-wrapper {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr 1fr;

        @media (max-width:991px) {
            grid-template-columns: 1fr 1fr;
        }

        @media (max-width:767px) {
            grid-template-columns: 1fr;
        }
    }

    .feature-box {
        background-color: #181B25;
        border: 1.16px solid #222530;
        border-radius: 18px;
        padding: 83px 30px 40px;
        position: relative;
        z-index: 1;
        transition: all 0.3s;


        .mode-light & {
            border-color: #E1E4EA;
            background-color: var(--white);

            &:hover {
                border-color: transparent;
                background-color: var(--white);
                box-shadow: 0px 10px 40px 0px #0000000F;
            }
        }

        &:hover {
            background-color: #222530;
            border-color: #2B303B;
            box-shadow: 0px 4px 50px 0px #00000040;
        }

        .title {
            font-size: 28px;
            font-weight: 600;
            line-height: 38px;

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

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

        .text {
            margin-top: 12px;
        }

        .content {
            margin-top: 34px;
        }

        .bg {
            position: absolute;
            width: calc(100% - 10px);
            height: calc(100% - 10px);
            top: 5px;
            left: 5px;
            border-radius: 12px;
            overflow: hidden;
            z-index: -1;
        }

    }
}


/* newsletter area style  */
.newsletter-area-2 {

    .section-content {
        width: 50%;

        @media (max-width:1200px) {
            width: 60%;
        }

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

        .text-wrapper {
            margin-top: 12px;
        }

        .btn-wrapper {
            margin-top: 32px;
        }
    }
}

.newsletter-area-2-inner {
    background-color: #181B25;
    border: 2px solid #FFFFFF1F;
    border-radius: 20px;
    padding: 85px 70px;
    position: relative;
    z-index: 1;
    overflow: hidden;

    .mode-light & {
        background-color: #F5F7FA;
        border-color: #F2F5F8;
    }

    @media (max-width:991px) {
        padding: 45px 40px;

    }

    @media (max-width:767px) {
        padding: 25px 20px;

    }

    &:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, #005FFF 0%, rgba(14, 18, 27, 0) 100%);
        top: 0;
        left: 0;
        opacity: 0.1;
        z-index: -1;
    }

    .mode-light & {
        &:before {
            display: none;
        }
    }

    .area-shape-1 {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .area-shape-2 {
        position: absolute;
        right: 0px;
        bottom: 0;
        width: 47%;
        z-index: -1;

        @media (max-width:1200px) {
            width: 37%;
        }

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

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

/* marquee animation  */
.marquee-wrapper {
    overflow: hidden;
}

.marquee {
    display: flex;
    gap: 10px;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    img {
        max-width: inherit;
        max-height: 267px;

        @media (max-width: 1200px) {
            max-height: 200px;
        }

        @media (max-width: 991px) {
            max-height: 150px;
        }
    }

}

.marquee1 {
    animation-name: marquee1;
}

.marquee2 {
    direction: rtl;
    animation-name: marquee2;
    margin-top: 10px;
}

@keyframes marquee1 {
    from {
        transform: translateX(0);
    }

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

@keyframes marquee2 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}



/* checkout page style  */

#edd_checkout_wrap {
    display: grid;
    gap: 30px 24px;
    grid-template-columns: 526px 1fr;

    @media (max-width: 1200px) {
        grid-template-columns: 426px 1fr;

    }

    @media (max-width: 991px) {
        grid-template-columns: 1fr;

    }
}

#edd_checkout_form_wrap {

    #edd_checkout_user_info {
        --field-column-gap: 16px;
        border: 1px solid #222530;
        background: #181B25;
        padding: 28px 24px;
        border-radius: 8px;
        margin: 0 0 24px;

        .mode-light & {
            border-color: #F2F5F8;
            background: #FFFFFF;
        }

        p {
            margin-bottom: 20px;
            width: 100%;

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

        }

        #edd-first-name-wrap,
        #edd-last-name-wrap,
        #edd-card-city-wrap,
        #edd-card-zip-wrap,
        #edd-card-country-wrap,
        #edd-card-state-wrap {
            width: calc((100% - var(--field-column-gap)) / 2);
            display: inline-block;

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

        #edd-last-name-wrap {
            margin-left: var(--field-column-gap);

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

    h2 {
        font-size: 12px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.05em;
        color: var(--secondary);
        text-transform: uppercase;
        padding-top: 4px;
        padding-bottom: 7px;
        border-bottom: 1px solid #2B303B;
        margin: 0 0 20px;

        .mode-light & {
            border-color: #F2F5F8;
        }
    }

    input[type=email],
    input[type=password],
    input[type=tel],
    input[type=text],
    textarea {
        padding: 9px 16px;
        border-radius: 10px;
        box-shadow: 0px 1px 2px 0px #0A0D1408;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        outline: 0;
        border: 1px solid rgba(43, 48, 59, 1);
        background: rgba(24, 27, 37, 1);
        color: var(--white);

        .mode-light & {
            background: var(--white);
            border-color: #E1E4EA;
            box-shadow: 0px 1px 2px 0px #0A0D1408;

            &::placeholder {
                color: #717784;
            }
        }

        &::placeholder {
            color: #99A0AE;
        }
    }

    input.edd-input,
    textarea.edd-input {
        display: block;
        width: 100%;
    }

    select.edd-select {
        display: block;
        width: 100%;
        padding: 14px 16px;
        border-radius: 10px;
        background: #FFFFFF;
        border: 1px solid #E1E4EA;
        box-shadow: 0px 1px 2px 0px #0A0D1408;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        color: #222530;
        outline: 0;

        option {
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            color: #181B25;
        }
    }

    label {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin: 0 0 8px;
        color: var(--primary);
    }

    span.edd-required-indicator {
        color: #E15E35;
        width: 8px;
        display: inline-block;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        margin-left: 2px;
    }

    span.edd-description {
        display: none;
    }

    span.edd-description+h2 {
        display: none;
    }

}

#edd_checkout_cart {
    thead {
        display: none;
    }

    .edd_checkout_cart_item_title {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: var(--primary);
    }

    .edd_cart_item_price {
        font-size: 18px;
        font-weight: 500;
        line-height: 32px;
        color: var(--primary);
    }

    .edd_cart_remove_item_btn {
        color: var(--secondary);
    }

    .edd_cart_total {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: var(--secondary);

        .edd_cart_amount {
            font-size: 18px;
            font-weight: 500;
            line-height: 24px;
            color: var(--primary);
        }
    }
}

#edd_checkout_cart {
    border: 1px solid #222530;
    background: #181B25;
    padding: 28px 24px;
    border-radius: 8px;
    margin: 0 0 24px;

    .mode-light & {
        border-color: #F2F5F8;
        background: #FFFFFF;
    }

    td,
    th {
        padding: 10px 10px;
        border: 0;
        background: transparent;
    }
}

#edd_sl_renewal_fields {
    border: 0;
}

.edd-form-group__control {
    margin-top: 15px;
    margin-bottom: 15px;
}

input#edd-license-key {
    padding: 9px 16px;
    border-radius: 10px;
    box-shadow: 0px 1px 2px 0px #0A0D1408;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    outline: 0;
    border: 1px solid rgba(43, 48, 59, 1);
    background: rgba(24, 27, 37, 1);
    color: var(--white);
    font-family: var(--font_inter);

    .mode-light & {
        background: var(--white);
        border-color: #E1E4EA;
        box-shadow: 0px 1px 2px 0px #0A0D1408;

        &::placeholder {
            color: #717784;
        }
    }

    &::placeholder {
        color: var(--secondary);
        font-family: var(--font_inter);
    }
}

#edd-cancel-license-renewal {
    color: #99A0AE;
}

.edd_errors:not(.edd-alert) {
    margin-top: 10px;
}

#edd_checkout_form_wrap fieldset {
    margin: 0 0 0px;
}

#edd_checkout_form_wrap #edd_show_discount {
    --field-column-gap: 16px;
    border: 1px solid #222530;
    background: #181B25;
    padding: 28px 24px;
    border-radius: 8px;
    margin: 0 0 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--primary);

    .mode-light & {
        border-color: #F2F5F8;
        background: #FFFFFF;
    }
}

.edd_discount_link {
    color: var(--secondary);
}

#edd_checkout_form_wrap .edd-cart-adjustment input.edd-submit {
    margin-top: 10px;
}

#edd_checkout_form_wrap .edd-cart-adjustment .edd-apply-discount.edd-submit {
    outline: 0;
}

#edd_checkout_form_wrap #edd-discount-code-wrap {
    border: 1px solid #222530;
    background: #181B25;
    padding: 28px 24px;
    border-radius: 8px;
    margin: 0 0 24px;

    .mode-light & {
        border-color: #F2F5F8;
        background: #FFFFFF;
    }
}

#edd-email-wrap {
    margin-bottom: 0;
}

#edd_secure_site_wrapper {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.edd-stripe-new-card {
    margin-top: 15px;

}

#edd-card-wrap {
    iframe {
        .Label {
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            margin: 0 0 8px;
            color: #222530 !important;
        }

        .Input {
            padding: 9px 16px;
            border-radius: 10px;
            background: #FFFFFF;
            border: 1px solid #E1E4EA;
            box-shadow: 0px 1px 2px 0px #0A0D1408;
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            color: #222530;
            outline: 0;
        }

        .TermsText {
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            color: #717784;
        }
    }
}

#edd_checkout_form_wrap #edd_cc_fields {
    border: 1px solid #222530;
    background: #181B25;
    padding: 28px 24px;
    border-radius: 8px;
    margin: 0 0 24px;

    .mode-light & {
        border-color: #F2F5F8;
        background: #FFFFFF;
    }
}

#edd_checkout_form_wrap #edd_final_total_wrap {
    border: 1px solid #222530;
    background: #181B25;
    padding: 28px 24px;
    border-radius: 8px;
    margin: 0 0 24px;
    margin-top: 20px;
    color: var(--secondary);

    .mode-light & {
        border-color: #F2F5F8;
        background: #FFFFFF;
    }

    .edd_cart_amount {
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        color: var(--primary);
    }
}


/* login area style  */
.login-area {

    .login-area-inner {
        display: grid;
        grid-template-columns: minmax(500px, 1fr) 1fr;

        @media (max-width: 1400px) {
            grid-template-columns: 500px 1fr;

        }

        @media (max-width: 1200px) {
            grid-template-columns: 400px 1fr;

        }

        @media (max-width: 991px) {
            grid-template-columns: 1fr;
        }
    }

    .section-content-wrapper {
        background-color: #222530;
        position: relative;
        z-index: 1;

        .mode-light & {
            background-color: #F9FAFB;
        }
    }

    .area-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .login-form-wrapper {
        display: grid;
        grid-template-columns: 400px;
        grid-template-rows: min-content;
        justify-content: flex-end;
        padding: 150px 260px;

        @media (max-width: 1919px) {
            padding: 150px 100px;
        }

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

        @media (max-width: 1200px) {
            grid-template-columns: 300px;
        }

        @media (max-width: 991px) {
            grid-template-columns: 1fr;
        }

        @media (max-width: 575px) {
            padding: 60px 20px;
        }
    }

    .section-content-wrapper {
        display: grid;
        grid-template-columns: 640px;
        grid-template-rows: min-content;
        padding: 150px 90px;

        @media (max-width: 1400px) {
            padding: 80px 80px;
            grid-template-columns: 100%;

        }

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

        @media (max-width: 575px) {
            padding: 60px 20px;
        }
    }

    .section-content {
        .section-title {

            font-weight: 500;
            line-height: 1.23;
            letter-spacing: -0.02em;

            @media (min-width: 1600px) {
                font-size: 60px;
            }
        }

        .section-title-wrapper {
            margin-top: 48px;

            @media (max-width: 1200px) {
                margin-top: 28px;
            }
        }

        .feature-list-wrapper {
            margin-top: 32px;
        }

        .feature-list-item {
            display: flex;
            gap: 16px;

            &:not(:first-child) {
                margin-top: 24px;
            }

            .icon {
                width: 36px;
                min-width: 36px;
            }

            .text {
                font-size: 18px;
                font-weight: 500;
                line-height: 30px;

                span {
                    color: var(--primary);
                }
            }
        }
    }

    .login-wrap {
        margin-top: 40px;
    }


}

.edd-alert {
    border-radius: 0;
    padding: 0;
    border: 0;
}

.edd-alert-error {
    color: #E15E35;
    background-color: transparent;
}

#edd_error_edd_invalid_login {
    color: #E15E35;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    a {
        color: var(--secondary);
    }
}
body #edd_login_form input{
    color: var(--secondary);
}
#edd_login_form {

    legend {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-bottom: 24px;
    }

    label {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin: 0 0 8px;
        color: var(--primary);
        display: block;
    }

    span.edd-required-indicator {
        color: #E15E35;
        width: 8px;
        display: inline-block;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        margin-left: 2px;
    }

    input {
        padding: 9px 16px;
        border-radius: 10px;
        box-shadow: 0px 1px 2px 0px #0A0D1408;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        outline: 0;
        border: 1px solid #2B303B;
        background: rgba(24, 27, 37, 1);
        color: var(--secondary);
        background-color: #181B25;
        width: 100%;

        .mode-light & {
            background: var(--white);
            border-color: #E1E4EA;
            box-shadow: 0px 1px 2px 0px #0A0D1408;

            &::placeholder {
                color: #717784;
            }
        }

        &::placeholder {
            color: #99A0AE;
        }


    }



    .edd-login-password {
        margin-top: 16px;
    }

    .edd-login-remember {
        label {
            display: inline-block;
            margin: 15px 0 15px;
        }

        input {
            width: auto;
        }
    }

    #edd_login_submit.edd-submit {
        padding: 12px 18px;
        border-radius: 8px;
        background: #005FFF;
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
    }

    .edd-lost-password {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 16px;
        text-align: center;
    }


}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid green;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;

    .mode-light & {
        border: 1px solid green;
        -webkit-text-fill-color: #000;
        -webkit-box-shadow: 0 0 0px 1000px #fff inset;
        transition: background-color 5000s ease-in-out 0s;
    }
}

#post-415 {
    display: grid;
    grid-template-columns: 700px;
    justify-content: center;
    padding: 150px 80px;

    .entry-title {
        font-size: 30px;
        font-weight: 600;
        line-height: 38px;
        text-align: center;
        margin-bottom: 8px;
    }

    #edd_profile_personal_fieldset {
        border: 1px solid #222530;
        background: #181B25;
        padding: 28px 24px;
        border-radius: 8px;
        margin: 0 0 24px;
    }

    #edd_profile_address_fieldset {
        border: 1px solid #222530;
        background: #181B25;
        padding: 28px 24px;
        border-radius: 8px;
        margin: 0 0 24px;
    }

    #edd_profile_password_fieldset {
        border: 1px solid #222530;
        background: #181B25;
        padding: 28px 24px;
        border-radius: 8px;
        margin: 0 0 24px;
    }

    #edd_profile_submit_fieldset {
        border: 1px solid #222530;
        background: #181B25;
        padding: 28px 24px;
        border-radius: 8px;
        margin: 0 0 24px;
    }

    label {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin: 0 0 8px;
        color: var(--primary);
    }

    span.edd-required-indicator {
        color: #b94a48;
        display: inline;
        color: #E15E35;
        width: 8px;
        display: inline-block;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        margin-left: 2px;
    }

    input[type=email],
    input[type=password],
    input[type=tel],
    input[type=text],
    textarea,
    select {
        padding: 9px 16px;
        border-radius: 10px;
        box-shadow: 0px 1px 2px 0px #0A0D1408;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        outline: 0;
        border: 1px solid rgba(43, 48, 59, 1);
        background: rgba(24, 27, 37, 1);
        color: var(--white);
        width: 100%;

        .mode-light & {
            background: var(--white);
            border-color: #E1E4EA;
            box-shadow: 0px 1px 2px 0px #0A0D1408;

            &::placeholder {
                color: #717784;
            }
        }

        &::placeholder {
            color: #99A0AE;
        }
    }

    #edd_user_history {
        th {
            font-weight: 700;
            background: #181B25;
            color: var(--primary);
        }

        td,
        th {
            text-align: left;
            padding: 9px 5px;
            border-bottom: 1px solid #2B303B;
            border-top: none;
        }
    }
}

body #edd_user_history th{
	background: transparent;	
}

.title-padding-bottom-50{
	padding-bottom: 50px;	
}
tr th,
tr td{
    padding-bottom: 10px;
    
}
.edd_download_file a{
	display: block;
	padding-top: 10px;
}

 
body #edd_user_history td, #edd_user_history th {
    text-align: left; 
    border-bottom: 1px solid #eee;
    border-top: none;
}
body table#edd_user_history td a,
.edd-blocks-orders__order a,
.edd_purchase_receipt_files a,
 #edd_sl_license_keys a{
    color: #82b440;
    transition: all 0.4s;
    line-height: 1.5;
}

body table#edd_user_history td a:hover,
.edd-blocks-orders__order a:hover,
.edd_purchase_receipt_files a:hover,
 #edd_sl_license_keys a:hover{
    color: #055AEA; 
}


table#edd_purchase_receipt, #edd_purchase_receipt_products{
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    margin-bottom: 100px;
}
body table{
	border-collapse: collapse;
	border-bottom: 1px solid #eee
}
table td, table tr, table th {
    border: 1px solid #eee;
    border-collapse: collapse;
    padding: 10px !important;
    line-height: 1.5;
}
body table strong{
	font-weight: 600
}

.text-wrapper h3 {
    font-size: 36px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 15px;
}
span.view-key-wrapper input, #edd_sl_license_add_site_form .edd-input {
    padding: 4px 7px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
#edd_sl_license_add_site_form .edd-input {
    padding: 8px 7px; 
    font-size: 15px;
}

a.edd-manage-license-back.edd-submit.button.gray{
    background-color: #82b440;
    color: #fff;
    padding: 13px 22px;
    text-transform: capitalize;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}
input.button-primary.button{
    background-color: #82b440;
    color: #fff;
    padding: 8px 15px;
    text-transform: capitalize;
    font-weight: 400;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s;
    cursor:pointer;
}
input.button-primary.button:hover{
	background-color: red;
}
p.edd_error {
    font-size: 15px;
    color: red;
}