/* Common CSS styles */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --primary-color: #083A5E;
    --secondary-color: #6A738B;
    --brand: #3F3EED;
    --white: #f2f2f2;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Space Grotesk", serif;
    color: var(--secondary-color);
}

img {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    display: inline-block;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* animated button */
.bubble_btn {
    position: relative;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: var(--brand);
    transition: all 0.2s ease;
}

.bubble_btn:active {
    transform: scale(0.96);
}

.bubble_btn:before,
.bubble_btn:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
}

.bubble_btn:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, var(--brand) 20%, transparent 30%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, var(--brand) 15%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
        10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
            40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
            50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
            50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.button:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, var(--brand) 15%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%),
        radial-gradient(circle, var(--brand) 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
            70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
            105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
            110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

/* ============== Main Menu Start ============== */
.main_menu {
    position: fixed;
    top: 20px;
    left: 50%;
    width: 90%;
    padding: 0 50px;
    z-index: 999;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background: rgba(52, 106, 241, 0.2);
    backdrop-filter: blur(10px);
}
.navbar-brand a{
    font-weight: 800;
    color: #fff;
    font-size: 25px;
}

.main_menu ul li a {
    font-size: 20px;
    font-weight: 600;
    color: #fff !important;
}

.main_menu .wrapper {
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .nav-links {
    display: inline-flex;
    gap: 30px;
    height: 100%;
    align-items: center;
}

.nav-links>li>a {
    line-height: 70px;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.mega-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 850px;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: var(--brand);
    padding: 25px 20px;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .mega_row {
    width: 100%;
    line-height: 45px;
    overflow: hidden;
}

.content .mega_row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}

.content .mega_row img:hover {
    transform: scale(1.1) rotate(4deg);
    -webkit-transform: scale(1.1) rotate(4deg);
    -moz-transform: scale(1.1) rotate(4deg);
    -ms-transform: scale(1.1) rotate(4deg);
    -o-transform: scale(1.1) rotate(4deg);
}

.content .mega_row h3 {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}

.content .mega_row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.mega_row .mega-links li {
    padding: 0 20px;
}

.mega_row .mega-links li a {
    padding: 0 20px;
    color: var(--white) !important;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.mega_row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 80%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: var(--brand);
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        z-index: 999;
    }

    .main_menu ul li a {
        line-height: 32px;
        font-size: 16px;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
        display: none;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }

    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 16px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
        line-height: 32px;
    }

    .nav-links .mobile-item:hover {
        background: #2727f0;
    }

    .mega-box {
        position: static;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        padding: 0 0 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 0;
        gap: 5px;
        padding-left: 20px;
        border-left: 1px solid var(--secondary-color);
    }
    .mega-box .content .mega_row{
     width: 100%;
    }
    .content .mega_row img {
        display: none;
    }

    .mega-box .content .mega_row:nth-child(1),
    .mega-box .content .mega_row:nth-child(2) {
        border-top: 0px;
    }

    .content .mega_row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .mega_row .mega-links li {
        margin: 0;
    }
    .content .mega_row h3 {
        font-size: 14px;
        padding-bottom: 0px;
    }
    .mega_row .mega-links li a {
        font-size: 12px;
        gap: 6px;
        line-height: 24px;
    }
}

.main_menu input {
    display: none;
}

/* ============== Main Menu End ============== */
/* ============== Banner Part Start ============== */
#banner {
    padding-top: 150px;
    position: relative;
    z-index: 1;
}

#banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMTkuNSIgbnVtT2N0YXZlcz0iMTAiIHJlc3VsdD0idHVyYnVsZW5jZSIvPjxmZUNvbXBvc2l0ZSBvcGVyYXRvcj0iaW4iIGluPSJ0dXJidWxlbmNlIiBpbjI9IlNvdXJjZUFscGhhIiByZXN1bHQ9ImNvbXBvc2l0ZSIvPjxmZUNvbG9yTWF0cml4IGluPSJjb21wb3NpdGUiIHR5cGU9Imx1bWluYW5jZVRvQWxwaGEiLz48ZmVCbGVuZCBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJjb21wb3NpdGUiIG1vZGU9ImNvbG9yLWJ1cm4iLz48L2ZpbHRlcj48L2RlZnM+PGcgZmlsdGVyPSJ1cmwoJyNhJykiPjxwYXRoIGZpbGw9IiMyNmIiIGQ9Ik0wIDBoMTAwdjEwMEgweiIvPjxwYXRoIGQ9Ik0wIDB2MTAwaDEwMFYwWiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiM0OGYiIGZpbGw9IiMwMDAwIi8+PHBhdGggZmlsbD0iIzQ4ZjUiIGQ9Ik01MCAwaDF2MTAwaC0xeiIvPjxwYXRoIGZpbGw9IiM0OGY1IiBkPSJNMCA1MGgxMDB2MUgweiIvPjwvZz48L3N2Zz4=");
    mask: linear-gradient(#0004, #000);
    z-index: -1;
}

.banner_title {
    font-size: 60px;
    color: var(--white);
    max-width: 740px;
    text-align: center;
    margin: auto;
}

.banner_title span {
    color: var(--brand);
}

.banner_text {
    max-width: 700px;
    color: var(--white);
    text-align: center;
    margin: auto;
    padding: 40px 0;
}

.banner_btn {
    display: flex;
    justify-content: center;
}

.banner_lptp {
    max-width: 1000px;
    margin: auto;
    transform: translateY(100px);
    position: relative;
}

.video-play-button {
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--brand);
    font-size: 20px;
    color: var(--white);
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 55px;
    height: 55px;
    background: var(--brand);
    border-radius: 50%;
    animation: pulse-border 1100ms ease-out infinite;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.banner_jumpAnim .jump_item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(217, 217, 217, 0.06);
    border: 1px solid rgba(240, 240, 245, 0.2);
    color: var(--white);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    max-width: max-content;
    position: absolute;
    border-radius: 40px;
    z-index: 99;
}

.banner_jumpAnim .jump_item .icon {
    font-size: 26px;
}

.banner_jumpAnim .jump_item.jump-1 {
    left: 8%;
    top: 20%;
    animation: jump-1 10s linear infinite;
    -webkit-animation: jump-1 10s linear infinite;
}

.banner_jumpAnim .jump_item.jump-2 {
    right: 8%;
    top: 22%;
    animation: jump-2 10s linear infinite;
    -webkit-animation: jump-2 10s linear infinite;
}

.banner_jumpAnim .jump_item.jump-3 {
    right: 12%;
    top: 35%;
    animation: jump-3 10s linear infinite;
    -webkit-animation: jump-3 10s linear infinite;
}

.banner_jumpAnim .jump_item.jump-4 {
    left: 10%;
    top: 40%;
    animation: jump-4 10s linear infinite;
    -webkit-animation: jump-4 10s linear infinite;
}

@keyframes jump-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jump-2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jump-3 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(0, 50px, 0) scale(0.7);
        transform: translate3d(0, 50px, 0) scale(0.7);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jump-4 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(0, 20px, 0) scale(0.8);
        transform: translate3d(0, 20px, 0) scale(0.8);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* ============== Banner Part End ============== */
/* ============== Why Choose Us Start ============== */
#why_choose_us {
    padding: 150px 0 100px;
    background-color: #215390;
}

.why_choose_shadow_text {
    color: var(--white);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 6vw;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #DFC5FF 0%, rgba(230, 208, 255, 0.0) 85.52%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chooseUs_heading h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--white);
}

.single-tools-feature {
    text-align: center;
    backdrop-filter: blur(5px);
    height: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.053);
    border-radius: 10px;
    transition: 0.3s;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    cursor: pointer;
}

.single-tools-feature:hover {
    border-color: var(--white);
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

.single-tools-feature .icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--white);
}

.single-tools-feature .title {
    margin-bottom: 20px;
    color: var(--white);
}

.single-tools-feature p.disc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 33px;
    color: var(--white);
}

.single-tools-feature .bubble_btn {
    font-size: 12px;
}

/* ============== Why Choose Us End ============== */
/* ============== Features Part Start ============== */
#features {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 9;
    background-color: #353232;
}

.featuers_heading {
    padding-bottom: 60px;
    cursor: pointer;
    margin: auto;
    width: fit-content;
}

.featuers_heading span {
    font-size: 8vw;
    font-weight: 700;
    text-transform: capitalize;
    -webkit-text-stroke: 1px #939393;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background: none;
    transition: all 0.3s ease;
    line-height: 1;

}

.featuers_heading div {
    display: flex;

}

.featuers_heading span:hover {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.featuers_heading_des {
    width: 200px;
    font-size: 14px;
    color: var(--white);
    padding-top: 10px;
}

/* Slider CSS logic */
.slider {
    --totSlides: 7;
    --slideWidth: 200px;
    --slideHeight: 100px;
    --animationSpeed: calc(2s * var(--totSlides));
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    margin: auto;
    overflow: hidden;
    width: 100%;
}

.slider.revarse {
    transform: rotate(-2deg);
}

.slider.revarse-2 {
    transform: rotate(2deg);
}

.slider.forward {
    transform: rotate(-2deg);
    z-index: -1;
}

.slider .slides-track {
    display: flex;
    width: calc(var(--slideWidth) * var(--totSlides) * 2);
}

.slider.revarse-2 .slides-track {
    animation: scroll-reverse var(--animationSpeed) linear infinite;
}

.slider.revarse .slides-track {
    animation: scroll-reverse var(--animationSpeed) linear infinite;
}

.slider.forward .slides-track {
    animation: scroll-forward var(--animationSpeed) linear infinite;
}

.other-feature-item {
    height: 80px;
    width: var(--slideWidth);
    display: inline-flex;
    padding: 0 25px;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    border-radius: 4px;
    background: #2C2C2C;
    color: var(--white);
}

@keyframes scroll-forward {
    0% {
        transform: translateX(calc(-1 * var(--slideWidth) * var(--totSlides)));
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(var(--slideWidth) * var(--totSlides) * -1));
    }
}

/* ============== Features Part End ============== */
/* ============== Testimonial Part Start ============== */
#testimonial {
    padding: 100px 0;
}

.testimonial_heading {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial_heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial_heading p {
    font-size: 16px;
    color: #6A738B;
    font-weight: 400;
}

.testimonial-carousel {
    --totTestimonials: 10;
    --testimonialWidth: 350px;
    --testimonialHeight: 250px;
    --animationSpeed: calc(30s);
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    width: calc(var(--testimonialWidth) * var(--totTestimonials) * 2);
    animation: testimonial-scroll var(--animationSpeed) linear infinite;
    gap: 30px;
}

.test_slider {
    display: flex;
    gap: 20px;
}

.testimonial-item {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(27, 42, 82, 0.07);
    padding: 35px 30px 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: var(--testimonialWidth);
    min-height: var(--testimonialHeight);
    flex-shrink: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.testimonial-item:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.testimonial-icon {
    position: absolute;
    right: 30px;
    top: 35px;
}

.testimonial-head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 13px;
}

.testimonial-head-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-head-info h6 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.testimonial-head-info span {
    color: #6A738B;
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 22px;
}

.testimonial-rating {
    list-style: none;
    display: flex;
    gap: 5px;
    margin-bottom: 17px;
}

.testimonial-rating li {
    font-size: 14px;
    color: #F59E0B;
}

.testimonial-item p {
    color: #6A738B;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 0;
}

@keyframes testimonial-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(var(--testimonialWidth) * var(--totTestimonials) * -1 - 30px * var(--totTestimonials)));
    }
}

/* Pause animation on hover */
.testimonial-carousel:hover .testimonial-track {
    animation-play-state: paused;
}

/* ============== Testimonial Part End ============== */
/* ============== Pricing Part Start ============== */
#pricing {
    padding: 100px 0;
    background: rgb(2, 0, 36);
    background: linear-gradient(280deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

.pricing_heading h2 {
    max-width: 480px;
    text-align: center;
    margin: auto;
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
}

.pricing_body .price_model {
    width: fit-content;
    position: relative;
}

.pricing_body .price_model .offer {
    position: absolute;
    top: -40px;
    right: -90px;
}

.pricing_body .price_model ul {
    border-radius: 50px;
    background: var(--white);
    padding: 5px;
}

.pricing_body .price_model .nav-item .nav-link {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    padding: 9px 35px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.pricing_body .price_model .nav-item .nav-link.active {
    border-radius: 50px;
    background: var(--brand);
    color: #fff;
}

.price_card {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    background-color: rgba(0, 0, 0, 1);
    padding: 1.5rem;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}

.price_card .price {
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    color: var(--white);
}

.price_card .lists {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--white);
}

.price_card .list {
    display: flex;
    align-items: center;
}

.price_card .list svg {
    height: 1rem;
    width: 1rem;
}

.price_card .list span {
    margin-left: 1rem;
}

.price_card .action {
    margin-top: 2rem;
    width: 100%;
    border: 2px solid var(--white);
    border-radius: 9999px;
    background-color: var(--white);
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 1);
    outline: none;
    text-decoration: none;
    transition: all .2s ease;
}

.price_card .action:hover {
    color: var(--white);
    background-color: transparent;
}

/* ============== Pricing Part End ============== */
/* ============== Faq Part Start ============== */
#faq{
    padding: 100px 0;
}
.faq_heading h2{
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}


.accordion-area-one .accordion .accordion-item {
    background: #fff;
    border: 1px solid #E6E5FF;
    border-radius: 10px;
    padding: 0 10px;
    margin-bottom: 20px;
}
.accordion-area-one .accordion .accordion-item button {
    font-weight: 600;
    padding: 14px 15px;
    font-size: 18px;
    line-height: 36px;
    border: none;
    box-shadow: none;
    background: transparent;
    color: #083A5E;
    text-transform: capitalize;
}
.accordion-area-one .accordion .accordion-item button::after {
    background-image: none;
    content: "+";
    transform: none;
    margin-top: -20px;
}
.accordion-area-one .accordion .accordion-item button[aria-expanded=true]::after {
    content: "-";
}
.accordion-area-one .accordion .accordion-item .accordion-body {
    padding: 0px 15px 20px 15px;
}
/* ============== Faq Part End ============== */
/* ============== Footer Part Start ============== */
#footer{
    background-color: var(--white);
}
/* ============== Footer Part End ============== */