* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0C1E2B;
    --secondary: #FF0000;
}

body {
    font-family: "Lexend Deca", sans-serif;
}

.offer-container {
    margin: 0 50px;
}

.business-struggle-section .offer-p {
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary);
    max-width: 856px;
    margin: auto;
    margin-bottom: 30px;
}

@media(max-width:767px) {
    .offer-container {
        margin: 0 10px;
    }
}


.offer-header .top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.offer-header .top-bar .offer p {
    color: var(--secondary);
    font-weight: 600;
}

.offer-header .top-bar .offer p {
    font-weight: 300;
    margin: 0;
    font-size: 13px;
}

.offer-header .top-bar.fixed-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.offer-header .top-bar .phone {
    text-align: right;
    font-weight: 300;
    font-size: 13px;
    text-decoration: none !important;
    color: white !important;
}

.offer-header .top-bar .phone a {
    color: white !important;
    text-decoration: none !important;
}


.offer-header .navbar-nav {
    gap: 30px;
}

.offer-header .navbar-nav .nav-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 300;
    transition: .3s;
}

.offer-header .navbar-nav .nav-link.active {
    font-weight: 400;
}

.offer-header .navbar-nav .nav-link:hover {
    color: #0c7edb;
}


.offer-header .audit-btn,
.testimonial-card .audit-btn,
.offer-testimonial-section .audit-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    transition: .3s;
}

.audit-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    transition: .3s;
}

.offer-header .audit-btn:hover {
    background: #14465e;
    color: #fff;
}

.audit-btn:hover {
    background: #14465e;
    color: #fff;
}



@media (max-width:991px) {

    .offer-header .navbar-nav {
        gap: 10px;
        margin-top: 15px;
    }

    .offer-header .phone {
        text-align: center;
        margin-top: 5px;
    }

    .offer-header .audit-btn {
        display: inline-block;
        margin-top: 10px;
    }

}

@media(max-width:480px) {
    .offer-header .top-bar .offer p {
        font-size: 9px;
    }
}

section {
    padding: 30px 0;
}

.offer-banner svg {
    height: calc(100% + 20px);
    left: 50%;
    overflow: visible;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
}

.offer-banner svg path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: draw 15s ease infinite;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1500;
    }

    10% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.offer-banner h1 {
    font-size: 55px;
    max-width: 1099px;
    margin: auto;
    line-height: 80px;
    font-weight: 600;
}

.offer-banner .offer-des {
    color: var(--primary);
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    margin-top: 30px;
    border: 1px solid #CCCCCC;
    width: fit-content;
    margin: auto;
    padding: 6px 14px;
    border-radius: 22px;
    margin-bottom: 30px;
}

.offer-banner .offer-des-two {
    color: var(--primary);
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    margin-top: 31px;
    margin-bottom: 29px;
}

.offer-banner .offer-banner-card {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-bottom: 10px;
    flex-direction: column;
    max-width: 202px;
    /* margin: auto; */
    justify-content: center;
    align-items: center;
}

.offer-banner .offer-banner-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.offer-banner .offer-card-row {
    /* max-width: 843px; */
    margin: auto;
    margin-top: 10px;
}

.offer-banner-btn .chat-btn {
    text-decoration: none;
    color: var(--primary);
    border: 1px solid #CCCCCCCC;
    padding: 9px 20px;
    border-radius: 31px;
    font-size: 14px;
    font-weight: 300;
    transition: .3s;
}

.offer-banner-btn .audit-btn {
    text-decoration: none;
    color: white;
    border: 1px solid var(--primary);
    padding: 9px 20px;
    border-radius: 31px;
    font-size: 14px;
    font-weight: 300;
    transition: .3s;
    background-color: var(--primary);
}

.offer-banner-btn {
    margin-top: 25px;
}

.offer-banner-btn .audit-btn:hover,
.offer-banner-btn .chat-btn:hover {
    background: #14465e;
    color: #fff;
}

.offer-banner {
    min-height: calc(100vh - 106.5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media(max-width:1199px) {
    .offer-banner h1 {
        font-size: 47px;
        line-height: 75px;

    }
}

@media(max-width:991px) {
    .offer-banner h1 {
        font-size: 38px;
        line-height: 62px;
    }
}

@media(max-width:767px) {
    .offer-banner h1 {
        font-size: 26px;
        line-height: 48px;
    }
}

@media(max-width:575px) {
    .offer-banner h1 {
        font-size: 21px;
        line-height: 39px;
    }

    .offer-banner .offer-des {
        font-size: 16px;
    }

    .offer-banner-btn .chat-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    .offer-banner-btn .audit-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    .offer-banner {
        justify-content: start;
        padding-top: 0;
    }
}

@media(max-width:480px) {
    .offer-banner h1 {
        font-size: 19px;
        line-height: 31px;
    }

    .offer-banner .offer-des-two {
        font-size: 13px;
        margin-top: 18px;
    }

    .offer-banner .offer-des {
        font-size: 12px;
        margin-bottom: 15px;

    }

    .offer-banner-btn {
        margin-top: 0;
    }

    .offer-banner .offer-banner-card p {
        font-size: 12px;
        margin-bottom: 10px;
    }


}


.offer-h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--primary);
}

.offer-p {
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary);
}

@media(max-width:991px) {
    .offer-h2 {
        font-size: 30px;
    }
}

@media(max-width:767px) {
    .offer-h2 {
        font-size: 24px;
    }
}

@media(max-width:575px) {
    .offer-h2 {
        font-size: 22px;
    }

    .offer-p {
        font-size: 13px;
    }
}

@media(max-width:480px) {
    .offer-h2 {
        font-size: 19px;
    }
}

.offer-testimonial-section {
    padding: 30px 0;
}


.offer-testimonial-section .testimonial-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.offer-testimonial-section .testimonial-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 20px;
    max-height: 250px;
    max-width: 287px;
    margin-right: 21px;
}


.offer-testimonial-section .profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd8d8;
    padding-bottom: 15px;
}

.offer-testimonial-section .profile img {
    width: 77px !important;
    height: 64px;
    border-radius: 12px;
    margin-right: 0;
}

.offer-testimonial-section .testimonial-card h3 {
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    color: var(--primary);
}

.offer-testimonial-section .testimonial-card span {
    font-size: 12px;
    color: #0C1E2BB2;
    font-weight: 400;
}

/* text */

.offer-testimonial-section .testimonial-text {
    font-size: 13px;
    color: #0C1E2BB2;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    min-height: 62px;
}

/* bottom */

.offer-testimonial-section .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-testimonial-section .quote {
    font-size: 46px;
}

.offer-testimonial-section .stars {
    color: #f6b500;
}

/* video */

.offer-testimonial-section .video-card {
    padding: 0;
    overflow: hidden;
}

.offer-testimonial-section .video-thumbnail {
    position: relative;
    height: 100%;
    max-height: 250px;
}

.offer-testimonial-section .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-testimonial-section .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

.offer-testimonial-section .video-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

/* responsive */

@media(max-width:991px) {

    .offer-testimonial-section .testimonial-slide {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:575px) {

    .offer-testimonial-section .testimonial-slide {
        grid-template-columns: 1fr;
    }

}

.online-presence-section {
    padding: 30px 0;

}

.online-presence-section .box {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
}

.online-presence-section .heading-box h2 {
    font-size: 39px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.online-presence-section .heading-box p {
    font-size: 18px;
    color: var(--primary);
    line-height: 1.6;
}

.online-presence-section .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-height: 328px;
}

.online-presence-section .stat-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .3s;
}

.online-presence-section .stat-box .number {
    font-size: 67px;
    font-weight: 500;
    color: #0C1E2B33;
    margin-bottom: 10px;
}

.online-presence-section .stat-box p {
    font-size: 18px;
    color: var(--primary);
    margin: 0;
    font-weight: 400;
}

.online-presence-section .stat-box:hover {
    background: #08263a;
    color: #fff;
}

.online-presence-section .stat-box:hover .number {
    color: #fff;
}

.online-presence-section .stat-box:hover p {
    color: #fff;
}


/* Responsive */

@media (max-width:992px) {

    .online-presence-section .heading-box h2 {
        font-size: 28px;
    }

    .online-presence-section .stat-box .number {
        font-size: 48px;
    }

}

@media(max-width:575px) {
    .online-presence-section .heading-box p {
        font-size: 15px;
    }

    .online-presence-section .box {
        padding: 20px;
    }
}

.business-struggle-section {
    padding: 30px 0;
}

.business-struggle-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.business-struggle-section .section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1e2c36;
    margin-bottom: 15px;
}

.business-struggle-section .section-title p {
    color: #6c757d;
    font-size: 16px;
    max-width: 720px;
    margin: auto;
    line-height: 1.7;
}

.business-struggle-section .section-title strong {
    color: #1e2c36;
}

.business-struggle-section .illustration img {
    width: 100%;
    max-width: 520px;
}

.business-struggle-section .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.business-struggle-section .icon-box {
    width: 55px;
    height: 55px;
    background: #0c2433;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.business-struggle-section .feature-content h3 {
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 18px;
}

.business-struggle-section .feature-content p {
    margin: 0;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
}


/* Responsive */

@media (max-width:992px) {

    .business-struggle-section .illustration {
        text-align: center;
        margin-bottom: 40px;
    }

}

@media (max-width:576px) {

    .business-struggle-section .feature-box {
        gap: 15px;
    }

    .business-struggle-section .icon-box {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

}

.plan-section {
    padding: 30px 0;
}

.plan-section .plan-card {
    background: #F7F7F7;
    border-radius: 10px;
    padding: 45px 25px 30px;
    text-align: center;
    border: 1px solid #CCCCCC;
    position: relative;
    transition: 0.3s;
    height: 100%;
}

.plan-section .plan-card .icon-box {
    width: 60px;
    height: 60px;
    background: #F7F7F7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #CCCCCC;
    transition: .3s;
}

.plan-section .plan-card .icon-box img {
    width: 30px;
}

.plan-section .plan-card h3 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 20px;
    color: var(--primary);
}

.plan-section .plan-card p {
    font-size: 14px;
    color: var(--primary);
    margin: 0;
    font-weight: 300;
}


.plan-section .plan-card:hover {
    background: #0b2239;
    transform: translateY(-6px);
}

.plan-section .plan-card:hover .icon-box {
    background: #0b2239;
}

.plan-section .plan-card:hover h3,
.plan-section .plan-card:hover p {
    color: #fff;
}

@media (max-width:991px) {

    .plan-section .plan-card {
        margin-bottom: 40px;
    }

}

.services-section {
    padding: 30px 0;
}

.services-section .service-box {
    background: #cccccc26;
    border-radius: 16px;
    padding: 35px;
}

.services-section .service-tab {
    border: 1px solid #CCCCCC66;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    background: transparent;
    color: #0C1E2BB2;
    font-weight: 400;
}

.services-section .service-tab.active {
    font-weight: 500;
    color: var(--primary);
}

.services-section .service-tab:hover {
    background: #f5f5f5;
}

.services-section .service-tab span {
    font-size: 18px;
}

.services-section .service-content h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.services-section .check-list {
    list-style: none;
    padding: 0;
}

.services-section .check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 400;
}

.services-section .check-list p {
    color: var(--primary);
}

.services-section .check-icon {
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section .platform-list {
    list-style: none;
    padding: 0;
}

.services-section .platform-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-section .tab-pane {
    display: none;
}

.services-section .tab-pane.active {
    display: block;
}

@media (max-width:768px) {

    .services-section .service-tab span {
        font-size: 16px;
    }

    .services-section .service-box {
        padding: 25px;
    }

}

.special-choose {
    border: 1px solid #CCCCCC66;
    border-radius: 20px;
    padding: 30px 30px 0 30px;
    margin: 30px 0;
}

.new-home-impact {
    padding: 30px 0;
    display: none;
}

.new-home-impact .nav-link .white-img {
    display: none;
}

.new-home-impact .nav-link.active .white-img {
    display: block;
    height: 28px;
    width: 28px;
}

.new-home-impact .nav-link.active .grey-img {
    display: none;

}

.new-home-impact .nav-link .grey-img {
    height: 28px;
    width: 28px;
}




.new-home-impact .nav-link.active {
    border: none;
    background-color: var(--primary);
    border-radius: 7px;
}

.new-home-impact .nav-tabs {
    border: 1px solid #9CA3AF !important;
    width: fit-content;
    margin: auto;
    padding: 9px;
    border-radius: 10px;
}

.new-home-impact .nav-tabs .nav-link:focus,
.new-home-impact .nav-tabs .nav-link:hover {
    border: 1px solid transparent !important;
    color: transparent !important;
}

.new-home-impact .new-home-impact-bg {
    position: relative;
    max-width: 1218px;
    margin: auto;
}

.new-home-impact .home-impact-top .case {
    border: 1px solid #FFFFFF;
    width: fit-content;
    margin: auto;
    padding: 3px 10px;
    background: transparent;
    border-radius: 5px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
}


.new-home-impact .grocery-content {
    position: relative;
    left: 27px;
    margin-top: 63px;
}

.new-home-impact .grocery-content .img-one img {
    max-height: 541px;
}

.new-home-impact .grocery-content .img-two {
    position: absolute;
    left: 57px;
    /* right: 0; */
    /* margin: auto; */
    /* display: flex
; */
    top: 14px;
    z-index: 3;
    /* bottom: 0; */
    /* margin: auto; */
}

.new-home-impact .grocery-content .img-two img {
    max-height: 511px;
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
}

.new-home-impact .grocery-content .grocery-right {
    background: #00385466;
    position: relative;
    left: -98px;
    z-index: 1;
    color: white;
    padding: 35px 30px 35px 115px;
    backdrop-filter: blur(43px);
    border-radius: 25px;
}

.new-home-impact .grocery-content .grocery-right p {
    color: #FFFFFFB2;
    font-size: 15px;
    font-weight: 300;
}

.new-home-impact .grocery-content .grocery-ul h3 {
    color: #FFFFFF !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    margin-top: 0;
}

.new-home-impact .grocery-content .grocery-ul {
    background: #3C356375;
    padding: 6px 10px;
    border-radius: 7px;
}

.new-home-impact .grocery-content .grocery-ul li {
    list-style: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    padding: 0 15px;
    margin-top: 14px;
}

.new-home-impact .grocery-content .grocery-ul ul {
    /* gap: 20px; */
    flex-wrap: wrap;
    margin: 0;
}

.new-home-impact .grocery-content .grocery-btn {
    display: flex;
    margin-top: 20px;
    gap: 18px;
}

.new-home-impact .grocery-content .grocery-btn .btn {
    cursor: pointer;
}

.new-home-impact .grocery-content .grocery-btn .get-one {
    background: var(--primary);
    color: white;
    font-size: 13px;
}

.new-home-impact .grocery-content .grocery-btn .play-one {
    border: 1px solid #BCBCC5;
    color: white;
    font-size: 13px;
}

.new-home-impact .grocery-content .grocery-btn .read-one {
    color: white;
    font-size: 13px;
}

.new-home-impact .grocery-content .grocery-ul li+li {
    border-left: 1px solid #9CA3AF;
}

.new-home-impact-bg .wts-app {
    z-index: 99999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    right: 15px;
    gap: 21px;
    top: 57px;
}

.new-home-impact-bg .wts-app img {
    width: 60px;
}

.new-home-impact .grocery-right-mob {
    display: none;
}

@media(max-width:1599.98px) {
    .new-home-impact .grocery-content .grocery-right {
        left: -117px;
    }

}

@media(max-width:1399.98px) {
    .new-home-impact .grocery-content .grocery-right {
        left: -150px;
    }

}

@media (max-width: 1284.98px) {
    .new-home-impact .grocery-content .grocery-right {
        left: -128px;
    }
}

@media(max-width:1199px) {
    .new-home-impact .grocery-content .grocery-right h3 {
        font-size: 22px;
    }

    .new-home-impact .grocery-content .grocery-right p {
        font-size: 13px;
    }

    .new-home-impact .grocery-content .grocery-ul h3 {
        font-size: 19px !important;
    }

    .new-home-impact .grocery-content .grocery-ul li {
        font-size: 11px;
    }

    .new-home-impact .grocery-content .grocery-right {
        padding: 22px 30px 22px 115px;
    }
}

@media(max-width:991px) {

    .new-home-impact .grocery-content {
        position: static;
        margin-top: 30px;
    }

    .new-home-impact .grocery-content .img-two {
        position: static;
    }

    .new-home-impact .grocery-content .grocery-right {
        background: #00385466;
        position: static;
    }

    .new-home-impact .grocery-content .grocery-right {
        padding: 20px;
    }

    .new-home-impact .nav-link .grey-img {
        height: 29px;
        width: 29px;
    }

    .new-home-impact .nav-link.active .white-img {
        display: block;
        width: 30px;
        height: 30px;
    }


    .img-two-col {
        display: none;
    }

    .grocery-content .img-one {
        display: none;
    }
}

@media (max-width: 768px) {
    .new-home-impact .grocery-content .grocery-right h3 {
        color: white;
        margin-top: 0;
        font-weight: 400;
    }

    .new-home-impact .grocery-content .grocery-ul li+li {
        border-left: none;
    }

    .new-home-impact .grocery-content .grocery-right h4 {
        font-size: 20px;
        font-weight: 400;
    }

    .new-home-impact .grocery-right-mob {
        display: none;
    }

    .new-home-impact .new-vision-ul {
        align-items: center;
    }

    .new-home-impact .nav-link.active {
        padding: 4px 10px;
    }

    .new-home-impact .nav-link {
        padding: 4px 9px;
    }

    .new-home-impact .nav-link .grey-img {
        height: 24px;
        width: 24px;
    }

    .new-home-impact .nav-link.active .white-img {
        display: block;
        width: 27px;
        height: 27px;
    }
}

@media(max-width:575px) {
    .new-home-impact .grocery-content .grocery-ul li {
        margin-top: 11px;
    }

    .new-home-impact .grocery-right {
        display: none;
    }

    .new-home-impact .grocery-right-mob {
        display: block;
    }

    .new-home-impact .wts-app {
        display: none;
    }


    .new-home-impact .new-home-impact-bg {
        position: relative;
        border-radius: 8px;
        padding: 10px;
    }
}

@media(max-width:480px) {
    .new-home-impact .grocery-content .grocery-ul li {
        padding: 0 10px;
        margin-top: 5px;
    }

    .new-home-impact .grocery-content .grocery-btn .btn {
        cursor: pointer;
        padding: 4px 0;
    }

    .new-home-impact .grocery-content .grocery-right h3 {
        font-size: 19px;
    }

    .new-home-impact .grocery-content .grocery-right p {
        font-size: 12px;
    }

    .new-home-impact .grocery-content .grocery-right h4 {
        font-size: 16px;
    }

    .new-home-impact .nav-link.active {
        padding: 4px 6px;
    }

    .new-home-impact .nav-link.active .white-img {
        width: 20px;
        height: 20px;
    }

    .new-home-impact .nav-link .grey-img {
        height: 20px;
        width: 20px;
    }

    .new-home-impact .nav-link {
        padding: 4px 6px;
    }
}

.pricing-section .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-section .toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.pricing-section .discount {
    font-size: 14px;
    color: #888;
    margin-left: 5px;
}

.pricing-section .switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.pricing-section .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-section .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d1d5db;
    border-radius: 50px;
    transition: .3s;
}

.pricing-section .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: .3s;
}

.pricing-section .switch input:checked+.slider {
    background: #0d1b2a;
}

.pricing-section .switch input:checked+.slider:before {
    transform: translateX(22px);
}

.pricing-section {
    padding: 30px 0;
}

.pricing-section .pricing-card {
    background: #F9F9FB;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-section .popular-plan {
    background: var(--primary);
    color: white;
    padding: 0;
    overflow: hidden;
}

.pricing-section .popular-plan .popular-plan-p{
    padding: 20px;
}

.pricing-section .popular-div {
    background: #FFC23F;
    text-align: center;
    padding: 10px;
}

.pricing-section .popular-plan .old-price,
.pricing-section .popular-plan .per-month,
.pricing-section .popular-plan .plan-desc {
    color: #FFFFFFA6;
}

.pricing-section .popular-plan .feature-list li {
    color: white;
}

.pricing-section .popular-plan .pricing-btn {
    background: white;
    color: var(--primary);
}

.pricing-section .popular-plan .pricing-btn:hover {
    background: white;
    color: var(--primary);
}

.pricing-section .plan-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.pricing-section .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.pricing-section .old-price {
    text-decoration: line-through;
    color: #0c1e2b7d;
    font-size: 20px;
    transition: .3s;
}

.pricing-section .new-price {
    color: #FF0000;
    font-size: 35px;
    font-weight: 600;
}

.pricing-section .per-month {
    font-size: 14px;
    color: #0c1e2b7a;
    transition: .3s;
}

.pricing-section .divider {
    height: 1px;
    background: #D6D6D6;
    margin: 15px 0 20px;
}

.pricing-section .plan-desc {
    font-size: 15px;
    color: #0C1E2BB2;
    margin-bottom: 0;
    font-weight: 400;
    transition: .3s;
    font-style: italic;
}

.pricing-section .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-section .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--primary);
    transition: .3s;
}

.pricing-section .check {
    font-size: 14px;
    color: #0d1b2a;
    margin-top: 2px;
}

.pricing-section .popular-plan .check {
    font-size: 14px;
    color: white;
    margin-top: 2px;
}

.pricing-section .pricing-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    width: 100%;
    font-weight: 500;
    transition: 0.3s;
    transition: .3s;
}

.pricing-section .pricing-btn:hover {
    background: #09131f;
}

@media (max-width:991px) {

    .pricing-section .pricing-card {
        margin-bottom: 25px;
    }

}

.faq-section {
    padding: 30px 0;
    color: #ffffff;
}

.faq-section .top-p {
    background: transparent;
    padding: 4px 10px;
    border: 1px solid white;
    width: max-content;
    margin: auto;
    border-radius: 8px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: white;
}

.faq-section .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #D6D6D6;
    margin-bottom: 5px;
}

.faq-section .accordion-button {
    background-color: transparent;
    color: var(--primary);
    font-weight: 400;
    font-size: 18px;
    padding: 22px 0;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hide default Bootstrap icon */
.faq-section .accordion-button::after {
    display: none;
}

/* Custom Plus/Minus Toggle */
.faq-section .faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-left: 15px;
    color: var(--primary);
}

.faq-section .accordion-button.collapsed .faq-toggle::before {
    content: "+";
}

.faq-section .accordion-button:not(.collapsed) .faq-toggle::before {
    content: "-";
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 0 0 25px 0;
    color: var(--primary);
    font-size: 15px;
    line-height: inherit;
    max-width: 95%;
    font-weight: 300;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .faq-section .accordion-button {
        font-size: 1rem;
    }
}

.signboard-wrapper {
    background-image: url('https://www.digittrix.com/assets/open_upgrade/images/offer-bottom-img.webp');
    background-repeat: no-repeat;
    padding: 20px;
    min-height: 150px;
    border-radius: 35px;
    background-size: cover;
    margin-bottom: 23px;
    margin-top: 23px;
}

.signboard-wrapper .thm-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    transition: .3s;
    width: fit-content;
}

.small-banner {
    position: fixed;
    bottom: 30px;
    left: 50px;
    z-index: 9999;
}

.wtsapp-icon {
    position: fixed;
    bottom: 191px;
    left: 50px;
    z-index: 9999;
}

.chat-box .chat-name {
    font-size: 15px;
    font-weight: 400;
}

.chat-box .chat-title {
    font-size: 10px;
    font-weight: 300;
}

.chat-ui-wrapper .message-toggle {
    position: fixed;
    bottom: 22px;
    right: 30px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    border: 1px solid white;
}

.chat-ui-wrapper .message-toggle i {
    color: #fff;
    font-size: 26px;
}

.chat-ui-wrapper .quick-popup {
    position: fixed;
    bottom: 75px;
    right: 30px;
    width: 280px;
    z-index: 999999;
}

.chat-ui-wrapper .quick-popup.hide {
    display: none;
}

/* ================= BUBBLES ================= */
.chat-ui-wrapper .bubble {
    background: var(--primary);
    padding: 12px 20px;
    border-radius: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    width: fit-content;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    transition: .3s;
    transform: translateY(30px);
    animation: bubbleUp 0.5s ease forwards;
    margin-left: auto;
    color: white;
}

/* Animation Order (Bottom → Up) */
.chat-ui-wrapper .bubble:nth-child(3) {
    animation-delay: 0.2s;
}

.chat-ui-wrapper .bubble:nth-child(2) {
    animation-delay: 0.6s;
}

.chat-ui-wrapper .bubble:nth-child(1) {
    animation-delay: 1s;
}

@keyframes bubbleUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-ui-wrapper .bubble:hover {
    background: #797979;
    transform: translateX(-5px);
}

/* ================= CHATBOX ================= */
.chat-ui-wrapper .chat-box {
    position: fixed;
    bottom: 18px;
    right: 28px;
    width: 350px;
    background: var(--primary);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #ffffff8a;
}

.chat-ui-wrapper .chat-box.active {
    display: flex;
}

/* Header */
.chat-ui-wrapper .chat-header {
    background: var(--first);
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ffffff45;

}

/* Body */
.chat-ui-wrapper .chat-body {
    padding: 15px;
    height: 400px;
    overflow-y: auto;
}

.chat-ui-wrapper .bot-msg {
    background: #f1f3f5;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 300;
    max-width: 75%;
}

/* Input */
.chat-ui-wrapper .chat-input {
    padding: 10px;
    position: relative;
}

.chat-ui-wrapper .chat-input i {
    position: absolute;
    color: white;
    top: 19px;
    right: 21px;
}

.chat-ui-wrapper .chat-input input {
    width: 100%;
    border-radius: 12px;
    border: none;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid #ffffff8a;
    color: white;
}

.chat-ui-wrapper .chat-input input::placeholder {
    color: #ffffff8a;
}

.chat-ui-wrapper .chat-input input:focus {
    outline: none;
}

@media(max-width:767px) {
    .chat-ui-wrapper .message-toggle {
        display: none;
    }

    .chat-ui-wrapper .quick-popup {
        display: none;
    }
}

/* ================= RESPONSIVE ================= */
@media(max-width:576px) {
    .chat-ui-wrapper .chat-box {
        width: 95%;
        right: 2.5%;
    }
}

.btn_whatsapp {
    --c_green: #25d366;
    width: 40px;
    height: 40px;
    font-size: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c_green);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
}

.sidePopup_active .btn_whatsapp {
    animation: scaleup 1.5s alternate infinite ease-in
}

body:not(.sidePopup_active) .btn_whatsapp {
    left: 55px;
    bottom: 25px;
    position: fixed;
    font-size: 22px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
    z-index: 999999999;
}

body:not(.sidePopup_active) .btn_whatsapp i {
    animation: 2s infinite ring
}

body:not(.sidePopup_active) .btn_whatsapp::after,
body:not(.sidePopup_active) .btn_whatsapp::before {
    content: "";
    left: 50%;
    position: absolute;
    transform-origin: center;
    transform: translateX(-50%);
    border: 1px solid var(--c_green);
    border-radius: 50%;
    margin: auto;
    z-index: -1
}

body:not(.sidePopup_active) .btn_whatsapp::before {
    width: 120px;
    height: 120px;
    -webkit-animation: 2.2s ease-in-out infinite animation1;
    animation: 2.2s ease-in-out infinite animation1;
    -ms-animation: animation1 2.2s ease-out;
    -ms-animation-iteration-count: infinite;
    opacity: .5
}

body:not(.sidePopup_active) .btn_whatsapp::after {
    width: 70px;
    height: 70px;
    background-color: var(--c_green);
    -webkit-animation: 1.7s ease-in-out infinite animation2;
    animation: 1.7s ease-in-out infinite animation2;
    -ms-animation: animation2 1.7s ease-out;
    -ms-animation-iteration-count: infinite;
    opacity: 1
}

@keyframes scaleup {
    0% {
        transform: scale(.8)
    }

    100% {
        transform: scale(1.1)
    }
}

@-webkit-keyframes animation1 {
    0% {
        opacity: .1;
        -webkit-transform: translateX(-50%) scale(.4);
        transform: translateX(-50%) scale(.4)
    }

    70% {
        opacity: .6;
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1)
    }

    100% {
        opacity: .3;
        -webkit-transform: translateX (-50%) scale(.5);
        transform: translateX(-50%) scale(.5)
    }
}

@-webkit-keyframes animation2 {
    0% {
        opacity: .3;
        -webkit-transform: translateX(-50%) scale(.6);
        transform: translateX(-50%) scale(.6)
    }

    70% {
        opacity: .8;
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1)
    }

    100% {
        opacity: .1;
        -webkit-transform: translateX(-50%) scale(.7);
        transform: translateX(-50%) scale(.7)
    }
}

@keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    2% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    12%,
    4% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    14%,
    6% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    8% {
        -webkit-transform: rotate(-22deg);
        -ms-transform: rotate(-22deg);
        transform: rotate(-22deg)
    }

    10% {
        -webkit-transform: rotate(22deg);
        -ms-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    16% {
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    18% {
        -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    100%,
    20% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
}

@media(max-width:767px) {
    body:not(.sidePopup_active) .btn_whatsapp {
        left: 20px;
        bottom: 20px
    }

    body:not(.sidePopup_active) .btn_whatsapp::before {
        width: 75px;
        height: 75px
    }

    body:not(.sidePopup_active) .btn_whatsapp::after {
        width: 60px;
        height: 60px
    }
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
    animation: fadeInUp 0.4s ease;
    max-width: 242px;
    margin-right: 0;
    margin-left: auto;
}

.option-btn {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.option-btn:hover {
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.25);
}

/* Click Effect */
.option-btn:active {
    transform: scale(0.97);
}

/* Ripple Effect */
.option-btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.4s ease, height 0.4s ease;
}

.option-btn:active::after {
    width: 200px;
    height: 200px;
}

.typing-indicator {
    width: fit-content;
}

.typing-indicator .wave {
    display: flex;
    gap: 4px;

}

.typing-indicator .wave span {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: wave 1.2s infinite ease-in-out;
}

.typing-indicator .wave span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .wave span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Fade Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-msg {
    align-self: flex-end;
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px 14px 4px 14px;
    max-width: 75%;
    font-size: 14px;
    animation: fadeInUp 0.3s ease;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.cta-modal .modal-content {
    border-radius: 12px;
    border: none;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('https://www.digittrix.com/assets/open_upgrade/images/form-bg-img.webp');
}

/* left panel */

.cta-modal .left-panel {
    background: #0d2b3a;
    color: #fff;
    border-radius: 10px;
    padding: 35px 25px;
    height: 100%;
}

.cta-modal .left-panel h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 15px;
}

.cta-modal .left-panel p {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-modal .left-panel ul {
    padding-left: 0;
    list-style: none;
}

.cta-modal .left-panel ul li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

/* form area */

.cta-modal .form-area {
    padding: 0;
    position: relative;
    height: 100%;
    padding-bottom: 50px;
}

.cta-modal .form-control {
    border: none;
    border-bottom: 1px solid #808080;
    border-radius: 0;
    padding-left: 0;
    background: transparent;
}

.cta-modal .form-control:focus {
    box-shadow: none;
}

.cta-modal .form-control::placeholder {
    color: var(--primary);
    font-size: 14px;
}

.cta-modal textarea.form-control {
    height: 90px;
}

.cta-modal .submit-btn {
    background: #0d2b3a;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
    margin-top: 0 !important;
    width: 100%;
}

/* responsive */

@media(max-width:991px) {
    .cta-modal .form-area {
        padding: 0;
    }

    .cta-modal .submit-btn {
        position: static;
    }

    .cta-modal .modal-content {
        padding: 0;
        max-height: 80vh;
        overflow-y: scroll;
        padding-top: 18px;
    }


}

@media(max-width:768px) {

    .cta-modal .left-panel {
        margin-bottom: 20px;
    }

}

.cta-modal .pricing-panel {
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    padding: 10px;
    height: 100%;
}

.cta-modal .plan-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-modal .price-box {
    margin-bottom: 10px;
}

.cta-modal .old-price {
    font-size: 28px;
    color: #8a8a8a;
    text-decoration: line-through;
    margin-right: 8px;
}

.cta-modal .new-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin-right: 5px;
}

.cta-modal .per {
    font-size: 14px;
    color: #ccc;
}

.cta-modal .pricing-panel hr {
    border-color: #CCCCCC;
    margin: 15px 0;
}

.cta-modal .plan-desc {
    font-size: 14px;
    color: #FFFFFFB2;
    margin-bottom: 18px;
    font-weight: 300;
}

.cta-modal .plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-modal .plan-features li {
    margin-bottom: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

.price-modal .btn-close {
    position: absolute;
    right: 16px;
    top: 7px;
    z-index: 99999;
}

.cta-modal .form-area .form-check {
    font-size: 13px;
    font-weight: 400;
}

.cta-modal .form-area .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.offer-subs .subscription-banner {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 441px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 21px;
    border-radius: 20px;
}

.offer-subs .sub-banner-content h3 {
    color: white;
    font-size: 40px;
}

.offer-subs .sub-banner-content p {
    font-size: 15px;
    font-weight: 400;
    color: white;
}

@media(max-width:991px) {
    .cta-modal .plan-title {
        font-size: 19px;
        margin-bottom: 2px;
    }

    .cta-modal .price-box {
    margin-bottom: 0;
}

    .cta-modal .pricing-panel {
        padding: 10px 13px;
    }

    .cta-modal .new-price {
    font-size: 26px;
    }

    .cta-modal .old-price {
    font-size: 21px;
    }
}

@media(max-width:575px) {
    .offer-subs .sub-banner-content h3 {
        font-size: 30px;
    }

}

@media(max-width:480px) {
    .offer-subs .sub-banner-content h3 {
        font-size: 22px;
    }
}

.callback-btn {
    position: fixed;
    left: 0;
    top: 40%;
    z-index: 999;
    cursor: pointer;
}

.callback-btn span.call-icon {
    background: transparent;
    padding: 10px;
    border-radius: 0;
    transform: rotate(180deg) !important;
    writing-mode: vertical-lr;
}

.callback-btn .callback-text {
    background: var(--primary);
    padding: 0px 0 10px;
    border-radius: 8px 0 0 8px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
}

.callback-popup {
    position: fixed;
    left: 0;
    bottom: 190px;
    width: 347px;
    background: var(--primary);
    color: #fff;
    border-radius: 0 0 18px;
    padding: 13px 13px;
    z-index: 1000;
    display: none;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

.callback-popup .popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: none;
    font-size: 18px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.callback-popup .popup-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.callback-popup .popup-title span {
    color: var(--secondary);
}


.callback-popup .form-control {
    background: transparent;
    border: 1px solid #CCCCCCB2;
    border-radius: 30px;
    padding: 12px 18px;
    color: #fff;
    margin-bottom: 0;
}

.callback-popup .form-control::placeholder {
    color: #CCCCCCB2;
    font-weight: 300;
    font-size: 13px;
}

.callback-popup textarea.form-control {
    border-radius: 18px;
    height: 100px;
}

.callback-popup .iti__country-list {
    color: black;
}


.callback-popup .call-btn {
    background: white;
    border: none;
    border-radius: 15px;
    padding: 12px 28px;
    font-weight: 500;
    color: var(--primary);
    width: 100%;
}

.callback-popup .call-btn:hover {
    opacity: .9;
}

@media(max-width:576px) {

    .callback-popup {
        width: 90%;
    }


}

@media(max-width:480px) {
    .callback-btn {
        top: 50%;
    }

    .callback-btn .callback-text {
        width: 30px;
        font-size: 13px;
    }
}

.offer-leads {
    padding: 30px 0;
}

.offer-leads .offer-p {
    max-width: 650px;
    margin: auto;
}

.leads-card {
    border: 1px solid #1E79A766;
    padding: 25px;
    border-radius: 18px;
    transition: .3s;
    height: 100%;
}

.leads-card:hover {
    background-color: var(--primary);
}


.leads-card h3 {
    font-size: 19px;
    margin-top: 20px;
    color: var(--primary);
    transition: .3s;
    font-weight: 400;
}

.leads-card:hover h3 {
    color: white;
}

.leads-card .blue-white {
    transition: .3s;
}

.leads-card:hover .blue-white {
    display: none;
}

.leads-card:hover .icon-white {
    display: inline-block;
}

.leads-card .icon-white {
    display: none;
    transition: .3s;
}