/* ===== Reset & base ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #6c97c8;
    --color-navy: #0e3449;
    --color-heading: #24456B;
    --color-text: #4d4942;
    --color-nav-text: #232323;
    --color-bg-alt: #eef5ff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    color-scheme: light only;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1520px;
    margin: 0 auto;

}

.compare-card-list li {
    font-size: 20px;
    color: #414141;
    font-family: var(--font-heading);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.18px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 120px;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {

    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 12px rgba(14, 52, 73, 0.1);
}

.topbar {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.28px;
}

.topbar a {
    color: #fff;
}

.topbar a:hover {
    text-decoration: underline;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: #fff;
    flex-wrap: wrap;
    gap: 16px;
}

.navbar__logo img {
    height: 80px;
    width: auto;
}

.navbar__menu ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.navbar__menu a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    color: var(--color-nav-text);
}

.navbar__menu a:hover,
.navbar__menu a.is-active {
    color: var(--color-primary);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 26px;
    height: 36px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--color-nav-text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar__toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu__header,
.mobile-menu__footer,
.mobile-menu-overlay {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

/* ===== Section helpers ===== */
.section {
    padding: 100px 0;
    background: #fff;
}

section.section.section--alt .container {
    max-width: 1320px;
    width: 100%;
}

.section-header {
    text-align: left;
    margin-bottom: 48px;
}

.review_section {
    background: #F6F6F6;
}

.section-header__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    color: #232323;
    margin-bottom: 12px;
    justify-content: center;
}

.section-header__eyebrow::before,
.section-header__eyebrow::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-primary);
}

.section-header--left .section-header__eyebrow::before,
.section-header--left .section-header__eyebrow::after {
    display: none;
}

.section-header--left .section-header__eyebrow {
    justify-content: flex-start;
    font-size: 20px;
    color: #232323;
    font-family: 'Outfit';
}

.section-header--left .section-header__eyebrow::after {
    content: "";
    display: block;
    flex: 0 0 100px;
    height: 1px;
    background: #5A5A5A;
}

.hero h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    color: var(--color-heading);
    line-height: 1.25;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    color: var(--color-heading);
    line-height: 1.25;
}

.section-header p {
    margin-top: 24px;

}

p.section-header__eyebrow {
    margin-top: 0;
}

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

.section-header--center .section-header p {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Hero banner ===== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 741px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(14 52 73 / 34%) 0%, rgba(14, 52, 73, 0.55) 35%, rgba(14, 52, 73, 0.1) 70%);
    z-index: 1;
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
    color: #fff;
}

.hero-banner__text {
    max-width: 829px;
}

.hero-banner__eyebrow {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 12px;
}

.hero-banner__content h1 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 70px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 32px;
}

.hero_blk {

    background: linear-gradient(97.06deg, #BDD7F4 1.53%, #DAEBFF 25.53%, #ECF5FF 50.31%, #DAEBFF 77.05%, #BDD7F4 97.25%);
    padding: 80px 100px;
    border-radius: 20px;

}

section.hero h2 {
    max-width: 640px;
    margin: auto;
}

.hero {

    padding: 80px 0 100px;
    text-align: center;
}

.hero__eyebrow {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 20px;
    color: var(--color-text);
    text-transform: uppercase;
    margin-top: 0 !important;
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 48px;
    color: var(--color-heading);
    margin-top: 8px;
}

.hero p {

    margin: 32px auto 0;
    font-size: 20px;
    font-family: 'Outfit';
    color: #414141;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ===== Two-column content (services / education) ===== */
.split {
    display: flex;
    align-items: center;
    gap: 60px;

}

.split.reverse {
    flex-direction: row-reverse;
}

.split__text {
    max-width: 710px;
    width: 100%;
}

.split__media {
    max-width: 710px;
    width: 100%;
}

.dr_section .split.reverse {

    justify-content: space-between;
}




.split__media img,
.split__media .placeholder {
    border-radius: 16px;
    width: 100%;
    aspect-ratio: 710 / 688;
    object-fit: cover;
    background: linear-gradient(135deg, #bdd7f4, #ecf5ff);
}

.split__text p {
    margin-bottom: 16px;
    width: fit-content;
}

.split__text .btn {
    margin-top: 16px;
}

/* ===== Sedation options ===== */
.sedation-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sedation-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--color-navy);
    border-radius: 16px;
    padding: 24px;
}

.sedation-card__img {
    width: 310px;
    /* height: 95px; */
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.sedation-card__text {
    flex: 1 1 auto;
    max-width: 600px;
    width: 100%;
    margin-right: 90px;
}

.sedation-card__text h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 28px;
    color: #fff;
    margin-bottom: 6px;

}

.sedation-card__text p {
    color: rgb(255 255 255);
    font-size: 18px;
    font-weight: 300;
}

.sedation-card__btn {
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .sedation-card {
        flex-wrap: wrap;
    }

    .sedation-card__btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== Same-day implants comparison ===== */
.compare-section {
    background-image: url('/assets/images/second_sec_bg.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
}

.compare-section .para {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Outfit';
    color: #414141;
    margin-bottom: 86px;
}

.compare-section__heading {
    color: var(--color-navy);
}

.compare-promo {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    background: linear-gradient(97.06deg, #BDD7F4 1.53%, #DAEBFF 25.53%, #ECF5FF 50.31%, #DAEBFF 77.05%, #BDD7F4 97.25%), #DBECFF;
    border-radius: 16px;
    margin-top: 32px;
    max-width: fit-content;
    position: relative;
    justify-content: end;
    flex-wrap: wrap;

    max-width: 490px;
    width: 100%;
}

.compare-promo__img {
    flex-shrink: 0;
    border-radius: 8px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.compare-promo__text {
    padding: 20px;
}

.compare-promo__text p {
    font-size: 20px;
    line-height: 1.6;
    color: #414141;
    margin-bottom: 0px;
    font-family: 'Outfit';
}

.compare-cards {
    max-width: 920px;
    width: 100%;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.compare-card-list {
    flex: 1 1 260px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(14, 52, 73, 0.08);
}

.compare-card-list__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 22px;
    color: #24456B;
    margin-bottom: 16px;
}

.compare-card-list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compare-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f2f3f5;
    border-radius: 8px;
    padding: 10px 14px;

}

.icon-badge {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    flex-shrink: 0;
}

.icon-badge.check {
    background: #2fa84f;
}

.icon-badge.cross {
    background: #e0483e;
}

/* ===== Cards ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
}

/* ===== Slider ===== */
.slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider__viewport {
    overflow: hidden;
    flex: 1 1 auto;
}

.slider__track {
    display: flex;
    gap: 36px;
    transition: transform 0.4s ease;
}

.slider__slide {
    flex: 0 0 calc((100% - 72px) / 3);
    min-width: 0;
}

.slider-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e2e6ea;
    background: #6290C4;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(14, 52, 73, 0.08);
    transition: background 0.2s ease, color 0.2s ease;
}

.slider-arrow:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.slider-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 900px) {
    .slider__slide {
        flex-basis: 100%;
    }
}

@media (min-width: 901px) and (max-width: 1210px) {
    .slider__slide {
        flex-basis: calc((100% - 36px) / 2);
    }
}

@media (max-width: 600px) {
    .slider {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 16px;
    }

    .slider__viewport {
        order: 1;
        flex-basis: 100%;
        width: 100%;
    }

    .slider-arrow--prev {
        order: 2;
    }

    .slider-arrow--next {
        order: 3;
    }
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(14, 52, 73, 0.08);
}

.card__stars {
    color: var(--color-primary);
    margin: 12px 0 16px;
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 1;
}

.card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 4px;
}

.card .read-more {
    display: inline-block;
    margin-top: 16px;
    color: var(--color-primary);
    font-weight: 500;
    cursor: pointer;
}

.card__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.card__text.is-expanded {
    display: block;
    max-height: 120px;
    overflow-y: auto;
    -webkit-line-clamp: unset;
}

/* ===== Stat / feature row ===== */
.stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat__icon {
    width: 99px;
    height: 99px;
    border-radius: 16px;
    background: linear-gradient(98.75deg, #BDD7F4 -8.27%, #DAEBFF 19.02%, #ECF5FF 47.2%, #DAEBFF 77.61%, #BDD7F4 100.58%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat__icon img {
    width: 75px;
    height: 75px;
}

.stat__number {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 32px;
    color: #24456B;
}

.stat__label {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-heading);
}

/* ===== Before / after strip ===== */
.compare-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
}

.compare-card {
    width: 490px;
    max-width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.compare-card img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.compare-card span {
    position: absolute;
    top: 10px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.85);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--color-heading);
}

.compare-card span.before {
    left: 10px;
}

.compare-card span.after {
    right: 10px;
}

/* ===== Blog ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 36px;
    margin-top: 48px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(14, 52, 73, 0.08);
}

.blog-card__date {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-heading);
    margin: 12px 0;
}

.blog-card .read-more {
    color: var(--color-primary);
    font-weight: 500;
}

/* ===== CTA banner ===== */
.cta-banner {
    background: linear-gradient(97.06deg, #BDD7F4 1.53%, #DAEBFF 25.53%, #ECF5FF 50.31%, #DAEBFF 77.05%, #BDD7F4 97.25%), #D9D9D9;
    border-radius: 24px;
    padding: 60px;
    text-align: left;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}



.cta-banner h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    color: var(--color-heading);
}

.section--alt .container {
    position: relative;
}

.cta-banner p {
    margin: 16px 0 24px;
    max-width: 600px;
    font-size: 20px;
    font-family: 'Outfit';
}

.cta-banner__portrait {
    flex: 0 0 auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 85px;
    position: absolute;
    right: 55px;
}

/* ===== Logos strip ===== */
.logos-strip {
    padding: 60px 0;
}

.logos-strip__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.logos-strip__row img {
    max-height: 70px;
    width: auto;
    opacity: 0.85;
}

/* ===== Footer ===== */
.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
}

.footer-card {
    background: var(--color-navy);
    color: #fff;
    padding: 66px 60px;
    border-radius: 12px 120px 12px 120px;
    flex: 0 1 480px;
    margin: 30px;
}

.footer-card__logo {
    width: 208px;
    margin-bottom: 32px;
}

.footer-card__contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.18px;
    margin-bottom: 14px;
}

.footer-card__icon {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-card__copyright {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 16px;
    margin-top: 32px;
}

.footer-links {
    flex: 1 1 700px;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    padding: 60px;
    background: linear-gradient(116.9deg, #bdd7f4 1.5%, #daebff 25.5%, #ecf5ff 50.3%, #daebff 77%, #bdd7f4 97.2%);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.footer-col h4:not(:first-child) {
    margin-top: 24px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-col__social li a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col__social-icon {
    width: 26px;
    height: 26px;
}



.bf_section .split__text {
    max-width: 730px;
    width: 100%;
}

.bf_section .split {
    justify-content: space-between;
}

.navbar__menu a.btn.btn-primary {
    color: #fff;
}

section.section.dr_section,
section.section.bf_section {
    padding-top: 0;
}

/* ===== Mobile menu ===== */
@media (max-width: 1210px) {

    .navbar {
        padding: 16px 24px;
        flex-direction: row;
        flex-wrap: nowrap;
        position: relative;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        max-height: none;
        overflow-y: auto;
        background: #fff;
        box-shadow: -8px 0 24px rgba(14, 52, 73, 0.15);
        transform: translateX(100%);
        z-index: 110;
        display: flex;
        flex-direction: column;
    }

    .navbar__menu.has-transition {
        transition: transform 0.3s ease;
    }

    .navbar__menu.is-open {
        transform: translateX(0);
    }

    .mobile-menu__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu__logo {
        height: 74px;
        width: auto;
    }

    .mobile-menu__close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: #f2f3f5;
        color: var(--color-nav-text);
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        flex-shrink: 0;
    }

    .navbar__menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 24px 20px;
    }

    .navbar__menu ul li {
        width: 100%;
    }

    .navbar__menu ul li a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu__footer {
        margin-top: auto;
        padding: 20px;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .mobile-menu__footer .btn {
        width: 100%;
        text-align: center;
    }

    .mobile-menu__phone {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--color-primary);
        font-family: var(--font-heading);
        font-weight: 500;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(14, 52, 73, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 105;
    }

    .mobile-menu-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {

    .hero-banner__content {
        padding: 50px 24px !important;
    }

    .container {
        padding: 0 24px;
    }

    .section {
        padding: 60px 0;
    }

    .hero h1,
    .section-header h2,
    section.hero h2 {
        font-size: 38px;
    }

    .split {
        gap: 40px;
    }

    .footer-card {
        margin: 20px;
        border-radius: 24px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-banner__text {
        flex: 1 1 auto;
    }

    .cta-banner__portrait {
        margin-bottom: 0;
    }
}



@media (max-width: 1600px) {
    .cta-banner__portrait {
        right: 115px;
    }

    .hero-banner__content {
        padding: 80px 60px;
    }

    .hero-banner {

        min-height: 591px;
    }

    .hero-banner__content h1 {

        font-size: 60px;

    }

    .sedation-card__text {
        margin-right: 50px;
    }

}

@media (max-width: 1600px) {
    .container {
        padding: 0 60px;
    }

    .hero-banner__content h1 {

        font-size: 50px;

    }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {
    .split__text {
        max-width: 500px;
        width: 100%;
    }

    .compare-card-list li {
        font-size: 18px;
        color: #414141;
        font-family: var(--font-heading);
    }




}



@media only screen and (max-width: 1280px) {
    .cta-banner__text {
        max-width: 700px;
    }

    .sedation-card__text {
        margin-right: 30px;
    }


    .compare-cards {
        max-width: 100%;
        width: 100%;
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }


    .compare-section .split {
        flex-wrap: wrap;
    }

    .split__text {
        max-width: 100%;

    }

}

@media only screen and (max-width: 1050px) {
    .cta-banner__portrait {
        position: static;

    }

    .cta-banner {
        flex-direction: column-reverse;
    }

    .section--alt .cta-banner__portrait {
        margin-bottom: 24px;
        margin-right: auto;
    }

    .section--alt .cta-banner__text {
        max-width: 100% !important;
        width: 100%;
    }

}

@media only screen and (max-width: 1280px) {
    .cta-banner__text {
        max-width: 500px !important;
    }

    .cta-banner__portrait {
        margin-bottom: 14px;

    }

}


@media (max-width: 991px) {
    .sedation-card__img {
        width: 100%;
        max-width: 500px;
        /* height: 95px; */
        object-fit: cover;
        border-radius: 12px;
        flex-shrink: 0;
        align-self: start;
    }

    .sedation-card {
        flex-direction: column;
    }

    .sedation-card__btn {
        flex-shrink: 0;
        margin-right: auto;
    }

    .sedation-card__text {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
        margin-right: 90px;
    }

    .bf_section .split__text {
        max-width: 100%;
        width: 100%;
    }

    .sedation-card__text {
        margin-right: 0px;
    }

    .split__media {

        margin-right: auto;
    }

    .split {
        flex-wrap: wrap;
    }

    .bf_section .split,
    .dr_section .split.reverse {
        flex-direction: column-reverse;
    }

    .container {
        padding: 0 30px !important;
    }

    .hero_blk {
        padding: 80px 80px;

    }

}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 481px;
    }

    .hero_blk {
        padding: 70px 50px;
    }

    .container {
        padding: 0 20px !important;
    }

}

@media (max-width: 600px) {
    a.btn.btn-primary {
        /* max-width: 245px; */
        /* width: 100%; */
        text-align: center;
    }

    .btn {
        font-size: 15px;
        padding: 12px 11px;
        max-width: 100%;
        width: 100%;
    }


    .hero_blk {
        padding: 50px 20px;
    }

    .hero h1,
    .section-header h2,
    section.hero h2 {
        font-size: 28px;
    }

    .hero-banner__content h1 {
        font-size: 40px;
    }

    .hero-banner__eyebrow {
        font-size: 20px;

    }

    .hero p {

        font-size: 18px;
    }

    .section-header--left .section-header__eyebrow {
        font-size: 16px;
    }
}