﻿/* =========================================================
   Shared 
   ========================================================= */
:root {
    --brand: #19A0AE;
    --brand-2: #1FBDC9;
    --brand-3: #21BDC9;
    --text: #3c3c3c;
    --text-weak: #3c3c3c;
    --border: #B8C3C6;
    --muted: #E5ECEE;
}

.section {
    padding: 60px 40px;
    margin-bottom: 0;
}

@media (max-width:1024px) {
    .section {
        padding: 50px 30px;
    }
}

@media (max-width:768px) {
    .section {
        padding: 40px 20px;
    }
}

@media (max-width:480px) {
    .section {
        padding: 30px 15px;
    }
}

.tone--light .card-title {
    color: #fff;
}

.tone--light .card-description {
    color: #ccc;
}

.tone--light .card-link {
    color: var(--brand);
}

.tone--light .card-link:hover {
    color: #fff;
}

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

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.card-media {
    position: relative;
    display: block;
    margin-bottom: 24px;
    padding-bottom: 62%;
}

.card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.card-link,
.play-card-link {
    font-family: "Raleway-700", sans-serif;
    font-size: 20px;
    line-height: 1.35;
    color: var(--brand);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link::after {
    content: '→';
    font-size: 18px;
    transition: transform .2s ease;
}

.card-link:hover::after {
    transform: translateX(4px);
}

.card-link:hover {
    color: #000;
}

.play-icon {
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

.play-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
}

.play-link__icon {
    width: 0;
    height: 0;
    border-left: 12px solid currentColor;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@media (max-width:768px) {
    .card-title {
        font-size: 22px;
    }
}

@media (max-width:480px) {
    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 13px;
    }
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    content: "";
    display: block;
    padding-top: 140%;
}

.ratio>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   Hero L1 v2
   ========================================================= */
.hero-l1--v2 .hero-l1__slide {
    min-height: 720px;
    align-items: stretch;
}

.hero-l1--v2 .hero-l1__grid {
    display: flex;
    width: 100%;
    min-height: 100%;
}

.hero-l1--v2 .hero-l1__media {
    width: 68.2%;
    position: relative;
}

.hero-l1--v2 .hero-l1__media-inner {
    width: 100%;
    height: 100%;
}

.hero-l1--v2 .hero-l1__media-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-l1--v2 .hero-l1__slide-image {
    position: static;
    width: auto;
    height: auto;
}

.hero-l1--v2 .hero-l1__slide-content {
    display: none;
}

.hero-l1--v2 .hero-l1__content {
    width: 32.8%;
    background: #fff;
    padding: 96px 45px 120px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Controls & arrows */
.hero-l1--v2 .hero-l1__controls {
    position: absolute;
    left: 105px;
    bottom: 32px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-l1--v2 .hero-l1__arrow svg{
    height: 48px;
    width: 48px;
}

.hero-l1--v2 .hero-l1__arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-l1--v2 .hero-l1__arrow {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    /* flex: 0 0 52px; */
    bottom: 0;
    left: 0;
    background-size: 16px 17px;
}

    .hero-l1--v2 .hero-l1__arrow--prev{
        background-position: left 15px center;
    }

    .hero-l1--v2 .hero-l1__arrow--next{
        background-position: left 18px center;
    }

.hero-l1--v2 .hero-l1__arrow::before {
    /* background: var(--brand) url(../images/hero-l1-slider-arrow-white.svg) center no-repeat; */
    background-size: 18px 17px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    left: 1px;
    top: 1px;
}

.hero-l1--v2 .hero-l1__arrow:hover::before,
.hero-l1--v2 .hero-l1__arrow:focus-visible::before {
    opacity: 1;
}

.hero-l1--v2 .hero-l1__arrow--prev::before {
    background-position: left 13px center;
}

.hero-l1--v2 .hero-l1__arrow--next::before {
    background-position: left 12px center;
}

/* Pause */
.hero-l1 .hero-l1__pause {
    position: absolute;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8C3C6;
    transition: color .2s;
    left: 130px;
}

.hero-l1 .hero-l1__pause::before {
    content: '';
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='2' width='3' height='12' fill='%23B8C3C6'/%3E%3Crect x='9' y='2' width='3' height='12' fill='%23B8C3C6'/%3E%3C/svg%3E");
}

.hero-l1 .hero-l1__pause_v2::before {
    width: 24px;
    height: 24px;
}


.hero-l1 .hero-l1__pause.is-paused::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='4,2 14,8 4,14' fill='%23B8C3C6'/%3E%3C/svg%3E");
}

.hero-l1 .hero-l1__pause:hover::before,
.hero-l1 .hero-l1__pause:focus::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='2' width='3' height='12' fill='%231FBDC9'/%3E%3Crect x='9' y='2' width='3' height='12' fill='%231FBDC9'/%3E%3C/svg%3E");
}


.hero-l1 .hero-l1__pause.is-paused:hover::before,
.hero-l1 .hero-l1__pause.is-paused:focus::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='4,2 14,8 4,14' fill='%231FBDC9'/%3E%3C/svg%3E");
}

/*.hero-l1.hero-l1--paused .donut-front {
    animation-play-state: paused !important;
}*/

.hero-l1 .hero-l1__pause:hover,
.hero-l1 .hero-l1__pause:focus {
    color: #1FBDC9;
    outline: none;
}

@media(max-width:1200px) {
    .hero-l1--v2 .hero-l1__controls {
        left: 50px;
    }
}

@media (max-width:992px) {
    .hero-l1--v2 .hero-l1__grid {
        flex-direction: column;
    }

    .hero-l1--v2 .hero-l1__slide {
        min-height: 0;
        align-items: flex-start;
    }

    .hero-l1 .slick-track {
        display: flex;
        align-items: flex-start;
    }

    .hero-l1--v2 .hero-l1__media {
        width: 100%;
        height: 55vh;
        min-height: 300px;
        order: -1;
    }

    .hero-l1--v2 .hero-l1__arrow--next {
        left: 0 !important;
    }

    .hero-l1--v2 .hero-l1__content {
        width: 100%;
        padding: 148px 20px 56px;
    }

    /* .hero-l1--v2 .hero-l1__arrow {
        position: relative !important;
        width: 52px;
        height: 52px;
    } */

    .hero-l1--v2 .hero-l1__arrow--prev::before {
        left: 0;
        right: auto;
        width: 100%;
        height: 100%;
        background-position: 12px 50%;
    }

    .hero-l1--v2 .hero-l1__arrow--next::before {
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: calc(100% - 15px) 50%;
    }

    .hero-l1--v2 .hero-l1__controls {
        margin: 12px 20px 0;
        justify-content: flex-start;
        bottom: auto;
        top: calc(55vh + 30px);
        left: 0;
    }

    .hero-l1__inner--v2 {
        padding-left: 0px;
    }

    /*
    .hero-l1__arrow--prev {
        left: 0px;
    }*/

    .hero-l1__arrow--prev_v2 {
        left: 0px !important;
    }
}

@media (max-width:768px) {
    .hero-l1--v2 .hero-l1__controls {
        left: 0;
    }
}

@media (max-width:768px) {
     .hero-l1--v2 .hero-l1__inner {
        padding-left: 0px
    }
}

/* =========================================================
   Full Width / Embedded Video Block
   ========================================================= */
.video-block {
    width: 100%;
}

.video-section {
    width: 100%;
}

.content-section {
    padding: 40px 40px 70px;
    text-align: center;
    background: #fff;
}

.main-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 120%;
}

.description {
    font-size: 16px;
    line-height: 150%;
    max-width: 1230px;
    margin: 0 auto 10px;
    font-weight: 400;
}

/* Full-screen */
.video-block--full .video-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-block--full .video-section video,
.video-block--full .video-section iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-block--full .video-section video {
    object-fit: cover;
}

/* Embedded */
.video-block--embedded {
    padding: 40px 0;
    background: #fff;
}

.video-block--embedded .video-section {
    position: relative;
    width: 100%;
    margin: 0 auto 24px;
    height: auto;
}

.video-block--embedded .video-section video {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 16/9;
}

.video-block--embedded .video-section iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border: 0;
}

@media (max-width:768px) {
    .content-section {
        padding: 35px 25px 30px;
    }

    .main-title {
        font-size: 24px;
    }

    .video-block--full .video-section {
        height: 280px;
    }
}

/* =========================================================
   Cards Two Up
   ========================================================= */
.cards-grid-cardsTwoUp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/*.cardsTwoUp--stack .card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 24px;
}*/
/* Side-by-side */
.cardsTwoUp--side .card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.cardsTwoUp--side .card-media {
    flex: 0 0 47%;
    max-width: 47%;
}

.cardsTwoUp--side .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cardsTwoUp--side .card-media .ratio {
    position: relative;
    width: 100%;
}

.cardsTwoUp--side .card-media .ratio::before {
    content: "";
    display: block;
    padding-top: 140%;
}

.cardsTwoUp--side .card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

@media (max-width:1024px) {
    .cards-grid-cardsTwoUp {
        gap: 30px;
    }
}

@media (max-width:768px) {
    .cards-grid-cardsTwoUp {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width:480px) {
    .cards-grid-cardsTwoUp {
        gap: 30px;
    }
}

/* =========================================================
   Cards Three Up
   ========================================================= */
.cards-grid-cardsThreeUp {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.cardsThreeUp--portrait .card-media {
    width: 100%;
    margin-bottom: 24px;
}

.card-image-cardsThreeUp {
    width: 100%;
    height: 259px;
    object-fit: cover;
    margin-bottom: 24px;
}

@media (max-width:1024px) {
    .cards-grid-cardsThreeUp {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width:768px) {
    .cards-grid-cardsThreeUp {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width:480px) {
    .cards-grid-cardsThreeUp {
        gap: 30px;
    }
}

/* =========================================================
   Featured Ping Pong (AFeaturedPingPong)
   ========================================================= */
.fpp {
    position: relative;
}

.fpp__slider {
    position: relative;
    padding-bottom: 30px;
}

.fpp__arrows.fpp-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 0;
    z-index: 10;
    margin-bottom: 70px;
}

.fpp-nav__arrow {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.fpp-nav__arrow .donut {
    width: 48px;
    height: 48px;
}

.fpp-nav__arrow .donut-back {
    stroke: var(--muted);
}

.fpp-nav__arrow .donut-front {
    stroke: var(--brand-3);
    transition: stroke .2s;
}

.fpp-nav__arrow:hover .donut-front {
    stroke: #118e9a;
}

.fpp-nav__arrow.slick-disabled {
    opacity: .4;
    cursor: default;
}

.fpp--dark .fpp-headline,
.fpp--dark .fpp-desc,
.fpp--dark .fpp-stats__item,
.fpp--dark .eyebrow,
.fpp--dark .fpp-stats__description {
    color: #fff !important;
}

.fpp-stats__item {
    flex-basis: 50%;
}

.fpp-card {
    background: var(--card-bg, #fff);
    overflow: hidden;
    display: flex;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.fpp-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.fpp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 30px;
}

.fpp-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    min-height: 630px;
    justify-content: center;
    align-items: flex-start;
}

.fpp-subheading {
    color: #999;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fpp-headline {
    color: var(--text);
    font-size: 36px;
    font-weight: 400;
    line-height: 104%;
    margin-bottom: 30px;
}

.fpp-desc {
    color: #3c3c3c;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 40px;
    font-weight: 400;
}

.fpp-link {
    font-family: "Raleway-700", sans-serif;
    font-size: 20px;
    line-height: 1.35;
    color: var(--brand);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fpp-link::after {
    content: '→';
    font-size: 18px;
    transition: transform .2s ease;
}

.fpp-link:hover::after {
    transform: translateX(4px);
}

@media (max-width:768px) {
    .fpp-card {
        flex-direction: column;
    }

    .fpp-content {
        padding: 40px 30px;
        min-height: 0;
    }

    .fpp__arrows.fpp-nav {
        margin-bottom: 30px;
    }
}

@media (max-width:576px) {
    .fpp-image {
        min-height: 100%;
        padding: 0;
    }
}

.fpp.is-carousel .fpp__viewport {
    overflow: hidden;
}

.fpp__track {
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
}

.fpp__slide {
    min-width: 100%;
    outline: none;
}


.fpp-nav .fpp-nav__arrow {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 16px 17px;
    background-position: left 15px center;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .2s;
}

.fpp-nav .fpp-nav__arrow--prev {
    background-image: url(/images/hero-l1-slider-arrow-grey.svg);
    background-position: left 15px center;
}

.fpp-nav .fpp-nav__arrow--next {
    background-image: url(/images/hero-l1-slider-arrow-aqua.svg);
    background-position: left 18px center;
}

.fpp-nav .fpp-nav__arrow::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 91%;
    height: 91%;
    border-radius: 50%;
    background: var(--brand-3) url(/images/hero-l1-slider-arrow-white.svg) center center no-repeat;
    background-size: 16px 17px;
    opacity: 0;
    transition: all .2s;
}

.fpp-nav .fpp-nav__arrow:hover::before {
    opacity: 1;
    background-color: var(--brand-2);
}

.fpp-nav .fpp-nav__arrow--next::before {
    transform: rotate(180deg);
}

.fpp-nav .fpp-nav__arrow--prev::before {
    background-position: left 13px center !important;
}

.fpp-nav .fpp-nav__arrow.slick-disabled {
    opacity: .4;
    pointer-events: none;
    cursor: default;
}


/* =========================================================
   Ping Pong (Full Width)
   ========================================================= */

.pingpong.pingpon__full-width .pingpong__content-rte{
    flex-basis: 600px;
}

.pingpong.pingpon__full-width .pingpong__inner{
    padding-left: 0;
}

.pingpong.pingpong--reverse.pingpon__full-width .pingpong__inner{
    padding-right: 0;
}

@media (max-width:1200px) {
    .pingpong.pingpon__full-width .pingpong__inner {
        padding-left: 0;
    }

    .pingpong.pingpong--reverse.pingpon__full-width .pingpong__inner {
        padding-right: 0;
    }
}


