/* ===== Amena Vida — shared stylesheet ===== */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap");

:root {
  --green: #4a5d4a;
  --green-deep: #33422f;
  --sage: #7d9471;
  --cream: #f6f2e9;
  --sand: #efe7d6;
  --terra: #c08457;
  --ink: #2c2f2a;
  --muted: #6b6f64;
  --white: #fffdf8;
  --shadow: 0 18px 50px -20px rgba(51, 66, 47, 0.35);
  --radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--green-deep);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--terra);
  color: #fff;
}

.btn-primary:hover {
  background: #a96f47;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--sage);
}

.btn-ghost:hover {
  background: var(--sage);
  color: #fff;
}

.eyebrow {
  font-family: "Inter";
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--terra);
}

/* photo placeholder for Saria's images */
.photo-slot {
  background: repeating-linear-gradient(
    45deg,
    #e7dfce,
    #e7dfce 12px,
    #efe7d6 12px,
    #efe7d6 24px
  );
  border: 2px dashed var(--sage);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green-deep);
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  padding: 24px;
}

/* top bar */
.topbar {
  background: var(--green-deep);
  color: #e9e4d6;
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap;
  gap: 10px;
}

/* nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 233, 0.92);
  /* backdrop-filter: blur(10px); */
  border-bottom: 1px solid rgba(51, 66, 47, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.logo {
  font-family: "Fraunces";
  font-size: 24px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.logo small {
  display: block;
  font-family: "Inter";
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-top: -2px;
}

/* Arabic / RTL testimonials */
.quote.rtl {
  direction: rtl;
  text-align: right;
}

.quote.rtl p {
  font-size: 16.5px;
  line-height: 1.9;
}

.lang-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e5b45c;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* promo banner */
.promo {
  background: linear-gradient(120deg, var(--terra), #a96f47);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 30px;
  text-align: center;
  margin-bottom: 44px;
}

.promo h3 {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 6px;
}

.promo p {
  opacity: 0.95;
  margin-bottom: 6px;
}

.promo .code {
  display: inline-block;
  background: #fff;
  color: var(--green-deep);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-top: 8px;
  font-size: 15px;
}

.navlinks {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}

.navlinks a:hover {
  color: var(--terra);
}

.navlinks a.active {
  color: var(--terra);
}
@media (min-width: 880.99px) {
  .mobileNav {
    display: none;
  }
}
@media (max-width: 880.98px) {
  .navlinks {
    display: none;
  }
}

/* page hero (interior pages) */
.page-hero {
  background: var(--sand);
  text-align: center;
  padding: 64px 24px 56px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin: 14px 0 12px;
}

.page-hero p {
  color: var(--muted);
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin: 12px 0 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

/* footer */
footer {
  background: var(--green-deep);
  color: #cbcdbf;
  padding: 60px 0 30px;
  font-size: 15px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}


footer h4 {
  color: #fff !important;
  font-family: "Inter" !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  font-weight: 600 !important;
}

footer a {
  display: block !important;
  margin-bottom: 9px !important;
  color: #cbcdbf !important;
}

footer a:hover {
  color: #fff !important;
}

.foot-logo {
  font-family: "Fraunces" !important;
  font-size: 26px !important;
  color: #fff !important;
  margin-bottom: 12px !important;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  margin-top: 40px !important;
  padding-top: 20px !important;
  text-align: center !important;
  font-size: 13px !important;
  color: #a7ab9c !important;
}

@media (max-width: 880px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 400px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
/* floating whatsapp */
.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 60;
  font-size: 15px;
}

/* reusable cards */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

@media (max-width: 880px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 450px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  section{
    padding: 50px 0px;
  }
}
.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid rgba(51, 66, 47, 0.06);
}

.info-card h4 {
  font-size: 19px;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 15px;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--terra), #a96f47);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 56px 30px;
  margin: 0 24px;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}

.cta-band p {
  max-width: 520px;
  margin: 0 auto 26px;
  opacity: 0.95;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--green-deep);
}

.cta-band .btn-primary:hover {
  background: var(--cream);
}

.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* testimonials */
.testi {
  background: var(--green-deep);
  color: #eee7d7;
}

.testi h2 {
  color: #fff;
}

.testi .section-head p {
  color: #c9cbbd;
}

.quote {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px;
}

.quote p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  color: #f1ecdf;
}

.quote .who {
  font-weight: 600;
  font-size: 14px;
  color: var(--terra);
}

.stars {
  color: #e5b45c;
  margin-bottom: 12px;
  font-size: 15px;
}

.mock-note {
  background: #33422f;
  color: #e9e4d6;
  text-align: center;
  font-size: 12.5px;
  padding: 8px;
  letter-spacing: 0.02em;
}
.mock-note marquee {
  max-width: 1160px;
  margin: auto;
}

/* CODE FOR NAVBAR MOBILE VERSION  */
/* The Overlay (background) */
header .overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(51, 66, 47); /* Black fallback color */
  background-color: rgba(51, 66, 47, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
header .overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
header .overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 20px;
  color: #ffffffff;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
header .overlay a:hover,
header .overlay a:focus {
  color: #f1f1f1;
}
header .overlay a.btn.btn-primary {
  width: 180px;
  margin: auto;
  font-size: 16px;
}

/* Position the close button (top right corner) */
header .overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 30px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  header .overlay a {
    font-size: 20px;
  }
  header .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
header .mobileNav i{
  font-size: 18px !important;
  color: #33422F;
}


    .hero .wrap {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 50px;
      align-items: center;
      padding: 70px 24px 80px;
      position: relative;
    }

    .hero h1 {
      font-size: clamp(38px, 5vw, 60px);
      margin-bottom: 22px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--terra);
    }

    .hero p.lead {
      font-size: 19px;
      color: var(--muted);
      margin-bottom: 30px;
      max-width: 520px;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }

    .trust {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
    }

    .trust b {
      color: var(--green-deep);
    }

    .hero-photo {
      height: 520px;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.5;
      z-index: -1;
    }

    .svc {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 10px 30px -18px rgba(51, 66, 47, 0.3);
      display: flex;
      flex-direction: column;
      transition: 0.25s;
      border: 1px solid rgba(51, 66, 47, 0.05);
    }

    .svc:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .svc img {
      height: 200px;
      object-fit: cover;
      width: 100%;
    }

    .svc-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }

    .svc-body h3 {
      font-size: 22px;
    }

    .svc-body p {
      color: var(--muted);
      font-size: 15px;
      flex: 1;
    }

    .svc-body a {
      color: var(--green-deep);
      font-weight: 600;
      font-size: 15px;
    }

    .svc-body a:hover {
      color: var(--terra);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      counter-reset: step;
    }

    .step {
      background: var(--white);
      border-radius: 16px;
      padding: 30px 26px;
    }

    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      font-family: "Fraunces";
      font-size: 42px;
      color: var(--terra);
      opacity: 0.35;
      display: block;
      margin-bottom: 8px;
    }

    .step h4 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .step p {
      color: var(--muted);
      font-size: 15px;
    }

    .shop-band {
      background: var(--white);
    }

    .shop-band .wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: center;
    }

    .shop-band .photo-slot {
      height: 340px;
    }

    @media (max-width: 880px) {
      .hero .wrap {
        grid-template-columns: 1fr;
        padding: 40px 24px;
      }

      .hero-photo {
        order: -1;
        height: 360px;
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .shop-band .wrap {
        grid-template-columns: 1fr;
      }
    }


     .about-main .wrap {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 50px;
        align-items: center;
      }
      .about-main img {
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        height: 560px;
        width: 100%;
        object-fit: cover;
        object-position: top center;
      }
      .about-main h2 {
        font-size: clamp(28px, 3.4vw, 38px);
        margin: 12px 0 18px;
      }
      .about-main p {
        color: var(--muted);
        margin-bottom: 16px;
      }
      .creds {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 22px;
      }
      .cred {
        background: var(--white);
        border: 1px solid rgba(51, 66, 47, 0.1);
        border-radius: 100px;
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 600;
        color: var(--green-deep);
      }
      .values .info-card h4 {
        font-size: 20px;
      }
      @media (max-width: 880px) {
        .about-main .wrap {
          grid-template-columns: 1fr;
        }
        .about-main .photo-slot {
          height: 400px;
        }
      }

          .svc-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: center;
      padding: 26px 0
    }

    .svc-row.alt img {
      order: 2
    }

    .svc-row img {
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      height: 360px;
      width: 100%;
      object-fit: cover
    }

    .svc-row h3 {
      font-size: clamp(26px, 3vw, 34px);
      margin: 10px 0 14px
    }

    .svc-row p {
      color: var(--muted);
      margin-bottom: 14px
    }

    .svc-row ul {
      list-style: none;
      margin: 0 0 18px
    }

    .svc-row li {
      padding: 5px 0 5px 26px;
      position: relative;
      color: var(--ink);
      font-size: 15.5px
    }

    .svc-row li::before {
      content: "✦";
      position: absolute;
      left: 0;
      color: var(--terra)
    }

    .price-tag {
      display: inline-block;
      background: var(--sand);
      border-radius: 100px;
      padding: 8px 18px;
      font-weight: 600;
      color: var(--green-deep);
      font-size: 14px;
      margin-bottom: 18px
    }

    .divider {
      border: none;
      border-top: 1px solid rgba(51, 66, 47, .1);
      margin: 20px 0
    }

    .plan {
      background: var(--white);
      border-radius: 18px;
      padding: 30px 26px;
      border: 1px solid rgba(51, 66, 47, .08);
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .plan.featured {
      border: 2px solid var(--terra);
      box-shadow: var(--shadow);
      position: relative
    }

    .plan.featured::after {
      content: "Most popular";
      position: absolute;
      top: -12px;
      left: 26px;
      background: var(--terra);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px
    }

    .plan .tag {
      font-size: 12px;
      color: var(--terra);
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase
    }

    .plan h3 {
      font-size: 23px;
      margin-top: 4px
    }

    .plan .amount {
      font-family: 'Fraunces';
      font-size: 34px;
      color: var(--green-deep);
      font-weight: 600
    }

    .plan .amount small {
      font-size: 15px;
      color: var(--muted);
      font-weight: 400
    }

    .plan p {
      color: var(--muted);
      font-size: 15px;
      flex: 1
    }

    @media(max-width:880px) {
      .svc-row {
        grid-template-columns: 1fr;
        padding: 16px 0
      }

      .svc-row.alt img {
        order: 0
      }

      .svc-row img {
        height: 280px
      }
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: start
    }

    .form-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 34px;
      box-shadow: 0 10px 30px -18px rgba(51, 66, 47, .3);
      border: 1px solid rgba(51, 66, 47, .05)
    }

    .form-card h3 {
      font-size: 24px;
      margin-bottom: 6px
    }

    .form-card p.sub {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 22px
    }

    .field {
      margin-bottom: 16px
    }

    .field label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--green-deep);
      margin-bottom: 6px
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid rgba(51, 66, 47, .18);
      border-radius: 10px;
      font-family: inherit;
      font-size: 15px;
      background: var(--cream)
    }

    .field textarea {
      min-height: 110px;
      resize: vertical
    }

    .two {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .contact-info .ci {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 22px
    }

    .contact-info .ci .ic {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0
    }

    .contact-info .ci b {
      display: block;
      color: var(--green-deep);
      font-family: 'Fraunces';
      font-size: 18px
    }

    .contact-info .ci span {
      color: var(--muted);
      font-size: 15px
    }

    .book-box {
      background: var(--sand);
      border-radius: 16px;
      padding: 26px;
      margin-top: 8px
    }

    .book-box h4 {
      font-size: 20px;
      margin-bottom: 6px
    }

    .book-box p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 16px
    }

    @media(max-width:880px) {
      .contact-grid {
        grid-template-columns: 1fr
      }

      .two {
        grid-template-columns: 1fr
      }
    }


    .prod {
      background: var(--white);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(51, 66, 47, .07);
      display: flex;
      flex-direction: column;
      transition: .25s
    }

    .prod:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow)
    }

    .prod .ph {
      height: 240px;
      background: linear-gradient(135deg, var(--sage), var(--green));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-family: 'Fraunces';
      font-size: 22px;
      text-align: center;
      padding: 20px
    }

    .prod .photo-slot {
      height: 240px;
      border-radius: 0;
      border: none;
      border-bottom: 2px dashed var(--sage)
    }

    .prod-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1
    }

    .prod-body h4 {
      font-size: 20px
    }

    .prod-body .tag {
      font-size: 12px;
      color: var(--terra);
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase
    }

    .prod-body p {
      font-size: 14.5px;
      color: var(--muted);
      flex: 1
    }

    .prod-body .price {
      color: var(--green-deep);
      font-weight: 600;
      font-size: 19px
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
      font-weight: 600;
      margin: -2px 0 2px
    }

    .rating .stars-sm {
      color: #e5b45c;
      font-size: 14px;
      letter-spacing: 1px
    }

    .revs {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .rev {
      background: var(--cream);
      border-radius: 10px;
      padding: 10px 12px;
      font-size: 13px;
      color: var(--ink);
      line-height: 1.55
    }

    .rev.ar {
      direction: rtl;
      text-align: right
    }

    .rev .rstars {
      color: #e5b45c;
      font-size: 12px;
      letter-spacing: 1px;
      display: block;
      margin-bottom: 3px
    }

    .pay-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 10px
    }

    .pay-card {
      background: var(--white);
      border: 1px solid rgba(51, 66, 47, .08);
      border-radius: 14px;
      padding: 20px;
      text-align: center
    }

    .pay-card b {
      display: block;
      color: var(--green-deep);
      font-family: 'Fraunces';
      font-size: 17px;
      margin-bottom: 4px
    }

    .pay-card span {
      font-size: 13px;
      color: var(--muted)
    }

    @media(max-width:880px) {
      .pay-row {
        grid-template-columns: 1fr 1fr
      }
    }
      @media(max-width:400px) {
      .pay-row {
        grid-template-columns: 1fr;
      }
    }

/* 	styling Code by Web Dev "Affan Soomro" */
body.elementor-page-24{
	padding: 0px !important;
}