/* Font Import */
@font-face {
    font-family: 'Satoshi';
    src: url('https://fitelo.co/wp-content/themes/Fitelo/fonts/Satoshi%20Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

/* Variables */
:root {
    --primary-color: #ff8643;
    --text-color: #000000;
    --white: #ffffff;
}

/* Global Styles */
body {
    font-family: 'Satoshi', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Hero Section */
.fitelo-hero-section {
    /* min-height: 80vh; */
    background: linear-gradient(rgba(255, 134, 67, 0.05), rgba(255, 134, 67, 0.1));
    padding: 136px 0px 40px 0px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-content {
    flex: 1;
    padding: 0px 15px;
}
.hero-content-span{
    color: var(--primary-color);
}
h1 {
    font-size: 48px;
    line-height: 62.4px;
    margin-bottom: 24px;
}
.newsletter .news .newletter-form{
    padding: 16px;
    border: 1px solid #2f313b;
    border-radius: 7px;
}
.hero-subheading {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.success-story-wrapper .inner-success-story h2 {
    font-size: 40px !important;
}
.plan-help .h1 {
    font-size: 40px;
}
.success-story-wrapper {
    padding: 50px 0px !important;
}
.hero-cta-buttons {
    display: flex;
    gap: 20px;
}
.customised-plan-content .h1{
    font-size: 30px;
}
.cta-primary, .cta-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: #e67738;
    transform: translateY(-2px);
}

.cta-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.contact-us{
    display:none;
}
.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.shark-tank-logo {
    display:none;
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: auto;
    z-index: 2;
}
.loss-span {
    text-align: center;
}
.top form {
    margin-top: 30px;
    align-self: center;
}
/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    h1 {
        font-size: 32px;
        line-height: 45px;
        margin-bottom: 15px;
    }
    .hero-subheading {
        margin-bottom: 25px;
    }
    .hero-cta-buttons {
        display:none;
    }

    .shark-tank-logo {
        top: -20px;
        left: -7px;
        width: 100px;
    }
    .fitelo-hero-section {
        padding: 75px 0px 0px 0px !important;
    }
}

@media (max-width: 576px) {
    .hero-cta-buttons {
        flex-direction: column;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Packages Section */
.fitelo-packages-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.packages-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-header h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.packages-subheading {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.package-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.package-description {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
    min-height: 48px;
}

.package-price {
    margin-bottom: 30px;
    line-height: 1.8;
}

.price-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
}

.package-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.package-cta:hover {
    background-color: #e67738;
    transform: translateY(-2px);
}

/* Results Gallery */
.results-gallery {
    text-align: center;
}

.results-gallery h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .packages-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Shark Tank Journey Section */
.shark-tank-journey {
    padding: 50px 0;
    /* background: linear-gradient(rgba(255, 134, 67, .1), rgba(255, 134, 67, .05)); */
}

.journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.journey-content h2 {
    font-size: 40px;
    font-family: "Satoshi Bold", sans-serif;
    margin-bottom: 50px;
    text-align: center;
}
.journey .inside h2{
    font-family: "Satoshi Bold", sans-serif;
}
.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.journey-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: center;
}

.journey-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.founder-quote {
    padding: 30px;
    background: linear-gradient(rgba(255, 134, 67, 0.05), rgba(255, 134, 67, 0.1));
    border-radius: 15px;
    position: relative;
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    color: var(--primary-color);
}

.key-moments h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.moments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.moments-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.moment-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.journey-visuals {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.journey-visuals iframe{
    border-radius: 18px;
}
.journey-main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.journey-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.journey-main-image:hover img {
    transform: scale(1.02);
}
.customised-plan {
    background: #fff !important;
}
.behind-scenes-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.behind-scenes-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.behind-scenes-gallery img:hover {
    transform: translateY(-5px);
}

/* Responsive Design for Journey Section */
@media (max-width: 992px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journey-content h2 {
        font-size: 30px;
    }

    .behind-scenes-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .shark-tank-journey {
        padding: 30px 0;
    }

    .journey-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .founder-quote {
        padding: 20px;
    }

    .behind-scenes-gallery {
        grid-template-columns: 1fr;
    }

    .behind-scenes-gallery img {
        height: 200px;
    }
}

/* Why Choose Fitelo Section */
.why-choose-fitelo {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 134, 67, 0.03), rgba(255, 134, 67, 0.07));
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefit-points {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.benefit-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Trust Badges Section */
.trust-badges {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-badges h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.badge-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.badge-item:hover img {
    transform: scale(1.1);
}

.badge-item span {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

/* Responsive Design for Why Choose Section */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .why-choose-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .why-choose-fitelo {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-choose-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .benefit-card {
        padding: 30px 20px;
    }
}

/* CTA Section */
.fitelo-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 134, 67, 0.08), rgba(255, 134, 67, 0.12));
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 3.2rem;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-buttons .cta-primary {
    padding: 18px 36px;
    font-size: 1.2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 134, 67, 0.2);
}

.cta-buttons .cta-primary:hover {
    background-color: #e67738;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 134, 67, 0.3);
}

.cta-buttons .cta-secondary {
    padding: 18px 36px;
    font-size: 1.2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.cta-buttons .cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-image {
    flex: 1;
    position: relative;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-text {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
}

/* Responsive Design for CTA Section */
@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2.8rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .success-stat {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .fitelo-cta-section {
        padding: 60px 0;
    }

    .cta-text h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .cta-primary,
    .cta-buttons .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .success-stat {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
}

    /* New Css */
    @media (max-width: 1028px) {
        .ft04_sticky_wrapper1 .ft04_sticky_container1 {
            justify-content: center!important;
        }
        .ft04_sticky_wrapper1 .ft04_sticky_container1 .ft04_sticky_watsapp_cta1 {
            width: 55% !important;
        }
        .ft04_sticky_wrapper1 .ft04_sticky_container1 .ft04_sticky_watsapp_cta1 img {
            margin-right: 5px;
        }
    }
    .ft04_sticky_wrapper1 {
        z-index: 1002 !important;
    }
/* Components css*/ 
.statistics{
    padding: 30px 0px;
}
.secondary-btn.md-btn{
    display: none;
}
@media (max-width: 767px) {
    .statistics .stat-inner ul.numbers-ul li {
        margin: 26px 0px !important;
    }
    .statistics ul.numbers-ul li {
        width: 50%;
        margin: 24px 0;
        height: 100%;
        text-align: center;
    }
    .statistics{
        padding-top: 20px;
        padding-bottom: 0;
    }
}

.customised-plan {
    width: 100%;
    background: #f9f4f1;
}
.customised-plan .customised-plan-inner {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    max-width: 1130px;
    width: 100%;
    margin: 0 auto;
}
.customised-plan .customised-plan-inner .customised-plan-screen {
    max-width: 522px;
    width: 100%;
    height: 100%;
    position: relative;
}
.customised-plan .customised-plan-inner .customised-plan-content {
    max-width: 560px;
    width: 100%;
    padding: 92px 0;
}
.customised-plan .customised-plan-inner .customised-plan-screen .img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 650px;
}
.customised-plan .customised-plan-inner .customised-plan-screen .img img {
    width: auto;
    height: 75%;
    position: absolute;
    bottom: 0;
}
.customised-plan .customised-plan-inner .customised-plan-content h2 {
    margin-bottom: 18px;
    max-width: 559px;
}
.customised-plan .customised-plan-inner .customised-plan-content p {
    font-size: 16px;
    line-height: 160%;
    opacity: .9;
    margin-bottom: 42px;
    max-width: 481px;
}
.customised-plan .customised-plan-inner .customised-plan-content .customised-plan-feature {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 500px;
}
.customised-plan .customised-plan-inner .customised-plan-content .customised-plan-feature .plan-feature:nth-child(odd) {
    margin-right: 28px;
}
.customised-plan .customised-plan-inner .customised-plan-content .customised-plan-feature .plan-feature {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 46%;
    margin-bottom: 32px;
}
.customised-plan .customised-plan-inner .customised-plan-content .customised-plan-feature .plan-feature svg {
    margin-right: 20px;
}
.customised-plan .customised-plan-inner .customised-plan-content .customised-plan-feature .plan-feature p {
    text-transform: capitalize;
    margin-bottom: 0;
    white-space: nowrap;
    font-family: "Satoshi Bold", sans-serif;
    font-weight: 700;
}
.customised-plan .customised-plan-inner .customised-plan-content .store {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 8px;
}
.customised-plan .customised-plan-inner .customised-plan-content .store .img {
    margin-right: 36px;
    min-width: 117px;
    height: 38px;
}
.customised-plan .customised-plan-inner .customised-plan-content .store .img img {
    object-position: center left;
    object-fit: contain;
}
@media (min-width: 992px) {
    .customised-plan .customised-plan-inner .customised-plan-screen {
        margin-right: 50px;
    }
}
@media (max-width: 991px) {
    .customised-plan {
        padding: 0 20px;
    }
    .customised-plan .customised-plan-inner {
        flex-direction: column-reverse;
    }
    .customised-plan .customised-plan-inner .customised-plan-screen {
        margin: 0 auto;
    }
    .customised-plan .customised-plan-inner .customised-plan-screen .img {
        height: auto;
        position: static;
    }
    .customised-plan .customised-plan-inner .customised-plan-screen .img {
        height: 414px !important;
    }
    .customised-plan .customised-plan-inner .customised-plan-content {
        width: 100%;
        max-width: 375px;
        padding: 48px 0 24px;
        margin: 0 auto;
    }
    .customised-plan .customised-plan-inner .customised-plan-content h2 {
        text-align: center;
        margin: 0 auto 20px;
    }
    .customised-plan .customised-plan-inner .customised-plan-content p.custom-p {
        text-align: center;
        margin: 0 auto 32px;
    }
    .customised-plan .customised-plan-inner .customised-plan-content .customised-plan-feature {
        justify-content: space-between;
    }
    .customised-plan .customised-plan-inner .customised-plan-content .customised-plan-feature .plan-feature svg, .customised-plan .customised-plan-inner .customised-plan-content .customised-plan-feature .plan-feature:nth-child(odd) {
        margin-right: 8px;
    }
    .customised-plan .customised-plan-inner .customised-plan-content .customised-plan-feature .plan-feature p {
        font-size: 14px;
        line-height: 150%;
        white-space: break-spaces;
    }
    .customised-plan .customised-plan-inner .customised-plan-content .store {
        justify-content: space-between;
        margin-top: 18px;
    }
    .customised-plan .customised-plan-inner .customised-plan-screen .img img {
        width: auto;
        height: 100%;
        margin: auto;
        position: static;
    }
    .customised-plan .customised-plan-inner .customised-plan-screen{
        display:none;
    }
    .customised-plan .customised-plan-inner .customised-plan-content .store .img {
        margin-right: 20px;
        min-width: 158px;
        height: 50px;
    }
}

.col-35 {
    max-width: 75% !important;
    margin: auto;
}
.journey .point-descr .points {
    width: auto !important;
}
.journey .inside {
    padding-bottom: 54px;
}
.journey .col-65{
    display:none;
}
.review-img {
    max-width: 393px;
    margin: 0 auto;
}
.review-img .img-contain {
    height: auto !important;
}
.inner-google-rating h2{
    text-align: center;
    max-width: 610px;
    width: 100%;
    margin: 0 auto 35px;
    font-size: 40px;
    line-height: normal;
    font-family: "Satoshi Bold", sans-serif;
}
.google-rating{
    padding-top:50px;
}
.journey-section{
    background: #f9f4f1;
}
.journey-section .heading-j{
    font-family: "Satoshi Medium", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
  display: none;
}
@media (max-width: 768px) {
.review-img .img-contain {
    height: auto !important;
    width: 85%;
    margin: auto;
}
.inner-google-rating h2{
    font-size: 30px;
}
.journey-content h2 {
    font-size: 30px;
}
.plan-help .h1 {
    font-size: 30px;
}
.success-story-wrapper .inner-success-story h2{
    font-size: 30px !important;
}
.journey-section .heading-j{
    display: Block;
  font-size: 30px;
}
.journey-section .j-heading{
    display: none;
}
}
footer .bottom-foot .bottom-main {
    justify-content: flex-end !important;
}
footer .bottom-foot .bottom-main .social ul.icons img, footer .bottom-foot .bottom-main .social ul.downloads img {
    width: 100%;
}
/* Responsive Issue */

@media (max-width: 767px) { 

    .plan-help button.slick-arrow.slick-prev {
        left: 0.5rem;
    }

    .plan-help button.slick-arrow.slick-next {
        right: 0.5rem;
    }

}
@media (max-width: 576px) {

    .ft04_sticky_wrapper1 .ft04_sticky_container1 .ft04_sticky_watsapp_cta1 {
        width: 100% !important;
        font-size: 1rem;
        background-color: #2ab20017;
    }

    .customised-plan .customised-plan-inner .customised-plan-content .store .img {
        margin-right: 0;
        min-width: auto;
        height: auto;
        flex: 1 0 auto;
        width: 46%;
    }

    .customised-plan .customised-plan-inner .customised-plan-content .store .img + .img {
        margin-inline-start: 20px;
    }

    .customised-plan .customised-plan-inner .customised-plan-content .store .img img {
        height: 100%;
        width: 100%;
    }

    .success-story-wrapper .inner-success-story .success-story-content-wrapper {
        margin-inline: 0 !important;
    }

    .plan-help ul.plans-ul .ul-li .li-inner ul li.active-bg {
        font-weight: 700;
        color: rgb(255 134 68) !important;
    }

    .plan-help .question-p,
    .plan-help .fixed_btn_a_2 {
        display: none !important;
    }

    .plan-help .h1,
    .success-story-wrapper .inner-success-story h2,
    .journey-section .heading-j,
    .customised-plan .customised-plan-inner .customised-plan-content h2,
    .journey-content h2,
    .inner-google-rating h2 {
        font-size: 30px !important;
        font-family: "Satoshi Bold", sans-serif;
        margin-bottom: 30px;
        padding-inline: 15px;
    }

}