﻿:root {
    font-size: 62.5%;
    --color-green: #7F9333;
    --color-yellow: #FFE1A2;
    --color-orange: #EB8200;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.6rem;
}
h1, h2, h3, h4, p {
    margin: 0 0 15px 0;
    line-height: 1.3;
    color: #000;
}
h2 {
    font-size: 2.6rem;
}
h3 {
    font-size: 2rem;
}
p {
    font-size: 1.6rem;
    line-height: 1.5;
}
a:not(.btn, .btn-w-svg) {
    color: #000;
}
a:not(.btn, .btn-w-svg):hover,
a:not(.btn, .btn-w-svg):focus {
    text-decoration: transparent;
}
.btn,
a.btn:link,
a.btn:active,
a.btn:visited {
    display: inline-block;
    background-color: #AAB400;
    border: 2px solid #AAB400;
    text-decoration: none;
    font-weight: 600;
    color: #FFF;
    padding: 10px 20px;
    margin: 20px 0 0 0;
    transition: all .25s;
}
a.btn:hover,
a.btn:focus-visible,
.btn:hover,
.btn:focus-visible {
    background-color: #FFF;
    color: #AAB400;
}
a.btn-w-svg:link,
a.btn-w-svg:visited,
a.btn-w-svg:active {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.btn-w-svg svg {
    fill: #FFF;
    transition: all .25s;
}
.btn-w-svg .external {
    width: 9px;
    height: 9px;
}
.btn-w-svg .pdf {
    width: 18px;
    height: 24px;
}
.btn-w-svg:hover svg,
.btn-w-svg:focus-visible svg {
    fill: var(--color-green);
}

.u-mt-md {
    margin-top: 60px;
}
.u-py-md {
    padding: 60px 0;
}
.bg-dark * {
    color: #FFF;
}
.bg-dark a:not(.btn):link,
.bg-dark a:not(.btn):active,
.bg-dark a:not(.btn):visited {
    color: #FFF;
}
.bg-dark a:hover,
.bg-dark a:focus-visible {
    text-decoration: none;
}
.bg-yellow {
    background-color: var(--color-yellow);
}

.flexed-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flexed-row .flexed-item--text {
    flex-basis: 45%;
    flex-shrink: 0;
    flex-grow: 0;
}
.flexed-row .flexed-item--image,
.flexed-row .flexed-item--video {
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: auto;
    margin-left: 0;
    width: 100%;
}
.flexed-row--reversed {
    flex-direction: row-reverse;
}
.flexed-row--reversed .flexed-item--image,
.flexed-row--reversed .flexed-item--video {
    margin-left: auto;
    margin-right: 0;
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
}

.hidden-mb {
    display: block;
}
.hidden-dk {
    display: none;
}

.has-col-3 h3 {
    margin: 15px 0 0 0;
}
.has-col-3 a.btn {
    margin: 15px 0 0 0 !important;
}
.has-col-3 a:not(.btn,.btn-w-svg) {
    color: #000;
    transition: all .25s;
}
.has-col-3 a:not(.btn,.btn-w-svg):hover,
.has-col-3 a:not(.btn,.btn-w-svg):focus-visible {
    text-decoration: transparent;
}

/*
    MARKETING BANNER
*/
.mktb-standard {
    position: relative;
    height: 400px;
}
.mktb-standard .container {
    position: relative;
    z-index: 2;
    height: 100%;
}
.mktb-standard .row {
    height: 100%;
    display: flex;
    align-items: center;
}
.mktb-standard .mktbs-call-out {
    width: 40%;
    background-color: rgba(255, 255, 255, 0.90);
    padding: 20px;
    border-bottom: 5px solid var(--color-green);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
.mktb-standard .mktbs-call-out .mktbs-title {
    color: #000;
    font-size: 26px;
    line-height: 31px;
    font-weight: bold;
    margin: 0 0 20px;
    display: block;
}
.mktb-standard .mktbs-call-out p {
    color: #000;
    margin: 0 0 20px;
    font-size: 1.6rem;
    line-height: 23px;
}

.mktb-standard--video video {
    position: absolute;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.mktb-background {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}
.mktb-background .mktb-bk,
.mktb-background .mktb-mobile-bk {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
.mktb-background .mktb-mobile-bk {
    display: none;
}

#in-page-nav + section {
    padding: 120px 0 60px;
    margin: -60px 0 0 0;
}

.video-container {
    display: grid;
    grid-template-columns: .75fr 1fr;
    grid-template-rows: min-content 1fr;
    column-gap: 40px;
}
.video-container .video-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.video-container .video-title h2 {
    display: inline-block;
    margin: 0;
}
.video-container .video-desc p {
    margin: 0;
}
.video-wrapper {
    grid-row: 2 / 3;
    grid-column: 1 / -1;
    margin: 20px 0 0 0;
}
.video-wrapper iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
}

.page-content {
    padding-bottom: 0;
}
footer {
    padding-top: 0px;
}

@media only screen and (min-width: 992px) {
    .page-content {
        padding-top: 121px;
    }
}
@media only screen and (max-width: 992px) {
    .btn,
    a.btn:link,
    a.btn:active,
    a.btn:visited {
        /*display: block;*/
        text-align: center;
        margin: 35px 0 0 0;
    }
    /*a.btn-w-svg:link,
    a.btn-w-svg:visited,
    a.btn-w-svg:active {
        display: flex;
        justify-content: center;
    }*/

    .hidden-mb {
        display: none;
    }
    .hidden-dk {
        display: block;
    }

    .flexed-row {
        flex-direction: column;
    }
    .flexed-row .flexed-item--image,
    .flexed-row .flexed-item--video {
        margin-bottom: 15px;
        margin-right: 0;
        margin-left: 0;
    }

    .mktb-standard {
        height: 500px;
    }
    .mktb-standard .row {
        align-items: flex-end;
    }
    .mktb-standard .mktbs-call-out {
        background-color: #FFF;
        width: 100%;
        margin: 0 15px;
    }
    .mktb-standard--video video {
        height: 90%;
    }

    #in-page-nav + section {
        padding: 120px 0 40px;
    }

    .video-container .video-title {
        grid-row: 1 / 2;
        grid-column: 1 / -1;
    }
    .video-container .video-wrapper {
        margin: 20px 0;
    }
    .video-container .video-desc {
        grid-column: 1 / -1;
        grid-row: 3 / 4;
    }

    .has-col-3 .col-md-4 + .col-md-4 {
        margin: 60px 0 0 0;
    }

    .flexed-row--reversed .flexed-item--image,
    .flexed-row--reversed .flexed-item--video {
        margin-bottom: 15px;
        margin-right: 0;
        margin-left: 0;
    }
}
@media only screen and (max-width: 768px) {
    .mktb-background .mktb-bk {
        display: none;
    }
    .mktb-background .mktb-mobile-bk {
        display: block;
        height: 90%;
    }
}