/* ================================================================
   AAO Congress Page – Bootstrap 5 companion stylesheet
   Figma: B-L | Bausch.com 26 | Node 1056-50657
   ================================================================ */

/*Base / Typography─*/

:root {
    --bl-white: #ffffff;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    background-color: #ffffff;
}

/*Section Headings (Summary, Abstracts) ─*/
.section-heading {
    font-size: 1.5rem; /* ~24px */
    font-weight: 700;
    color: #1b6b7a; /* dark teal from design */
    border-bottom: none;
    margin-bottom: 0.75rem;
}

.body-text {
    font-size: 14px;
    line-height: 1.65;
    color: #1a1a1a;
}

/*Search Field─*/
.search-wrapper {
    position: relative;
    max-width: 320px;
}

.search-input {
    border: 1px solid #c9d0d5;
    border-radius: 4px;
    padding: 0.45rem 2.5rem 0.45rem 0.75rem;
    font-size: 14px;
    color: #555;
    width: 100%;
}

    .search-input::placeholder {
        color: #888;
    }

    .search-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(45, 125, 154, 0.25);
        border-color: #2d7d9a;
    }

.search-btn {
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    width: 40px;
    background: #fff;
    border: none;
    border-left: 1px solid #c9d0d5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 3px 3px 0;
    transition: background 0.15s;
}

    .search-btn:hover {
        background: #f0f7fa;
    }

/*Publication / Abstract List Items */
.pub-item {
    border-bottom: 1px solid #dde3e7;
    padding: 0.85rem 0;
}

    .pub-item:first-child {
        border-top: 1px solid #dde3e7;
    }

/* Expand / collapse button */
.expand-btn {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-color: #2d6a8a; /* blue-teal */
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 3px;
    transition: background 0.15s;
    padding: 0;
}

    .expand-btn:hover {
      /*  background-color: #1b5470;*/
    }

    .expand-btn .expand-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
    }

/* Publication title */
.pub-title {
    font-size: 14px;
    font-weight: 700;
    color: #03838C; /* dark navy */
    text-decoration: none;
}

    .pub-title:hover, .pub-title.hover {
        color: #03838c;
        text-decoration: underline;
    }

/* Authors */
.pub-authors {
    font-size: 13px;
    color: #555;
    margin-top: 2px;
}

/* Right-hand action area */
.pub-actions {
    text-align: right;
    min-width: 200px;
}

/* Download link */
.download-link {
    font-size: 12.5px;
    color: #03838C;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

    .download-link:hover {
        color: #2d7d9a;
    }

/* Product tags */
.product-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1b6b7a;
    border: 1px solid #1b6b7a;
    border-radius: 2px;
    padding: 1px 5px;
    margin-left: 4px;
    white-space: nowrap;
    background-color: #f0f9fb;
}

/* Expanded body text */
.pub-body {
    padding: 0.75rem 0 0.25rem 1.75rem;
    font-size: 14px;
    line-height: 1.65;
    color: #1a1a1a;
}

    .pub-body p {
        margin-bottom: 15px;
    }

        .pub-body p:last-child {
            margin-bottom: 0;
        }

/*Pagination─*/
.pagination-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 0;
}

.pagination-count {
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

.pagination-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.page-num,
.page-arrow {
    font-size: 13px;
    color: #03838C;
    text-decoration: underline;
    padding: 2px 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

    .page-num:hover,
    .page-arrow:hover, .page-num:active, .page-arrow:active {
        color: #03838C !important;
    }


    .page-num.active {
        font-weight: 700;
        text-decoration: none;
        color: #1a1a1a;
        cursor: default;
    }

    .page-arrow.disabled {
        color: #aaa;
        pointer-events: none;
        text-decoration: none;
    }

.page-ellipsis {
    font-size: 13px;
    color: #444;
    padding: 2px 4px;
}

/*Sidebar Cards*/
.sidebar-card {
    border: 1px solid #c9d0d5;
    border-top: 4px solid #336699; /* teal top accent */
    border-radius: 2px;
    padding: 1rem 1.1rem;
}

.event-date {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.event-org {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0.65rem;
}

.event-website-link {
    font-size: 13px;
    color: #03838C;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
}

    .event-website-link:hover {
        color: #2d7d9a;
    }

/* Contact card */
.contact-card {
    border: 1px solid #c9d0d5;
    border-top: 4px solid #336699; /* teal top accent */
}

.contact-link {
    font-size: 13px;
    color: #03838C;
    text-decoration: underline;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

    .contact-link:hover {
        color: #2d7d9a;
    }

/*Responsive adjustments */
@media (max-width: 991px) {
    .pub-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pub-actions {
        text-align: left;
        min-width: unset;
    }

    .search-wrapper {
        max-width: 100%;
    }

    p.cong a {
        position: relative;
    }

    span.caretimg {
        position: absolute;
        top: 28%;
    }
}



/*CTA Section*/
.cta-section {
    background: #f2f9ff;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.cta-heading {
    font-family: 'Interstate', 'Arial Black', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: var(--dark-teal);
    text-align: center;
    margin: 0;
}

.cta-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 1002px;
}

.cta-card {
    background: #fff;
    border: 1px solid #28864f;
    flex: 1 0 314px;
    min-width: 260px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 48px 22px;
    box-sizing: border-box;
}

.cta-card-title {
    font-family: 'Interstate', 'Arial Black', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: var(--dark-teal);
    text-align: center;
    margin: 0;
}

a.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #369;
    color: #fff;
    font-family: 'Interstate', 'Arial Black', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    padding: 11px 16px;
    min-width: 180px;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

    a.cta-btn:hover {
        background: #1e4d7a;
        color: #fff;
        text-decoration: none;
    }

/*Back to Top*/
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--dark-blue);
    color: #fff;
    font-family: 'Interstate', 'Arial Black', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 13px;
    height: 45px;
    width: 66px;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 4px rgba(0,0,0,0.13);
    z-index: 100;
    transition: background 0.15s;
}

    .back-to-top:hover {
        background: #1e4d7a;
    }

@media (max-width: 600px) {
    .cta-cards {
        gap: 16px;
    }

    .cta-card {
        min-width: 100%;
        max-width: 100%;
        padding: 32px 16px;
    }
}

/*eyecare-professional-css*/
/*herobanner css starts for mob/desk*/
@media (min-width:992px) {
    .hc-banner__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        /* flex: 0 0 12%; */
        /* padding: 28px 40px; */
        /* padding-left: 117px; */
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .hc-banner {
        min-height: 360px;
        min-width: 1440px;
    }

    #home-page .green-card-sec {
        width: 1002px;
    }
}

.hc-banner {
    display: inherit !important;
    justify-content: center;
    background: #03838C;
    overflow: hidden;
}

.breadcrumbs-home {
    font-family: "Open Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 40px;
    /* margin-right: 94px; */
}

    .breadcrumbs-home a {
        color: #fff;
        text-underline-offset: 2px;
        text-decoration: underline;
    }

    .breadcrumbs-home span {
        color: #fff;
        text-decoration: none;
    }

.hc-banner h1 {
    color: #fff;
    font-family: 'Interstate';
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 100% */
    letter-spacing: 0.75px;
    /* margin-left: 65px; */
}

    .hc-banner h1::after {
        content: "";
        display: block;
        width: 95px;
        height: 1px;
        background: #fff;
        margin-top: 20px;
    }

.hc-banner__image {
    /* flex: 1; */
    position: relative;
}

    .hc-banner__image::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        left: -543px;
        /* width: 350px; */
    }

    .hc-banner__image img {
        width: 90%;
        height: 100%;
        object-fit: fill;
        display: block;
        float: right;
    }
/*below banner*/
#home-page .explore-txt-sec {
    width: 828px;
    padding: 74px 0;
    text-align: left;
    margin: 0 auto;
}


/* Mobile */
@media (max-width: 991px) {
    .hc-banner__image img {
        width: 100%;
    }

    .breadcrumbs-home {
        display: none;
    }

    .hc-banner {
        flex-direction: column-reverse;
    }

    /* .hc-banner__image {
        height: 150px;
    } */

    .hc-banner__image::before {
        display: none;
    }

    .hc-banner__content {
        flex: unset;
        padding: 32px 19px;
    }

    .hc-banner h1 {
        font-family: 'Interstate';
        font-size: 32px;
        font-style: normal;
        /* font-weight: 700; */
        line-height: normal;
        text-transform: uppercase;
        margin-left: 0px;
        margin-bottom: 0px;
    }

        .hc-banner h1::after {
            margin-top: 16px;
            width: 95px;
            height: 2px;
        }
    /*below banner mob*/
    #home-page .explore-txt-sec {
        padding: 48px 30px;
        width: auto;
        margin-top: -24px;
    }

    .cta-section {
        gap: 26px;
        padding: 38px 30px
    }

    .cta-cards {
        gap: 18px;
    }
}
/*herobanner css ends for mob/desk*/


.professional-cards button.block-level-buttons {
    line-height: 20px;
    padding: 11px 16px;
}

#home-page .homepage-margin {
    margin-top: 0px !important;
}

#home-page .green-card-sec {
    padding: 40px 0 48px;
    margin: 0 auto;
}
/*below green section*/
.discovery-section-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1002px;
    padding: 74px 0;
    margin: 0 auto;
    border-bottom: 1px solid rgba(3, 131, 140, 1);
}

    .discovery-section-wrapper .block.rawhtml.col-lg-4.col-12.col4 {
       /* width: 314px;*/
        padding: 0px !important;
    }

    .discovery-section-wrapper h3 {
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px; /* 127.273% */
        letter-spacing: 0.5px;
    }

    .discovery-section-wrapper a span {
        font-family: 'Interstate';
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        text-decoration-line: underline;
        text-decoration-thickness: 0px;
        text-underline-offset: 1px;
    }

    .discovery-section-wrapper img.img-fluid {
        margin-right: 8px;
    }

   
/*below green section*/
#quote-block {
    padding-top: 120px !important;
    padding-bottom: 74px !important;
}

    #quote-block .block-margin {
        width: 754px !important;
    }

    #quote-block .quote-img {
        left: -75px;
        top: -50px;
    }

    #quote-block .root-quote p {
        line-height: 61px;
        margin-bottom: 0px;
    }

h2#ctaHeading, .cta-section p, p.cta-card-title {
    color: #03838C;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}

.cta-section .cta-card {
    min-width: 270px;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    justify-content: space-between;
    padding: 48px 22px;
}

.green-card-sec .image-size {
    width: 141px;
    height: 141px;
}

.professional-cards {
    display: flex;
    flex-direction: column;
    row-gap: 22px;
    align-items: center;
    width: 314px;
}

    .professional-cards p {
        padding: 0px 36px;
        margin-bottom: 0 !important;
        text-wrap-style: balance;
    }

.first-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

    .first-section:last-child {
        justify-content: center;
        align-items: normal;
        column-gap: 30px;
    }

.text-content {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

@media(max-width:991px) {
    .first-section {
        align-items: center !important;
        flex-direction: column;
        row-gap: 48px;
    }



    .hero-mobile-body h1 {
        line-height: normal;
    }

    .professional-cards {
        width: 100%;
    }

    .text-content h2, .text-content p {
        padding: 0;
        text-align: center;
        text-wrap-style: auto;
    }

    #quote-block {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

        #quote-block .root-quote p {
            width: 278px;
            margin-top: 35px;
            margin-left: 74px;
            font-size: 28px !important;
            line-height: 34px;
            margin-bottom: 0px;
            letter-spacing: 1.2px;
        }

        #quote-block .quote-img {
            left: 26px;
            top: -4px;
            width: 186px !important;
            height: 164px !important;
        }

    h2#ctaHeading {
        width: 315px;
    }

    .cta-section .cta-card {
        min-width: 100%;
        max-width: 100%;
    }

    #home-page .green-card-sec {
        padding: 48px 30px;
    }

    .contentareablock .block-margin {
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .discovery-section-wrapper {
        flex-direction: column;
        max-width: 100%;
        row-gap: 38px;
        padding: 48px 30px;
    }

    .hero-mobile-breadcrumb a {
        font-size: 11px;
    }

    .sidebar-card.contact-card {
        padding: 16px;
    }

    p.event-date.mb-1 {
        margin-bottom: 20px !important;
    }

    .sidebar-card.mb-4, .sidebar-card.contact-card {
        margin-left: 30px;
        margin-right: 30px;
    }

    .gradienBorder {
        margin: 0 30px;
    }
}

/** publicationlandingpage css*/
.col-12.new-product-block {
    background: #FFF;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    border-top: 5px solid;
    max-width: 828px;
    padding: 20px 16px 5px;
    margin: 0px auto 34px ;
    border-image: linear-gradient(90deg, var(--Dark-Teal, #03838C) 0%, var(--Dark-Blue, #336699) 100%) 1;
}

#pulication-banner .row .newproductblock:nth-child(8) .col-12.new-product-block {
    margin-bottom: 40px;
}

@media (max-width: 991px) {

    .col-12.new-product-block {
        padding-bottom: 12px;
    }

    #pulication-banner .row .newproductblock:nth-child(8) .col-12.new-product-block {
        margin-bottom: 30px;
    }
}
 
    .col-12.new-product-block .product-image {
        width: 95%;
    }

.productanchor.padding-15px h2 {
    color: #369;
    font-size: 22px;
    border-bottom: 1px solid #336699;
    display: inline-block;
    line-height: 22px;
}

.new-product-block .row.mt-40px.mb-40px.mx-auto.w-xl-829.px-0.text-start {
    margin: 0 !important;
    max-width: 100%;
}

.new-product-block p.line {
    display: none
}

p.cong a {
    background: #369;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    outline: none;
    position: relative;
    font-family: Interstate;
    padding: 11px 16px;
}

    p.cong a:hover {
        background: #03838C;
    }

p.explore-txt-sec.text a.link-cursor:hover {
    text-decoration: underline;
    color: #03838C;
}

p.cong {
    position: relative;
    border: none;
    margin-top: 34px;
    display: flex;
    margin-top: 34px;
    margin-bottom: 74px;
    justify-content: center;
}

/* p.cong a:after {
        color: #ffffff;
        padding-right: 15px;
        content: ' \25B6';
        margin-left: 15px;
        position: absolute;
        right: 0px;
        top: 28%;
    }*/


.new-product-block .px-0 {
    margin: 0 !important;
}

.new-product-block .order-2.col-md-7.col-lg-7.col-12.ps-lg-3.ps-md-3.px-0 {
    padding-left: 0px !important;
}

.col-md-4.text-md-start.text-center.px-0.px-lg-2.d-none.d-md-block {
    padding-right: 0 !important;
}

p.text {
    word-wrap: break-word;
}

@media (max-width: 991px) {

    .productanchor.padding-15px h2 {
        margin-top: 20px;
        line-height: 28px;
    }

    .new-product-block .order-2.col-md-7.col-lg-7.col-12.ps-lg-3.ps-md-3.px-0 {
        padding-left: 0px !important;
    }

    .new-product-block .product-image {
        width: 100% !important;
        max-height: 100% !important;
        margin-top: 0px !important;
    }

    p.cong {
        margin-top: 26px;
        margin-bottom: 48px;
    }
}

p.explore-txt-sec.text {
    padding-top: 74px;
    max-width: 828px;
    margin: auto;
}

@media(min-width:992px) {
    #pulication-banner p.explore-txt-sec.text {
        margin-top: 40px;
    }

    #pulication-banner .breadcrumbs-home {
        margin-bottom: 0px;
    }
}

.new-product-block .anchor p {
    font-family: Interstate;
    font-size: 15px !important;
    font-weight: 400;
    line-height: 20px !important;
}

.new-product-block li.list-unstyled.pb-2.anchor {
    padding-bottom: 8px !important;
}

.new-product-block a.row.links-margin.link-cursor {
    outline: none;
}

section.cta-section {
    position: relative
}

.row.mx-auto.block-margin.w-xl-1001px.px-md-0 section.cta-section:before {
    content: "";
    background-color: #f2f9ff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    margin-left: -50%;
    transform: translateX(-50%);
    z-index: -1;
}

.row.mx-auto.block-margin.w-xl-1001px.px-md-0 section.cta-section:after {
    content: "";
    background-color: #f2f9ff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    margin-right: -50%;
    transform: translateX(50%);
    z-index: -1;
}

@media(max-width:991px) {
    p.explore-txt-sec.text {
        padding-top: 48px;
    }

    .new-product-block ul.justify-content-center.pb-1 {
        padding-bottom: 0 !important;
        margin-bottom: 0px !important;
    }

    p.cong a {
        width: 260px;
    }

        p.cong a:after {
            top: 32%;
            font-size: 13px;
            padding-right: 25px;
        }
}

/**banner css*/
.w-xl-829px.block-margin.mx-auto.breadcrumb-padding {
    width: auto !important;
    position: relative;
    top: 40px;
    z-index: 9;
    right: 32.2%;
}

.main-banner-sec {
    justify-content: center;
    align-items: center;
    display: flex;
    top: 32px;
    position: relative;
}


@media (min-width:992px) {
    .position-txt {
        margin-left: clamp(150px, 25vw, 19px);
    }
}

.hc-banner {
    justify-content: space-evenly;
}

.hc-banner__image img {
    width: 100%;
}

ul.breadcrumb li, ul.breadcrumb li a {
    color: #fff;
    text-underline-offset: 2px;
    font-size: 11px;
}

    ul.breadcrumb li.hidden-xs.hidden-sm.current-page a {
        color: #fff;
    }

.scrolled ul.breadcrumb,
.scrolled .breadcrumb-padding {
    z-index: 0;
}

@media (max-width:991px) {
    .w-xl-829px.block-margin.mx-auto.breadcrumb-padding {
        left: 17px;
    }

    .cta-section .cta-card {
        gap: 20px;
    }

    .main-banner-sec {
        top: -52px;
    }
}

.page-num {
    display: none;
}

    .page-num.active {
        display: block
    }

/*.page-num:has(+.page-num.active) {
        display: block
    }

    .page-num.active + .page-num {
        display: block
    }*/



/*breadcrumb row*/

@media (min-width:992px) {
    .hc-banner__image {
        /* left: 67px; */
        right: 0px;
    }
}

.hero {
    position: relative;
    height: 468px;
    overflow: hidden;
    width: 100%;
    background: url('/siteassets/img/publications-hero.png') center center / cover no-repeat;
}


/* hero content overlay — spans the full hero, holds Bootstrap container */
.hero-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    pointer-events: none; /* pass clicks through empty areas */
}

    .hero-body > .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        pointer-events: auto;
    }


.hero-breadcrumb-wrap {
    padding-top: 62px;
    max-width: 50%;
}

.bl-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .bl-breadcrumb li {
        display: flex;
        align-items: center;
        color: var(--bl-white);
        font-size: 11px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        text-decoration: none;
        line-height: 1;
        white-space: nowrap;
    }

    .bl-breadcrumb a {
        color: var(--bl-white);
        font-size: 11px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        text-decoration: none;
        border-bottom: 1px solid var(--bl-white);
        line-height: 1;
        white-space: nowrap;
    }

    .bl-breadcrumb .current {
        color: var(--bl-white);
        font-size: 11px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        white-space: nowrap;
        line-height: 1;
    }

    .bl-breadcrumb .chevron {
        color: var(--bl-light-grey);
        font-size: 13px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        letter-spacing: .2px;
        padding: 0 7px;
        line-height: 1;
    }

/* headline row — vertically centred with a slight downward offset to match Figma */
.hero-headline-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    transform: translateY(16px);
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 50%;
}

    .hero-headline h1 {
        color: var(--bl-white);
        font-size: 40px;
        font-weight: 700;
        font-family: 'Open Sans', sans-serif;
        line-height: 40px;
        letter-spacing: .75px;
        text-transform: capitalize;
        margin: 0;
    }

.hero-divider {
    width: 95px;
    height: 2px;
    background-color: var(--bl-white);
    border: none;
    margin: 0;
    opacity: 1;
}
/* Mobile: use mobile-specific hero image */
@media (max-width: 600px) {
    .hero {
        background-image: url('/siteassets/img/publications-hero-mobile.png');
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .hero-mobile {
        background: #03838c;
    }
}

@media (min-width: 992px) {
    .filter-bar {
        display: flex !important;
    }
}



/************Start Footer Desktop************/

footer {
    background: none;
    padding: 0px;
    text-align: left;
    font-size: unset;
    position: relative;
    top: 0px;
}

.footer {
    padding: 48px 0;
    background: #03838c;
    /*margin-top: 10px;*/
    font-family: "Barlow", sans-serif;
    border-top: 0px !important;
}

.footer-desc.copyright p {
    font-size: 10px;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: normal;
    font-weight: 600;
    font-family: "Barlow", sans-serif;
    max-width: 342px;
}

.footer-bl-logo {
    margin-bottom: 20px;
}

footer .footer-links ul {
    list-style-type: none;
}

    footer .footer-links ul:last-child {
        width: auto;
        margin: 0;
        padding: 0px;
    }

footer .socialLink li {
    color: #fff;
    margin-right: 0px;
    list-style-type: none;
    margin-bottom: 0px !important;
}

footer .footer-links ul:first-child li:first-child a {
    background: url("/siteassets/img/icon-link-out-ft.svg") no-repeat right bottom;
    background-size: 12px;
}

footer .footer-links ul li a {
    color: #fff;
    background: url("/siteassets/img/icon-link-out-ft.svg") no-repeat right bottom;
    font-size: 12px;
    padding-right: 15px;
    text-decoration: underline;
    background-size: 12px;
    font-weight: 700;
    font-family: "Barlow", sans-serif;
    display: inline-block;
    line-height: 12px;
    /*text-transform: capitalize;*/
}

footer .footer-links ul li .remove-icon {
    background: inherit !important;
}

footer .footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    padding: 0px;
}

footer .social-link-top {
    border-bottom: 1px solid #35a781;
    padding-bottom: 0px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    padding-left: 0px;
    padding-bottom: 18px;
}

    footer .social-link-top p {
        color: #fff;
        margin-bottom: 0px;
        font-size: 10px;
        font-weight: 600;
        font-family: "Barlow", sans-serif;
        display: flex;
    }

footer .footer-links ul li {
    margin-bottom: 15px !important;
    line-height: 16px;
}

footer .socialLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 0px 0px 15px;
    margin-bottom: 0px;
    border: none;
}

footer ul.socialLink li a {
    cursor: pointer;
}

footer .copyright {
    border: none;
    padding-top: 0px;
    margin-top: 0px;
}

footer .footer-links div {
    padding: 0px;
}

.footer-bl-logo img {
    height: unset;
    width: unset;
}

footer .footer-links ul li.noopener a {
    background: none;
}

ul.socialLink li {
    display: inline-block;
    padding: 0 8px;
}

@media (min-width: 992px) {
    .footer .container {
        padding: 0px 10px;
        max-width: 999px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .footer .container {
        padding: 0px 12px;
    }
}

/**** End Footer Desktop******/

/**** Start Footer Mobile******/
@media screen and (max-width: 991px) {
    footer {
        padding: 0px;
    }

        footer .footer {
            padding: 30px;
        }

            footer .footer .container {
                padding: 0px;
            }

        footer .social-link-top {
            flex-direction: column;
            align-items: start;
            padding-bottom: 28px;
            margin-bottom: 0px;
        }

        footer .footer .footer-links {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            margin-bottom: 0px;
            margin-top: 28px;
        }

        footer .footer-bl-logo {
            margin-bottom: 20px;
        }

        footer .trust-arc-logo {
            margin: 24px 0px;
        }

        footer .footer p {
            font-size: 10px;
            margin-bottom: 10px;
            line-height: normal;
        }

        footer .socialLink {
            padding-left: 0px !important;
            border: none;
        }

            footer .socialLink li {
                margin-bottom: 0px;
                margin-right: 30px;
                padding: 0px;
            }

    .infuse-astigmatism-sec .container,
    .infuse-multifocal-banner-sec .container {
        padding-top: 10px;
    }
}

/**** End Footer Mobile******/

@media (min-width: 992px) {
    .sticky-lg-top {
        padding-top: 0px;
    }
}

@media (min-width: 992px) {
    .w-xl-999px {
        width: 100% !important;
    }
}
/*read summary*/
@media(min-width:992px) {
    .container.mt-74 {
        margin-top: 74px;
        margin-bottom: 74px;
    }

    .col-12.col-lg-8.main-body-section {
        margin-top: 0px;
        padding: 0px;
    }
}

.summary-title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.summary-copy {
    margin-bottom: 34px;
}

.summary-download-btn {
    padding: 11px 16px;
    background: #336699;
    color: #fff;
    width: 180px;
    display: flex;
    margin-bottom: 0px !important;
    justify-content: space-between;
    align-items: center;
}

    .summary-download-btn a span {
        margin-right: 21px;
    }

@media (max-width:991px) {
    .container.mt-74 {
        padding: 48px 30px !important;
    }

    .summary-sidecard {
        max-width: 100% !important;
        margin: 48px 6px 0px !important;
    }

    .block-margin {
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .sec-related-publications .rp-section {
        gap: 26px;
    }

    .sec-related-publications .rp-cards {
        gap: 18px;
    }

    .breadcrumb .breadcrumb-arrow {
        transform: rotate(0deg);
        width: 11px;
        height: 9px;
        top: 1px;
        position: relative;
    }

    .breadcrumb-arrow {
        width: 11px;
        height: 9px;
        transform: rotate(0deg);
    }

    hero-mobile-breadcrumb a {
        font-size: 11px;
    }
}




/***Eye Care Prof Modal***/

#eye-care-prof-modal {
    opacity: 1;
}

    #eye-care-prof-modal .modal-dialog {
        max-width: fit-content
    }

        #eye-care-prof-modal .modal-dialog .modal-content {
            display: flex;
            width: var(--Page-Setup-Columns-8-Columns, 658px);
            flex-direction: column;
            align-items: center;
            border-radius: var(--Page-Setup-Corner-radius-3XS, 4px);
            border: 1px solid var(--Light-grey, #E8E8E8);
            background: var(--White, #FFF);
            box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.13);
        }

            #eye-care-prof-modal .modal-dialog .modal-content .modal-body {
                padding: 0px;
            }

    #eye-care-prof-modal .close-modal {
        display: flex;
        padding: 8px 8px var(--Page-Setup-Padding-XXS, 4px) 8px;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        align-self: stretch;
    }
    /*#eye-care-prof-modal .btn-close{opacity: 0.9;position: absolute;right: 20px;}*/
    #eye-care-prof-modal .btn-modal-close {
        display: flex;
        padding: 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 11.2px;
        aspect-ratio: 1/1;
    }

        #eye-care-prof-modal .btn-modal-close img {
            width: 28px;
            height: 28px;
        }

    #eye-care-prof-modal .lightbox {
        display: flex;
        padding: 16px var(--Page-Setup-Grid-Gutter, 30px) var(--Page-Setup-Padding-XL, 34px) var(--Page-Setup-Grid-Gutter, 30px);
        flex-direction: column;
        align-items: center;
        gap: var(--Page-Setup-Padding-2XL, 40px);
        align-self: stretch;
    }

        #eye-care-prof-modal .lightbox h2 {
            color: var(--Dark-Teal, #03838C);
            text-align: center;
            font-family: var(--Typescale-Header-H2-Font, Interstate);
            font-size: var(--Typescale-Header-H2-Size, 22px);
            font-style: normal;
            font-weight: 700;
            line-height: var(--Typescale-Header-H2-Line-Height, 28px); /* 127.273% */
            letter-spacing: 0.5px;
            width: 80%;
        }

        #eye-care-prof-modal .lightbox .card-style-3 {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            align-self: stretch;
        }

        #eye-care-prof-modal .lightbox h3 {
            color: var(--Dark-Teal, #03838C);
            text-align: center;
            font-family: var(--Typescale-Header-H3-Font, Interstate);
            font-size: var(--Typescale-Header-H3-Size, 18px);
            font-style: normal;
            font-weight: 700;
            line-height: var(--Typescale-Header-H3-Line-height, 25px); /* 138.889% */
        }

        #eye-care-prof-modal .lightbox .buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            align-content: center;
            gap: 22px var(--Page-Setup-Padding-L, 22px);
            align-self: stretch;
            flex-wrap: wrap;
        }

.btn.tertiary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--Page-Setup-Padding-XS, 8px);
    flex: 1 0 0;
    color: var(--Dark-Blue, #369);
    text-align: center;
    font-family: var(--Typescale-Label-Label-1-Font, Interstate);
    font-size: var(--Typescale-Label-Label-1-Size, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Typescale-Label-Label-1-Line-Height, 20px); /* 125% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.btn.primary-btn {
    display: flex;
    min-width: 180px;
    padding: 11px var(--Page-Setup-Padding-M, 16px);
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 0 0;
    background: var(--Dark-Blue, #369);
    color: #FFF;
    text-align: center;
    font-family: var(--Family-Primary, Interstate);
    font-size: var(--Typescale-Label-Label-2-Size, 15px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Typescale-Label-Label-2-Line-Height, 20px); /* 133.333% */
}


.btn.tertiary-btn:hover, .btn.tertiary-btn:active {
    color: #03838c;
    text-decoration: none;
    box-shadow: none;
}

.btn.primary-btn:hover, .btn.primary-btn:active {
    background-color: #03838c;
    box-shadow: none;
}

.links.link-cursor.congress-events-link {
    cursor: pointer;
}

@media (max-width: 991px) {
    #eye-care-prof-modal .modal-dialog {
        max-width: 100%;
    }

        #eye-care-prof-modal .modal-dialog .modal-content {
            width: 317px;
            margin-left: auto;
            margin-right: auto;
        }

    #eye-care-prof-modal .close-modal {
        width: calc(100% - 16px);
    }

    #eye-care-prof-modal .lightbox .card-style-3 {
        min-width: 288px;
    }

    .btn.tertiary-btn {
        font-size: 15px;
        line-height: 22.5px;
    }

    .btn.tertiary-btn, .btn.primary-btn {
        max-width: 202px;
        text-wrap: auto;
    }

    #eye-care-prof-modal .lightbox h2 {
        width: 93%;
    }

    #eye-care-prof-modal .lightbox h3 {
        width: 80%;
    }
}


.explore-txt-sec.intro p {
    padding: 74px 0 48px;
    letter-spacing: 0.2px;
    text-align: center;
}

p.explore-txt-sec.intro {
    padding: 74px 0 0;
    margin-bottom: 0;
}

.pl-page-wrapper {
    padding: 34px 0px 40px;
}


@media (max-width: 991px) {
    explore-txt-sec.intro p {
        padding: 48px 0 38px;
        text-align: left;
    }

    p.explore-txt-sec.intro {
        padding: 48px 0 38px;
        text-align: left;
    }
}

.breadcrumb {
    padding: 0px 0px 2px 0px !important;
}

@media(min-width:992px) {
    #home-page .breadcrumb-padding, #pulication-banner .breadcrumb-padding {
        top: -15px;
    }
}

@media (max-width: 991px) {
    .hero-mobile-image {
        position: relative;
    }

    .breadcrumb {
        background: linear-gradient(180deg, var(--Dark-Slate, #262626) 0%, rgba(38, 38, 38, 0.00) 100%);
        margin-top: 0 !important;
        padding-top: 30px !important;
        position: relative;
        left: -24px;
        padding-left: 19px !important;
    }

    .text-content {
        row-gap: 4px;
    }

    .hero-mobile-breadcrumb {
        position: absolute;
        top: 4px;
        left: 0;
        text-decoration: underline;
        color: white;
        background: linear-gradient(180deg, var(--Dark-Slate, #262626) 0%, rgba(38, 38, 38, 0.00) 100%);
        width: 100%;
        height: 59px;
        padding-top: 15px;
        padding-left: 19px;
    }

        .hero-mobile-breadcrumb span {
            color: #fff !important;
            padding-right: 5px;
        }

    .hero-mobile-body {
        padding: 32px 19px 32px;
    }

        .hero-mobile-body h1 {
            margin-bottom: 16px;
        }

    hr.hero-mobile-divider {
        margin: 0;
        position: relative;
        height: 2px;
        background: #fff;
        width: 95px;
        opacity: 10;
    }

    .active-mob {
        border-left: none;
    }

    a.prof-mobile {
        border-bottom: none !important;
        text-transform: capitalize;
    }

    #professionals.dropdown-menu.dropdown-menu-mob {
        padding-left: 32px !important;
        margin: 0px;
        background-color: #E6F4FE !important;
    }

        #professionals.dropdown-menu.dropdown-menu-mob li a {
            border-bottom: none !important;
            padding-left: 0px !important;
            font-size: 13px !important;
            line-height: 16px;
            padding-top: 15px;
            padding-bottom: 15px;
        }

    #home-page .breadcrumb-padding {
        top: 40px;
    }
}

div#content-container.page-container.container-fluid {
    top: 0 !important;
}

.hc-banner__content .Title-border:before {
    background: transparent !important;
}

@media (min-width:992px) {
    #home-page .homepage-margin {
        margin-top: 32px !important;
    }
}

.congress-card-body h3 p {
    line-height: 22px;
}


.dropdown:hover .nav-arrow-img, .dropdown:focus .nav-arrow-img {
    transform: rotate(180deg);
}

#navbarNavAltMarkup-mob. .navbar-nav .dropdown-content ul li a {
    font-size: 11px !important;
}

#navbarNavAltMarkup-mob .navbar-nav .dropdown-content.professionals-nav {
    left: -15px;
    top: 55px;
}

    #navbarNavAltMarkup-mob .navbar-nav .dropdown-content.professionals-nav ul li a {
        font-size: 15px !important;
        padding: 15px 16px;
        line-height: 20px;
        min-height: 48px;
        height: 52px;
        border: 0px;
        font-weight: 600;
    }

        #navbarNavAltMarkup-mob .navbar-nav .dropdown-content.professionals-nav ul li a:active,
        #navbarNavAltMarkup-mob .navbar-nav .dropdown-content.professionals-nav ul li a.active-cls {
            background: #F1FAF5 !important;
        }

    #navbarNavAltMarkup-mob .navbar-nav .dropdown-content.professionals-nav ul li .h-line {
        border-bottom: 1px solid #dad6d6;
        margin: 0px 16px;
    }

.dropdown:hover .dropdown-content {
    min-width: max-content;
}

.container {
    max-width: 999px;
}


.block.herobanerecpblock .w-xl-829px.block-margin.mx-auto.breadcrumb-padding {
    max-width: 999px;
    margin: auto !important;
    right: inherit !important;
}


span.arrowicon {
    font-size: 13px;
    line-height: 19px;
}


.root-quote {
    z-index: 1;
}

.quote-img {
    opacity: 10
}

.cta-cards a.cta-btn.link-cursor:hover {
    background: #03838C;
}

.hero-headline-wrap {
    transform: translateY(0) !important;
}

.hero-breadcrumb-wrap {
    margin-left: -7px;
}

.hero-headline-wrap {
    margin-left: -7px;
}

.sidebar-card.mb-4 p.event-date.mb-1 span {
    display: block;
}

a.nobg {
    background: none !important;
}

li.list-unstyled.pb-2.anchor .col-1.pe-0 {
    margin-top: -5px;
}


.hc-banner__content {
    max-width: 999px;
    margin: auto;
    display: flex;
    justify-content: center;
    min-height: 360px;
}

.hc-banner__image {
    text-align: right;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #03838C;
    top: 0;
}

.position-txt {
    margin-left: 0;
    max-width: 55%;
}

span.caretimg {
    padding-left: 16px;
}

.hc-banner__image img {
    object-fit: cover;
    max-width: fit-content;
}

.productanchor h2 a {
    position: inherit !important;
    color: #369;
    border-bottom: 1px solid #336699;
}

    .productanchor h2 a:hover {
        color: #03838C !important;
        border-bottom: 1px solid #03838C;
    }

.no-data-found-sec {
    text-align: center;
    display: none;
}

    .no-data-found-sec h2 {
        margin-bottom: 10px !important;
    }

    .no-data-found-sec a {
        color: #369;
        pointer-events: auto;
        text-decoration: underline;
        cursor: pointer;
    }

        .no-data-found-sec a:hover, .no-data-found-sec a:active {
            color: #03838c;
        }


@media (min-width:992px) {
    .sticky-lg-top {
        padding-bottom: 0px;
        border: none;
    }

    .dropdown.professionals-dropdown {
        display: flex;
        height: 55px;
        align-items: center;
    }

    .navbar-nav .right-side {
        width: auto;
        display: flex;
        align-items: center;
    }
}

#globallist {
    top: 55px;
}

span.arrowicon {
    color: var(--bl-light-grey);
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: .2px;
    padding: 0 7px;
    line-height: 1;
}

a.colout-link img {
    width: 14px !important;
    height: 14px !important;
    margin-top: 2px;
}

a.colout-link {
    display: flex;
}

button.expand-btn.visibility-hidden {
    visibility: hidden;
}

.productfriendlyname {
    display: none;
}

ul.breadcrumb li + li:before {
    padding: 0px !important;
    color: #ccc;
    content: "" !important;
}

.gradienBorder {
    background: linear-gradient(90deg, var(--Dark-Teal, #03838C) 0%, var(--Dark-Blue, #369) 100%);
    height: 5px;
}

.sidebar-card.contact-card {
    border: 0 !important;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15) !important;
}

#pulication-banner .hc-banner__image img {
    object-fit: unset;
    height: 360px;
}

#pulication-banner .hc-banner__image {
    height: 360px !important;
}

/***CSS for mid device***/
@media (min-width: 461px) and (max-width: 991px) {
    .block.herobanerecpblock {
        width: 100%;
    }

    .hc-banner__image img {
        height: auto;
        float: unset;
        max-width: 100% !important;
    }

    section.hc-banner, #pulication-banner section.hc-banner {
        min-height: 530px !important;
    }

    .hero-mobile-breadcrumb a {
        color: #FFF;
    }

    .hero-mobile .hero-mobile-image > img {
        width: 100%;
    }

    .hero-mobile {
        background: #03838c;
    }

    .hero-mobile-body h1 {
        color: #FFF;
        max-width: 340px;
    }
}
.btnrequestdownload{background: #369; color: #FFF; font-size: 15px;font-style: normal;font-weight: 700;line-height: 20px;outline: none;position: relative; font-family: Interstate;padding: 11px 30px;
}
.btnrequestdownload:hover{ background: #03838C; }