@font-face {
    font-family: 'Rethink Sans';
    src: url("/ResourcePackages/CancerScreen/assets/dist/font/RethinkSans-VariableFont_wght.ttf") format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    src: url("/ResourcePackages/CancerScreen/assets/dist/font/Montserrat-VariableFont_wght.ttf") format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rethink Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 133%;
    color: #424242;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    color: #10438E;
    margin-bottom: 12px;
}

a {
    color: #BA995D;
    text-decoration: none;
}
a.citation {
    color: #10438E;
}

a:hover {
    /* color: #0e2356; */
    color: #C5A975;
}

button {
    /* Remove default highlight */
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

li::marker {
    color: #BA995D;
}

.swiper-button-wrapper {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 30px;
    width: 100%;
    max-width: 1512px;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    padding: 50px 130px;
    margin: 0 auto;
    z-index: 9;
}

.swiper-button-next,
.swiper-button-prev {
    position: relative;
    width: 60px;
    height: 60px;
    left: unset;
    right: unset;
}

.swiper-button-next:after {
    content: '';
    background: url('../images/arrow-right.png') no-repeat;
    background-size: contain !important;
    width: 100%;
    height: 100%;
}

.swiper-button-prev:after {
    content: '';
    background: url('../images/arrow-right.png') no-repeat;
    background-size: contain !important;
    transform: rotate(180deg);
    width: 100%;
    height: 100%;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {opacity: 1;}
.swiper-button-prev.swiper-button-disabled:after {    
    transform: unset;
    background: url('../images/arrow-transparency-left.png') no-repeat;
}
.swiper-button-next.swiper-button-disabled:after {    
    transform: unset;
    transform: rotate(180deg);
    background: url('../images/arrow-transparency-left.png') no-repeat;
}

.desktop-only {display: block;}
.mobile-only, .phone-only {display: none;}


/* Header & Footer (Injected) */
#pcc-header {
    position: relative;
    width: 100%;
    background-color: transparent;
    z-index: 999;
    transition: all 0.3s ease;
}

#pcc-header .pcc-header-container {
    position: relative;
    width: 100%;
}
#pcc-header .pcc-burger {
    display: none;
}
#pcc-header .pcc-header-content {
    width: 100%;
    max-width: 1512px;
    padding: 0 130px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
#pcc-header .pcc-header-content .pcc-logo img {
    padding: 22px 0;
    object-fit: contain;
    max-width: 130px;
}
#pcc-header.sticky {
    position: fixed;
    color: #ffffff;
    background-color: transparent;
    transform: translateY(0);
}
#pcc-header.sticky.hide {
    transform: translateY(-100%);
}
#pcc-header.sticky.white-bg {
    background-color: #ffffff;
    box-shadow: 0 5px 21px rgba(121,119,119,0.1);
}
#pcc-header.sticky.white-bg .pcc-nav a {
    color: #BA995D;
}

/* #pcc-header.sticky .pcc-header-container {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 21px 0 rgba(121, 119, 119, 0.1);
    transition: all 0.3s ease;
} */

#pcc-header .pcc-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
#pcc-header .pcc-nav a {
    color: #ffffff;
    text-decoration: none;
}
#pcc-header .pcc-nav .nav-contact {
    color: #ffffff !important;
    background-color: #BA995D;
    padding: 10px 20px;
    border-radius: 34px;
}
#pcc-header .pcc-nav li {
    position: relative;
}
#pcc-header .pcc-has-submenu {
    display: flex;
    align-items: center;
    margin: 0;
}
/* #pcc-header .pcc-has-submenu::after {
    content: '';
    background: url('../image/has-sub.svg') no-repeat;
    position: absolute;
    display: inline-block;
    width: 17px;
    height: 9px;
    top: 7px;
    right: -27px;
} */

.pcc-submenu-toggle {
    position: relative;
    display: inline-block;
    width: 17px;
    height: 9px;
    top: -9px;
    background: url('../images/has-sub.svg') no-repeat center;
    cursor: pointer;
    margin-left: 8px; 
    transition: transform 0.3s ease;
}
  
.pcc-has-submenu.open > .pcc-submenu-toggle {
    transform: rotate(180deg);
}
#pcc-header .pcc-has-submenu .pcc-submenu {
    display: none;
    position: absolute;
    width: 300px;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 21px 0 rgba(121, 119, 119, 0.2);
    /* transition: all 0.3s; */
}
#pcc-header .pcc-has-submenu .pcc-submenu a {
    display: block;
    padding: 15px 16px;
    color: #424242;
    text-decoration: none;
}

@media (min-width: 769px) {
    #pcc-header .pcc-nav .nav-contact:hover {
        background-color: #E3C992;
    }
    #pcc-header .pcc-has-submenu:hover .pcc-submenu {
        display: block;
    }
    #pcc-header .pcc-has-submenu .pcc-submenu a:hover {
        color: #BA995D;
    }
}

.hover-underline {
    padding: 0 0 20px 0;
}
.hover-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #BA995D;
  bottom: 10px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s linear;
}
.hover-underline:hover::after {
  transform: scaleX(1);
}


#pcc-footer {
    position: relative;
    width: 100%;
    background-color: #0B2A5C;
    color: #fff;
}

#pcc-footer:before {
    content: '';
    background: url('../images/footer-top-edge.png') no-repeat;
    background-size: cover;
    width: 100%;
    height: 130px;
    position: absolute;
    top: -128px;
    left: 0;
    display: block;
}

#pcc-footer .pcc-footer-content {
    max-width: 1512px;
    margin: 0 auto;
    padding: 24px 80px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

#pcc-footer .social-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    gap: 24px;
}
#pcc-footer .social-wrapper a {
    display: block;
    content: '';
    background-size: contain !important;
    width: 45px;
    height: 45px;
}
#pcc-footer .social-wrapper a.social-fb {
    background: url('../images/social-fb.png') no-repeat;
}
#pcc-footer .social-wrapper a.social-ig {
    background: url('../images/social-ig.png') no-repeat;
}
#pcc-footer .social-wrapper a.social-yt {
    background: url('../images/social-yt.png') no-repeat;
}
#pcc-footer .social-wrapper a.social-email {
    background: url('../images/social-email.png') no-repeat;
}
#pcc-footer .social-wrapper a.social-fb:hover {
    background: url('../images/social-fb-hover.png') no-repeat;
}
#pcc-footer .social-wrapper a.social-ig:hover  {
    background: url('../images/social-ig-hover.png') no-repeat;
}
#pcc-footer .social-wrapper a.social-yt:hover  {
    background: url('../images/social-yt-hover.png') no-repeat;
}
#pcc-footer .social-wrapper a.social-email:hover  {
    background: url('../images/social-email-hover.png') no-repeat;
}

#pcc-footer .social-col {
    position: relative;
    width: 100%;
    max-width: 50%;
}

#pcc-footer .social-col h3 {
    color: #ffffff;
    font-size: 40px;
}

#pcc-footer .pcc-footer-menu {
    position: relative;
    width: 100%;
    max-width: 50%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

#pcc-footer .pcc-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#pcc-footer .pcc-footer-list li {
    margin-bottom: 14px;
}

#pcc-footer .pcc-footer-list a {
    color: #fff;
    font-weight: 400;
    font-family: 'Montserrat';
}

#pcc-footer .pcc-footer-list .first-item a {
    font-weight: 700;
}

#pcc-footer .pcc-footer-list a:hover {
    color: #BA995D;
}

#pcc-footer .pcc-footer-log {
    position: relative;
    width: 100%;
    max-width: 1512px;
    padding: 0 80px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}
#pcc-footer .pcc-footer-log img {
    width: 100%;
    max-width: 245px;
}

#pcc-footer .copyright:before {
    content: '';
    width: calc(100% - 70px);
    height: 1px;
    position: absolute;
    top: 15px;
    left: 35px;
    right: 35px;
    display: block;
    border-top: 1px solid #2D4783;
}

#pcc-footer .copyright {
    position: relative;
    width: 100%;
    font-family: 'Rethink Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 125%;
    color: #A9AAF3;
    overflow: hidden;
}

#pcc-footer .copyright-col,
#pcc-footer .policy-col {
    position: relative;
    width: 100%;
    max-width: 50%;
}

#pcc-footer .policy-col {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#pcc-footer .policy-col a {
    color: #A9AAF3;
}

#pcc-footer .policy-col a::after {
    content: '';
    position: relative;
    display: inline;
    border-right: 2px solid #2D4783;
    margin: 0 5px;
}

#pcc-footer .policy-col a:last-child::after {
    content: none;
}

#pcc-footer .policy-col a:hover {
    color: #BA995D;
}

body section {
    position: relative;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    padding: 60px 130px;
    text-align: center;
}

.pcc-blue-section {
    position: relative;
    width: 100%;
    max-width: unset;
    padding: 80px 0;
    background-color: #F2F9FE;
}

.pcc-white-section {
    position: relative;
    width: 100%;
    max-width: unset;
    padding: 80px 0;
    background-color: #ffffff;
}

.img-txt-wrapper {
    position: relative;
    width: 100%;
    max-width: 1512px;
    padding: 0 130px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}
.img-txt-wrapper .img-col,
.img-txt-wrapper .txt-col {
    position: relative;
    width: 100%;
    max-width: 50%;
    text-align: left;
}


@media (max-width: 768px) {
    .desktop-only, .phone-only {display: none;}
    .mobile-only {display: block;}
    .swiper-button-wrapper {
        padding: 0 16px 50px 16px;
        bottom: 50px;
        gap: 16px;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    #pcc-header.sticky.nav-open {
        background-color: #ffffff;
    }
    #pcc-header .pcc-header-content {
        align-items: center;
        padding: 0 16px;
    }
    #pcc-header .pcc-header-content .pcc-logo img {
        padding: 10px 0;
        max-width: 88px;
    }
    .hover-underline::after {
      content: none;
    }
    #pcc-header .pcc-burger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 5px;
        width: 25px;
        height: auto;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        z-index: 1001;
    }
    #pcc-header .pcc-burger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #424242;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    #pcc-header .pcc-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        /* bottom: 0; */
        width: 100%;
        /* height: 100vh; */
        background: #ffffff;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transform: none;
        transition: visibility 0s 0.3s, opacity 0.3s ease;
        padding: 30px 0 0 0;
        margin-top: 62px;
        z-index: 1000;
    }
    #pcc-header .pcc-nav a {
        display: block;
        width: auto;
        color: #BA995D;
    }
    #pcc-header .pcc-nav .nav-contact {
        border-radius: 0;
        text-align: center;
    }
    #pcc-header .pcc-nav li {
        margin: 0 16px;
    }
    #pcc-header .pcc-nav li:last-child,
    #pcc-header .pcc-nav li li {
        margin: 0;
    }
    #pcc-header .pcc-has-submenu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;        
        justify-content: space-between;
        padding-right: 32px;
        margin: 0;
    }
    #pcc-header .pcc-has-submenu > a {
        max-width: calc(100% - 50px);
        flex: 1;
        margin-right: 50px;
    }
    #pcc-header .pcc-submenu-toggle {
        position: absolute;
        width: 34px;
        height: 18px;
        right: 0;
        top: 0;
        margin-left: 0;
        z-index: 10;
    }
    body.no-scroll #pcc-header .pcc-submenu-toggle {
        background: url(../images/has-sub.svg) no-repeat center;
    }
    #pcc-header .pcc-has-submenu.open .pcc-submenu {
        display: block;
    }
    #pcc-header .pcc-has-submenu .pcc-submenu {
        position: relative;
        width: 100%;
        max-width: calc(100% - 50px);
        top: 0;
        box-shadow: unset;
        display: none;
        overflow: hidden;
        margin-right: 50px;
    }
    #pcc-header .pcc-has-submenu.open::after {
        transform: rotate(180deg);
    }
    body.no-scroll {
        overflow: hidden;
    }
    #pcc-header .pcc-nav ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #pcc-header.nav-open .pcc-nav {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
        overflow-y: scroll;
    }
    #pcc-header.nav-open .pcc-burger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #pcc-header.nav-open .pcc-burger span:nth-child(2) {
        opacity: 0;
    }
    #pcc-header.nav-open .pcc-burger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    #pcc-footer:before {
        aspect-ratio: 10 / 1;
        height: auto;
        top: unset;
        bottom: 99.5%;
    }
    #pcc-footer .pcc-footer-content {
        max-width: unset;
        padding: 16px;
        flex-direction: column;
        gap: 24px;
    }
    #pcc-footer .social-col, #pcc-footer .pcc-footer-menu {max-width: unset;}
    #pcc-footer .social-col h3 {
        font-size: 25px;
    }
    #pcc-footer .social-wrapper {
        gap: 15px;
    }
    #pcc-footer .social-wrapper a {
        width: 32px;
        height: 32px;
    }
    #pcc-footer .pcc-footer-menu {
        flex-direction: column;
        gap: 0;
    }
    #pcc-footer .pcc-footer-log {
        padding: 0 16px;
        justify-content: flex-start;
    }
    #pcc-footer .copyright:before {
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
    }
    #pcc-footer .copyright {
        flex-direction: column-reverse;
        gap: 8px;
        padding: 35px 16px;
    }
    #pcc-footer .copyright-col, #pcc-footer .policy-col {
        max-width: unset;
        justify-content: flex-start;
    }
    
    body section {
        padding: 60px 16px;
    }
    .pcc-blue-section {
        padding: 40px 0;
    }
    .img-txt-wrapper {
        gap: 32px;
        padding: 0 16px;
    }
}


@media (max-width: 480px) {
    .phone-only {display: block;}
    .img-txt-wrapper {
        flex-direction: column-reverse;
        gap: 24px;
    }
    .img-txt-wrapper .img-col, .img-txt-wrapper .txt-col {max-width: unset;}
}
