/* =========================================================
   RAINWATER LABS — HOME PAGE
   3 vertical snap sections + horizontal hero scroller
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,700&family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; */
    font-family: "Poppins", sans-serif !important; 
    color: #111;
    background: #fff;
    overflow: hidden; /* the inner snap-container handles scroll */
}

/* The snap container is what actually scrolls */
.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.snap-container::-webkit-scrollbar { display: none; }

.snap-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 60px 60px;
    overflow: hidden;
    position: relative;
}

/* =========================================================
   SECTION 1 — HERO
   ========================================================= */
.hero-section { background:transparent; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: stretch;   /* both columns share the SAME row height */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    /* no fixed height — row height is driven by the LEFT column's content */
}

.hero-left { padding-right: 20px; }

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 3.6vw, 50px);
    font-weight: 500;
    line-height: 1.12;
    color: #111;
    margin: 0 0 22px;
}
.hero-title em {
    font-style: italic;
    font-weight: 700;
    display: block;
    margin-top: 6px;
}

.hero-sub {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 30px;
    max-width: 460px;
}

/* URL input — single pill containing input + button */
.url-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 999px;
    padding: 5px 5px 5px 22px;
    max-width: 500px;
    margin-bottom: 0;
    transition: border-color .2s, box-shadow .2s;
    flex:1;
}
.url-wrap:focus-within {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.url-input {
    flex: 1;
    padding: 12px 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #111;
    font-family: "Poppins", sans-serif;;
    min-width: 0;           /* lets the input shrink inside flex */
}
.url-input::placeholder { color: #b0b0b0; }

/* .url-link-btn{max-width:500px;margin-bottom:20px;} */
.no-website-link-btn{text-align:left;text-decoration:none;color:#333;opacity:.8;text-decoration: underline;display:block;margin-left:22px;}
.no-website-link-btn:hover{color:#333;opacity:1;}
.url-input:focus{background:transparent !important;}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: #000;
  transition: background-color 5000s ease-in-out 0s;
}

.btn-launch {
    background: transparent;
    color: #333;
    border: none;
    width:100%;
    max-width:166.25px;
    height:44.8px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
    font-family: "Poppins", sans-serif;
    border-radius:32px;
    border:1px solid #0F172A;margin:0 0 30px !important;padding:0 !important;
    
}
.btn-launch i.fa-arrow-up {
    transform: rotate(45deg);
}
.btn-launch:hover { background: #2a2a2a;color:#fff; }

.home-btn-launch{padding:0; max-width:180px;
    height:44.8px;display:flex;align-items: center;justify-content: center;background:#333;}
.home-btn-launch a{text-decoration:none;background:transparent;padding:0;width:100%;height:44.8px;color:#fff; display:flex;align-items: center;justify-content:center;}
.home-btn-launch:hover a{color:#fff !important;}
.home-btn-launch .cp-add-btn-icon{font-size:14px !important;line-height:16px;}

/* Trusted block */
.trust-block { margin-top: 10px; }
.trust-label {
    font-size: 11px;
    letter-spacing: 1.6px;
    color: #888;
    margin-bottom: 25px;
    font-weight: 500;
}
/* Marquee container */
.trust-logos {
    overflow: hidden;
    max-width: 415px;
    /* fade the left/right edges so logos appear/disappear softly */
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 6%,
        #000 92%,
        transparent 100%
    );
            mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 6%,
        #000 92%,
        transparent 100%
    );
}

/* The moving track holds two copies of the logo set */
/* Safari needs @-webkit-keyframes + prefixed transform inside */
@-webkit-keyframes marquee {
    from { -webkit-transform: translateX(0);    transform: translateX(0); }
    to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
.trust-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    -webkit-animation: marquee 30s linear infinite;
    animation: marquee 30s linear infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}
/* Pause state also needs prefix */
.trust-track:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.trust-track img {
    height: 26px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    opacity: .85;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-drag: none;
    filter: grayscale(1) opacity(0.90);
    -webkit-filter: grayscale(1) opacity(0.90);
    -webkit-transition: filter 0.3s ease, -webkit-filter 0.3s ease;
    transition: filter 0.3s ease;
}

.trust-track img:hover{
    filter: grayscale(0) opacity(1);
    -webkit-filter: grayscale(0) opacity(1);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }   /* exactly one set's width */
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .trust-track { animation: none; }
}

/* HERO RIGHT — horizontal scroll */
.hero-right {
    overflow: hidden;
    min-height: 0;
    align-self: stretch;
    position: relative;     /* anchor for the prev/next arrows */
}
.image-scroller {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    /* NOTE: scroll-behavior is intentionally NOT set here.
       Previously this rule had `scroll-behavior: smooth`, which made
       EVERY programmatic scrollLeft write animated — including the
       auto-scroll RAF tick's +0.72px increments AND the seamless-loop
       wrap that subtracts halfWidth. Because the wrap was animated
       instead of instant, the next RAF tick saw a stale (mid-lerp)
       scrollLeft and the cycle never reset cleanly, so the user saw
       the strip drift to the end and stop.
       Smoothness for the arrow buttons is now opted-in per-call via
       scrollBy({ behavior: 'smooth' }) — see scrollHero() in
       home_blade.php. */
    scrollbar-width: none;
    border-radius: 6px;
    cursor: grab;
    user-select: none;
}
.image-scroller.dragging { cursor: grabbing; }
.image-scroller::-webkit-scrollbar { display: none; }

.image-track {
    display: flex;
    gap: 14px;
    height: 100%;
}
.scroll-img {
    flex: 0 0 auto;
    width: clamp(450px, 42vw, 500px);
    aspect-ratio: 1 / 1;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #f1f1f1;
    pointer-events: none; /* lets drag work over the images */
}
.scroll-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}


/* Prev / Next arrows over the scroller */
.scroll-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e6e6e6;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: background .2s, transform .15s;
    display:none;
}

.animation-hero-right:hover .scroll-nav{display:flex}
.scroll-nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.scroll-nav.prev { left: 10px}
.scroll-nav.next { right: 10px}

/* =========================================================
   SECTION 2 — SOLUTIONS
   ========================================================= */
.solutions-section { background:transparent;margin-bottom:60px;}

.solutions-wrap {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    color: #111;
    margin: 0 0 40px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 18px;
    height: 62vh;
}

.solution-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #222;
    transition: transform .35s ease;
}
.solution-card:hover { transform: translateY(-4px); }

.solution-card1{background-position:top center;}

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.78) 100%);
}
.solution-content {
    position: absolute;
    bottom: 26px;
    left: 26px;
    right: 26px;
    color: #fff;
    z-index: 2;
}
.solution-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 10px;
    letter-spacing: .3px;
}
.solution-content p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,.92);
    margin: 0;
    max-width:300px;
}

/* =========================================================
   SECTION 3 — LABS  +  PRODUCTS  (dark)
   ========================================================= */
.labs-section {
    background-color: #1c2731;             /* dark fallback if image is missing */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0;
}
.labs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,25,35,.35), rgba(15,25,35,.55));
}

.labs-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 120px;
    height: calc(100% - 15px);
    padding: 30px 70px 50px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    overflow-y:scroll;
}

.labs-grid{scrollbar-width: none;}
.labs-grid::-webkit-scrollbar { display: none; }

/* Vertical divider sitting in the gap between the two columns */
.labs-grid::before {
    content: '';
    position: absolute;
    top: 70px;
    bottom: 90px;
    left: 51.4%;                  /* center of the gap given 1.05fr / 1fr split */
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.labs-left, .labs-right {
    display: flex;
    flex-direction: column;
}

.labs-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 4vw, 40px);
    font-weight: 600;
    margin:0
}

.link-btn{
    text-decoration:none;color: rgb(17, 17, 17);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;;
    background: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 11px 26px;
    border-radius: 999px;
    transition: transform 0.15s, background 0.15s;

}

.labs-block { margin-bottom: 26px; max-width: 520px; }
.labs-block h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
}
.labs-block p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,.92);
    margin: 0;
}

.labs-footer {
    margin-top:0;
    font-size: 11px;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,.6);
}
/* .labs-footer-bottom{padding-top: 10px;} */

.products-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 28px;
}

.product-card { padding: 6px 0 18px; }
.product-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.product-card p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,.9);
    margin: 0 0 18px;
    max-width: 500px;
}

.product-divider {
    height: 1px;
    background: rgba(255,255,255,.18);
    margin: 14px 0;
}

.btn-pill {
    background: #fff;
    color: #111;
    border: none;
    padding: 11px 26px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: transform .15s, background .15s;
    font-family: "Poppins", sans-serif;;
}
.btn-pill:hover { background: #f2f2f2; transform: translateY(-1px); }

.badge-early {
    background: #00008B;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: .3px;
}

.footer-social h4{font-size:16px}

.footer-social .social-icons {
    display: flex;
    gap: 12px;
}

.footer-social .social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: 0.3s;
    text-decoration: none;
    opacity:1;
}

 .footer-social .social-icons a:hover {
    /* background: #2563eb; */
    color: #fff;
    transform: translateY(-2px);
}

.labs-left .no-link-bg{padding:0 !important;background:none !important;}
.labs-left .no-link-bg a{text-decoration: none !important;color:rgba(255,255,255,.6);font-weight:400;font-size:12px;margin-left:15px}
.labs-left .no-link-bg a:hover{color:#fff;opacity:1;}



/* ============================================================
   HERO RIGHT — EDITORIAL FADE SLIDER
   Paste into home.css  (replaces old .hero-right scroller rules)
   ============================================================ */

/* Outer wrapper — flex column so image sits above text */
.hero-editorial-slider {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background:transparent;
}

/* ── Image area ── */
.hes-image-wrap {
    position: relative;
    width: 100%;
    flex: 1 1 auto;          /* take all remaining height above text */
    min-height: 0;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* background: #111; */
}

/* All slides stacked */
.hes-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    -webkit-transition: opacity 1.1s ease;
    transition: opacity 1.1s ease;
     -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity;
    margin:0 auto;
    max-width:calc(100% - 140px);
}

.hes-slide.is-active {
    opacity: 1;
}

.hes-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.hes-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 13px;
}

/* ── Text area below image ── */
.hes-text-wrap {
    flex: 0 0 auto;
    padding: 15px 0 0;
    background: transparent;   /* inherits section bg — adjust if needed */
    position: relative;
    /* Width is auto-driven by JS to match the ACTUAL rendered width of the
       active image (varies per aspect ratio). Falls back to the old value
       before JS runs / if measurement fails. */
    width: var(--hes-content-w, calc(100% - 140px));
    max-width: calc(100% - 140px);
    margin:0 auto;
    height:90px !important;
}

/* All text panels stacked; active one shown */
.hes-text {
    display: none;
}

.hes-text.is-active {
    display: flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items: flex-end;
    color:#333;
    -webkit-animation: hesFadeIn 0.6s ease; 
    animation: hesFadeIn 0.6s ease;
}

@-webkit-keyframes hesFadeIn {
    from { opacity: 0; -webkit-transform: translateY(6px); transform: translateY(6px); }
    to   { opacity: 1; -webkit-transform: translateY(0);   transform: translateY(0); }
}

@keyframes hesFadeIn {
    from { opacity: 0; -webkit-transform: translateY(6px); transform: translateY(6px); }
    to   { opacity: 1; -webkit-transform: translateY(0);  transform: translateY(0); }
}

.hes-title {
    font-size: clamp(13px, 14px, 14px);
    font-weight: 500;
    color: #333;
    margin: 0 10px 0 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
    min-width:50px;
}

/* .hes-desc {
    font-size: clamp(11px, 12px, 12px);
    color: rgba(51, 51, 51, 0.55);
    margin: 0;
    line-height: 1.55;
} */

.hes-desc {
    font-size: clamp(11px, 12px, 12px);
    color: rgba(51, 51, 51, 0.55);
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    line-clamp: 2 !important; 
    -webkit-line-clamp: 2; /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Title + description sit in one row (.hes-content-text = d-flex
   justify-content-between). When the content width shrinks to match a
   narrow / portrait image, space-between leaves no room and the two
   collide. A flex `gap` reserves a fixed minimum space BEFORE distributing,
   so they can never touch — and min-width:0 lets the description wrap
   into whatever space is left instead of crowding the title. */
.hes-content-text {
    gap: 14px;
    align-items: flex-start;
}
.hes-content-text .hes-title {
    flex: 0 0 auto;   /* keep its natural width, never collapse into desc */
}
.hes-content-text .hes-desc {
    flex: 1 1 auto;
    min-width: 0;     /* allow wrapping so the title is never crowded */
}

/* ── Dot navigation ── */
.hes-dots {
    display: none !important;
    gap: 7px;
    margin-top: 14px;
}

.hes-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.hes-dot.is-active {
    background: #ffffff;
    transform: scale(1.35);
}

.hero-grid{height:calc(100% - 50px);}
.view-more{text-decoration:none;font-size:13px;color: rgba(51, 51, 51, 0.55);display:flex;gap:8px;align-items: center;}
.view-more:hover{color: rgba(51, 51, 51, 1);}
.hes-slide img{width:100%;height:100%;object-fit:contain;object-position:center;display:block;}
/*.hero-editorial-slider{max-height:805px;max-width:100%;}
.hero-grid{gap:100px;grid-template-columns:1fr .6fr} */
.snap-section{padding:30px 30px;}
body{transition:background 1.2s cubic-bezier(.77,0,.18,1);}

.hero-title{margin-top:25px;}

/* ── Prev / Next nav buttons on hero slider image ── */
.hes-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dedede;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* hidden by default */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, background 0.2s, transform 0.2s;
}

.hes-nav svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color:#333;
}

.hes-nav--prev { left: 10px;}
.hes-nav--next { right: 10px; }

.hes-nav:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-50%) scale(1.08);
}

/* Show on mouse hover over the image wrap */
.hes-image-wrap:hover .hes-nav {
    opacity: 1;
    pointer-events: auto;
}

/* Show on touch (class toggled by JS below) */
.hes-image-wrap.touch-active .hes-nav {
    opacity: 1;
    pointer-events: auto;
}


.home-btn-launch .link-btn svg{stroke: #fff !important;
    width: 18px !important;
    height: 18px !important;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-left:4px !important;
}

/* ── 1920px+ ───────────────────────────── */
@media (min-width: 1920px) {
   .hero-editorial-slider{max-height:630px;}
}

/* ── Responsive: always show on mobile (no hover available) ── */
@media (max-width: 767px) {
    .hes-nav {
        width: 34px;
        height: 34px;
    }
    .hes-nav--prev { left: 8px; }
    .hes-nav--next { right: 8px; }
    /* Keep visible while touch-active; still hidden at rest on mobile */
}



/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .snap-section { padding: 30px 30px; }
    .labs-grid { padding: 50px 40px 30px; gap: 40px; }
    .hero-editorial-slider{max-height:590px;}
}

@media (max-width: 768px) {
    .snap-container {
        scroll-snap-type: none;   /* disable snap on small screens */
    }
    .snap-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 22px;
    }
    .hero-grid,
    .labs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .labs-grid::before { display: none; }   /* hide vertical divider when stacked */
    .hero-right { height: 50vh; }
    .solutions-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 14px;
    }
    .solution-card { height: 320px; }
    .url-wrap { flex-wrap: wrap; }
    .btn-launch { width: 100%; }

    .labs-footer-bottom,.footer-wrapper{flex-direction:column;text-align: left;gap:12px;justify-content:flex-start;align-items:flex-start !important;}
    .product-card{margin-bottom:50px;}
    .labs-grid{padding:0 !important;}
    .labs-footer-bottom{padding-top:0;}
}

@media (max-width:767px){
    .sm-flex-column{flex-direction:column !important;justify-content:flex-start !important;align-items: flex-start !important;}
    .sm-full-width,.url-wrap,.no-website-link-btn,.url-link-btn{width:100% !important;}
    .no-website-link-btn{max-width:100%;margin-left:0;}
    .no-website-link-btn{display:block;text-align: center;}
    .btn-launch{max-width:100%;}
    .snap-section{padding:25px 15px;}
    .scroll-img{width: 100%;}
    .hero-right,.snap-container{height:100%;}
    .trust-block{width:42vh;margin-bottom:30px;}
    .hero-left{padding-right:0;}
    .section-title br{display:none;}
    .solution-content{bottom:15px;left:15px;}
    .product-card{margin-bottom:0;}
    .content-sections h2{line-height:1.8rem;}
    .footer-social{margin-top:15px !important;}
    .hero-left{order: 2;}
    .hero-right{order:1;}
    .hes-content-text{flex-direction:column !important;}
    .hes-image-wrap{min-height:365px;}
    .hes-slide a{display:block !important;}
    .cap-desc{margin-bottom:0 !important;}
}