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

/* Colors */
:root {
    --primary: #121212;
    --secondary: #555555;
    --black: #000;
    --white: #fff;
    --white-2: #999999;
    --border: #e7e7e7;
}

@font-face {
    font-family: gallient;
    src: url("../fonts/Gallient.ttf");
    font-weight: 400;
}

/* Font Family | Estedad */
@font-face {
    font-family: estedad;
    src: url("../fonts/estedad/Estedad-ExtraBold.ttf");
    font-weight: 900;
}

@font-face {
    font-family: estedad;
    src: url("../fonts/estedad/Estedad-SemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: estedad;
    src: url("../fonts/estedad/Estedad-Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: estedad;
    src: url("../fonts/estedad/Estedad-Regular.ttf");
    font-weight: 400;
}

/* Font Family | euclid-circular-b */
@font-face {
    font-family: euclid-circular-b;
    src: url("../fonts/euclid-circular-b/Euclid-Circular-B-Regular.ttf");
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

:root {
    --font_estedad: "estedad";
    --font_euclid: "euclid-circular-b";
    --font_awesome: "Font Awesome 6 Free";
}

body {
    font-family: "euclid-circular-b";
    line-height: 1;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
    line-height: 1.6;
    font-style: normal;
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
    text-decoration: none;
}

li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "estedad";
    font-weight: 500;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.wc-btn-default {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--primary);
    padding: 21px 30px;
    border: 2px solid transparent;
    overflow: hidden;
    z-index: 0;
    background-color: #C9F31D;
    border-radius: 50px;
    cursor: pointer;
}

@media (max-width: 1919px) {
    .wc-btn-default {
        padding: 16px 25px;
    }
}

@media (max-width: 767px) {
    .wc-btn-default {
        border-width: 1px;
    }
}

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

.wc-btn-default.bordered {
    background-color: transparent;
    border-color: var(--primary);
}

.btn-hover-cropping {
    overflow: hidden;
    position: relative;
    transition: all 1s;
    z-index: 1;
}

.btn-hover-cropping::after {
    position: absolute;
    content: "";
    width: 150%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: var(--primary);
    transform: translateX(-50%) translateY(-50%) rotate(25deg);
    transition: all 0.75s;
    opacity: 0.5;
    z-index: -1;
}

.btn-hover-cropping:hover::after {
    height: 400%;
    opacity: 1;
}

.p-relative {
    position: relative;
}

/* container style  */
.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: 1320px;
    }
}

/* page styles  */
.section-title {
    font-size: 50px;
}

@media only screen and (max-width: 1919px) {
    .section-title {
        font-size: 45px;
    }
}

@media only screen and (max-width: 1199px) {
    .section-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .section-title {
        font-size: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title {
        font-size: 30px;
        line-height: 1.3;
    }
}

.section-spacing {
    padding-top: 150px;
    padding-bottom: 150px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

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

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

/* progress style  */
.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    background-color: #C9F31D;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: url(../imgs/icon/arrow-up.png);
    font: var(--fa-font-solid);
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #121212;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: #fff;
}

.progress-wrap svg.progress-circle path {
    stroke: #121212;
    stroke-width: 3;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* menu style  */
.main-menu>ul {
    display: flex;
    justify-content: center;
}

.main-menu>ul>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    left: 0px;
}

.main-menu>ul>li:hover>ul.dp-menu li:hover>ul {
    opacity: 1;
    pointer-events: all;
    left: 100%;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
    padding: 32px 15px;
    display: inline-block;
    text-transform: capitalize;
    font-family: var(--font_estedad);

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

.main-menu li a:hover {
    color: var(--white);
}

.main-menu .dp-menu {
    background: #1c1c1c;
    padding: 18px 0px;
    width: 300px;
    position: absolute;
    left: 10px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
    top: 100%;
}

.dp-menu.col-2 {
    column-count: 2;
    width: 550px;
}

.dp-menu.col-2 .title {
    color: var(--white);
    padding-top: 10px;
    padding-bottom: 10px;
}

.dp-menu.col-4 {
    column-count: 4;
    width: 1080px;
}

.has-mega-menu .dp-menu {
    left: calc(50% + 10px) !important;
    transform: translateX(-50%);
}

.has-mega-menu:hover .dp-menu {
    left: calc(50%) !important;
}

.main-menu .dp-menu ul {
    background: #1c1c1c;
    padding: 18px 0px;
    width: 300px;
    position: absolute;
    left: calc(100% + 10px);
    top: 0;
    opacity: 0;
    z-index: 10;
    transition: all 0.5s;
}

.main-menu .dp-menu li {
    position: relative;
    padding: 0 20px;
}

.main-menu .dp-menu li:hover>a {
    color: var(--white);
    letter-spacing: 0.5px;
}

.main-menu .dp-menu li:hover>ul {
    opacity: 1;
    transform: none !important;
    pointer-events: all;
}

.main-menu .dp-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    padding: 10px 12px;
    display: block;
    transition: all 0.5s;
    text-align: left;
    cursor: pointer;
}

.main-menu .has-mega-menu {
    position: static;
}

.main-menu li:has(ul)>a:after {
    content: url("../imgs/icon/angle-down.png");
    margin-left: 5px;
    font-weight: 600;
    filter: brightness(100);
}

.main-menu .mega-menu {
    background-color: #1c1c1c;
    padding: 10px 10px;
    width: 100%;
    position: absolute;
    left: -5px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0px 0px;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
    top: 80px;
    border-radius: 5px;
    max-height: calc(100vh - 80px);
    overflow-y: scroll;
}

@media (min-width: 1921px) {
    .main-menu .mega-menu {
        max-width: 1920px;
        margin: 0 calc((100% - 1920px) / 2);
    }
}

.main-menu .mega-menu::-webkit-scrollbar {
    width: 0px;
}

.main-menu .mega-menu img {
    width: 100%;
}

.main-menu .mega-menu li:has(ul)>a:after {
    content: "";
}

.main-menu .mega-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    padding: 12px;
    display: block;
    align-items: center;
    gap: 8px;
    background: var(--black-2);
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.main-menu .mega-menu li a:hover {
    color: var(--white);
    letter-spacing: 0.5px;
}

.main-menu .mega-menu .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;
}

.offcanvas__icon {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .offcanvas__icon {
        display: block;
    }
}

/*
OFFCANVAS STYLES
*/
.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;
    background: #092837;
    padding: 11px 8px 9px;
    outline: 0;
    cursor: pointer;
    @media (max-width:767px){
        background: rgba(66, 255, 106, 1);
        img{
            filter: brightness(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;
    @media (max-width:767px){
        background-color: rgba(66, 255, 106, 1);
    }
}

/* header area style  */
.header__area {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    padding-left: 100px;
    padding-right: 100px;
    z-index: 10;
    transition: all 0.5s;
}

@media only screen and (max-width: 1919px) {
    .header__area {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .header__area {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.header__area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(9, 40, 55);
    z-index: 100;
    transition: all 1s;
}

.header__inner {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 80px;
}

@media (max-width:991px) {
    .header__inner {
        height: 65px;
    }
}

.header__inner>*:nth-child(1) {
    margin-right: auto;
}

.header__menu {
    width: 100%;
}

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

.header__cart {
    text-align: right;
    flex-basis: 165px;
}

@media (max-width: 768px) {
    .header__cart {
        display: none;
    }
}

.header__cart a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: var(--black);
    padding: 14px 20px;
    border-radius: 50px;
    display: inline-block;
    background-color: #C9F31D;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .header__cart a {
        padding: 6px 15px;
    }
}

.header__cart a:hover {
    color: var(--primary);
}

.header__cart a:after {
    background-color: var(--white);
}

.header__cart img {
    margin-right: 5px;
}

/* hero area style  */
.hero-area {
    position: relative;
    background-color: #121212;
    padding-inline-start: 100px;
    padding-inline-end: 100px;
    padding-top: 270px;
    padding-bottom: 280px;
    z-index: 2;
}

.hero-area .hero-shape-1 {
    position: absolute;
    left: 27px;
    top: 0;
    width: 100%;
}

.hero-area .hero-shape-2 {
    position: absolute;
    right: 0;
    top: 0;
}

.hero-shape-3 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

img.hero-shape-5 {
    position: absolute;
    left: 27px;
    top: 90px;
    z-index: -2;
}

.hero-area .hero-wrapper {
    display: flex;
}

.hero-sub-title {
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 31px;
    letter-spacing: 0.13px;
}

.hero-horizontal-line {
    width: 30px;
    height: 1px;
    background-color: var(--white);
    display: block;
}

.hero-title {
    font-size: 120px;
    font-weight: 400;
    color: var(--white);
    line-height: 0.8333;
    margin-inline-start: -10px;
    letter-spacing: -2.4px;
}

.hero-highlight {
    font-family: gallient;
    background: linear-gradient(90deg, #d0ff4b 0%, #89f9de 50%, #b8d0ff 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.hero-performance-wrapper {
    display: flex;
    padding-top: 50px;
    gap: 60px;
}

.hero-performance-left {
    padding-right: 60px;
    border-right: 1px solid #999999;
}

.hero-performance-inner {
    margin-top: -17px;
}

.device-btn {
    position: relative;
    background: #42FF6A;
    padding: 2.5px 3px;
    color: #121212;
    font-size: 10px;
    text-transform: capitalize;
    line-height: 1;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 6px;
    margin-inline-start: -15px;

    img {
        position: absolute;
        right: -3px;
        bottom: -4px;
    }
}

.performance-circle {
    height: 72px;
    width: 72px;
    border-radius: 50%;
    background-color: #E6FAEF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(66, 255, 106, 1);
    position: relative;
    span {
        font-size: 24px;
        font-weight: 600;
        color: #121212;
        @media (max-width:767px){
            font-size: 20px;
        }
    }
}

.performance-circle-2 {
    margin-top: -12px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 52px;
    max-width: 415px;
    color: #999999;
    margin-top: -4px;
}

.hero-btn-wrapper {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 21px 32px;
    border: 1.5px solid var(--white);
    border-radius: 70px;
    color: var(--white);
    transition: .3s;
    font-weight: 500;

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

.hero-btn.btn-bg {
    background-color: var(--white);
    color: #121212;

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

.hero-thumb {
    position: relative;
    margin-top: -13px;
}

.hero-thumb-shape-1 {
    margin-top: -69px;
    margin-inline-start: -77px;
}

.hero-shape-4 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-btn {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    border: 0;
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width:1500px) {
    .hero-area {
        padding-inline-start: 50px;
        padding-inline-end: 50px;
        padding-top: 200px;
        padding-bottom: 150px;
    }

    .hero-area .hero-wrapper {
        gap: 50px;
    }
    .hero-area .hero-content {
        flex-basis: 70%;
    }

    .hero-title {
        font-size: 90px;
        line-height: 1;
    }

    .hero-main-img {
        width: 90%;
        display: block;
    }

    .hero-thumb-shape-1 {
        width: 100px;
    }

    .hero-area .hero-shape-2 {
        width: 45%;
    }
}

@media (max-width:1200px) {
    .hero-area {
        padding-inline-start: 30px;
        padding-inline-end: 30px;
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .hero-title {
        font-size: 80px;
    }

    .hero-performance-wrapper {
        gap: 25px;
    }

    .hero-performance-left {
        padding-right: 50px;
    }

    .hero-desc {
        margin-bottom: 30px;
        font-size: 16px;
        br{
            display: none;
        }
    }

    .hero-thumb-shape-1 {
        margin-inline-start: 0;
    }

    .hero-main-img {
        margin-left: auto;
    }

    img.hero-shape-5 {
        display: none;
    }
}

@media (max-width:1024px) {
    .hero-area {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
        padding-top: 140px;
        padding-bottom: 90px;
    }

    .hero-performance-wrapper {
        flex-wrap: wrap;
    }

    .hero-performance-inner {
        margin-top: 0;
        display: flex;
        align-items: center;
    }

    .performance-circle-2 {
        margin-top: 0;
    }

    .device-btn {
        align-self: flex-start;
        margin-inline-start: 0;
    }

    .hero-performance-left {
        border-right: 0;
        padding-right: 0;
    }

    .hero-title {
        font-size: 50px;
        margin-inline-start: 0;
    }

    .hero-sub-title {
        font-size: 11px;
    }

    .hero-performance-wrapper {
        padding-top: 30px;
    }

    .hero-area .hero-wrapper {
        gap: 0;
    }

    .hero-thumb-shape-1 {
        width: 60px;
        margin-inline-start: 20px;
    }

    .hero-btn {
        padding: 14px 24px;
    }
}

@media (max-width:767px) {
    .hero-area {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
        padding-top: 110px;
        padding-bottom: 100px;
    }

    .hero-area .hero-wrapper {
        flex-wrap: wrap;
        gap: 50px;
    }

    .hero-area .hero-content {
        flex-basis: 100%;
    }

    .hero-main-img {
        margin-left: unset;
        width: 100%;
    }

    .hero-thumb-shape-1 {
        display: none;
    }

    .hero-area .hero-shape-2 {
        display: none;
    }

    .hero-shape-3 {
        display: none;
    }
    .hero-performance-inner {
        position: relative;
    }
    .device-btn {
        position: absolute;
        top: -20px;
    }
    .hero-performance-wrapper {
        padding-top: 50px;
    }
    .performance-circle-2 {
        left: -15px;
    }
    .hero-title {
        font-size: 46px;
        line-height: 1;
    }
}

.custom-container-1 {
    max-width: 1320px;
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    margin: auto;
}

/* extra-blog-feature style  */
.extra-blog-feature-area {
    padding-top: 160px;
    padding-bottom: 160px;

    .hero-sub-title {
        color: #121212;
        margin-bottom: 12px;
    }

    .hero-horizontal-line {
        background-color: #121212;
    }

    .hero-btn {
        border-color: #121212;
        ;
        color: #121212;
        margin-top: 40px;

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

.extra-blog-feature-wrapper {
    display: grid;
    grid-template-columns: 0.51fr 1fr;
    gap: 178px;
}

.extra-blog-feature-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.extra-blog-feature-divider {
    border-bottom: 1px solid #12121210;
}

.extra-blog-feature-item {
    padding-bottom: 26px;
    border-right: 1px solid #12121210;
}

.extra-blog-feature-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;

    .extra-blog-feature-item {
        &:first-child {
            padding-right: 45px;
        }

        &:last-child {
            padding-left: 45px;
            border-right: 0;
        }
    }
}

.ex-pt-60 {
    padding-top: 30px;
}

.extra-blog-feature-thumb {
    margin-bottom: 40px;
    img{
        @media (max-width:767px){
            width: 40px;
        }
    }
}

.extra-blog-feature-title {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 400;
}

.extra-blog-feature-desc {
    font-size: 18px;
}

@media (max-width:1500px) {
    .extra-blog-feature-area {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media (max-width:1400px) {
    .extra-blog-feature-wrapper {
        gap: 100px;
    }

    .extra-blog-feature-item {
        padding-bottom: 21px;
    }

    .ex-pt-60 {
        padding-top: 25px;
    }

}

@media (max-width:1200px) {
    .extra-blog-feature-area {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .extra-blog-feature-wrapper {
        gap: 50px;
    }

    .extra-blog-feature-thumb {
        margin-bottom: 20px;
    }

    .extra-blog-feature-items-wrapper {
        & .extra-blog-feature-item {
            &:first-child {
                padding-right: 30px;
            }
        }
    }

    .extra-blog-feature-items-wrapper {
        & .extra-blog-feature-item {
            &:last-child {
                padding-left: 40px;
            }
        }
    }

    .extra-blog-feature-title {
        font-size: 20px;
    }

    .extra-blog-feature-desc {
        font-size: 18px;
        max-width: 300px;
    }
}

@media (max-width:1024px) {
    .extra-blog-feature-area {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .extra-blog-feature-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .extra-blog-feature-item {
        padding-bottom: 10px;
    }

    .extra-blog-feature-area {
        .hero-btn {
            margin-top: 20px;
        }
    }

    .section-title {
        max-width: 550px;
    }
}

@media (max-width:767px) {
    .extra-blog-feature-area {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .extra-blog-feature-items-wrapper {
        grid-template-columns: 1fr;
    }

    .extra-blog-feature-items-wrapper {
        & .extra-blog-feature-item {
            &:last-child {
                padding-left: 0;
            }
        }
    }

    .extra-blog-feature-items-wrapper {
        & .extra-blog-feature-item {
            &:first-child {
                padding-right: 0;
            }
        }
    }

    .extra-blog-feature-item {
        border-right: 0;
    }

    .extra-blog-feature-items-wrapper {
        gap: 30px;
    }

    .ex-pt-60 {
        padding-top: 0;
    }

    .extra-blog-feature-divider {
        border-bottom: 0;
    }

    .extra-blog-feature-items {
        gap: 0;
    }

    .extra-blog-feature-items-wrapper {
        gap: 30px;
    }

    .extra-blog-feature-divider {
        margin: 30px 0;
        @media (max-width:767px){
            margin: 15px 0;
        }
    }

    .extra-blog-feature-divider {
        border-bottom: 1px solid #12121210;
        @media (max-width:767px){
            border: 0;
        }
    }

    .extra-blog-feature-title {
        line-height: 1.3;
    }

    .extra-blog-feature-desc {
        font-size: 16px;
        max-width: 100%;
    }
}

/* extra feature style  */
.extra-feature-area {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
}

.extra-feature-inner {
    background: var(--primary);
    padding-top: 140px;
    padding-bottom: 140px;
    padding-inline-start: 140px;
    padding-inline-end: 140px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.extra-feature-title {
    font-size: 30px;
    font-weight: 300;
    color: var(--white);
    padding-bottom: 17px;
}

.extra-feature-desc {
    font-size: 20px;
    line-height: 1.3;
    color: #999999;
    padding-bottom: 27px;
    font-weight: 300;
    @media (max-width:767px){
        padding-bottom: 20px;
    }
}

.extra-feature-thumb {
    img {
        text-align: center;
        display: block;
        margin: auto;

        &:nth-child(2) {
            padding-top: 39px;
        }
    }
}

.extra-feature-item {
    max-width: 378px;
    background: rgba(255, 255, 255, .02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    align-self: flex-start;

    &.card-2 {
        padding-bottom: 28px;

        .extra-feature-thumb {
            margin-top: -33px;
        }
    }

    &.card-3 {
        padding-bottom: 40px;

        .extra-feature-thumb {
            padding-top: 5px;
        }
    }

    &.card-5 {
        padding-bottom: 40px;

        .extra-feature-thumb {
            padding-top: 10px;
        }
    }

    &.card-6 {
        padding-bottom: 40px;

        .extra-feature-content {
            text-align: center;
        }
        .extra-feature-thumb{
            img{
                width: 40%;
            }
        }
    }

    &.lg {
        max-width: 100%;
        padding-bottom: 0;
        margin-top: -140px;

        .extra-feature-title {
            font-size: 38px;
            max-width: 375px;
            margin: auto;
        }

        .extra-feature-desc {
            padding-bottom: 44px;
        }
    }
}

.extra-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.extra-feature-content {
    padding-top: 50px;
    padding-inline-start: 40px;
    padding-inline-end: 40px;

    &.left-content {
        padding-inline-start: 20px;
        padding-inline-end: 20px;
        text-align: start;
    }
}

.extra-feature-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.extra-feature-lg-thumb {
    img {
        margin-top: 0px !important;
        margin-bottom: -2px;
    }
}

.w-100 {
    width: 100%;
}

.w-unset {
    width: unset !important;
}

@media (max-width:1500px) {
    .extra-feature-inner {
        padding-top: 120px;
        padding-bottom: 120px;
        padding-inline-start: 50px;
        padding-inline-end: 50px;
    }

    .extra-feature-grid {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
    }

    .extra-feature-item {
        &.lg {
            max-width: 100%;
            margin-top: -85px;
        }
    }

    .extra-feature-title {
        br {
            display: none;
        }
    }

    .extra-feature-lg-thumb {
        img {
            width: 100%;
        }
    }

    .extra-feature-content {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }

    .extra-feature-title {
        font-size: 22px;
    }

    .extra-feature-desc {
        font-size: 18px;

        br {
            display: none;
        }
    }
}

@media (max-width:1400px) {
    .extra-feature-item {
        &.lg {
            margin-top: -61px;
        }
    }

    .extra-feature-item {
        &.lg {
            .extra-feature-desc {
                padding-bottom: 16px;
            }
        }
    }
}

@media (max-width:1200px) {
    .extra-feature-inner {
        padding-top: 100px;
        padding-bottom: 100px;
        padding-inline-start: 20px;
        padding-inline-end: 20px;
    }

    .extra-feature-thumb {
        img {
            width: 100%;
            border-bottom-right-radius: 20px;
            border-bottom-left-radius: 20px;
        }
    }

    .extra-feature-title {
        font-size: 20px;
    }

    .extra-feature-desc {
        font-size: 14px;
    }

    .extra-feature-area {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
}

@media (max-width:1023px) {
    .extra-feature-inner {
        padding-top: 90px;
        padding-bottom: 90px;
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }

    .extra-feature-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .extra-feature-item {
        &.lg {
            margin-top: 0;
        }
    }

    .extra-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .extra-feature-item {
        &.lg {
            .extra-feature-title {
                font-size: 30px;
            }
        }
    }

    .extra-feature-item {
        &.card-3 {
            padding-bottom: 15px;
        }
    }

    .extra-feature-item {
        &.lg {
            margin-top: 0;
        }
    }

    .extra-feature-item.card-6 img {
        width: unset;
    }
}

@media (max-width:767px) {
    .extra-feature-inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .extra-feature-items {
        grid-template-columns: 1fr;
    }

    .extra-feature-grid {
        grid-template-columns: 1fr;
    }

    .extra-feature-area {
        padding-inline-start: 0;
        padding-inline-end: 0;
    }

    .extra-feature-item {
        &.lg {
            margin-top: 0;

            .extra-feature-title {
                font-size: 20px;
            }
        }
    }

    .extra-feature-content {
        padding-top: 30px;
    }

    .extra-feature-item {
        &.card-5 {
            padding-bottom: 20px;
        }
    }

    .extra-feature-item {
        &.card-2 {
            .extra-feature-thumb {
                margin-top: 0;
            }
        }
    }

    .extra-feature-title {
        padding-bottom: 12px;
        text-align: center;
    }
    .extra-feature-thumb {
        img {
            width: 70%;
        }
    }
    .extra-feature-desc {
        text-align: center;
    }
}

/* video area style  */
.video-area {
    position: relative;
    padding-top: 137px;
    background-color: #f9f9fb;
}

@media only screen and (max-width: 1919px) {
    .video-area {
        padding-top: 107px;
    }
}

@media only screen and (max-width: 991px) {
    .video-area {
        padding-top: 77px;
    }
}

@media only screen and (max-width: 767px) {
    .video-area {
        padding-top: 47px;
    }
}

.video-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 31%;
    background-color: #f9f9fb;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.video-area .section-header {
    display: flex;
    gap: 20px 60px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .video-area .section-header {
        flex-direction: column;
    }
}

.video-area .section-header .section-title {
    max-width: 500px;
}

.video-area .section-header .text {
    max-width: 440px;
}

.video-area .video-box-wrapper {
    margin-top: 50px;
}

.video-area .features-list {
    display: flex;
    gap: 15px 20px;
    justify-content: center;
    padding: 3px 3px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .video-area .features-list {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .video-area .features-list {
        gap: 15px 10px;
    }
}

.video-area .feature-item {
    text-align: center;
    justify-content: center;
    font-family: euclid_Circular_B, Sans-serif;
    font-size: 22px;
    font-weight: 500;
    fill: #121212;
    color: #121212;
    border-style: none;
    border-radius: 50px 50px 50px 50px;
    padding: 15px 33px;
    position: relative;
    box-shadow: 0 30px 50px 0 rgba(20, 23, 56, 0.12);
    background: #fff;
}

@media (max-width: 1919px) {
    .video-area .feature-item {
        font-size: 18px;
        padding: 13px 27px;
    }
}

@media (max-width: 767px) {
    .video-area .feature-item {
        padding: 8px 13px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .video-area .feature-item {
        font-size: 14px;
        padding: 6px 8px;
    }
}

.video-area .feature-item:before {
    position: absolute;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background: 0 0;
    content: "";
    z-index: -1;
    top: -3px;
    left: -3px;
    border-radius: 50px;
    transition: all 0.3s;
    background: linear-gradient(109deg,
            #aac7ff 0.71%,
            #d781ff 50.36%,
            #ffb8d2 100%);
}

@media (max-width: 575px) {
    .video-area .feature-item:before {
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        top: -2px;
        left: -2px;
    }
}

.video-area .feature-item:nth-child(2):before {
    background: linear-gradient(109deg,
            #cfea84 0.71%,
            #8be8b6 50.36%,
            #5e7eee 100%);
}

.video-area .feature-item:nth-child(3):before {
    background: linear-gradient(109deg,
            #ffd5a4 0.71%,
            #f3a3eb 50.36%,
            #ac8eff 100%);
}

.video-area .video-box {
    border-radius: 10px;
    background: linear-gradient(109deg,
            #aac7ff 0.71%,
            #d781ff 50.36%,
            #ffb8d2 100%);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .video-area .video-box {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .video-area .video-box {
        padding: 8px;
    }
}

.video-area .video-box iframe {
    width: 100%;
    aspect-ratio: 100/56;
    height: auto;
}

/* features area style  */
.features-area {
    background-color: #f9f9fb;
    padding-top: 27px;
}

@media only screen and (max-width: 1919px) {
    .features-area {
        padding-top: 27px;
    }
}

@media only screen and (max-width: 991px) {
    .features-area {
        padding-top: 27px;
    }
}

@media only screen and (max-width: 767px) {
    .features-area {
        padding-top: 27px;
    }
}

.features-area .section-header {
    text-align: center;
}

.features-area .section-header .section-title {
    max-width: 650px;
    margin: 0 auto;
}

.features-area .section-header .text {
    max-width: 620px;
    margin: 0 auto;
}

.features-area .section-header .text-wrapper {
    margin-top: 29px;
}

@media (max-width: 1919px) {
    .features-area .section-header .text-wrapper {
        margin-top: 19px;
    }
}

.features-area .features-list-wrapper {
    margin-top: 63px;
}

@media (max-width: 1919px) {
    .features-area .features-list-wrapper {
        margin-top: 43px;
    }
}

@media (max-width: 1200px) {
    .features-area .features-list-wrapper {
        margin-top: 23px;
    }
}

.features-area .features-list {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 991px) {
    .features-area .features-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .features-area .features-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .features-area .features-list-wrapper {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .features-area .features-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.features-area .feature-item {
    text-align: center;
    padding: 35px 20px 27px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    .features-area .feature-item {
        padding: 25px 20px 17px;
    }
    .feature-item .icon svg {
        width: 50px;
    }
}

@media (max-width: 575px) {
    .features-area .feature-item {
        padding: 15px 5px 10px;
    }
    .feature-item .icon svg {
        width: 40px;
    }
}

.features-area .feature-item:hover {
    box-shadow: 0px 30px 70px rgba(18, 22, 57, 0.08);
}

.features-area .feature-item:hover .icon svg * {
    fill: #8256ff;
}

.features-area .feature-item .text {
    font-size: 18px;
    line-height: 1.44;
    margin-top: 26px;
}

@media (max-width: 1199px) {
    .features-area .feature-item .text {
        font-size: 14px;
        margin-top: 14px;
    }
}

@media (max-width: 575px) {
    .features-area .feature-item .text {
        font-size: 13px;
        margin-top: 0;
    }
}

/* demo area style  */
.demo-area {
    padding-top: 137px;
    .section-title{
        font-size: 50px;
        @media (max-width:767px){
            font-size: 24px;
        }
    }
}

@media only screen and (max-width: 1919px) {
    .demo-area {
        padding-top: 107px;
    }
}

@media only screen and (max-width: 991px) {
    .demo-area {
        padding-top: 77px;
    }
}

@media only screen and (max-width: 767px) {
    .demo-area {
        padding-top: 47px;
    }
}

.demo-area .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.demo-area .section-header .section-title {
    max-width: 900px;
    margin: 0 auto;
}

.demo-area .section-header .text {
    max-width: 650px;
    margin: 0 auto;
}

.demo-area .section-header .text-wrapper {
    margin-top: 30px;
    @media (max-width:767px){
        margin-top: 20px;
    }
}

.demo-area .btn-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    @media (max-width:767px){
        margin-top: 40px;
    }
}

#demos {
    min-height: 100vh;
}

.demo__wrapper {
    transition: all 0.5s;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1920px;
    margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
    .demo__wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .demo__wrapper {
        padding: 0 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

.demo__list {
    display: grid;
    grid-gap: 70px 50px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 63px;
    justify-content: center;
}

@media (max-width: 1919px) {
    .demo__list {
        grid-gap: 40px 30px;
        margin-top: 43px;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

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

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

.demo__item {
    text-align: center;
}

.demo__item-thumb {
    position: relative;
}

.demo__item-thumb::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}

.demo__item-thumb:hover::before {
    opacity: 1;
    visibility: visible;
}

@media (hover: none) {
    .demo__item-thumb:before {
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.65);
    }
}

.demo__item-thumb:hover .demo__buttons-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (hover: none) {
    .demo__item-thumb .demo__buttons-wrapper {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.demo__item img {
    max-width: 100%;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
}

.demo__item h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 13px;
    text-transform: capitalize;
    color: var(--primary);
}

.demo__buttons-wrapper {
    position: absolute;
    bottom: 43%;
    width: 100%;
    transition: 0.6s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
}

.demo__buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.demo__link-btn {
    padding: 9px 15px;
    border-radius: 30px;
    border: 1.5px solid #fff;
    color: #fff;
    transition: 0.6s;
    font-size: 14px;
    display: inline-flex;
}

@media (max-width: 768px) {
    .demo__link-btn {
        padding: 7px 15px;
        font-size: 12px;
    }
}

.demo__link-btn:hover {
    background: #fff;
    color: #121212;
}

.demo__text p strong {
    color: #121212;
}

.demo__btn {
    float: right;
    position: relative;
    display: inline-block;
    background-color: #ebebed;
    border-radius: 25px;
}

.demo__btn button {
    color: #121212;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 25px;
    border: 0;
    outline: none;
    padding: 10px 23px;
    background-color: transparent;
}

.demo__btn img {
    width: 0;
}

.demo__btn .active {
    background-color: #fff;
}

.demo__btn .active img {
    width: 19px;
}

.demo__btn::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 60px;
    right: 65px;
    bottom: -80px;
    background-repeat: no-repeat;
    background-image: url(../imgs/arrow.png);
}

.demo__btm {
    text-align: center;
    margin-top: 70px;
    position: relative;
    margin-left: 100px;
    margin-right: 100px;
    @media (max-width:767px){
        margin-top: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .demo__btm {
        margin-left: 50px;
        margin-right: 50px;
    }

}

@media only screen and (max-width: 991px) {
    .demo__btm {
        margin-left: 30px;
        margin-right: 30px;
    }

}

.demo__btm:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e9e9e9;
    left: 0;
    bottom: 20px;
    z-index: -1;
}

.demo__btm p {
    color: #555;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 20px;
    border: 1px solid #e9e9e9;
    background: #fff;
    display: inline-block;
    padding: 8px 20px;
}

.demo__btm p img {
    margin-bottom: -5px;
}

/* plugin area style  */
.plugin-area .section-content {
    max-width: 430px;
}

.plugin-area .section-content .title-wrapper {
    margin-top: 22px;
}

.plugin-area .section-content .text {
    max-width: 370px;
}

.plugin-area .section-content .text-wrapper {
    margin-top: 29px;
}

@media (max-width: 1919px) {
    .plugin-area .section-content .text-wrapper {
        margin-top: 19px;
    }
}

.plugin-area .section-content .feature-list {
    margin-top: 15px;
}

.plugin-area .section-content .feature-list li {
    line-height: 1.625;
    color: var(--primary);
}

.plugin-area .section-content .feature-list li img {
    margin-right: 10px;
}

.plugin-area .section-content .section-subtitle {
    font-size: 16px;
    font-weight: 600;
    background-color: #1afff1;
    padding: 17px 20px;
    display: inline-block;
    border-radius: 14px;
    line-height: 1;
    position: relative;
}

.plugin-area .section-content .section-subtitle:before {
    position: absolute;
    content: url(../imgs/shape/shape-s-1.png);
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.plugin-area .section-content .section-subtitle:after {
    position: absolute;
    content: url(../imgs/shape/shape-s-2.png);
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.plugin-area .plugins-wrapper-box {
    max-width: 660px;
    width: 100%;
}

@media (max-width: 1919px) {
    .plugin-area .plugins-wrapper-box {
        max-width: 570px;
    }
}

@media (max-width: 991px) {

    .plugin-area .section-content .section-subtitle:before,
    .plugin-area .section-content .section-subtitle:after {
        display: none;
    }
}

.plugin-area-inner {
    display: flex;
    gap: 40px 60px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .plugin-area-inner {
        flex-direction: column;
    }
}

.plugin-item {
    display: flex;
    gap: 25px;
    align-items: center;
}

.plugin-item .plugin-icon img {
    width: 78px;
}

@media (max-width: 767px) {
    .plugin-item .plugin-icon img {
        width: 58px;
    }
}

.plugin-item .title {
    font-size: 24px;
    line-height: 1.08;
}

@media (max-width: 767px) {
    .plugin-item .title {
        font-size: 16px;
        br{
            display: none;
        }
    }
}

.plugin-item .plugin-content {
    display: grid;
    gap: 10px 25px;
    grid-template-columns: 200px auto auto 110px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 767px) {
    .plugin-item .plugin-content {
        grid-template-columns: auto auto;
        gap: 5px 25px;
    }
}

.plugin-item .tag {
    font-size: 14px;
    font-weight: 500;
    padding: 2px 9px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 5px;
    width: -moz-max-content;
    width: max-content;
}

.plugin-item .text {
    color: var(--primary);
    line-height: 1.4;
    br{
        @media (max-width:767px){
            display: none;
        }
    }
}

.plugin-item:not(:first-child) {
    padding-top: 40px;
    border-top: 1px solid rgba(18, 18, 18, 0.06);
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .plugin-item:not(:first-child) {
        padding-top: 20px;
        margin-top: 20px;
    }
}
.arrow-icon{
    @media (max-width:767px){
        display: none;   
    }
}

/* elementor area style  */
.elementor-area {
    border-bottom: 1px solid rgba(18, 18, 18, 0.07);
}

.elementor-area .section-content {
    max-width: 470px;
}

.elementor-area .section-content .title-wrapper {
    margin-top: 39px;
    @media (max-width:767px){
        margin-top: 20px;
    }
}

.elementor-area .section-content .text-wrapper {
    margin-top: 29px;
}

@media (max-width: 1919px) {
    .elementor-area .section-content .text-wrapper {
        margin-top: 19px;
    }
}
.elementor-area .section-content .text-wrapper {
    @media (max-width:767px){
        margin-top: 10px;
    }
}

.elementor-area .section-content .feature-list {
    margin-top: 15px;
}

.elementor-area .section-content .feature-list ul {
    display: grid;
    gap: 0 20px;
    grid-template-columns: auto auto;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .elementor-area .section-content .feature-list ul {
        grid-template-columns: 1fr;
    }

    filter-buttons-wrapper label {
        padding: 5px 8px;
        border-radius: 50px;
        font-size: 13px;
    }

    .filter-buttons-wrapper {
        gap: 5px;
        margin-top: 36px;
    }

}

.elementor-area .section-content .feature-list li {
    line-height: 1.625;
    color: var(--primary);
}

.elementor-area .section-content .feature-list li img {
    margin-right: 10px;
}

.elementor-area .section-content .btn-wrapper {
    margin-top: 45px;
    @media (max-width:767px){
        margin-top: 30px;
    }
}

.elementor-area-inner {
    display: flex;
    gap: 40px 60px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .elementor-area-inner {
        flex-direction: column;
    }
}

.elementor-thumb {
    margin-bottom: -8%;
    max-width: 762px;
}

@media (min-width: 1401px) {
    .elementor-thumb {
        width: 762px;
    }
}

@media (max-width: 1400px) {
    .elementor-thumb {
        max-width: 662px;
    }
}

.elementor-thumb img {
    width: 100%;
}

/* gsap area style  */
.gsap-area {
    border-bottom: 1px solid rgba(18, 18, 18, 0.07);
}

.gsap-area .section-content {
    max-width: 440px;
}

.gsap-area .section-content .title-wrapper {
    margin-top: 28px;
    @media (max-width:767px){
        margin-top: 20px;
    }
}

.gsap-area .section-content .text-wrapper {
    margin-top: 29px;
}

@media (max-width: 1919px) {
    .gsap-area .section-content .text-wrapper {
        margin-top: 19px;
    }
}
.gsap-area .section-content .text-wrapper {
    @media (max-width:767px){
        margin-top: 10px;
    }
}
.gsap-area .section-content .feature-list {
    margin-top: 15px;
}

.gsap-area .section-content .feature-list ul {
    display: grid;
    gap: 0 20px;
    grid-template-columns: auto;
    justify-content: space-between;
}

.gsap-area .section-content .feature-list li {
    line-height: 1.625;
    color: var(--primary);
}

.gsap-area .section-content .feature-list li img {
    margin-right: 10px;
}

.gsap-area .section-content .btn-wrapper {
    margin-top: 45px;
    @media (max-width:767px){
        margin-top: 30px;
    }
}

.gsap-area .video-box {
    border-radius: 10px;
    background: linear-gradient(180deg,
            #def0bc 0%,
            rgba(222, 240, 188, 0) 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .gsap-area .video-box {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .gsap-area .video-box {
        padding: 8px;
    }
}

.gsap-area .video-box iframe {
    width: 100%;
    aspect-ratio: 100/74;
    height: auto;
}

.gsap-area .video-box img {
    width: 100%;
}

.gsap-area .video-box-wrapper {
    width: 100%;
    max-width: 660px;
}

@media (max-width: 1919px) {
    .gsap-area .video-box-wrapper {
        max-width: 650px;
    }
}

.gsap-area-inner {
    display: flex;
    gap: 40px 60px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .gsap-area-inner {
        flex-direction: column-reverse;
    }
}

/* elements area style  */
.elements-area {
    background-color: var(--primary);
}

.elements-area .section-header {
    text-align: center;
}

.elements-area .section-header .section-title {
    max-width: 470px;
    margin: 0 auto;
    color: var(--white);
}

.elements-area .section-header .text {
    max-width: 560px;
    margin: 0 auto;
    color: var(--white-2);
    br{
        @media (max-width:767px){
            display: none;
        }
    }
}

.elements-area .section-header .text span {
    color: var(--white);
}

.elements-area .section-header .section-subtitle {
    font-weight: 900;
    font-size: 300px;
    line-height: 0.75;
    background: linear-gradient(180deg, #222222 0%, rgba(18, 18, 18, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--font_estedad);
}

@media (max-width: 1919px) {
    .elements-area .section-header .section-subtitle {
        font-size: 250px;
    }
}

@media (max-width: 991px) {
    .elements-area .section-header .section-subtitle {
        font-size: 200px;
    }
}

@media (max-width: 767px) {
    .elements-area .section-header .section-subtitle {
        font-size: 130px;
    }
}

.elements-area .section-header .title-wrapper {
    margin-top: -135px;
}

@media (max-width: 767px) {
    .elements-area .section-header .title-wrapper {
        margin-top: -95px;
    }
}

.elements-area .section-header .text-wrapper {
    margin-top: 29px;
}

@media (max-width: 1919px) {
    .elements-area .section-header .text-wrapper {
        margin-top: 19px;
    }
}

.elements-area .elements-wrapper-box {
    margin-top: 63px;
}

@media (max-width: 1919px) {
    .elements-area .elements-wrapper-box {
        margin-top: 43px;
    }
}

.elements-area .element-card {
    background-color: #1f1f1f;
    display: inline-flex;
    align-items: center;
    padding: 20px 30px;
    border-radius: 12px;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-2);
    font-family: var(--font_estedad);
}

@media (max-width: 1919px) {
    .elements-area .element-card {
        padding: 19px 25px;
    }
}

@media (max-width: 991px) {
    .elements-area .element-card {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .elements-area .element-card:nth-child(20)~* {
        display: none;
    }
}

.elements-area .element-card img {
    margin-right: 20px;
}

@media (max-width: 991px) {
    .elements-area .element-card img {
        margin-right: 10px;
        max-height: 15px;
    }
}

.elements-area .elements-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 0 -150px;
}

@media (max-width: 1919px) {
    .elements-area .elements-wrapper {
        margin: 0 0px;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .elements-area .elements-wrapper {
        gap: 12px;
    }
}

/* header footer area style  */
.header-footer-area .section-content {
    max-width: 380px;
}

.header-footer-area .section-content .text {
    max-width: 560px;
}

.header-footer-area .section-content .text-wrapper {
    margin-top: 29px;
}

@media (max-width: 1919px) {
    .header-footer-area .section-content .text-wrapper {
        margin-top: 19px;
    }
}

.header-footer-area .section-content .btn-wrapper {
    margin-top: 45px;
    @media (max-width:767px){
        margin-top: 30px;
    }
}

.header-footer-inner {
    display: flex;
    gap: 40px 60px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    .header-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

.header-footer-thumb {
    border-radius: 10px;
    background: linear-gradient(123.58deg, #f2e5de 0.66%, #e9deff 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 630px;
}

@media (max-width: 1919px) {
    .header-footer-thumb {
        max-width: 530px;
    }
}

@media (max-width: 1199px) {
    .header-footer-thumb {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .header-footer-thumb {
        padding: 8px;
    }
}

.header-footer-thumb img {
    width: 100%;
}

/* layout area style  */
.layout__area .section-header {
    text-align: center;
}

.layout__area .section-header .section-title {
    max-width: 410px;
    margin: 0 auto;
}

.layout__area .section-header .text {
    max-width: 500px;
    margin: 0 auto;
}

.layout__area .section-header .text-wrapper {
    margin-top: 29px;
}

@media (max-width: 1919px) {
    .layout__area .section-header .text-wrapper {
        margin-top: 19px;
    }
}

.layout__inner {
    text-align: center;
    border-radius: 20px;
    padding: 90px 100px 100px;
    background: linear-gradient(101.34deg, #d8e2ff 0%, #f3c1ff 147.26%);
    position: relative;
}

@media (max-width: 1919px) {
    .layout__inner {
        padding: 70px 20px 80px;
    }
}

.layout__inner .shape {
    position: absolute;
    top: 65px;
    left: 130px;
}

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

.layout__inner .shape-2 {
    position: absolute;
    right: 26%;
    bottom: 0;
}

.layout__list {
    display: grid;
    gap: 30px 0;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
    .layout__list {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

.layout__list-box {
    margin-top: 63px;
}

@media (max-width: 1919px) {
    .layout__list-box {
        margin-top: 43px;
    }
}

.layout__item {
    position: relative;
}

.layout__item::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #121212;
}

@media (max-width: 767px) {
    .layout__item::after {
        display: none;
    }
}

.layout__item:last-child::after {
    display: none;
}

.layout__item img {
    margin-bottom: 30px;
    @media (max-width:767px){
        margin-bottom: 20px;
        width: 20%;
    }
}

.layout__item .title {
    color: #121212;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.layout__item p {
    font-size: 14px;
    line-height: 1.3;
    color: #121212;
    padding-top: 10px;
}

/* template area style  */
.template__area {
    background-color: #121212;
    text-align: center;
    position: relative;
    padding: 200px 0px;
}

@media only screen and (max-width: 1399px) {
    .template__area {
        padding: 120px 0px;
    }
}

@media only screen and (max-width: 991px) {
    .template__area {
        padding: 90px 0px;
    }
}

@media only screen and (max-width: 767px) {
    .template__area {
        display: none;
    }
}

.template__area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,
            #121212 5.87%,
            rgba(18, 18, 18, 0) 76.38%);
}

.template__area:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg,
            #121212 5.87%,
            rgba(18, 18, 18, 0) 76.38%);
}

.template__area .section-header {
    text-align: center;
    position: sticky;
    position: -webkit-sticky;
    top: 330px;
}

@media only screen and (max-width: 1399px) {
    .template__area .section-header {
        top: 260px;
    }
}

@media only screen and (max-width: 1199px) {
    .template__area .section-header {
        top: 180px;
    }
}

.template__area .section-header .section-subtitle {
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    background: linear-gradient(90.07deg,
            #d0ff4b 0.11%,
            #89f9de 53.57%,
            #b8d0ff 102.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@media (max-width: 1919px) {
    .template__area .section-header .section-subtitle {
        font-size: 18px;
    }
}

.template__area .section-header .section-title {
    max-width: 640px;
    margin: 0 auto;
    color: var(--white);
}

.template__area .section-header .title-wrapper {
    margin-top: 15px;
}

.template__area .section-header .btn-wrapper {
    margin-top: 40px;
}

.template__area .section-header .wc-btn-default:hover {
    color: var(--primary);
}

.template__area .section-header .wc-btn-default:after {
    background-color: var(--white);
}

.template__area .section-header .wc-btn-default.bordered {
    border-color: var(--white);
    color: var(--white);
}

.template__area .section-header .wc-btn-default.bordered:hover {
    background-color: var(--white);
    color: var(--primary);
}

.template__inner .image {
    width: 100%;
}

.template__content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 5;
    padding-top: 330px;
    padding-bottom: 330px;
}

@media only screen and (max-width: 1399px) {
    .template__content {
        padding-top: 260px;
        padding-bottom: 260px;
    }
}

@media only screen and (max-width: 1199px) {
    .template__content {
        padding-top: 180px;
        padding-bottom: 180px;
    }
}

/* Rectangle 1214 */
/* offcanvas area style  */
.offcanvas__area .section-content {
    max-width: 440px;
}

.offcanvas__area .section-content .section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #14cda1;
}

.offcanvas__area .section-content .title-wrapper {
    margin-top: 37px;
}

.offcanvas__area .section-content .text-wrapper {
    margin-top: 29px;
}

@media (max-width: 1919px) {
    .offcanvas__area .section-content .text-wrapper {
        margin-top: 19px;
    }
}

.offcanvas__area .section-content .btn-wrapper {
    margin-top: 45px;
}

.offcanvas__area .offcanvas-thumb {
    max-width: 600px;
}

@media (max-width: 1919px) {
    .offcanvas__area .offcanvas-thumb {
        max-width: 500px;
    }
}

.offcanvas__area .offcanvas-thumb img {
    width: 100%;
}

.offcanvas-inner {
    display: flex;
    gap: 40px 60px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    .offcanvas-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* testimonial area style  */
.testimonial__area {
    padding-top: 137px;
    background-color: #f9f9fb;
    position: relative;
    padding-left: 100px;
    padding-right: 100px;
}

@media only screen and (max-width: 1919px) {
    .testimonial__area {
        padding-top: 107px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial__area {
        padding-top: 77px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial__area {
        padding-top: 47px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.testimonial__area::after {
    position: absolute;
    content: "";
    border-radius: 88px;
    background: linear-gradient(180deg, rgba(249, 249, 251, 0) 0%, #f9f9fb 75%);
    width: 100%;
    height: 1000px;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 991px) {
    .testimonial__area:after {
        height: 600px;
    }
}

.testimonial__area .section-header {
    text-align: center;
}

.testimonial__area .section-header .section-title {
    max-width: 520px;
    margin: 0 auto;
}

.testimonial__area .section-header .text {
    max-width: 510px;
    margin: 0 auto;
}

.testimonial__area .section-header .text-wrapper {
    margin-top: 29px;
}

@media (max-width: 1919px) {
    .testimonial__area .section-header .text-wrapper {
        margin-top: 19px;
    }
}

.testimonial__list-wrapper {
    margin-top: 63px;
}

@media (max-width: 1919px) {
    .testimonial__list-wrapper {
        margin-top: 43px;
    }
}

.testimonial__list {
    -moz-column-count: 4;
    column-count: 4;
    gap: 20px;
}

@media only screen and (max-width: 1199px) {
    .testimonial__list {
        -moz-column-count: 3;
        column-count: 3;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial__list {
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .testimonial__list {
        -moz-column-count: 1;
        column-count: 1;
    }
}

@media (max-width: 1199px) {
    .testimonial__list>*:nth-child(10)~* {
        display: none;
    }
}

@media (max-width: 991px) {
    .testimonial__list>*:nth-child(6)~* {
        display: none;
    }
}

.testimonial__item {
    padding: 40px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(17, 19, 40, 0.04);
    margin-bottom: 20px;
    display: inline-block;
}

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

.testimonial__item p {
    font-size: 18px;
    padding-top: 25px;
    padding-bottom: 25px;
}

@media (max-width: 575px) {
    .testimonial__item p {
        font-size: 16px;
    }
}

.testimonial__item .type {
    color: #121212;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.testimonial__item .author {
    font-size: 16px;
}

.testimonial__item .author img {
    margin-right: 6px;
}

.testimonial__review p {
    color: #121212;
    font-size: 14px;
    text-align: center;
}

.testimonial__review .btn {
    max-width: 220px;
    border-radius: 39px;
    border: none;
    background: linear-gradient(135deg,
            #daf393 0%,
            #9bec7f 41.15%,
            #29b2ff 100%);
    gap: 10px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    margin: auto;
    margin-top: 5px;
    @media (max-width:767px){
        justify-content: center;
    }
}

.testimonial__review .left {
    color: #121212;
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    font-family: "estedad";
    position: relative;
    top: 3px;
    @media (max-width:767px){
        font-size: 40px;
    }
}

.testimonial__review {
    position: relative;
    z-index: 1;
    margin-top: -150px;
}

/* support area style  */
.support-area .support-card {
    padding: 35px 37px 37px;
    box-shadow: 7px 7px 0px var(--primary);
    margin-right: 7px;
    margin-bottom: 7px;
    background: linear-gradient(115.47deg, #f7eea5 0%, #ffd0b6 101.86%);
    border: 3px solid var(--primary);
    border-radius: 15px;
}

.support-area .support-card .title {
    font-size: 30px;
}

.support-cards-wrapper {
    position: relative;
    z-index: 999;
}

@media (max-width: 575px) {
    .support-area .support-card .title {
        font-size: 26px;
    }
}

.support-area .support-card .text {
    font-size: 16px;
    line-height: 1.375;
    margin-top: 13px;
}

.support-area .support-card .wc-btn-default {
    margin-top: 35px;
    padding: 16px 25px;
    border-radius: 10px;
    color: var(--white);
    background-color: var(--primary);
    @media (max-width:767px){
        margin-top: 20px;
    }
}

.support-area .support-card .wc-btn-default:hover {
    color: var(--primary);
    border-color: var(--white);
    background-color: var(--white);
}

.support-area .support-card .wc-btn-default:after {
    background-color: var(--white);
}

.support-area .support-cards {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.support-area .support-cards>*:nth-child(1) {
    background: linear-gradient(115.47deg, #f7eea5 0%, #ffd0b6 101.86%);
}

.support-area .support-cards>*:nth-child(2) {
    background: linear-gradient(115.6deg, #9df4ca 0%, #f8ffa3 101.8%);
}

.support-area .support-cards>*:nth-child(3) {
    background: linear-gradient(116.02deg, #d4c5ff 0%, #fec5ff 102.31%);
}

.support-area .note {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.support-area .note .text {
    font-size: 14px;
}

.support-area .note-wrapper {
    margin-top: 40px;
}

/* purchase area style  */
.purchase__area {
    position: relative;
}

.purchase__area .section-content {
    max-width: 450px;
}

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

.purchase__area .section-content .text {
    max-width: 400px;
    color: var(--white);
}

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

.purchase__area .section-content .btn-wrapper {
    margin-top: 45px;
    @media (max-width:767px){
        margin-top: 30px;
    }
}

.purchase__area .section-content .wc-btn-default {
    padding: 20px 34px;
    border-radius: 10px;
    color: var(--white);
    background-color: var(--primary);
}

.purchase__area .section-content .wc-btn-default:hover {
    color: var(--primary);
    border-color: var(--white);
    background-color: var(--white);
}

.purchase__area .section-content .wc-btn-default:after {
    background-color: var(--white);
}

.purchase__area .bg {
    width: 100%;
    height: 250px;
    background-color: #121212;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.purchase__inner {
    padding: 80px 80px;
    border-radius: 10px;
    background-color: #004e50;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../imgs/purchase-bg.png);
    z-index: 99;
    position: relative;
    display: flex;
    gap: 40px 60px;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .purchase__inner {
        padding: 80px 50px;
    }
}

@media only screen and (max-width: 991px) {
    .purchase__inner {
        padding: 60px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .purchase__inner {
        padding: 30px 25px;
        flex-direction: column;
    }
}

.purchase__thumb {
    position: relative;
    max-width: 556px;
    width: 100%;
}

@media (max-width: 1919px) {
    .purchase__thumb {
        max-width: 456px;
    }
}

.purchase__thumb .image-2 {
    margin-left: 55px;
}

@media only screen and (max-width: 1199px) {
    .purchase__thumb .image-2 {
        width: 300px;
    }
}

@media only screen and (max-width: 991px) {
    .purchase__thumb .image-2 {
        width: 240px;
    }
}

@media only screen and (max-width: 767px) {
    .purchase__thumb .image-2 {
        width: 75%;
    }
}

@media (max-width: 575px) {
    .purchase__thumb .image-2 {
        margin-left: 25px;
    }
}

.purchase__thumb .image {
    position: absolute;
    top: 42%;
    z-index: 1;
    left: 0;
}

.purchase__thumb .image-3 {
    margin-left: auto;
    display: block;
    margin-top: -178px;
    width: 76%;
}

@media only screen and (max-width: 1199px) {
    .purchase__thumb .image-3 {
        margin-top: -108px;
    }
}

/* footer area style  */
.footer__area {
    padding: 40px 0;
    background: #121212;
}

@media only screen and (max-width: 1199px) {
    .footer__area {
        padding: 30px 0;
    }
}

.footer__inner {
    display: grid;
    grid-gap: 100px;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .footer__inner {
        grid-gap: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .footer__inner {
        grid-gap: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__inner {
        grid-gap: 30px 10px;
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer__item {
    gap: 20px;
    display: flex;
    align-items: center;
    position: relative;
    @media (max-width:767px){
        gap: 12px;
    }
}

.footer__item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: -100px;
    background-color: #474747;
}

@media only screen and (max-width: 1399px) {
    .footer__item::before {
        left: -80px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer__item::before {
        left: -50px;
    }
}

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

.footer__item:first-child::before {
    display: none;
}

.footer__item img {
    max-width: 60px;
}

@media only screen and (max-width: 1199px) {
    .footer__item img {
        max-width: 50px;
    }
}
@media (max-width:767px){
    .footer__item img {
        max-width: 30px;
    }
}

.footer__item p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    font-family: "estedad";
    @media (max-width:767px){
        font-size: 14px;
    }
}

/* side-links area style  */
#side-links {
    position: fixed;
    top: 0;
    padding: 20px 5px;
    background-color: #fff;
    width: 100px;
    right: -100px;
    transition: all 0.5s;
    z-index: 99999;
    font-weight: inherit;
    bottom: 0;
}

#side-links .options {
    background-color: var(--white);
    width: 43px;
    position: absolute;
    top: 250px;
    left: -43px;
    cursor: pointer;
    border-left: 0;
    border-radius: 0;
    padding: 0;
    border-radius: 12px;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border: 1px solid var(--border);
    border-right: 0;
    box-sizing: border-box;
}

#side-links .options .custom-tooltip {
    transition: all 0.5s;
    position: relative;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}

#side-links .options .custom-tooltip:last-child {
    border-bottom: none;
}

#side-links .options .custom-tooltip:hover .wc-tooltip {
    opacity: 1;
    right: 55px;
    visibility: visible;
    transform: scale(1);
}

#side-links .options .custom-tooltip:hover svg path {
    fill: var(--primary);
}

#side-links .options .icon {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    display: block;
    height: 41px;
    line-height: 41px;
    color: var(--e-global-color-text);
    transition: all 0.5s;
}

#side-links .options svg {
    width: 18px;
    height: 18px;
}

#side-links .options svg,
#side-links .options svg path {
    fill: var(--e-global-color-text);
    transition: all 0.5s;
}

#side-links .options .wc-tooltip {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.7);
    position: absolute;
    line-height: 12px;
    background-color: #fff;
    border: 1px solid var(--border);
    font-size: 14px;
    margin: 0;
    padding: 12px;
    font-family: inherit;
    width: auto;
    font-weight: 500;
    display: block;
    right: 10px;
    top: 2px;
    white-space: nowrap;
    border-radius: 0;
    transition: all 0.5s;
    border-radius: 12px;
    color: var(--primary);
}

#side-links .options .wc-tooltip .triangle-tooltip {
    display: block;
    position: absolute;
    right: -6px;
    margin-top: -6px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary);
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    opacity: 0.08;
}

#side-links .options .wc-tooltip:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: var(--primary);
    opacity: 0.08;
    display: none;
}

@media (max-width: 1023.98px) {
    #side-links {
        display: none;
    }
}

/* 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: #999999;
    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;
}

/*# sourceMappingURL=style.css.map */

/* hero area-2 style  */
.hero-btn-wrapper{
    .hero-btn{
        &::after{
            background-color: #C9F31D;
        }
        &:hover{
            border-color: #C9F31D;
            color: #121212;
        }
    }
}
.feature-btn-wrapper{
    .hero-btn{
        &::after{
            background-color: #C9F31D;
        }
        &:hover{
            border-color: #fff;
            color: #121212;
        }
}
}

.video-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: column;
    position: absolute;
    top: 10%;
    left: 18%;
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .video-btn-wrapper {
        top: 6%;
        left: 16%;
    }
}

@media (max-width: 1199px) {
    .video-btn-wrapper {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
}

.video-btn-wrapper .text {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.16;
    text-align: center;
}

.wc-btn-play {
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid currentColor;
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.5s;
    font-size: 14px;
}

@media only screen and (max-width: 1199px) {
    .wc-btn-play {
        width: 60px;
        height: 60px;
        font-size: 12px;
        border-width: 1px;
    }
}

.wc-btn-play:hover {
    color: var(--theme, --action);
}

.wc-btn-play svg * {
    transition: all 0.5s;
}

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

.wc-btn-play.light:hover {
    color: var(--white);
}

.wc-btn-play.dark {
    color: var(--black);
    border-color: var(--black);
}

.wc-btn-play.dark:hover {
    color: var(--black);
}

/*
--------------------
btn-text-flip
--------------------
*/

.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.3s;
        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.3s;
            transform: rotateX(-90deg);
            transform-origin: 50% 0;
            text-align: center;
        }
    }
}

.buttons-container {
    position: relative;
    z-index: 99999;
    text-align: center;
}

.filter-buttons-wrapper {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #C9F31D;
    border-radius: 100px;
    background-color: #C9F31D;

    @media (max-width:767px) {
        border-radius: 10px;
        padding: 10px 15px;
    }
}

.filter-buttons-wrapper {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    margin-inline: 15px;

    @media (max-width:768px) {
        gap: 7px;
    }

    input {
        display: none;

        &:checked+label {
            background-color: var(--primary);
            color: var(--white);
        }
    }

    label {
        padding: 9px 25px;
        border-radius: 30px;
        border: 1.5px solid var(--primary);
        color: var(--primary);
        transition: 0.6s;
        font-size: 16px;
        position: relative;
        overflow: hidden;
        display: block;
        cursor: pointer;
        font-weight: 600;

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

        /* @media (max-width:1400px) {
            padding: 5px 8px;
            font-size: 14px;
        } */

        /* @media (max-width:1200px) {
            padding: 5px 5px;
            font-size: 12px;
        } */

        /* @media (max-width:768px) {
            padding: 8px 12px;
            font-size: 11px;
        } */
    }
}

.buttons-container label:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Dark Feature Section Styles */
.dark-feature-area {
    background: #181A20;
    padding: 80px 0;
}
.dark-feature-header {
    text-align: center;
    margin-bottom: 48px;
}
.dark-feature-area .section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.dark-feature-area .section-desc {
    color: #ccc;
    font-size: 1.15rem;
    margin-bottom: 0;
}
.dark-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.dark-feature-card {
    background: #23262F;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    padding: 32px 28px 28px 28px;
    transition: transform 0.18s, box-shadow 0.18s;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
}
.dark-feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
}
.dark-feature-title {
    font-size: 30px;
    font-weight: 400;
    font-family: inherit;
    line-height: normal;
    margin-bottom: 10px;
    color: #fff;
}
.dark-feature-desc {
    font-size: 18px;
    font-family: inherit;
    font-weight: normal;
    line-height: normal;
    color: #bdbdbd;
    margin: 0;
}
@media (max-width:1200px) {
    .dark-feature-title {
        font-size: 20px;
    }
    .dark-feature-desc {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
    .dark-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .dark-feature-area {
        padding: 56px 0;
    }
}
@media (max-width: 600px) {
    .dark-feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .dark-feature-area {
        padding: 32px 0;
    }
    .dark-feature-card {
        padding: 22px 14px 18px 14px;
    }
    .dark-feature-area .section-title {
        font-size: 2rem;
    }
}

.dark-feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: block;
    object-fit: contain;
    filter: brightness(1.2);
}

<div class="dark-feature-card">
    <img class="dark-feature-icon" src="assets/imgs/icon/icon-s-1.png" alt="Likes & Views icon">
    <h3 class="dark-feature-title">Likes & Views</h3>
    <p class="dark-feature-desc">Track reader engagement effortlessly with built-in likes and views counters. Understand which posts resonate most with your audience at a glance.</p>
</div>