/**
 * RH Page Builder 2026 Styles
 * Responsive-first approach with fluid typography
 * Independent from original page builder styles
 */

/* ==========================================================================
   Smooth Scrolling
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   Image Normalization
   ========================================================================== */

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Box Sizing Normalization
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */

:root {
    --rh-container-max-width: 1330px;
    --rh-container-padding: clamp(1rem, 4vw, 1.5rem);
    --rh-gap-base: clamp(1rem, 2vw, 2rem);
    --rh-gap-small: clamp(0.5rem, 1.5vw, 1rem);
    --rh-gap-large: clamp(2rem, 4vw, 3rem);
    
    /* Colors */
    --rh-color-black: #002244;
    --rh-color-blue: #006DC2;
    --rh-color-blue-dark: #0058a3;
    --rh-color-orange: #CD4104;
    --rh-color-orange-light: #F47F31;
    --rh-color-gray: #666666;
    --rh-color-white: #ffffff;
    --rh-color-light-blue: #F2F8FF;
    --bs-black-rgb: #002244;
    
    /* Typography - Fluid Sizes */
    --rh-font-size-xs: clamp(0.625rem, 0.5vw + 0.5rem, 0.75rem);      /* 10px - 12px */
    --rh-font-size-sm: clamp(0.75rem, 0.75vw + 0.5rem, 0.875rem);      /* 12px - 14px */
    --rh-font-size-base: clamp(0.9375rem, 0.5vw + 0.875rem, 1.0625rem); /* 15px - 17px */
    --rh-font-size-lg: clamp(1.125rem, 1vw + 0.75rem, 1.25rem);        /* 18px - 20px */
    --rh-font-size-xl: clamp(1.25rem, 1.5vw + 0.75rem, 1.875rem);      /* 20px - 30px */
    --rh-font-size-2xl: clamp(1.875rem, 2.5vw + 1rem, 2.375rem);       /* 30px - 38px */
    --rh-font-size-3xl: clamp(2rem, 4vw + 1rem, 4.375rem);            /* 32px - 70px */
    
    /* Line Heights */
    --rh-line-height-tight: 1.2;
    --rh-line-height-normal: 1.5;
    --rh-line-height-relaxed: 1.6;
    
    /* Spacing Scale */
    --rh-spacing-0: 0;
    --rh-spacing-1: clamp(0.25rem, 0.5vw, 0.5rem);
    --rh-spacing-2: clamp(0.5rem, 1vw, 1rem);
    --rh-spacing-3: clamp(0.75rem, 1.5vw, 1.5rem);
    --rh-spacing-4: clamp(1rem, 2vw, 2rem);
    --rh-spacing-6: clamp(1.5rem, 3vw, 3rem);
    --rh-spacing-8: clamp(2rem, 4vw, 4rem);
    --rh-spacing-10: clamp(2.5rem, 5vw, 5rem);
    --rh-spacing-12: clamp(3rem, 6vw, 6rem);
    --rh-spacing-16: clamp(4rem, 8vw, 8rem);
    --rh-spacing-20: clamp(5rem, 10vw, 10rem);
}


/* ==========================================================================
   Typography Base - Scoped to page builder only
   ========================================================================== */

.rh-page-builder {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-base);
    line-height: var(--rh-line-height-relaxed);
    color: var(--rh-color-black);
}

.rh-page-builder.landing-page-2026 {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-base);
    line-height: var(--rh-line-height-relaxed);
    color: var(--rh-color-black);
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */

.rh-page-builder.landing-page-2026 {
    width: 100%;
}

.rh-page-builder .rh-section {
    width: 100%;
}

.rh-page-builder .container {
    max-width: var(--rh-container-max-width);
    margin: 0 auto;
    padding-left: var(--rh-container-padding);
    padding-right: var(--rh-container-padding);
}

/* ==========================================================================
   Spacing Utilities (Responsive)
   ========================================================================== */

/* Padding Top - rem values */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 1rem !important; }
.pt-2 { padding-top: 2rem !important; }
.pt-3 { padding-top: 3rem !important; }
.pt-4 { padding-top: 4rem !important; }
.pt-5 { padding-top: 5rem !important; }
.pt-6 { padding-top: 6rem !important; }
.pt-8 { padding-top: 8rem !important; }
.pt-10 { padding-top: 10rem !important; }
.pt-12 { padding-top: 12rem !important; }

/* Padding Bottom - rem values */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 1rem !important; }
.pb-2 { padding-bottom: 2rem !important; }
.pb-3 { padding-bottom: 3rem !important; }
.pb-4 { padding-bottom: 4rem !important; }
.pb-5 { padding-bottom: 5rem !important; }
.pb-6 { padding-bottom: 6rem !important; }
.pb-8 { padding-bottom: 8rem !important; }
.pb-10 { padding-bottom: 10rem !important; }
.pb-12 { padding-bottom: 12rem !important; }

/* Padding Left & Right - Tablet and Desktop only */
@media (min-width: 768px) {
    .pl-0 { padding-left: 0 !important; }
    .pl-1 { padding-left: 1rem !important; }
    .pl-2 { padding-left: 2rem !important; }
    .pl-3 { padding-left: 3rem !important; }
    .pl-4 { padding-left: 4rem !important; }
    .pl-5 { padding-left: 5rem !important; }
    .pl-6 { padding-left: 6rem !important; }
    .pl-8 { padding-left: 8rem !important; }
    .pl-10 { padding-left: 10rem !important; }
    .pl-12 { padding-left: 12rem !important; }

    .pr-0 { padding-right: 0 !important; }
    .pr-1 { padding-right: 1rem !important; }
    .pr-2 { padding-right: 2rem !important; }
    .pr-3 { padding-right: 3rem !important; }
    .pr-4 { padding-right: 4rem !important; }
    .pr-5 { padding-right: 5rem !important; }
    .pr-6 { padding-right: 6rem !important; }
    .pr-8 { padding-right: 8rem !important; }
    .pr-10 { padding-right: 10rem !important; }
    .pr-12 { padding-right: 12rem !important; }
}

/* Gap Utilities - rem values */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 1rem !important; }
.gap-2 { gap: 2rem !important; }
.gap-3 { gap: 3rem !important; }
.gap-4 { gap: 4rem !important; }
.gap-5 { gap: 5rem !important; }
.gap-6 { gap: 6rem !important; }

/* ==========================================================================
   Columns Layout (Flexbox)
   ========================================================================== */

.rh-columns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--rh-gap-base);
}

/* Vertical Alignment */
.flex-start {
    align-items: flex-start;
}

.flex-center {
    align-items: center;
}

.flex-end {
    align-items: flex-end;
}

/* ==========================================================================
   Column Widths (Mobile First)
   ========================================================================== */

.rh-column {
    flex: 0 0 auto;
    width: 100%; /* Mobile: All columns full width */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/* Mobile-only: Custom column ordering */
@media (max-width: 767px) {
    .rh-column {
        order: var(--mobile-order, 0);
    }
}

/* Tablet and up: Proportional column widths */
@media (min-width: 768px) {
    .rh-columns {
        gap: 0;
    }
    
    .rh-w-full {
        width: 100%;
    }
    
    .rh-w-1\/2 {
        width: calc(50% - 1rem);
    }
    
    .rh-w-1\/3 {
        width: calc(33.333% - 1.333rem);
    }
    
    .rh-w-2\/3 {
        width: calc(66.666% - 0.666rem);
    }
    
    .rh-w-2\/5 {
        width: calc(40% - 1.2rem);
    }
    
    .rh-w-3\/5 {
        width: calc(60% - 0.8rem);
    }
}

/* ==========================================================================
   Text Alignment
   ========================================================================== */

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* ==========================================================================
   Text Colors
   ========================================================================== */

.text-black {
    color: var(--rh-color-black) ;
}

.text-blue {
    color: var(--rh-color-blue);
}

.text-orange {
    color: var(--rh-color-orange);
}

/* ==========================================================================
   Heading Styles - Fluid Typography
   ========================================================================== */

/* Base heading reset - all headings have no top margin - scoped to page builder */
.rh-page-builder h1, 
.rh-page-builder h2, 
.rh-page-builder h3, 
.rh-page-builder h4, 
.rh-page-builder h5, 
.rh-page-builder h6,
.rh-page-builder .rh-heading,
.rh-page-builder .heading-xl,
.rh-page-builder .heading-lg,
.rh-page-builder .heading-md,
.rh-page-builder .heading-sm,
.rh-page-builder .rh-card-heading,
.rh-page-builder .accordion-button {
    margin-top: 0;
    color: var(--rh-color-black);
}

.rh-heading {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    margin-top: 0;
    margin-bottom: 0;
    line-height: var(--rh-line-height-tight);
}

.heading-sm + .heading-xl,
.heading-sm + .heading-lg {
    margin-top: 1rem;
}

.rh-heading + .rh-images {
    margin-top: 3rem;
}

/* Heading XL - Hero/Display (Fluid) */
.heading-xl {
    font-size: clamp(1.875rem, 3.5vw + 0.875rem, 3.25rem); 
    font-weight: 600;
    line-height: var(--rh-line-height-tight);
    letter-spacing: clamp(-0.8px, -0.1vw, -1.4px);
    margin-top: 0;
}

/* Heading LG - Section Titles (Fluid) */
.heading-lg {
    font-size: var(--rh-font-size-2xl);
    font-weight: 600;
    line-height: var(--rh-line-height-tight);
    letter-spacing: clamp(-0.3px, -0.05vw, -0.5px);
    margin-top: 0;
}

/* Heading MD - Subsection Titles (Fluid) */
.heading-md {
    font-size: var(--rh-font-size-lg);
    font-weight: 600;
    line-height: var(--rh-line-height-tight);
    letter-spacing: 0;
    margin-top: 0;
}

/* Heading SM - Card/Module Titles (Fluid) */
.heading-sm {
    font-size: var(--rh-font-size-xs);
    font-weight: 600;
    line-height: var(--rh-line-height-tight);
    letter-spacing: clamp(1.6px, 0.2vw, 2px);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

/* ==========================================================================
   Text/Body Utilities - Fluid Typography
   ========================================================================== */

.rh-page-builder .text-regular,
.rh-page-builder .rh-rich-text p,
.rh-page-builder .rh-rich-text li {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-base);
    font-style: normal;
    font-weight: 400;
    line-height: var(--rh-line-height-relaxed);
    color: var(--rh-color-black);
}

.text-large {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-lg);
    font-style: normal;
    font-weight: 700;
    line-height: var(--rh-line-height-normal);
}

/* ==========================================================================
   Rich Text Block
   ========================================================================== */

.rh-rich-text {
    margin-bottom: var(--rh-spacing-3);
}

.rh-rich-text p {
    margin-bottom: var(--rh-spacing-2);
}

.rh-rich-text p:last-child {
    margin-bottom: 0;
}

.rh-rich-text ul,
.rh-rich-text ol {
    margin-bottom: var(--rh-spacing-2);
    padding-left: var(--rh-spacing-3);
}

.rh-rich-text li {
    margin-bottom: var(--rh-spacing-1);
}

.rh-rich-text a {
    color: var(--rh-color-blue);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.rh-rich-text a:hover {
    color: var(--rh-color-blue-dark);
}

/* ==========================================================================
   Images Block
   ========================================================================== */

.rh-images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Gap utility classes override default gap */
.rh-images.gap-0 { gap: 0; }
.rh-images.gap-1 { gap: 1rem; }
.rh-images.gap-2 { gap: 2rem; }
.rh-images.gap-3 { gap: 3rem; }
.rh-images.gap-4 { gap: 4rem; }
.rh-images.gap-5 { gap: 5rem; }
.rh-images.gap-6 { gap: 6rem; }

.rh-images img {
    width: 100%;
}

/* Height utility classes for images */
.rh-images.h-1 img { height: 1rem; width: auto; object-fit: contain; }
.rh-images.h-2 img { height: 2rem; width: auto; object-fit: contain; }
.rh-images.h-3 img { height: 3rem; width: auto; object-fit: contain; }
.rh-images.h-4 img { height: 4rem; width: auto; object-fit: contain; }
.rh-images.h-5 img { height: 5rem; width: auto; object-fit: contain; }
.rh-images.h-6 img { height: 6rem; width: auto; object-fit: contain; }
.rh-images.h-8 img { height: 8rem; width: auto; object-fit: contain; }
.rh-images.h-10 img { height: 10rem; width: auto; object-fit: contain; }
.rh-images.h-12 img { height: 12rem; width: auto; object-fit: contain; }
.rh-images.h-16 img { height: 16rem; width: auto; object-fit: contain; }
.rh-images.h-20 img { height: 20rem; width: auto; object-fit: contain; }

/* ==========================================================================
   Video Block
   ========================================================================== */

.rh-video {
    margin-bottom: var(--rh-spacing-2);
}

.rh-video-file video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(4px, 0.5vw, 8px);
}

/* ==========================================================================
   Accordion Block
   ========================================================================== */

/* Bootstrap Accordion Structure (without Bootstrap CSS) */
.accordion {
    --bs-accordion-color: transparent;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 0;
    --bs-accordion-btn-color: inherit;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-icon: none;
    --bs-accordion-btn-icon-width: 0;
    --bs-accordion-btn-focus-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 0;
    --bs-accordion-active-color: inherit;
    --bs-accordion-active-bg: transparent;
}

.accordion-item {
    border: none;
    background: transparent;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    font-size: inherit;
    color: inherit;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: none;
    cursor: pointer;
    margin-top: 0;
}

.accordion-button:not(.collapsed) {
    color: inherit;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button::after {
    display: none;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.accordion-collapse {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.accordion-collapse.show {
    height: auto;
}

.accordion-body {
    padding: 0;
    flex: 1 1 auto;
}

.collapse {
    visibility: hidden;
}

.collapse.show {
    visibility: visible;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.rh-drawer-block {
    margin-bottom: 0;
}

.rh-drawer-block .accordion-item {
    border: none;
    background: transparent;
}

.rh-drawer-block .accordion-item + .accordion-item {
    margin-top: 2rem;
}

.rh-drawer-block .accordion-button {
    font-family: 'Poppins', sans-serif;
    color: var(--rh-color-blue);
    background: transparent;
    border: none;
    padding: var(--rh-spacing-1) 0 var(--rh-spacing-1) 0;
    padding-left: calc(clamp(20px, 2vw, 24px) + var(--rh-spacing-3));
    position: relative;
    box-shadow: none;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.rh-drawer-block .accordion-button.heading-md {
    font-size: var(--rh-font-size-lg);
    font-weight: 600;
    line-height: var(--rh-line-height-tight);
    letter-spacing: 0;
    margin-top: 0;
}

.rh-drawer-block .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--rh-color-blue);
    box-shadow: none;
}

.rh-drawer-block .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.rh-drawer-block .accordion-button::after {
    display: none;
}

.rh-drawer-block .accordion-button::before {
    position: absolute;
    left: 0;
    top: 1.25rem;
    transform: translateY(-50%);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 400;
    line-height: 1;
    color: var(--rh-color-blue);
}

.rh-drawer-block .accordion-button.collapsed::before {
    content: '+';
}

.rh-drawer-block .accordion-button:not(.collapsed)::before {
    content: '-';
}

.rh-drawer-block .accordion-body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-base);
    font-weight: 400;
    line-height: var(--rh-line-height-relaxed);
    color: var(--rh-color-black);
    padding: 0 0 0 calc(clamp(20px, 2vw, 24px) + var(--rh-spacing-3));
}

.rh-drawer-block .accordion-collapse {
    border: none;
}

.rh-drawer-block .rh-drawer-cta {
    margin-top: var(--rh-spacing-3);
    margin-bottom: var(--rh-spacing-3);
}

/* ==========================================================================
   CTA Block - Button Utilities
   ========================================================================== */

.rh-cta-block {
    display: flex;
    flex-wrap: wrap;
    gap: var(--rh-spacing-2);
    margin-bottom: var(--rh-spacing-2);
}

.rh-cta-block.rh-cta-align-start {
    justify-content: flex-start;
}

.rh-cta-block.rh-cta-align-center {
    justify-content: center;
}

.rh-cta-block.rh-cta-align-end {
    justify-content: flex-end;
}

.rh-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1vw, 8px);
    height: clamp(44px, 5vw, 48px);
    padding: 0 clamp(1rem, 2rem, 2rem);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.rh-cta:hover {
    text-decoration: underline;
}

.rh-cta-icon {
    max-width: clamp(18px, 2vw, 20px);
    max-height: clamp(18px, 2vw, 20px);
    display: inline-block;
    flex-shrink: 0;
}

/* CTA Blue - Primary Button */
.cta-blue {
    background: var(--rh-color-blue);
    color: var(--rh-color-white);
}

.cta-blue:hover {
    background-color: var(--rh-color-blue-dark);
    color: var(--rh-color-white);
    text-decoration: none;
}

/* CTA Orange */
.cta-orange {
    background: var(--rh-color-orange);
    color: var(--rh-color-white);
}

.cta-orange:hover {
    background-color: #b03803;
    color: var(--rh-color-white);
    text-decoration: none;
}

/* CTA White */
.cta-white {
    background: var(--rh-color-white);
    color: var(--rh-color-black);
    border: 2px solid var(--rh-color-black);
}

.cta-white:hover {
    background-color: var(--rh-color-blue);
    color: var(--rh-color-white);
    border-color: var(--rh-color-blue);
    text-decoration: none;
}

/* CTA Arrow - Text Link Style */
.cta-arrow {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 8px);
    background: transparent;
    border: none;
    padding: 0;
    height: auto;
    color: var(--rh-color-black);
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-base);
    font-weight: 400;
    line-height: var(--rh-line-height-relaxed);
    text-decoration: none;
}

.cta-arrow::after {
    content: '';
    display: inline-block;
    width: clamp(7px, 1vw, 9px);
    height: clamp(12px, 1.5vw, 14px);
    background-image: url('data:image/svg+xml,%3Csvg width="9" height="14" viewBox="0 0 9 14" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M8.125 7.40625L2.0625 13.5C1.75 13.7812 1.28125 13.7812 1 13.5L0.28125 12.7812C0 12.5 0 12.0312 0.28125 11.7188L5.09375 6.875L0.28125 2.0625C0 1.75 0 1.28125 0.28125 1L1 0.28125C1.28125 0 1.75 0 2.0625 0.28125L8.125 6.375C8.40625 6.65625 8.40625 7.125 8.125 7.40625Z" fill="%23CD4104"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.cta-arrow:hover::after {
    transform: translateX(4px);
}

/* Mobile: Full width CTAs */
.rh-cta {
    width: 100%;
    justify-content: center;
}

/* Tablet and up: Auto width CTAs */
@media (min-width: 768px) {
    .rh-cta {
        width: auto;
        justify-content: flex-start;
    }
}

/* ==========================================================================
   Cards Block
   ========================================================================== */

.rh-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--rh-spacing-2);
    justify-items: center;
}

.rh-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: inherit;
    background: var(--rh-color-white);
    border: none;
    padding: var(--rh-spacing-3) var(--rh-spacing-2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: auto;
    gap: var(--rh-spacing-2);
    border-radius: clamp(4px, 0.5vw, 8px);
    width: 100%;
}

.rh-card:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Plain style: No hover effects */
.rh-cards-style-plain .rh-card:hover {
    transform: none;
    box-shadow: none;
}

.rh-card-image {
    flex-shrink: 0;
    width: clamp(50px, 8vw, 60px);
    max-width: clamp(50px, 8vw, 60px);
    margin-bottom: 0;
}

.rh-card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(2px, 0.3vw, 4px);
}

.rh-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--rh-spacing-1);
    flex: 1;
}

.rh-card-heading {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-lg);
    font-weight: 600;
    line-height: var(--rh-line-height-tight);
    color: var(--rh-color-blue);
    margin: 0;
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 8px);
}

.rh-card-heading::after {
    content: '';
    display: inline-block;
    width: clamp(5px, 0.8vw, 6px);
    height: clamp(8px, 1.2vw, 10px);
    background-image: url('data:image/svg+xml,%3Csvg width="9" height="14" viewBox="0 0 9 14" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M8.125 7.40625L2.0625 13.5C1.75 13.7812 1.28125 13.7812 1 13.5L0.28125 12.7812C0 12.5 0 12.0312 0.28125 11.7188L5.09375 6.875L0.28125 2.0625C0 1.75 0 1.28125 0.28125 1L1 0.28125C1.28125 0 1.75 0 2.0625 0.28125L8.125 6.375C8.40625 6.65625 8.40625 7.125 8.125 7.40625Z" fill="%23006DC2"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.rh-card:hover .rh-card-heading::after {
    transform: translateX(3px);
}

/* Plain style: Remove chevron and use medium heading size */
.rh-cards-style-plain .rh-card-heading {
    font-size: var(--rh-font-size-lg); /* heading-md size */
}

.rh-cards-style-plain .rh-card-heading::after {
    display: none;
}

/* Stats style: Very light blue background, large numbers, no hover/chevron */
.rh-cards-style-stats .rh-card {
    background: #F5FAFF;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: var(--rh-spacing-3);
    border-radius: clamp(8px, 1vw, 12px);
}

.rh-cards-style-stats .rh-card:hover {
    transform: none;
    box-shadow: none;
}

.rh-cards-style-stats .rh-card-heading.heading-xl {
    font-size: clamp(1.875rem, 3.5vw + 0.875rem, 3.25rem) !important;
    font-weight: 600 !important;
    line-height: var(--rh-line-height-tight) !important;
    letter-spacing: clamp(-0.8px, -0.1vw, -1.4px) !important;
    margin-top: 0 !important;
}

.rh-cards-style-stats .rh-card-heading {
    color: var(--rh-color-blue);
    margin-top: 0;
    margin-bottom: var(--rh-spacing-1);
}

.rh-cards-style-stats .rh-card-heading::after {
    display: none;
}

.rh-cards-style-stats .rh-card-content {
    align-items: flex-start;
    text-align: left;
}

.rh-cards-style-stats .rh-card-text {
    color: var(--rh-color-black);
    font-size: var(--rh-font-size-base);
    text-align: left;
}

.rh-cards-style-stats .rh-card-text p {
    text-align: left;
}

.rh-cards-style-stats .rh-card-text a,
.rh-cards-style-stats .rh-card-text u {
    text-decoration: underline;
    color: var(--rh-color-blue);
}

.rh-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-sm);
    font-weight: 400;
    line-height: var(--rh-line-height-relaxed);
    color: var(--rh-color-gray);
    margin: 0;
}

/* Mobile: All cards full width (single column) */
/* Already handled by grid-template-columns: 1fr above */

/* Tablet and up: Grid columns based on cards per row */
@media (min-width: 768px) {
    .rh-cards {
        gap: var(--rh-gap-base);
    }
    
    .rh-cards-per-row-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .rh-cards-per-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rh-cards-per-row-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rh-cards-per-row-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .rh-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        padding: var(--rh-spacing-2) var(--rh-spacing-3);
        height: 100%;
    }
    
    /* Stats style: Keep left alignment on tablet+ */
    .rh-cards-style-stats .rh-card {
        align-items: flex-start;
        text-align: left;
    }
    
    .rh-card-image {
        width: auto;
        max-width: clamp(100px, 12vw, 120px);
        margin-bottom: var(--rh-spacing-3);
    }
    
    .rh-card-content {
        align-items: center;
    }
}

/* ==========================================================================
   HTML Block
   ========================================================================== */

.rh-html-block {
    margin-bottom: var(--rh-spacing-2);
}

.rh-html-block iframe {
    max-width: 100%;
    border-radius: clamp(4px, 0.5vw, 8px);
}

/* ==========================================================================
   Testimonials Block
   ========================================================================== */

.rh-testimonials {
    position: relative;
}

.rh-testimonial {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--rh-spacing-3);
    padding: var(--rh-spacing-4) var(--rh-spacing-4);
    position: relative;
}

.rh-testimonials-single .rh-testimonial {
    margin-bottom: 0;
}

.rh-testimonial-content {
    flex: 1;
    max-width: 43rem;
    text-align: left;
}

.rh-testimonial-quote {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem); /* ~20px - 24px */
    font-weight: 500;
    line-height: var(--rh-line-height-relaxed);
    margin-bottom: var(--rh-spacing-2);
    position: relative;
    padding-left: 0;
    padding-top: 0;
}

.rh-testimonial-quote::before {
    display: none; /* Hidden on mobile */
}

.rh-testimonial-attribution {
    margin-bottom: var(--rh-spacing-3);
    padding-left: 0;
}

.rh-attribution-primary {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-lg);
    font-weight: 700;
    line-height: var(--rh-line-height-tight);
    color: #1A3E62;
    margin-bottom: var(--rh-spacing-1);
}

.rh-attribution-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-base);
    font-weight: 400;
    line-height: var(--rh-line-height-normal);
    color: #1A3E62;
    margin-bottom: 0;
}

.rh-testimonial-cta {
    margin-left: 0;
    margin-top: var(--rh-spacing-2);
}

.rh-testimonial-image {
    display: none; /* Hidden on mobile */
}

/* Testimonials Slider */
.rh-testimonials-slider {
    position: relative;
}

.rh-testimonials-slider-container {
    position: relative;
}

.rh-testimonials-slides {
    margin-bottom: var(--rh-spacing-2);
}

.rh-testimonial-slide .rh-testimonial {
    margin-bottom: 0;
}

/* Slider Arrows */
.rh-testimonials-arrows {
    display: none; /* Hidden on mobile */
}

.rh-arrow {
    position: absolute;
    width: clamp(36px, 4vw, 40px);
    height: clamp(36px, 4vw, 40px);
    cursor: pointer;
    pointer-events: all;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    z-index: 10;
}

.rh-arrow::before {
    content: '';
    width: clamp(14px, 1.5vw, 16px);
    height: clamp(14px, 1.5vw, 16px);
    border-top: 3px solid var(--rh-color-blue);
    border-right: 3px solid var(--rh-color-blue);
    transition: all 0.3s ease;
}

.rh-arrow-prev {
    left: clamp(15px, 2vw, 20px);
}

.rh-arrow-prev::before {
    transform: rotate(-135deg);
}

.rh-arrow-next {
    right: clamp(15px, 2vw, 20px);
}

.rh-arrow-next::before {
    transform: rotate(45deg);
}

.rh-arrow:hover {
    opacity: 0.7;
}

.rh-arrow:hover::before {
    transform: scale(1.1) rotate(-135deg);
}

.rh-arrow-next:hover::before {
    transform: scale(1.1) rotate(45deg);
}

/* Slick Dots */
.rh-testimonials-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: clamp(8px, 1vw, 10px);
    padding: 0;
    margin: var(--rh-spacing-3) 0 0 0;
    list-style: none;
}

.rh-testimonials-slider .slick-dots li {
    margin: 0;
    padding: 0;
}

.rh-testimonials-slider .slick-dots li button {
    width: clamp(10px, 1.2vw, 12px);
    height: clamp(10px, 1.2vw, 12px);
    padding: 0;
    border: 2px solid var(--rh-color-blue);
    border-radius: 50%;
    background-color: transparent;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rh-testimonials-slider .slick-dots li.slick-active button {
    background-color: var(--rh-color-blue);
}

.rh-testimonials-slider .slick-dots li button:hover {
    background-color: var(--rh-color-blue);
    opacity: 0.7;
}

/* Tablet and up: Horizontal layout with quote icon */
@media (min-width: 768px) {
    .rh-testimonial {
        flex-direction: row;
        text-align: left;
        padding: var(--rh-spacing-3) clamp(3rem, 6vw, 5rem);
        gap: var(--rh-spacing-3);
        align-items: center;
    }
    
    .rh-testimonial-quote {
        padding-left: clamp(80px, 10vw, 100px);
    }
    
    .rh-testimonial-quote::before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: clamp(6px, 1vw, 8px);
        width: clamp(55px, 7vw, 65px);
        height: clamp(55px, 7vw, 65px);
        background-image: url('https://www.rectanglehealth.com/wp-content/uploads/2025/10/quote.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left top;
    }
    
    .rh-testimonial-attribution {
        padding-left: clamp(80px, 10vw, 9rem);
    }
    
    .rh-testimonial-cta {
        margin-left: clamp(80px, 10vw, 9rem);
    }
    
    .rh-testimonial-image {
        display: block;
        flex: 0 0 auto;
        width: clamp(180px, 20vw, 200px);
        height: clamp(180px, 20vw, 200px);
        order: 2;
        align-self: center;
    }
    
    .rh-testimonial-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .rh-testimonials-arrows {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        pointer-events: none;
    }
}

/* ==========================================================================
   Features Table Block
   ========================================================================== */

.features-table {
    margin-bottom: 2rem;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.table-header .feature-name {
    font-weight: 600;
    color: #006DC2;
    font-size: 1.1rem;
}

.table-header .hipaa-col,
.table-header .osha-col {
    text-align: center;
    font-weight: 600;
    color: #006DC2;
    font-size: 1.1rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-radius: 8px;
    padding: 1rem 2rem;
    align-items: center;
}

.table-row:nth-child(even) {
    background: white;
}

.table-row:nth-child(odd) {
    background: #F0F8FF;
}

.table-row:last-child {
    margin-bottom: 0;
}

.feature-name {
    color: #1F2937;
    line-height: 1.4;
}

.feature-name strong {
    font-weight: 600;
}

.hipaa-col,
.osha-col {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
}

.hipaa-col img,
.osha-col img {
    width: 20px;
    height: 20px;
}

/* Mobile table scrolling */
@media (max-width: 575px) {
    .features-table {
        max-width: 100%;
        overflow-x: auto;
    }
    
    .features-table {
        min-width: 500px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        border-bottom: 2px solid #e5e7eb;
        padding: 1.5rem 1rem;
    }
    
    .feature-name {
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    
    .hipaa-col,
    .osha-col {
        display: inline-block;
        margin: 0 1rem;
    }
    
    .hipaa-col::before {
        content: "HIPAA: ";
        font-weight: 600;
        color: #006DC2;
    }
    
    .osha-col::before {
        content: "OSHA: ";
        font-weight: 600;
        color: #006DC2;
    }
}

/* ==========================================================================
   Image Carousel Block
   ========================================================================== */

.rh-image-carousel {
    width: 100%;
    position: relative;
    margin-bottom: var(--rh-spacing-2);
}

.rh-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: clamp(4px, 0.5vw, 8px);
}

.rh-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity var(--transition-duration, 1s) ease-in-out;
    pointer-events: none;
}

.rh-carousel-image.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.rh-carousel-container .rh-carousel-image:first-child {
    opacity: 1;
    position: relative;
}

/* ==========================================================================
   Block Spacing
   ========================================================================== */

.rh-block + .rh-block {
    margin-top: 2rem;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Override general block spacing for specific combinations */
.rh-rich-text + .rh-cta-block {
    margin-top: 2rem;
}

/* ==========================================================================
   Background Utilities
   ========================================================================== */

.bg-lines {
    background-image: url('https://www.rectanglehealth.com/wp-content/uploads/2025/11/lines-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-lines-white {
    background-image: url('https://www.rectanglehealth.com/wp-content/uploads/2025/11/lines-bg-white.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-orange-bridge {
    background-image: url('https://www.rectanglehealth.com/wp-content/uploads/2025/11/bg-orange-bridge.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-lightblue-gradient {
    background: linear-gradient(0deg, rgba(223, 236, 245, 0.00) 0.65%, #DFECF5 99.35%);
}

.bg-lightblue {
    background-color: #f0f9ff;
}

.bg-navy {
    background-color: #001F3A;
    color: white;
}
.bg-navy .text-black,
.bg-navy .rh-rich-text p {
    color: white;
}

/* ==========================================================================
   HubSpot Form Block
   ========================================================================== */

.rh-hubspot-form {
    width: 100%;
}

.rh-hubspot-form iframe {
    max-width: 100%;
}

/* HubSpot Form Styling */
.rh-hubspot-form form .hs-form-field input::placeholder {
    color: #002244;
}

.rh-hubspot-form form input[type="text"],
.rh-hubspot-form form input[type="email"],
.rh-hubspot-form form input[type="tel"] {
    width: 100%;
    box-sizing: border-box;
    height: 48px;
    border: 0px;
    margin-bottom: 2rem;
    background-color: transparent;
    font-size: 18px;
    border-bottom: 2px solid #225395;
    font-family: 'Poppins', sans-serif;
}

.rh-hubspot-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 0px;
    margin-bottom: 10px;
    background-color: transparent;
    font-size: 18px;
    border-bottom: 2px solid #225395;
    font-family: 'Poppins', sans-serif;
}

.rh-hubspot-form form select {
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    font-weight: 500;
    color: #1f1f1fc9 !important;
    margin: 0 0 15px 0;
    background: transparent;
    border: 0px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("/wp-content/uploads/2023/12/Icon.svg");
    background-position: center right 10px;
    background-repeat: no-repeat;
    font-size: 18px;
    border-bottom: 2px solid #225395;
    font-family: 'Poppins', sans-serif;
}

.rh-hubspot-form form .hs-input,
.rh-hubspot-form form textarea::placeholder {
    color: #002244 !important;
}

.rh-hubspot-form form select.hs-input.is-placeholder {
    color: #002244 !important;
}

.rh-hubspot-form form .form-columns-2 .hs-input {
    width: 93%;
}

.rh-hubspot-form fieldset.form-columns-1 .input {
    margin-right: 0px !important;
}

.rh-hubspot-form form ul {
    padding: 0px;
    list-style: none;
}

.rh-hubspot-form form .hs_submit {
    margin-top: 20px;
    position: relative;
}

.rh-hubspot-form form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1vw, 8px);
    height: clamp(44px, 5vw, 48px);
    padding: 0 clamp(1rem, 2rem, 2rem);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: var(--rh-color-blue);
    color: var(--rh-color-white);
    width: fit-content;
}

.rh-hubspot-form form input[type="submit"]:hover {
    background-color: var(--rh-color-blue-dark);
    color: var(--rh-color-white);
    text-decoration: none;
}

.rh-hubspot-form .hs-input[type="radio"] {
    margin-top: 5px;
    margin-right: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #4a4a4a;
    padding: 9px;
    display: inline-block;
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 100%;
}

.rh-hubspot-form input[type="checkbox"] {
    margin-right: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 2px solid #1f1f1f;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    width: 25px !important;
    height: 25px !important;
}

.rh-hubspot-form input[type="checkbox"]:checked:after {
    content: url("/wp-content/uploads/2023/12/Icon-1.svg");
    position: absolute;
    top: -4px;
    left: 2px;
    color: #ffffff;
}

.rh-hubspot-form form .hs-fieldtype-text label span,
.rh-hubspot-form form .hs-phone label span,
.rh-hubspot-form .hs-fieldtype-select label span,
.rh-hubspot-form .hs-fieldtype-textarea label span {
    display: none !important;
}

.rh-hubspot-form .hs-fieldtype-checkbox label,
.rh-hubspot-form .hs-form-checkbox label,
.rh-hubspot-form .hs-form-radio label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 18px;
    align-items: center;
    letter-spacing: normal;
    font-family: 'Poppins', sans-serif;
}

.rh-hubspot-form .hs-fieldtype-checkbox label span,
.rh-hubspot-form .hs-fieldtype-checkbox label {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 18px;
    letter-spacing: normal;
}

.rh-hubspot-form .hs-form-checkbox label span,
.rh-hubspot-form .hs-form-radio label span {
    display: flex;
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: normal;
}

.rh-hubspot-form .hs-form-checkbox,
.rh-hubspot-form .hs-form-radio {
    margin-bottom: 10px;
}

.rh-hubspot-form form .legal-consent-container .hs-richtext p {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.rh-hubspot-form .hs-form fieldset {
    max-width: 100% !important;
}

.rh-hubspot-form form .hs-form-required,
.rh-hubspot-form form .hs-error-msg,
.rh-hubspot-form .hs-error-msgs label {
    color: #cd4104 !important;
    font-weight: normal;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.rh-hubspot-form form .hs-form-booleancheckbox {
    margin-top: 20px;
}

.rh-hubspot-form form .legal-consent-container .hs-form-booleancheckbox-display > span {
    font-size: 14px !important;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 150%;
    color: #002244;
    font-family: 'Poppins', sans-serif;
}

.rh-hubspot-form form .legal-consent-container .hs-richtext {
    font-size: 14px !important;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 150%;
    color: #1f1f1f;
    font-family: 'Poppins', sans-serif;
}

.rh-hubspot-form form input.form-control {
    margin: 0px;
}

/* ==========================================================================
   Landing Page Header (2026)
   ========================================================================== */

.landing-page-2026 .landing-page-header {
    background: var(--rh-color-white);
    padding: clamp(0.75rem, 2vw, 1rem) 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.landing-page-2026 .landing-page-header .container {
    max-width: var(--rh-container-max-width);
    margin: 0 auto;
    padding-left: var(--rh-container-padding);
    padding-right: var(--rh-container-padding);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.landing-page-2026 .header-logo {
    display: flex;
    align-items: center;
}

.landing-page-2026 .header-logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.landing-page-2026 .header-logo a:hover {
    opacity: 0.8;
}

.landing-page-2026 .header-logo svg {
    width: auto;
    height: clamp(40px, 5vw, 54px);
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   Landing Page Footer (2026)
   ========================================================================== */

.landing-page-2026 .landing-page-footer {
    background: #001F3A;
    color: var(--rh-color-white);
    padding: clamp(3rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem) 0;
    margin-top: var(--rh-spacing-4);
    width: 100%;
}

.landing-page-2026 .footer-container {
    max-width: var(--rh-container-max-width);
    margin: 0 auto;
    padding-left: var(--rh-container-padding);
    padding-right: var(--rh-container-padding);
}

.landing-page-2026 .footer-logo {
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
    padding-top: clamp(1rem, 2vw, 1.5rem);
}

.landing-page-2026 .footer-logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.landing-page-2026 .footer-logo a:hover {
    opacity: 0.8;
}

.landing-page-2026 .footer-logo img {
    max-width: 100%;
    height: auto;
    width: clamp(200px, 30vw, 300px);
    display: block;
}



.landing-page-2026 .footer-content p {
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.landing-page-2026 .footer-content p:last-child {
    margin-bottom: 0;
}

.landing-page-2026 .footer-intro {
    font-size: var(--rh-font-size-base);
    color: var(--rh-color-white);
    line-height: var(--rh-line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.landing-page-2026 .footer-copyright {
    font-size: var(--rh-font-size-sm);
    color: var(--rh-color-white);
    line-height: var(--rh-line-height-normal);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.landing-page-2026 .footer-legal {
    font-size: var(--rh-font-size-xs);
    line-height: var(--rh-line-height-normal);
    color: var(--rh-color-white);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.landing-page-2026 .footer-contact {
    font-family: 'Poppins', sans-serif;
    font-size: var(--rh-font-size-xs);
    color: var(--rh-color-white);
    line-height: var(--rh-line-height-normal);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* Responsive Footer Layout */
@media (max-width: 767px) {
    .landing-page-2026 .footer-contact {
        white-space: normal;
        line-height: 1.6;
    }
}


/* Responsive Iframe */
.responsive-iframe {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 0;
    padding-bottom: 50%; /* 16:9 aspect ratio */
    overflow: hidden;
    margin: 0 auto;
    border-radius: 12px;
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}