/* Style.css */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&family=Raleway:wght@400;500;600;700;800;900&display=swap');

:root{
    --maroon-clr: #5A0D38;
    --maroon-clr1: #6D003A;
    --white-clr: #ffffff;
    --grey-clr: #2F2F2F;
    --orange-clr: #FAC562;
    --orange-clr1: #FFC24C;
    --pink-clr: #CE2CD5;
    --pink-clr-alpha: rgba(206,44,213,0.54);
}

/* font style here */
@font-face {
  font-family: 'ArialMTStd-Reg';
  src: url(../fonts/ArialMTStd.otf) format('opentype');
  font-display: swap;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none,;
}

:target {
 scroll-margin-top: 68px;
}

body {
  min-height: 100vh;
  /*font-family: 'Raleway', sans-serif;*/
  font-family: 'Nunito Sans', sans-serif!important;
  padding: 0!important;
  font-size: 17px;
  line-height: 19px;
  color: var(--grey-clr);
  margin-top: 57px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px!important;
}

a:focus {
    outline:auto;
}

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

/*Modal style here*/
.modal * {
    box-sizing: border-box;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,0.9);
    opacity: 0;
    cursor: auto!important;
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
    .modal {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }
}

.modal--confirm .modal-box {
    text-align: center;
}

.modal--noOverlayClose {
    cursor: default;
}

.modal--noClose .modal__close {
    display: none;
}

.modal__close {
    position: fixed;
    top: 2.5rem;
    /*right: 2.5rem;*/
    z-index: 1000;
    padding: 0;
    width: 2rem;
    height: 2rem;
    border: none;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
}

.modal__close svg * {
    fill: currentColor;
}

.modal__closeLabel {
    display: none!important;
}

.modal__close:hover {
    color: #fff;
}

.modal-box {
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 60%;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    will-change: transform, opacity;
}

.modal-box__content {
    padding: 3rem 3rem;
}

.modal-box__footer {
    padding: 1.5rem 2rem;
    width: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #f5f5f5;
    cursor: auto;
}

.modal-box__footer::after {
    display: table;
    clear: both;
    content: "";
}

.modal-box__footer--sticky {
    position: fixed;
    bottom: -200px;
    z-index: 10001;
    opacity: 1;
    transition: bottom .3s ease-in-out .3s;
}

.modal-enabled {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden;
}

.modal--visible .modal-box__footer {
    bottom: 0;
}

.modal--visible {
    visibility: visible;
    opacity: 1;
    overflow-y: scroll;
}

.modal--visible .modal-box {
    -webkit-animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.modal--overflow {
    overflow-y: scroll;
    padding-top: 8vh;
}

.modal-btn {
    display: inline-block;
    margin: 0 .5rem;
    padding: 1rem 2rem;
    border: none;
    background-color: grey;
    box-shadow: none;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    cursor: pointer;
    transition: background-color .4s ease;
}

.modal-btn--primary {
    background-color: #3498db;
}

.modal-btn--danger {
    background-color: #e74c3c;
}

.modal-btn--default {
    background-color: #34495e;
}

.modal-btn--pull-left {
    float: left;
}

.modal-btn--pull-right {
    float: right;
}

span.pink-bracket {
    color: #ff00e2;
}

.modal.cmp-youtubevideo__modalbox.modal--visible {
    z-index: 2000;
    background: rgba(0,0,0,0.8);
    backdrop-filter: none;
}

.cmp-youtubevideo__modalbox .modal-box {
    margin-top: unset;
}

.cmp-youtubevideo__modalbox span.modal__closeIcon {
    top: -40px;
    right: -20px;
}

.cmp-youtubevideo__modalbox .modal-box__content {
    padding: 30px;
}

@media (max-width: 767px) {
    .modal:not(.cmp-youtubevideo__modalbox) {
        top: 0px;
        display: block;
        padding-top: 60px;
        width: 100%;
    }

    .modal-box {
        width: auto;
        border-radius: 0;
    }

    .modal-box__content {
        overflow-y: scroll;
    }

    .modal--noClose {
        top: 0;
    }

    .modal--noOverlayClose {
        padding-top: 0;
    }

    .modal-box__footer .modal-btn {
        display: block;
        float: none;
        margin-bottom: 1rem;
        width: 100%;
    }

    .modal__close {
        top: 0;
        right: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 60px;
        border: none;
        background-color: #2c3e50;
        box-shadow: none;
        color: #fff;
    }

    .modal__closeLabel {
        display: inline-block;
        vertical-align: middle;
        font-size: 1.6rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    }

    .modal__closeIcon {
        display: inline-block;
        margin-right: .8rem;
        width: 1.6rem;
        vertical-align: middle;
        font-size: 0;
    }
}

@-webkit-keyframes scale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.modal.cmp-video__modalbox .modal-box {
    max-width: 50.625rem;
    width: 100%;
    text-align: center;
    /*margin-top: unset;*/
}

button.modal__close {
    max-width: 50.625rem;
    width: 100%;
    position: relative;
    margin-top: auto;
    /*top: 25px;*/
    top: 75px;
    right: 0;
    color: #000;
    height: 0;
    /*padding: 1.5625rem 1.3125rem 0 0;*/
    z-index: 1000;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
}

span.modal__closeIcon {
    width: 36px;
    height: 36px;
    position: absolute;
    /*right: 5px;
    top: -22px;*/
    right: 14px;
    top: 178px;
    background: var(--orange-clr);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__closeIcon svg {
    width: 16px;
}

.modal__close svg * {
    fill: var(--maroon-clr);
}

.cmp-video__modalbox .modal-box__content img.cmp-video__thumbnail {
    display: none;
}

.modal.cmp-video__modalbox .modal-box__content .cmp-video__player {
    background: #D6D6D6;
    border: 1px solid #707070;
    height: 350px!important;
}

.cmp-video__modalbox .modal-box__content {
    padding: 40px;
}

.exit-ramp-modal .modal-box {
    max-width: 1040px;
    width: 90%;
    background: none;
    margin: auto;
}

.exit-ramp-modal .modal-box__content {
    padding: 38px 14px 42px;
    background: var(--maroon-clr);
    color: var(--white-clr);
    border: 7px solid #630039;
    border-radius: 24px;
}

.exit-ramp-title {
    font-size: 24px;
    line-height: 26px;
    font-weight: 900;
}

.exit-ramp-body {
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    margin: 8px 0 21px;
}

.exit-ramp-cancel.close-exit-ramp {
    display: none;
}

a.exit-ramp-continue.skip-exit-ramp {
    color: var(--maroon-clr);
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    background: var(--orange-clr);
    width: 202px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    padding: 14px 35px 16px 39px;
    border: 5px solid var(--orange-clr);
    border-radius: 20px;
    position: relative;
}

a.exit-ramp-continue.skip-exit-ramp:after {
    content: "";
    width: 37px;
    height: 37px;
    position: absolute;
    right: 29px;
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/desktop/chevron-inactive.png) no-repeat;
    background-size: cover;
}

.exit-ramp-modal button.modal__close {
    max-width: 1040px;
    width: 100%;
    top: 25px;
    right: 0px;
}

@media screen and (min-width: 992px){
    .exit-ramp-modal .modal-box__content {
        padding: 45px 45px 25px;
    }

    .exit-ramp-title {
        font-size: 36px;
        line-height: 32px;
    }
    
    .exit-ramp-body {
        font-size: 24px;
        line-height: 32px;
        margin: 18px 0;
    }
    
    a.exit-ramp-continue.skip-exit-ramp {
        width: 254px;
        height: 69px;
        font-size: 24px;
        padding: 13px 40px;
    }
    
    .cmp-youtubevideo__modalbox .modal-box {
        max-width: 850px;
        width: 100%;
    }
    
    .cmp-youtubevideo__modalbox button.modal__close {
        max-width: 850px;
    }
}

@media screen and (max-width: 991px){
    .cmp-youtubevideo__modalbox .modal-box__content {
        padding: 25px;
    }
    
    .cmp-youtubevideo__modalbox .modal-box {
        max-width: 600px;
        width: 96%;
    }
    
    .cmp-youtubevideo__modalbox button.modal__close {
        max-width: 600px;
    }
    
    .cmp-youtubevideo__modalbox span.modal__closeIcon {
        right: -13px;
    }
}

@media screen and (max-width: 767px) {
    .cmp-video__modalbox .modal-box {
        width: 90%!important;
        margin: auto;
    }
    
    .exit-ramp-modal  span.modal__closeIcon {
        right: 17px;
        top: -13px;
    }
    
    .modal.exit-ramp-modal {
        padding-top: 162px;
    }
    
}
/*Modal style ends here*/

/*common class*/
.nowrap {
    white-space: nowrap;
}

.reg {
    font-weight: 400;
}

.semi-bold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.extra-bold {
    font-weight: 800;
}

.orange-clr {
    color: var(--orange-clr);
}

.maroon-clr {
    color: var(--maroon-clr);
}

.white-clr {
  color: var(--white-clr);
}

.bg-grey-clr {
    background: rgba(124,124,124,0.05);
}

sup {
    font-size: 65%;
    position: relative;
    top: -0.4em;
    line-height: 0;
    vertical-align: baseline;
    font-weight:inherit;
}

sub {
    font-size: 65%;
    position: relative;
    bottom: -0.5em;
    line-height: 0;
    vertical-align: baseline;
}

.dragger-symbol {
    /*font-size: 100%;*/
    top: -0.5em;
    font-family: 'ArialMTStd-Reg';
}

.pipe {
    font-size: 66%!important;
}

.arial {
    font-family: 'ArialMTStd-Reg';
}

.head-2 sup {
    font-size: 55%;
    top: -0.5em;
    font-weight:inherit;
}

.fn-symbol {
    margin-left: -5px;
    font-family: 'ArialMTStd-Reg';
}

.fn-symbol > sup {
    top: -0.6em;
}
/* Page style starts here*/

 .aem-Grid:has( > .header-grid-container){
    position: fixed;
    top: 0;
    background: var(--white-clr);
    z-index: 1001;
    width: 100%!important;
}

.cmp-container .cmp-text {
    padding: 0;
    font-family: 'Nunito Sans', sans-serif!important;
}

.cmp-navigation__group > li.cmp-navigation__item > a {
    color: var(--maroon-clr);
    font-weight: 700;
    font-size: 16px;
    line-height: 22px
}

.cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li > a {
    color: var(--grey-clr);
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
}

.cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a .cmp-navigation__item-text:after {
    content: "";
    width: 15px;
    height: 8px;
    display: inline-block;
    position: relative;
    top: -1px;
    left: 2px;
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/global/nav-dropdown.svg) no-repeat;
    background-size: 15px 8px;
}

.cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a:focus .cmp-navigation__item-text:after {
    transform: translateY(-50%) rotate(-180deg);
}

.cmp-navigation__dropdownmenu:has(>li > a.cmp-navigation__item-link:focus) {
    display: block!important;
}

.footer-section {
    /*border: 1px solid red;*/
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/mobile/signoff-shape.png) no-repeat;
    background-size: cover;
    background-position: top;
    padding: 37px 16px 13px 30px;
}

.footer-section > * {
    font-family: 'Nunito Sans', sans-serif!important;
    font-size: 18px;
    line-height: 24px;
    color: var(--white-clr);
    font-weight: 400;
}

.footer-liks .footer-liks--item > a {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-clr);
    display: inline-block;
}

.footer-liks .footer-liks--item > a {
    padding: 6px 0;
}

p.us-flag--txt {
    display: flex;
    line-height: 15px;
    margin: 15px 0;
}

.footer-left {
    font-size: 15px;
    line-height: 17px;
}

.us-flag--txt > img {
    width: 49px;
    height: 26px;
    margin-right: 6.3px;
    margin-top: -1px;
}

.footer-right img {
    width: 180px;
    height: 44px;
    margin-top: 8px;
}

/*Homepage style*/
.home-banner-section {
    min-height: 48.5vw;
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/mobile/home-banner.png) no-repeat;
    background-size: cover;
}

.banner-text-wrap {
    color: var(--white-clr);
    width: 53%;
    float: right;
    margin-top: 3.5%;
}

.banner-head {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 27px;
    line-height: 27px;
    text-shadow: 4px 4px 15px #000000BA;
}

.banner-copy {
    font-size: 10px;
    line-height: 11px;
    margin-top: 4px;
}

.section-one--copy {
    color: var(--maroon-clr);
    margin: 30px 0 41px;
}

.head-2 {
    font-size: 21px;
    line-height: 22px;
    font-weight: 900;
}

.head-3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
}

.quotes {
    font-size: 25px;
    line-height: 27px;
    font-weight: 800;
    text-align: center;
    width: 322px;
    margin: 21px auto 23px;
}

.quotes-author {
    display: block;
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    width: 50%;
    margin: auto;
}

.quotes-txt {
    padding: 21px 0 31px;
    display: inline-block;
    position: relative;
}

.quotes-txt:before {
    content:"";
    width: 59px;
    height: 42px;
    display: inline-block;
    position: absolute;
    /*border: 1px solid red;*/
    top: 0;
    left: -12px;
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/global/left-quote.png) no-repeat;
    background-size: cover;
    z-index: -1;
}

.quotes-txt:after {
    content:"";
    width: 59px;
    height: 42px;
    display: inline-block;
    position: absolute;
    /*border: 1px solid red;*/
    bottom: 10px;
    right: 46px;
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/global/right-quote.png) no-repeat;
    background-size: cover;
    z-index: -1;
}

.callout > p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--maroon-clr);
}

.callout {
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/mobile/home-callout-1.jpg) no-repeat;
    background-size: contain;
    /*padding: 38px 0px 22px 39px;*/
    margin: 4px auto 0;
    position: relative;
    width: 355px;
    height: 200px;
    display: flex;
    align-items: center;
    padding: 0 0 0 40px;
}

.cta {
    color: var(--maroon-clr);
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    background: var(--orange-clr);
    border-radius: 8px;
    width: 100%;
    display: inline-block;
    padding: 17px 20px 16px 23px;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 343px;
    margin: auto;
}

.cta-text {
    width: 85%;
}

.cta > .cta-text:after {
    content: "";
    width: 31px;
    height: 31px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/mobile/chevron-inactive.png) no-repeat;
    background-size: cover;
}

.cta:hover,.cta:focus {
    background: var(--maroon-clr);
    color: var(--white-clr);
    text-decoration: none;
}

.home-cta-1 {
    margin-top: 30px;
}

.divider img {
    height: 19px;
    width: 343px;
    margin: 30px auto;
}

.section-one--reference {
    font-size: 12px;
    line-height: 13px;
}

.section-one--reference > p:not(:last-child) {
    margin-bottom: 9px;
}

.page-nav-wrap{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.page-nav-wrap.home-page-nav {
    align-items: flex-end;
    justify-content: flex-end;
    margin: 40px 0px 20px 0;
}

a.page-nav__link {
    font-weight: 700;
    font-size: 17px;
    line-height: 17px;
    color: var(--maroon-clr);
}

a.page-nav--back-link {
    align-self: flex-start;
}

a.page-nav--fwd-link {
    align-self: flex-end;
    text-align: right;
}

.page-nav-wrap.home-page-nav a.page-nav--fwd-link {
    float: right;
}

.page-nav__link img {
    display: inline-block;    
    margin-left: 6px;
    width: 9px;
    height: auto;
    position: relative;
    top: 2px;
}

img.back-arrow {
    margin-left: 0!important;
    margin-right: 6px;
}

/*Homepage style ends here*/

/**focus style here*/
.cta:hover > .cta-text:after,
.cta:focus > .cta-text:after {
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/mobile/chevron-hover.png) no-repeat;
}

a.cmp-download__action:hover,
a.cmp-download__action:focus{
    color: var(--maroon-clr);
}

.text-accordion > .cmp-accordion > .cmp-accordion__item > .cmp-accordion__header > button:hover,
.text-accordion > .cmp-accordion > .cmp-accordion__item > .cmp-accordion__header > button:focus{
    background-color: var(--orange-clr);
    color: var(--maroon-clr)
}

.text-accordion .cmp-accordion__header > button:hover .cmp-accordion__icon::before,
.text-accordion .cmp-accordion__header > button:focus .cmp-accordion__icon::before{
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/global/accordian-open-hover.svg) no-repeat;
    background-size: cover;
}

.text-accordion > .cmp-accordion > .cmp-accordion__item > .cmp-accordion__header > button.cmp-accordion__button--expanded:hover .cmp-accordion__icon::before,
.text-accordion > .cmp-accordion > .cmp-accordion__item > .cmp-accordion__header > button.cmp-accordion__button--expanded:focus .cmp-accordion__icon::before{
    background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/global/accordian-close-hover.svg) no-repeat;
    background-size: cover;
}
    
@media screen and (min-width: 992px){
    :target {
     scroll-margin-top: 85px;
    }
    
    .mob-only {
        display: none;
    }
    
    body {
        margin-top: 80px;
    }
    
    .az-logo--header img {
        width: 184px;
        height: 45px;
    }
    
    .cmp-navigation__group > li.cmp-navigation__item:first-child> a > span {
        display: none;
    }
    
    .cmp-navigation__group > li.cmp-navigation__item:first-child > a{
        width: 32px;
        height: 35px;
        background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/desktop/home-icon-inactive.svg) no-repeat;
        background-size: cover;
        display: inline-block;
    }
    
    .header-grid-container {
        max-width: 1334px;
        width: 100%!important;
        /*border: 1px solid red;*/
        margin: 0 auto!important;
        float: none!important;
        padding: 15px 0 20px;
    }
    
    .header-grid-container .aem-Grid .az-logo--header {
        max-width: 183px!important;
        width: 15%!important;
    }
    
    .header-grid-container .aem-Grid .navigation {
        max-width: 1100px!important;
        width: 85%!important;
        float: right!important;
        position: relative;
        top: 10px;
    }
    
    ul.cmp-navigation__group {
        align-items: center;
    }
    
    .cmp-navigation__group li.cmp-navigation__item {
        padding: 0;
    }
    
    .cmp-navigation__group > li.cmp-navigation__item > a {
        font-size: 20px;
        line-height: 27px;
        padding: 5px 8px;
    }
    
    .cmp-navigation__group > li.cmp-navigation__item:not(:first-child) > a {
        padding: 5px 8px;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:not(:last-child){
        margin: 0 27px 0 0;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:first-child{
        margin-right: 35px;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:last-child {
        margin: 0;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5):hover > a {
        background: var(--orange-clr);
        border-radius: 8px;
        text-decoration: underline;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu {
        position: absolute;
        padding: 4px 8px 7px 8px;
        background: var(--orange-clr);
        width: 100%;
        border-radius: 0 0 8px 8px;
        /* border: 1px solid; */
        margin-top: -2px;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li {
        width: 85%;
        padding: 6.5px 0;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li > a {
        color: var(--grey-clr);
        font-size: 14px;
        line-height: 16px;
        font-family: 'Raleway', sans-serif;
        font-weight: 400;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li > a.submenu__item--active,
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li > a:focus,
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li > a:hover{
        font-family: 'Nunito Sans', sans-serif;
        font-weight: 700;
        /*line-height: 19px;*/
        letter-spacing: -0.41px;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li:not(:last-child) {
        border-bottom: 0.75px solid var(--grey-clr);
    }
    
    /*.cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a["aria-expanded"="true"]:hover .cmp-navigation__item-text:after, .cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a["aria-expanded"="true"]:focus .cmp-navigation__item-text:after {*/
    /*    transform: rotate(-180deg);*/
    /*}*/
    
    .footer-section {
        background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/desktop/signoff-shape.svg) no-repeat;
        background-size: cover;
        background-position: top;
        padding: 96px 16px 43px 30px;
    }
    
    ul.footer-liks {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    ul.footer-liks > li.footer-liks--item {
        display: inline-block;
    }
    
    ul.footer-liks > li.footer-liks--item > a {
       /* font-size: 30px;
        line-height: 41px;*/
        font-size: 16px!important;
        line-height: 30px;
        padding: 0 20px;
        position: relative;
        display: inline-block;
    }
    
    ul.footer-liks > li.footer-liks--item:not(:last-child) > a:after {
        content: "";
        border-right: 1px solid var(--white-clr);
        position: absolute;
        right: 0;
        width: 1px;
        height: 24px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .footer-bottom-wrapper {
        max-width: 1310px;
        margin: auto;
        position: relative;
    }
    
    p.us-flag--txt {
        margin: 72px 0 7px;
        align-items: flex-end;
    }
    
    .us-flag--txt > img {
        position: relative;
        top: -4px;
        margin-top: 0;
    }
    
    .footer-right a {
        /* width: 373px;
        height: 91px; */
        width: 198px;
        height: 54px;
        position: absolute;
        bottom: 0;
        right: 0;        
    }

     .footer-right img {
        width: 373px;
        height: 91px;   
        margin-top: 0;
        width: 223px;
        height: 54px;
        position: absolute;
        right: 0;
		bottom: 0;
    }
    
    .footer-left {
        line-height: 14px;
    }
    
    /*Home page style starts here*/
    .inner-container {
        max-width: 1040px;
        margin: 0 auto;
    }
    
    .home-banner-section {
        min-height: 44vw;
        background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/desktop/home-banner.png) no-repeat;
        background-size: cover;
    }

    .banner-text-wrap {
        margin-top: 117px;
        max-width: 510px;
    }
    
    .banner-head {
        font-size: 68px;
        line-height: 64px;
    }
    
    .banner-copy {
        font-size: 30px;
        line-height: 41px;
        margin-top: 14px;
    }
    
    .section-one--copy {
        margin: 84px 0 56px;
    }
    
    .home-page .head-2 {
        width: 90%;
    }
    
    .head-2 {
        font-size: 30px;
        line-height: 32px;
    }
    
    .head-3 {
      font-size: 27px;
      line-height: 30px;
    }
    
    .quotes {
        width: 800px;
        font-size: 36px;
        line-height: 40px;
        margin: 37px auto 24px;
    }
    
    .quotes-txt {
        padding: 15px 0;
    }
    
    .quotes-txt:before {
        left: -30px;
        top: 5px;
    }
    
    .quotes-txt:after {
        right: 135px;
        bottom: 14px;
    }
    
    .quotes-author {
        font-size: 20px;
        line-height: 45px;
    }
    
    .callout {
        width: 1054px;
        background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/desktop/home-callout-1.jpg) no-repeat;
        background-size: 100%;
        /*border: 1px solid;*/
        /*padding: 54px 56px 23px 76px;*/
        margin-left: -1.4%;
        height: 145px;
        padding: 0 56px 0 76px;
    }
    
    .callout > p {
        font-size: 22px;
        line-height: 23px;
        margin-top: 28px;
    }
    
    .cta {
        max-width: 810px;
        height: 110px;
        padding: 31px 20px 27px 51px;
        border-radius: 23px;
    }
    
    .cta-text {
        font-size: 22px;
        line-height: 23px;
    }
    
    .cta > .cta-text:after {
        width: 47px;
        height: 46px;
        right: 61px;
        background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/desktop/chevron-inactive.png) no-repeat;
        background-size: cover;
    }
    
    .home-cta-1 {
        margin-top: 50px;
    }
    
    .divider img {
        width: 612px;
        margin: 75px auto 39px;
    }
    
    .section-one--reference > p:not(:last-child) {
        margin-bottom: 9px;
    }
    
    .page-nav-wrap.home-page-nav {
        margin: 50px 0px 42px 0;
    }
    
    a.page-nav__link {
        font-size: 27px;
        line-height: 30px;
    }
    
    .page-nav__link img {
        margin-left: 7px;
        width: 11px;
        height: 17px;
        top: 0;
    } 
    
    .circle-wrap {
        position: relative;
    }
    
    .two-circle-img {
        position: absolute;
        width: 88px;
        top: 74px;
        left: -51px;
    }
    
    .ellipse-img1 {
        width: 77px;
        height: 78px;
    }
    
    .two-circle-img .ellipse-img2{
        float: right;
    }
    
    .ellipse-img2 {
        width: 36px;
        height: 36px;
    }
    
    /*.cta-wrap {*/
    /*    position: relative;*/
    /*}*/
    
    .one-circle-wrap {
        position: absolute;
        right: -76px;
        top: 4px;
    }
    
    .ellipse-img3 {
        width: 56px;
        height: 56px;
    }
    
    .one-circle-bottom-wrap {
        position: absolute;
        top: -35px;
        left: 43px;
    }

    /*Home page style ends here*/
    
    /*Hover and focus styles here*/
    .cmp-navigation__group > li.cmp-navigation__item:not(:first-child) > a:hover,
    .cmp-navigation__group > li.cmp-navigation__item:not(:first-child) > a:focus,
    .cmp-navigation__group > li.cmp-navigation__item.cmp-navigation__item--active:not(:first-child) > a,
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5).show > a{
        background: var(--orange-clr);
        border-radius: 8px;
        text-decoration: underline;
    }
    
    .cmp-navigation__group > li.cmp-navigation__item:first-child > a:hover,
    .cmp-navigation__group > li.cmp-navigation__item:first-child > a:focus,
    .cmp-navigation__group > li.cmp-navigation__item.cmp-navigation__item--active:first-child > a{
        background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/desktop/home-icon.svg) no-repeat;
        background-size: cover;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5).show .cmp-navigation__dropdownmenu,
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a:focus + .cmp-navigation__dropdownmenu{
        display: block;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5).show > a[aria-expanded="true"] .cmp-navigation__item-text:after {
        transform: rotate(-180deg);
    }
    
    /*.cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a:focus + .cmp-navigation__dropdownmenu {*/
    /*    display: block;*/
    /*}*/
    
    .cta:hover > .cta-text:after, .cta:focus > .cta-text:after {
        background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/desktop/chevron-hover.png) no-repeat;
    }

}

@media screen and (min-width: 1400px){
    .header-grid-container .aem-Grid .navigation {
        left: 25px;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li {
        padding: 7.3px 0;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) {
        margin-right: 20px;
    }
}

@media screen and (max-width: 991px){
    .desk-only {
        display: none;
    }

    .cmp-navigation {
        display: none!important;
    }
    
    .hamburger-wrapper {
        display: block;
        width: 57px;
        height: 57px;
        /*border: 1px solid red;*/
        background: var(--maroon-clr);
        position: absolute;
        right: 0;
        top: 0;
    }
    
    .hamburger-wrapper .hamburger-line-top:after {
        content: "MENU";
        color: var(--white-clr);
        border-top: 2px solid var(--white-clr);
        border-bottom: 2px solid var(--white-clr);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 900;
        font-size: 12px;
        line-height: 22px;
    }
    
    .ic-hamburger.open .hamburger-wrapper {
        width: 47px;
        height: 40px;
        cursor: pointer;
        background: var(--white-clr);
        text-align: center;
        right: 14px;
        top: 12px;
    }
    
    .ic-hamburger.open .hamburger-wrapper .hamburger-line-top:after{
        content: "";
        border: none;
        position: static;
        transform: none;
        width: 20px;
        height: 20px;
        background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/mobile/close-menu.svg) no-repeat;
        background-size: cover;
        display: inline-block;
    }
    
    .ic-hamburger.open .hamburger-wrapper span.hamburger.hamburger-top:after {
        content:"Close";
        color: var(--maroon-clr);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        position: absolute;
        bottom: 0px;
        right: 5px;
    }
    
    #header-container > .aem-Grid {
        position: fixed;
        top: 0;
        background: var(--white-clr);
        z-index: 1001;
        width: 100%!important;
    }
    /*.cmp-navigation:has(+ a.ic-hamburger.open) {*/
    /*    display: block;*/
    /*    position: absolute;*/
    /*    top: 57px;*/
    /*    background: var(--white-clr);*/
    /*    z-index: 10;*/
    /*}*/
    
    .navigation-overlay .cmp-navigation{
        display: block!important;
        position: absolute;
        top: 57px;
        background: var(--white-clr);
        z-index: 10;
    }
    
    .navigation-overlay.show {
        height: auto!important;
    }
    
    .header-grid-container {
        height: 57px;
    }
    
    .header-grid-container .aem-Grid > * {
        width: 100%!important;
    }
    
    .az-logo--header img {
        /*border: 1px solid;*/
        width: 156px;
        height: 38px;
        margin: 10px 0 8px 16px;
    }
    
    ul.cmp-navigation__group {
        padding-bottom: 27px;
    }
    
    .cmp-navigation__group > li.cmp-navigation__item {
        width: 100%;
        margin: 0 30px;
        padding: 4px 0;
        border-bottom: 1px solid var(--orange-clr);
    }
    
    .cmp-navigation__group > li.cmp-navigation__item > a {
        width: 100%;
        display: inline-block;
        padding: 4px 10px;
    }
    
     .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li > a {
        width: 100%;
        display: inline-block;
        padding: 5px 20px;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a .cmp-navigation__item-text:after {
        position: absolute;
        top: 50%;
        right: 13px;
        transform: translateY(-50%);
        left: inherit;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a {
        position: relative;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu {
        padding: 0;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li {
        padding: 5px 0;
        margin: 0 2px;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a[aria-expanded="false"] .cmp-navigation__item-text:after{
      transform: translateY(-50%);
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a[aria-expanded="true"] .cmp-navigation__item-text:after{
      transform: translateY(-50%) rotate(-180deg);
    }
    
    .footer-liks .footer-liks--item:not(:last-child) {
        border-bottom: 1px solid var(--white-clr);
        border-color: var(--white-clr)!important;
    }
    
    .footer-section ul.footer-liks {
        margin-right: 14px;
    }
    
    .footer-right {
        float: right;
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li > a.submenu__item--active, 
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) .cmp-navigation__dropdownmenu > li > a:focus {
        font-weight: 700;
        line-height: 19px;
        background: var(--orange-clr);
        border-radius: 9px;
    }
    
    .navigation-overlay .cmp-navigation .cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a {
        /* width: 90%; */
        width: 100%;
        position: static;
    }
    
    .navigation-overlay .cmp-navigation .cmp-navigation__group li.cmp-navigation__item:nth-child(5) {
        /*background: var(--orange-clr);*/
        /*border-radius: 8px; */
        margin: 4px 30px;
        padding: 0;
        position: relative;
    }
    
    button.cmp-navigation__item-btn {
        width: 15px;
        height: 8px;
        display: inline-block;
        position: relative;
        top: -1px;
        left: 2px;
        background: url(/content/dam/intelligentcontent/unbranded/azin-early-lung/us/en/images/global/nav-dropdown.svg) no-repeat;
        background-size: 15px 8px;
        position: absolute;
        top: 12px;
        right: 13px;
        left: inherit;
    }

    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a[aria-expanded="true"] button.cmp-navigation__item-btn {
        transform: rotate(-180deg);
    }
    
    .cmp-navigation__group li.cmp-navigation__item:nth-child(5) > a .cmp-navigation__item-text:after {
        display: none;
    }

    /*Home page style starts here*/
    .inner-container {
        padding: 0 16px;
    }
    
    .home-banner-section .inner-container {
        padding: 0;
    }
    /*Home page style ends here*/
    
    /**focus style here*/
    .cmp-navigation__group > li.cmp-navigation__item > a:focus,
    .cmp-navigation__group > li.cmp-navigation__item.cmp-navigation__item--active > a{
        background: var(--orange-clr);
        border-radius: 8px;
        /*text-decoration: none;*/
    }
    .footer-liks .footer-liks--item:last-child {
        border-bottom: 1px solid var(--white-clr);
        border-color: var(--white-clr) !important;
    }
    
}

@media screen and (max-width: 767px){
    .home-page .section-one--copy .head-2 {
        width: 100.6%;
    }
}

@media screen and (min-width: 371px) and (max-width: 400px){
    .callout {
        /*margin-left: -3%;*/
        position: relative;
        left: -10px;
    }
    
    /*.callout.ds-callout-1 {*/
    /*    margin-left: -17px;*/
    /*}*/
}
