@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1280px;
    }
}

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none; /* Faux bold/stretch rokta hai */
  text-rendering: optimizeLegibility;
}

:root {
    --color-primary: #A60000;
    --color-secondary: #FFBA21;
    --body-font: "Poppins", system-ui, -apple-system, sans-serif;
    --content-font: "Lexend Deca", system-ui, -apple-system, sans-serif;
    --body-text: #4C1F00;
}
::-moz-selection {
    color: #fff;
    background-color:#000;
}
::selection {
    color: #fff;
    background-color: #000;
}
body {
    font-family: var(--body-font);
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: var(--body-text); font-size: 1rem;
}
html {
    scroll-behavior: smooth;
}
html, body {
  -webkit-font-smoothing: antialiased;
  /* optional */
  -moz-osx-font-smoothing: grayscale;
}

a {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hm_bannerImg {
    background-image: url(../images/hm-banner1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/*.banner-bottom-shadow {
    position: absolute;
    bottom: -145px;
    left: 0;
    width: 100%;
    height: 291px;
    content: '';
    background: linear-gradient(180deg, rgba(252, 184, 85, 0) 0%, #FFBC48 100%);
    z-index: 0;
}*/
.hm-banner-wrapper .container, .hm-banner-wrapper .row {
    height: 100vh;
    position: relative;
    z-index: 1;
}
.banner-content {
    max-width: 662px;
    margin: auto;
    text-align: center;
    position: relative;
    bottom: -98px;
}
.banner-content h1 {
    font-size: 3.25rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 123%;
    text-shadow: 0 4px 4px #00000033;
}
.banner-content p {
    color: #fff;
    font-size: 1.25rem;
    line-height: 140%;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px #00000033;
}
.banner-btn a {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid #FFC325;
    box-shadow: 0 4px 12px #00000029;
    padding: 13px 0px;
    text-decoration: none;
    border-radius: 50px;
    max-width: 216px;
    width: 100%;
    display: inline-block;
}
.banner-btn a:hover {
    background-color: #930707;
}
.banner-btn a img {
    margin-right: 4px;
}
.main-menu {
    padding: 0;
}
.header-top {
    position: absolute;
    width: 100%;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 21px 0px;
    z-index: 1024;
     transition: all 0.3s ease;   /* Smooth transition */
}


.header-top.sticky {
    position: fixed;
    background: #000;         /* Solid background on scroll */
    padding: 10px 0;             /* Slight compact padding */
     animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.main-menu li.nav-item a.nav-link {
    padding: 8px 16px; color: #fff;
}
.main-menu li.nav-item a.nav-link:hover{color: #FFD24D}
.nav-storeBtn {
    gap: 8px;
    margin-left: 20px;
}

section.problem-section {
    padding-top: 60px;
    position: relative;
}
/*section.problem-section:before {
    content: '';
    top: -235px;
    left: 0;
    width: 100%;
    background-image: url(../images/problem-top-shape.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 235px;
    position: absolute;
}*/
.problem-section {
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative; overflow: hidden;
}

.main-title {
    font-size: 3.25rem;
    line-height: 120%;
    font-weight: 600; color: var(--color-primary);
    text-shadow: 0px 4px 4px #00000033;
}
.problem-inner-content p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem; color: var(--color-primary);
    text-shadow: 0px 4px 4px #00000033; font-family: var(--content-font);
}
.problem-inner-list {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 29% 1fr;
    column-gap: 1rem;
    align-items: center;
}
.probList ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.probList ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0px 4px 4px #00000033;
    line-height: 110%; font-family: var(--content-font);
}
.problem-section .main-title {
    margin-bottom: 2rem;
}
.probResult {
    text-align: center;
}
.probResult p {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 15px 0px;
    line-height: 100%;
}
.problem-rtl-img img{width: 100%;}
.problem-rtl-img {
    /* margin-top: 115px; */
    position: absolute;
    bottom: 0;
    right: 0;
}

.theProblem-Banner {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}
.theProblem-Banner .right-img {
    text-align: right;
    top: 7px;
    position: relative;
}
.personal-col {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background: linear-gradient(180deg, #FAAC01 0%, #FDCD56 100%);
    padding-top: 60px;
    position: relative;
    top: -40px;
}

.personal-top-img img {
    border-radius: 32px;
    width: 100%;
}
.personal-hm_heart-grid {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    column-gap: 3.75rem;
    padding-top: 48px;
    row-gap: 50px;
}
.hm_heart-list {
    gap: 1rem;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 73px 1fr;
}
.heart-icon {
    background-image: url(../images/heart.svg);
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    line-height: 65px;
}
.content-left h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 8px; color: var(--color-primary);
    text-shadow: 0px 4px 4px #00000033; font-family: var(--content-font);
}
.content-left p {
    font-family: var(--content-font);
    font-weight: 400;
    line-height: 120%;
    text-shadow: 0px 4px 4px #00000033;
    margin-bottom: 0px;
}
.personal-MobileImg {
    position: relative;
    top: -126px;  text-align: center;
}
.personal-MobileImg img {
    max-width: 87%;
}
.personal-top p {
    font-family: var(--content-font);
    text-shadow: 0px 4px 4px #00000033;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 130%;
}
.works-col {
    background-color: #FFBA21;
    position: relative;
    padding-bottom: 40px;
    top: -41px;
    padding-top: 40px;
}
.works-col:after {
    content: '';
    background-color: #FFBA21;
    position: absolute;
    left: 0;
    bottom: -41px;
    width: 100%;
    height: 42px;
}

.personal-bottom-col {
    width: 100%;
    height: 351px;
    background-image: url(../images/works-top-shape.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    padding-bottom: 574px;
}
.work-title {
    text-align: center;
}
.work-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 32px;
}
.work-title .line{
 width: 167px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.work-title .line.left{
    background-image: url(../images/how-leaf-left.svg);
}
.work-title .line.right{
    background-image: url(../images/how-leaf-right.svg);
}

.work-title.whyMms {
    margin-top: 80px; gap: 16px;
}
.work-title.whyMms .line{
width: 315px; height: 36px;
}
.work-title.whyMms .line.left{
    background-image: url(../images/why-mms-left.svg);
}
.work-title.whyMms .line.right{
    background-image: url(../images/why-mms-right.svg);
}
.work-box {
    background: #FFEDAB4D;
    border: 1px solid #A60000;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0px 16px 16px 0px #00000029;
    height: 100%;
}
.work-box-img {
    background-color: #FFFFFF1F;
    border-radius: 10px;
    margin-bottom: 24px;
    text-align: center;
    padding: 40px 5px 0px 5px;
}
.work-box-img img{width: 100%;}
.work-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0px 4px 4px #00000033;
    margin-bottom: 12px;
    line-height: 100%;
}
.work-box p {
    font-family: var(--content-font);
    color: var(--color-primary);
    font-size: 1.25rem;
    line-height: 120%;
     text-shadow: 0px 4px 4px #00000033;
}
.workBox-content {
    text-align: center;
}

/**home page table css **/

.table-wrapper {
  overflow-x: auto; 
  padding: 0px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0;
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  overflow: hidden;
  font-size: 18px;
  box-shadow: 0px 11px 16px 0px #00000029;
  position: relative;
  background: none; /* Stop direct background-image yahan se */
  z-index: 1; 
}
.comparison-table::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 435px;
    height: 413px;
    background: url('../images/table-flower.webp') center center no-repeat;
    background-size: contain;
    opacity: 0.3;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}
.comparison-table th,
.comparison-table td {
  position: relative;
  z-index: 1;
}

.comparison-table th,
.comparison-table td {
  padding: 25px 20px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ce6464;
  width: 25%;                /* Each column 25% width */
  min-width: 180px;          /* Optional: Minimum width for mobile readability */
  box-sizing: border-box;
}

/* Heading equal height */
.comparison-table thead th {
    font-weight: 700;
    font-size: 24px;
    background: #FFEDABBF;
    line-height: 120%; color: var(--color-primary);
}

/* MMS COLUMN RED FULL */
.mms-col,
.comparison-table td:nth-child(2) {
  background: var(--color-primary);
  color: #fff;
}
th.mms-col {
    background: var(--color-primary) !important;
    color: #fff !important;
}
.comparison-table tbody td {
    color: var(--body-text);
    font-size: 20px;
    font-family: var(--content-font);
    text-shadow: 0px 4px 4px #00000033;
    font-weight: 500;
    background-color: #FFEDABBF;
    line-height: 120%;
}

/* Responsive text wrap */
@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    min-width: 120px;
    font-size: 15px;
    padding: 15px;
  }
  .comparison-table::before {
    width: 120px;
    height: 120px;
}
}
/**end**/

.cost-section {
    /* background: linear-gradient(180deg, #FFC950 0%, #FAAC00 100%); */
    padding: 80px 0px 40px 0px;
    position: relative;
    overflow: hidden;
    background-image: url(../images/big-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cost-section .main-title {
    margin-bottom: 24px;
}
.cost-list{margin-bottom: 40px;}
.cost-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.cost-list ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: center;
    font-size: 1.5rem; font-weight: 400; font-family: var(--content-font); color: var(--color-primary);
    text-shadow: 0px 4px 4px #00000033;

}
.cost-list ul li:last-child{margin-bottom: 0;}
.cost-list ul li span{font-weight: 700;}
.cost-footer p {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0px 4px 4px #00000033;
    margin-bottom: 40px; font-family: var(--content-font); font-weight: 400;
}
.cost-btn a {
    text-decoration: none;
}
.btn-red {
    background-color: var(--color-primary);
    border: 1px solid var(--color-secondary);
    font-size: 1.25rem;
    font-weight: 500;
    padding: 16px 50px;
    border-radius: 50px;
    color: #fff !important;
    text-shadow: 0px 4px 12px #00000029;
    box-shadow: 0px 4px 12px 0px #00000029;
}
.btn-red:hover{
    background-color: #930707;
}

.btn-yellow {
    background-color: #FED56D;
    border: 1px solid #FFC325;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 16px 50px;
    border-radius: 50px;
    color: var(--color-primary) !important;
    text-shadow: 0px 4px 12px #00000029;
    box-shadow: 0px 4px 12px 0px #00000029;
}
.btn-yellow:hover{
    background-color:var(--color-primary); color: #fff !important;
}
/*.cost-shape-right {
    background-image: url(../images/cost-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 348px;
    height: 400px;
    position: absolute;
    left: 60%;
    top: 0;
    z-index: 0;
}
.cost-section::before {
    content: '';
    background: #fdd264;
    width: 50%;
    right: -17%;
    top: 0;
    position: absolute;
    height: 100%;
    z-index: 0;
}
.cost-section .container {
    position: relative;
    z-index: 1;
}*/


.cost-btn {
    display: flex;
    gap: 12px;
}
.stories-bg {
    background: linear-gradient(180deg, #FFC950 0%, #FAAC00 100%);
    padding: 80px 0px 345px 0px;
    position: relative;
    overflow: hidden;
}
.shape1 {
    background: #A6000014;
    width: 870px;
    height: 870px;
    border-radius: 50%;
    position: absolute;
    right: -12%;
    top: -74px;
    z-index: 0;
}
.shape2 {
    background: #A60000;
    width: 806px;
    height: 806px;
    border-radius: 50%;
    position: absolute;
    right: -22%;
    top: -43px;
    z-index: 0;
}

.stories-title .main-title {
    padding-left: 30px;
    position: relative;
    top: -22px;
}

.stories-bg .owl-carousel .item {
  padding: 20px 0;
}
.stories-bg .owl-carousel .card {
  /*max-width: 500px;*/
  margin: auto; border: 1px solid var(--color-primary);
}

.stories-bg .slide-test {
    position: absolute;
    right: -48%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.stories-bg .slider-btn {
    margin-left: 30px;
}
.slide-test .card-body {
    padding: 40px;
}
.slide-test .card {
    border-radius: 20px; position: relative;
    background-color: #FFEDAB;
}
/*.slide-test .overlay {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
      background-color: rgba(166, 0, 0, 0.4);
    border-radius: 16px;
    z-index: 2;
    pointer-events: none;
    transition: background 0.3s;
}*/
.slide-test .owl-carousel .owl-item.active .card .overlay{
    background-color: transparent;
}
.Stories-boxImg img {
    width: 80px!important;
    height: 80px;
    margin-right: 15px;
}
.slide-test .title {
    font-size: 1.25rem;
    font-weight: 800; color: var(--color-primary); font-weight: 800;
}
.slide-test .Stories-boxImg {
    margin-bottom: 24px;
}
.slide-test .des {
    font-size: 1.125rem;
    line-height: 140%;
    color: #1E1E1E;
}
.slider-div {
    position: relative;
}
.slider-div:after {
    position: absolute;
    content: '';
    width: 419px;
    height: 100%;
    background-color: rgb(133 39 39 / 40%);
    top: 0;
    right: 0;
    z-index: 1;
}
.stories-bg .slider-btn .btn {
    background-color: var(--color-primary);
    border-radius: 50%;
    color: #FCB71E;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 24px;
}
footer::before {
    background-image: url(../images/footer_top_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -145px;
    left: 0;
    width: 100%;
    height: 146px;
    content: '';
}
.footer-topshape img {
    width: 100%;
}
.footer-section {
    background-color: var(--color-primary);
    padding: 0px 0px 0px 0px;
}
.footer-topshape {
    position: absolute;
    top: -144px;
    width: 100%;
    left: 0;
}
footer {
    position: relative;
}
.f-left {
    max-width: 352px;
}
.f-logo-des img {
    margin-bottom: 1rem;
}
.f-logo-des p {
    color: #fff;
    line-height: 140%;
    margin-bottom: 24px;
}
.f-btn-play .nav-storeBtn {
    margin-left: 0;
}
.f-right {
    max-width: 491px;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    float: right;
}
.f-right h4 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.f-address p, .f-chat p, .f-chat a {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
}
.f-address {
    max-width: 182px;
}
.f-chat a{text-decoration: none;}
.f-chat a:hover {
    color: #FFD24D;
}
.f-chat ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
}
.f-chat p {
    margin-bottom: 1rem;
}
.f-copyright {
    padding: 25px 0px 18px 0px;
    text-align: center;
    border-top: 1px solid #e5e5e640;
    margin-top: 40px;
}
.f-copyright p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 100%;
    font-weight: 400;
}
.theProblem-Banner img {
    width: 100%;
}
.cost-mobileImg {
    text-align: center;
}


/*Host App css***/
.innerPage-Banner{
background-repeat: no-repeat; background-size: cover; background-position: center;
min-height: 850px; position: relative;
}
.host-banner{background-image: url(../images/host-banner.webp);
}
.guest-banner{background-image: url(../images/guest-banner.webp);
}
.work-title.features-title .line.left{
background-image: url(../images/leaf-host-left.webp);
}
.work-title.features-title .line.right{
background-image: url(../images/leaf-host-right.webp);
}
.work-title.features-title .line{
width: 303px; height: 65px;
}

.work-title.soc-proof-title .line.left{
background-image: url(../images/arrow-proof-left.webp);
}
.work-title.soc-proof-title .line.right{
background-image: url(../images/arrow-proof-right.webp);
}
.work-title.soc-proof-title .line{
width: 385px; height: 22px;
}

.work-title.features-title .main-title {
    padding: 0px 15px;
}
.innerPage-Banner .banner-content {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.features-section {
    background: linear-gradient(180deg, #FAAC01 0%, #FDCD56 100%);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding-top: 60px;
    position: relative;
    top: -40px;
    padding-bottom: 200px;
}
.banner-btn .btn-red:first-child {
    margin-right: 12px;
}
.features-col-center img{ width: 100%;}
.features-row {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 35% 1fr;
    gap: 50px;
}
.features-col-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 341px;
}
.features-col-center {
    position: relative;
    top: -24px;
}

.features-col-left .content-left h3 {
    font-size: 2rem;
}
.features-col-left .content-left p {
    font-size: 1.5rem;
}
.work-title.soc-proof-title {
    gap: 20px;
}
.work-title.features-title {
    margin-bottom: 37px;
}
.shape-host{
content: '';
position: absolute;
left: 0;
bottom: 0;
background-image: url(../images/feature-shape.webp);
background-repeat: no-repeat;
background-size: cover;
width: 1125px;
height: 1025px;
}
.features-section .container, .social-proof {
    z-index: 1;
    position: relative;
}

/**slider css**/
.proof-slider .owl-carousel .owl-item .slider-warpper {
    background: #FFEDAB;
    border-radius: 16px;
    box-sizing: border-box;
    transition: background 0.3s;
    padding: 32px 32px 46px 32px;
    position: relative;
    min-height: 182px;
    margin-top: 0;
    border: 2px solid var(--color-primary);
    box-shadow: 0px 16px 16px 0px #00000029;
}
.proof-slider .owl-carousel .testimonial-content {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 16px;
    border-left: 2px solid var(--color-primary);
    padding-left: 24px;
}
.proof-slider .owl-carousel .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 12px;
}
.proof-slider .owl-carousel .author-img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
    margin: auto;
}
.proof-slider .owl-carousel .author-name {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 20px;
}
.proof-slider .owl-carousel .author-location {
    color: var(--color-primary);
    font-size: 20px; font-weight: 800;
}
.proof-slider .owl-carousel {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.proof-slider {
    overflow: hidden;
}
.proof-slider .first_name {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    background-color: var(--color-primary);
}
.slider-warpper{position: relative;}
.slider-warpper {
  position: relative;
}

.slider-warpper .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(255, 211, 102, 0.6); /* Disabled effect */
  border-radius: 16px;
  z-index: 2;
  pointer-events: none;
  transition: background 0.3s;
}
.proof-slider .owl-item.center .slider-warpper .overlay {
  background: transparent !important;
}
.slider-warpper .user-proof-img .overlay {
    border-radius: 50%;
}

/**END**/


section.plans-banner {
    padding-top: 130px;
}
.plans-title {
    max-width: 890px;
    margin: auto auto 40px auto;
    text-align: center;
}
.plans-title h1{ font-size: 2.625rem;
font-weight: 700; color: var(--color-primary); line-height: 160%;
}

.pricing-page .header-top {
    background: #ffe4a7;
}
.pricing-page .main-menu li.nav-item a.nav-link {
    color: #A60000;
}
.pricing-page .main-menu li.nav-item a.nav-link:hover {
    color: #000;
}

/**Plan table css**/
.price-card {
  background: #FFEDAB;
  border-radius: 20px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid var(--color-primary);
  box-shadow: 0px 16px 16px 0px #00000029;
}

/* Top decorative blob */
.price-card .top-bg {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 139px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  z-index: 0;
  background-image: url(../images/price-shape-top.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Different color for premium & elite blobs */
.price-card.premium .top-bg {
  background: #a4211d;
}

.price-card.elite .top-bg {
  background: #a4211d;
}

/* Card title over the top-bg */
.price-card h4 {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    padding-bottom: 30px;
    min-height: 100px;
}

/* Most Popular highlight */
.price-card.premium {
  border-color: #b9180e;
}

.price-card .btn {
  font-size: 1rem;
  font-weight: 600;
}
.price-card h4 span {
    display: block;
    font-size: 1.25rem;
}
.price-card .large-price {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 140%; color: var(--color-primary);
}
.price-card .small-price {
    font-size: 2.625rem;
    font-weight: 700;
    line-height: 130%;
    color: var(--color-primary);
    margin-top: 8px;
}
.price-card .per-text {
    font-size: 1.25rem;
    font-weight: 500; color: var(--color-primary);
}
.price-card  ul li {
    display: flex;
    gap: 8px;
    font-size: 1.25rem;
    align-items: center; color: var(--color-primary);
    text-shadow: 0px 4px 4px #00000033; font-family: var(--content-font); font-weight: 400;
}
.red-btn {
    background-color: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: 0;
    padding: 13px 20px;
    -webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.red-btn:hover{background-color: #930707;}

.price-card ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blank-col {
    min-height: 560px;
    background: #F0CF8A;
}

.plans-banner {
    padding-top: 130px;
    /* background: linear-gradient(180deg, rgba(255, 201, 80, 0.4) 0%, rgba(250, 172, 0, 0.4) 100%); */
    position: relative;
    background-image: url(../images/plan-top-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 774px;
    width: 100%;
}

.plans-banner::after{
    height: 655px;
}
/*.plans-banner::after {
    content: '';
    top: 0;
    left: 0;
    background-image: url(../images/pricing-banner-shape.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 655px;
    position: absolute;
    z-index: -1;
}*/

/* Responsive adjustments */
@media (max-width: 900px) {
  .price-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .row.g-4 {
    --bs-gutter-x: 0.85rem;
  }
}

/**END**/


/**Faqs col***/
.faq-title {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #A60000;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 18px;
  box-shadow: 0 3px 19px rgba(51,10,15,0.1);
  gap: 16px;
}
.faqt-leaves svg {
  vertical-align: middle;
}
.faq-card {
  background: #FFEDAB;
  border-radius: 20px !important;
  border: 2px solid var(--color-primary) !important;
  box-shadow: 0px 16px 16px 0px #00000029;
}
.accordion-button {
    background: none !important;
    border: none;
    border-radius: 13px !important;
    font-size: 20px;
    box-shadow: none !important;
    font-weight: 800;
    padding: 30px 40px 30px 40px;
    color: var(--color-primary);
}
.accordion-body {
    background: none;
    font-size: 18px;
    color: #1E1E1E;
    border-radius: 0;
    padding: 0px 40px 30px 40px;
}

.accordion-button:focus {
  box-shadow: 0 2px 12px rgba(195,54,12,0.04);
}
.accordion-button:not(.collapsed) {
  color: var(--color-primary);
}
.faq-section {
    background: rgb(253, 205, 98);
    padding-top: 130px;
    padding-bottom: 250px;
    position: relative;
}
.faq-section::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1441px;
    background-image: url(../images/faq-shape.webp);
    background-repeat: no-repeat;
    background-size: cover; background-position: center; z-index: 0;
}
.faq-section .container{position: relative; z-index: 1;}
.faq-title .title-text {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 133%;
}
.accordion-button::after {
    width: 24px;
  height: 24px;
  background-color: #A60000;
  border-radius: 50%;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 32 20' width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpolyline points='2,2 16,18 30,2' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;   /* Horizontally & vertically centered! */
  vertical-align: middle;               /* Adjust if needed */
  position: relative;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
   display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 32 20' width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpolyline points='2,2 16,18 30,2' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;   /* Horizontally & vertically centered! */
  vertical-align: middle;               /* Adjust if needed */
  position: relative;
}

/**END**/


/**About Us**/
.warpper-about {
    background: linear-gradient(180deg, rgba(255, 201, 80, 0.5) 0%, rgba(250, 172, 0, 0.5) 100%);
    padding-top: 95px;
    padding-bottom: 210px;
    overflow: hidden;
}
.about-banner-content h1 {
    font-size: 3.25rem;
    font-weight: 600;
    margin-bottom: 1rem; color: var(--color-primary);
    text-shadow: 0px 4px 4px #00000033;
}
.about-banner-content p{
    font-size: 20px; color: var(--color-primary); font-style: italic; font-weight: 500; list-style: 28px; margin-bottom: 0px;
}
.about-banner-img {
    text-align: right;
}
.aboutUs-banner {
    position: relative;
}
.about-flowerbg {
    position: absolute;
    top: -95px;
    right: 0;
    z-index: 0;
}
.aboutUs-banner .container {
    position: relative;
    z-index: 1;
}
body.pricing-page.about-page .header-top {
    background-color: transparent;
}
body.pricing-page.about-page .header-top.sticky {
    background-color: #ffe4a7;
}
.about-banner-shape {
    position: absolute;
    top: -95px;
    left: 0;
    z-index: -1;
}
.about-vision-box {
    background: rgb(253 209 112 / 59%);
    position: relative;
    border-radius: 50px;
    padding: 49px 60px;
    margin-bottom: 60px; overflow: hidden;
}
.about-belief-content {
    max-width: 423px;
}
.about-belief-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem; color: var(--color-primary);
    text-shadow: 0px 4px 4px 0px #00000033;
}
.about-belief-content p{font-size: 1.125rem; color: var(--color-primary);
font-family: var(--content-font); font-weight: 500; line-height: 130%;
}
.about-vision-col h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 120%;
    display: flex;
    gap: 16px;
    margin-bottom: 12px; color: var(--color-primary);
}
.about-vision-col p{
    font-size: 1.125rem; list-style: 30px;
}
.about-content-rtl {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.about-box-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.about-vision-box .row {
    position: relative;
}

.founder-col {
    position: relative;
    background-image: url(../images/founder-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 94px 80px 116px 80px;
}
span.left-quote {
    position: absolute;
    top: -32px;
    left: -22px;
}

span.right-quote {
    position: absolute;
    bottom: -32px;
    right: -22px;
}
span.right-quote {
    position: absolute;
    bottom: 14px;
    right: -29px;
}
.founder-title h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    text-shadow: 0px 4px 4px #00000033;
    line-height: 140%;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 12px;
}
.founder-title p{font-size: 1.125rem;  line-height: 150%; margin-bottom: 12px;}
.founder-name {
    font-size: 1.125rem;
    color: #1E1E1E;
    font-weight: 500;
}
.trust-col {
    padding-top: 64px; padding-bottom: 60px;
}
.work-title.trust-title .main-title {
    font-size: 2.5rem;
}
.work-title.trust-title .line.left {
    background-image: url(../images/trust-left-leaf.webp);
}
.work-title.trust-title .line.right {
    background-image: url(../images/trust-leaf-right.webp);
}
.work-title.trust-title .line {
    width: 248px;
    height: 54px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.trust-box {
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 18px;
    display: grid;
    text-align: center;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center; background-color: var(--color-primary);
}
.trust-content p {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 0;
    line-height: 150%;
    font-weight: 400;
    margin-top: 12px;
}
.trust-2grid {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 40% 1fr;
    gap: 1rem;
}
.trust-2grid .trust-Grid-col {
    background-color: #FFEDAB;
    border-radius: 20px;
    border: 2px solid var(--color-primary);
    text-align: center;
    padding: 32px 40px;
    box-shadow: 0px 16px 16px 0px #00000029;
}
.trust-Grid-col h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px; color: var(--color-primary);
}
.trust-Grid-col p {
    font-size: 1.125rem;
    line-height: 150%;
    max-width: 310px;
    margin: auto;
}
.trust-Grid-col ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.about-inner-div {
    position: relative;
}
.about-bg-flower img {
    position: absolute;
    top: 39%;
    left: 42%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.problem-section .col-xl-10 {
    width: 916px;
}
.f-logo-des {
    margin-bottom: 1rem;
}

.banner-content {
    padding-top: 0;
    position: absolute;
    bottom: 81px;
    left: 50%;
    margin: auto;
    width: 100%;
    transform: translate(-50%);
}
.hm-banner-wrapper .container, .hm-banner-wrapper .row {
    height: inherit;
    position: static;
}
.hm-banner-wrapper {
    min-height: 854px;
    position: relative;
}

.slide-test .owl-carousel .owl-item.active .card {
 background-color: #FFEDAB;
  position: relative;
  z-index: 2;
}

.personal-col:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #feaf27;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}
.theProblem-Banner .img-left {
    position: relative;
    top: -14px;
}

.user-proof-img {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%); z-index: 2;
}
.proof-slider .owl-carousel .owl-item {
    padding-bottom: 90px;
}

/* Desktop (1199px and up) */
@media (min-width: 1199px) {
  .slide-test .owl-stage {
    margin-left: -220px;
  }
}


/* Laptop/Tablets (992px and up) */
@media (min-width: 992px) and (max-width: 1198px) {
  .slide-test .owl-stage {
    margin-left: -100px;
  }
}
/* iPad (768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .slide-test .owl-stage {
    margin-left: -70px;
  }
}

/* Mobile (0 - 767px) */
@media (max-width: 767px) {
  .slide-test .owl-stage {
    margin-left: 0px !important;
  }
}

@media screen and (max-width:1400px) {
.work-title.soc-proof-title .line {
    width: 315px;
    height: 22px;
}
.social-proof {
    margin-top: 80px;
}

}

@media screen and (max-width:1680px) {
.banner-content {
    bottom: 65px;
}

}

@media screen and (max-width:1536px) {
.problem-rtl-img {
    right: 17px;
}

}
@media screen and (max-width:1440px) {
.problem-rtl-img img {
    width: 100%;
}
.problem-rtl-img {
    right: -96px;
}
.main-title {
    font-size: 3rem;
}
.personal-MobileImg {
    top: -168px;
}
.work-title.whyMms .line {
    width: 271px;
}
}


@media screen and (max-width:1366px) {
/*.proof-slider .owl-stage-outer::before, .proof-slider .owl-stage-outer::after {
    width: 270px;
}*/
span.left-quote {
    left: -28px;
}
span.right-quote {
    right: -44px;
}
.about-box-shape {
    right: -122px;
}
.about-banner-shape {
    left: -177px;
}
.founder-col {
    padding: 61px 66px 116px 80px;
}
.about-flowerbg {
    right: -70px;
}

.work-title.whyMms .line {
    width: 250px;
}
.shape1 {
    right: -27%;
}
.shape2 {
    right: -43%;
        width: 900px;
    height: 900px;
}
.stories-bg {
    padding: 80px 0px 422px 0px;
}
.personal-MobileImg {
    top: -166px;
}
.personal-MobileImg img {
    max-width: 100%;
}
.problem-section {
    padding-top: 0px;
}
.problem-rtl-img {
    width: 30%;
}
.banner-content {
    bottom: 102px;
}
.about-banner-content {
    padding-right: 140px;
}
}


@media screen and (max-width:1199px) {
    .about-banner-content {
    padding-right: 0;
}
.stories-bg .slide-test {
    right: -38%;
}
.slider-div:after {
    width: 192px;
}
    .problem-section .col-xl-10 {
    width: 74%;
}
.problem-rtl-img {
    right: -109px;
}
.problem-rtl-img {
    width: 39%;
}
.problem-section {
    padding-top: 25px;
}
.banner-content {
    bottom: 69px;
}
.hm-banner-wrapper {
    min-height: 768px;
    position: relative;
}

    .about-banner-shape {
    left: -267px;
        top: -197px;
}
.about-banner-content h1 {
    font-size: 3.10rem;
}
.about-box-shape {
    right: -237px;
    display: none;
}
.about-box-shape img {
    height: 88vh;
}
.left-quote img, .right-quote img {
    width: 70px;
}
span.left-quote {
    left: -18px;
}
span.right-quote {
    right: -25px;
    bottom: 20px;
}
.founder-col {
    padding: 55px 35px 88px 50px;
    background-size: 100% 100%;
}
.trust-2grid {
    grid-template-columns: 34% 1fr;
}
.about-banner-img img {
    width: 100%;
}
.about-flowerbg {
    right: -188px;
}
    .plans-title img {
    max-width: 650px;
}
 .shape-host {
    width: 800px;
    height: 800px;
}
.features-row {
    gap: 16px;
}
.work-title.features-title .line {
    width: 220px;
}
.main-menu li.nav-item a.nav-link {
    padding: 8px 9px;
}
.main-title {
    font-size: 2.525rem;
}
.work-title.whyMms .line {
    width: 200px;
}
.cost-section {
    padding: 80px 0px 80px 0px;
}
.probList ul li, .personal-top p, .work-box p {
    font-size: 1.125rem;
}
.probResult p, .work-box h3 {
    font-size: 1.375rem;
}
.hm-banner-wrapper .container, .hm-banner-wrapper .row {
    height: inherit;
    position: static;
}
.nav-storeBtn img {
    height: 35px;
}

.stories-bg {
    padding: 80px 0px 390px 0px;
}
.slide-test .owl-stage-outer:after {
    width: 93px;
}
.stories-bg .slide-test {
    top: 44%;
}
.shape1 {
    right: -36%;
}
.shape2 {
    right: -54%;
}
.personal-MobileImg {
    top: -193px;
}

}
@media screen and (max-width: 768px) {
 .slide-test .owl-stage {
     margin-left: -70px;
  }
}

@media screen and (max-width: 991px) {
    .slider-div:after {
    width: 133px;
}

    .about-vision-box {
    background: rgb(253 209 112 / 70%);
}
.about-vision-col h3 {
    font-size: 1.75rem;
}
.about-content-rtl {
    gap: 45px;
}
.founder-title h3 {
    font-size: 1.75rem;
}
.work-title.trust-title .line {
    width: 180px;
}
.trust-2grid {
    grid-template-columns: 1fr;
}
.warpper-about {
    padding-bottom: 170px;
}
    .about-banner-content h1 {
    font-size: 2.610rem;
}
.about-banner-content p {
    font-size: 18px;
}
.about-box-shape {
    display: none;
}
.about-banner-shape {
    left: -382px;
    top: -299px;
}
.about-flowerbg {
    right: -321px;
}
.about-belief-content {
    max-width: 100%;
    margin-bottom: 2rem;
}
.about-belief-content h2 {
    font-size: 2.25rem;
}
.about-banner-content {
    padding-bottom: 40px;
}
.pricing-page .navbar-toggler .icon-bar {
    background-color: #000;
}
.pricing-page .main-menu li.nav-item a.nav-link {
    color: #fff;
}
    .plans-title img {
    max-width: 550px;
}
.price-card h4 {
    font-size: 1.75rem;
}
.price-card .small-price {
    margin-top: 0;
}
.price-card {
    padding: 15px !important;
}
.price-card  ul li {
    font-size: 1.063rem;
}
.shape-host {
    width: 650px;
    height: 650px;
}
.price-card ul {
    gap: 8px;
}
.work-title.soc-proof-title .line {
    width: 188px;
}
.features-row {
    grid-template-columns: 1fr 35%;
}
.features-col-left {
    gap: 32px;
}
.features-col-center + .features-col-left {
    margin-top: 32px;
}
    .header-top {
    padding: 15px 0px;
}
.navbar-toggler {
        border: none;
        outline: 0;
        padding: 0;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler .icon-bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #fff;
        border-radius: 2px;
        transition: 0.4s ease-in-out;
    }
    .navbar-toggler.collapsed .icon-bar:first-child,
    .navbar-toggler.collapsed .icon-bar:nth-child(3) {
        transform: rotate(0) translate(0, 0);
    }
    .navbar-toggler.collapsed .icon-bar:nth-child(2) {
        opacity: 1;
    }
    .navbar-toggler:not(.collapsed) .icon-bar:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .navbar-collapse {
        background-color:var(--color-primary);
        position: absolute;
        top: 51px;
        left: 0;
        width: 100%;
        padding-bottom: 15px;
    }

.main-menu li.nav-item a.nav-link {
    padding: 12px 25px;
}
.problem-rtl-img {
    display: none;
}
.personal-bottom-col {
    height: inherit;
    padding-bottom: 0;
}
.personal-hm_heart-grid {
    position: relative;
    top: -109px;
    row-gap: 24px;
}
.personal-MobileImg {
    top: -80px;
}
.comparison-table thead th {
    font-size: 22px;
}
.comparison-table tbody td {
    font-size: 18px;
}
.slide-test .owl-stage-outer:after {
    width: 54px;
}
.shape2 {
    right: -81%;
}
.shape1 {
    right: -62%;
}
.f-right {
    grid-template-columns: 1fr;
    float: none;
    max-width: 100%;
    row-gap: 10px;
}
.f-right h4 {
    margin-bottom: 8px;
}
.work-box {
    padding: 15px;
}
.work-title.whyMms .line {
    width: 334px;
}
footer::before {
    top: -109px;
    height: 110px;
}
.faq-section {
    padding-bottom: 200px;
}
.problem-section .col-xl-10 {
    width: 100%;
}
.hm-banner-wrapper {
    min-height: 715px;
}
}

@media screen and (max-width: 767px) {
.proof-slider .owl-carousel .owl-item .slider-warpper {
    padding: 32px 32px 40px 32px;
        min-height: inherit;
}
.personal-col:before {
    height: 30px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
}
.theProblem-Banner .right-img {
    top: -18px;
}
.theProblem-Banner .img-left {
    top: -20px;
}
.price-card .top-bg {
    left: -2px;
    top: -2px;
    width: 101%;
}
        .slider-div:after {
    display: none;
}
  .stories-bg .slide-test {
    position: relative;
    right: inherit;
    top: inherit;
    transform: inherit;
    z-index: 1;
}
    .hm-banner-wrapper {
    min-height: 700px;
}
.problem-section {
    padding-top: 76px;
}
.banner-content {
    bottom: 45px;
}
.theProblem-Banner {
    margin-top: 0;
        gap: 5px;
}
    .about-banner-shape {
    left: -387px;
    top: -97px;
}
.about-banner-img img {
    width: 75%;
}
.about-banner-img {
    text-align: center;
}
.about-banner-content {
    text-align: center;
}
.about-flowerbg img {
    width: 60%;
}
.about-flowerbg {
    right: -430px;
}
.about-vision-box {
    padding: 35px 50px;
    border-radius: 30px;
}
.left-quote img, .right-quote img {
    width: 50px;
}
span.left-quote {
    left: -24px;
    top: -21px;
}
span.right-quote {
    right: -23px;
    bottom: -20px;
}
.founder-col {
    padding: 45px 35px 45px 45px;
    background-color: #faac01;
    border-radius: 20px;
    background-image: none; border: 2px solid var(--color-primary);
}
.work-title.trust-title .main-title {
    font-size: 2.25rem;
}
.about-bg-flower img {
    width: 100%;
}
.trust-content p {
    font-size: 1rem;
    line-height: 130%;
}
.trust-2grid {
    display: flex;
    flex-direction: column;
}
.trust-Grid-col ul {
    gap: 10px;
}
.trust-Grid-col ul img {
    width: 90%;
}
.trust-col {
    padding-bottom: 0;
}
.price-card h4.price-t {
    line-height: 28px;
}
    .faq-section::after{display: none;}
.price-card .top-bg {
    background-size: 100% 83%;
}
.price-card h4 {
    min-height: 90px;
    padding-top: 0px;
    line-height: 50px;
}
.plans-banner {
    height: 100%;
}
.blank-col {
    display: none;
}
section.plans-banner {
    padding-top: 105px;
    padding-bottom: 150px;
}
    .plans-title img {
    max-width: 450px;
}
    .features-row {
    grid-template-columns: 1fr;
}
.features-col-left {
    max-width: 100%;
}
.features-col-center {
    top: 0;
    margin-top: 32px;
}
.shape-host {
    width: 400px;
    height: 341px;
}
.features-section {
    padding-bottom: 100px;
    top: -23px;
}
.proof-slider .owl-carousel .author-name, .proof-slider .owl-carousel .author-location {
    font-size: 18px;
}
.proof-slider .owl-carousel .testimonial-footer {
    gap: 11px;
}
.proof-slider .first_name {
    width: 28px;
    height: 28px;
    line-height: 28px;
}
.proof-slider .owl-carousel .author-img {
    width: 65px;
    height: 65px;
}
.innerPage-Banner {
    min-height: 620px;
}
.features-col-center + .features-col-left {
    margin-top: 10px;
}

.banner-content h1 {
    font-size: 2.875rem;
}
.banner-content p {
    font-size: 1.125rem;
}
.problem-inner-list {
    grid-template-columns: 1fr;
}
.personal-col {
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    padding-top: 40px;
}
.main-title {
    font-size: 2.25rem;
    line-height: 130%;
}
.personal-hm_heart-grid {
    row-gap: 30px;
    column-gap: 30px;
        grid-template-columns: 1fr;
}
.work-title .line {
    width: 120px;
}
.work-row .col-lg-4.col-md-4 {
    margin-bottom: 32px;
}
.work-title.whyMms .line {
    width: 260px;
}
.work-title.whyMms {
    margin-top: 60px;
}
.works-col {
    padding-bottom: 20px;
}
.cost-section {
    padding: 60px 0px 30px 0px;
}
.cost-list ul li {
    font-size: 1.25rem;
    line-height: 120%;
}
.cost-footer p {
   font-size: 1.25rem;
}
.shape1, .shape2 { display: none;
}
.slide-test .owl-stage-outer:after{display: none;}
.stories-bg {
    padding: 60px 0px 125px 0px;
}
.f-left {
    margin-bottom: 2rem;
}
.cost-mobileImg {
    margin-top: 2rem;
}
.f-chat ul li a img {
    height: 32px;
}
footer::before {
    top: -73px;
    height: 76px;
}
.stories-title img {
    max-width: 120px;
}
.stories-bg .slider-btn {
    top: -12px;
}
.slide-test .card-body {
    padding: 20px;
}
.Stories-boxImg img {
    width: 60px!important;
    height: 60px;
}
.btn-yellow {
    font-size: 1.125rem;
    padding: 10px 40px;
}
.btn-red {
    font-size: 1.125rem;
    padding: 10px 25px;
}
.cost-footer p {
    margin-bottom: 30px;
    line-height: 120%;
}
.banner-btn {
    display: flex;
    gap: 5px;
    justify-content: center;
}
.innerPage-Banner .banner-content {
    width: 100%;
}
.features-section {
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    padding-top: 40px;
}
.features-col-left .content-left h3 {
    font-size: 1.5rem;
}
.features-col-left .content-left p {
    font-size: 1.125rem;
}
.work-title.soc-proof-title .line {
    width: 115px;
}
.proof-slider .owl-carousel .testimonial-content {
    font-size: 1rem;
    padding-left: 20px;
}
.proof-slider .owl-carousel .owl-item {
    padding: 24px;
}
.shape-host {
    width: 300px;
    height: 266px;
}
.banner-content {
    padding-left: 12px;
    padding-right: 12px;
}
.faq-title .faqt-leaves {
    display: none;
}
.faq-title .title-text {
    font-size: 2.25rem;
}
.faq-section {
    padding-bottom: 150px;
}
}


@media screen and (max-width: 575px) {
    .proof-slider .owl-carousel .owl-item {
    padding-bottom: 40px;
}
.about-banner-shape {
    left: -552px;
    top: -98px;
}
.about-banner-content h1 {
    font-size: 2.25rem;
}
.about-belief-content h2 {
    font-size: 2rem;
}
.about-vision-box {
    padding: 35px 30px; border-radius: 26px;
}
.about-content-rtl {
    gap: 15px;
}
span.left-quote {
    left: -7px;
    top: -21px;
}
.left-quote img, .right-quote img {
    width: 40px;
}
span.right-quote {
    right: -9px;
    bottom: -22px;
}
.founder-col {
    padding: 35px;
}
.about-vision-col h3, .founder-title h3 {
    font-size: 1.625rem;
}
.work-title.trust-title .main-title {
    font-size: 2rem;
}
.trust-content img {
    width: 50%;
}
.trust-content p {
    min-height: 42px;
}
.trust-box {
    padding: 25px 20px;
}
.about-flowerbg {
    right: -590px;
}
.plans-title h1 {
    font-size: 2.25rem;
    line-height: 126%;
}
.cost-section {
    padding: 60px 0px 0px 0px;
}
.main-title {
    font-size: 2rem;
    line-height: 120%;
}
.slide-test .des {
    font-size: 1rem;
}
.slide-test .title {
    font-size: 1.125rem;
}
.Stories-boxImg img {
    width: 48px!important;
    height: 48px;
}
.slide-test .Stories-boxImg {
    margin-bottom: 10px;
}
.cost-list ul li {
    font-size: 1.125rem;
}
.cost-footer p {
    font-size: 1.125rem;
}
.work-title.whyMms .line {
    width: 131px;
}
.comparison-table tbody td {
    font-size: 16px;
}
.comparison-table thead th {
    font-size: 18px;
}
.banner-content h1 {
    font-size: 2.25rem;
}
.probList ul li {
    line-height: 112%;
}
.personal-bottom-col .order-sm-1 {
    order: -1;
}
.personal-MobileImg {
    top: -40px;
}
.personal-hm_heart-grid {
    top: -82px;
}
.hm_heart-list {
    grid-template-columns: 55px 1fr;
}
.heart-icon img {
    height: 22px;
}
.heart-icon {
    line-height: 48px;
    background-size: 55px;
}
.work-title .line {
    width: 185px;
}
.work-title.whyMms {
    margin-top: 30px;
}

.main-menu li.nav-item a.nav-link {
    padding: 12px 12px;
}
.nav-storeBtn {
    margin-left: 12px;
}
.banner-btn .btn-red:first-child {
    margin-right: 0px;
}
.problem-section {
    padding-top: 140px;
}
.personal-MobileImg {
    top: -50px;
}
}

@media screen and (max-width: 480px) {
.plans-title img {
    max-width: 100%;
}
}

