/* =========================================================
   INDIA RENTX
   PREMIUM INDUSTRIAL TECHNOLOGY WEBSITE
========================================================= */
:root {
    /* =========================================
       RENTX REFERENCE THEME
    ========================================= */

    --rentx-black: #2B2A2C;
    --rentx-dark: #222123;

    --rentx-white: #ffffff;
    --rentx-bg: #f6f7f8;
    --rentx-light-blue: #eef7fd;

    --rentx-text: #2b2a2c;
    --rentx-muted: #737373;
    --rentx-border: #e5e7e9;

    /* Accent */
    --rentx-blue: #1597c5;
    --rentx-green: #8bcf28;

    /* Dark premium section */
    --rentx-teal: #0d3942;
    --rentx-teal-dark: #082f37;

    --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%;

    
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}



.rentx-header-container {
    height: 66px;
    display: flex;
    align-items: center;
    padding-left: 85px;
    padding-right: 85px;
}


/* =========================================================
   LOGO
========================================================= */

.rentx-logo {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

.logo{
    width: auto;
    height: 50px;
}

/* =========================================================
   MOBILE OFFCANVAS LOGO
========================================================= */

.rentx-mobile-menu .rentx-logo .logo {
    width: auto;
    height: 32px;
    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(7, 87, 201, 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(7, 87, 201, 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;
        padding-right: 30px;

    }


    /* 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: 42px;

    }


    .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: #ffffff;

    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   480px and below
--------------------------------------------------------- */

@media (max-width: 480px) {

    .rentx-header-container {

        height: 60px;

        padding-left: 14px;
        padding-right: 14px;

    }


    .rentx-logo .logo {

        height: 38px;

    }


    .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);
}

/* =========================================================
   SECTION 2 : ABOUT RENTX
========================================================= */
/* =========================================================
   SECTION 2 : ABOUT RENTX
   CLIENT REFERENCE THEME
   WHITE / CHARCOAL / LIME GREEN
========================================================= */

.rentx-about-section {

    position: relative;

    padding: 85px 0;

    background: #ffffff;

    color: #2b2a2c;

    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(21, 151, 197, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(21, 151, 197, .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: #8bcf28;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.rentx-about-line {

    display: inline-block;

    width: 30px;

    height: 2px;

    background: #8bcf28;

}


/* =========================================================
   TITLE
========================================================= */

.rentx-about-title {

    max-width: 620px;

    margin: 0 0 24px;

    color: #2b2a2c;

    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: #8bcf28;

    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: #78b51d;

    font-size: 16px;

    border: 1px solid #e2efcf;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.rentx-about-point:hover .rentx-point-icon {

    background: #8bcf28;

    border-color: #8bcf28;

    color: #222123;

    transform: translateY(-2px);

}


/* =========================================================
   POINT TITLE
========================================================= */

.rentx-about-point strong {

    display: block;

    margin-bottom: 4px;

    color: #2b2a2c;

    font-size: 13px;

    font-weight: 800;

}


/* =========================================================
   POINT DESCRIPTION
========================================================= */

.rentx-about-point span {

    display: block;

    color: #777b7e;

    font-size: 10px;

    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: #222123;

    background: #8bcf28;

    border: 1px solid #8bcf28;

    border-radius: 2px;

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(139, 207, 40, .16);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

}


.rentx-about-button:hover {

    color: #ffffff;

    background: #2b2a2c;

    border-color: #2b2a2c;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(43, 42, 44, .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(43, 42, 44, .14);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.rentx-about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(21, 151, 197, .05),
            transparent 55%,
            rgba(139, 207, 40, .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: #8bcf28;

    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(43, 42, 44, .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: #222123;

    background: #8bcf28;

    border-radius: 3px;

    font-size: 12px;

}


/* =========================================================
   FLOATING CARD TEXT
========================================================= */

.rentx-about-floating-card span {

    display: block;

    margin-bottom: 4px;

    color: #929496;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;

}


.rentx-about-floating-card strong {

    display: block;

    max-width: 155px;

    color: #2b2a2c;

    font-size: 10px;

    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: #ffffff;

    border: 1px solid #e2e4e6;

    box-shadow:
        0 15px 35px rgba(43, 42, 44, .11);

}


/* =========================================================
   STAT NUMBER
========================================================= */

.rentx-about-stat strong {

    display: block;

    margin-bottom: 5px;

    color: #1597c5;

    font-size: 23px;

    font-weight: 800;

    line-height: 1;

}


/* =========================================================
   STAT TEXT
========================================================= */

.rentx-about-stat span {

    display: block;

    color: #777b7e;

    font-size: 7px;

    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(#8bcf28 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: 8px;

        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(7, 87, 201, .12),
            transparent 30%),
        radial-gradient(circle at 10% 80%,
            rgba(18, 166, 106, .06),
            transparent 28%),
        #07121f;

    color: #ffffff;

    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: #ffffff;

    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,
            #4d9af0,
            #4eabdf 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: 580px;

    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(7, 87, 201, .08),
            transparent 45%,
            rgba(18, 166, 106, .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: #12a66a;

    box-shadow:
        0 0 0 5px rgba(18, 166, 106, .12);
}


.rentx-why-image-badge small {

    display: block;

    margin-bottom: 6px;

    color: #6d8297;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.rentx-why-image-badge strong {

    display: block;

    color: #ffffff;

    font-size: 12px;

    line-height: 1.5;

    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: 8px;

    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(7, 87, 201, .15);

    border: 1px solid rgba(70, 140, 220, .18);

    color: #6da9ed;

    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,
            #0c1d2f,
            #0a1929);

    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;

    margin-bottom: 25px;
}


.rentx-benefit-number {

    color: #49647e;

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   BENEFIT ICON
========================================================= */

.rentx-benefit-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(7, 87, 201, .13);

    border: 1px solid rgba(65, 137, 218, .16);

    color: #65a7ed;

    border-radius: 6px;

    font-size: 16px;

    transition: all .3s ease;
}


.rentx-benefit-card:hover .rentx-benefit-icon {

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #0757c9,
            #12a66a);

    border-color: transparent;
}


/* =========================================================
   BENEFIT TYPOGRAPHY
========================================================= */

.rentx-benefit-card h3 {

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 800;
}


.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(7, 87, 201, .12),
            rgba(18, 166, 106, .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: #ffffff;

    background:
        linear-gradient(135deg,
            #0757c9,
            #12a66a);

    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: #ffffff;

    font-size: 16px;

    font-weight: 800;
}


.rentx-marketplace-arrow {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #69a9ec;

    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,
            #0757c9 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: #ffffff;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 800;
}


.rentx-event-left h3 span {

    color: #9ce4c5;
}


/* =========================================================
   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: #ffffff;

    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: #8ce1be;

    font-size: 16px;
}


.rentx-event-location strong {

    display: block;

    color: #ffffff;

    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: #ffffff;

    font-weight: 800;
}


/* =========================================================
   DISCOVER BUTTON
========================================================= */

.rentx-why-footer .rentx-about-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 14px 19px;

    color: #ffffff;

    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: #ffffff;

    background: #0757c9;

    border-color: #0757c9;

    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: #f6f7f8;

    color: #2b2a2c;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.rentx-mumbai-grid {

    position: absolute;

    left: -100px;
    bottom: -100px;

    width: 550px;
    height: 550px;

    background-image:
        linear-gradient(rgba(21, 151, 197, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(21, 151, 197, .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(43, 42, 44, .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: #2b2a2c;

    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: #8bcf28;

    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: #2b2a2c;

    background: #8bcf28;

    font-size: 9px;

    font-weight: 800;

}


.rentx-mumbai-intro p {

    margin: 0;

    color: #6d7073;

    font-size: 12px;

    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(43, 42, 44, .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(43, 42, 44, .04),
            transparent 60%,
            rgba(139, 207, 40, .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(43, 42, 44, .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: #222123;

    background: #8bcf28;

    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: #2b2a2c;

    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: #ffffff;

    font-size: 12px;

    font-weight: 700;

    padding: 6px 9px;

    background: rgba(43, 42, 44, .82);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

}


.rentx-mumbai-node span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #8bcf28;

}


/* =========================================================
   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(139, 207, 40, .15),
            rgba(139, 207, 40, .75),
            rgba(43, 42, 44, .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: 7px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


/* =========================================================
   POINT
========================================================= */

.rentx-mumbai-point {

    position: relative;

    display: grid;

    grid-template-columns:
        25px 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: 8px;

    font-weight: 800;

}


/* =========================================================
   POINT ICON
========================================================= */

.rentx-mumbai-point-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #2b2a2c;

    background: #edf6df;

    border: 1px solid #dfedc9;

    border-radius: 4px;

    font-size: 14px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.rentx-mumbai-point:hover .rentx-mumbai-point-icon {

    color: #222123;

    background: #8bcf28;

    border-color: #8bcf28;

    transform: translateY(-2px);

}


/* =========================================================
   POINT CONTENT
========================================================= */

.rentx-mumbai-point-content h3 {

    margin: 0 0 7px;

    color: #2b2a2c;

    font-size: 16px;

    font-weight: 800;

}


.rentx-mumbai-point-content p {

    max-width: 440px;

    margin: 0;

    color: #737679;

    font-size: 12px;

    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: #ffffff;

    border: 1px solid #dedfe1;

    box-shadow:
        0 12px 30px rgba(43, 42, 44, .06);

}


/* =========================================================
   VENUE ICON
========================================================= */

.rentx-mumbai-venue-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #222123;

    background: #8bcf28;

    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: #2b2a2c;

    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: #2b2a2c;

    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: #2b2a2c;

    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: #222123;

    background: #8bcf28;

    border-color: #8bcf28;

}


/* =========================================================
   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: #8bcf28;

}


.rentx-mumbai-footer p {

    max-width: 700px;

    margin: 0;

    color: #737679;

    font-size: 11px;

    line-height: 1.7;

}


.rentx-mumbai-footer strong {

    color: #2b2a2c;

    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:
            22px 40px 1fr;

        gap: 10px;

        padding: 19px 0;

    }


    .rentx-mumbai-point-icon {

        width: 37px;
        height: 37px;

        font-size: 10px;

    }


    .rentx-mumbai-point-content h3 {

        font-size: 12px;

    }


    .rentx-mumbai-point-content p {

        font-size: 9px;

    }


    .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: #07121f;

    color: #ffffff;

    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(7, 87, 201, .22),
            rgba(18, 166, 106, .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;
}


.rentx-exhibitor-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #70a8f5;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.rentx-exhibitor-eyebrow span {

    width: 35px;

    height: 2px;

    background:
        linear-gradient(90deg,
            #2582ed,
            #12a66a);
}


.rentx-exhibitor-title {

    max-width: 750px;

    margin: 0;

    color: #ffffff;

    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,
            #72aef8,
            #ffffff 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: 12px;

    line-height: 1.8;

    font-weight: 500;
}


/* =========================================================
   RENTX EXHIBITOR GRID
========================================================= */

.rentx-exhibitor-grid {
    position: relative;
    z-index: 3;

    display: grid;

    width: 100%;

    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(5, 260px);

    gap: 8px;
}


/* =========================================================
   BASE TILE
========================================================= */

.rentx-exhibitor-tile {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    background: #102030;

    border: 1px solid rgba(255, 255, 255, 0.07);

    text-decoration: none;
}


/* =========================================================
   DESKTOP — EXACT BENTO
========================================================= */

/* 01 */
.rentx-tile-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}


/* 02 */
.rentx-tile-02 {
    grid-column: 3;
    grid-row: 1;
}


/* 03 */
.rentx-tile-03 {
    grid-column: 4;
    grid-row: 1;
}


/* 04 */
.rentx-tile-04 {
    grid-column: 3;
    grid-row: 2;
}


/* 05 */
.rentx-tile-05 {
    grid-column: 4;
    grid-row: 2;
}


/* 06 */
.rentx-tile-06 {
    grid-column: 3 / 5;
    grid-row: 3;
}


/* 07 */
.rentx-tile-07 {
    grid-column: 1;
    grid-row: 3;
}


/* 08 */
.rentx-tile-08 {
    grid-column: 2;
    grid-row: 3;
}


/* 09 */
.rentx-tile-09 {
    grid-column: 1 / 3;
    grid-row: 4;
}


/* 10 */
.rentx-tile-finance {
    grid-column: 1 / 3;
    grid-row: 5;
}


/* CTA */
.rentx-exhibitor-cta-tile {
    grid-column: 3 / 5;
    grid-row: 4 / 6;

    min-width: 0;
    min-height: 0;

    overflow: hidden;
}


/* =========================================================
   IMAGES
========================================================= */

.rentx-exhibitor-tile img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.72;

    filter: saturate(0.78) contrast(1.05);

    transition:
        transform 0.8s cubic-bezier(.2, .65, .3, 1),
        opacity 0.5s ease,
        filter 0.5s ease;
}


.rentx-exhibitor-tile:hover img {
    transform: scale(1.08);

    opacity: 0.88;

    filter: saturate(1) contrast(1.08);
}


/* =========================================================
   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));
}


/* =========================================================
   TILE NUMBER
========================================================= */

.rentx-tile-number {
    position: absolute;

    top: 17px;
    left: 18px;

    z-index: 5;

    color: rgba(255, 255, 255, 0.55);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   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: 7px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-tile-content h3 {
    max-width: 310px;

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;

    letter-spacing: -0.3px;
}


.rentx-tile-large .rentx-tile-content h3 {
    font-size: 23px;
}


.rentx-tile-content p {
    max-width: 300px;

    margin: 0 0 10px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 9px;
    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;
}


/* =========================================================
   FINANCE
========================================================= */

.rentx-tile-finance {
    background:
        linear-gradient(135deg,
            #0b2340,
            #083e45);
}


.rentx-finance-pattern {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(108, 173, 255, 0.08) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(108, 173, 255, 0.08) 1px,
            transparent 1px);

    background-size: 35px 35px;
}


.rentx-finance-icon {
    position: absolute;

    top: 30px;
    right: 30px;

    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #7fe0b5;

    border: 1px solid rgba(127, 224, 181, 0.2);

    background: rgba(127, 224, 181, 0.06);

    font-size: 22px;
}


.rentx-tile-finance .rentx-tile-content {
    bottom: 30px;
}


.rentx-tile-finance .rentx-tile-content h3 {
    max-width: 500px;

    font-size: 25px;
}


.rentx-tile-finance .rentx-tile-content p {
    max-width: 500px;

    font-size: 10px;
}


/* =========================================================
   CTA
========================================================= */

.rentx-exhibitor-cta-tile {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 25px;

    background:
        linear-gradient(145deg,
            #0757c9 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: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    font-size: 10px;
}


/* 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: #ffffff;

    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: #8ee4bf;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-cta-content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.03;

    letter-spacing: -1.5px;

    font-weight: 800;
}


.rentx-cta-content h3 span {
    display: inline;

    color: #9de8c5;
}


.rentx-cta-content p {
    max-width: 500px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 9px;

    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: #07121f;

    background: #ffffff;

    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: #07121f;

    background: #9de8c5;

    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: 6px;
    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);
}


/* =========================================================
   TABLET
   992px — 1199px
========================================================= */

@media (max-width: 1199px) {

    .rentx-exhibitor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        grid-template-rows: none;

        grid-auto-rows: 300px;

        gap: 8px;
    }


    /*
     * RESET DESKTOP POSITIONING
     */

    .rentx-exhibitor-tile,
    .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,
    .rentx-exhibitor-cta-tile {

        grid-column: auto;
        grid-row: auto;
    }


    /*
     * 01 — FULL WIDTH
     */

    .rentx-tile-large {
        grid-column: 1 / -1;

        min-height: 360px;
    }


    /*
     * 06 — FULL WIDTH
     */

    .rentx-tile-06 {
        grid-column: 1 / -1;
    }


    /*
     * 09 — FULL WIDTH
     */

    .rentx-tile-09 {
        grid-column: 1 / -1;
    }


    /*
     * 10 — FULL WIDTH
     */

    .rentx-tile-finance {
        grid-column: 1 / -1;

        min-height: 330px;
    }


    /*
     * CTA — FULL WIDTH
     */

    .rentx-exhibitor-cta-tile {
        grid-column: 1 / -1;

        min-height: 350px;
    }

}


/* =========================================================
   MOBILE
   BELOW 767px
========================================================= */

@media (max-width: 767px) {

  .rentx-exhibitor-header{
    grid-template-columns: 1fr;
  }

  .rentx-exhibitor-intro {
    display: none;
  }

  .rentx-exhibitor-title{
  width: 100%;
  font-size: 35px;
  letter-spacing: 0.6px;
  }

    .rentx-exhibitor-grid {
        grid-template-columns: 1fr;

        grid-template-rows: none;

        grid-auto-rows: auto;

        gap: 8px;
    }


    /*
     * COMPLETELY RESET GRID
     */

    .rentx-exhibitor-tile,
    .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,
    .rentx-exhibitor-cta-tile {

        grid-column: 1;

        grid-row: auto;

        width: 100%;
    }


    /*
     * NORMAL TILES
     */

    .rentx-exhibitor-tile {
        height: 300px;

        min-height: 300px;
    }


    /*
     * LARGE TILE
     */

    .rentx-tile-large {
        height: 350px;

        min-height: 350px;
    }


    /*
     * FINANCE
     */

    .rentx-tile-finance {
        height: 340px;

        min-height: 340px;
    }


    /*
     * CTA
     */

    .rentx-exhibitor-cta-tile {
        height: auto;

        min-height: 390px;

        padding: 22px;
    }


    /*
     * SHOW TEXT WITHOUT HOVER
     */

    .rentx-tile-content p {
        max-height: 100px;

        opacity: 1;
    }


    /*
     * TYPOGRAPHY
     */

    .rentx-tile-large .rentx-tile-content h3 {
        font-size: 20px;
    }


    .rentx-tile-finance .rentx-tile-content h3 {
        font-size: 22px;
    }


    .rentx-cta-content h3 {
        font-size: 32px;
    }


    .rentx-cta-content h3 span {
        display: block;
    }


    .rentx-cta-button {
        min-height: 52px;

        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   BELOW 480px
========================================================= */

@media (max-width: 480px) {

    .rentx-exhibitor-grid {
        gap: 7px;
    }


    .rentx-exhibitor-tile {
        height: 275px;

        min-height: 275px;
    }


    .rentx-tile-large {
        height: 320px;

        min-height: 320px;
    }


    .rentx-tile-finance {
        height: 320px;

        min-height: 320px;
    }


    .rentx-exhibitor-cta-tile {
        min-height: 380px;

        padding: 20px;
    }


    .rentx-tile-content {
        left: 17px;
        right: 17px;
        bottom: 17px;
    }


    .rentx-tile-content h3 {
        font-size: 14px;
    }


    .rentx-tile-large .rentx-tile-content h3 {
        font-size: 19px;
    }


    .rentx-tile-finance .rentx-tile-content h3 {
        font-size: 20px;
    }


    .rentx-cta-content h3 {
        font-size: 29px;

        letter-spacing: -1px;
    }


    .rentx-finance-icon {
        top: 20px;
        right: 20px;

        width: 58px;
        height: 58px;

        font-size: 18px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   BELOW 360px
========================================================= */

@media (max-width: 360px) {

    .rentx-exhibitor-tile {
        height: 255px;

        min-height: 255px;
    }


    .rentx-tile-large {
        height: 300px;

        min-height: 300px;
    }


    .rentx-tile-finance {
        height: 300px;

        min-height: 300px;
    }


    .rentx-exhibitor-cta-tile {
        min-height: 360px;

        padding: 18px;
    }


    .rentx-tile-content {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }


    .rentx-tile-content p {
        font-size: 8px;

        line-height: 1.55;
    }


    .rentx-cta-content h3 {
        font-size: 26px;
    }


    .rentx-cta-content p {
        font-size: 8px;
    }

}
/* =========================================================
   SECTION 6 : VISITOR PROFILE
   LIGHT NETWORK / DECISION MAKER DESIGN
========================================================= */
/* =========================================================
   RENTX VISITOR PROFILE
========================================================= */

.rentx-visitor-section {
    position: relative;

    padding: 110px 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(7, 87, 201, 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(18, 166, 106, 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: 13px;

    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(18, 166, 106, 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);

    background: rgba(7, 87, 201, 0.07);

    border: 1px solid rgba(7, 87, 201, 0.10);

    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);

    background: var(--rentx-green-light);

    border-color: rgba(18, 166, 106, 0.20);

    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: 11px;

        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: #06111e;

    color: #ffffff;

    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(7, 87, 201, .20),
            rgba(18, 166, 106, .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: #70a8f5;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.rentx-programs-eyebrow span {

    width: 35px;

    height: 2px;

    background:
        linear-gradient(90deg,
            #2582ed,
            #12a66a);
}


.rentx-programs-title {

    max-width: 780px;

    margin: 0;

    color: #ffffff;

    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,
            #ffffff,
            #75aef5 55%,
            #65d5a7);

    -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: #79aef0;

    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: #0b1a2a;

    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;

    padding: 35px;

    background:
        linear-gradient(145deg,
            #0b1d30,
            #081725);
}


/* =========================================================
   CONTENT TOP
========================================================= */

.rentx-program-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.rentx-program-number {

    color: #6e9fda;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-program-label {

    color: #64d5a4;

    font-size: 7px;

    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(18, 166, 106, .08);

    border: 1px solid rgba(18, 166, 106, .22);

    font-size: 18px;
}


.rentx-program-main h3 {

    margin: 0 0 13px;

    color: #ffffff;

    font-size: 34px;

    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: 13px;

    line-height: 1.6;

    font-weight: 600;
}


.rentx-program-description {

    max-width: 430px;

    margin: 0;

    color: #72859a;

    font-size: 10px;

    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: 6px;

    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,
            #0757c9,
            #12a66a);

    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: #ffffff;

    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: #ffffff;

    background: #0757c9;

    border-color: #0757c9;
}


/* =========================================================
   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: #ffffff;

    background:
        rgba(255, 255, 255, .025);
}


.rentx-program-nav-item.is-active {

    color: #ffffff;

}


.rentx-program-nav-item.is-active::before {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: -1px;

    height: 2px;

    background:
        linear-gradient(90deg,
            #0757c9,
            #12a66a);
}


/* =========================================================
   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: #0757c9;
}


.rentx-programs-bottom-mark span:nth-child(2) {

    background: #0a83b9;
}


.rentx-programs-bottom-mark span:nth-child(3) {

    background: #12a66a;
}


.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: #ffffff;

    font-size: 14px;

    font-weight: 700;
}


.rentx-programs-bottom-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    color: #ffffff;

    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: #ffffff;

    background: #0757c9;

    border-color: #0757c9;
}


/* =========================================================
   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: 9px;
    }

}


/* =========================================================
   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: flex;

        overflow-x: auto;

        scrollbar-width: none;
    }


    .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: #07121f;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.rentx-sponsors-grid-bg {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(7, 87, 201, .025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(7, 87, 201, .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: #0757c9;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.rentx-sponsors-eyebrow span {

    width: 35px;

    height: 2px;

    background:
        linear-gradient(90deg,
            #0757c9,
            #12a66a);
}


.rentx-sponsors-title {

    margin: 0;

    color: #07121f;

    font-size: clamp(50px, 5vw, 72px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -3.5px;
}


.rentx-sponsors-title span {

    color: #0757c9;
}


.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: #0757c9;

    background: #ffffff;

    border: 1px solid #dce6f0;

    font-size: 10px;

    font-weight: 800;
}


.rentx-sponsors-intro p {

    max-width: 350px;

    margin: 0;

    color: #68788c;

    font-size: 12px;

    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,
            #0757c9,
            #12a66a);
}


.rentx-sponsor-level>span:not(.rentx-level-line) {

    color: #7d8da0;

    font-size: 8px;

    font-weight: 800;
}


.rentx-sponsor-level strong {

    color: #152438;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.rentx-sponsor-category-head p {

    margin: 0;

    color: #8996a6;

    font-size: 9px;
}


/* =========================================================
   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: #ffffff;

    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(7, 87, 201, .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: #ffffff;

    background:
        linear-gradient(145deg,
            #0757c9,
            #12a66a);

    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,
            #0757c9 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: #8fe2bd;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.rentx-sponsor-cta-content h3 {

    max-width: 650px;

    margin: 0;

    color: #ffffff;

    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: #07121f;

    background: #ffffff;

    font-size: 9px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease;
}


.rentx-sponsor-cta-button:hover {

    color: #07121f;

    background: #9de8c5;

    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;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.rentx-footer {

    position: relative;

    padding: 90px 0 25px;

    background: #04101c;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   FOOTER GRID
========================================================= */

.rentx-footer-grid {

    position: absolute;

    inset: 0;

    opacity: .22;

    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;
}


/* =========================================================
   TOP
========================================================= */

.rentx-footer-top {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.4fr .8fr;

    gap: 120px;

    padding-bottom: 65px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.rentx-footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 1px;
}

.logo-white {
    width: 60%;
    
}




.rentx-footer-brand p {

    max-width: 450px;

    margin: 25px 0 25px;

    color: #71859a;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SOCIAL
========================================================= */

.rentx-footer-social {

    display: flex;

    gap: 7px;
}


.rentx-footer-social a {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #7b8da0;

    border: 1px solid rgba(255, 255, 255, .1);

    font-size: 10px;

    text-decoration: none;

    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.rentx-footer-social a:hover {

    color: #ffffff;

    background: #0757c9;

    border-color: #0757c9;
}


/* =========================================================
   EVENT INFO
========================================================= */

.rentx-footer-event {

    padding-left: 35px;

    border-left: 1px solid rgba(255, 255, 255, .08);
}


.rentx-footer-label {

    display: block;

    margin-bottom: 17px;

    color: #63d6a5;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.rentx-footer-event h3 {

    margin: 0 0 5px;

    color: #ffffff;

    font-size: 42px;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.rentx-footer-event p {

    margin: 0;

    color: #71859a;

    font-size: 14px;
}


/* =========================================================
   DATE
========================================================= */

.rentx-footer-date {

    display: flex;

    align-items: baseline;

    gap: 8px;

    margin-top: 28px;
}


.rentx-footer-date strong {

    color: #ffffff;

    font-size: 30px;

    font-weight: 800;
}


.rentx-footer-date span {

    color: #698097;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.rentx-footer-date i {

    width: 20px;

    height: 1px;

    margin: 0 4px;

    background:
        linear-gradient(90deg,
            #0757c9,
            #12a66a);
}


.rentx-footer-date small {

    margin-left: 6px;

    color: #698097;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   LINKS
========================================================= */

.rentx-footer-links {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 40px;

    padding: 60px 0;
}


.rentx-footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.rentx-footer-column>span {

    margin-bottom: 7px;

    color: #5d7389;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-footer-column a {

    width: fit-content;

    color: #9aaabd;

    font-size: 12px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


.rentx-footer-column a:hover {

    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================================
   FOOTER CTA
========================================================= */

.rentx-footer-cta {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 35px 0;

    border-top: 1px solid rgba(255, 255, 255, .08);

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}


.rentx-footer-cta span {

    display: block;

    margin-bottom: 8px;

    color: #65d5a7;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.rentx-footer-cta h3 {

    margin: 0;

    color: #ffffff;

    font-size: 23px;

    font-weight: 700;

    letter-spacing: -.6px;
}


.rentx-footer-cta h3 strong {

    color: #75aef5;

    font-weight: 800;
}


.rentx-footer-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 14px 18px;

    color: #07121f;

    background: #ffffff;

    font-size: 9px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease;
}


.rentx-footer-cta-button:hover {

    color: #07121f;

    background: #9de8c5;

    transform: translateY(-3px);
}


/* =========================================================
   BOTTOM
========================================================= */

.rentx-footer-bottom {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 20px;

    padding-top: 25px;
}


.rentx-footer-bottom p {

    margin: 0;

    color: #506477;

    font-size: 13px;
}


.rentx-footer-legal {

    display: flex;

    align-items: center;

    gap: 20px;
}


.rentx-footer-legal a {

    color: #607489;

    font-size: 13px;

    text-decoration: none;

    transition:
        color .25s ease;
}


.rentx-footer-legal a:hover {

    color: #ffffff;
}


.rentx-footer-powered {

    justify-self: end;
}


.rentx-footer-powered strong {

    color: #7eaef0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .rentx-footer {

        padding-top: 75px;
    }


    .rentx-footer-top {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .rentx-footer-event {

        padding-left: 0;

        padding-top: 30px;

        border-left: 0;

        border-top: 1px solid rgba(255, 255, 255, .08);
    }


    .rentx-footer-links {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .rentx-footer-bottom {

        grid-template-columns:
            1fr auto;
    }


    .rentx-footer-powered {

        display: none;
    }

}


@media (max-width: 767px) {

    .rentx-sponsors-section {

        padding-bottom: 80px;
    }


    .rentx-footer {

        padding: 65px 0 22px;
    }


    .rentx-footer-links {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 25px;

        padding: 50px 0;
    }


    .rentx-footer-cta {

        align-items: flex-start;

        flex-direction: column;
    }


    .rentx-footer-bottom {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .rentx-footer-legal {

        flex-wrap: wrap;

        gap: 12px 18px;
    }

}


@media (max-width: 420px) {

    .rentx-footer-links {

        grid-template-columns: 1fr;
    }


    .rentx-footer-event h3 {

        font-size: 30px;
    }


    .rentx-footer-cta h3 {

        font-size: 21px;
    }

}
/* =========================================================
   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: #0d3942;

    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(139, 207, 40, .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(139, 207, 40, .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: #8bcf28;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.rentx-project-eyebrow i {

    display: block;

    width: 42px;

    height: 2px;

    background: #8bcf28;

}


/* =========================================================
   MAIN TITLE
========================================================= */

.rentx-project-title {

    max-width: 680px;

    margin: 0;

    color: #ffffff;

    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: #8bcf28;

    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: #8bcf28;

    background:
        rgba(139, 207, 40, .08);

    border: 1px solid rgba(139, 207, 40, .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: #222123;

    background: #8bcf28;

    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: #222123;

    background: #8bcf28;

    border: 1px solid #8bcf28;

    box-shadow:
        0 12px 28px rgba(139, 207, 40, .20);

}


.rentx-project-btn-primary:hover {

    color: #222123;

    background: #a0df3b;

    border-color: #a0df3b;

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(139, 207, 40, .28);

}


/* =========================================================
   SECONDARY CTA — WHITE
========================================================= */

.rentx-project-btn-secondary {

    color: #222123;

    background: #ffffff;

    border: 1px solid #ffffff;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, .14);

}


.rentx-project-btn-secondary:hover {

    color: #ffffff;

    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 #0d3942;

    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(139, 207, 40, .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: #222123;

    background: #8bcf28;

    border-radius: 50%;

    font-size: 12px;

    box-shadow:
        0 7px 20px rgba(139, 207, 40, .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: #ffffff;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 700;

}


.rentx-project-floating-card h3 span {

    color: #8bcf28;

}


/* =========================================================
   FLOATING LINE
========================================================= */

.rentx-project-floating-line {

    width: 100%;

    height: 1px;

    margin: 17px 0;

    background:
        linear-gradient(90deg,
            #8bcf28,
            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: #7ee2b8;

    font-size: 13px;
    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(18, 166, 106, 0.28);
}

.rentx-btn-primary:hover {
    color: var(--rentx-white);

    background: #0e925d;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(18, 166, 106, 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: 11px;

        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;
    }

   
}