@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Spartan:wght@100..900&display=swap);
@font-face {
    font-family: 'AgencyFb-bold';
    font-weight: 700;
    src: url(eaefe2f00eb5ad09946f.ttf) format('truetype');
}
:root {
    --outline-heading-font-size: 18rem;
    --heading-font-size: 7rem;
    --title-lg-font-size: 6rem;
    --title-md-font-size: 5rem;
    --medium-font-size: 3rem;
    --paragraph-font-size: 2rem;
    --feature-font-size: 2.6rem;
    --feature-md-font-size: 2.4rem;
    --title-font-size: 2.8rem;
    --sm-title-font-size: 1.8rem;
    --sm-font-size: 1.6rem;
    --sub-heading-font-size: 1.4rem;
    --btn-font-size: 1.2rem;
    --page-bg-color: #ecfcf2;
    --page-bg-color-2: #f2faf5;
    --primary-color: #3da764;
    --primary-color-2: #007aee;
    --primary-color-3: #e30613;
    --primary-color-4: #c97645;
    --primary-color-5: #21d081;
    --primary-color-6: #2ed2ee;
    --primary-color-7: #f79743;
    --primary-color-8: #ee5d04;
    --light-primary-color: #21ce60;
    --yellow-color: #deff00;
    --gradient-color-1: #3fa866;
    --gradient-color-2: #8fe1ae;
    --secondary-color: #102521;
    --secondary-color-2: #0b2136;
    --secondary-color-3: #191919;
    --paragraph-color: #526662;
    --paragraph-color-1: #6d7f7c;
    --paragraph-light-color: #a4b5ad;
    --paragraph-md-color: #718682;
    --primary-white: #ffffff;
    --bg-light: #ecfcf2;
    --bg-md-light: #d2f3de;
    --moving-text-color: #c4e2cf;
    --hero-bg-color: #13493f;
    --moving-text-color: #c4e2cf;
    --border-color: #ecf4ef;
    --border-color-1: #d6e7dc;
    --semi-black-color: #191919;
    --grey-color: #474747;
    --border-color: #ecf4ef;
    --transparent-primary-color: rgba(61, 167, 100, 0.6);
    --transparent-secondary-color: rgba(16, 37, 33, 0.04);
    --bg-semi-black-transparent: rgba(25, 25, 25, 0.6);
    --bg-black-transparent: rgba(0, 0, 0, 0.9);
    --primary-black: rgb(0, 0, 0);
    --jakarta-font-family: 'Plus Jakarta Sans', sans-serif;
    --spartan-font-family: 'Spartan', sans-serif;
    --slope-base-value: 1rem;
    --slope-value-3: calc(var(--slope-base-value) * 3);
    --slope-value-5: calc(var(--slope-base-value) * 5);
    --slope-clip-top-right-base: polygon(
        calc(100% - var(--slope-base-value)) 0,
        100% var(--slope-base-value),
        100% 100%,
        0 100%,
        0 0
    );
    --slope-clip-top-left-base: polygon(
        var(--slope-base-value) 0,
        100% 0,
        100% 100%,
        0 100%,
        0 var(--slope-base-value)
    );
    --slope-clip-bottom-left-base: polygon(
        100% 0,
        100% 100%,
        var(--slope-base-value) 100%,
        0 calc(100% - var(--slope-base-value)),
        0 0
    );
    --slope-clip-bottom-right-base: polygon(
        100% 0,
        100% calc(100% - var(--slope-base-value)),
        calc(100% - var(--slope-base-value)) 100%,
        0 100%,
        0 0
    );
    --slope-clip-top-right-3: polygon(
        calc(100% - var(--slope-value-3)) 0,
        100% var(--slope-value-3),
        100% 100%,
        0 100%,
        0 0
    );
    --slope-clip-top-left-3: polygon(var(--slope-value-3) 0, 100% 0, 100% 100%, 0 100%, 0 var(--slope-value-3));
    --slope-clip-bottom-left-3: polygon(
        100% 0,
        100% 100%,
        var(--slope-value-3) 100%,
        0 calc(100% - var(--slope-value-3)),
        0 0
    );
    --slope-clip-bottom-right-3: polygon(
        100% 0,
        100% calc(100% - var(--slope-value-3)),
        calc(100% - var(--slope-value-3)) 100%,
        0 100%,
        0 0
    );
    --slope-clip-top-right-5: polygon(
        calc(100% - var(--slope-value-5)) 0,
        100% var(--slope-value-5),
        100% 100%,
        0 100%,
        0 0
    );
    --slope-clip-top-left-5: polygon(var(--slope-value-5) 0, 100% 0, 100% 100%, 0 100%, 0 var(--slope-value-5));
    --slope-clip-bottom-left-5: polygon(
        100% 0,
        100% 100%,
        var(--slope-value-5) 100%,
        0 calc(100% - var(--slope-value-5)),
        0 0
    );
    --slope-clip-bottom-right-5: polygon(
        100% 0,
        100% calc(100% - var(--slope-value-5)),
        calc(100% - var(--slope-value-5)) 100%,
        0 100%,
        0 0
    );
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
    overflow-x: hidden;
}
@media (max-width: 1200px) {
    html {
        font-size: 56.25%;
    }
}
@media (max-width: 991px) {
    html {
        font-size: 50%;
    }
}
body {
    line-height: 1;
    overflow-x: hidden;
    background-color: var(--page-bg-color);
}
.container {
    max-width: 1375px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (max-width: 991px) {
    .container {
        padding: 0 2.5rem;
    }
}
.secondary-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (max-width: 1440px) {
    .secondary-container {
        padding: 0 2.5rem;
    }
}
@media (max-width: 991px) {
    .secondary-container {
        padding: 0 2.5rem;
    }
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background-color: var(--page-bg-color);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--primary-color);
}
.scrollToTopBtn {
    background: linear-gradient(-30deg, var(--gradient-color-2) 0%, var(--gradient-color-1) 100%);
    border: none;
    border-radius: 10px;
    fill: var(--secondary-color);
    cursor: pointer;
    height: 48px;
    width: 48px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
}
.scrollToTopBtn svg {
    height: 30px;
    width: 30px;
}
@media (max-width: 991px) {
    .scrollToTopBtn {
        height: 38px;
        width: 38px;
        bottom: 20px;
        right: 20px;
    }
    .scrollToTopBtn svg {
        height: 20px;
        width: 20px;
    }
}
.showBtn {
    opacity: 1;
    transform: translateY(0);
}
@keyframes customFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.custom-fadeInUp {
    animation-name: customFadeInUp;
}
@media (max-width: 991px) {
    .mobile-hidden {
        display: none;
    }
}
.btn,
.btn:link,
.btn:visited {
    position: relative;
    display: inline-block;
    font-family: var(--jakarta-font-family);
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    padding: 2.5rem 4rem;
    letter-spacing: 2px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    transform: translateZ(0);
    --primary-background-color: var(--primary-color);
    --light-primary-background-color: var(--light-primary-color);
    --primary-text-color: var(--primary-white);
    --primary-background-hover-color: var(--primary-white);
    --primary-text-hover-color: var(--primary-color);
    --secondary-background-color: var(--primary-white);
    --secondary-text-color: var(--primary-color);
    --secondary-background-hover-color: var(--primary-color);
    --secondary-text-hover-color: var(--primary-white);
}
.btn svg,
.btn:link svg,
.btn:visited svg {
    height: 12px;
    width: auto;
    transition: all 0.3s ease-in-out;
}
.btn::before,
.btn:link::before,
.btn:visited::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -200%;
    left: 50%;
    transform: translateX(-50%);
    transition-duration: 800ms;
    border-radius: 50%;
    z-index: 1;
}
.btn .text-one,
.btn:link .text-one,
.btn:visited .text-one {
    transition: all 0.3s ease;
    z-index: 2;
    font-size: var(--btn-font-size);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.btn .text-two,
.btn:link .text-two,
.btn:visited .text-two {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 150%);
    font-size: var(--btn-font-size);
    font-weight: 800;
    z-index: 2;
    transition: all 0.5s ease;
}
.btn:hover::before,
.btn:link:hover::before,
.btn:visited:hover::before {
    top: 0;
    top: -40%;
}
.btn:hover .text-one,
.btn:link:hover .text-one,
.btn:visited:hover .text-one {
    transform: translateY(-150%);
}
.btn:hover .text-two,
.btn:link:hover .text-two,
.btn:visited:hover .text-two {
    transform: translate(-50%, -50%);
}
.primary {
    background-color: var(--primary-background-color);
}
.primary::before {
    background: var(--primary-background-hover-color);
}
.primary .text-one {
    color: var(--primary-text-color);
}
.primary .text-one svg {
    fill: var(--primary-text-color);
}
.primary .text-two {
    color: var(--primary-text-hover-color);
}
.primary .text-two svg {
    fill: var(--primary-text-hover-color);
}
.secondary {
    background-color: var(--secondary-background-color);
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
}
.secondary::before {
    background: var(--secondary-background-hover-color);
}
.secondary .text-one {
    color: var(--secondary-text-color);
}
.secondary .text-one svg {
    fill: var(--secondary-text-color);
}
.secondary .text-two {
    color: var(--secondary-text-hover-color);
}
.secondary .text-two svg {
    fill: var(--secondary-text-hover-color);
}
.tertiary {
    background-color: var(--secondary-background-color);
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
}
.tertiary::before {
    background: var(--primary-color-2);
}
.tertiary .text-one {
    color: var(--secondary-color-2);
}
.tertiary .text-one svg {
    fill: var(--primary-color-2);
}
.tertiary .text-two {
    color: var(--secondary-text-hover-color);
}
.tertiary .text-two svg {
    fill: var(--secondary-text-hover-color);
}
.alert {
    background-color: var(--secondary-background-color);
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
}
.alert::before {
    background: var(--primary-color-3);
}
.alert .text-one {
    color: var(--secondary-color-3);
}
.alert .text-one svg {
    fill: var(--primary-color-3);
}
.alert .text-two {
    color: var(--secondary-text-hover-color);
}
.alert .text-two svg {
    fill: var(--secondary-text-hover-color);
}
.alternate {
    background-color: var(--secondary-background-color);
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
}
.alternate::before {
    background: var(--primary-color-4);
}
.alternate .text-one {
    color: var(--secondary-color-3);
}
.alternate .text-one svg {
    fill: var(--primary-color-4);
}
.alternate .text-two {
    color: var(--secondary-text-hover-color);
}
.alternate .text-two svg {
    fill: var(--secondary-text-hover-color);
}
.mint {
    background-color: var(--secondary-background-color);
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
}
.mint::before {
    background: var(--primary-color-5);
}
.mint .text-one {
    color: var(--secondary-color-3);
}
.mint .text-one svg {
    fill: var(--primary-color-5);
}
.mint .text-two {
    color: var(--secondary-text-hover-color);
}
.mint .text-two svg {
    fill: var(--secondary-text-hover-color);
}
.sky-blue {
    background-color: var(--secondary-background-color);
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
}
.sky-blue::before {
    background: var(--primary-color-6);
}
.sky-blue .text-one {
    color: var(--secondary-color-3);
}
.sky-blue .text-one svg {
    fill: var(--primary-color-6);
}
.sky-blue .text-two {
    color: var(--secondary-text-hover-color);
}
.sky-blue .text-two svg {
    fill: var(--secondary-text-hover-color);
}
.light-orange {
    background-color: var(--secondary-background-color);
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
}
.light-orange::before {
    background: var(--primary-color-7);
}
.light-orange .text-one {
    color: var(--secondary-color-3);
}
.light-orange .text-one svg {
    fill: var(--primary-color-7);
}
.light-orange .text-two {
    color: var(--secondary-text-hover-color);
}
.light-orange .text-two svg {
    fill: var(--secondary-text-hover-color);
}
.orange-btn {
    background-color: var(--secondary-background-color);
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
}
.orange-btn::before {
    background: var(--primary-color-8);
}
.orange-btn .text-one {
    color: var(--secondary-color-3);
}
.orange-btn .text-one svg {
    fill: var(--primary-color-8);
}
.orange-btn .text-two {
    color: var(--secondary-text-hover-color);
}
.orange-btn .text-two svg {
    fill: var(--secondary-text-hover-color);
}
.bordered {
    background-color: rgba(0, 0, 0, 0);
    outline: 2px solid var(--primary-color);
    text-transform: capitalize !important;
    padding: 2rem 3.5rem !important;
}
.bordered::before {
    background: rgba(0, 0, 0, 0);
}
.bordered .text-one {
    color: var(--primary-background-color);
    font-size: var(--sm-title-font-size) !important;
    font-weight: 600 !important;
}
.bordered .text-one svg {
    fill: var(--primary-background-color);
    height: 2rem !important;
}
.bordered .text-two {
    color: var(--primary-text-hover-color);
    font-size: var(--sm-title-font-size) !important;
    font-weight: 600 !important;
}
.bordered .text-two svg {
    fill: var(--primary-text-hover-color);
    height: 2rem !important;
}
.bordered:hover {
    outline-color: var(--primary-background-hover-color);
}
.btn.bordered .text-two {
    transform: translate(-50%, 285%);
}
.btn:hover.bordered .text-one {
    transform: translateY(-350%);
}
.gradient {
    background: linear-gradient(-30deg, var(--gradient-color-2) 0%, var(--gradient-color-1) 100%);
    box-shadow: 0px 4px 10px 0px rgba(61, 167, 100, 0.2);
}
.gradient::before {
    background: var(--primary-background-hover-color);
}
.gradient .text-one {
    color: var(--secondary-color);
}
.gradient .text-one svg {
    fill: var(--secondary-color);
}
.gradient .text-two {
    color: var(--primary-text-hover-color);
}
.gradient .text-two svg {
    fill: var(--primary-text-hover-color);
}
.btn.gradient .text-two {
    transform: translate(-50%, 285%);
}
.centered-btn {
    display: flex;
}
.main-heading {
    font-family: var(--jakarta-font-family);
    font-weight: 600;
    font-size: var(--heading-font-size);
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 5rem;
    letter-spacing: -1.4px;
}
@media (max-width: 991px) {
    .main-heading {
        font-size: 5rem;
        margin-bottom: 3rem;
        letter-spacing: 0;
    }
}
.sub-heading {
    font-size: var(--sub-heading-font-size);
    font-family: var(--jakarta-font-family);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1.6px;
    margin-bottom: 1rem;
}
.outline-heading {
    display: inline-block;
    font-size: var(--outline-heading-font-size);
    font-family: var(--jakarta-font-family);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--page-bg-color);
    text-shadow:
        -1px -1px 0 var(--moving-text-color),
        1px -1px 0 var(--moving-text-color),
        -1px 1px 0 var(--moving-text-color),
        1px 1px 0 var(--moving-text-color);
    margin-left: 5rem;
}
@media (max-width: 991px) {
    .outline-heading {
        font-size: 12rem;
    }
}
@media (max-width: 767px) {
    .outline-heading {
        font-size: 9rem;
    }
}
.text-container {
    white-space: nowrap;
    position: relative;
}
p {
    color: var(--paragraph-color);
    font-family: var(--jakarta-font-family);
    font-weight: 400;
    font-size: var(--paragraph-font-size);
    line-height: 34px;
}
.cta-section {
    background-image: url(75f34009371b1178f938.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 15rem;
}
@media (max-width: 991px) {
    .cta-section {
        padding-top: 10rem;
    }
}
@media (max-width: 767px) {
    .cta-section {
        padding-top: 5rem;
    }
}
.cta-section .main-heading {
    text-align: center;
    max-width: 910px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .main-heading span {
    color: var(--primary-color);
}
.cta-section .color-white {
    color: var(--primary-white) !important;
}
.cta-section .points-box {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 5rem;
}
.cta-section .points-box .check-points {
    margin-bottom: 1rem;
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}
.cta-section .points-box .check-points .icon {
    min-height: 2rem;
    fill: var(--primary-color);
}
.cta-section .points-box .check-points p {
    font-weight: 600;
    line-height: 38px;
    font-size: var(--sm-title-font-size);
}
.cta-section .btn-box {
    display: flex;
    justify-content: center;
}
.cta-section .btn-box .btn {
    margin-top: 4rem;
}
@media (max-width: 600px) {
    .cta-section .btn-box .btn {
        width: 100%;
    }
}
footer {
    padding: 5rem 0 10rem 0;
}
footer .copyright {
    font-family: var(--spartan-font-family);
    font-weight: 600;
    font-size: var(--sub-heading-font-size);
    color: var(--paragraph-color);
    text-align: center;
    letter-spacing: 2px;
}
.about-panel-section {
    padding: 15rem 0;
}
@media (max-width: 991px) {
    .about-panel-section {
        padding: 10rem 0;
    }
}
@media (max-width: 767px) {
    .about-panel-section {
        padding: 5rem 0;
    }
}
.about-panel-section .container {
    max-width: 1700px;
}
@media (min-width: 991px) and (max-width: 1440px) {
    .about-panel-section .container {
        padding: 0 2.5rem;
    }
}
.about-panel-section .about-panel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15rem;
}
@media (min-width: 991px) and (max-width: 1440px) {
    .about-panel-section .about-panel-wrapper {
        gap: 10rem;
    }
}
@media (max-width: 991px) {
    .about-panel-section .about-panel-wrapper {
        gap: 8rem;
    }
}
@media (max-width: 767px) {
    .about-panel-section .about-panel-wrapper {
        gap: 3rem;
    }
}
.about-panel-section .about-panel-wrapper .about-panel-block {
    display: grid;
    gap: 8rem;
}
@media (max-width: 991px) {
    .about-panel-section .about-panel-wrapper .about-panel-block {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .about-panel-section .about-panel-wrapper .about-panel-block {
        gap: 3rem;
    }
}
.about-panel-section .about-panel-wrapper .about-panel-block .text-box {
    align-self: center;
}
.about-panel-section .about-panel-wrapper .about-panel-block .text-box .main-heading {
    font-size: var(--title-md-font-size);
    margin-bottom: 3rem;
    line-height: 64px;
}
@media (max-width: 767px) {
    .about-panel-section .about-panel-wrapper .about-panel-block .text-box .main-heading {
        font-size: 4rem;
        line-height: 45px;
    }
}
.about-panel-section .about-panel-wrapper .about-panel-block .text-box .points-wrapper {
    display: flex;
    column-gap: 8rem;
    align-items: center;
    margin-top: 3rem;
}
@media (max-width: 767px) {
    .about-panel-section .about-panel-wrapper .about-panel-block .text-box .points-wrapper {
        flex-wrap: wrap;
    }
}
.about-panel-section .about-panel-wrapper .about-panel-block .text-box .points-wrapper .points-box {
    list-style: none;
}
.about-panel-section .about-panel-wrapper .about-panel-block .text-box .points-wrapper .points-box .check-points {
    margin-bottom: 1rem;
    align-items: baseline;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}
.about-panel-section .about-panel-wrapper .about-panel-block .text-box .points-wrapper .points-box .check-points .icon {
    min-height: 2rem;
    fill: var(--primary-color);
    transform: translateY(2px);
}
.about-panel-section .about-panel-wrapper .about-panel-block .text-box .points-wrapper .points-box .check-points p {
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 38px;
}
.about-panel-section .about-panel-wrapper .about-panel-block .text-box .btn {
    margin-top: 3rem;
}
@media (max-width: 767px) {
    .about-panel-section .about-panel-wrapper .about-panel-block .text-box .btn {
        width: 100%;
    }
}
.about-panel-section .about-panel-wrapper .about-panel-block .text-box.margin-left {
    margin-left: auto;
    max-width: 658px;
}
@media (max-width: 991px) {
    .about-panel-section .about-panel-wrapper .about-panel-block .text-box.margin-left {
        margin-left: 0;
        max-width: 100%;
    }
}
.about-panel-section .about-panel-wrapper .about-panel-block .image-box {
    position: relative;
    align-self: center;
}
@media (max-width: 991px) {
    .about-panel-section .about-panel-wrapper .about-panel-block .image-box {
        grid-row: 1;
    }
}
.about-panel-section .about-panel-wrapper .about-panel-block .image-box .image {
    width: 100%;
}
.about-panel-section .about-panel-wrapper .about-panel-block .image-box .price-tag {
    font-size: 4rem;
    font-family: 'AgencyFb-bold', sans-serif;
    font-weight: 700;
    background-color: var(--primary-color);
    border: 10px solid var(--page-bg-color);
    border-radius: 50%;
    position: absolute;
    top: -5rem;
    right: 5rem;
    color: var(--primary-white);
    height: 101px;
    width: 101px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px) {
    .about-panel-section .about-panel-wrapper .about-panel-block .image-box .price-tag {
        font-size: 3rem;
        border: 6px solid var(--page-bg-color);
        top: -3rem;
        right: 5rem;
        height: 75px;
        width: 75px;
    }
}
.about-panel-section .about-panel-wrapper .about-panel-block:nth-child(odd) {
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
    .about-panel-section .about-panel-wrapper .about-panel-block:nth-child(odd) {
        grid-template-columns: 1fr;
    }
}
.about-panel-section .about-panel-wrapper .about-panel-block:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}
@media (max-width: 991px) {
    .about-panel-section .about-panel-wrapper .about-panel-block:nth-child(even) {
        grid-template-columns: 1fr;
    }
}
.features-section {
    margin-top: 15rem;
}
.features-section .heading {
    text-align: center;
}
.features-section .features-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
@media (max-width: 767px) {
    .features-section .features-card-wrapper {
        grid-template-columns: 1fr;
    }
}
.features-section .features-card-wrapper .feature-card {
    text-decoration: none;
    position: relative;
    transition: all 0.25s ease;
    border-radius: 10px;
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
    background-color: var(--primary-white);
    padding: 5rem;
    overflow: hidden;
}
.features-section .features-card-wrapper .feature-card .icon-box {
    background-color: var(--primary-color);
    border-radius: 10px;
    width: 89px;
    height: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.25s ease;
}
@media (max-width: 992px) {
    .features-section .features-card-wrapper .feature-card .icon-box {
        height: 73px;
        width: 75px;
    }
}
.features-section .features-card-wrapper .feature-card .icon-box .feature-icon {
    height: 4rem;
    width: 4rem;
    fill: var(--primary-white);
}
.features-section .features-card-wrapper .feature-card .feature-title {
    font-family: var(--jakarta-font-family);
    font-weight: 600;
    font-size: var(--feature-font-size);
    color: var(--secondary-color);
    line-height: 34px;
}
@media (max-width: 767px) {
    .features-section .features-card-wrapper .feature-card .feature-title {
        max-width: 80%;
    }
}
.features-section .features-card-wrapper .feature-card .feature-description {
    max-width: 384px;
    margin-top: 3.4rem;
}
@media (max-width: 992px) {
    .features-section .features-card-wrapper .feature-card .feature-description {
        max-width: 400px;
    }
}
@media (max-width: 767px) {
    .features-section .features-card-wrapper .feature-card .feature-description {
        max-width: 400px;
    }
}
.features-section .features-card-wrapper .feature-card:hover .icon-box {
    background-color: var(--secondary-color);
}
.features-section .features-card-wrapper .feature-card:hover .icon-box .feature-icon {
    fill: var(--primary-white);
}
@media (max-width: 375px) {
    .features-section .features-card-wrapper .feature-card {
        padding: 3.4rem;
    }
    .features-section .features-card-wrapper .feature-card .icon-box {
        display: none;
    }
    .features-section .features-card-wrapper .feature-card .feature-title {
        max-width: 100%;
    }
    .features-section .features-card-wrapper .feature-card .feature-description {
        max-width: 100%;
    }
}
.features-section .features-box-wrapper {
    padding-bottom: 15rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}
@media (max-width: 1440px) {
    .features-section .features-box-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 991px) {
    .features-section .features-box-wrapper {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 10rem;
    }
}
@media (max-width: 767px) {
    .features-section .features-box-wrapper {
        grid-template-columns: 1fr;
        padding-bottom: 5rem;
    }
}
.features-section .features-box-wrapper .feature-box {
    text-decoration: none;
    position: relative;
    border-radius: 10px;
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
    background-color: var(--primary-white);
    padding: 5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
}
.features-section .features-box-wrapper .feature-box .icon-box .feature-icon {
    height: 8rem;
    width: 9rem;
}
.features-section .features-box-wrapper .feature-box .feature-title {
    font-family: var(--jakarta-font-family);
    font-weight: 600;
    font-size: var(--feature-font-size);
    color: var(--secondary-color);
    line-height: 34px;
    text-align: center;
}
.features-section .features-box-wrapper .feature-box .feature-description {
    text-align: center;
}
@media (max-width: 375px) {
    .features-section .features-box-wrapper .feature-box {
        padding: 3.4rem;
    }
}
.hero-section {
    background: radial-gradient(circle at center bottom, var(--primary-color) 10%, var(--hero-bg-color) 50%);
    padding-top: 17rem;
}
.hero-section .text-block {
    max-width: 790px;
    margin: 0 auto;
    padding-bottom: 8rem;
}
.hero-section .text-block .main-heading {
    color: var(--primary-white);
    font-size: 6rem;
    text-align: center;
}
@media (max-width: 600px) {
    .hero-section .text-block .main-heading {
        font-size: 4.8rem;
    }
}
.hero-section .text-block .btn-block {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.hero-section .text-block .btn-block .btn {
    text-transform: capitalize;
    letter-spacing: 1px;
}
.hero-section .text-block .btn-block .text-one {
    font-size: var(--sm-title-font-size);
    font-weight: 600;
}
.hero-section .text-block .btn-block .text-two {
    font-size: var(--sm-title-font-size);
    font-weight: 600;
}
@media (max-width: 767px) {
    .hero-section .text-block .btn-block {
        flex-wrap: wrap;
    }
    .hero-section .text-block .btn-block .btn {
        width: 100%;
    }
}
.hero-section .demos-potrait {
    display: flex;
    justify-content: center;
}
.hero-section .demos-potrait .demos-img {
    width: 80%;
}
.hero-section-2 {
    background: url(3901eb927e1c5dcf89c1.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    padding-top: 34rem;
}
@media (max-width: 991px) {
    .hero-section-2 {
        padding-top: 28rem;
    }
}
@media (max-width: 767px) {
    .hero-section-2 {
        background-position: 30% 100%;
    }
}
.hero-section-2 .secondary-container {
    max-width: 1794px;
}
.hero-section-2 .text-block {
    max-width: 640px;
    padding-bottom: 20rem;
}
@media (max-width: 991px) {
    .hero-section-2 .text-block {
        padding-bottom: 15rem;
    }
}
.hero-section-2 .text-block .main-heading {
    color: var(--primary-white);
    font-size: 8rem;
}
@media (max-width: 600px) {
    .hero-section-2 .text-block .main-heading {
        font-size: 4.8rem;
    }
}
.hero-section-2 .text-block .main-heading span {
    color: var(--primary-color);
    display: inline-block;
    transition: opacity 0.3s ease-in-out;
}
.hero-section-2 .text-block .main-heading .word-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 515px;
    height: 120px;
    vertical-align: top;
}
@media (max-width: 600px) {
    .hero-section-2 .text-block .main-heading .word-container {
        width: 260px;
        height: 100px;
    }
}
.hero-section-2 .text-block .main-heading .words {
    display: inline-block;
    position: absolute;
    clip-path: inset(0 100% 0 0);
    opacity: 1;
    height: 120px;
    white-space: nowrap;
}
.hero-section-2 .text-block .btn-block .btn {
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-section-2 .text-block .btn-block .btn svg,
.hero-section-2 .text-block .btn-block .btn:link svg,
.hero-section-2 .text-block .btn-block .btn:visited svg {
    height: 14px;
}
.hero-section-2 .text-block .btn-block .text-one {
    font-weight: 800;
}
.hero-section-2 .text-block .btn-block .text-two {
    font-weight: 800;
}
@media (max-width: 767px) {
    .hero-section-2 .text-block .btn-block .btn {
        width: 100%;
    }
}
.hero-section-2 .points-block {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 6rem;
    flex-wrap: wrap;
}
.hero-section-2 .points-block .points-card {
    padding: 2.4rem 4rem;
    border-radius: 10px;
    background-color: rgba(16, 37, 33, 0.702);
}
@media (max-width: 533px) {
    .hero-section-2 .points-block .points-card {
        width: 100%;
    }
}
.hero-section-2 .points-block .points-card .icon-box {
    display: flex;
    align-items: center;
    height: 34px;
}
.hero-section-2 .points-block .points-card .icon-box svg {
    fill: #ffde00;
    height: 2rem;
    width: 2rem;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}
.hero-section-2 .points-block .points-card .icon {
    height: 4rem;
}
.hero-section-2 .points-block .points-card h5 {
    color: var(--primary-white);
    font-family: var(--jakarta-font-family);
    font-weight: 600;
    font-size: 2rem;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    margin-top: 1rem;
}
.hero-feature-bar {
    background-color: var(--primary-color);
    padding: 2.8rem 0;
}
.hero-feature-bar .points-box {
    list-style: none;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-around;
}
@media (max-width: 991px) {
    .hero-feature-bar .points-box {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 460px) {
    .hero-feature-bar .points-box {
        grid-template-columns: 1fr;
    }
}
.hero-feature-bar .points-box .check-points {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    justify-self: center;
}
@media (max-width: 991px) {
    .hero-feature-bar .points-box .check-points {
        justify-self: start;
    }
}
@media (max-width: 460px) {
    .hero-feature-bar .points-box .check-points {
        justify-self: center;
    }
}
.hero-feature-bar .points-box .check-points .icon {
    min-height: 2.4rem;
    fill: var(--yellow-color);
}
.hero-feature-bar .points-box .check-points p {
    font-weight: 600;
    font-size: var(--sm-title-font-size);
    color: var(--primary-white);
}
.hero-feature-bar-2 {
    background: linear-gradient(-30deg, var(--gradient-color-2) 0%, var(--gradient-color-1) 100%);
    padding: 2.8rem 0;
}
.hero-feature-bar-2 .points-box {
    list-style: none;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-around;
}
@media (max-width: 991px) {
    .hero-feature-bar-2 .points-box {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 460px) {
    .hero-feature-bar-2 .points-box {
        grid-template-columns: 1fr;
    }
}
.hero-feature-bar-2 .points-box .check-points {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    justify-self: center;
}
@media (max-width: 991px) {
    .hero-feature-bar-2 .points-box .check-points {
        justify-self: start;
    }
}
.hero-feature-bar-2 .points-box .check-points .icon {
    min-height: 2.4rem;
    fill: #0f221e;
}
.hero-feature-bar-2 .points-box .check-points p {
    font-weight: 600;
    font-size: var(--sm-title-font-size);
    color: #0f221e;
}
.demos-section {
    padding: 15rem 0 0 0;
}
@media (max-width: 991px) {
    .demos-section {
        padding: 10rem 0 0 0;
    }
}
@media (max-width: 767px) {
    .demos-section {
        padding: 5rem 0 0 0;
    }
}
.demos-section .headings {
    text-align: center;
}
.demos-section .headings .gradient-text {
    font-family: var(--jakarta-font-family);
    font-size: 200px;
    font-weight: bold;
    background: linear-gradient(to bottom, var(--gradient-color-1), var(--gradient-color-2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    display: inline-block;
    margin-bottom: 4.5rem;
}
@media (max-width: 767px) {
    .demos-section .headings .gradient-text {
        font-size: 150px;
    }
}
.demos-section .btns-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3.5rem 0 5rem 0;
    flex-wrap: wrap;
}
.demos-section .btns-block .gradient-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--jakarta-font-family);
    font-size: var(--sm-title-font-size);
    font-weight: 600;
    color: var(--primary-color);
    padding: 2rem 4rem;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0);
    background:
        linear-gradient(var(--page-bg-color-2), var(--page-bg-color-2)) padding-box,
        linear-gradient(90deg, var(--gradient-color-1), var(--gradient-color-2)) border-box;
    transition: all 0.3s ease-in-out;
}
.demos-section .btns-block .gradient-box .icon svg {
    height: 2rem;
    fill: var(--primary-color);
}
.demos-section .demo-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 767px) {
    .demos-section .demo-cards-wrapper {
        grid-template-columns: 1fr;
    }
}
.demos-section .demo-cards-wrapper .card {
    background-color: var(--primary-white);
    overflow: hidden;
    position: relative;
    transition: background-color 0.9s ease-in-out;
    padding: 20px 20px 0 20px;
    box-shadow: 1px 1.732px 4px 0px var(--transparent-secondary-color);
    cursor: pointer;
    border-radius: 10px;
}
@media (max-width: 767px) {
    .demos-section .demo-cards-wrapper .card {
        padding: 16px 16px 0 16px;
    }
}
.demos-section .demo-cards-wrapper .card .image-container {
    overflow: hidden;
    position: relative;
}
.demos-section .demo-cards-wrapper .card .image-container .text {
    font-family: var(--jakarta-font-family);
    font-weight: 600;
    font-size: 8rem;
    color: var(--primary-color);
    background-color: var(--page-bg-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    object-fit: cover;
    height: 425px;
    transition:
        object-position 8s ease,
        transform 0.8s ease;
}
@media (max-width: 992px) {
    .demos-section .demo-cards-wrapper .card .image-container .text {
        height: 500px;
    }
}
@media (max-width: 767px) {
    .demos-section .demo-cards-wrapper .card .image-container .text {
        height: 400px;
    }
}
.demos-section .demo-cards-wrapper .card .scrollable-image {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 600px;
    transition:
        object-position 8s ease,
        transform 0.8s ease;
}
@media (max-width: 992px) {
    .demos-section .demo-cards-wrapper .card .scrollable-image {
        height: 500px;
    }
}
@media (max-width: 767px) {
    .demos-section .demo-cards-wrapper .card .scrollable-image {
        height: 400px;
    }
}
.demos-section .demo-cards-wrapper .card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(21, 21, 21, 0.4);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease-in-out,
        visibility 0.3s ease-in-out;
    z-index: 1;
}
.demos-section .demo-cards-wrapper .card .card-content::before {
    content: '';
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--primary-white), var(--primary-white), transparent);
    pointer-events: none;
    z-index: 1;
    margin: 0 2rem;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
    .demos-section .demo-cards-wrapper .card .card-content::before {
        bottom: 60px;
    }
}
.demos-section .demo-cards-wrapper .card .newly-launched {
    clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%, 0% 0%);
    background-color: #e13942;
    height: 4rem;
    width: 30rem;
    align-items: center;
    display: flex;
    justify-content: center;
    font-family: var(--jakarta-font-family);
    font-size: var(--sub-heading-font-size);
    color: var(--primary-white);
    font-weight: 700;
    position: absolute;
    z-index: 2;
    bottom: 9rem;
    left: 50%;
    transform: translate(-50%, 0px);
    letter-spacing: 1px;
}
.demos-section .demo-cards-wrapper .card .card-content {
    padding: 30px 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .card .card-content h2 {
    font-size: var(--paragraph-font-size);
    font-family: var(--spartan-font-family);
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .card .overlay-btn-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease-in-out,
        visibility 0.3s ease-in-out;
    z-index: 2;
}
.demos-section .demo-cards-wrapper .card .overlay-btn-container .btn {
    border-radius: 35px;
    box-shadow: 7.071px 7.071px 10px 0px rgba(0, 0, 0, 0.4);
    clip-path: none;
    transition: all 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .card .overlay-btn-container .btn .text-one {
    font-size: var(--sm-title-font-size);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0;
}
.demos-section .demo-cards-wrapper .card .overlay-btn-container .btn .text-two svg {
    height: 24px;
}
.demos-section .demo-cards-wrapper .card .overlay-btn-container .btn.secondary .text-one {
    color: var(--hero-bg-color);
}
.demos-section .demo-cards-wrapper .card:hover .overlay {
    opacity: 1;
    visibility: visible;
}
.demos-section .demo-cards-wrapper .card:hover .overlay-btn-container {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.demos-section .demo-cards-wrapper .green-card {
    background-color: var(--primary-white);
    transition: background-color 0.25s ease-in-out;
}
.demos-section .demo-cards-wrapper .green-card h2 {
    color: var(--primary-black);
    transition: color 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .green-card:hover {
    background-color: var(--primary-color);
}
.demos-section .demo-cards-wrapper .green-card:hover h2 {
    color: var(--primary-white);
}
.demos-section .demo-cards-wrapper .green-card:hover .scrollable-image {
    object-position: bottom;
}
.demos-section .demo-cards-wrapper .green-card:hover .card-content::before {
    background: linear-gradient(to top, var(--primary-color), var(--primary-color), transparent);
}
.demos-section .demo-cards-wrapper .blue-card {
    background-color: var(--primary-white);
    transition: all 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .blue-card h2 {
    color: var(--primary-black);
}
.demos-section .demo-cards-wrapper .blue-card:hover {
    background-color: var(--primary-color-2);
}
.demos-section .demo-cards-wrapper .blue-card:hover h2 {
    color: var(--primary-white);
}
.demos-section .demo-cards-wrapper .blue-card:hover .scrollable-image {
    object-position: bottom;
}
.demos-section .demo-cards-wrapper .blue-card:hover .card-content::before {
    background: linear-gradient(to top, var(--primary-color-2), var(--primary-color-2), transparent);
}
.demos-section .demo-cards-wrapper .red-card {
    background-color: var(--primary-white);
    transition: all 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .red-card h2 {
    color: var(--primary-black);
}
.demos-section .demo-cards-wrapper .red-card:hover {
    background-color: var(--primary-color-3);
}
.demos-section .demo-cards-wrapper .red-card:hover h2 {
    color: var(--primary-white);
}
.demos-section .demo-cards-wrapper .red-card:hover .scrollable-image {
    object-position: bottom;
}
.demos-section .demo-cards-wrapper .red-card:hover .card-content::before {
    background: linear-gradient(to top, var(--primary-color-3), var(--primary-color-3), transparent);
}
.demos-section .demo-cards-wrapper .rubin-card {
    background-color: var(--primary-white);
    transition: all 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .rubin-card h2 {
    color: var(--primary-black);
}
.demos-section .demo-cards-wrapper .rubin-card:hover {
    background-color: var(--primary-color-4);
}
.demos-section .demo-cards-wrapper .rubin-card:hover h2 {
    color: var(--primary-white);
}
.demos-section .demo-cards-wrapper .rubin-card:hover .scrollable-image {
    object-position: bottom;
}
.demos-section .demo-cards-wrapper .rubin-card:hover .card-content::before {
    background: linear-gradient(to top, var(--primary-color-4), var(--primary-color-4), transparent);
}
.demos-section .demo-cards-wrapper .mint-card {
    background-color: var(--primary-white);
    transition: all 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .mint-card h2 {
    color: var(--primary-black);
}
.demos-section .demo-cards-wrapper .mint-card:hover {
    background-color: var(--primary-color-5);
}
.demos-section .demo-cards-wrapper .mint-card:hover h2 {
    color: var(--primary-white);
}
.demos-section .demo-cards-wrapper .mint-card:hover .scrollable-image {
    object-position: bottom;
}
.demos-section .demo-cards-wrapper .mint-card:hover .card-content::before {
    background: linear-gradient(to top, var(--primary-color-5), var(--primary-color-5), transparent);
}
.demos-section .demo-cards-wrapper .light-blue-card {
    background-color: var(--primary-white);
    transition: all 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .light-blue-card h2 {
    color: var(--primary-black);
}
.demos-section .demo-cards-wrapper .light-blue-card:hover {
    background-color: var(--primary-color-6);
}
.demos-section .demo-cards-wrapper .light-blue-card:hover h2 {
    color: var(--primary-white);
}
.demos-section .demo-cards-wrapper .light-blue-card:hover .scrollable-image {
    object-position: bottom;
}
.demos-section .demo-cards-wrapper .light-blue-card:hover .card-content::before {
    background: linear-gradient(to top, var(--primary-color-6), var(--primary-color-6), transparent);
}
.demos-section .demo-cards-wrapper .light-orange-card {
    background-color: var(--primary-white);
    transition: all 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .light-orange-card h2 {
    color: var(--primary-black);
}
.demos-section .demo-cards-wrapper .light-orange-card:hover {
    background-color: var(--primary-color-7);
}
.demos-section .demo-cards-wrapper .light-orange-card:hover h2 {
    color: var(--primary-white);
}
.demos-section .demo-cards-wrapper .light-orange-card:hover .scrollable-image {
    object-position: bottom;
}
.demos-section .demo-cards-wrapper .light-orange-card:hover .card-content::before {
    background: linear-gradient(to top, var(--primary-color-7), var(--primary-color-7), transparent);
}
.demos-section .demo-cards-wrapper .orange-card {
    background-color: var(--primary-white);
    transition: all 0.3s ease-in-out;
}
.demos-section .demo-cards-wrapper .orange-card h2 {
    color: var(--primary-black);
}
.demos-section .demo-cards-wrapper .orange-card:hover {
    background-color: var(--primary-color-8);
}
.demos-section .demo-cards-wrapper .orange-card:hover h2 {
    color: var(--primary-white);
}
.demos-section .demo-cards-wrapper .orange-card:hover .scrollable-image {
    object-position: bottom;
}
.demos-section .demo-cards-wrapper .orange-card:hover .card-content::before {
    background: linear-gradient(to top, var(--primary-color-8), var(--primary-color-8), transparent);
}
.demos-section .demo-3-col-wrapper {
    grid-template-columns: 1fr 1fr 1fr !important;
}
@media (max-width: 991px) {
    .demos-section .demo-3-col-wrapper {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 767px) {
    .demos-section .demo-3-col-wrapper {
        grid-template-columns: 1fr !important;
    }
}
.demos-section .demo-3-col-wrapper .card .overlay-btn-container .btn {
    padding: 2rem 3.5rem;
}
.demos-section .demo-3-col-wrapper .card .scrollable-image {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 425px;
    transition:
        object-position 8s ease,
        transform 0.8s ease;
}
@media (max-width: 992px) {
    .demos-section .demo-3-col-wrapper .card .scrollable-image {
        height: 500px;
    }
}
@media (max-width: 767px) {
    .demos-section .demo-3-col-wrapper .card .scrollable-image {
        height: 400px;
    }
}
.header .secondary-container {
    max-width: 1794px;
}
.header .header-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 9rem;
}
.header .logo-block {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--jakarta-font-family);
    font-weight: 600;
    font-size: var(--feature-font-size);
    color: var(--primary-white);
}
.header .main-nav .nav-link-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4rem;
}
@media (max-width: 991px) {
    .header .main-nav .nav-link-list {
        gap: 2rem;
    }
}
.header .main-nav .nav-link:link,
.header .main-nav .nav-link:visited {
    text-decoration: none;
    font-size: var(--sm-title-font-size);
    font-family: var(--jakarta-font-family);
    font-weight: 600;
    color: var(--primary-white);
    transition: all 0.3s ease;
}
.header .main-nav .nav-link:link span,
.header .main-nav .nav-link:visited span {
    position: relative;
    width: max-content;
    line-height: 34px;
}
.header .main-nav .nav-link:link span::after,
.header .main-nav .nav-link:visited span::after {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--primary-white);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
}
.header .main-nav .nav-link:hover span::after,
.header .main-nav .nav-link:active span::after,
.header .main-nav .nav-link.active span::after {
    width: 100%;
    opacity: 1;
}
@media (max-width: 767px) {
    .header .main-nav {
        display: none;
    }
}
.header .btn-block .btn {
    text-transform: capitalize;
    letter-spacing: 0px;
    padding: 2rem 4rem;
}
.header .btn-block .btn .text-one {
    font-size: var(--sm-title-font-size);
    font-weight: 600;
}
.header .btn-block .btn .text-two {
    font-size: var(--sm-title-font-size);
    font-weight: 600;
}
@media (max-width: 767px) {
    .header .btn-block {
        display: none;
    }
}
.header.sticky-nav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.25s ease;
}
.header.scrolled {
    background-color: var(--primary-white);
}
.header.scrolled .logo-block {
    color: var(--secondary-color);
}
.header.scrolled .main-nav .nav-link:link,
.header.scrolled .main-nav .nav-link:visited {
    color: var(--secondary-color);
}
.header.scrolled .main-nav .nav-link:link span::after,
.header.scrolled .main-nav .nav-link:visited span::after {
    background-color: var(--secondary-color);
}
.header.scrolled .btn-block .btn.primary::before {
    background: var(--secondary-color);
}
.header.scrolled .btn-block .btn.primary .text-two {
    color: var(--primary-white);
}
.stats-section {
    background-image: url(75f34009371b1178f938.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15rem 0 0 0;
    position: relative;
}
@media (max-width: 991px) {
    .stats-section {
        padding: 10rem 0 0 0;
    }
}
@media (max-width: 767px) {
    .stats-section {
        padding: 5rem 0 0 0;
    }
}
.stats-section .secondary-container {
    position: relative;
}
.stats-section .secondary-container::before {
    content: '';
    background-color: #223f39;
    position: absolute;
    right: 3.4rem;
    top: -15rem;
    width: 150px;
    height: 410px;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 86%, 0% 100%);
}
@media (max-width: 1200px) {
    .stats-section .secondary-container::before {
        width: 115px;
        height: 350px;
    }
}
@media (max-width: 991px) {
    .stats-section .secondary-container::before {
        top: -10rem;
        width: 70px;
        height: 200px;
    }
}
@media (max-width: 767px) {
    .stats-section .secondary-container::before {
        top: -5rem;
    }
}
.stats-section .badge {
    position: absolute;
    right: 0;
    top: -5rem;
    z-index: 2;
}
.stats-section .badge img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .stats-section .badge img {
        height: 20rem;
        width: 20rem;
    }
}
@media (max-width: 991px) {
    .stats-section .badge img {
        height: 15rem;
        width: 15rem;
    }
}
@media (max-width: 767px) {
    .stats-section .badge {
        top: 0;
    }
}
.stats-section .stats-content .sub-heading {
    margin-bottom: 3.6rem;
}
.stats-section .stats-content .main-heading {
    font-size: var(--title-md-font-size);
    color: var(--primary-white);
    margin-bottom: 4rem;
}
.stats-section .stats-content p {
    color: var(--paragraph-color-1);
}
.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8rem;
}
@media (max-width: 991px) {
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
}
@media (max-width: 767px) {
    .stats-section .stats-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 4rem;
    }
}
.stats-section .stat-box {
    font-family: var(--jakarta-font-family);
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-right: 2px solid #223f39;
    padding-bottom: 15rem;
    width: 90%;
    padding-right: 5rem;
    justify-self: center;
    padding-bottom: 15rem;
}
@media (max-width: 1440px) {
    .stats-section .stat-box {
        padding: 0 2rem 10rem 2rem;
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .stats-section .stat-box {
        padding-bottom: 10rem;
    }
}
@media (max-width: 991px) {
    .stats-section .stat-box {
        padding: 2rem 4rem 10rem 4rem;
    }
}
@media (max-width: 767px) {
    .stats-section .stat-box {
        padding: 5rem 0rem 5rem 0rem;
        border-right: none;
    }
}
.stats-section .stat-box .stat-number {
    font-size: 100px;
    font-weight: bold;
    background: linear-gradient(to bottom, var(--gradient-color-1), var(--gradient-color-2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
    .stats-section .stat-box .stat-number {
        font-size: 60px;
    }
}
.stats-section .stat-box .stat-title {
    font-weight: 600;
    color: var(--primary-white);
    font-size: var(--feature-md-font-size);
    line-height: 30px;
}
.stats-section .stat-box .stat-text {
    color: var(--paragraph-color-1);
}
.stats-section .stat-box:last-child {
    border-right: none;
}
@media (max-width: 991px) {
    .stats-section .stat-box:nth-child(2) {
        border-right: none;
    }
    .stats-section .stat-box {
        border-bottom: 2px solid hsla(0, 0%, 100%, 0.2);
    }
}
