﻿/* overrides */
.tray--hero--video--light-box .light-box-trigger, .player .controls button.playpause-inner.pause .bi-play-circle, .player .controls button.playpause-inner.pause .bi-pause-circle, .player .controls button:not(.pause) .bi-pause-circle, .player .controls button:not(.pause) .bi-play-circle, .player .controls button {
    transition: all 0.1s linear;
}

.tray--hero .text-wrapper, .light-box__content, .light-box {
    transition: all 0.25s linear;
}

.ratio--16-9 {
    position: relative;
    overflow: hidden;
}

    .ratio--16-9:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 56.25%;
        overflow: hidden;
    }

    .ratio--16-9 > .content,
    .ratio--16-9 > img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.ratio--9-16 {
    position: relative;
    overflow: hidden;
}

    .ratio--9-16:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 177.7777777778%;
        overflow: hidden;
    }

    .ratio--9-16 > .content,
    .ratio--9-16 > img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.ratio--4-5 {
    position: relative;
    overflow: hidden;
}

    .ratio--4-5:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 125%;
        overflow: hidden;
    }

    .ratio--4-5 > .content,
    .ratio--4-5 > img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.ratio--4-3 {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

    .ratio--4-3:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 75%;
        overflow: hidden;
    }

    .ratio--4-3 > .content,
    .ratio--4-3 > img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.ratio--1-1 {
    position: relative;
    overflow: hidden;
}

    .ratio--1-1:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 100%;
        overflow: hidden;
    }

    .ratio--1-1 > .content,
    .ratio--1-1 > img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .ratio--1-1 > .content,
    .ratio--1-1 > img {
        width: 104%;
        max-width: unset;
    }

.center-item {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.campaign main {
    padding-top: 0;
}

.campaign footer {
    margin-top: 20px;
}

.filter-toolbar ul li:first-child {
    position: relative;
}

    .filter-toolbar ul li:first-child:after {
        content: "";
        top: -20px;
        right: 0;
        position: absolute;
        display: block;
        width: 1px;
        height: 60px;
        background-color: #0098CF;
    }

header nav.desktop {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
}

    header nav.desktop ul {
        display: none;
        width: auto;
    }

header nav.mobile .menu-list li a.close {
    float: none;
}

header .logo--vert img {
    max-width: 80%;
}

header nav.mobile .menu-wrap ul.menu-list .icon.close img {
    width: 25px;
}

header nav.mobile .menu-wrap ul.menu-list .icon img {
    width: 5px;
}

@media (min-width: 992px) {
    header nav.desktop {
        -webkit-align-items: stretch;
        align-items: stretch;
    }

        header nav.desktop ul {
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: stretch;
            align-items: stretch;
        }

            header nav.desktop ul li {
                display: -webkit-flex;
                display: flex;
                height: 100%;
                -webkit-align-items: center;
                align-items: center;
            }

                header nav.desktop ul li:hover, header nav.desktop ul li:focus {
                    background-color: #edeeee;
                }
}

@media (min-width: 1200px) {
    header nav.desktop {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

        header nav.desktop ul {
            margin-left: auto;
        }

    header .logo--vert {
        position: relative;
    }

        header .logo--vert img {
            max-width: 500px;
            height: unset;
        }
}

.background-image {
    background-size: cover;
    background-position: center;
}

.player {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .player video {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        position: absolute;
        min-width: 100%;
        min-height: 100%;
        z-index: 1;
    }

    .player .controls {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        position: absolute;
        z-index: 2;
    }

        .player .controls button {
            color: #fff;
            border: 0;
            cursor: pointer;
            padding: 0;
            background-color: transparent;
            width: 80px;
            height: 80px;
        }

            .player .controls button svg {
                position: absolute;
                top: 0;
                left: 0;
                width: 80px;
                height: 80px;
            }

            .player .controls button:not(:focus) {
                opacity: 0;
            }

            .player .controls button:focus, .player .controls button.show {
                opacity: 1;
            }

            .player .controls button:hover svg {
                fill: rgba(0, 152, 207, 0.8);
            }

            .player .controls button:not(.pause) .bi-play-circle {
                opacity: 1;
            }

            .player .controls button:not(.pause) .bi-pause-circle {
                opacity: 0;
            }

            .player .controls button.pause .bi-pause-circle {
                opacity: 1;
            }

            .player .controls button.pause .bi-play-circle {
                opacity: 0;
            }

            .player .controls button.playpause-inner.pause .bi-pause-circle {
                opacity: 1;
            }

            .player .controls button.playpause-inner.pause .bi-play-circle {
                opacity: 0;
            }

            .player .controls button.playpause-inner:not(.pause) .bi-play-circle {
                opacity: 1;
            }

            .player .controls button.playpause-inner:not(.pause) .bi-pause-circle {
                opacity: 0;
            }

    .player .yt-controls {
        top: 0;
    }

    .player:hover .controls button {
        opacity: 1;
    }

    .player iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.light-box {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.light-box__content {
    width: 70%;
    margin-top: -30px;
}

.light-box.active {
    opacity: 1;
    pointer-events: auto;
}

    .light-box.active .light-box__content {
        margin-top: 0;
    }

.light-box__cancel {
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    text-align: right;
    margin-bottom: 20px;
}

.tray--hero {
    position: relative;
}

    .tray--hero .text-wrapper {
        position: absolute;
        width: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        text-align: center;
        bottom: 30px;
        color: #00377B;
        text-transform: uppercase;
        z-index: 2;
        pointer-events: none;
        opacity: 1;
    }

        .tray--hero .text-wrapper.has-button-link .button {
            transform: translateY(50%);
            width: auto;
        }

        .tray--hero .text-wrapper.hide {
            opacity: 0;
        }

        .tray--hero .text-wrapper h1,
        .tray--hero .text-wrapper .h1 {
            margin-bottom: 0;
            font-size: 4rem;
            opacity: 0.8;
        }

        .tray--hero .text-wrapper.has-button-link h1,
        .tray--hero .text-wrapper.has-button-link .h1 {
            margin: 0 50px 0 50px;
            font-size: 2rem;
            opacity: 0.8;
        }

        .tray--hero .text-wrapper.color--primary {
            color: #00377B;
        }

        .tray--hero .text-wrapper.color--primary-light {
            color: #0098CF;
        }

        .tray--hero .text-wrapper.color--black {
            color: #000;
        }

        .tray--hero .text-wrapper.color--white {
            color: #fff;
        }

    .tray--hero .ratio--16-9 {
        max-height: 800px;
    }

.tray--hero--video--light-box {
    position: relative;
}

    .tray--hero--video--light-box .light-box-trigger {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        color: #fff;
        border: 0;
        cursor: pointer;
        padding: 0;
        background-color: transparent;
        width: 80px;
        height: 80px;
    }

        .tray--hero--video--light-box .light-box-trigger svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 80px;
            height: 80px;
        }

        .tray--hero--video--light-box .light-box-trigger:hover svg {
            fill: rgba(0, 152, 207, 0.8);
        }

.light-box .tray--hero--video .ratio--16-9 {
    max-height: unset;
}

.light-box .tray--hero--video .player video {
    width: 100px;
    height: 100px;
}

progress[value] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 2.5px;
    color: dodgerblue;
    display: inline;
    height: 5px;
    -webkit-order: 1;
    order: 1;
    position: relative;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

#progress {
    position: absolute;
    bottom: 20px;
    z-index: 1000;
}

    #progress:-webkit-progress-value {
        background-image: linear-gradient(to right, #0098CF, #00377B);
    }

    #progress[value]::-webkit-progress-bar {
        background-color: #fff;
        border-radius: 2.5px;
    }

    #progress[value]::-webkit-progress-value {
        background-image: linear-gradient(to right, #0098CF, #00377B);
        border-radius: 2.5px;
        position: relative;
        -webkit-transition: width 1s linear;
        transition: width 1s linear;
    }

    #progress[value]::-moz-progress-bar {
        background-image: -moz-linear-gradient(to right, #0098CF, #00377B);
        border-radius: 2.5px;
        position: relative;
        -moz-transition: width 1s linear;
        transition: width 1s linear;
    }

@media (min-width: 768px) {
    .tray--hero .text-wrapper h1,
    .tray--hero .text-wrapper .h1 {
        font-size: 8rem;
    }
}

@media (min-width: 992px) {
    .tray--hero .text-wrapper h1,
    .tray--hero .text-wrapper .h1 {
        font-size: 10rem;
    }
}

@media (min-width: 576px) {
    .tray--hero .text-wrapper.has-button-link {
        transform: translate(-50%, -20%) !important;
    }

        .tray--hero .text-wrapper.has-button-link h1,
        .tray--hero .text-wrapper.has-button-link .h1 {
            font-size: 4rem;
        }
}

@media (min-width: 992px) {
    .tray--hero .text-wrapper.has-button-link {
        transform: translate(-50%, -75%) !important;
    }

        .tray--hero .text-wrapper.has-button-link h1,
        .tray--hero .text-wrapper.has-button-link .h1 {
            font-size: 6rem;
        }
}

@media (min-width: 1200px) {
    .tray--hero .text-wrapper.has-button-link h1,
    .tray--hero .text-wrapper.has-button-link .h1 {
        margin: 0 50px;
    }
}

.tray--stories {
    padding: 20px;
}

    .tray--stories .story-cards-wrapper {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

        .tray--stories .story-cards-wrapper .story-card {
            width: 100%;
            margin-bottom: 20px;
            border: 1px solid #0098CF;
        }

            .tray--stories .story-cards-wrapper .story-card .text {
                padding: 20px;
            }

        .tray--stories .story-cards-wrapper .story-card__header {
            font-family: "Overpass", sans-serif;
            text-transform: uppercase;
            font-weight: 700;
            color: #606a70;
            margin-bottom: 5px;
            color: #0098CF;
        }

            .tray--stories .story-cards-wrapper .story-card__header a {
                color: inherit;
            }

        .tray--stories .story-cards-wrapper .story-card h5,
        .tray--stories .story-cards-wrapper .story-card .h5 {
            margin-bottom: 0;
        }

        .tray--stories .story-cards-wrapper .story-card--featured {
            width: 100%;
            max-height: 600px;
            margin-bottom: 20px;
            position: relative;
        }

            .tray--stories .story-cards-wrapper .story-card--featured .ratio--16-9 {
                max-height: 600px;
            }

        .tray--stories .story-cards-wrapper .story-card {
            display: flex;
            flex-direction: column;
        }

        .tray--stories .story-cards-wrapper .story-card--featured .text {
            padding: 20px;
        }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color {
                color: #fff;
            }

                .tray--stories .story-cards-wrapper .story-card--featured .text.background-color a,
                .tray--stories .story-cards-wrapper .story-card--featured .text.background-color h5,
                .tray--stories .story-cards-wrapper .story-card--featured .text.background-color .h5,
                .tray--stories .story-cards-wrapper .story-card--featured .text.background-color .story-card__header {
                    color: inherit !important;
                }

                .tray--stories .story-cards-wrapper .story-card--featured .text.background-color .story-card__header {
                    font-size: 4rem;
                    line-height: 1.2;
                    text-transform: unset;
                    margin-bottom: 20px;
                }

                .tray--stories .story-cards-wrapper .story-card--featured .text.background-color h5,
                .tray--stories .story-cards-wrapper .story-card--featured .text.background-color .h5 {
                    font-size: 2rem;
                }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--primary {
                background-color: #00377B;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--primary-light {
                background-color: #0098CF;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--secondary {
                background-color: #EFAC14;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--black {
                background-color: #000;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--white {
                background-color: #fff;
                color: #000;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--gray--1 {
                background-color: #1B1B1B;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--gray--2 {
                background-color: #333;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--gray--3 {
                background-color: #606A70;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--gray--4 {
                background-color: #DCDDDE;
                color: #000;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text.background-color--gray--5 {
                background-color: #EDEEEE;
                color: #000;
            }

            .tray--stories .story-cards-wrapper .story-card--featured .text a.read-more {
                float: right;
                margin-top: 20px;
                font-family: "Overpass", sans-serif;
            }

@media (min-width: 768px) {
    .tray--stories {
        padding: 40px;
    }

        .tray--stories .story-cards-wrapper {
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
            width: calc(100% + 20px);
            margin-left: -10px;
            -webkit-flex-direction: row;
            flex-direction: row;
        }

            .tray--stories .story-cards-wrapper .story-card {
                width: calc(50% - 20px);
                margin-left: 10px;
                margin-right: 10px;
            }

                .tray--stories .story-cards-wrapper .story-card:last-of-type {
                    width: 100%;
                }

            .tray--stories .story-cards-wrapper .story-card--featured {
                width: 100%;
                max-height: 600px;
            }

                .tray--stories .story-cards-wrapper .story-card--featured .text {
                    position: absolute;
                    z-index: 2;
                    max-width: 500px;
                    width: 50%;
                    padding: 40px;
                }

                    .tray--stories .story-cards-wrapper .story-card--featured .text.background-color .story-card__header {
                        font-size: 6rem;
                        line-height: 1.2;
                        margin-bottom: 20px;
                    }

                    .tray--stories .story-cards-wrapper .story-card--featured .text.top {
                        top: 20px;
                    }

                        .tray--stories .story-cards-wrapper .story-card--featured .text.top.center {
                            left: 50%;
                            -webkit-transform: translateX(-50%);
                            transform: translateX(-50%);
                        }

                    .tray--stories .story-cards-wrapper .story-card--featured .text.left {
                        left: 20px;
                    }

                        .tray--stories .story-cards-wrapper .story-card--featured .text.left.center {
                            top: 50%;
                            -webkit-transform: translateY(-50%);
                            transform: translateY(-50%);
                        }

                    .tray--stories .story-cards-wrapper .story-card--featured .text.bottom {
                        bottom: 20px;
                    }

                        .tray--stories .story-cards-wrapper .story-card--featured .text.bottom.center {
                            left: 50%;
                            -webkit-transform: translateX(-50%);
                            transform: translateX(-50%);
                        }

                    .tray--stories .story-cards-wrapper .story-card--featured .text.right {
                        right: 20px;
                    }

                        .tray--stories .story-cards-wrapper .story-card--featured .text.right.center {
                            top: 50%;
                            -webkit-transform: translateY(-50%);
                            transform: translateY(-50%);
                        }

                    .tray--stories .story-cards-wrapper .story-card--featured .text.center-center {
                        top: 50%;
                        left: 50%;
                        -webkit-transform: translate(-50%, -50%);
                        transform: translate(-50%, -50%);
                    }
}

@media (min-width: 992px) {
    .tray--stories .story-cards-wrapper .story-card {
        width: calc(33.333333% - 20px);
    }

        .tray--stories .story-cards-wrapper .story-card:last-of-type {
            width: calc(33.333333% - 20px);
        }

    .tray--stories .story-cards-wrapper .story-card--featured {
        width: 100%;
        max-height: 600px;
    }

        .tray--stories .story-cards-wrapper .story-card--featured .ratio--16-9 {
            max-height: 600px;
        }

        .tray--stories .story-cards-wrapper .story-card--featured .text.top {
            top: 50px;
        }

        .tray--stories .story-cards-wrapper .story-card--featured .text.left {
            left: 50px;
        }

        .tray--stories .story-cards-wrapper .story-card--featured .text.bottom {
            bottom: 50px;
        }

        .tray--stories .story-cards-wrapper .story-card--featured .text.right {
            right: 50px;
        }
}

.tray--social {
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
}

    .tray--social .social-wrapper {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .tray--social .social-header,
    .tray--social .social-hashtag {
        font-family: "Oswald Regular";
    }

    .tray--social .social-header {
        color: #00377B;
        font-size: 3rem;
        line-height: 1;
        margin-bottom: 20px;
    }

    .tray--social .social-hashtag {
        margin-bottom: 10px;
        font-size: 2rem;
        line-height: 1;
        font-weight: 100;
    }

    .tray--social nav.social-links ul {
        margin: 0;
        padding: 0;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        align-items: center;
    }

        .tray--social nav.social-links ul li {
            margin-right: 15px;
        }

            .tray--social nav.social-links ul li a {
                font-size: 2rem;
                color: #0098CF;
            }

    .tray--social .social-body .button {
        margin-bottom: 30px;
    }

@media (min-width: 768px) {
    .tray--social {
        margin-left: 40px;
        margin-right: 40px;
        padding: 100px;
    }
}

@media (min-width: 992px) {
    .tray--social {
        padding: 100px 200px;
    }

        .tray--social .social-wrapper {
            -webkit-flex-direction: row;
            flex-direction: row;
        }

            .tray--social .social-wrapper .social-header {
                -webkit-flex-shrink: 0;
                flex-shrink: 0;
                width: 33%;
            }

            .tray--social .social-wrapper .social-body {
                margin-left: 100px;
            }

        .tray--social .social-header {
            font-size: 4rem;
        }

        .tray--social .social-hashtag {
            font-size: 3rem;
        }

        .tray--social nav.social-links ul li a {
            font-size: 3rem;
        }
}

.tray--filter .filter-toolbar.desktop li a {
    color: #fff;
    padding: 0 20px;
    background-color: #00377B;
    display: block;
    font-family: "Overpass", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2rem;
    overflow: hidden;
    width: 100%;
    text-decoration: none;
}

.tray--slideshow {
    margin-left: 20px;
    margin-right: 20px;
}

    .tray--slideshow .background-image {
        max-height: 700px;
    }

    .tray--slideshow .bx-viewport {
        position: relative;
    }

    .tray--slideshow .slide-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 30px;
        background-color: rgba(0, 55, 123, 0.5);
        color: #fff;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
    }

        .tray--slideshow .slide-caption p:last-of-type {
            margin-bottom: 0;
        }

        .tray--slideshow .slide-caption.background-color--primary {
            background-color: rgba(0, 55, 123, 0.5);
        }

        .tray--slideshow .slide-caption.background-color--primary-light {
            background-color: rgba(0, 152, 207, 0.5);
        }

        .tray--slideshow .slide-caption.background-color--secondary {
            background-color: rgba(239, 172, 20, 0.5);
        }

        .tray--slideshow .slide-caption.background-color--black {
            background-color: rgba(0, 0, 0, 0.5);
        }

        .tray--slideshow .slide-caption.background-color--white {
            background-color: rgba(255, 255, 255, 0.5);
            color: #000;
        }

    .tray--slideshow .slider {
        margin-left: unset;
        margin-right: unset;
    }

div[class^=col-lg] .tray--slideshow {
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 768px) {
    .tray--slideshow {
        margin-left: 40px;
        margin-right: 40px;
    }
}

.copy table tbody tr:nth-child(2n+1) {
    background: none;
}

.copy table td {
    border: none;
}

.copy a:not(.button) {
    font-weight: bold;
    color: var(--clr-primary);
    text-decoration: underline;
}

.sponsors a:hover {
    text-decoration: none !important;
}

.sponsors a {
    text-decoration: none !important;
}

/*Start changes pulled from markup override*/

.nice-select.open .list {
    overflow-y: auto;
}

form.doctor-search-form label {
    margin-bottom: 0;
}

.find-a-doctor .align-self-end label {
    text-align: right;
}

.nice-select .option:hover {
    font-weight: 800;
}

.doctor-search-form .nice-select.open .list {
    background-color: #fff;
}

.nice-select .list {
    width: calc(100% + 2px);
    margin-top: -4px;
    margin-right: -1px;
    box-shadow: 0 0 0;
    border: solid var(--clr-primary-light);
    border-width: 0 1px 1px 1px;
}

.filter-toolbar .nice-select ul.list li:first-child:after {
    display: none;
}

.sponsors img {
    width: unset;
    height: unset;
}

/* Pulled these styles over from the working live site */
/* Update No. #1 */

.cta-box__image-wrapper {
    flex-wrap: wrap;
    overflow: hidden;
}

.cta-box__button-wrapper {
    display: flex;
    flex-direction: row;
    bottom: 0;
    padding: 40px 50px 40px 50px;
    width: 100%;
}

.cta-box {
    flex: 1;
}

.cta-box__image-wrapper .img-wrapper {
    position: relative;
    z-index: 1;
}

    .cta-box__image-wrapper .img-wrapper img {
        object-fit: cover;
        object-position: center;
        max-width: unset;
        width: 100%;
        height: 100%;
        z-index: 1;
        position: relative;
    }

.cta-box__image-wrapper .cta-box__button-wrapper,
.cta-box.primary .cta-box__button-wrapper {
    padding: 0;
}

.cta-box .dot-pattern-2-wrapper, .cta-box__image-wrapper .dot-pattern-2-wrapper {
    width: 100%;
}

.cta-box__button-wrapper {
    position: relative;
    z-index: 2;
}

.cta-dots {
    position: absolute;
    margin-left: 100%;
    transform: translateX(-40%);
    z-index: 2;
    display: none;
}

.cta-box.primary .cta-box__button-wrapper {
    margin-left: unset;
}

@media (min-width: 540px) {
    .cta-dots {
        display: block;
    }
}

@media (min-width: 768px) {
    .cta-box .dot-pattern-2-wrapper, 
    .cta-box__image-wrapper .dot-pattern-2-wrapper {
        height: 50px;
    }

    .cta-box__button-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-right: 0;
    }

    .cta-box .button, 
    .cta-box__image-wrapper .button {
        margin-right: 50px;
    }
}

@media (min-width: 992px) {
    .cta-box__image-wrapper .cta-box__button-wrapper,
    .cta-box.primary .cta-box__button-wrapper {
        margin: 60px 0 0 0;
    }

    .cta-dots {
        display: block;
    }

    .cta-box__image-wrapper {
        width: 100%;
        min-height: 350px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

        .cta-box__image-wrapper img {
            max-width: 100%;
            height: auto;
            display: block;
        }
}

/* End of - Update No. #1 */

.news-grid {
    display: unset;
    grid-template-columns: unset;
}


/* ================================================ */

header nav.desktop ul li ul {
    z-index: 100;
}

.tray--hero {
    z-index: 0;
}

.copy a:not(.button) {
    font-weight: 800;
}

.header-ad-space img {
    width: auto;
    max-width: 100%;
} 