/* =========================================================
   INDIA RENTX
   FULL CSS — OFFICIAL LOGO PALETTE UPDATED
   Layout, spacing, breakpoints and animations preserved.
========================================================= */

/* =========================================================
   INDIA RENTX
   PREMIUM INDUSTRIAL TECHNOLOGY WEBSITE
========================================================= */
:root {
    /* =========================================
       RENTX OFFICIAL LOGO-BASED THEME
    ========================================= */

    /* Core */
    --rentx-black: #1A1A18;
    --rentx-dark: #282826;

    --rentx-white: #FFFFFF;
    --rentx-bg: #F6F7F8;
    --rentx-light-blue: #EEF7FD;

    /* Typography */
    --rentx-text: #1A1A18;
    --rentx-muted: #565655;
    --rentx-border: #E5E7E9;

    /* =========================================
       LOGO ACCENT COLOURS
    ========================================= */

    /* Primary RentX Blue */
    --rentx-blue: #0089C2;

    /* Bright Blue Highlight */
    --rentx-blue-light: #00B1EB;

    /* Deep Blue */
    --rentx-blue-dark: #016CA9;

    /* Primary RentX Green */
    --rentx-green: #79A420;

    /* Bright Green Highlight */
    --rentx-green-light: #8EBF1F;

    /* Secondary Green */
    --rentx-green-alt: #45A12F;

    /* =========================================
       DARK PREMIUM SECTIONS
    ========================================= */
    --rentx-teal: #0D3942;
    --rentx-teal-dark: #082F37;

    /* =========================================
       TRANSITIONS
    ========================================= */

    --rentx-transition:
        all .35s cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--rentx-black);
    background: var(--rentx-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */
.rentx-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 65px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.rentx-header-container {
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 1280px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 0 !important;
    padding-right: 0 !important;
    padding: 5px 0;
}


/* =========================================================
   LOGO
========================================================= */

.rentx-logo {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

.logo {
    width: auto;
    height: 50px;
    object-fit: contain;
}

/* =========================================================
   MOBILE OFFCANVAS LOGO
========================================================= */

.rentx-mobile-menu .logo {
    width: auto;
    height: 52px;
    max-width: 145px;
    object-fit: contain;
}

/* =========================================================
   NAVIGATION
========================================================= */

.rentx-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    margin-right: 34px;
}

.rentx-navigation a {
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--rentx-transition);
}

.rentx-navigation a:hover {
    color: var(--rentx-blue);
}


/* =========================================================
   HEADER BUTTONS
========================================================= */

.rentx-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rentx-secondary-btn {
    color: var(--rentx-blue);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 18px;
    transition: var(--rentx-transition);
}

.rentx-secondary-btn:hover {
    color: var(--rentx-green);
}

.rentx-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: var(--rentx-blue);
    color: white;

    padding: 13px 20px;
    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 9px 20px rgba(0, 137, 194, 0.18);

    transition: var(--rentx-transition);
}

.rentx-primary-btn i {
    font-size: 11px;
}

.rentx-primary-btn:hover {
    color: white;
    background: var(--rentx-blue-dark);
    transform: translateY(-2px);
    box-shadow:
        0 12px 25px rgba(0, 137, 194, 0.25);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.rentx-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--rentx-border);
    background: white;
    border-radius: 7px;

    margin-left: auto;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.rentx-menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--rentx-black);
}


/* =========================================================
   MOBILE OFFCANVAS
========================================================= */

.rentx-mobile-menu {
    width: 320px !important;
}

.rentx-mobile-menu .offcanvas-header {
    padding: 25px;
    border-bottom: 1px solid var(--rentx-border);
}

.rentx-mobile-menu .offcanvas-body {
    padding: 30px 25px;
}

.rentx-mobile-navigation {
    display: flex;
    flex-direction: column;
}

.rentx-mobile-navigation a {
    padding: 17px 0;
    border-bottom: 1px solid var(--rentx-border);

    color: var(--rentx-black);
    font-size: 15px;
    font-weight: 600;
}

.rentx-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 35px;
}

.rentx-mobile-secondary {
    padding: 14px;
    border: 1px solid var(--rentx-border);
    color: var(--rentx-blue);
    text-align: center;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   HEADER RESPONSIVE FIX
========================================================= */


/* ---------------------------------------------------------
   TABLET / SMALL DESKTOP
   1200px and below
--------------------------------------------------------- */

@media (max-width: 1200px) {

    .rentx-header-container {
        height: 66px;

        padding-left: 40px;
        padding-right: 40px;
    }

    .rentx-navigation {
        gap: 18px;
        margin-right: 20px;
    }

    .rentx-navigation a {
        font-size: 12px;
    }

    .rentx-secondary-btn {
        display: none;
    }

    .rentx-primary-btn {
        padding: 11px 15px;
        font-size: 12px;
    }

}


/* ---------------------------------------------------------
   TABLET
   991px and below
--------------------------------------------------------- */

@media (max-width: 991px) {

    .rentx-header-container {

        height: 66px;

        padding-left: 30px !important;
        padding-right: 30px !important;

    }


    /* Hide desktop navigation */

    .rentx-navigation {
        display: none;
    }


    /* Hide desktop header actions */

    .rentx-header-actions {
        display: none;
    }


    /* Show hamburger */

    .rentx-menu-toggle {

        display: flex;

        margin-left: auto;

    }


    /* Logo */

    .rentx-logo .logo {

        height: 56px;

        width: auto;

    }

}


/* ---------------------------------------------------------
   MOBILE
   767px and below
--------------------------------------------------------- */

@media (max-width: 767px) {

    .rentx-header-container {

        height: 62px;

        padding-left: 18px;
        padding-right: 18px;

    }


    .rentx-logo .logo {

        height: 50px;

    }


    .rentx-menu-toggle {

        width: 42px;
        height: 42px;

        border: 1px solid rgba(255, 255, 255, .18);

        background: #292a2c;

        border-radius: 6px;

    }


    .rentx-menu-toggle span {

        width: 18px;

        height: 2px;

        background: var(--rentx-white);

    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   480px and below
--------------------------------------------------------- */

@media (max-width: 480px) {

    .rentx-header-container {

        height: 60px;

        padding-left: 14px !important;
        padding-right: 14px !important;

    }


    .rentx-logo .logo {

        height: 50px;
        object-fit: cover;

    }


    .rentx-menu-toggle {

        width: 40px;

        height: 40px;

    }

}



/* =========================================================
   STICKY HEADER SCROLL STATE
========================================================= */

.rentx-header {
    position: sticky;
    top: 0;
    transition:
        box-shadow .3s ease,
        background .3s ease;
}

.rentx-header-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 8px 30px rgba(20, 55, 90, 0.08);
}


/* =========================================================
   SWIPER HERO OVERRIDES
========================================================= */

.rentxHeroSwiper {

    width: 100%;
    height: 100%;

}


.rentxHeroSwiper .swiper-wrapper {

    width: 100%;
    height: 100%;

}


.rentxHeroSwiper .swiper-slide {

    width: 100%;
    height: 100%;

}


.rentxHeroSwiper .rentx-slide {

    position: relative !important;

    opacity: 1 !important;

    visibility: visible !important;

    display: flex;

    align-items: center;

}

/* =========================================================
   SECTION 2 : ABOUT RENTX
========================================================= */
/* =========================================================
   SECTION 2 : ABOUT RENTX
   CLIENT REFERENCE THEME
   WHITE / CHARCOAL / LIME GREEN
========================================================= */

.rentx-about-section {

    position: relative;

    padding: 85px 0;

    background: var(--rentx-white);

    color: var(--rentx-black);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GRID
   Very subtle - should not compete with content
========================================================= */

.rentx-about-grid {

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    background-image:
        linear-gradient(rgba(0, 137, 194, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(0, 137, 194, .035) 1px,
            transparent 1px);

    background-size: 45px 45px;

    mask-image:
        radial-gradient(circle,
            black 15%,
            transparent 72%);

    -webkit-mask-image:
        radial-gradient(circle,
            black 15%,
            transparent 72%);

    pointer-events: none;

}


/* =========================================================
   SECTION EYEBROW
========================================================= */

.rentx-section-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--rentx-green-light);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.rentx-about-line {

    display: inline-block;

    width: 30px;

    height: 2px;

    background: var(--rentx-green-light);

}


/* =========================================================
   TITLE
========================================================= */

.rentx-about-title {

    max-width: 620px;

    margin: 0 0 24px;

    color: var(--rentx-black);

    font-size: clamp(42px,
            4.2vw,
            62px);

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -2.8px;

}


/* =========================================================
   TITLE HIGHLIGHT
   No heavy gradient
========================================================= */

.rentx-about-title span {

    display: block;

    color: var(--rentx-green-light);

    background: none;

    -webkit-background-clip: initial;

    background-clip: initial;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.rentx-about-description {

    max-width: 610px;

    margin-bottom: 32px;

    color: #64676a;

    font-size: 13px;

    line-height: 1.8;

    font-weight: 500;

}


/* =========================================================
   ABOUT POINTS
========================================================= */

.rentx-about-points {

    display: flex;

    flex-direction: column;

    gap: 0;

    max-width: 610px;

}


.rentx-about-point {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid #e7e8e9;

}


.rentx-about-point:first-child {

    border-top: 1px solid #e7e8e9;

}


/* =========================================================
   POINT ICON
========================================================= */

.rentx-point-icon {

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 4px;

    background: #f0f8e5;

    color: var(--rentx-green);

    font-size: 18px;

    border: 1px solid #e2efcf;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.rentx-about-point:hover .rentx-point-icon {

    background: var(--rentx-green-light);

    border-color: var(--rentx-green-light);

    color: var(--rentx-dark);

    transform: translateY(-2px);

}


/* =========================================================
   POINT TITLE
========================================================= */

.rentx-about-point strong {

    display: block;

    margin-bottom: 4px;

    color: var(--rentx-black);

    font-size: 16px;

    font-weight: 800;

}


/* =========================================================
   POINT DESCRIPTION
========================================================= */

.rentx-about-point span {

    display: block;

    color: #777b7e;

    font-size: 14px;

    line-height: 1.6;

    font-weight: 500;

}


/* =========================================================
   CTA
========================================================= */

.rentx-about-cta {

    margin-top: 30px;

}


.rentx-about-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    min-height: 44px;

    padding: 0 19px;

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    border: 1px solid var(--rentx-green-light);

    border-radius: 2px;

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(142, 191, 31, .16);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

}


.rentx-about-button:hover {

    color: var(--rentx-white);

    background: var(--rentx-black);

    border-color: var(--rentx-black);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(26, 26, 24, .15);

}


.rentx-about-button i {

    font-size: 13px;

    transition:
        transform .3s ease;

}


.rentx-about-button:hover i {

    transform: translateX(4px);

}


/* =========================================================
   IMAGE AREA
========================================================= */

.rentx-about-visual {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   MAIN IMAGE
========================================================= */

.rentx-about-image {

    position: relative;

    width: 88%;

    height: 510px;

    margin-left: auto;

    overflow: hidden;

    z-index: 2;

    box-shadow:
        0 25px 55px rgba(26, 26, 24, .14);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.rentx-about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(0, 137, 194, .05),
            transparent 55%,
            rgba(142, 191, 31, .08));

    pointer-events: none;

}


/* =========================================================
   IMAGE
========================================================= */

.rentx-about-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2, .65, .3, 1);

}


.rentx-about-visual:hover .rentx-about-image img {

    transform: scale(1.035);

}


/* =========================================================
   GREEN ACCENT BLOCK
========================================================= */

.rentx-about-accent {

    position: absolute;

    width: 155px;
    height: 155px;

    left: 0;

    bottom: 20px;

    background: var(--rentx-green-light);

    z-index: 1;

    opacity: .95;

}


/* =========================================================
   FLOATING CARD
========================================================= */

.rentx-about-floating-card {

    position: absolute;

    z-index: 5;

    left: -25px;

    top: 95px;

    width: 230px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    background:
        rgba(255, 255, 255, .97);

    border: 1px solid #e2e4e6;

    box-shadow:
        0 15px 35px rgba(26, 26, 24, .12);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

}


/* =========================================================
   FLOATING ICON
========================================================= */

.rentx-floating-icon {

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    border-radius: 3px;

    font-size: 14px;

}


/* =========================================================
   FLOATING CARD TEXT
========================================================= */

.rentx-about-floating-card span {

    display: block;

    margin-bottom: 4px;

    color: #929496;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.rentx-about-floating-card strong {

    display: block;

    max-width: 155px;

    color: var(--rentx-black);

    font-size: 12px;

    line-height: 1.4;

    font-weight: 800;

}


/* =========================================================
   STAT CARD
========================================================= */

.rentx-about-stat {

    position: absolute;

    right: 0;

    bottom: 30px;

    z-index: 5;

    width: 145px;

    padding: 17px 18px;

    background: var(--rentx-white);

    border: 1px solid #e2e4e6;

    box-shadow:
        0 15px 35px rgba(26, 26, 24, .11);

}


/* =========================================================
   STAT NUMBER
========================================================= */

.rentx-about-stat strong {

    display: block;

    margin-bottom: 5px;

    color: var(--rentx-blue);

    font-size: 23px;

    font-weight: 800;

    line-height: 1;

}


/* =========================================================
   STAT TEXT
========================================================= */

.rentx-about-stat span {

    display: block;

    color: #777b7e;

    font-size: 10px;

    line-height: 1.45;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;

}


/* =========================================================
   DECORATIVE DOTS
========================================================= */

.rentx-about-dots {

    position: absolute;

    right: -20px;

    top: 50px;

    width: 105px;
    height: 105px;

    background-image:
        radial-gradient(var(--rentx-green-light) 1.2px,
            transparent 1.2px);

    background-size: 10px 10px;

    opacity: .30;

    z-index: 0;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rentx-about-section {

        padding: 75px 0;

    }


    .rentx-about-title {

        font-size: 48px;

    }


    .rentx-about-visual {

        min-height: 510px;

        margin-top: 30px;

    }


    .rentx-about-image {

        width: 88%;

        height: 460px;

    }


    .rentx-about-accent {

        width: 135px;
        height: 135px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rentx-about-section {

        padding: 65px 0;

    }


    .rentx-section-eyebrow {

        font-size: 14px;

        margin-bottom: 16px;

        letter-spacing: 1.5px;

    }


    .rentx-about-line {

        width: 25px;

    }


    .rentx-about-title {

        font-size: 38px;

        letter-spacing: -1.7px;

        line-height: 1.06;

    }


    .rentx-about-description {

        font-size: 12px;

        line-height: 1.75;

    }


    .rentx-about-point {

        padding: 12px 0;

    }


    .rentx-point-icon {

        flex-basis: 36px;

        width: 36px;
        height: 36px;

        font-size: 11px;

    }


    .rentx-about-point strong {

        font-size: 11px;

    }


    .rentx-about-point span {

        font-size: 9px;

    }


    .rentx-about-button {

        width: 100%;

        justify-content: center;

    }


    .rentx-about-visual {

        min-height: 410px;

        margin-top: 15px;

    }


    .rentx-about-image {

        width: 88%;

        height: 370px;

    }


    .rentx-about-accent {

        width: 100px;
        height: 100px;

        bottom: 12px;

    }


    .rentx-about-floating-card {

        left: 0;

        top: 40px;

        width: 200px;

        padding: 12px;

    }


    .rentx-floating-icon {

        width: 33px;
        height: 33px;

        flex-basis: 33px;

        font-size: 10px;

    }


    .rentx-about-floating-card strong {

        font-size: 9px;

    }


    .rentx-about-stat {

        right: 0;

        bottom: 20px;

        width: 120px;

        padding: 13px;

    }


    .rentx-about-stat strong {

        font-size: 19px;

    }


    .rentx-about-stat span {

        font-size: 6px;

    }


    .rentx-about-dots {

        right: -5px;

        top: 15px;

        width: 75px;

        height: 75px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .rentx-about-title {

        font-size: 34px;

    }


    .rentx-about-image {

        height: 330px;

    }


    .rentx-about-visual {

        min-height: 375px;

    }


    .rentx-about-floating-card {

        width: 185px;

    }

}

/* =========================================================
   SECTION 3 : WHY RENTX
   DARK PREMIUM VERSION
========================================================= */

.rentx-why-section {

    position: relative;

    padding: 70px 0;

    background:
        radial-gradient(circle at 85% 15%,
            rgba(0, 137, 194, .12),
            transparent 30%),
        radial-gradient(circle at 10% 80%,
            rgba(121, 164, 32, .06),
            transparent 28%),
        var(--rentx-teal-dark);

    color: var(--rentx-white);

    overflow: hidden;
}


/* =========================================================
   LARGE BACKGROUND WORD
========================================================= */

.rentx-why-bg-word {

    position: absolute;

    top: -45px;

    right: -25px;

    font-size: clamp(180px, 23vw, 340px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -20px;

    color: rgba(255, 255, 255, .025);

    pointer-events: none;

    user-select: none;
}


/* =========================================================
   ARCHITECTURAL GRID
========================================================= */

.rentx-why-grid {

    position: absolute;

    left: 0;

    top: 0;

    width: 500px;

    height: 500px;

    background-image:
        linear-gradient(rgba(64, 137, 220, .07) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(64, 137, 220, .07) 1px,
            transparent 1px);

    background-size: 40px 40px;

    mask-image:
        linear-gradient(135deg,
            black,
            transparent 75%);

    -webkit-mask-image:
        linear-gradient(135deg,
            black,
            transparent 75%);

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.rentx-why-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr .75fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;
}


.rentx-why-heading-wrap {

    max-width: 700px;
}


/* =========================================================
   TITLE
========================================================= */

.rentx-why-title {

    margin: 0;

    color: var(--rentx-white);

    font-size: clamp(48px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -3.5px;
}


.rentx-why-title span {

    display: block;

    background:
        linear-gradient(100deg,
            var(--rentx-blue-light),
            var(--rentx-blue-light) 50%,
            #4fd09b);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


/* =========================================================
   INTRO
========================================================= */

.rentx-why-intro {

    max-width: 500px;

    padding-bottom: 6px;
}


.rentx-why-intro p {

    margin: 0;

    color: #91a2b5;

    font-size: 14px;

    line-height: 1.85;

    font-weight: 500;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.rentx-why-main {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        .82fr 1.18fr;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   IMAGE
========================================================= */

.rentx-why-image-column {

    position: relative;

    min-height: 580px;
}


.rentx-why-image {

    position: relative;

    width: 100%;

    height: 550px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .09);

    box-shadow:
        0 30px 65px rgba(0, 0, 0, .35);
}


.rentx-why-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 1s cubic-bezier(.2, .65, .3, 1);
}


.rentx-why-image-column:hover .rentx-why-image img {

    transform: scale(1.035);
}


.rentx-why-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(145deg,
            rgba(0, 137, 194, .08),
            transparent 45%,
            rgba(121, 164, 32, .18));

    pointer-events: none;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.rentx-why-image-badge {

    position: absolute;

    left: -30px;

    bottom: 45px;

    z-index: 5;

    width: 270px;

    padding: 19px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    background:
        rgba(9, 25, 40, .92);

    border: 1px solid rgba(255, 255, 255, .12);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .35);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);
}


.rentx-why-badge-dot {

    flex: 0 0 8px;

    width: 8px;

    height: 8px;

    margin-top: 4px;

    border-radius: 50%;

    background: var(--rentx-green);

    box-shadow:
        0 0 0 5px rgba(121, 164, 32, .12);
}


.rentx-why-image-badge small {

    display: block;

    margin-bottom: 6px;

    color: #6d8297;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.rentx-why-image-badge strong {

    display: block;

    color: var(--rentx-white);

    font-size: 14px;

    line-height: 1.5;
    letter-spacing: 0.5px;

    font-weight: 800;
}


/* =========================================================
   VERTICAL LABEL
========================================================= */

.rentx-why-vertical-label {

    position: absolute;

    right: -43px;

    top: 90px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    color: #52687d;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.rentx-why-content {

    position: relative;
}


/* =========================================================
   CONTENT INTRO
========================================================= */

.rentx-why-content-intro {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 32px;

    padding-bottom: 28px;

    border-bottom: 1px solid rgba(255, 255, 255, .10);
}


.rentx-mini-number {

    flex: 0 0 auto;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(0, 137, 194, .15);

    border: 1px solid rgba(70, 140, 220, .18);

    color: var(--rentx-blue-light);

    font-size: 10px;

    font-weight: 800;
}


.rentx-why-content-intro p {

    max-width: 570px;

    margin: 0;

    color: #8da0b4;

    font-size: 13px;

    line-height: 1.8;

    font-weight: 500;
}


/* =========================================================
   BENEFIT GRID
========================================================= */

.rentx-benefit-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top: 1px solid rgba(255, 255, 255, .09);

    border-left: 1px solid rgba(255, 255, 255, .09);
}


/* =========================================================
   BENEFIT CARD
========================================================= */

.rentx-benefit-card {

    position: relative;

    min-height: 205px;

    padding: 24px;

    background:
        linear-gradient(145deg,
            var(--rentx-dark),
            var(--rentx-dark));

    border-right: 1px solid rgba(255, 255, 255, .09);

    border-bottom: 1px solid rgba(255, 255, 255, .09);

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.rentx-benefit-card:hover {

    background:
        linear-gradient(145deg,
            #102844,
            #0b2136);

    transform: translateY(-3px);

    border-color:
        rgba(61, 137, 216, .28);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .25);

    z-index: 2;
}


/* =========================================================
   BENEFIT TOP
========================================================= */

.rentx-benefit-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.rentx-benefit-number {

    color: #49647e;

    font-size: 18px;

    font-weight: 800;
}


/* =========================================================
   BENEFIT ICON
========================================================= */

.rentx-benefit-icon {

    width: 64px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--rentx-blue-light);

    border-radius: 6px;

    font-size: 28px;

    transition: all .3s ease;
}


.rentx-benefit-card:hover .rentx-benefit-icon {

    color: var(--rentx-white);
    border-color: transparent;
}


/* =========================================================
   BENEFIT TYPOGRAPHY
========================================================= */

.rentx-benefit-card h3 {

    margin: 0 0 10px;

    color: var(--rentx-white);

    font-size: 24px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.rentx-benefit-card p {

    max-width: 260px;

    margin: 0;

    color: #778da3;

    font-size: 13px;

    line-height: 1.7;

    font-weight: 500;
}


/* =========================================================
   MARKETPLACE STRIP
========================================================= */

.rentx-marketplace-strip {

    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 65px;

    padding: 20px 25px;

    background:
        linear-gradient(100deg,
            rgba(0, 137, 194, .12),
            rgba(121, 164, 32, .07));

    border: 1px solid rgba(255, 255, 255, .10);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .15);
}


.rentx-marketplace-icon {

    flex: 0 0 45px;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--rentx-white);

    background:
        linear-gradient(135deg,
            var(--rentx-blue),
            var(--rentx-green));

    font-size: 14px;
}


.rentx-marketplace-copy {

    flex: 1;
}


.rentx-marketplace-copy span {

    display: block;

    margin-bottom: 4px;

    color: #64819d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.rentx-marketplace-copy strong {

    display: block;

    color: var(--rentx-white);

    font-size: 16px;

    font-weight: 800;
}


.rentx-marketplace-arrow {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--rentx-blue-light);

    border-left: 1px solid rgba(255, 255, 255, .10);
}


/* =========================================================
   EVENT BANNER
========================================================= */

.rentx-event-banner {

    position: relative;

    display: grid;

    grid-template-columns:
        1fr auto auto;

    align-items: center;

    gap: 45px;

    margin-top: 35px;

    padding: 30px 35px;

    background:
        linear-gradient(110deg,
            #063b88,
            var(--rentx-blue) 60%,
            #087e72);

    overflow: hidden;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .22);
}


.rentx-event-banner::after {

    content: "";

    position: absolute;

    right: -100px;

    top: -100px;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

    box-shadow:
        0 0 0 40px rgba(255, 255, 255, .025),
        0 0 0 80px rgba(255, 255, 255, .02);
}


.rentx-event-left {

    position: relative;

    z-index: 2;
}


.rentx-event-label {

    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, .58);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-event-left h3 {

    margin: 0;

    color: var(--rentx-white);

    font-size: 19px;

    line-height: 1.3;

    font-weight: 800;
}


.rentx-event-left h3 span {

    color: var(--rentx-green-light);
}


/* =========================================================
   EVENT DATE
========================================================= */

.rentx-event-date {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 15px;
}


.rentx-date-block {

    text-align: center;
}


.rentx-date-block strong {

    display: block;

    color: var(--rentx-white);

    font-size: 28px;

    line-height: 1;

    font-weight: 800;
}


.rentx-date-block span {

    display: block;

    margin-top: 4px;

    color: rgba(255, 255, 255, .55);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


.rentx-date-line {

    width: 18px;

    height: 1px;

    background: rgba(255, 255, 255, .3);
}


/* =========================================================
   EVENT LOCATION
========================================================= */

.rentx-event-location {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    padding-left: 25px;

    border-left: 1px solid rgba(255, 255, 255, .2);
}


.rentx-event-location>i {

    color: var(--rentx-green-light);

    font-size: 16px;
}


.rentx-event-location strong {

    display: block;

    color: var(--rentx-white);

    font-size: 9px;

    font-weight: 800;
}


.rentx-event-location span {

    display: block;

    margin-top: 4px;

    color: rgba(255, 255, 255, .55);

    font-size: 8px;
}


/* =========================================================
   FINAL STATEMENT
========================================================= */

.rentx-why-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    margin-top: 55px;
}


.rentx-why-footer p {

    max-width: 720px;

    margin: 0;

    color: #7e91a5;

    font-size: 14px;

    line-height: 1.7;

    font-weight: 500;
}


.rentx-why-footer p strong {

    color: var(--rentx-white);

    font-weight: 800;
}


/* =========================================================
   DISCOVER BUTTON
========================================================= */

.rentx-why-footer .rentx-about-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 14px 19px;

    color: var(--rentx-white);

    background: transparent;

    border: 1px solid rgba(255, 255, 255, .16);

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.rentx-why-footer .rentx-about-button:hover {

    color: var(--rentx-white);

    background: var(--rentx-blue);

    border-color: var(--rentx-blue);

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rentx-why-section {

        padding: 100px 0;
    }


    .rentx-why-header {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 50px;
    }


    .rentx-why-main {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .rentx-why-image-column {

        max-width: 650px;
    }


    .rentx-event-banner {

        grid-template-columns: 1fr auto;
    }


    .rentx-event-location {

        grid-column: 1 / -1;

        padding-left: 0;

        padding-top: 20px;

        border-left: 0;

        border-top: 1px solid rgba(255, 255, 255, .2);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rentx-why-section {

        padding: 80px 0;
    }


    .rentx-why-bg-word {

        font-size: 150px;

        top: 10px;

        right: -15px;

        letter-spacing: -10px;
    }


    .rentx-why-title {

        font-size: 40px;

        letter-spacing: -2px;
    }


    .rentx-why-intro p {

        font-size: 12px;

        line-height: 1.75;
    }


    .rentx-why-main {

        gap: 45px;
    }


    .rentx-why-image-column {

        min-height: 400px;
    }


    .rentx-why-image {

        height: 400px;
    }


    .rentx-why-image-badge {

        left: 10px;

        bottom: 25px;

        width: 235px;

        padding: 14px;
    }


    .rentx-why-vertical-label {

        display: none;
    }


    .rentx-why-content-intro {

        gap: 13px;
    }


    .rentx-why-content-intro p {

        font-size: 11px;
    }


    .rentx-benefit-grid {

        grid-template-columns: 1fr;
    }


    .rentx-benefit-card {

        min-height: auto;

        padding: 20px;
    }


    .rentx-benefit-card p {

        max-width: none;
    }


    .rentx-marketplace-strip {

        padding: 17px;
    }


    .rentx-marketplace-copy strong {

        font-size: 10px;

        line-height: 1.5;
    }


    .rentx-marketplace-arrow {

        display: none;
    }


    .rentx-event-banner {

        grid-template-columns: 1fr;

        gap: 25px;

        padding: 25px 20px;
    }


    .rentx-event-date {

        justify-content: flex-start;
    }


    .rentx-event-location {

        padding-top: 20px;
    }


    .rentx-why-footer {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .rentx-why-footer p {

        font-size: 12px;
    }


    .rentx-why-footer .rentx-about-button {

        width: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .rentx-why-title {

        font-size: 35px;
    }


    .rentx-why-image {

        height: 350px;
    }


    .rentx-why-image-column {

        min-height: 350px;
    }


    .rentx-event-date {

        gap: 10px;
    }


    .rentx-date-block strong {

        font-size: 24px;
    }

}

/* =========================================================
   SECTION 4 : WHY MUMBAI
   RENTX CLIENT THEME
   WHITE / LIGHT GREY / CHARCOAL / LIME GREEN
========================================================= */

.rentx-mumbai-section {

    position: relative;

    padding: 85px 0;

    background: var(--rentx-bg);

    color: var(--rentx-black);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.rentx-mumbai-grid {

    position: absolute;

    left: -100px;
    bottom: -100px;

    width: 550px;
    height: 550px;

    background-image:
        linear-gradient(rgba(0, 137, 194, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(0, 137, 194, .035) 1px,
            transparent 1px);

    background-size: 45px 45px;

    mask-image:
        radial-gradient(circle,
            black,
            transparent 72%);

    -webkit-mask-image:
        radial-gradient(circle,
            black,
            transparent 72%);

    pointer-events: none;

}


/* =========================================================
   GIANT MUMBAI TEXT
========================================================= */

.rentx-mumbai-bg-text {

    position: absolute;

    top: 30px;
    right: -35px;

    color: rgba(26, 26, 24, .035);

    font-size: clamp(130px,
            19vw,
            290px);

    font-weight: 800;

    line-height: .8;

    letter-spacing: -15px;

    user-select: none;

    pointer-events: none;

}


/* =========================================================
   TOP HEADER
========================================================= */

.rentx-mumbai-top {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr .65fr;

    align-items: end;

    gap: 90px;

    margin-bottom: 60px;

}


/* =========================================================
   MAIN HEADING
========================================================= */

.rentx-mumbai-heading h2 {

    max-width: 700px;

    margin: 0;

    color: var(--rentx-black);

    font-size: clamp(48px,
            5vw,
            72px);

    line-height: 1.03;

    letter-spacing: -3.5px;

    font-weight: 800;

}


/* =========================================================
   HEADING HIGHLIGHT
   No blue/green gradient
========================================================= */

.rentx-mumbai-heading h2 span {

    display: block;

    color: var(--rentx-green-light);

    background: none;

    -webkit-background-clip: initial;

    background-clip: initial;

}


/* =========================================================
   INTRO
========================================================= */

.rentx-mumbai-intro {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding-bottom: 7px;

}


.rentx-mumbai-intro-number {

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--rentx-black);

    background: var(--rentx-green-light);

    font-size: 9px;

    font-weight: 800;

}


.rentx-mumbai-intro p {

    margin: 0;

    color: #6d7073;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 500;

}


/* =========================================================
   MAIN
========================================================= */

.rentx-mumbai-main {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}


/* =========================================================
   VISUAL
========================================================= */

.rentx-mumbai-visual {

    position: relative;

    min-height: 560px;

}


/* =========================================================
   MAIN IMAGE
========================================================= */

.rentx-mumbai-image {

    position: relative;

    width: 100%;

    height: 560px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(26, 26, 24, .13);

}


.rentx-mumbai-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 1s cubic-bezier(.2, .65, .3, 1);

}


.rentx-mumbai-visual:hover .rentx-mumbai-image img {

    transform: scale(1.035);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.rentx-mumbai-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(26, 26, 24, .04),
            transparent 60%,
            rgba(142, 191, 31, .08));

}


/* =========================================================
   LOCATION CARD
========================================================= */

.rentx-mumbai-location {

    position: absolute;

    left: -25px;
    bottom: 40px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    width: 240px;

    padding: 15px;

    background: rgba(255, 255, 255, .97);

    border: 1px solid #e1e3e5;

    box-shadow:
        0 16px 40px rgba(26, 26, 24, .13);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

}


/* =========================================================
   LOCATION ICON
========================================================= */

.rentx-mumbai-pin {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    border-radius: 3px;

    font-size: 12px;

}


.rentx-mumbai-location small {

    display: block;

    margin-bottom: 4px;

    color: #8a8d90;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.rentx-mumbai-location strong {

    display: block;

    color: var(--rentx-black);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   MAP / CONNECTIVITY NODES
========================================================= */

.rentx-mumbai-node {

    position: absolute;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 6px;

    color: var(--rentx-white);

    font-size: 12px;

    font-weight: 700;

    padding: 6px 9px;

    background: rgba(26, 26, 24, .82);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

}


.rentx-mumbai-node span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--rentx-green-light);

}


/* =========================================================
   NODE POSITIONS
========================================================= */

.node-west {

    top: 20%;

    left: 10%;

}


.node-guj {

    top: 31%;

    right: 8%;

}


.node-pune {

    bottom: 27%;

    right: 13%;

}


.node-nashik {

    top: 43%;

    left: 32%;

}


/* =========================================================
   CONNECTION LINES
========================================================= */

.rentx-mumbai-connection {

    position: absolute;

    z-index: 5;

    height: 1px;

    transform-origin: left;

    background:
        linear-gradient(90deg,
            rgba(142, 191, 31, .15),
            rgba(142, 191, 31, .75),
            rgba(26, 26, 24, .12));

}


.connection-one {

    width: 230px;

    left: 18%;

    top: 25%;

    transform: rotate(15deg);

}


.connection-two {

    width: 210px;

    left: 35%;

    top: 45%;

    transform: rotate(-20deg);

}


.connection-three {

    width: 190px;

    left: 42%;

    top: 50%;

    transform: rotate(35deg);

}


/* =========================================================
   INFO AREA
========================================================= */

.rentx-mumbai-info {

    border-top: 1px solid #dedfe1;

}


.rentx-mumbai-info-label {

    padding: 15px 0;

    color: #8a8d90;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


/* =========================================================
   POINT
========================================================= */

.rentx-mumbai-point {

    position: relative;

    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 15px;

    padding: 23px 0;

    border-top: 1px solid #dedfe1;

    transition:
        padding-left .3s ease,
        background .3s ease;

}


.rentx-mumbai-point:hover {

    padding-left: 8px;

}


/* =========================================================
   POINT NUMBER
========================================================= */

.rentx-mumbai-point-number {

    padding-top: 4px;

    color: #a5a7aa;

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   POINT ICON
========================================================= */

.rentx-mumbai-point-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--rentx-black);

    background: #edf6df;

    border: 1px solid #dfedc9;

    border-radius: 4px;

    font-size: 16px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.rentx-mumbai-point:hover .rentx-mumbai-point-icon {

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    border-color: var(--rentx-green-light);

    transform: translateY(-2px);

}


/* =========================================================
   POINT CONTENT
========================================================= */

.rentx-mumbai-point-content h3 {

    margin: 0 0 7px;

    color: var(--rentx-black);

    font-size: 18px;

    font-weight: 800;

}


.rentx-mumbai-point-content p {

    max-width: 440px;

    margin: 0;

    color: #737679;

    font-size: 13px;

    line-height: 1.75;

    font-weight: 500;

}


/* =========================================================
   VENUE STRIP
========================================================= */

.rentx-mumbai-venue {

    position: relative;

    z-index: 4;

    display: grid;

    grid-template-columns:
        auto 1fr 1px 1.2fr auto;

    align-items: center;

    gap: 20px;

    margin-top: 60px;

    padding: 20px 23px;

    background: var(--rentx-white);

    border: 1px solid #dedfe1;

    box-shadow:
        0 12px 30px rgba(26, 26, 24, .06);

}


/* =========================================================
   VENUE ICON
========================================================= */

.rentx-mumbai-venue-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    font-size: 12px;

}


/* =========================================================
   VENUE TEXT
========================================================= */

.rentx-mumbai-venue-content span,
.rentx-mumbai-venue-message span {

    display: block;

    margin-bottom: 5px;

    color: #8a8d90;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.rentx-mumbai-venue-content strong {

    display: block;

    color: var(--rentx-black);

    font-size: 11px;

    font-weight: 800;

}


.rentx-mumbai-venue-content small {

    display: block;

    margin-top: 3px;

    color: #7a7d80;

    font-size: 7px;

}


/* =========================================================
   VENUE DIVIDER
========================================================= */

.rentx-mumbai-venue-divider {

    width: 1px;

    height: 40px;

    background: #dedfe1;

}


/* =========================================================
   VENUE MESSAGE
========================================================= */

.rentx-mumbai-venue-message strong {

    display: block;

    max-width: 310px;

    color: var(--rentx-black);

    font-size: 9px;

    line-height: 1.5;

    font-weight: 700;

}


/* =========================================================
   VENUE BUTTON
========================================================= */

.rentx-mumbai-venue-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 14px;

    color: var(--rentx-black);

    background: transparent;

    border: 1px solid #d5d7d9;

    font-size: 8px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;

}


.rentx-mumbai-venue-button:hover {

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    border-color: var(--rentx-green-light);

}


/* =========================================================
   FOOTER STATEMENT
========================================================= */

.rentx-mumbai-footer {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 40px;

}


.rentx-mumbai-footer-line {

    width: 40px;
    height: 2px;

    flex: 0 0 auto;

    background: var(--rentx-green-light);

}


.rentx-mumbai-footer p {

    max-width: 700px;

    margin: 0;

    color: #737679;

    font-size: 11px;

    line-height: 1.7;

}


.rentx-mumbai-footer strong {

    color: var(--rentx-black);

    font-weight: 800;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rentx-mumbai-section {

        padding: 75px 0;

    }


    .rentx-mumbai-top {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 50px;

    }


    .rentx-mumbai-main {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .rentx-mumbai-visual {

        max-width: 700px;

    }


    .rentx-mumbai-venue {

        grid-template-columns:
            auto 1fr;

    }


    .rentx-mumbai-venue-divider {

        display: none;

    }


    .rentx-mumbai-venue-message {

        grid-column: 2;

    }


    .rentx-mumbai-venue-button {

        grid-column: 2;

        width: fit-content;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rentx-mumbai-section {

        padding: 65px 0;

    }


    .rentx-mumbai-bg-text {

        font-size: 115px;

        top: 35px;

        right: -15px;

        letter-spacing: -8px;

    }


    .rentx-mumbai-heading h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .rentx-mumbai-intro p {

        font-size: 13px;

        line-height: 1.75;

    }


    .rentx-mumbai-visual {

        min-height: 400px;

    }


    .rentx-mumbai-image {

        height: 400px;

    }


    .rentx-mumbai-location {

        left: 10px;

        bottom: 20px;

        width: 215px;

        padding: 12px;

    }


    .rentx-mumbai-node {

        font-size: 9px;

    }


    .node-west {

        top: 15%;

        left: 5%;

    }


    .node-guj {

        right: 5%;

    }


    .node-pune {

        right: 5%;

    }


    .node-nashik {

        left: 25%;

    }


    .rentx-mumbai-point {

        grid-template-columns:
         40px 1fr;

        gap: 10px;

        padding: 19px 0;

    }


    .rentx-mumbai-point-icon {

        width: 37px;
        height: 37px;

        font-size: 16px;

    }


    .rentx-mumbai-point-content h3 {

        font-size: 18px;

    }


    .rentx-mumbai-point-content p {

        font-size: 12px;

    }


    .rentx-mumbai-venue {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 14px;

        padding: 19px;

    }


    .rentx-mumbai-venue-message {

        width: 100%;

        padding-top: 14px;

        border-top: 1px solid #e0e1e2;

    }


    .rentx-mumbai-venue-button {

        width: 100%;

        justify-content: center;

    }


    .rentx-mumbai-footer p {

        font-size: 9px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .rentx-mumbai-heading h2 {

        font-size: 34px;

    }


    .rentx-mumbai-image {

        height: 350px;

    }


    .rentx-mumbai-visual {

        min-height: 350px;

    }


    .rentx-mumbai-node,
    .rentx-mumbai-connection {

        display: none;

    }

}

/* =========================================================
   SECTION 5 : EXHIBITOR PROFILE
========================================================= */

.rentx-exhibitor-section {

    position: relative;

    padding: 70px 0;

    background: var(--rentx-teal-dark);

    color: var(--rentx-white);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND
========================================================= */

.rentx-exhibitor-noise {

    position: absolute;

    inset: 0;

    opacity: .3;

    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px);

    background-size: 55px 55px;

    pointer-events: none;
}


.rentx-exhibitor-glow {

    position: absolute;

    width: 700px;
    height: 700px;

    right: -300px;
    top: -300px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(0, 137, 194, .22),
            rgba(121, 164, 32, .08) 40%,
            transparent 70%);

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.rentx-exhibitor-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr .55fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}


@media (max-width: 991px) {

    .rentx-exhibitor-header {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 50px;
    }

}


.rentx-exhibitor-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--rentx-blue-light);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 2px;
}


.rentx-exhibitor-eyebrow span {

    width: 35px;

    height: 2px;

    background:
        linear-gradient(90deg,
            var(--rentx-blue-light),
            var(--rentx-green));
}


.rentx-exhibitor-title {

    max-width: 750px;

    margin: 0;

    color: var(--rentx-white);

    font-size: clamp(48px, 5vw, 72px);

    line-height: 1.03;

    font-weight: 800;

    letter-spacing: -3.5px;
}


.rentx-exhibitor-title span {

    display: block;

    background:
        linear-gradient(100deg,
            var(--rentx-blue-light),
            var(--rentx-white) 55%,
            #66d7a9);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.rentx-exhibitor-intro {

    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.rentx-exhibitor-counter {

    flex: 0 0 40px;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #8eb9f3;

    border: 1px solid rgba(126, 175, 237, .25);

    background: rgba(255, 255, 255, .035);

    font-size: 10px;

    font-weight: 800;
}


.rentx-exhibitor-intro p {

    margin: 0;

    color: #91a2b5;

    font-size: 13px;

    line-height: 1.8;

    font-weight: 500;
}

/* =========================================================
   RENTX EXHIBITOR GRID
========================================================= */

.rentx-exhibitor-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/* =========================================================
   ALL NORMAL EXHIBITOR TILES
========================================================= */

.rentx-exhibitor-tile {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    min-height: 320px;

    overflow: hidden;

    border-radius: 18px;

    text-decoration: none;

    isolation: isolate;

    transition: var(--rentx-transition);

    /* IMPORTANT */
    grid-column: span 1 !important;
    grid-row: span 1 !important;
}


/* =========================================================
   REMOVE OLD BENTO LARGE TILE BEHAVIOUR
========================================================= */

/* Your first tile previously used rentx-tile-large */

.rentx-tile-large,
.rentx-tile-02,
.rentx-tile-03,
.rentx-tile-04,
.rentx-tile-05,
.rentx-tile-06,
.rentx-tile-07,
.rentx-tile-08,
.rentx-tile-09,
.rentx-tile-finance {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
}


/* =========================================================
   TILE IMAGE
========================================================= */

.rentx-exhibitor-tile img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -2;

    transition:
        transform .7s cubic-bezier(.22, .61, .36, 1);
}


/* =========================================================
   TILE OVERLAY
========================================================= */

.rentx-tile-overlay {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(180deg,
            rgba(13, 57, 66, 0.08) 0%,
            rgba(13, 57, 66, 0.25) 40%,
            rgba(8, 47, 55, 0.95) 100%);
}


/* =========================================================
   TILE HOVER
========================================================= */

.rentx-exhibitor-tile:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(13, 57, 66, 0.18);
}


.rentx-exhibitor-tile:hover img {
    transform: scale(1.08);
}


/* =========================================================
   REGISTER CTA
========================================================= */

.rentx-exhibitor-cta-tile {

    position: relative;

    grid-column: span 2;

    min-height: 320px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 32px;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            var(--rentx-teal-dark),
            var(--rentx-teal));

    color: var(--rentx-white);

    isolation: isolate;

    transition: var(--rentx-transition);
}


/* CTA Hover */

.rentx-exhibitor-cta-tile:hover {

    transform: translateY(-6px);

    box-shadow:
        0 22px 50px rgba(13, 57, 66, 0.28);

}


/* =========================================================
   CTA GRID BACKGROUND
========================================================= */

.rentx-cta-grid {

    position: absolute;

    inset: 0;

    opacity: .12;

    pointer-events: none;

    background-image:

        linear-gradient(rgba(255, 255, 255, .25) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .25) 1px,
            transparent 1px);

    background-size: 42px 42px;

    z-index: -1;

}


/* =========================================================
   CTA GLOW
========================================================= */

.rentx-cta-glow {

    position: absolute;

    width: 350px;
    height: 350px;

    right: -120px;
    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(142, 191, 31, .35),
            transparent 70%);

    filter: blur(15px);

    pointer-events: none;

    z-index: -1;

}


/* =========================================================
   CTA TOP
========================================================= */

.rentx-cta-top {

    display: flex;

    align-items: center;
    justify-content: space-between;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--rentx-green-light);

}


.rentx-cta-top i {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .1);

    transition: var(--rentx-transition);

}


.rentx-exhibitor-cta-tile:hover .rentx-cta-top i {

    background: var(--rentx-green-light);

    color: var(--rentx-black);

}


/* =========================================================
   CTA CONTENT
========================================================= */

.rentx-cta-content {

    max-width: 520px;

}


.rentx-cta-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    font-size: 24px;

    background:
        linear-gradient(135deg,
            var(--rentx-green),
            var(--rentx-green-light));

    color: var(--rentx-black);

}


.rentx-cta-eyebrow {

    display: block;

    margin-bottom: 10px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    color: var(--rentx-green-light);

}


.rentx-cta-content h3 {

    margin: 0 0 14px;

    font-size: clamp(30px, 3vw, 48px);

    line-height: 1.05;

    font-weight: 700;

    color: var(--rentx-white);

}


.rentx-cta-content h3 span {

    color: var(--rentx-green-light);

}


.rentx-cta-content p {

    max-width: 500px;

    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .7);

}


/* =========================================================
   CTA BUTTON
========================================================= */

.rentx-cta-button {

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    align-self: flex-start;

    margin-top: 28px;

    padding: 14px 20px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    background: var(--rentx-green-light);

    color: var(--rentx-black);

    transition: var(--rentx-transition);

}


.rentx-cta-button:hover {

    background: var(--rentx-white);

    color: var(--rentx-black);

    transform: translateX(5px);

}


/* =========================================================
   CTA BOTTOM
========================================================= */

.rentx-cta-bottom {

    display: flex;

    gap: 22px;

    margin-top: 25px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: rgba(255, 255, 255, .45);

}


@media (max-width: 991px) {

    .rentx-exhibitor-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 16px;

    }


    .rentx-exhibitor-tile {

        min-height: 300px;

    }


    .rentx-exhibitor-cta-tile {

        grid-column: span 2;

        min-height: 340px;

    }

}

@media (max-width: 575px) {

    .rentx-exhibitor-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .rentx-exhibitor-tile {

        min-height: 300px;

    }


    .rentx-exhibitor-cta-tile {

        grid-column: span 1;

        min-height: 420px;

        padding: 25px;

    }


    .rentx-cta-content h3 {

        font-size: 36px;

    }


    .rentx-cta-bottom {

        gap: 12px;

        font-size: 9px;

    }

}


/* =========================================================
   TILE CONTENT
========================================================= */

.rentx-tile-content {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 19px;

    z-index: 5;
}


.rentx-tile-category {
    display: block;

    margin-bottom: 8px;

    color: #71d7ac;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-tile-content h3 {
    max-width: 310px;

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;

    letter-spacing: -0.2px;
}


.rentx-tile-large .rentx-tile-content h3 {
    font-size: 26px;
}


.rentx-tile-content p {
    max-width: 300px;

    margin: 0 0 10px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.45s ease,
        opacity 0.4s ease;
}


.rentx-exhibitor-tile:hover .rentx-tile-content p {
    max-height: 80px;

    opacity: 1;
}


/* =========================================================
   LINK
========================================================= */

.rentx-tile-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    font-size: 8px;
    font-weight: 700;

    opacity: 0.72;

    transition:
        opacity 0.3s ease,
        color 0.3s ease;
}


.rentx-tile-link i {
    font-size: 7px;
}


.rentx-exhibitor-tile:hover .rentx-tile-link {
    color: #72dbae;

    opacity: 1;
}

/* =========================================================
   OVERLAY
========================================================= */

.rentx-tile-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(5, 15, 25, 0.05) 0%,
            rgba(5, 15, 25, 0.28) 35%,
            rgba(5, 15, 25, 0.94) 100%);

    transition: background 0.5s ease;
}


.rentx-exhibitor-tile:hover .rentx-tile-overlay {
    background:
        linear-gradient(180deg,
            rgba(5, 15, 25, 0.02),
            rgba(5, 15, 25, 0.84));
}

/* =========================================================
   CTA
========================================================= */

.rentx-exhibitor-cta-tile {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 25px;

    background:
        linear-gradient(145deg,
            var(--rentx-blue) 0%,
            #06479e 48%,
            #08765f 100%);

    border: 1px solid rgba(255, 255, 255, 0.15);
}


/* CTA GRID */

.rentx-cta-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px);

    background-size: 35px 35px;

    opacity: 0.35;
}


/* CTA GLOW */

.rentx-cta-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    bottom: -100px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(99, 230, 174, 0.4),
            transparent 68%);
}


/* CTA TOP */

.rentx-cta-top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.rentx-cta-top span {
    color: rgba(255, 255, 255, 0.65);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-cta-top i {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--rentx-white);

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    font-size: 13px;
}


/* CTA CONTENT */

.rentx-cta-content {
    position: relative;

    z-index: 2;
}


.rentx-cta-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: var(--rentx-white);

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.18);

    font-size: 16px;
}


.rentx-cta-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: var(--rentx-green-light);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-cta-content h3 {
    margin: 0 0 10px;

    color: var(--rentx-white);

    font-size: 32px;

    line-height: 1.03;

    letter-spacing: -1.5px;

    font-weight: 800;
}


.rentx-cta-content h3 span {
    display: inline;

    color: var(--rentx-green-light);
}


.rentx-cta-content p {
    max-width: 500px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;

    line-height: 1.7;
}


/* CTA BUTTON */

.rentx-cta-button {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 48px;

    padding: 0 16px;

    color: var(--rentx-teal-dark);

    background: var(--rentx-white);

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.rentx-cta-button i {
    font-size: 9px;

    transition: transform 0.3s ease;
}


.rentx-cta-button:hover {
    color: var(--rentx-teal-dark);

    background: var(--rentx-green-light);

    transform: translateY(-3px);
}


.rentx-cta-button:hover i {
    transform: translateX(4px);
}


/* CTA BOTTOM */

.rentx-cta-bottom {
    position: relative;

    z-index: 2;

    display: flex;

    gap: 12px;

    padding-top: 13px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.rentx-cta-bottom span {
    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.rentx-cta-bottom span:not(:last-child)::after {
    content: "•";

    margin-left: 12px;

    color: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   SECTION 6 : VISITOR PROFILE
   LIGHT NETWORK / DECISION MAKER DESIGN
========================================================= */
/* =========================================================
   RENTX VISITOR PROFILE
========================================================= */

.rentx-visitor-section {
    position: relative;

    padding: 70px 0;

    background: var(--rentx-bg);

    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND
========================================================= */

.rentx-visitor-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -180px;
    right: -140px;

    background: rgba(0, 137, 194, 0.045);

    border-radius: 50%;

    pointer-events: none;
}

.rentx-visitor-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -180px;
    left: -130px;

    background: rgba(121, 164, 32, 0.045);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.rentx-section-heading {
    position: relative;

    z-index: 2;

    max-width: 900px;

    margin-bottom: 55px;
}


/* =========================================================
   EYEBROW
========================================================= */

.rentx-eyebrow {
    display: inline-flex;

    align-items: center;

    margin-bottom: 16px;

    color: var(--rentx-blue);

    font-size: 15px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.18em;
}

.rentx-eyebrow::before {
    content: "";

    display: inline-block;

    width: 28px;
    height: 2px;

    margin-right: 10px;

    background: var(--rentx-green);
}


/* =========================================================
   HEADING
========================================================= */

.rentx-section-heading h2 {
    margin: 0;

    max-width: 850px;

    color: var(--rentx-black);

    font-size: 52px;

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -0.04em;
}


/* =========================================================
   GRID
========================================================= */

.rentx-profile-grid {
    position: relative;

    z-index: 2;
}


/* =========================================================
   PROFILE CARD
========================================================= */

.rentx-profile-card {
    position: relative;

    height: 100%;

    padding: 30px 28px;

    background: var(--rentx-white);

    border: 1px solid var(--rentx-border);

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(24, 61, 105, 0.045);

    overflow: hidden;

    transition:
        transform 0.35s cubic-bezier(.22, .61, .36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* =========================================================
   CARD TOP ACCENT
========================================================= */

.rentx-profile-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(90deg,
            var(--rentx-blue),
            var(--rentx-green));

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.35s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.rentx-profile-card:hover {
    transform: translateY(-7px);

    border-color: rgba(121, 164, 32, 0.45);

    box-shadow:
        0 20px 45px rgba(24, 61, 105, 0.11);
}

.rentx-profile-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   ICON
========================================================= */

.rentx-profile-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    color: var(--rentx-blue);

    border-radius: 12px;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}


.rentx-profile-icon svg {
    width: 26px;
    height: 26px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   ICON HOVER
========================================================= */

.rentx-profile-card:hover .rentx-profile-icon {
    color: var(--rentx-green);

    
    transform: scale(1.06);
}


/* =========================================================
   CARD TITLE
========================================================= */

.rentx-profile-card h3 {
    margin-top: 24px;

    margin-bottom: 0;

    color: var(--rentx-black);

    font-size: 18px;

    font-weight: 700;

    line-height: 1.45;

    letter-spacing: -0.015em;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.rentx-profile-card p {
    margin-top: 10px;

    margin-bottom: 0;

    color: var(--rentx-muted);

    font-size: 14px;

    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.rentx-profile-card::after {
    content: "";

    position: absolute;

    right: 20px;
    bottom: 18px;

    width: 6px;
    height: 6px;

    background: var(--rentx-green);

    border-radius: 50%;

    opacity: 0;

    transform: scale(0);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.rentx-profile-card:hover::after {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .rentx-visitor-section {
        padding: 90px 0;
    }

    .rentx-section-heading {
        margin-bottom: 45px;
    }

    .rentx-section-heading h2 {
        font-size: 42px;
    }

    .rentx-profile-card {
        padding: 26px 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .rentx-visitor-section {
        padding: 70px 0;
    }

    .rentx-section-heading {
        margin-bottom: 35px;

        text-align: center;
    }

    .rentx-eyebrow {
        justify-content: center;

        font-size: 13px;

        letter-spacing: 0.15em;
    }

    .rentx-section-heading h2 {
        font-size: 34px;

        line-height: 1.18;
    }

    .rentx-profile-card {
        padding: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .rentx-section-heading h2 {
        font-size: 29px;
    }

    .rentx-profile-card {
        padding: 24px;
    }

    .rentx-profile-icon {
        width: 48px;
        height: 48px;
    }

    .rentx-profile-icon svg {
        width: 24px;
        height: 24px;
    }

    .rentx-profile-card h3 {
        font-size: 17px;
    }

    .rentx-profile-card p {
        font-size: 13px;
    }

}

/* =========================================================
   SECTION 7 : CONCURRENT PROGRAMS
   DARK EDITORIAL / CONFERENCE STYLE
========================================================= */

.rentx-programs-section {

    position: relative;

    padding: 70px 0;

    background: var(--rentx-teal-dark);

    color: var(--rentx-white);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.rentx-programs-grid {

    position: absolute;

    inset: 0;

    opacity: .28;

    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px);

    background-size: 60px 60px;

    pointer-events: none;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.rentx-programs-glow {

    position: absolute;

    width: 800px;

    height: 800px;

    top: -450px;

    right: -250px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(0, 137, 194, .20),
            rgba(121, 164, 32, .07) 40%,
            transparent 70%);

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.rentx-programs-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr .55fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 60px;
}


.rentx-programs-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--rentx-blue-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.rentx-programs-eyebrow span {

    width: 35px;

    height: 2px;

    background:
        linear-gradient(90deg,
            var(--rentx-blue-light),
            var(--rentx-green));
}


.rentx-programs-title {

    max-width: 780px;

    margin: 0;

    color: var(--rentx-white);

    font-size: clamp(48px, 5vw, 72px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -3.5px;
}


.rentx-programs-title span {

    display: block;

    background:
        linear-gradient(100deg,
            var(--rentx-white),
            var(--rentx-blue-light) 55%,
            var(--rentx-green-light));

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.rentx-programs-intro {

    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.rentx-programs-count {

    flex: 0 0 40px;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--rentx-blue-light);

    border: 1px solid rgba(126, 175, 237, .25);

    background: rgba(255, 255, 255, .035);

    font-size: 10px;

    font-weight: 800;
}


.rentx-programs-intro p {

    margin: 0;

    color: #91a2b5;

    font-size: 12px;

    line-height: 1.8;

}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.rentx-programs-slider-wrap {

    position: relative;

    z-index: 3;
}


/* =========================================================
   SWIPER
========================================================= */

.rentx-programs-swiper {

    width: 100%;

    overflow: hidden;

}


/* =========================================================
   PROGRAM SLIDE
========================================================= */

.rentx-program-slide {

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    min-height: 500px;

    background: var(--rentx-dark);

    border: 1px solid rgba(255, 255, 255, .09);

    overflow: hidden;
}


/* =========================================================
   IMAGE
========================================================= */

.rentx-program-image {

    position: relative;

    display: block;

    min-height: 500px;

    overflow: hidden;

    text-decoration: none;
}


.rentx-program-image img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    filter:
        saturate(.78) contrast(1.08);

    transition:
        transform .8s cubic-bezier(.2, .65, .3, 1),
        filter .5s ease;
}


.rentx-program-slide:hover .rentx-program-image img {

    transform: scale(1.045);

    filter:
        saturate(.95) contrast(1.08);
}


.rentx-program-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(4, 12, 21, .02),
            rgba(4, 12, 21, .08));
}


/* =========================================================
   IMAGE SOURCE
========================================================= */

.rentx-image-source {

    position: absolute;

    right: 18px;

    bottom: 18px;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 10px;

    color: rgba(255, 255, 255, .82);

    background:
        rgba(5, 15, 25, .62);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: .3px;
}


.rentx-image-source i {

    font-size: 7px;
}


/* =========================================================
   PROGRAM CONTENT
========================================================= */

.rentx-program-content {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 10px;

    padding: 35px;

    background:
        linear-gradient(145deg,
            var(--rentx-dark),
            var(--rentx-dark));
}


/* =========================================================
   CONTENT TOP
========================================================= */

.rentx-program-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.rentx-program-number {

    color: var(--rentx-blue-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-program-label {

    color: #64d5a4;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.rentx-program-main {

    margin-top: 25px;
}


.rentx-program-icon {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    color: #77dcae;

    background:
        rgba(121, 164, 32, .08);

    border: 1px solid rgba(121, 164, 32, .22);

    font-size: 18px;
}


.rentx-program-main h3 {

    margin: 0 0 13px;

    color: var(--rentx-white);

    font-size: 38px;

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.rentx-program-lead {

    max-width: 420px;

    margin: 0 0 17px;

    color: #b9c9da;

    font-size: 16px;

    line-height: 1.6;

    font-weight: 600;
}


.rentx-program-description {

    max-width: 430px;

    margin: 0;

    color: #72859a;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   PROGRAM FOOTER
========================================================= */

.rentx-program-footer {

    display: flex;

    align-items: center;

    gap: 15px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, .09);
}


.rentx-program-footer span {

    color: #5e7185;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.rentx-program-footer span:not(:last-child)::after {

    content: "•";

    margin-left: 15px;

    color: #31506e;
}


/* =========================================================
   SLIDER CONTROLS
========================================================= */

.rentx-program-controls {

    display: grid;

    grid-template-columns:
        1fr auto auto;

    align-items: center;

    gap: 30px;

    margin-top: 22px;
}


/* =========================================================
   PROGRESS
========================================================= */

.rentx-program-progress {

    position: relative;

    width: 100%;

    height: 1px;

    background:
        rgba(255, 255, 255, .12);

    overflow: hidden;
}


.rentx-program-progress-fill {

    position: absolute;

    left: 0;

    top: 0;

    width: 25%;

    height: 1px;

    background:
        linear-gradient(90deg,
            var(--rentx-blue),
            var(--rentx-green));

    transition:
        width .5s ease;
}


/* =========================================================
   COUNTER
========================================================= */

.rentx-program-counter {

    display: flex;

    align-items: center;

    gap: 5px;

    color: #5e7185;

    font-size: 9px;

    font-weight: 700;
}


.rentx-program-current {

    color: var(--rentx-white);

    font-size: 12px;
}


/* =========================================================
   ARROWS
========================================================= */

.rentx-program-arrows {

    display: flex;

    gap: 7px;
}


.rentx-program-arrows button {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #b8c6d5;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, .12);

    font-size: 9px;

    cursor: pointer;

    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.rentx-program-arrows button:hover {

    color: var(--rentx-white);

    background: var(--rentx-blue);

    border-color: var(--rentx-blue);
}


/* =========================================================
   PROGRAM NAVIGATION
========================================================= */

.rentx-program-nav {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}


.rentx-program-nav-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 70px;

    padding: 0 17px;

    color: #667a8f;

    background: transparent;

    border: 0;

    border-right: 1px solid rgba(255, 255, 255, .07);

    text-align: left;

    cursor: pointer;

    transition:
        color .3s ease,
        background .3s ease;
}


.rentx-program-nav-item:last-child {

    border-right: 0;
}


.rentx-program-nav-item span {

    color: #42576c;

    font-size: 16px;

    font-weight: 800;
}


.rentx-program-nav-item strong {

    color: inherit;

    font-size: 16px;

    font-weight: 700;
}


.rentx-program-nav-item:hover {

    color: var(--rentx-white);

    background:
        rgba(255, 255, 255, .025);
}


.rentx-program-nav-item.is-active {

    color: var(--rentx-white);

}


.rentx-program-nav-item.is-active::before {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: -1px;

    height: 2px;

    background:
        linear-gradient(90deg,
            var(--rentx-blue),
            var(--rentx-green));
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.rentx-programs-bottom {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 25px;

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .08);
}


.rentx-programs-bottom-mark {

    display: flex;

    gap: 4px;
}


.rentx-programs-bottom-mark span {

    width: 4px;

    height: 20px;

    background: var(--rentx-blue);
}


.rentx-programs-bottom-mark span:nth-child(2) {

    background: var(--rentx-blue);
}


.rentx-programs-bottom-mark span:nth-child(3) {

    background: var(--rentx-green);
}


.rentx-programs-bottom small {

    display: block;

    margin-bottom: 5px;

    color: #66809a;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-programs-bottom strong {

    display: block;

    color: var(--rentx-white);

    font-size: 14px;

    font-weight: 700;
}


.rentx-programs-bottom-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    color: var(--rentx-white);

    border: 1px solid rgba(255, 255, 255, .14);

    font-size: 8px;

    font-weight: 800;

    text-decoration: none;

    transition:
        background .3s ease,
        border-color .3s ease;
}


.rentx-programs-bottom-link:hover {

    color: var(--rentx-white);

    background: var(--rentx-blue);

    border-color: var(--rentx-blue);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rentx-programs-section {

        padding: 105px 0;
    }


    .rentx-programs-header {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 50px;
    }


    .rentx-program-slide {

        grid-template-columns: 1fr;

        min-height: auto;
    }


    .rentx-program-image {

        min-height: 380px;
    }


    .rentx-program-content {

        min-height: 400px;
    }


    .rentx-program-nav-item {

        padding: 0 12px;

        gap: 10px;
    }


    .rentx-program-nav-item strong {

        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rentx-programs-section {

        padding: 80px 0;
    }


    .rentx-programs-title {

        font-size: 40px;

        letter-spacing: -2px;
    }


    .rentx-programs-intro p {

        font-size: 11px;
    }


    .rentx-program-image {

        min-height: 280px;
    }


    .rentx-program-content {

        min-height: 430px;

        padding: 25px;
    }


    .rentx-program-main h3 {

        font-size: 30px;
    }


    .rentx-program-lead {

        font-size: 12px;
    }


    .rentx-program-description {

        font-size: 9px;
    }


    .rentx-program-controls {

        grid-template-columns:
            1fr auto;

        gap: 15px;
    }


    .rentx-program-counter {

        grid-column: 2;

        grid-row: 1;
    }


    .rentx-program-progress {

        grid-column: 1;

        grid-row: 1;
    }


    .rentx-program-arrows {

        grid-column: 1 / 3;

        grid-row: 2;

        justify-content: flex-end;

        margin-top: 3px;
    }


   .rentx-program-nav {

       display: grid;

       grid-template-columns:
           repeat(2, 1fr);

       margin-top: 25px;

       border-top: 1px solid rgba(255, 255, 255, .08);

       border-bottom: 1px solid rgba(255, 255, 255, .08);
   }


    .rentx-program-nav::-webkit-scrollbar {

        display: none;
    }


    .rentx-program-nav-item {

        flex: 0 0 auto;

        min-width: 155px;

        min-height: 60px;

        padding: 0 14px;
    }


    .rentx-programs-bottom {

        grid-template-columns:
            auto 1fr;

        gap: 15px;
    }


    .rentx-programs-bottom-link {

        grid-column: 1 / 3;

        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .rentx-programs-title {

        font-size: 35px;
    }


    .rentx-program-image {

        min-height: 240px;
    }


    .rentx-program-content {

        min-height: 450px;

        padding: 22px;
    }


    .rentx-program-main h3 {

        font-size: 27px;
    }


    .rentx-program-footer {

        flex-wrap: wrap;

        gap: 8px;
    }

}

/* =========================================================
   SECTION 8 : SPONSORS
========================================================= */

.rentx-sponsors-section {

    position: relative;

    padding: 70px 0;

    background: #f7f9fc;

    color: var(--rentx-teal-dark);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.rentx-sponsors-grid-bg {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(0, 137, 194, .025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(0, 137, 194, .025) 1px,
            transparent 1px);

    background-size: 60px 60px;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.rentx-sponsors-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr .55fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 75px;
}


.rentx-sponsors-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--rentx-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.rentx-sponsors-eyebrow span {

    width: 35px;

    height: 2px;

    background:
        linear-gradient(90deg,
            var(--rentx-blue),
            var(--rentx-green));
}


.rentx-sponsors-title {

    margin: 0;

    color: var(--rentx-teal-dark);

    font-size: clamp(50px, 5vw, 72px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -3.5px;
}


.rentx-sponsors-title span {

    color: var(--rentx-blue);
}


.rentx-sponsors-intro {

    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.rentx-sponsors-count {

    flex: 0 0 40px;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--rentx-blue);

    background: var(--rentx-white);

    border: 1px solid #dce6f0;

    font-size: 10px;

    font-weight: 800;
}


.rentx-sponsors-intro p {

    max-width: 350px;

    margin: 0;

    color: #68788c;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CATEGORY
========================================================= */

.rentx-sponsor-category {

    position: relative;

    z-index: 2;

    margin-bottom: 65px;
}


.rentx-sponsor-category-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;

    padding-bottom: 14px;

    border-bottom: 1px solid #dce4ed;
}


.rentx-sponsor-level {

    display: flex;

    align-items: center;

    gap: 12px;
}


.rentx-level-line {

    width: 28px;

    height: 2px;

    background:
        linear-gradient(90deg,
            var(--rentx-blue),
            var(--rentx-green));
}


.rentx-sponsor-level>span:not(.rentx-level-line) {

    color: #7d8da0;

    font-size: 12px;

    font-weight: 800;
}


.rentx-sponsor-level strong {

    color: #152438;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.rentx-sponsor-category-head p {

    margin: 0;

    color: #8996a6;

    font-size: 13px;
}


/* =========================================================
   PLATINUM
========================================================= */

.rentx-platinum-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.rentx-logo-card {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 145px;

    padding: 25px;

    background: var(--rentx-white);

    border: 1px solid #e1e8f0;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.rentx-logo-card:hover {

    transform: translateY(-4px);

    border-color: rgba(0, 137, 194, .25);

    box-shadow:
        0 18px 40px rgba(16, 46, 76, .08);
}


/* =========================================================
   LOGO PLACEHOLDER
========================================================= */

.rentx-logo-placeholder {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #26384d;

    filter: grayscale(1);

    opacity: .65;

    transition:
        filter .35s ease,
        opacity .35s ease,
        transform .35s ease;
}


.rentx-logo-card:hover .rentx-logo-placeholder {

    filter: grayscale(0);

    opacity: 1;

    transform: scale(1.04);
}


.rentx-logo-mark {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--rentx-white);

    background:
        linear-gradient(145deg,
            var(--rentx-blue),
            var(--rentx-green));

    font-size: 16px;

    font-weight: 800;
}


.rentx-logo-placeholder strong {

    font-size: 16px;

    font-weight: 800;

    letter-spacing: -.5px;
}


.rentx-logo-platinum {

    min-height: 180px;
}


.rentx-logo-platinum small {

    position: absolute;

    left: 18px;

    bottom: 15px;

    color: #a0adbb;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


/* =========================================================
   GOLD
========================================================= */

.rentx-gold-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 8px;
}


.rentx-gold-grid .rentx-logo-card {

    min-height: 120px;
}


/* =========================================================
   SILVER
========================================================= */

.rentx-silver-category {

    margin-bottom: 70px;
}


.rentx-silver-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 6px;
}


.rentx-silver-grid .rentx-logo-card {

    min-height: 90px;

    padding: 15px;
}


.rentx-silver-grid strong {

    color: #718092;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .3px;

    text-align: center;
}


/* =========================================================
   SPONSOR CTA
========================================================= */

.rentx-sponsor-cta {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 38px 42px;

    background:
        linear-gradient(110deg,
            #071c33,
            var(--rentx-blue) 68%,
            #087d61);

    overflow: hidden;
}


.rentx-sponsor-cta::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -100px;

    top: -170px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .15),
            transparent 70%);
}


.rentx-sponsor-cta-content {

    position: relative;

    z-index: 2;
}


.rentx-sponsor-cta-content>span {

    display: block;

    margin-bottom: 9px;

    color: var(--rentx-green-light);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.rentx-sponsor-cta-content h3 {

    max-width: 650px;

    margin: 0;

    color: var(--rentx-white);

    font-size: 25px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.7px;
}


.rentx-sponsor-cta-button {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    flex: 0 0 auto;

    padding: 14px 18px;

    color: var(--rentx-teal-dark);

    background: var(--rentx-white);

    font-size: 9px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease;
}


.rentx-sponsor-cta-button:hover {

    color: var(--rentx-teal-dark);

    background: var(--rentx-green-light);

    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .rentx-sponsors-section {

        padding: 105px 0;
    }


    .rentx-sponsors-header {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 55px;
    }


    .rentx-platinum-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }


    .rentx-gold-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }


    .rentx-silver-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }


    .rentx-sponsor-cta {

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

}


@media (max-width: 767px) {

    .rentx-sponsors-section {

        padding: 80px 0;
    }


    .rentx-sponsors-title {

        font-size: 40px;

        letter-spacing: -2px;
    }


    .rentx-sponsors-intro p {

        font-size: 11px;
    }


    .rentx-sponsor-category-head {

        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }


    .rentx-platinum-grid {

        grid-template-columns: 1fr;
    }


    .rentx-logo-platinum {

        min-height: 145px;
    }


    .rentx-gold-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .rentx-silver-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .rentx-sponsor-cta {

        padding: 30px 25px;
    }


    .rentx-sponsor-cta-content h3 {

        font-size: 22px;
    }

}


@media (max-width: 420px) {

    .rentx-sponsors-title {

        font-size: 35px;
    }


    .rentx-gold-grid,
    .rentx-silver-grid {

        grid-template-columns: 1fr;
    }

}
/* =========================================================
   RENTX PREMIUM FOOTER
========================================================= */

.rentx-footer {

    position: relative;

    overflow: hidden;

    padding: 55px 0 0;

    background:
        linear-gradient(135deg,
            var(--rentx-teal-dark),
            var(--rentx-teal));

    color: var(--rentx-white);

}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.rentx-footer::before {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -250px;
    top: 180px;

    border-radius: 50%;

    background:

        radial-gradient(circle,
            rgba(0, 177, 235, .08),
            transparent 70%);

    pointer-events: none;

}


.rentx-footer::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .035;

    background-image:

        linear-gradient(rgba(255, 255, 255, .8) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .8) 1px,
            transparent 1px);

    background-size: 40px 40px;

}


/* =========================================================
   CONTAINER LAYER
========================================================= */

.rentx-footer .container {

    position: relative;

    z-index: 2;

}


/* =========================================================
   TOP AREA
========================================================= */

.rentx-footer-top {

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 35px;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, .14);

    border-radius: 20px;

}


/* =========================================================
   BRAND
========================================================= */

.rentx-footer-brand {

    display: flex;

    align-items: center;

    gap: 35px;

}


.rentx-footer-logo img {

    width: 210px;

    max-width: 100%;

    height: auto;

}


.rentx-footer-divider {

    width: 1px;

    height: 170px;

    background:
        rgba(255, 255, 255, .18);

}


.rentx-footer-description {

    max-width: 360px;

}


.rentx-footer-description p {

    margin: 0 0 25px;

    font-size: 15px;

    line-height: 1.8;

    color:
        rgba(255, 255, 255, .68);

}


/* =========================================================
   SOCIAL
========================================================= */

.rentx-social-links {

    display: flex;

    gap: 10px;

}


.rentx-social-links a {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    border:
        1px solid rgba(255, 255, 255, .16);

    color:
        rgba(255, 255, 255, .8);

    text-decoration: none;

    transition:
        var(--rentx-transition);

}


.rentx-social-links a:hover {

    transform:
        translateY(-4px);

    background:
        var(--rentx-green-light);

    border-color:
        var(--rentx-green-light);

    color:
        var(--rentx-black);

}


/* =========================================================
   EVENT CARD
========================================================= */

.rentx-next-event {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 30px;

    border-radius: 16px;

    background:

        linear-gradient(135deg,
            rgba(255, 255, 255, .06),
            rgba(255, 255, 255, .025));

}


.rentx-event-eyebrow {

    display: block;

    margin-bottom: 10px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color:
        var(--rentx-green-light);

}


.rentx-next-event h3 {

    margin: 0 0 8px;

    font-size: 34px;

    font-weight: 700;

}


.rentx-next-event p {

    margin: 0;

    font-size: 13px;

    color:
        rgba(255, 255, 255, .58);

}


.rentx-next-event p i {

    margin-right: 5px;

    color:
        var(--rentx-green-light);

}


/* =========================================================
   EVENT DATE
========================================================= */

.rentx-event-date {

    display: flex;

    align-items: baseline;

    gap: 9px;

    margin-top: 25px;

}


.rentx-event-date strong {

    font-size: 30px;

    color:
        var(--rentx-green-light);

}


.rentx-event-date>span:not(.rentx-date-line) {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    color:
        rgba(255, 255, 255, .65);

}


.rentx-event-date small {

    font-size: 10px;

    margin-left: 3px;

    color:
        rgba(255, 255, 255, .45);

}


.rentx-date-line {

    width: 28px;

    height: 1px;

    background:
        var(--rentx-green-light);

}


/* =========================================================
   CALENDAR BUTTON
========================================================= */

.rentx-calendar-button {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-width: 150px;

    padding-left: 25px;

    border-left:
        1px solid rgba(255, 255, 255, .15);

    text-decoration: none;

    color:
        var(--rentx-green-light);

}


.rentx-calendar-button i {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    border:
        1px solid var(--rentx-green-light);

    font-size: 22px;

    transition:
        var(--rentx-transition);

}


.rentx-calendar-button:hover i {

    background:
        var(--rentx-green-light);

    color:
        var(--rentx-black);

    transform:
        translateY(-4px);

}


/* =========================================================
   FOOTER LINKS
========================================================= */

.rentx-footer-links {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 45px;

    padding: 65px 0;

    margin-top: 50px;

    border-top:
        1px solid rgba(255, 255, 255, .13);

    border-bottom:
        1px solid rgba(255, 255, 255, .13);

}


.rentx-footer-column h4 {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 28px;

    font-size: 17px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.rentx-footer-heading-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    border:
        1px solid rgba(139, 207, 40, .5);

    color:
        var(--rentx-green-light);

}


.rentx-footer-column ul {

    padding: 0;

    margin: 0;

    list-style: none;

}


.rentx-footer-column ul li {

    margin-bottom: 18px;

    font-size: 15px;

    color:
        rgba(255, 255, 255, .68);

}


.rentx-footer-column ul li a {

    color:
        rgba(255, 255, 255, .68);

    text-decoration: none;

    transition:
        var(--rentx-transition);

}


.rentx-footer-column ul li a:hover {

    padding-left: 5px;

    color:
        var(--rentx-blue-light);

}


.rentx-contact-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 5px;

    color:
        var(--rentx-blue-light) !important;

}


.rentx-contact-link i {

    font-size: 12px;

}


/* =========================================================
   CTA
========================================================= */

.rentx-footer-cta {

    display: grid;

    grid-template-columns:
        auto 1.4fr 1fr auto;

    align-items: center;

    gap: 45px;

    padding: 45px 0;

}


.rentx-footer-cta-icon {

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid var(--rentx-green-light);

    font-size: 24px;

    color:
        var(--rentx-white);

}


.rentx-footer-cta-title h3 {

    margin: 0;

    font-size: 32px;

    line-height: 1.2;

}


.rentx-footer-cta-title span {

    color:
        var(--rentx-blue-light);

}


.rentx-footer-cta-text p {

    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, .7);

}


.rentx-footer-register {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    min-width: 200px;

    padding: 18px 25px;

    border-radius: 8px;

    border:
        1px solid var(--rentx-green-light);

    color:
        var(--rentx-white);

    text-decoration: none;

    font-weight: 600;

    transition:
        var(--rentx-transition);

}


.rentx-footer-register:hover {

    background:
        var(--rentx-green-light);

    color:
        var(--rentx-black);

    transform:
        translateY(-3px);

}


/* =========================================================
   BOTTOM
========================================================= */

.rentx-footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding: 25px 0;

    border-top:
        1px solid rgba(255, 255, 255, .1);

}


.rentx-footer-bottom p {

    margin: 0;

    font-size: 12px;

    color:
        rgba(255, 255, 255, .45);

}


.rentx-footer-legal {

    display: flex;

    align-items: center;

    gap: 15px;

}


.rentx-footer-legal a {

    font-size: 12px;

    color:
        rgba(255, 255, 255, .55);

    text-decoration: none;

}


.rentx-footer-legal a:hover {

    color:
        var(--rentx-white);

}


.rentx-footer-legal span {

    width: 1px;

    height: 14px;

    background:
        rgba(255, 255, 255, .25);

}


.rentx-powered strong {

    margin-left: 4px;

    font-size: 17px;

    color:
        var(--rentx-white);

}


.rentx-powered strong span {

    color:
        var(--rentx-blue-light);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rentx-footer-top {

        grid-template-columns: 1fr;

    }


    .rentx-footer-links {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .rentx-footer-cta {

        grid-template-columns:
            auto 1fr;

    }


    .rentx-footer-cta-text {

        display: none;

    }


    .rentx-footer-register {

        grid-column: 2;

        justify-self: start;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rentx-footer {

        padding-top: 30px;

    }


    .rentx-footer-top {

        padding: 22px;

    }


    .rentx-footer-brand {

        flex-direction: column;

        align-items: flex-start;

    }


    .rentx-footer-divider {

        display: none;

    }


    .rentx-footer-logo img {

        width: 170px;

    }


    .rentx-next-event {

        flex-direction: column;

        align-items: flex-start;

    }


    .rentx-calendar-button {

        flex-direction: row;

        padding: 20px 0 0;

        border-left: none;

        border-top:
            1px solid rgba(255, 255, 255, .15);

        width: 100%;

        justify-content: flex-start;

    }


    .rentx-calendar-button i {

        width: 48px;
        height: 48px;

    }


    .rentx-footer-links {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 0;

    }


    .rentx-footer-cta {

        grid-template-columns: 1fr;

        gap: 22px;

        padding: 40px 0;

    }


    .rentx-footer-register {

        grid-column: auto;

        width: 100%;

    }


    .rentx-footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        padding-bottom: 30px;

    }


    .rentx-footer-legal {

        flex-wrap: wrap;

    }

}
/* =========================================================
   RENTX PROJECT CTA
   CLIENT REFERENCE THEME
   DARK TEAL / CHARCOAL / WHITE / LIME GREEN
========================================================= */
/* =========================================================
   CTA — 1280PX MAX WIDTH
========================================================= */

.rentx-project-cta {

    position: relative;

    width: 100%;

    max-width: 1280px;

    min-height: 550px;

    margin: 0 auto 40px;

    overflow: hidden;

    border-radius: 18px;

    display: flex;

    align-items: center;

    background-color: var(--rentx-teal);

    background-image:
        url("../images/cta-bg.webp");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}

/* =========================================================
   DARK TEAL OVERLAY
========================================================= */

.rentx-project-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(8, 31, 37, .97) 0%,
            rgba(9, 45, 53, .93) 28%,
            rgba(10, 54, 61, .72) 48%,
            rgba(8, 47, 55, .34) 70%,
            rgba(8, 40, 47, .10) 100%);

}


/* =========================================================
   SUBTLE BRAND OVERLAY
========================================================= */

.rentx-project-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        radial-gradient(circle at 85% 50%,
            rgba(142, 191, 31, .08),
            transparent 30%);

    pointer-events: none;

}

/* =========================================================
   CTA INNER CONTENT
========================================================= */

.rentx-project-inner {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding: 70px 0;

}


/* =========================================================
   ARCHITECTURAL DOT GRID
========================================================= */

.rentx-project-grid {

    position: absolute;

    left: 0;

    top: 0;

    width: 430px;

    height: 100%;

    z-index: 3;

    opacity: .22;

    background-image:
        radial-gradient(rgba(142, 191, 31, .65) 1px,
            transparent 1px);

    background-size: 18px 18px;

    mask-image:
        linear-gradient(90deg,
            black,
            transparent);

    -webkit-mask-image:
        linear-gradient(90deg,
            black,
            transparent);

    pointer-events: none;

}


/* =========================================================
   MAIN CONTENT
========================================================= */
.rentx-project-content {

    position: relative;

    z-index: 5;

    max-width: 720px;

    padding: 0;

}


/* =========================================================
   EYEBROW
========================================================= */

.rentx-project-eyebrow {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 18px;

}


.rentx-project-eyebrow span {

    color: var(--rentx-green-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.rentx-project-eyebrow i {

    display: block;

    width: 42px;

    height: 2px;

    background: var(--rentx-green-light);

}


/* =========================================================
   MAIN TITLE
========================================================= */

.rentx-project-title {

    max-width: 680px;

    margin: 0;

    color: var(--rentx-white);

    font-size: clamp(48px,
            5vw,
            70px);

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -3.5px;

}


/* =========================================================
   TITLE HIGHLIGHT
   Green instead of blue gradient
========================================================= */

.rentx-project-title span {

    color: var(--rentx-green-light);

    background: none;

    -webkit-background-clip: initial;

    background-clip: initial;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.rentx-project-description {

    max-width: 610px;

    margin: 22px 0 28px;

    color: #c4d0d3;

    font-size: 13px;

    line-height: 1.75;

    font-weight: 500;

}


/* =========================================================
   BENEFITS
========================================================= */

.rentx-project-benefits {

    display: flex;

    align-items: center;

    gap: 32px;

    margin-bottom: 28px;

}


.rentx-project-benefit {

    display: flex;

    align-items: center;

    gap: 10px;

}


/* =========================================================
   BENEFIT ICON
========================================================= */

.rentx-project-benefit-icon {

    flex: 0 0 38px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--rentx-green-light);

    background:
        rgba(142, 191, 31, .08);

    border: 1px solid rgba(142, 191, 31, .28);

    border-radius: 50%;

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.rentx-project-benefit:hover .rentx-project-benefit-icon {

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    transform: translateY(-2px);

}


/* =========================================================
   BENEFIT TEXT
========================================================= */

.rentx-project-benefit strong {

    color: #d8e0e2;

    font-size: 9px;

    line-height: 1.5;

    font-weight: 600;

}


/* =========================================================
   CTA BUTTONS
========================================================= */

.rentx-project-actions {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

}


.rentx-project-btn {

    min-width: 250px;

    height: 60px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;

    padding: 0 22px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

}


/* =========================================================
   PRIMARY CTA — LIME
========================================================= */

.rentx-project-btn-primary {

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    border: 1px solid var(--rentx-green-light);

    box-shadow:
        0 12px 28px rgba(142, 191, 31, .20);

}


.rentx-project-btn-primary:hover {

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    border-color: var(--rentx-green-light);

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(142, 191, 31, .28);

}


/* =========================================================
   SECONDARY CTA — WHITE
========================================================= */

.rentx-project-btn-secondary {

    color: var(--rentx-dark);

    background: var(--rentx-white);

    border: 1px solid var(--rentx-white);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, .14);

}


.rentx-project-btn-secondary:hover {

    color: var(--rentx-white);

    background: transparent;

    border-color: rgba(255, 255, 255, .55);

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, .18);

}


/* =========================================================
   BUTTON ARROW
========================================================= */

.rentx-project-btn i {

    font-size: 15px;

    transition:
        transform .3s ease;

}


.rentx-project-btn:hover i {

    transform: translateX(5px);

}


/* =========================================================
   SOCIAL PROOF
========================================================= */

.rentx-project-proof {

    display: flex;

    align-items: center;

    gap: 13px;

}


.rentx-project-avatars {

    display: flex;

    align-items: center;

}


.rentx-project-avatars span {

    width: 30px;

    height: 30px;

    margin-left: -7px;

    overflow: hidden;

    border-radius: 50%;

    border: 2px solid var(--rentx-teal);

    background: #31484d;

}


.rentx-project-avatars span:first-child {

    margin-left: 0;

}


.rentx-project-avatars img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.rentx-project-proof p {

    margin: 0;

    color: #87999d;

    font-size: 9px;

    line-height: 1.5;

}


/* =========================================================
   FLOATING CARD
========================================================= */

.rentx-project-floating-card {

    position: absolute;

    z-index: 7;

    right: 6%;

    bottom: 55px;

    width: 190px;

    padding: 22px;

    background:
        rgba(20, 37, 40, .78);

    border: 1px solid rgba(142, 191, 31, .30);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, .30);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

}


/* =========================================================
   FLOATING ICON
========================================================= */

.rentx-project-floating-icon {

    width: 37px;

    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 17px;

    color: var(--rentx-dark);

    background: var(--rentx-green-light);

    border-radius: 50%;

    font-size: 12px;

    box-shadow:
        0 7px 20px rgba(142, 191, 31, .20);

}


/* =========================================================
   FLOATING LABEL
========================================================= */

.rentx-project-floating-label {

    margin-bottom: 9px;

    color: #8a9b9f;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* =========================================================
   FLOATING HEADING
========================================================= */

.rentx-project-floating-card h3 {

    margin: 0;

    color: var(--rentx-white);

    font-size: 15px;

    line-height: 1.4;

    font-weight: 700;

}


.rentx-project-floating-card h3 span {

    color: var(--rentx-green-light);

}


/* =========================================================
   FLOATING LINE
========================================================= */

.rentx-project-floating-line {

    width: 100%;

    height: 1px;

    margin: 17px 0;

    background:
        linear-gradient(90deg,
            var(--rentx-green-light),
            transparent);

}


/* =========================================================
   FLOATING DESCRIPTION
========================================================= */

.rentx-project-floating-card p {

    margin: 0;

    color: #bdc9cb;

    font-size: 9px;

    line-height: 1.6;

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rentx-project-cta {

        width: calc(100% - 40px);

        max-width: 1280px;

        height: auto;

        min-height: 620px;

        margin: 0 auto 35px;

        border-radius: 14px;

        background-position: 62% center;

    }


    .rentx-project-inner {

        width: 100%;

        height: auto;

        min-height: 620px;

        padding: 65px 40px 150px;

        box-sizing: border-box;

    }


    .rentx-project-content {

        max-width: 650px;

    }


    .rentx-project-benefits {

        gap: 20px;

    }


    .rentx-project-floating-card {

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rentx-project-cta {

        width: calc(100% - 24px);

        max-width: 1280px;

        height: auto;

        min-height: 0;

        margin: 0 auto 30px;

        border-radius: 12px;

        background-position: 68% center;

        background-size: cover;

        overflow: hidden;

    }


    /* -----------------------------------------------------
       OVERLAY
    ----------------------------------------------------- */

    .rentx-project-overlay {

        position: absolute;

        inset: 0;

        width: 100%;

        height: 100%;

        background:
            linear-gradient(180deg,
                rgba(8, 31, 37, .97) 0%,
                rgba(9, 45, 53, .94) 40%,
                rgba(10, 54, 61, .86) 70%,
                rgba(8, 40, 47, .90) 100%);

    }


    /* -----------------------------------------------------
       GRID
    ----------------------------------------------------- */

    .rentx-project-grid {

        width: 280px;

        height: 100%;

        opacity: .10;

    }


    /* -----------------------------------------------------
       INNER
       IMPORTANT:
       NO FIXED HEIGHT
    ----------------------------------------------------- */

    .rentx-project-inner {

        position: relative;

        width: 100%;

        height: auto;

        min-height: 0;

        padding: 52px 20px 28px;

        box-sizing: border-box;

    }


    /* -----------------------------------------------------
       CONTENT
    ----------------------------------------------------- */

    .rentx-project-content {

        position: relative;

        z-index: 5;

        width: 100%;

        max-width: none;

        padding: 0;

    }


    /* -----------------------------------------------------
       EYEBROW
    ----------------------------------------------------- */

    .rentx-project-eyebrow {

        display: flex;

        align-items: center;

        gap: 9px;

        margin-bottom: 15px;

    }


    .rentx-project-eyebrow span {

        font-size: 7px;

        letter-spacing: 1.2px;

    }


    .rentx-project-eyebrow i {

        width: 30px;

        height: 2px;

    }


    /* -----------------------------------------------------
       TITLE
    ----------------------------------------------------- */

    .rentx-project-title {

        max-width: 100%;

        margin: 0;

        font-size: 34px;

        line-height: 1.02;

        letter-spacing: -1.7px;

    }


    /* -----------------------------------------------------
       DESCRIPTION
    ----------------------------------------------------- */

    .rentx-project-description {

        max-width: 100%;

        margin: 18px 0 22px;

        font-size: 10px;

        line-height: 1.65;

    }


    /* -----------------------------------------------------
       BENEFITS
    ----------------------------------------------------- */

    .rentx-project-benefits {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 11px;

        margin-bottom: 24px;

    }


    .rentx-project-benefit {

        width: 100%;

        display: flex;

        align-items: center;

        gap: 10px;

    }


    .rentx-project-benefit-icon {

        width: 32px;

        height: 32px;

        flex: 0 0 32px;

        font-size: 10px;

    }


    .rentx-project-benefit strong {

        font-size: 8px;

        line-height: 1.45;

    }


    /* -----------------------------------------------------
       ACTIONS
    ----------------------------------------------------- */

    .rentx-project-actions {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 9px;

        width: 100%;

        margin-bottom: 22px;

    }


    /* -----------------------------------------------------
       BUTTONS
    ----------------------------------------------------- */

    .rentx-project-btn {

        width: 100%;

        min-width: 0;

        height: 50px;

        min-height: 50px;

        padding: 0 18px;

        box-sizing: border-box;

        font-size: 11px;

    }


    .rentx-project-btn i {

        font-size: 13px;

    }


    /* -----------------------------------------------------
       SOCIAL PROOF
    ----------------------------------------------------- */

    .rentx-project-proof {

        display: flex;

        align-items: center;

        gap: 10px;

    }


    .rentx-project-avatars span {

        width: 25px;

        height: 25px;

    }


    .rentx-project-proof p {

        font-size: 7px;

        line-height: 1.4;

    }


    /* -----------------------------------------------------
       FLOATING CARD
    ----------------------------------------------------- */

    .rentx-project-floating-card {

        display: none;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .rentx-project-cta {

        width: calc(100% - 20px);

        margin: 0 auto 25px;

        border-radius: 10px;

        background-position: 68% center;

    }


    .rentx-project-inner {

        padding:

            45px 16px 24px;

    }


    .rentx-project-title {

        font-size: 31px;

        letter-spacing: -1.5px;

    }


    .rentx-project-description {

        font-size: 9px;

        line-height: 1.65;

        margin-top: 16px;

    }


    .rentx-project-benefits {

        gap: 9px;

        margin-bottom: 20px;

    }


    .rentx-project-benefit-icon {

        width: 30px;

        height: 30px;

        flex-basis: 30px;

    }


    .rentx-project-benefit strong {

        font-size: 7px;

    }


    .rentx-project-btn {

        height: 48px;

        min-height: 48px;

        font-size: 10px;

    }


    .rentx-project-proof p {

        max-width: 180px;

    }

}

/* =========================================================
   HERO
========================================================= */

.rentx-hero {
    position: relative;
    width: 100%;
    height: 780px;
    overflow: hidden;
    background: var(--rentx-blue-dark);
}

.rentx-hero-content h1 span {
    color: var(--rentx-green);
}


/* =========================================================
   SLIDES
========================================================= */

.rentx-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.rentx-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.rentx-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* =========================================================
   IMAGE
========================================================= */

.rentx-slide-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.03);

    transition:
        transform 6s cubic-bezier(.22, .61, .36, 1);
}

.rentx-slide.active .rentx-slide-image {
    transform: scale(1);
}


/* =========================================================
   OVERLAY
========================================================= */
.rentx-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            rgba(3, 25, 30, 0.98) 0%,
            rgba(5, 38, 45, 0.90) 30%,
            rgba(7, 55, 63, 0.55) 65%,
            rgba(7, 55, 63, 0.15) 100%);
}


/* =========================================================
   CONTAINER
========================================================= */

.rentx-container {
    position: relative;
    z-index: 3;

    height: 100%;

    display: flex;
    align-items: center;

    padding-top: 70px;
    padding-bottom: 150px;
}


/* =========================================================
   CONTENT
========================================================= */

.rentx-content {
    width: 100%;
    max-width: 760px;

    color: var(--rentx-white);
}


/* =========================================================
   EYEBROW
========================================================= */

.rentx-eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: var(--rentx-green-light);

    font-size: 15px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.22em;
}


/* =========================================================
   HEADING
========================================================= */

.rentx-content h1 {
    margin: 0;

    max-width: 760px;

    color: var(--rentx-white);

    font-size: 68px;
    font-weight: 800;

    line-height: 1.06;
    letter-spacing: -0.025em;

    text-wrap: balance;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.rentx-content p {
    max-width: 650px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 18px;
    font-weight: 400;

    line-height: 1.75;
}


/* =========================================================
   BUTTONS
========================================================= */

.rentx-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 32px;
}


/* =========================================================
   BUTTON BASE
========================================================= */

.rentx-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    transition: var(--rentx-transition);
}

.rentx-btn svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.rentx-btn-primary {
    color: var(--rentx-white);

    background: var(--rentx-green);

    box-shadow:
        0 10px 25px rgba(121, 164, 32, 0.28);
}

.rentx-btn-primary:hover {
    color: var(--rentx-white);

    background: var(--rentx-green-alt);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(121, 164, 32, 0.35);
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.rentx-btn-outline {
    color: var(--rentx-white);

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(8px);
}

.rentx-btn-outline:hover {
    color: var(--rentx-white);

    background: rgba(255, 255, 255, 0.14);

    border-color: rgba(255, 255, 255, 0.75);

    transform: translateY(-3px);
}


/* =========================================================
   CONTROLS
========================================================= */

.rentx-controls {
    position: absolute;

    z-index: 10;

    left: 0;
    right: 0;
    bottom: 30px;

    pointer-events: none;
}

.rentx-control-inner {
    display: flex;

    align-items: center;

    gap: 20px;

    pointer-events: auto;
}


/* =========================================================
   COUNTER
========================================================= */

.rentx-counter {
    min-width: 65px;

    color: var(--rentx-white);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.02em;
}

.rentx-counter-total {
    color: rgba(255, 255, 255, 0.5);
}


/* =========================================================
   PROGRESS
========================================================= */

.rentx-progress {
    position: relative;

    height: 2px;

    flex: 1;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.22);
}

.rentx-progress-bar {
    height: 100%;

    width: 20%;

    background: var(--rentx-green);

    transition:
        width 0.5s ease;
}


/* =========================================================
   NAVIGATION
========================================================= */

.rentx-navigation {
    display: flex;


}

.rentx-nav-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    color: var(--rentx-white);

    border: 1px solid rgba(255, 255, 255, 0.38);

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: var(--rentx-transition);
}

.rentx-nav-btn svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.rentx-nav-btn:hover {
    color: var(--rentx-white);

    background: rgba(255, 255, 255, 0.15);

    border-color: rgba(255, 255, 255, 0.7);

    transform: translateY(-2px);
}


/* =========================================================
   CONTENT ANIMATION
========================================================= */

.rentx-content>* {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.22, .61, .36, 1);
}

.rentx-slide.active .rentx-content>* {
    opacity: 1;

    transform: translateY(0);
}

.rentx-slide.active .rentx-eyebrow {
    transition-delay: 0.15s;
}

.rentx-slide.active h1 {
    transition-delay: 0.25s;
}

.rentx-slide.active p {
    transition-delay: 0.35s;
}

.rentx-slide.active .rentx-buttons {
    transition-delay: 0.45s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .rentx-hero {
        height: 520px;
    }

    .rentx-content {
        max-width: 650px;
    }

    .rentx-content h1 {
        font-size: 52px;
    }

    .rentx-content p {
        font-size: 17px;
    }

    .rentx-container {
        padding-bottom: 135px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .rentx-hero {
        height: 520px;
    }

    .rentx-navigation {
        display: none;
    }

    .rentx-container {
        align-items: center;
        padding-bottom: 0;
        padding-top: 0;
    }

    .rentx-content {
        max-width: 100%;
    }

    .rentx-eyebrow {
        margin-bottom: 16px;

        font-size: 13px;

        letter-spacing: 0.17em;
    }

    .rentx-content h1 {
        font-size: 38px;

        line-height: 1.08;

        letter-spacing: -0.035em;
    }

    .rentx-content p {
        margin-top: 18px;

        font-size: 15px;

        line-height: 1.65;
    }

    .rentx-buttons {
        margin-top: 25px;

        gap: 10px;
    }

    .rentx-btn {
        min-height: 48px;

        padding: 0 18px;

        font-size: 13px;
    }

    .rentx-control-inner {
        gap: 12px;
    }

    .rentx-counter {
        min-width: 52px;

        font-size: 12px;
    }

    .rentx-nav-btn {
        width: 38px;
        height: 38px;
    }

    .rentx-controls {
        bottom: 22px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rentx-hero {
        height: 520px;
    }

    .rentx-content h1 {
        font-size: 32px;
    }

    .rentx-content p {
        font-size: 14px;
    }

    .rentx-btn {
        min-height: 45px;

        padding: 0 15px;
    }

    .rentx-btn-outline {
        display: none;
    }


}