.carousel-nav {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #C4CFCD;
    border-bottom: 1px solid #C4CFCD;
    box-shadow: 4px 4px 5px 0px #0000000D;
    position: relative;
    z-index: 1;
}
.carousel-nav .disable{
    pointer-events: none;
    opacity:.5;
}
.carousel-nav .nav-items ul.nav-items-list {
    display: inline-flex;
    gap: 16px;
    overflow-x: scroll;
    width: 100%;
    position: relative;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
}
.carousel-nav .nav-items ul.nav-items-list li a {
    border: 1px solid #C4CFCD;
    border-radius: 80px;
    background-color: #F5F7F7;
    color: #003864;
    font-size: 18px;
    line-height: 27px;
    padding: 12px 20px;
    display: inline-block;
    white-space: nowrap;
        text-decoration: none;
}
.carousel-nav .nav-items ul.nav-items-list li a.active {
    border: 2px #003864 solid !important;
    font-weight: 700;
    background: #fff !important;
}
.carousel-nav .nav-items {
    overflow-x: hidden;
    padding: 0 1px 0 0;
    display: flex;
    align-items: center;
}

.carousel-nav .nav-items span.jump-text {
    white-space: nowrap;
    padding: 0 8px 0 24px;
    font-size: 13px;
    line-height: 21px;
}

.carousel-nav .prev-arrow,
.carousel-nav .next-arrow {
    max-width: 86px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background: white;
    position: relative;
}
.carousel-nav .prev-arrow img,
.carousel-nav .next-arrow img{
    display: none;
}
.carousel-nav .next-arrow:after {
    content: "\f054";
    font-family: 'Font Awesome';
    font-size: 19px;
    /* transform: rotate(90deg); */
    text-shadow: 12px 1px 4px #fff;
    font-weight: 200;
    -webkit-text-stroke: 1px white;
    color:#003864;
}
.carousel-nav .prev-arrow:after {
    content: "\f053";
    font-family: 'Font Awesome';
    font-size: 19px;
    /* transform: rotate(90deg); */
    text-shadow: 12px 1px 4px #fff;
    font-weight: 200;
    -webkit-text-stroke: 1px white;
    color:#003864;
    
}

.carousel-nav .prev-arrow {
    border-right: 1px solid #C4CFCD;
}

.carousel-nav .next-arrow {
    border-left: 1px solid #C4CFCD;
}

.carousel-nav .nav-items ul.nav-items-list li a:hover {
    border-color: #003864;
     text-decoration: underline;
}

.carousel-nav .next-arrow img {
    transform: rotate(180deg);
}

.carousel-nav .nav-items ul.nav-items-list::-webkit-scrollbar {
    display: none;
}

.text:has(.carousel-nav) {
    position: sticky;
    top: 68px;
    background-color: white;
    z-index: 10;
}

@media screen and (max-width : 1024px) {

    #banner-section {
        background-image: url(/content/dam/intelligentcontent/unbranded/ic-precisionmed-hcp/us/en/images/mobile/lung-cancer/lung-cancer-banner.jpg);
    }

    .carousel-nav .prev-arrow,
    .carousel-nav .next-arrow {
        padding: 0;
        max-width: 40px;
        border: none;
    }

    .carousel-nav {
        padding: 20px 0;
    }

    .carousel-nav .nav-items span.jump-text {
        position: absolute;
        top: 20px;
        left: 0;
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        color: #3C4242;
    }

    .carousel-nav>* {
        margin-top: 43px;
    }

    .carousel-nav .nav-items ul.nav-items-list li a {
        font-size: 14px;
        line-height: 18px;
    }

    .carousel-nav .nav-items ul.nav-items-list {
        gap: 8px;
    }

    .text:has(.carousel-nav) {
        top: 60px;
    }
}