@charset "utf-8";
/*--
  Add your style here
--*/

/* ---------------- menu fixes (as you had) ---------------- */
.menu-wrap {
  right: 0 !important;
  -webkit-transform: translate3d(320px,0,0);
  transform: translate3d(320px,0,0);
  visibility: hidden;
}
.show-menu .menu-wrap,
.show-menu .menu-inner,
.show-menu .morph-shape {
  -webkit-transform: translate3d(-30px,0,0);
  transform: translate3d(-30px,0,0);
}
.show-menu .menu-wrap {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.count-folio { display: none; }
.contact-value {
    float: right;
}


/* =======================================================================
   PROMO WIDGET - CLEAN VERSION
   ======================================================================= */

.promo-widget {
  /* spacing / look */
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

/* Make the widget 2 columns that share the SAME ROWS (title row + list row) */
@media (min-width: 768px) {
  .promo-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr; /* row 1 = title, row 2 = list (stretches) */
    align-items: stretch;
  }

  /* override bootstrap float layout only inside this widget */
  .promo-widget > .col-sm-6 {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    padding-left: 0;   /* optional: if your theme already adds gutters you can keep */
    padding-right: 0;  /* optional */
  }

  /* LEFT column spans both rows, but we control internal layout */
  .promo-widget > .col-sm-6:first-child {
    grid-column: 1;
    grid-row: 1 / span 2; /* title+list area */
    position: relative;
    z-index: 2;
    padding: 34px 28px;
  }

  /* RIGHT image column: align image with list row only */
  .promo-widget > .promo-section-img-right {
    grid-column: 2;
    grid-row: 2; /* ONLY the list row */
    position: relative;
    z-index: 1;
    min-height: 100%;
  }

  /* We need a placeholder in row1 col2 to align rows (empty space equal to title height).
     Create it via pseudo element on the widget. */
  .promo-widget::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
  }
}

/* Mobile: normal stacking */
@media (max-width: 767px) {
  .promo-widget > .col-sm-6 {
    width: 100% !important;
    float: none !important;
  }

  .promo-widget > .col-sm-6:first-child {
    padding: 28px 20px;
  }

  .promo-widget > .promo-section-img-right img {
    min-height: 240px;
  }
}

/* ---------- LEFT SIDE: fade background image under text (ONLY under left col) ---------- */
.promo-widget > .col-sm-6:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--promo-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.18; /* transparency under text */
  pointer-events: none;
  z-index: 0;
}

/* Slight overlay for readability */
.promo-widget > .col-sm-6:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35); /* brighten text area */
  pointer-events: none;
  z-index: 0;
}

/* Keep actual content above overlays */
.promo-widget .promo-section-col,
.promo-widget .promo-section-col * {
  position: relative;
  z-index: 1;
}

/* Remove older vertical-center hacks ONLY inside widget */
.promo-widget .clearfix,
.promo-widget .ver-center,
.promo-widget .ver-center-aligned {
  height: auto !important;
  width: auto !important;
}

/* ---------- H2 styling (force it) ---------- */
.promo-widget .promo-section-col h2.border_50_right_1 {
  margin: 0 0 18px 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #111;
  padding-right: 14px;
  position: relative;
}

/* Simple accent underline on the right (you can tweak) */


/* ---------- OL stretches to fill available height and items share space ---------- */
.promo-widget .high-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: promoStep;

  display: flex;
  flex-direction: column;
  gap: 12px;

  /* KEY: this makes the list take the remaining height of the widget area */
  height: 100%;
}

/* Each LI stretches equally */
.promo-widget .high-numbers > li {
  flex: 1 1 0; /* equal heights */
  min-height: 56px; /* keeps it usable if widget gets short */
  display: flex;
  align-items: center;

  counter-increment: promoStep;
  position: relative;
  padding: 14px 16px 14px 62px;

  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.78);
  border-radius: 14px;
  text-align: left;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  color: #111;
}

/* Number bubble */
.promo-widget .high-numbers > li::before {
  content: counter(promoStep);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

/* ---------- RIGHT IMAGE: full width, same height as list row, cover without deform ---------- */
.promo-widget .promo-section-img-right {
  position: relative;
  width: 100%;
}

.promo-widget .promo-section-img-right img {
  width: 100% !important;  /* full width */
  height: 100% !important; /* fill row height */
  display: block;
  object-fit: cover;
  object-position: center;
}

/* override w-80p inside widget */

.to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 30;
  pointer-events: auto;
  touch-action: manipulation;
}

.to-top i,
.to-top i::before {
  color: #fff !important;
  pointer-events: none;
}

.to-top i::before {
  content: "\f106";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
}

.content-footer::before {
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .to-top {
    min-width: 56px;
    min-height: 56px;
  }
}
.promo-widget .promo-section-img-right .w-80p {
  width: 100% !important;
}

.content-footer .footer-whatsapp-cta {
  margin-top: 20px;
}

.content-footer .footer-whatsapp-cta .subscribe-button {
    text-align: left;
    float: left;
    width: 100%;
    font-weight: 800;
    letter-spacing: 1.5px;
    word-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: .9em;
}

@media only screen and (min-width: 992px) {
  .section-follow-image {
    will-change: transform;
  }
}

.about-box.feature-card p {
  text-align: center;
}

.demo-list li {
  overflow: hidden;
}

.demo-list li img {
  transform: translateZ(0);
  transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
}

.demo-list li:hover img {
  transform: scale(1.15);
}

@media only screen and (max-width: 767px) {
  .det-wrap .col-md-8 > .bold-title,
  .det-wrap .col-md-8 > .pr-subtitle {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.content-footer .contact-value {
  text-align: right;
  margin-top: 6px;
}

.content-footer .contact-value a {
  display: inline-block;
}
