﻿.rms-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    /* Firefox/Chromium-friendly sizing */
    height: 100%;
    max-height: 100%;
    min-height: 0;
    /* WebKit fill-available helps in iOS/Safari */
    height: -webkit-fill-available;
    max-height: -webkit-fill-available;
}

    .rms-container.rms-vertical {
        flex-direction: column;
    }
.rz-chkbox-box {
    width: 18px;
    margin-left: 10px;
}
.rms-item {
    /* Default item styles */
    order: 0;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    align-self: auto;
    overflow: hidden; /* Enable scrolling if content overflows */
}

.rms-column-content {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    flex-grow: 1;
    /* Allow the flex child to actually scroll */
    min-height: 0;
    overflow: auto;
    height: 100%;
    max-height: 100%;
    height: -webkit-fill-available;
    max-height: -webkit-fill-available;
}

.rms-content { /* Or use your own class/ID */
    flex-grow: 1;
    min-height: 0;
    overflow: auto; /* Enable scrolling if content overflows */
}

.rms-address-block {
    padding-top: 6px;
    padding-left: 10px;
    padding-bottom: 20px;
}

.rms-vcal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rms-vcal-month {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.rms-vcal-header {
    padding: 10px 12px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.rms-vcal-dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 6px 10px;
    gap: 6px;
}

.rms-vcal-dowcell {
    font-size: 12px;
    opacity: .7;
    text-align: center;
}

.rms-vcal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px 10px 10px;
    gap: 6px;
}

.rms-vcal-day {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    background: transparent;
    min-height: 52px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
}

    .rms-vcal-day:hover {
        border-color: rgba(0,0,0,.18);
    }

    .rms-vcal-day.muted {
        opacity: .35;
        cursor: default;
    }

    .rms-vcal-day:disabled {
        opacity: .25;
        cursor: default;
    }

    .rms-vcal-day.selected {
        outline: 2px solid rgba(0,0,0,.20);
        outline-offset: 0;
    }

.rms-vcal-daynum {
    font-size: 12px;
    font-weight: 600;
}

.rms-vcal-day.muted {
    border: none;
    height: 0;
}

.rms-vcal-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    opacity: .55;
}

.vmmc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vmmc-month {
    border: 1px solid var(--rz-border-color, #e5e7eb);
    border-radius: 8px;
    padding: .5rem;
    background: var(--rz-base-background-color, #fff);
}

.vmmc-month-header {
    font-weight: 700;
    padding: .25rem .25rem .5rem .25rem;
}

.vmmc-dow, .vmmc-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .25rem;
}

.vmmc-dow-cell {
    font-size: .75rem;
    opacity: .75;
    text-align: center;
    padding: .25rem 0;
}

.vmmc-cell {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
}

.vmmc-empty {
    background: transparent;
    border: none;
}

.vmmc-cell .vmmc-day {
    font-size: .85rem;
}

.vmmc-cell:hover {
    border-color: var(--rz-primary, #3b82f6);
}

.vmmc-has {
    background: rgba(59, 130, 246, .10);
}

.vmmc-soldout {
    background: rgba(239, 68, 68, .12);
}

.vmmc-selected {
    border-color: var(--rz-primary, #3b82f6);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, .20);
}

.vmmc-past {
    opacity: .35;
    cursor: default;
}





.rms-card {
    padding: 12px;
    box-shadow: 0 5px 14px rgba(51, 102, 255, 0.24) !important;
    border-radius: 24px !important;
    font-style: normal;
    font-weight: normal;
    margin: 4px;
}

.rms-card-inset {
    -webkit-appearance: none;
    user-select: none;
    outline: none;
    background-image: linear-gradient(90deg,rgba(250, 250, 255, 1) 0%, rgba(250, 250, 255, 1) 13%, rgba(245, 252, 255, 1) 100%);
    border: 1px solid #8F9092;
    box-shadow: 5px 4px 5px -1px rgba(0,0,0,0.75) inset;
    -webkit-box-shadow: 5px 4px 5px -1px rgba(0,0,0,0.75) inset;
    -moz-box-shadow: 5px 4px 5px -1px rgba(0,0,0,0.75) inset;
    transition: all .2s ease;
    border-radius: 10px !important;
    width: 100%;
    font-weight: 600;
    color: #606060;
    text-shadow: 0 1px #fff;
    padding: 10px !important;
}

a[aria-label="line-item"] {
    padding-block: 0 !important;
    padding-left: 3px !important;
    padding-right: 3px !important;
}

fieldset {
    border-bottom: none;
    border-left: none;
    border-right: none;
}

legend {
    width: fit-content;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* RMS Event card*/
.rms-event-cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rms-event-cards_item {
    display: flex;
    padding: 1rem;
}

.rms-event-card_image {
    position: relative;
    max-height: 250px;
}

    .rms-event-card_image img {
        width: 100%;
        height: 100%;
        max-height: 265px;
        object-fit: cover;
    }

.rms-event-card_price {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 29px;
    border-radius: 0.25rem;
    background-color: #c89b3f;
    font-size: 18px;
    font-weight: 700;
    padding: 5px;
}

    .rms-event-card_price span {
        font-size: 12px;
        margin-top: auto;
        margin-left: 4px;
    }

.rms-note {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 0.25rem;
    background-color: #c89b3f;
    font-size: 14px;
    font-weight: 700;
}



.rms-event-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 22rem;
    height: 36rem;
    position: relative;
}

.rms-event-card_content {
    position: relative;
    padding: 16px 12px 32px 24px;
    margin: 16px 8px 8px 0;
    max-height: 290px;
    overflow-y: scroll;
}

    .rms-event-card_content::-webkit-scrollbar {
        width: 8px;
    }

    .rms-event-card_content::-webkit-scrollbar-track {
        box-shadow: 0;
        border-radius: 0;
    }

    .rms-event-card_content::-webkit-scrollbar-thumb {
        background: #c89b3f;
        border-radius: 15px;
    }

.rms-event-card_title {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

    .rms-event-card_title::after {
        position: absolute;
        display: block;
        width: 50px;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: #c89b3f;
        content: "";
    }

hr {
    margin: 24px auto;
    width: 50px;
    border-top: 2px solid #c89b3f;
}

.rms-event-card_text p {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.5;
}

    .rms-event-card_text p:last-child {
        margin: 0;
    }

@keyframes active {
    from {
        box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 10px 0px rgba(0, 0, 250, 0.6);
    }

    to {
        box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 3px #CECFD1;
    }
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.rms-btn, div.rz-steps-buttons > a.rz-steps-prev, div.rz-steps-buttons > a.rz-steps-next {
    -webkit-appearance: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    /*    */
    background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%);
    border-radius: 30px;
    border: 1px solid #8F9092;
    box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 0 #CECFD1;
    transition: all .2s ease;
    /**/
    font-weight: 600;
    color: #606060;
    text-shadow: 0 1px #fff;
}

div.rz-steps-buttons > a.rz-steps-prev, div.rz-steps-buttons > a.rz-steps-next {
    width: 150px;
    height: 50px;
    font-size: 14px;
    font-family: "Source Sans Pro", sans-serif;
}

    .rms-btn::-moz-focus-inner, div.rz-steps-buttons > a.rz-steps-prev::-moz-focus-inner, div.rz-steps-buttons > a.rz-steps-next::-moz-focus-inner {
        border: 0;
    }

    .rms-btn > *, div.rz-steps-buttons > a.rz-steps-prev > *, div.rz-steps-buttons > a.rz-steps-next > * {
        transition: transform .2s ease;
    }

    .rms-btn:hover:not([disabled]), div.rz-steps-buttons > a.rz-steps-prev:hover:not([disabled]), div.rz-steps-buttons > a.rz-steps-next:hover:not([disabled]) {
        box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 3px 3px #CECFD1;
    }

        .rms-btn:hover:not([disabled]) > *, div.rz-steps-buttons > a.rz-steps-prev:hover:not([disabled]) > *, div.rz-steps-buttons > a.rz-steps-next:hover:not([disabled]) > * {
            transform: scale(0.975);
        }

    .rms-btn:focus:not(:active), div.rz-steps-buttons > a.rz-steps-prev:focus:not(:active), div.rz-steps-buttons > a.rz-steps-next:focus:not(:active) {
        animation: active .9s alternate infinite;
        outline: none;
    }

    .rms-btn:active:not([disabled]), div.rz-steps-buttons > a.rz-steps-prev:active:not([disabled]), div.rz-steps-buttons > a.rz-steps-next:active:not([disabled]) {
        box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;
    }

        .rms-btn:active:not([disabled]) > *, div.rz-steps-buttons > a.rz-steps-prev:active:not([disabled]) > *, div.rz-steps-buttons > a.rz-steps-next:active:not([disabled]) > * {
            transform: scale(0.95);
        }

    .rms-btn:disabled, div.rz-steps-buttons > a.rz-steps-prev:disabled, div.rz-steps-buttons > a.rz-steps-next:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .rms-btn.icon, div.rz-steps-buttons > a.rz-steps-prev.icon, div.rz-steps-buttons > a.rz-steps-next.icon {
        width: 50px;
    }

        .rms-btn.icon svg, div.rz-steps-buttons > a.rz-steps-prev.icon svg, div.rz-steps-buttons > a.rz-steps-next.icon svg {
            margin-top: 3px;
            width: 30px;
            height: 30px;
        }

.rms-btn-blue {
    background: radial-gradient(circle, #685ff2 2%, #251ab7 100%);
    color: #ffffff;
}

.rms-btn-black {
    background: radial-gradient(60% 60% at 70% 20%, #615959, #221e1e 90% );
    color: #ececec;
}

.rms-btn-red {
    background: radial-gradient(circle, #f25f5f 2%, #cc1919 100%);
    color: #ececec;
}

.rms-btn-green {
    background: radial-gradient(circle, #5ff277 2%, #2ecc19 100%);
    color: #444141 !important;
}

.rms-btn-yellow {
    background: radial-gradient(circle, #e8f25f 2%, #c0cc19 100%);
    color: #444141 !important;
}

/* Featured Display*/
section {
    width: min(70rem, 100%);
    margin-inline: auto;
    color: #111;
    bottom: 0;
    position: absolute;
}

    section h2 {
        letter-spacing: 0.025em;
        font-size: 2.6rem;
        line-height: 1.1;
        font-family: "Playfair Display", serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
    }

@media screen and (min-width: 53rem) {
    section h2 {
        font-size: 3.2rem;
    }
}

section p {
    font-size: 1.1rem;
    color: #696969;
    margin-top: 0.8em;
    margin-left: 0.3em;
}

section a {
    display: inline-block;
    text-decoration: none;
}

section .rms-event-tile-container {
    margin-top: 10px;
    display: grid;
    gap: 2rem;
}

@media screen and (min-width: 40rem) {
    section .rms-event-tile-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

section .rms-event-tile-container .rms-event-tile-card {
    padding: 0.625rem;
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    
}

@media screen and (min-width: 53rem) {
    section .rms-event-tile-container .rms-event-tile-card {
        border-radius: 2rem;
    }
}

section .rms-event-tile-container .rms-event-tile-card-inner {
    position: relative;
    width: inherit;
    height: 12rem;
    background: var(--clr);
    border-bottom-right-radius: 0;
}

    section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box {
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 1.6rem;
        overflow: hidden;
    }

        section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-imgBox {
            position: absolute;
            inset: 0;
        }

            section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-imgBox img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 1rem;
            }

@media screen and (min-width: 53rem) {
    section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-imgBox img {
        border-radius: 1.6rem;
    }
}

section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon {
    position: absolute;
    bottom: -0.375rem;
    right: 0;
    width: 100%;
    height: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    
}

@media screen and (min-width: 53rem) {
    section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon {
        width: 18rem;
        border-top-left-radius: 1rem;
        right: -0.375rem;
    }

        section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon::before {
            position: absolute;
            content: "";
            bottom: 0.375rem;
            left: -1.25rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
        }

        section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon::after {
            position: absolute;
            content: "";
            top: -1.25rem;
            right: 0.375rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1.25rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
        }
}

section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon h3 {
    margin-left: 0.3em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
}

@media screen and (min-width: 53rem) {
    section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon h3 {
        margin-left: 1em;
    }
}

section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon .rms-event-tile-checkmark {
    position: absolute;
    top: 0.938rem;
    right: 1.25rem;
    height: 1.063rem;
    width: 1.063rem;
    background-color: transparent;
    border: 0.063rem solid #c8c8c8;
    border-radius: 0.438rem;
}

    section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon .rms-event-tile-checkmark::after {
        content: "";
        position: absolute;
        display: none;
        left: 0.375rem;
        top: 0.188rem;
        width: 0.188rem;
        height: 0.438rem;
        border: solid white;
        border-width: 0 0.125rem 0.125rem 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon input:checked ~ .rms-event-tile-checkmark {
    background-color: #111;
}

    section .rms-event-tile-container .rms-event-tile-card-inner .rms-event-tile-box .rms-event-tile-icon input:checked ~ .rms-event-tile-checkmark:after {
        display: block;
    }

.rms-event-tile-card.active h3 {
    color: #111 !important;
}

.rms-event-tile-card.active .rms-event-tile-checkmark {
    border: 0.063rem solid #111;
}

#rms-featured-container {
    box-shadow: 0 15px 30px 1px grey;
    background: rgba(255, 255, 255, 0.90);
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    margin: 5em auto;
    height: 350px;
    width: 700px;
}



.rms-product-details {
    position: relative;
    text-align: left;
    overflow: hidden;
    padding: 30px;
    height: 100%;
    float: left;
    width: 40%;
}

#rms-featured-container .rms-product-details h1 {
    font-family: 'Bebas Neue', cursive;
    display: inline-block;
    position: relative;
    font-size: 30px;
    color: #344055;
    margin: 0;
}

    #rms-featured-container .rms-product-details h1:before {
        position: absolute;
        content: '';
        right: 0%;
        top: 0%;
        transform: translate(25px, -15px);
        font-family: 'Bree Serif', serif;
        display: inline-block;
        background: #ffe6e6;
        border-radius: 5px;
        font-size: 14px;
        padding: 5px;
        color: white;
        margin: 0;
        animation: chan-sh 6s ease infinite;
    }

#rms-featured-container .rms-product-details > p {
    font-family: 'EB Garamond', serif;
    text-align: center;
    font-size: 18px;
    color: #7d7d7d;
}

.rms-control {
    position: absolute;
    bottom: 20%;
    left: 22.8%;
}

.rms-featured-btn {
    transform: translateY(0px);
    transition: 0.3s linear;
    background: #809fff;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    border: none;
    color: #eee;
    padding: 0;
    margin: 0;
}

    .rms-featured-btn:hover {
        transform: translateY(-6px);
        background: #1a66ff;
    }

    .rms-featured-btn span {
        font-family: 'Farsan', cursive;
        transition: transform 0.3s;
        display: inline-block;
        padding: 10px 20px;
        font-size: 1.2em;
        margin: 0;
    }

    .rms-featured-btn .rms-price, .rms-shopping-cart {
        background: #333;
        border: 0;
        margin: 0;
    }

    .rms-featured-btn .rms-price {
        transform: translateX(-10%);
        padding-right: 15px;
    }

    .rms-featured-btn .rms-shopping-cart {
        transform: translateX(-100%);
        position: absolute;
        background: #333;
        z-index: 1;
        left: 0;
        top: 0;
    }

    .rms-featured-btn .rms-buy {
        z-index: 3;
        font-weight: bolder;
    }

    .rms-featured-btn:hover .rms-price {
        transform: translateX(-110%);
    }

    .rms-featured-btn:hover .rms-shopping-cart {
        transform: translateX(0%);
    }



.rms-product-image {
    transition: all 0.3s ease-out;
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 100%;
    float: right;
    width: 45%;
    display: inline-block;
}

#rms-featured-container img {
    width: 100%;
    height: 100%;
}

.rms-info {
    background: rgba(27, 26, 26, 0.9);
    font-family: 'Bree Serif', serif;
    transition: all 0.3s ease-out;
    transform: translateX(-100%);
    position: absolute;
    line-height: 1.8;
    text-align: left;
    font-size: 105%;
    cursor: no-drop;
    color: #FFF;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

    .rms-info h2 {
        text-align: center
    }

.rms-product-image:hover .rms-info {
    transform: translateX(0);
}

.rms-info ul li {
    transition: 0.3s ease;
}

    .rms-info ul li:hover {
        transform: translateX(50px) scale(1.3);
    }

.rms-product-image:hover img {
    transition: all 0.3s ease-out;
}

.rms-product-image:hover img {
    transform: scale(1.2, 1.2);
}
/*End of Featured Display*/

.banner-item {
    min-height: 430px;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-backface-visibility: hidden;
    position: relative;
}

    .banner-item:before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: '';
    }

    .banner-item .banner-content-wrap {
        padding: 250px 0 182px;
        z-index: 1;
        position: relative;
    }

        .banner-item .banner-content-wrap .banner-info {
            font-size: 18px;
            font-weight: normal;
            line-height: 24px;
            margin-bottom: 10px;
            color: #fff;
        }

        .banner-item .banner-content-wrap .banner-title {
            font-size: 64px;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            line-height: 74px;
            margin-bottom: 50px;
        }

        .banner-item .banner-content-wrap .banner-btn .btn {
            height: 55px;
            line-height: 55px;
            padding: 0 55px;
        }

            .banner-item .banner-content-wrap .banner-btn .btn.fill {
                padding: 0 25px;
            }

.banner-img img {
    max-width: 100%;
}

:root {
    --hue-primary: 223;
    --hue-secondary: 178;
    --primary500: hsl(var(--hue-primary), 90%, 50%);
    --primary600: hsl(var(--hue-primary), 90%, 60%);
    --primary700: hsl(var(--hue-primary), 90%, 70%);
    --secondary800: hsl(var(--hue-secondary), 90%, 80%);
    --dark-gray50: hsl(var(--hue-primary), 90%, 5%);
    --dark-gray100: hsl(var(--hue-primary), 90%, 10%);
    --white0: hsla(0, 0%, 100%, 0);
    --white50: hsla(0, 0%, 100%, 0.05);
    --white100: hsla(0, 0%, 100%, 0.1);
    --white200: hsla(0, 0%, 100%, 0.2);
    --white300: hsla(0, 0%, 100%, 0.3);
    --white400: hsla(0, 0%, 100%, 0.4);
    --white500: hsla(0, 0%, 100%, 0.5);
    --white: hsl(0, 0%, 100%);
    font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
}

.rms-feature-card {
    --blur: 20px;
    border-radius: 1em;
    box-shadow: 0 0.25em 0.375em hsla(0, 0%, 0%, 0.1);
}

[dir=rtl] .rms-feature-card {
    background-image: linear-gradient(-90deg, var(--primary600), var(--primary500));
    left: var(--move-by);
}


.rms-feature-card-glass {
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    background-image: linear-gradient(90deg, var(--white200), var(--white50));
    color: transparent;
    top: 20px;
    right: 20px;
    max-width: 450px;
    position: fixed;
    height: inherit;
    max-height: 429px;
}

    .rms-feature-card-glass:before, .rms-feature-card-glass:after {
        border-radius: inherit;
        content: "";
        display: block;
        position: absolute;
        inset: 0;
    }

    .rms-feature-card-glass:before {
        border: 1px solid var(--white);
        mask-image: linear-gradient(135deg, var(--white), var(--white0) 50%);
    }

    .rms-feature-card-glass:after {
        border: 1px solid var(--primary500);
        mask-image: linear-gradient(135deg, var(--white0) 50%, var(--white));
    }

[dir=rtl] .rms-feature-card-glass {
    background-image: linear-gradient(-90deg, var(--white200), var(--white50));
    left: calc(var(--move-by) * -1);
}

    [dir=rtl] .rms-feature-card-glass:before {
        mask-image: linear-gradient(-135deg, var(--white), var(--white0) 50%);
    }

    [dir=rtl] .rms-feature-card-glass:after {
        mask-image: linear-gradient(-135deg, var(--white0) 50%, var(--white));
    }

.rms-feature-card-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25em 1.5em;
    position: relative;
    height: 100%;
    z-index: 1;
}

[dir=rtl] .rms-feature-card-content {
    background: linear-gradient(var(--white0) 3.125em, var(--primary700) 3.375em, var(--secondary800) 4.5em) 100% 0/calc(var(--width) - var(--move-by) * 2) 50%, linear-gradient(-90deg, var(--secondary800) 13em, var(--primary700) calc(var(--width) - var(--move-by) * 2), var(--white0) 19.1em) 100% 100%/100% 50%, linear-gradient(-90deg, var(--white500) 4em, var(--white200)) 100% 0/100% 100%;
}

.rms-feature-card-content, [dir=rtl] .rms-feature-card-content {
    -webkit-background-clip: inherit;
    background-clip: inherit;
    background-repeat: no-repeat;
}

.rms-feature-card-logo, .rms-feature-card-title {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.17;
}

.rms-feature-card-logo {
    text-align: end;
    width: 25%;
}

.rms-feature-card-desc {
    color: white;
    text-shadow: 2px 2px 12px rgba(38,38,38,0.98);
    max-height: 270px;
    overflow: auto;
}

.rms-feature-card-title {
    color: white;
    width: 75%;
    text-shadow: 2px 2px 12px rgba(38,38,38,0.98);
}

.rms-feature-card-url {
    font-size: 0.75em;
    align-self: flex-end;
    margin-inline-start: auto;
}


@media (max-width:1025px) {
    .banner-item {
        min-height: 525px;
    }

    .banner-content-wrap {
        padding: 20px 0 20px !important;
    }

    .rms-feature-card-desc {
        max-height: 150px;

    }
    .rms-feature-card-glass {
        backdrop-filter: blur(var(--blur));
        -webkit-backdrop-filter: blur(var(--blur));
        background-image: linear-gradient(90deg, var(--white200), var(--white50));
        color: transparent;
        top: unset;
        right: unset;
        width: unset;
        position: relative;
        max-height: 670px;
    }
    .rms-content {
        overflow: unset; 
    }

    .rms-item {
        overflow: unset; 
    }
}