/* ===== CSS ROOT VARIABLES ===== */
:root {
    /* Colors */
    --color-black: #000;
    --color-white: #fff;
    --color-navy: #041e3a;
    --color-gray-light: #f2f3f5;
    --color-gray-med: #e1e1e5;
    --color-gray-dark: #a39c8f;

    /* Typography */
    --font-foundersReg: "Founders Grotesk text Regular", "Times New Roman", Times, serif;
    --font-foundersMed: "Founders Grotesk Text Medium", "Times New Roman", Times, serif;
    --font-foundersMonoReg: "Founders Grotesk Mono Regular", Arial, Helvetica, sans-serif;
    --font-foundersMonoMed: "Founders Grotesk Mono Medium", Arial, Helvetica, sans-serif;
    --font-leJeuneReg: "LeJeuneDeck-Regular", "Times New Roman", Times, serif;
    --font-sackersMed: "SackersGothicW01-Medium", Arial, Helvetica, sans-serif;
    --font-feniceReg: "Fenice ITC W01 Regular", "Times New Roman", Times, serif;

    --font-size-2-750: 2.75em;
    --font-size-1-125: 1.125em;
    --font-size-1-175: 1.75em;
    --font-size-0-875: 0.875em;

    --line-height-2-0: 2em;
    --line-height-1-5: 1.5em;
}

@media only screen and (min-width: 768px) {
    .rlc-desktop-display-none {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .rlc-mobile-display-none {
        display: none !important;
    }
}

/* ===== HORIZONTAL PARALLAX STYLES ===== */
.rlc-horizontal-parallax {
    position: relative;
    height: 100%;
    /* Use container's height */
    overflow: hidden;
}

.parallax-background,
.parallax-foreground,
.parallax-midground {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    /* Must be wider than viewport for parallax effect */
    height: 100%;
    will-change: transform;
    /* Performance optimization */
}

.parallax-background .rlc-picture,
.parallax-foreground .rlc-picture,
.parallax-midground .rlc-picture {
    width: 100%;
    height: 100%;
}

.parallax-background .rlc-image,
.parallax-foreground .rlc-image,
.parallax-midground .rlc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Home styles ===== */
.rlc-home .rlc-show-me {
    display: none;
}

.rlc-show-ca {
    display: none;
}

.rlc-home .rlc-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}

.rlc-home .rlc-isvisible .rlc-image[loading="lazy"].rlc-imgLoaded {
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

.rlc-home .rlc-background {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translate3d(0, 0, 0);
    transform: translateX(-50%) translate3d(0, 0, 0);
    width: 100%;
    min-height: 100%;
    z-index: -1;
    box-sizing: border-box;
}

.rlc-home .rlc-background .rlc-image {
    height: 100%;
}

.rlc-home .rlc-hotspot {
    z-index: 0;
}

.rlc-home .rlc-carousel .swiper-scrollbar-drag:after {
    background: currentColor !important;
}

/* BLP FONT STYLES */
.rlc-creative_v3 .rlc-usebrandstyles .rlc-linecta {
    font-size: 0.688rem;
    line-height: 0.909rem;
    letter-spacing: 0.091rem;
    /* padding-bottom: calc(.8rem + 1px); */
}

.rlc-home .rlc-title {
    font-family: var(--font-leJeuneReg);
    font-size: var(--font-size-2-750);
    font-weight: 400;
    letter-spacing: 0em;
    text-transform: none;
    margin: 0;
    color: currentColor;
    text-align: unset;
}

.rlc-home .rlc-dek {
    font-family: var(--font-leJeuneReg);
    font-size: var(--font-size-1-125);
    line-height: var(--line-height-2-0);
    letter-spacing: 0em;
    text-transform: none;
    margin: 0;
    color: currentColor;
}

.rlc-home .rlc-prodname {
    font-family: var(--font-foundersReg);
    font-size: 0.688em;
    letter-spacing: 0.091em !important;
    text-transform: uppercase;
    color: currentColor;
}

.rlc-home a {
    color: currentColor;
}

.rlc-home .rlc-textgroup {
    z-index: 1;
}

.rlc-home .rlc-usebrandstyles.rlc-links .rlc-linecta {
    font-family: var(--font-foundersReg);
    margin: 2.727em 0 0;
}

.rlc-home .rlc-usebrandstyles.rlc-links.rlc-all-text-center .rlc-linecta {
    margin: 2.727em 1.455em 0;
}

@media screen and (max-width: 767px) {
    .rlc-home .rlc-title {
        font-size: var(--font-size-1-175);
        margin: 0 auto;
    }

    .rlc-home .rlc-dek {
        font-size: var(--font-size-0-875);
        line-height: var(--line-height-1-5);
        margin: 0.75em auto 0;
    }

    .rlc-home .rlc-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rlc-home .rlc-links.rlc-all-text-left {
        justify-content: flex-start;
    }

    .rlc-home .rlc-links.rlc-all-text-right {
        justify-content: flex-end;
    }

    .rlc-home .rlc-links.rlc-all-text-left .rlc-linecta,
    .rlc-home .rlc-links.rlc-all-text-right .rlc-linecta {
        margin: 2.727em 0 0 0;
    }

    .rlc-home .rlc-linecta {
        margin: 0 1.455em;
    }
}

/* ===== HERO ===== */
#rlc-hero {
    color: var(--color-white);
    z-index: 1;
}

#rlc-hero .rlc-copygroup .rlc-linecta {
    margin-top: 2.364em;
}

@media screen and (min-width: 768px) {
    #rlc-hero {
        height: 45em;
    }

    #rlc-hero .rlc-slidewrapper {
        height: 45em;
    }

    #rlc-hero .rlc-default .rlc-copygroup {
        bottom: 7.813em;
        width: 70%;
    }

    #rlc-hero .rlc-default .rlc-copygroup .rlc-logo {
        width: 19.1875em;
        margin: 0 auto 1.5625em;
    }

    #rlc-hero .rlc-copygroup .rlc-title {
        font-size: 3.75em;
        line-height: 1em;
    }
}

@media screen and (max-width: 767px) {

    #rlc-hero,
    #rlc-hero .rlc-slidewrapper {
        height: 37.188em;
    }

    #rlc-hero .rlc-default .rlc-copygroup {
        width: 100%;
        bottom: 3.75em;
        top: auto;
        transform: none;
        left: 0;
    }

    #rlc-hero .rlc-default .rlc-copygroup .rlc-logo {
        width: 13.1875em;
        margin: 0 auto 1.5em;
    }

    #rlc-hero .rlc-copygroup .rlc-title {
        line-height: 1.15em !important;
        margin: 0 auto !important;
        font-size: 2.25em;
    }

    #rlc-hero .rlc-copygroup .rlc-linecta {
        margin-top: 2.25em !important;
    }

    #rlc-hero .rlc-progressbar::before {
        background-color: #9d9fa3;
    }

    .ar #rlc-hero.rlc-fadeslider2 .rlc-looppause {
        left: 1.25em;
        top: -46px;
        transform: none;
    }
}

/* ===== SHOP SECTION ===== */
#rlc-shopsection {
    min-height: 42.5em;
    overflow: hidden;
    color: var(--color-white);
}

#rlc-shopsection .rlc-intro {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    color: var(--color-black);
}

#rlc-shopsection .rlc-intro .rlc-title {
    font-size: var(--font-size-2-750);
    line-height: 1.684em;
    text-align: left;
}

#rlc-shopsection .rlc-intro .rlc-title span {
    font-size: 1.364em;
    line-height: 1em;
    display: block;
}

#rlc-shopsection .rlc-intro .rlc-dek {
    margin: 1.222em 0 0 0;
    width: 19em;
    font-family: var(--font-foundersReg);
    font-size: 0.75em;
}

#rlc-shopsection .rlc-slide .rlc-copygroup {
    width: 95%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    color: var(--color-white);
}

#rlc-shopsection .rlc-slide .rlc-title {
    font-family: var(--font-leJeuneReg);
    font-size: 2em;
    line-height: 1.238em;
    letter-spacing: 0.001em;
}

#rlc-shopsection .rlc-shopall {
    width: 16em;
    height: 30.938em;
}

#rlc-shopsection .rlc-shopall .rlc-copygroup {
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 11em;
    color: var(--color-black);
}

#rlc-shopsection .rlc-shopall .rlc-title {
    font-size: 1.75em;
    color: currentColor;
}

#rlc-shopsection .rlc-shopall a:hover {
    text-decoration: none;
}

#rlc-shopsection .rlc-carousel-scrollbar {
    color: var(--color-black);
}

#rlc-shopsection .rlc-carousel-scrollbar:before {
    background: #979797;
}

@media screen and (min-width: 768px) {
    #rlc-shopsection {
        padding-top: 4.875em;
        display: flex;
    }

    #rlc-shopsection .rlc-intro {
        width: 24.813em;
        height: 32.875em;
        display: flex;
        justify-content: center;
    }

    #rlc-shopsection .rlc-intro .rlc-links {
        justify-content: flex-start;
    }

    #rlc-shopsection .rlc-intro .rlc-links .rlc-linecta {
        margin: 2em 0;
    }

    #rlc-shopsection .rlc-intro .rlc-copygroup {
        margin-left: 3.5em;
        width: 19.875em;
    }

    #rlc-shopsection .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-slide {
        width: 23.438em;
        padding: 0 0.5em;
    }

    #rlc-shopsection .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-slide .rlc-imagery {
        min-height: 30.938em;
    }
}

@media screen and (max-width: 767px) {
    #rlc-shopsection {
        height: 44.75em;
    }

    #rlc-shopsection .rlc-intro {
        width: 18.438em;
        text-align: center;
        margin: 0 auto;
        height: 16.875em;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--color-black);
    }

    #rlc-shopsection .rlc-intro .rlc-links {
        justify-content: flex-start;
    }

    #rlc-shopsection .rlc-intro .rlc-links .rlc-linecta {
        margin: 0;
    }

    #rlc-shopsection .rlc-intro .rlc-title {
        font-size: 1.75em;
        text-align: center;
        line-height: 1.25em;
    }

    #rlc-shopsection .rlc-intro .rlc-title span {
        font-size: 1.571em;
    }

    #rlc-shopsection .rlc-intro .rlc-dek {
        width: 12em;
        margin: 1.25em auto 0;
        line-height: 1.4em;
        font-size: 0.75em;
    }

    #rlc-shopsection .rlc-slide .rlc-copygroup {
        bottom: 2.188em;
    }

    #rlc-shopsection .rlc-slide .rlc-title {
        font-size: 1.25em;
    }

    #rlc-shopsection .rlc-shopall {
        height: 20.875em;
    }

    #rlc-shopsection .rlc-shopall .rlc-title {
        font-size: 1.75em;
        width: 6em;
        color: currentColor;
    }

    #rlc-shopsection .rlc-shopall .rlc-copygroup {
        color: var(--color-black);
    }

    #rlc-shopsection .rlc-carousel.rlc-category_carousel.rlc-shopslider .rlc-carousel_wrapper {
        padding-bottom: 0.938em;
    }
}

/* =====  SHOP CATEGORY SECTION ===== */
#rlc-shopcategory .rlc-intro .rlc-title {
    font-size: var(--font-size-2-750);
    line-height: 1.684em;
    color: var(--color-black);
    text-align: left;
}

#rlc-shopcategory .rlc-intro .rlc-title span {
    font-size: 1.364em;
    line-height: 1em;
    display: block;
}

#rlc-shopcategory .rlc-categories {
    width: 67.188em;
    margin-right: 2.125em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    color: var(--color-black);
    gap: 1em 0;
}

#rlc-shopcategory .rlc-categories .rlc-cat {
    width: 16.666667%;
    padding: 0;
}

#rlc-shopcategory .rlc-categories .rlc-cat .rlc-imagery {
    width: 100%;
}

#rlc-shopcategory .rlc-categories .rlc-cat .rlc-copygroup {
    display: flex;
    margin: 1em 1em 0;
    justify-content: center;
    position: relative;
}

#rlc-shopcategory .rlc-categories .rlc-cat .rlc-title {
    font-size: 1.15em;
    line-height: 1.25em;
}

@media screen and (min-width: 768px) {
    #rlc-shopcategory {
        padding: 3.5em 0 5em 0;
        display: flex;
        min-height: 36.0625em;
        background-color: #f2ece3;
    }

    #rlc-shopcategory .rlc-intro {
        width: 20.688em;
        height: auto;
        padding: 9.875em 0.813em 0 3.5em;
        text-align: left;
        color: var(--color-black);
    }
}

@media screen and (max-width: 767px) {
    #rlc-shopcategory {
        min-height: 51em;
        padding: 2.55em 0 0;
        background-color: #f2ece3;
    }

    #rlc-shopcategory .rlc-intro .rlc-title {
        font-size: 1.75em;
        text-align: center;
    }

    #rlc-shopcategory .rlc-intro .rlc-title span {
        font-size: 1.571em;
        line-height: 1.2em;
    }

    #rlc-shopcategory .rlc-categories {
        width: 22.625em;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        color: var(--color-black);
        padding-bottom: 3.875em;
    }

    #rlc-shopcategory .rlc-categories .rlc-cat {
        width: 33.333333%;
        padding: 0;
    }

    #rlc-shopcategory .rlc-categories .rlc-cat .rlc-imagery {
        width: 100%;
    }

    #rlc-shopcategory .rlc-categories .rlc-cat .rlc-copygroup {
        display: flex;
        margin: 0.75em 1em 0;
        justify-content: center;
        position: relative;
    }

    #rlc-shopcategory .rlc-categories .rlc-cat .rlc-title {
        font-size: 0.938em;
        padding: 0;
    }
}

/* <!-- Canyon Road--> */
@media only screen and (min-width: 768px) {
    #rlc-slot4 {
        height: 36.0625em;
    }

    #rlc-slot4 .parallax-background,
    #rlc-slot4 .parallax-foreground {
        position: absolute;
        top: 0;
        left: 0;
        width: 110%;
        /* Must be wider than viewport for parallax effect */
        height: 100%;
        will-change: transform;
        /* Performance optimization */
    }

    #rlc-slot4 .rlc-copygroup {
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 68.125em;
        margin: 5.625em auto 0;
    }

    #rlc-slot4 .rlc-copygroup .rlc-title {
        font-family: var(--font-sackersMed);
        font-size: 1.125em;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 0.45em;
        margin-bottom: 2em;
    }

    #rlc-slot4 .rlc-copygroup .rlc-drawsig {
        width: 15.625em;
        height: 3.0625em;
        margin: 1.875em auto;
    }

    #rlc-slot4 .rlc-copygroup .rlc-drawsig svg path {
        stroke-width: 7px;
        stroke: #fff;
    }
}

@media only screen and (max-width: 767px) {
    #rlc-slot4 {
        height: 49.25em;
    }

    #rlc-slot4 .parallax-background,
    #rlc-slot4 .parallax-foreground {
        position: absolute;
        top: 0;
        left: 0;
        width: 110%;
        /* Must be wider than viewport for parallax effect */
        height: 100%;
        will-change: transform;
        /* Performance optimization */
    }

    #rlc-slot4 .rlc-copygroup {
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 19.375em;
        margin: 5.625em auto 0;
    }

    #rlc-slot4 .rlc-copygroup .rlc-title {
        display: none;
    }

    #rlc-slot4 .rlc-copygroup .rlc-dek {
        font-size: var(--font-size-1-125);
        line-height: var(--line-height-2-0);
    }

    #rlc-slot4 .rlc-copygroup .rlc-drawsig {
        width: 11.5em;
        height: 2.25em;
        margin: 1.875em auto;
    }

    #rlc-slot4 .rlc-copygroup .rlc-drawsig svg path {
        stroke-width: 7px;
        stroke: #fff;
    }
}

/* <!-- Mosaic RL Home x AiR Logo shared asset--> */
/* #rlc-slot5 {
  height: 53.25em;
}
#rlc-slot5 .rlc-cont {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
}
#rlc-slot5 .rlc-cont .rlc-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 53.25em;
}

#rlc-slot5 .rlc-cont .rlc-col1 {
  width: 25em;
}
#rlc-slot5 .rlc-cont .rlc-col2 {
  width: 40em;
}
#rlc-slot5 .rlc-cont .rlc-col3 {
  width: 25em;
}

#rlc-slot5 .rlc-cont .rlc-col1 .rlc-top img {
  height: 30.9375em;
}
#rlc-slot5 .rlc-cont .rlc-col1 .rlc-bottom img {
  height: 22.3125em;
}
#rlc-slot5 .rlc-cont .rlc-col3 .rlc-top img {
  height: 24.5em;
}
#rlc-slot5 .rlc-cont .rlc-col3 .rlc-bottom img {
  height: 28.75em;
}
#rlc-slot5 .rlc-cont .rlc-col2 .rlc-copygroup {
  position: absolute;
  top: auto;
  bottom: 8.125em;
  width: 100%;
}
#rlc-slot5 .rlc-cont .rlc-col2 .rlc-copygroup .rlc-logo {
  width: 29.0625em;
  margin: 0 auto;
}
#rlc-slot5 .rlc-tile .rlc-target {
  top: auto;
  bottom: 1.5em;
  left: auto;
  right: 1.5em;
}

@media only screen and (max-width: 767px) {
  #rlc-slot5 {
    height: 46.5em;
  }

  #rlc-slot5 .rlc-cont {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }

  #rlc-slot5 .rlc-cont .rlc-col1,
  #rlc-slot5 .rlc-cont .rlc-col3 {
    display: none;
  }
  #rlc-slot5 .rlc-cont .rlc-col2 {
    width: 23.4375;
    margin: 0 auto;
    height: auto;
  }

  #rlc-slot5 .rlc-cont .rlc-col2 .rlc-copygroup {
    position: absolute;
    top: auto;
    bottom: 3.4375em;
    width: 100%;
  }
  #rlc-slot5 .rlc-cont .rlc-col2 .rlc-copygroup .rlc-logo {
    width: 18.75em;
    margin: 0 auto;
  }
  #rlc-slot5 #rlc-slot5-mobilerow .rlc-imagery {
    display: flex;
  }
  #rlc-slot5 #rlc-slot5-mobilerow .rlc-imagery img {
    width: 50%;
  }
} */
/* <!-- Shop Canyon Road Seasonal Entertaining--> */
@media only screen and (min-width: 768px) {
    #rlc-slot6 {
        height: 98.5em;
    }

    #rlc-slot6 .parallax-background,
    #rlc-slot6 .parallax-midground,
    #rlc-slot6 .parallax-foreground {
        position: absolute;
        top: 0;
        left: 0;
        width: 110%;
        /* Must be wider than viewport for parallax effect */
        height: auto;
        will-change: transform;
        /* Performance optimization */
    }

    #rlc-slot6 .parallax-foreground {
        top: 3em;
    }

    #rlc-slot6 .rlc-container {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        top: 0;
        width: 100%;
        height: 55.625em;
        margin: 3.75em auto 0;
    }

    #rlc-slot6 .rlc-container .rlc-copygroup {
        position: relative;
        display: block;
        width: 64.125em;
        margin-bottom: 3.125em;
    }

    #rlc-slot6 .rlc-container .rlc-copygroup.rlc-cg2 {
        width: 34.5em;
        margin: 3em auto 0;
    }

    #rlc-slot6 .rlc-container .rlc-imagery {
        width: 52.875em;
    }
}

@media only screen and (max-width: 767px) {
    #rlc-slot6 {
        height: 95em;
    }

    #rlc-slot6 .parallax-background,
    #rlc-slot6 .parallax-midground,
    #rlc-slot6 .parallax-foreground {
        position: absolute;
        top: 0;
        left: 0;
        width: 105%;
        /* Must be wider than viewport for parallax effect */
        height: auto;
        will-change: transform;
        /* Performance optimization */
    }

    #rlc-slot6 .parallax-foreground {
        top: 56em;
    }

    #rlc-slot6 .rlc-container {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        top: 0;
        width: 100%;
        margin: 3.125em auto 0;
    }

    #rlc-slot6 .rlc-container .rlc-copygroup {
        position: relative;
        display: block;
        width: 16.75em;
        margin-bottom: 8.2em;
    }

    #rlc-slot6 .rlc-container .rlc-copygroup .rlc-dek {
        font-size: 0.875em;
        line-height: 1.5rem;
    }

    #rlc-slot6 .rlc-container .rlc-copygroup.rlc-cg2 {
        width: 100%;
        margin: 25em auto 0;
    }

    #rlc-slot6 .rlc-container .rlc-copygroup.rlc-cg2 .rlc-title {
        font-size: 1.75em;
        margin-bottom: 0.5em;
    }

    #rlc-slot6 .rlc-container .rlc-copygroup.rlc-cg2 .rlc-dek {
        width: 18.75em;
        margin: 0 auto;
    }
}

/* <!-- Auto Slider --> */
#rlc-slot8 {
    height: 34.75em;
    /* margin-bottom: 7.5em; */
}

#rlc-slot8 .rlc-autoslider {
    width: 90em;
    height: 33.75em;
}

#rlc-slot8 .rlc-slide {
    width: 23.4375em;
    margin: 0;
}

#rlc-slot8 .rlc-autoslider .rlc-looppause {
    bottom: 0;
    left: auto;
    right: 2em;
    border: none;
}

#rlc-slot8 .rlc-copygroup {
    top: -3em;
}

#rlc-slot8 .rlc-copygroup .rlc-usebrandstyles.rlc-links .rlc-linecta {
    margin: 2.727em 1.5em 0;
}

@media screen and (max-width: 767px) {
    #rlc-slot8 {
        height: 30em;
        margin: 0;
    }

    #rlc-slot8 .rlc-autoslider {
        width: 23.4375em;
        height: 26em;
    }

    #rlc-slot8 .rlc-slide {
        width: 17.75em;
    }

    #rlc-slot8 .rlc-autoslider .rlc-looppause {
        right: 1em;
    }

    #rlc-slot8 .rlc-copygroup {
        top: -3em;
    }

    #rlc-slot8 .rlc-links {
        display: block;
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
}

/* <!-- The Bedding  --> */
#rlc-slot9 {
    height: 61.3125em;
    background: #fff;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

#rlc-slot9 .rlc-container {
    margin: 7.5em 0;
    background-color: #fff;
}

#rlc-slot9 .rlc-slide {
    width: 57em;
    margin: 0 4.6875em;
}

#rlc-slot9 .rlc-carousel.rlc-banner .swiper-pagination {
    top: 92%;
}

#rlc-slot9 .rlc-copygroup {
    width: 44em;
    margin: 3.125em auto 0;
}

#rlc-slot9 .rlc-copygroup .rlc-title {
    margin-bottom: 1.25rem;
}

@media screen and (max-width: 767px) {
    #rlc-slot9 {
        height: 45.25em;
    }

    #rlc-slot9 .rlc-container {
        margin: 3.75em 0;
        background-color: #fff;
    }

    #rlc-slot9 .rlc-slide {
        width: 20.875em;
        margin: 0 0.625em;
    }

    #rlc-slot9 .rlc-carousel.rlc-banner .swiper-pagination {
        top: 90%;
        width: 12em;
    }

    #rlc-slot9 .rlc-copygroup {
        width: 16.1875em;
        margin: 4.5em auto 0;
    }

    #rlc-slot9 .rlc-copygroup .rlc-title {
        font-size: 1.75em;
        margin-bottom: 1rem;
    }
}

/* <!-- To the Trade  --> */
#rlc-slot10 {
    height: 53em;
    /* margin-bottom: 6.25em; */
    background-color: #fff;
}

#rlc-slot10 .rlc-copygroup {
    width: 25.875em;
    bottom: 7.5em;
}

#rlc-slot10 .rlc-copygroup .rlc-title {
    margin: 0 auto 0.5rem;
}

@media screen and (max-width: 767px) {
    #rlc-slot10 {
        height: 37em;
        /* margin-bottom: 3.75em; */
        background: #fff;
    }

    #rlc-slot10 .rlc-copygroup {
        width: 18.125em;
        bottom: 3.75em;
    }

    #rlc-slot10 .rlc-copygroup .rlc-title {
        margin: 0 auto 0.5rem;
    }
}

/* <!-- Home Accents  --> */
#rlc-slot11 {
    height: 61.5em;
    background: #fff;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

#rlc-slot11 .rlc-container {
    margin: 7.5em 0;
    background-color: #fff;
}

#rlc-slot11 .rlc-slide {
    width: 57em;
    margin: 0 4.6875em;
}

#rlc-slot11 .rlc-carousel.rlc-banner .swiper-pagination {
    top: 92%;
}

#rlc-slot11 .rlc-copygroup {
    width: 39em;
    margin: 3.125em auto 0;
}

#rlc-slot11 .rlc-copygroup .rlc-title {
    margin-bottom: 1.25rem;
}

@media screen and (max-width: 767px) {
    #rlc-slot11 {
        height: 44.25em;
    }

    #rlc-slot11 .rlc-container {
        margin: 3.75em 0;
        background-color: #fff;
    }

    #rlc-slot11 .rlc-slide {
        width: 20.875em;
        margin: 0 0.625em;
    }

    #rlc-slot11 .rlc-carousel.rlc-banner .swiper-pagination {
        top: 90%;
        width: 12em;
    }

    #rlc-slot11 .rlc-copygroup {
        width: 15.1875em;
        margin: 4em auto 0;
    }

    #rlc-slot11 .rlc-copygroup .rlc-title {
        font-size: 1.75em;
        margin-bottom: 1rem;
    }
}

/* <!-- The Collaboration  --> */
/* #rlc-slot12 {
  height: 71.25em;
}
#rlc-slot12 .rlc-slide {
  width: 72.5em;
  margin: 0 4.6875em;
}

#rlc-slot12 #rlc-slot12-copy.rlc-copygroup {
  display: block;
  top: 0;
  width: 72.125em;
  margin: 0 auto;
  padding: 5.3125em 0 3.125em;
}
#rlc-slot12 #rlc-slot12-copy.rlc-copygroup .rlc-title {
  font-family: var(--font-sackersMed);
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.3125em;
  margin-bottom: 1.875em;
}
#rlc-slot12 #rlc-slot12-copy.rlc-copygroup .rlc-dek {
  font-size: 1em;
  line-height: 1.75rem;
  letter-spacing: 0.0156em;
}
#rlc-slot12 .rlc-carousel .rlc-s1 .rlc-copygroup {
  position: absolute;
  top: auto;
  bottom: 4.6875em;
}
#rlc-slot12 .rlc-carousel .rlc-s1 .rlc-copygroup .rlc-scrollto {
  font-family: var(--font-foundersReg);
  font-size: 0.688rem;
  letter-spacing: 0.091rem;
  text-transform: uppercase;
  margin-top: 1em;
  position: relative;
  display: inline-block;
}

#rlc-slot12 .rlc-carousel .rlc-s1 .rlc-copygroup .rlc-scrollto::before {
  content: "";
  height: 1px;
  width: 4.75em;
  background-color: currentColor;
  display: block;
  position: absolute;
  right: -5.5em;
  top: 50%;
  transform: translateY(-50%);
}

#rlc-slot12 .rlc-carousel .rlc-s1 .rlc-copygroup .rlc-scrollto::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5.5em;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  width: 0.636em;
  height: 0.636em;
}

#rlc-slot12 .rlc-carousel .rlc-s1 .rlc-copygroup {
  width: 100%;
}
#rlc-slot12 .rlc-carousel .rlc-s1 .rlc-copygroup .rlc-title {
  font-size: 3.75em;
}
#rlc-slot12 .rlc-carousel .rlc-in {
  position: absolute;
  top: auto;
  bottom: 4.6875em;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
#rlc-slot12 .rlc-carousel .rlc-in .rlc-copygroup .rlc-dek {
  font-family: var(--font-foundersReg);
  font-size: 0.75rem;
  line-height: 1.375rem;
}
#rlc-slot12 .rlc-carousel .rlc-in .rlc-copygroup .rlc-dek {
  width: 28.25em;
}
@media only screen and (min-width: 768px) {
  #rlc-slot12 .rlc-carousel.rlc-banner .swiper-pagination {
    top: 47em;
  }
  #rlc-slot12 .rlc-carousel.rlc-banner .swiper-pagination .swiper-pagination-bullet-active:before {
    opacity: 1;
    background: #000;
    z-index: 1;
  }
  #rlc-slot12 .rlc-carousel.rlc-banner .swiper-pagination .swiper-pagination-bullet:after {
    opacity: 1;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  #rlc-slot12 {
    height: 59.375em;
  }
  #rlc-slot12 #rlc-slot12-copy.rlc-copygroup {
    display: block;
    top: 0;
    width: 18.25em;
    margin: 0 auto;
    padding: 3.75em 0;
  }
  #rlc-slot12 #rlc-slot12-copy.rlc-copygroup .rlc-title {
    font-size: 0.625em;
  }
  #rlc-slot12 #rlc-slot12-copy.rlc-copygroup .rlc-dek {
    font-size: 0.875em;
    line-height: 1.5rem;
  }
  #rlc-slot12 .rlc-slide {
    width: 23.4375em;
    margin: 0;
    padding: 0;
  }
  #rlc-slot12 .rlc-carousel .rlc-s1 .rlc-copygroup .rlc-title {
    font-size: 2.25em;
  }
  #rlc-slot12 .rlc-carousel .rlc-in {
    position: absolute;
    top: auto;
    bottom: 2.5em;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
  #rlc-slot12 .rlc-carousel .rlc-in .rlc-copygroup .rlc-dek {
    font-size: 0.6875rem;
    width: 28.125em;
  }

  #rlc-slot12 .rlc-carousel.rlc-banner .swiper-pagination {
    top: 29em;
    width: 12em;
  }
} */
/* <!-- HERITAGE & DESIGN  --> */
#rlc-slot13 {
    height: 54.5em;
    background: #fff;
    display: flex;
    flex-direction: column;
}

#rlc-slot13 .rlc-container {
    margin: 6em 0 7.5em;
    background-color: #fff;
}

#rlc-slot13 #rlc-slot13-copy.rlc-copygroup {
    width: 66em;
    margin: 0 auto;
    padding: 0 0 2.5em;
}

#rlc-slot13 #rlc-slot13-copy.rlc-copygroup .rlc-title {
    margin-bottom: 1.25rem;
}

#rlc-slot13 #rlc-slot13-copy.rlc-copygroup .rlc-dek {
    font-size: 1em;
}

#rlc-slot13 .rlc-carousel .rlc-in {
    width: 100%;
    bottom: 2.6875em;
}

#rlc-slot13 .rlc-carousel .rlc-in .rlc-copygroup {
    margin: 0 1.5em;
}

#rlc-slot13 .rlc-carousel .rlc-in .rlc-copygroup .rlc-title {
    font-size: 1.75em;
    margin-bottom: 0.25em;
}

#rlc-slot13 .rlc-carousel .rlc-in .rlc-copygroup .rlc-dek {
    font-size: 0.9em;
    line-height: 1.75rem;
}

#rlc-slot13 .rlc-carousel .rlc-s3 .rlc-in .rlc-copygroup .rlc-dek {
    margin: 0 3em;
}

@media only screen and (min-width: 768px) {
    #rlc-slot13 .rlc-carousel {
        width: 74.0625em;
        margin: 0 auto;
    }

    #rlc-slot13 .rlc-carousel .swiper-wrapper {
        display: flex;
        justify-content: center;
    }

    #rlc-slot13 .rlc-slide {
        width: 23.4375em;
        margin: 0 0.9375em;
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    #rlc-slot13 {
        height: 45em;
    }

    #rlc-slot13 .rlc-container {
        margin: 3.75em 0;
        background-color: #fff;
    }

    #rlc-slot13 .rlc-carousel {
        width: 23.4375em;
        margin: 0 auto;
    }

    #rlc-slot13 .rlc-slide {
        width: 15.4375em;
        margin: 0 0.6875em;
        padding: 0;
    }

    #rlc-slot13 #rlc-slot13-copy.rlc-copygroup {
        width: 20.625em;
        margin: 0 auto;
        padding: 0 0 3.125em;
    }

    #rlc-slot13 #rlc-slot13-copy.rlc-copygroup .rlc-title {
        margin-bottom: 1.75rem;
    }

    #rlc-slot13 #rlc-slot13-copy.rlc-copygroup .rlc-dek {
        font-size: 0.875em;
    }

    #rlc-slot13 .rlc-carousel .rlc-in {
        width: 100%;
        bottom: 1.875em;
    }

    #rlc-slot13 .rlc-carousel .rlc-in .rlc-copygroup {
        margin: 0 1.5em;
        transform: none;
        left: 0;
    }

    #rlc-slot13 .rlc-carousel .rlc-in .rlc-copygroup .rlc-title {
        font-size: 1.125em;
    }

    #rlc-slot13 .rlc-carousel .rlc-in .rlc-copygroup .rlc-dek {
        font-family: var(--font-foundersReg);
        font-size: 0.6875em;
        line-height: 1.375rem;
    }

    /* #rlc-slot13 .rlc-carousel .rlc-s3 .rlc-in .rlc-copygroup .rlc-dek {
    margin: 0;
  } */
}

/* <!-- â€”Tyler Glasses Jr. --> */
@media only screen and (min-width: 768px) {
    #rlc-slot14 {
        height: 50em;
    }

    #rlc-slot14 .parallax-background,
    #rlc-slot14 .parallax-foreground {
        position: absolute;
        top: 0;
        left: 0;
        width: 110%;
        /* Must be wider than viewport for parallax effect */
        height: 100%;
        will-change: transform;
        /* Performance optimization */
    }

    #rlc-slot14 .rlc-copygroup {
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 67.125em;
        margin: 5.625em auto 0;
    }

    #rlc-slot14 .rlc-copygroup .rlc-title {
        font-family: var(--font-sackersMed);
        font-size: 0.875em;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 0.45em;
        margin-top: 2em;
    }
}

@media only screen and (max-width: 767px) {
    #rlc-slot14 {
        height: 49.75em;
    }

    #rlc-slot14 .parallax-background,
    #rlc-slot14 .parallax-foreground {
        position: absolute;
        top: 0;
        left: 0;
        width: 110%;
        /* Must be wider than viewport for parallax effect */
        height: 100%;
        will-change: transform;
        /* Performance optimization */
    }

    #rlc-slot14 .rlc-copygroup {
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 18.6875em;
        margin: 4.6875em auto 0;
    }

    #rlc-slot14 .rlc-copygroup .rlc-dek {
        font-size: 1em;
        line-height: 1.75rem;
    }

    #rlc-slot14 .rlc-copygroup .rlc-title {
        font-family: var(--font-sackersMed);
        font-size: 0.75rem;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 0.45em;
        margin-top: 2em;
    }
}

/* <!-- Our Support  --> */
#rlc-slot15 {
    height: 30.9375em;
}

#rlc-slot15 .rlc-in {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 64em;
}

#rlc-slot15 .rlc-copygroup:first-of-type {
    margin-bottom: 2em;
}

#rlc-slot15 .rlc-copygroup .rlc-title {
    font-size: 1.75em;
    margin-bottom: 0.5em;
}

#rlc-slot15 .rlc-copygroup .rlc-dek {
    font-family: var(--font-foundersReg);
    font-size: 0.75rem;
    line-height: 1.375rem;
}

@media screen and (max-width: 767px) {
    #rlc-slot15 {
        height: 56.6875em;
    }

    #rlc-slot15 .rlc-in {
        width: 18.4375em;
    }

    #rlc-slot15 .rlc-copygroup:first-of-type {
        margin-bottom: 2em;
    }

    #rlc-slot15 .rlc-copygroup .rlc-title {
        font-size: 1.75em;
        margin-bottom: 0.5em;
    }

    #rlc-slot15 .rlc-copygroup .rlc-dek {
        font-size: 0.75rem;
        line-height: 1.375rem;
    }
}

/* ===== MORE TO EXPLORE ===== */
#rlc-home-mte {
    height: 42.875em;
}

#rlc-home-mte .rlc-intro {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    color: var(--color-black);
}

#rlc-home-mte .rlc-intro .rlc-title {
    font-size: var(--font-size-2-750);
    line-height: 1.684em;
    text-align: left;
}

#rlc-home-mte .rlc-intro .rlc-title span {
    font-size: 1.364em;
    line-height: 1em;
    display: block;
}

#rlc-home-mte .rlc-intro .rlc-dek {
    margin: 2.222em auto 0 0;
    width: 16em;
    font-family: var(--font-foundersReg);
    font-size: 0.75em;
    line-height: 1.4em;
}

#rlc-home-mte .rlc-slide .rlc-copygroup {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    bottom: 3.25em;
    color: var(--color-white);
}

#rlc-home-mte .rlc-slide .rlc-title {
    font-family: var(--font-leJeuneReg);
    font-size: 2em;
    line-height: 1.438em;
    letter-spacing: 0em;
}

#rlc-home-mte .rlc-slide .rlc-linecta {
    line-height: 0.909em;
    padding-bottom: calc(0.8em + 1px);
}

#rlc-home-mte .rlc-slide .rlc-linecta::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: currentColor;
    -webkit-transition: bottom 0.5s;
    transition: bottom 0.5s;
}

@media screen and (min-width: 768px) {
    #rlc-home-mte {
        padding-top: 4.938em;
        display: flex;
    }

    #rlc-home-mte .rlc-intro {
        width: 24.813em;
        height: 34.875em;
        display: flex;
        justify-content: center;
    }

    #rlc-home-mte .rlc-intro .rlc-copygroup {
        margin-left: 3.5em;
        width: 19.875em;
    }
}

@media screen and (max-width: 767px) {
    #rlc-home-mte {
        height: 45.688em;
    }

    #rlc-home-mte .rlc-intro {
        width: 15.438em;
        text-align: center;
        margin: 0 auto;
        height: 18.875em;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--color-black);
    }

    #rlc-home-mte .rlc-intro .rlc-title {
        font-size: 1.75em;
        text-align: center;
        line-height: 1.25em;
    }

    #rlc-home-mte .rlc-intro .rlc-title span {
        font-size: 1.571em;
    }

    #rlc-home-mte .rlc-intro .rlc-dek {
        margin: 1.25em auto 0;
        line-height: 1.5em;
        font-size: 0.75em;
        width: 15em;
    }

    #rlc-home-mte .rlc-slide .rlc-copygroup {
        bottom: 2.25em;
    }

    #rlc-home-mte .rlc-slide .rlc-title {
        font-size: 1.25em;
        line-height: 1.5em;
    }
}