/* GENERAL */

html {
  scroll-behavior: smooth;
}

.grecaptcha-badge {
	display: none;
}

.text-shadow {
  text-shadow: 0px 0px 10px rgba(0,0,0,.25);
}

.text-shadow-dark {
  text-shadow: 0px 0px 10px rgba(0,0,0,1);
}

.box-shadow {
	box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.box-shadow-dark {
	box-shadow: 0px 10px 20px rgba(0,0,0,.15);
}

.filter-none {
    -webkit-filter: none !important;
    filter: none !important;
}

.svg-shadow {
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
}

.shadow-hover:hover {
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
    transition: all .3s ease;
}

.image-overlay-25 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.25);
}

.image-overlay-50 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}

.image-overlay-75 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75);
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    padding: 1rem 1.5rem;
    color: #FFFFFF;
}

.lazyload {
	opacity: 0;
}

.lazyloading {
	opacity: 1;
	transition: opacity 300ms;
}

img.lazyload:not([src]) {
	visibility: hidden;
}

.no-hover {
	color: inherit;
}

.no-hover:hover {
	text-decoration: none;
	color: inherit;
}

.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.bg-contain {
    -webkit-background-size: contain !important;
    -moz-background-size: contain !important;
    -o-background-size: contain !important;
    background-size: contain !important;
}

.bg-ob-cover {
    -webkit-object-fit: cover !important;
    -moz-object-fit: cover !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.bg-blue-banner {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)), url('/assets/img/content/blue-banner.jpg') center center no-repeat;
}

.bg-red-bubble {
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)), url('/assets/img/content/red-dot-bubble.svg') center center no-repeat;
}

.bg-red-bubble-faded {
    background: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)), url('/assets/img/content/red-dot-bubble.svg') center center no-repeat;
}

.bg-favicon-faded {
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)), url('/assets/img/logos/favicon-faded.svg') center center no-repeat;
}

.bg-column {
    min-height: 540px;
}

@media (max-width: 991.98px) {
    .bg-column {
        min-height: 540px;
    }
}

@media (max-width: 767.98px) {
    .bg-column {
        min-height: 405px;
    }
}

@media (max-width: 575.98px) {
    .bg-column {
        min-height: 270px;
    }
}

.bg-banner {
    position: relative;
    padding: 7rem 0;
}

@media (max-width: 1199.98px) {
    .bg-banner {
        padding: 6rem 0;
    }
}

@media (max-width: 991.98px) {
    .bg-banner {
        padding: 5rem 0;
    }
}

@media (max-width: 767.98px) {
    .bg-banner {
        padding: 4rem 0;
    }
}

@media (max-width: 575.98px) {
    .bg-banner {
        padding: 3rem 0;
    }
}

.bg-banner-overlay {
    background: linear-gradient(rgba(0,0,0,.54), rgba(0,0,0,.54));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.bg-banner-overlay.dark {
    background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85));
}

.favicon-circle {
    display: inline-block;
    background: #FFFFFF;
    border-radius: 100%;
    padding: 3rem;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.favicon-circle img {
    width: 80px;
    height: 80px;
}

@media (max-width: 767.98px) {
    .favicon-circle {
        padding: 1.5rem;
    }

    .favicon-circle img {
        width: 40px;
        height: 40px;
    }
}

.hero-arrow {
    width: 200px;
    position: absolute;
    z-index: 2;
    margin: auto;
    top: -4.2rem;
    left: 0;
    right: 0;
}

.badge {
    border-radius: 0;
    text-transform: uppercase;
}

.badge-trans {
    color: #000000;
    background: rgba(255,255,255,.75);
}

.rounded-xl {
    border-radius: 30px !important;
}

blockquote {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #DE2B2B;
}

@media (max-width: 1199.98px) {
    .tooltip {
        display: none;
    }
}

.divided-text {
    overflow: hidden;
    text-align: center;
}

.divided-text:before,
.divided-text:after {
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.divided-text:before {
    right: 15px;
    margin-left: -50%;
}

.divided-text:after {
    left: 15px;
    margin-right: -50%;
}

.divided-text.faded:before,
.divided-text.faded:after {
    background-color: rgba(255,255,255,.1);
}

.divided-text.white:before,
.divided-text.white:after {
    background-color: #FFFFFF;
}

.divided-text.grey:before,
.divided-text.grey:after {
    background-color: #DBDBDB;
}

.divided-text.lgrey:before,
.divided-text.lgrey:after {
    background-color: #DEE2E6;
}

.divided-text.muted:before,
.divided-text.muted:after {
    background-color: #6C757D;
}

.divided-text.yellow:before,
.divided-text.yellow:after {
    background-color: #FFC107;
}

.divided-text.danger:before,
.divided-text.danger:after {
    background-color: #DC3545;
}

.divided-text:before,
.divided-text:after {
    background-color: #000;
}

.divided-text-left {
    overflow: hidden;
}

.divided-text-left:after {
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 100%;
}

.divided-text-left:after {
    left: 15px;
    margin-right: -100%;
}

.divided-text-left:after {
    background-color: #000000;
}

.divided-text-left.lgrey:after {
    background-color: #DEE2E6;
}


/* PADDING/MARGIN */

.mt-10px {
    margin-top: 10px;
}

.mt-15px {
    margin-top: 15px;
}

.mt-30px {
    margin-top: 30px;
}

.mt-33px {
    margin-top: 33px;
}

.mb-10px {
    margin-bottom: 10px;
}

.mb-15px {
    margin-bottom: 15px;
}

.mb-18px {
    margin-bottom: 18px;
}

.mb-20px {
    margin-bottom: 20px;
}

.mb-30px {
    margin-bottom: 30px;
}

.mb-33px {
    margin-bottom: 33px;
}

.mb-38px {
    margin-bottom: 38px;
}

.my-15px {
    margin-top: 15px;
    margin-bottom: 15px;
}

.my-30px {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mx-15px {
    margin-left: 15px;
    margin-right: 15px;
}

.mx-n15px {
    margin-left: -15px;
    margin-right: -15px;
}

.px-15px {
    padding-left: 15px;
    padding-right: 15px;
}

.py-15px {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-30px {
    padding-top: 30px;
    padding-bottom: 30px;
}

.py-33px {
    padding-top: 33px;
    padding-bottom: 33px;
}

.pt-10px {
    padding-top: 10px;
}

.pt-15px {
    padding-top: 15px;
}

.pt-33px {
    padding-top: 33px;
}

.pt-38px {
    padding-top: 38px;
}

.pb-18px {
    padding-bottom: 18px;
}

.pb-33px {
    padding-bottom: 33px;
}

.pb-38px {
    padding-bottom: 38px;
}

.row-15px {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row-15px [class*=col-],
.row-15px [class*=col] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row-small {
    justify-content: center;
}

.row-small>.col-12,
.row-small>.col-xl-12 {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

@media (min-width: 576px) {
    .row-small>.col-12,
    .row-small>.col-xl-12 {
        -ms-flex: 0 0 91.666667% !important;
        flex: 0 0 91.666667% !important;
        max-width: 91.666667% !important;
    }
}

@media (min-width: 768px) {
    .row-small>.col-12,
    .row-small>.col-xl-12 {
        -ms-flex: 0 0 83.333333% !important;
        flex: 0 0 83.333333% !important;
        max-width: 83.333333% !important;
    }
}

@media (min-width: 992px) {
    .row-small>.col-12,
    .row-small>.col-xl-12 {
        -ms-flex: 0 0 75% !important;
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }
}

@media (min-width: 1200px) {
    .row-small>.col-12,
    .row-small>.col-xl-12 {
        -ms-flex: 0 0 66.666667% !important;
        flex: 0 0 66.666667% !important;
        max-width: 66.666667% !important;
    }
}

.col-5ths {
    -ms-flex: 0 0 20% !important;
    flex: 0 0 20% !important;
    max-width: 0 0 20% !important;
}

.col-7ths {
    -ms-flex: 0 0 14.285714% !important;
    flex: 0 0 14.285714% !important;
    max-width: 0 0 14.285714% !important;
}

.col-8ths {
    -ms-flex: 0 0 12.5% !important;
    flex: 0 0 12.5% !important;
    max-width: 0 0 12.5% !important;
}

@media (min-width: 576px) {
    .col-sm-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 0 0 20% !important;
    }

    .col-sm-7ths {
        -ms-flex: 0 0 14.285714% !important;
        flex: 0 0 14.285714% !important;
        max-width: 0 0 14.285714% !important;
    }

    .col-sm-8ths {
        -ms-flex: 0 0 12.5% !important;
        flex: 0 0 12.5% !important;
        max-width: 0 0 12.5% !important;
    }
}

@media (min-width: 768px) {
    .col-md-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 0 0 20% !important;
    }

    .col-md-7ths {
        -ms-flex: 0 0 14.285714% !important;
        flex: 0 0 14.285714% !important;
        max-width: 0 0 14.285714% !important;
    }

    .col-md-8ths {
        -ms-flex: 0 0 12.5% !important;
        flex: 0 0 12.5% !important;
        max-width: 0 0 12.5% !important;
    }
}

@media (min-width: 992px) {
    .col-lg-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 0 0 20% !important;
    }

    .col-lg-7ths {
        -ms-flex: 0 0 14.285714% !important;
        flex: 0 0 14.285714% !important;
        max-width: 0 0 14.285714% !important;
    }

    .col-lg-8ths {
        -ms-flex: 0 0 12.5% !important;
        flex: 0 0 12.5% !important;
        max-width: 0 0 12.5% !important;
    }
}

@media (min-width: 1200px) {
    .col-xl-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 0 0 20% !important;
    }

    .col-xl-7ths {
        -ms-flex: 0 0 14.285714% !important;
        flex: 0 0 14.285714% !important;
        max-width: 0 0 14.285714% !important;
    }

    .col-xl-8ths {
        -ms-flex: 0 0 12.5% !important;
        flex: 0 0 12.5% !important;
        max-width: 0 0 12.5% !important;
    }

    .col-xl-10ths {
        -ms-flex: 0 0 10% !important;
        flex: 0 0 10% !important;
        max-width: 0 0 10% !important;
    }
}

@media (min-width: 1400px) {
    .col-xxl-1 {
        -ms-flex: 0 0 8.333333% !important;
        flex: 0 0 8.333333% !important;
        max-width: 8.333333% !important;
    }
}

/* .col-12 p:last-child,
.col-12 ol:last-child,
.col-12 ul:last-child {
    margin-bottom: 0;
} */

/* .content_box_content p:last-child,
.content_box_content ol:last-child,
.content_box_content ul:last-child {
    margin-bottom: 0;
} */


/* TYPOGRAPHY

font-family: 'Open Sans', sans-serif;

*/

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-800 {
    font-weight: 800 !important;
}

@media (max-width: 1199.98px) {
    h1, .h1 {
        font-size: calc(1.4rem + 1vw);
    }

    h2, .h2 {
        font-size: calc(1.3rem + 0.7vw);
    }

    h3, .h3 {
        font-size: calc(1.2rem + 0.6vw);
    }

    h4, .h4 {
        font-size: calc(1.1rem + 0.5vw);
    }

    .display-1 {
        font-size: calc(1.8rem + 4vw);
    }

    .display-2 {
        font-size: calc(1.7rem + 3.5vw);
    }

    .display-3 {
        font-size: calc(1.6rem + 3vw);
    }

    .display-4 {
        font-size: calc(1.5rem + 2.5vw);
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #000000;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

#main-content a:not(.btn) {
    font-weight: 600;
    display: inline-block;
    position: relative;
    color: #DE2B2B;
    transition: all .3s ease;
}

#main-content a:not(.btn):hover,
#main-content a:not(.btn):focus,
#main-content a:not(.btn):target,
#main-content a:not(.btn):active {
    color: #AB2526;
    text-decoration: none !important;
}

#main-content a:not(.btn):before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #DE2B2B;
    transition: all .3s ease;
}

#main-content a.nav-link:before {
    display: none;
}

#main-content a:not(.btn):before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

#main-content a:not(.btn):hover:before,
#main-content a:not(.btn):focus:before {
    background-color: #AB2526;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
}

#main-content a:not(.btn) .fa-external-link-alt {
    margin-top: 6px;
    vertical-align: top;
    font-size: 12px;
}

.no-underline {
    text-decoration: none !important;
}

.no-underline::before {
    display: none;
}

.siteby {
    margin-top: 4px !important;
    margin-left: 4px !important;
    vertical-align: top !important;
    font-size: 10px !important;
}

.font-12px {
    font-size: 12px !important;
}

.font-13px {
    font-size: 13px !important;
}

.font-14px {
    font-size: 14px !important;
}

.font-15px {
    font-size: 15px !important;
}

.font-16px {
    font-size: 16px !important;
}

.font-17px {
    font-size: 17px !important;
}

.font-18px {
    font-size: 18px !important;
}

.font-19px {
    font-size: 19px !important;
}

.font-20px {
    font-size: 20px !important;
}

.font-21px {
    font-size: 21px !important;
}

.font-22px {
    font-size: 22px !important;
}

.lead {
    font-size: 1.2rem;
}

@media (max-width: 1199.98px) {
    .lead {
        font-size: 1.175rem;
    }
}

@media (max-width: 991.98px) {
    .lead {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .lead {
        font-size: 1.125rem;
    }
}

@media (max-width: 575.98px) {
    .lead {
        font-size: 1.1rem;
    }
}

.lh-1 {
    line-height: 1;
}

strong, b {
    font-weight: 600;
}

.eyebrow {
    color: #6C757D;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

hr {
    margin: 1.5rem 0;
}

hr.lgrey {
    border-top: 1px solid #DEE2E6;
}

hr.light {
    border-top: 1px solid rgba(255,255,255,.1);
}

hr.black {
    border-top: 1px solid #000000;
}

hr.black-2 {
    border-top: 2px solid #000000;
}

.spaced-list li {
    line-height: 1.25;
    padding: .25rem 0;
}


/* COLORS

Red: #DE2B2B;
Dark Red: #AB2526;
Blue: #1C75BC;
Dark Blue: #1963A0;
Black: #000000;
Grey: #DBDBDB;

*/

.bg-red {
    background-color: #DE2B2B;
}

.text-red {
    color: #DE2B2B;
}

a.text-red:hover,
a.text-red:focus,
a.text-red:target,
a.text-red:active {
    color: #AB2526;
}

.border-red {
    border: 1px solid #DE2B2B;
}

.bg-dark-red {
    background-color: #AB2526;
}

.text-dark-red {
    color: #AB2526;
}

.bg-blue {
    background-color: #1C75BC;
}

.text-blue {
    color: #1C75BC;
}

.bg-dark-blue {
    background-color: #1963A0;
}

.text-dark-blue {
    color: #1963A0;
}

.bg-black {
    background-color: #000000;
}

.text-black {
    color: #000000;
}

.bg-dark-black {
    background-color: #000000;
}

.text-dark-black {
    color: #000000;
}

.bg-slate {
    background-color: #1A1A1A;
}

.text-slate {
    color: #1A1A1A;
}

.bg-grey {
    background-color: #DBDBDB;
}

.text-grey {
    color: #DBDBDB;
}

.bg-grey-2 {
    background-color: #E6E7E8;
}

.text-grey-2 {
    color: #E6E7E8;
}

.bg-grey-3 {
    background-color: #E7E9EA;
}

.text-grey-3 {
    color: #E7E9EA;
}

.bg-dark-grey {
    background-color: #3F3F3F;
}

.bg-trans {
    background-color: transparent !important;
}

.bg-black {
    background-color: #000000;
}

.text-black {
    color: #000000 !important;
}

.bg-black hr,
.bg-black-gradient hr,
.bg-red hr {
    border-top: 1px solid rgba(255,255,255,.1);
}

/* LINE CLAMP TEXT TRUNCATE */

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-one {
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.clamp-two {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.clamp-three {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.clamp-four {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.clamp-five {
    line-clamp: 5;
    -webkit-line-clamp: 5;
}

.clamp-six {
    line-clamp: 6;
    -webkit-line-clamp: 6;
}

/* BUTTONS */

.btn {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn.text-underline {
    text-decoration: underline;
}

.btn-rounded {
    border-radius: 30px;
}

.btn-reg {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1;
    padding: .85rem 1.5rem .75rem 1.5rem;
    border-radius: 0;
}

.btn-reg-icon {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1;
    padding: .85rem 1.5rem .75rem 1.5rem;
    border-radius: 0;
}

.btn-teko {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1;
    padding: .85rem 1.5rem .75rem 1.5rem;
    border-radius: 0;
}

.btn .fa-external-link-alt {
    margin-left: 3px;
    margin-top: 5px;
    vertical-align: top;
    font-size: 12px;
}

.btn-red {
    background-color: #DE2B2B;
    color: #FFFFFF;
}

.btn-red:hover,
.btn-red:focus,
.btn-red:target,
.btn-red:active {
    background-color: #AB2526;
    color: #FFFFFF;
}

.btn-red:focus,
.btn-red:target,
.btn-red:active {
    box-shadow: 0 0 0 0.2rem rgba(171,37,38,.25);
}

.btn-blue {
    background-color: #1C75BC;
    color: #FFFFFF;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:target,
.btn-blue:active {
    background-color: #1963A0;
    color: #FFFFFF;
}

.btn-blue:focus,
.btn-blue:target,
.btn-blue:active {
    box-shadow: 0 0 0 0.2rem rgba(25,99,160,.25);
}

.btn-black {
    background-color: #000000;
    color: #FFFFFF;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:target,
.btn-black:active {
    background-color: #343A40;
    color: #FFFFFF;
}

.btn-black:focus,
.btn-black:target,
.btn-black:active {
    box-shadow: 0 0 0 0.2rem rgba(52,58,64,.25);
}

.btn-outline-black {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.btn-outline-black:hover,
.btn-outline-black:focus,
.btn-outline-black:target,
.btn-outline-black:active {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.btn-outline-black:focus,
.btn-outline-black:target,
.btn-outline-black:active {
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,.25);
}

.btn-outline-red {
    color: #DE2B2B;
    border: 1px solid #DE2B2B;
    background-color: transparent;
}

.btn-outline-red:hover {
    background-color: #DE2B2B;
    color: #FFFFFF !important;
}

.btn-outline-red.focus,
.btn-outline-red:focus,
.btn-outline-red:target,
.btn-outline-red:active {
    background-color: #DE2B2B;
    color: #FFFFFF !important;
    box-shadow: 0 0 0 .2rem rgba(222,43,43,.5);
}

.btn-light {
    color: #DE2B2B !important;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:target,
.btn-light:active {
    color: #AB2526 !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    color: #DE2B2B !important;
}

.btn-expand-change:focus {
    outline: 5px auto -webkit-focus-ring-color;
    box-shadow: none;
}

.btn-expand-change > i {
    pointer-events: none;
}

.btn-whats-included {
    background-color: #1C75BC !important;
    color: #FFFFFF !important;
    padding: .75rem 1.5rem;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 20px !important;
    text-transform: uppercase !important;
    line-height: 1;
    padding: .85rem 1.5rem .75rem 1.5rem;
    border-radius: 0 !important;
    height: 100%;
    transform: skewX(-10deg);
}

@media (max-width: 991.98px) {
    .btn-whats-included {
        margin-left: -10px;
        padding-left: calc(1.5rem + 5px) !important;
        width: calc(100% + 10px) !important;
    }
}

.btn-whats-included span {
    display: inline-block;
    transform: skewX(10deg);
}

.btn-whats-included.expand-btn::after {
    font-size: 16px !important;
    top: 1rem;
    transform: skewX(10deg) rotate(-180deg);
}

.btn-whats-included.expand-btn.collapsed::after {
    font-size: 16px !important;
    top: 1rem;
    transform: skewX(10deg) rotate(0deg);
}

.btn-whats-included.expand-btn:focus {
    border: 1px solid #1C75BC;
    outline: 0;
}

.btn-buy-skew {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 20px !important;
    border-radius: 0;
    height: 100%;
    margin-right: -10px;
    padding-right: calc(1.5rem + 10px);
    transform: skewX(-10deg);
}

.btn-buy-skew span {
    display: inline-block;
    transform: skewX(10deg);
}


/* NAVIGATION */

@media (min-width: 1200px) {
    .nav-offset {
        margin-top: -102px;
    }

    .nav-pad-offset {
        padding-top: 102px;
    }

    .nav-pad-offset-half {
        padding-top: 51px;
    }
}

#mainNavBar .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.navbar {
    /* background: linear-gradient(rgba(2,99,175,1),rgba(27,60,97,1)); */
    /* background: #DE2B2B; */
    background: #FFFFFF;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all .3s ease;
}

a.navbar-brand {
    color: #FFFFFF;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    transition: all .3s ease;
}

a.navbar-brand:hover svg.arnold,
a.navbar-brand:focus svg.arnold {
    stroke: #DE2B2B !important;
}

a.navbar-brand span {
    font-size: 14px;
    font-weight: normal;
}

.navbar-nav .nav-item .nav-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: #000000;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
    color: #DE2B2B;
}

.nav-link .fa-external-link-alt {
    margin-left: 3px;
    vertical-align: middle;
    font-size: 8px;
}

.dropdown-menu {
    border-radius: 0;
    background-color: #F8F9FA;
    border-top: 2px solid #DE2B2B;
    border-bottom: 2px solid #DE2B2B;
    border-right: 1px solid #DEE2E6;
    border-left: 1px solid #DEE2E6;
    border-radius: 0px;
    padding: .75rem;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.dropdown-item {
    padding: .5rem;
    font-size: 13px;
    color: #000000;
    line-height: 1.25;
    white-space: normal;
    border-radius: 30px;
    transition: all .3s ease;
}

.mega-drop .dropdown-item {
    line-height: 1.25;
    padding: .375rem .5rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #DE2B2B;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}

.dropdown-header {
    color: #000000;
    font-size: 13px;
    text-transform: uppercase;
    white-space: normal;
    font-weight: 700;
    padding: .25rem .5rem;
}

.dropdown-divider {
    margin: 10px 0;
}

.ctaLink a.nav-link {
    padding: .75rem 2rem !important;
    opacity: 1 !important;
}

.ctaLink a.nav-link.site-link {
    width: 176px;
    padding: .75rem 1rem !important;
    opacity: 1 !important;
}

.newsletter-signup-wrap {
	font-size: 13px;
}

.newsletter-signup-wrap a {
	margin-left: 30px;
}

@media (min-width: 1200px) {
    /* .navbar-brand img {
        width: 20px;
        margin-right: 13px;
        transition: all .3s ease;
    } */

    /* .navbar-brand img {
        width: 188px;
        height: 35px;
        transition: all .3s ease;
    }

    #right-nav-bar {
        margin-right: -.5rem;
        width: 188px;
        justify-content: flex-end;
    } */

    .navbar-brand img {
        width: 168px;
        height: 60px;
        /* width: 185px;
        height: 43px; */
        margin-right: .5rem;
        transition: all .3s ease;
    }

    .navbar-brand.ksm-logo img {
        width: 322px;
        height: 60px;
        /* width: 185px;
        height: 43px; */
        margin-right: .5rem;
        transition: all .3s ease;
    }

    #center-nav-bar {
        margin-top: 1rem;
    }

    #right-nav-bar {
        margin-right: -.5rem;
        justify-content: flex-end;
    }

    .social-nav {
        position: absolute;
        top: -2.5rem;
        right: .5rem;
    }

    .social-nav li a {
        padding: .5rem !important;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        text-align: center;
    	padding: .5rem .75rem;
    }

    .nav-item.dropdown.show::before {
		content: "";
	    position: absolute;
	    bottom: -15px;
	    height: 15px;
	    width: 100%;
	    left: 0;
        right: 0;
	    display: block;
        z-index: 2;
	}

    .dropdown:hover .dropdown-toggle {
        color: #DE2B2B;
        transition: all .1s ease;
    }

    .dropdown:hover a.nav-link {
        color: #DE2B2B;
        transition: all .1s ease;
    }

    .dropdown:hover .dropdown-toggle {
        color: #DE2B2B;
        transition: all .1s ease;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.show .dropdown-menu {
    	margin-top: 12px;
    }

    .dropdown-toggle:after {
        background: none;
        border: 0;
        font-size: 10px !important;
        content: "\f078";
        font: var(--fa-font-solid);
        right: 0;
        top: 1px;
        position: relative;
        margin-left: 1px;
        color: inherit;
        display: inline-block !important;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        transform: rotate(0deg);
        width: 12px;
    }

    .dropdown:hover .dropdown-toggle:after,
    .dropdown.show .dropdown-toggle:after {
    	transform: rotate(-180deg);
    	transition: all .1s ease-in-out;
    }

    .dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }

    .dropdown-toggle::after {
        font-size: 10px;
        margin-left: 3px;
    }

    .dropdown-item span {
        float: right;
        margin-left: .25rem;
        margin-top: 3px;
        font-size: 8px;
    }

    .dropdown-menu {
        margin: 0;
        min-width: 275px;
    }

    .dropdown:last-of-type > .dropdown-menu {
	    left: auto;
	    right: 0;
	}

    .navbar-nav .nav-item .nav-link:not(.dropdown-toggle)::before {
        background: none;
        bottom: 0;
        content: "";
        display: block;
        height: 2px;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        background: var(--red);
        transition: all .3s ease;
        width: 0;
    }

    .navbar-nav .nav-item .nav-link:hover::before,
    .navbar-nav .nav-item .nav-link:focus::before {
        width: calc(100% - 30px);
    }
}

@media (max-width: 1199.98px) {
    .navbar {
        padding: 0;
        box-shadow: 0px 10px 20px rgba(0,0,0,.1);
    }

    a.navbar-brand {
        margin: 10px 0px 10px 15px;
    }

    .navbar-brand img {
        width: 140px;
        height: 50px;
        /* width: 170px;
        height: 40px; */
        transition: all .3s ease;
    }

    .navbar-brand.ksm-logo img {
        width: 241px;
        height: 45px;
        /* width: 170px;
        height: 40px; */
        transition: all .3s ease;
    }

    .navbar-nav .nav-item .nav-link {
    	padding: .75rem 0;
        border-top: 1px solid #DEE2E6;
    }

    .navbar-expand-xl .navbar-nav .nav-link span {
    	margin-left: .25rem;
    }

    .navbar-collapse {
        max-height: calc(80vh - 55px);
        overflow-y: auto;
    }

    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

    .navbar-collapse {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    #center-nav-bar {
        padding: 0 15px;
    }

    #right-nav-bar {
        flex-direction: row;
        justify-content: center;
        padding-top: 7.5px;
        padding-bottom: 7.5px;
        border-top: 1px solid #DEE2E6;
        width: 100%;
    }

    .social-nav li a {
        font-size: 1.25rem !important;
        padding: 7.5px !important;
        border-top: 0 !important;
    }

    .dropdown.show :after {
    	transform: rotate(-180deg);
    	transition: all .1s ease-in-out;
    }

    .dropdown.show .nav-link {
        color: #000000;
        outline: none;
    }

    .dropdown-menu {
        margin: 0;
    }

    .dropdown-item .fa-external-link-alt {
        float: right;
        font-size: 8px;
        margin-left: 4px;
        margin-top: 4px;
    }

    .dropdown .dropdown-toggle:after {
        position: absolute;
        right: 1px;
        top: 14px;
        font-size: 1rem;
        background-color: none;
        border: 0;
        content: "\f078";
        font: var(--fa-font-solid);
        color: inherit;
        display: inline-block !important;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        transform: rotate(0deg);
    }

    .dropdown.show .dropdown-toggle:after {
        transform: rotate(-180deg);
    }
}

.nav-item.nav-link-active a.nav-link {
    color: #555555;
    text-decoration: underline;
}


/* MEGA MENU */

.mega-dropdown-container {
    background-color: #F8F9FA;
}

.mega-dropdown-container .col-12 {
    margin-bottom: 15px;
}

@media (min-width: 1200px) {
    .mega-dropdown-container {
        padding-top: 15px;
    }

    .mega-dropdown-closer {
        color: #DE2B2B !important;
        font-size: 1rem;
        padding: 15px !important;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        opacity: 1;
    }

    .mega-dropdown-closer:hover,
    .mega-dropdown-closer:focus {
        color: #AB2526 !important;
        opacity: 1;
    }

    .navbar .dropdown.mega {
        position: static;
    }

    .navbar .dropdown-menu.mega-drop {
        z-index: 1021;
        max-height: calc(100vh - 67px);
        overflow-y: auto;
        width: 100% !important;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        transition: all .3s ease;
    }

    .nav-item.dropdown.mega.show::before {
	    bottom: 0;
	}
}

@media (max-width: 1199.98px) {
    .navbar .dropdown-menu {
        box-shadow: none;
    }

    .mega-dropdown-closer {
        display: none;
    }

    .mega-dropdown-container {
        margin: 0;
    }

    .navbar .dropdown-menu .container {
        padding: 0;
    }

    .navbar .dropdown-menu .row {
        padding: 0;
    }

    .mega-dropdown-container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .mega-dropdown-container .row {
        margin: 0 0 !important;
    }
}

@media (max-width: 575.98px) {
    .mega-dropdown-container {
        padding: 0 !important;
    }

    .mega-dropdown-container .col-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* MOBILE MENU */

.navbar-toggler {
    margin: 0 -15px 0 15px;
    padding: 10px 15px;
    border: none;
    background: transparent;
    border-radius: 100%;
}

.navbar-toggler:focus {
    outline: none;
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    background-color: #000000;
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:hover>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:active>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    background-color: #DE2B2B;
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    background-color: #DE2B2B;
    transform: rotate(-45deg) translate(4px, -4px);
    transition: ease all .2s;
}


/* HERO */

/* .swiper-heroes {
    margin-bottom: 15px;
} */


.swiper-heroes .swiper-slide img {
    width: 100% !important;
    display: block;
    height: auto;
}

.swiper-heroes .card {
    border: 0;
    height: 100%;
    text-align: left;
    box-shadow: none !important;
}

.swiper-heroes .card-body {
    padding: 1.5rem;
}

.swiper-heroes .card-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border: 0;
    background-color: transparent;
}

.swiper-heroes .card-body a.btn {
    text-shadow: none;
}

.swiper-heroes .swiper-pagination {
    bottom: 5px !important;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-heroes .swiper-button-prev,
.swiper-heroes .swiper-button-next {
    background-size: 15px 20px;
    background-color: transparent;
    padding: 45px 15px;
}

.swiper-heroes .swiper-button-prev {
    left: 0;
}

.swiper-heroes .swiper-button-next {
    right: 0;
}

@media (min-width: 992px) {
    .swiper-heroes .card .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
        z-index: 1;
    }

    .swiper-heroes .card-body {
        position: absolute;
        z-index: 2;
        bottom: 65px;
        left: 0;
        right: 0;
    }

    .swiper-heroes .card-footer {
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .swiper-heroes .card-body p,
    .swiper-heroes .card-body h2 {
        color: #FFFFFF !important;
        text-shadow: 0px 0px 10px rgba(0,0,0,.5);
    }
}

@media (min-width: 1200px) {
    .swiper-heroes .card-body {
        width: 700px;
    }
}

@media (max-width: 991.98px) {
    .swiper-heroes .card-body {
        color: #000000 !important;
        background: #FFFFFF;
    }

    /* .swiper-heroes .card-footer {
        padding: 0 15px 15px 15px !important;
    } */

    .swiper-heroes .card-footer .btn {
        width: 100%;
    }

    .swiper-heroes .swiper-button-prev,
    .swiper-heroes .swiper-button-next {
        display: none;
    }
}

/* @media (max-width: 575.98px) {
    .swiper-heroes .card-body {
        padding: 15px;
    }

    .swiper-heroes .card-footer {
        padding: 0 15px 15px 15px;
    }
} */

.carousel-indicators {
    position: absolute;
    display: block;
    justify-content: center;
    align-items: center;
    top: auto;
    right: auto;
    bottom: 15px;
    left: 15px;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

.carousel-indicators button.indicator {
    background-color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.5);
    width: 12px;
    height: 12px;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    box-shadow: 0px 10px 20px rgba(0,0,0,.15);
}

.carousel-indicators button.indicator.active {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 35px;
    opacity: 1;
}

@media (max-width: 767.98px) {
    #hero .carousel-control-prev, #hero .carousel-control-next {
        display: none;
    }
}

.hero-scroller {
    position: absolute;
    z-index: 2;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    transition: all .3s ease;
    animation-delay: 3s;
}

.hero-scroller a {
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .hero-scroller {
        display: none;
    }
}

.carousel-inner>.carousel-item>.bg-hero
{
    margin:auto;
    -webkit-transform-origin:50% 50%;
    -moz-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    -o-transform-origin:50% 50%;
    transform-origin:50% 50%;
    -webkit-animation:kenburns 1000ms ease-out 0s infinite;
    animation:kenburns 1000ms ease-out 0s;
    -webkit-transition:all 1s ease-in-out;
    -moz-transition:all 1s ease-in-out;
    -ms-transition:all 1s ease-in-out;
    -o-transition:all 1s ease-in-out;
    transition:all 1s ease-in-out;
}

@-webkit-keyframes kenburns {
    0% {
        -webkit-transform:scale(1.1);
        -webkit-transition:-webkit-transform 1000ms ease-out 0s;
    }
    100% {
        -webkit-transform:scale(1);
        -webkit-transition:-webkit-transform 1000ms ease-out 0s;
    }
}

@-moz-keyframes kenburns {
  0% {
    -moz-transform:scale(1.1);
    -moz-transition:-moz-transform 1000ms ease-out 0s;
  }
  100% {
    -moz-transform:scale(1);
    -moz-transition:-moz-transform 1000ms ease-out 0s;
  }
}

@-ms-keyframes kenburns {
  0% {
    -ms-transform:scale(1.1);
    -ms-transition:-ms-transform 1000ms ease-out 0s;
  }
  100% {
    -ms-transform:scale(1);
    -ms-transition:-ms-transform 1000ms ease-out 0s;
  }
}

@-o-keyframes kenburns {
  0% {
    -o-transform:scale(1.1);
    -o-transition:-o-transform 1000ms ease-out 0s;
  }
  100% {
    -o-transform:scale(1);
    -o-transition:-o-transform 1000ms ease-out 0s;
  }
}

@keyframes kenburns {
  0% {
    transform:scale(1.1);
    transition:transform 1000ms ease-out 0s;
  }
  100% {
    transform:scale(1);
    transition:transform 1000ms ease-out 0s;
  }
}

.hero-pp-container {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 5;
}

.hero-pp-btn {
    font-size: 14px;
    color: #FFFFFF;
    width: 15px;
    height: 15px;
    margin: 2px 5px 0 5px;
    padding: 0;
    border: 0;
    background-color: transparent;
    line-height: 1;
    overflow: visible;
}

.favicon-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: url('/assets/img/logos/favicon-white.svg') center center no-repeat;
    z-index: 2;
    opacity: .03;
}


/* VIDEO */

@keyframes kenburns {
    0% {
        transform: scale(1.1);
        transition: transform 1000ms ease-out 0s;
    }

    100% {
        transform: scale(1);
        transition: transform 1000ms ease-out 0s;
    }
}

.hero-pp-container {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 5;
}

.hero-pp-btn {
    font-size: 14px;
    color: #FFFFFF;
    width: 15px;
    height: 15px;
    margin: 2px 5px 0 5px;
    padding: 0;
    border: 0;
    background-color: transparent;
    line-height: 1;
    overflow: visible;
}

.favicon-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: url('/assets/img/logos/favicon-white.svg') center center no-repeat;
    z-index: 2;
    opacity: .03;
}


/* COUNTDOWN CLOCK */

.usa-date {
    font-size: 2.75rem;
    margin: .5rem 0 0 0;
    line-height: 1;
}

.usa-location {
    font-size: 1.25rem;
    color: #DE2B2B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.usa-location-white {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.countdown-box {
    background-color: #000000;
    padding: 15px;
    border-radius: 5px;
    min-width: 90px;
}

.days,
.hours,
.minutes,
.seconds {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: -.75rem;
}

.countdown-clock span {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #DE2B2B;
    text-transform: uppercase;
    letter-spacing: .5px;
}

@media (max-width: 575.98px) {
    .usa-date {
        font-size: 2.25rem;
    }

    .usa-location {
        font-size: 1rem;
    }

    .countdown-box {
        padding: 0;
        min-width: 60px;
    }
}


/* USA VIDEO */

.btn-hero {
    font-size: 18px;
    padding: .75rem 1.5rem;
}

.carousel-indicators {
    position: absolute;
    display: block;
    justify-content: center;
    align-items: center;
    top: auto;
    right: auto;
    bottom: 15px;
    left: 15px;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

.carousel-indicators button.indicator {
    background-color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .5);
    width: 12px;
    height: 12px;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, .15);
}

.carousel-indicators button.indicator.active {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 35px;
    opacity: 1;
}

@media (max-width: 767.98px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        display: none;
    }
}

.hero-scroller {
    position: absolute;
    z-index: 2;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    transition: all .3s ease;
    animation-delay: 3s;
}

.hero-scroller a {
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .hero-scroller {
        display: none;
    }
}

.carousel-inner>.carousel-item>.bg-hero {
    margin: auto;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: kenburns 1000ms ease-out 0s infinite;
    animation: kenburns 1000ms ease-out 0s;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

@-webkit-keyframes kenburns {
    0% {
        -webkit-transform: scale(1.1);
        -webkit-transition: -webkit-transform 1000ms ease-out 0s;
    }

    100% {
        -webkit-transform: scale(1);
        -webkit-transition: -webkit-transform 1000ms ease-out 0s;
    }
}

@-moz-keyframes kenburns {
    0% {
        -moz-transform: scale(1.1);
        -moz-transition: -moz-transform 1000ms ease-out 0s;
    }

    100% {
        -moz-transform: scale(1);
        -moz-transition: -moz-transform 1000ms ease-out 0s;
    }
}

@-ms-keyframes kenburns {
    0% {
        -ms-transform: scale(1.1);
        -ms-transition: -ms-transform 1000ms ease-out 0s;
    }

    100% {
        -ms-transform: scale(1);
        -ms-transition: -ms-transform 1000ms ease-out 0s;
    }
}

@-o-keyframes kenburns {
    0% {
        -o-transform: scale(1.1);
        -o-transition: -o-transform 1000ms ease-out 0s;
    }

    100% {
        -o-transform: scale(1);
        -o-transition: -o-transform 1000ms ease-out 0s;
    }
}

#hero {
    position: relative;
    background-color: #000000;
}

#hero .carousel-item {
    overflow: hidden;
}

.hero-text,
.video-text {
    position: relative;
    z-index: 5;
}

@media (min-width: 1200px) {
    .hero-text,
    .video-text {
        color: #FFFFFF;
        position: absolute;
        top: 45%;
        left: 0;
        right: 0;
        transform: translateY(-45%);
        text-align: center;
    }
}

.hero-text p.eyebrow,
.video-text p.eyebrow {
    color: #F8F9FA;
    margin-bottom: 1rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
}

.hero-text .favicon,
.video-text .favicon {
    margin-bottom: 1rem;
}

.hero-text h2,
.video-text h2 {
    color: #FFFFFF;
    margin-bottom: .25rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
}

.hero-text p.desc,
.video-text p.desc {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
}

.hero-text a,
.video-text a {
    text-transform: uppercase;
    display: inline-block;
}

.bg-hero {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    height: calc(100vh - 80px);
    max-height: 1080px;
    min-height: 540px;
}

@media (max-width: 1199.98px) {
    .bg-hero {
        height: calc(95vh - 80px);
        max-height: 810px;
    }

    .hero-text p.desc,
    .video-text p.desc {
        font-size: 1.4rem;
    }
}

@media (max-width: 991.98px) {
    .bg-hero {
        height: calc(90vh - 80px);
    }

    .hero-text h2,
    .video-text h2 {
        margin-bottom: .75rem;
    }

    .hero-text p.desc,
    .video-text p.desc {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .bg-hero {
        height: calc(85vh - 80px);
    }

    .hero-text p.desc,
    .video-text p.desc {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .bg-hero {
        height: calc(85vh - 80px);
    }

    .hero-text p.desc,
    .video-text p.desc {
        font-size: 1.05rem;
    }

    .video-text .usa-logo {
        padding-left: 15px;
        padding-right: 15px;
    }
}

#fullwidth-video {
    overflow: hidden !important;
    position: relative;
    color: #FFFFFF;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.hero-mobile {
    overflow: hidden;
}

.video-overlay {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75));
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
}

@media (min-width: 1200px) {
    #fullwidth-video {
        height: calc(100vh - 123px);
        max-height: 900px;
        min-height: 725px;
    }

    .video-hero {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    #fullwidth-video {
        height: auto;
    }

    .video-background {
        display: none;
    }

    .video-overlay {
        display: none;
    }
}

.fullwidth-video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#fullwidth-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

/*
#fullwidth-video iframe {
position: relative;
z-index: -1;
width: 100%;
height: 100%;
} */

.video-pp-btn {
    color: #FFFFFF;
    align-self: center;
    bottom: 15px;
    position: absolute;
    text-align: center;
    left: auto;
    right: 15px;
    outline: 0;
    border: 0;
    background-color: transparent;
    z-index: 10;
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, .25));
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, .25));
}

@media (max-width: 1199.98px) {

    .video-pp-btn-center,
    .video-pp-btn {
        display: none;
    }
}

.video-background {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.video-background iframe {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
    .video-background {
        max-height: 900px;
        min-height: 725px;
    }
}

@media (min-aspect-ratio: 16/9) {
    .video-background iframe {
        /* height = 100 * (9 / 16) = 56.25 */
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-background iframe {
        /* width = 100 / (9 / 16) = 177.777777 */
        width: 177.78vh;
    }
}

ul.sm-nav-hero {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.sm-nav-hero li {
    list-style-type: none;
    display: inline-block;
}

.sm-nav-hero li a {
    padding: .5rem;
    color: #FFFFFF !important;
    transition: all .3s ease;
}

.sm-nav-hero li a:before {
    display: none;
}

.sm-nav-hero li a:hover,
.sm-nav-hero li a:focus {
    color: #DE2B2B !important;
    transition: all .3s ease;
}


/* HOME */

.link-icon {
    font-size: 12px;
    font-weight: 700 !important;
    color: #000000;
    display: block;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease;
}

.link-icon:before {
    display: none;
}

.link-icon i {
    font-size: 1.75rem;
    display: block;
    margin: 0 auto 7.5px auto;
    color: #DE2B2B !important;
}

.link-icon span {
    color: #000000 !important;
}

.link-icon:hover,
.link-icon:focus {
    color: #000000;
    opacity: .5;
    text-decoration: none;
}

footer .link-icon span {
    color: #FFFFFF !important;
}

.logo-link {
    display: block;
    height: 100%;
}

.logo-link img {
    width: 100%;
}

.logo-link:before {
    display: none !important;
}

a.image-card {
    position: relative;
    display: block !important;
    height: 100%;
    color: var(--white) !important;
    text-align: center;
    overflow: hidden;
    transition: all .3 ease;
}

a.image-card:hover span,
a.image-card:focus span,
a.image-card:target span,
a.image-card:active span {
    background-color: #DE2B2B;
    color: #FFFFFF;
}

.btn-overlay-text {
    background: linear-gradient(rgba(0,0,0,.54), rgba(0,0,0,.54));
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all .3 ease;
}

.btn-overlay-text span {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    display: block;
    width: auto;
    margin: 0;
    padding: 1rem 1.25rem .75rem 1.25rem;
    border: 2px solid #DE2B2B;
    transition: all .3 ease;
}


/* SWIPERS */

.swiper-container {
    padding: 0 15px;
	margin: 0 -15px;
}

.swiper-wrapper {
	margin: 0 0 48px 0;
}

.swiper-sponsors::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    z-index: 9;
    background: linear-gradient(to left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.swiper-sponsors::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    z-index: 9;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: top;
    -ms-flex-pack: top;
    -webkit-justify-content: top;
    justify-content: top;
    -webkit-box-align: top;
    -ms-flex-align: top;
    -webkit-align-items: top;
    align-items: top;
	height: auto;
}

.swiper-image-container {
    position: relative;
    z-index: 1;
}

.swiper-overlay {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%);
}

.swiper-overlay-text {
    z-index: 10;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    text-align: left;
    margin-right: auto;
    color: #FFFFFF !important;
    font-weight: 600;
}

/* .swiper-slide .card:hover,
.swiper-slide .card:focus {
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
} */

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    color: #000000;
    background-color: #F8F9FA;
    border: 0;
    border-radius: 0;
    padding: 15px;
    margin-top: -40px;
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, .25));
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, .25));
    transition: all .3s ease;
}

.swiper-button-prev:focus,
.swiper-button-prev:hover,
.swiper-button-prev:active {
    color: #000000;
    background-color: #F8F9FA;
    border: 0;
}

.swiper-button-next:focus,
.swiper-button-next:hover,
.swiper-button-next:active {
    color: #000000;
    background-color: #F8F9FA;
    border: 0
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #000000;
    background-color: #F8F9FA;
    border: 0
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-prev.bottom,
.swiper-button-next.bottom {
    top: auto;
    margin: 0;
    bottom: 0;
}

.swiper-button-prev {
    left: 15px;
}

.swiper-button-next {
    right: 15px;
}

.swiper-button-prev.outset {
    left: 0 !important;
}

.swiper-button-next.outset {
    right: 0 !important;
}

.swiper-button-prev.outset.smaller,
.swiper-button-next.outset.smaller {
    height: 30px;
    width: 30px;
}

.swiper-button-prev.fixed-pos,
.swiper-button-next.fixed-pos {
    top: 200px;
}

.swiper-button-prev.centered,
.swiper-button-next.centered {
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.swiper-button-prev.bg-slate,.swiper-button-next.bg-slate {
    background-color: #1A1A1A !important;
    color: #FFFFFF !important;
}

.swiper-button-prev.bg-trans,.swiper-button-next.bg-trans {
    background-color: transparent !important;
}

.swiper-pagination-bullet {
    background: #FFFFFF;
    border: 1px solid #000000;
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #DE2B2B;
    border: 1px solid #000000;
    opacity: 1;
}

.swiper-pagination.white .swiper-pagination-bullet {
    border: 1px solid #FFFFFF !important;
}

.swiper-container-horizontal>.swiper-scrollbar {
    left: 15px;
    width: calc(100% - 30px);
}

.swiper-scrollbar-drag {
    background: rgba(222, 43, 43, 1);
}

.swiper-scrollbar.white .swiper-scrollbar-drag {
    background: rgba(255, 255, 255, 1);
}


/* SWIPER MEDIA CAROUSEL */

.home-media-card {
    text-align: left;
    height: 100%;
    width: 100%;
    box-shadow: none !important;
    border: 0 !important;
    background-color: #E7E9EA;
}

.home-media-card .eyebrow {
    color: #000000;
    margin-bottom: .25rem;
}

.home-media-card a:not(.btn) {
    position: static !important;
    color: #000000 !important;
}

.home-media-card a:not(.btn):hover,
.home-media-card a:not(.btn):focus,
.home-media-card a:not(.btn):target,
.home-media-card a:not(.btn):active {
    color: #DE2B2B !important;
}

.media-thumb-div {
    position: relative;
    padding: .5rem .5rem 0 .5rem;
}

.media-thumb-div .img-fluid {
    width: 100%;
}

.video-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF !important;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
}

.image-caption span {
    text-align: left;
    font-size: 14px;
    line-height: 1.25;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    padding: 15px;
    color: #FFFFFF;
    text-shadow: 0px 10px 20px rgba(0,0,0,.75);
}

.image-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(22.5deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
}

.image-credit div {
    text-align: left;
    font-size: 14px;
    line-height: 1.25;
    position: absolute;
    z-index: 2;
    bottom: 15px;
    left: 15px;
    color: #FFFFFF;
    text-shadow: 0px 10px 20px rgba(0,0,0,.75);
}


/* CARDS */

.card {
    border: 1px solid #DEE2E6;
    border-radius: 0;
    transition: all .3s ease;
}

.staff-link {
    display: block;
    height: 100%;
    text-decoration: none !important;
}

.staff-link:hover,
.staff-link:focus {
    box-shadow: 0px 10px 20px rgba(0,0,0,.2);
}

.card-header {
    background-color: #000000;
    border-radius: 0;
    border-bottom: 1px solid #FFFFFF !important;
}

.card-body p:last-child {
    margin-bottom: 0;
}

.card-footer:last-child {
    border-radius: 0;
}

.card-header,
.card-body,
.card-footer {
    padding: 1.5rem;
}

.no-hover:hover .card,
.no-hover:focus .card {
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.card-hover:hover,
.card-hover:focus {
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.featured-tag {
    position: absolute;
    top: 0;
    right: 0;
}

.featured-tag span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #FFFFFF;
    color: #000000;
    padding: .25rem;
}

.card-zoom {
    position: relative;
    overflow: hidden;
}

.card-zoom a {
    text-decoration: none;
}

.zoom-card-link:hover .card-img-overlay,
.zoom-card-link:focus .card-img-overlay {
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: linear-gradient(-180deg, rgba(0,0,0,.42),rgba(0,0,0,.42));
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.overlay-text .icon {
    color: #FFFFFF;
    margin-bottom: .5rem;
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
}

.overlay-text span {
    color: #FFFFFF;
}

.overlay-text h2, .overlay-text .h2 {
    color: #FFFFFF;
    margin-bottom: 0;
    text-shadow: 0px 10px 20px rgba(0,0,0,.25);
}

.overlay-text h3, .overlay-text .h3 {
    font-weight: 600;
    line-height: 1;
    color: #FFFFFF;
    margin-bottom: 0;
    text-shadow: 0px 10px 20px rgba(0,0,0,.25);
}

.sport-button {
	font-size:19px !important;
}

.overlay-text p {
    color: #FFFFFF;
    margin-bottom: 15px;
    text-shadow: 0px 10px 20px rgba(0,0,0,.25);
}

.overlay-top {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    overflow: hidden;
}

.overlay-bottom {
    position: absolute;
    top: auto;
    bottom: 15px;
    left: 15px;
    right: 15px;
    overflow: hidden;
}

.overlay-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    right: 15px;
    text-align: center;
}

.overlay-red {
    position: relative;
    display: block;
    width: 100%;
}

.overlay-red:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-180deg, rgba(0,0,0,.25),rgba(0,0,0,.5));
}

.inset-border {
    position: relative;
    z-index: 4;
}

.inset-border::before {
    z-index: 3;
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 14px;
    right: 14px;
}

.inset-border.white::before {
    box-shadow: inset 0 0 0 1px #FFFFFF;
}

/* .overlay-text .static-text {
	-webkit-transition: opacity .3s, -webkit-transform .3s;
	transition: opacity .3s, transform .3s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

.card-img-overlay:hover .static-text {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
} */

.zoom-wrapper {
	position: relative;
	overflow: hidden !important;
}

.zoom-wrapper img {
	max-width: 100% !important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card-zoom:hover .card-img-overlay {
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card-zoom:hover img,
.card-zoom:focus img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

.zoom-card-link:hover img,
.zoom-card-link:focus img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}


/* IMAGE BOXES */

.card-img-box {
    border: 0;
}

@media (min-width: 992px) {
    .card-img-box img {
        -webkit-object-fit: cover !important;
        -moz-object-fit: cover !important;
        -o-object-fit: cover !important;
        object-fit: cover !important;
        height: 100%;
    }
}

.card-img-box .card-body {
    padding: 0;
}

.card-img-box .row {
    padding: 0 !important;
    margin: 0 !important;
}

.card-img-box [class*=col-],
.card-img-box [class*=col] {
    padding: 0 !important;
    margin: 0 !important;
}

.img-txt-box .row {
    padding: 0 !important;
    margin: -7.5px -7.5px 0 -7.5px !important;
}

.img-txt-box [class*=col-],
.img-txt-box [class*=col] {
    padding: 0 7.5px !important;
    margin: 15px 0 0 0 !important;
}

.img-text-box {
    padding: 3rem;
}

@media (max-width: 575.98px) {
    .img-text-box {
        padding: 3rem 15px;
    }
}


/* ATHLETES */

.athlete-text span {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #6C757D;
}


/* NEWS */

.news-link {
    transition: all .3s ease;
}

.news-link a {
    text-decoration: none;
}

.news-link .rounded-circle {
    width: 150px;
    border: 3px solid transparent;
    transition: all .3s ease;
}

@media (max-width: 767.98px) {
    .news-link .rounded-circle {
        width: 75px;
    }
}

.news-link:hover .rounded-circle,
.news-link:focus .rounded-circle {
    border: 3px solid #DE2B2B;
}

.news-link:hover,
.news-link:focus {
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}


/* SUB PAGE */

#subnav-container {
    padding: 0;
    margin: 0;
}

#subnav-container .expand-btn {
    color: #FFFFFF !important;
    background-color: #000000 !important;
    box-shadow: none !important;
    border: 0;
}

#subnav-container .expand-btn::after {
    right: 1.25rem !important;
}

@media (min-width: 1200px) {
    #subnav-container .expand-btn {
        display: none;
    }
}

#subnav {
    justify-content: center;
}

#submenu {
    font-size: 12px;
    text-align: center;
    padding: .5rem 0;
    justify-content: center;
    flex-direction: row;
}

#submenu li a {
    padding: .25rem .5rem;
    color: #F8F9FA !important;
    font-weight: 500 !important;
}

#submenu li a:hover,
#submenu li a:focus {
    color: #CBD3DA !important;
    text-decoration: underline;
}

#submenu li a.active {
    color: #FFFFFF !important;
    text-decoration: underline;
}

@media (max-width: 1199.98px) {
    #submenu {
        flex-direction: column;
        text-align: left;
    }

    #subnav {
        border-top: 1px solid #DEE2E6;
    }

    #submenu li a {
        padding: .5rem 15px;
    }
}

#submenu li a:before {
    display: none;
}

.subpage-container {
    position: relative;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.subpage-container.bg-cover {
    -webkit-background-size: 100% !important;
    -moz-background-size: 100% !important;
    -o-background-size: 100% !important;
    background-size: 100% !important;
    /* background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
}

.subpage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,.54), rgba(0,0,0,.54))
}

.subpage-container.bg-cover .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.subpage-container .row {
    margin: 0;
    justify-content: center;
}

.subpage-container .row .col-xl-6 {
    padding: 0;
    align-self: center;
}

.subpage-container .subpage-text {
    padding: 3rem 0;
}

.subpage-container .subpage-text h1 {
    margin-bottom: 0;
}

.subpage-container .subpage-text p {
    margin-top: .75rem;
    margin-bottom: 0;
}

.subpage-container .subpage-text .eyebrow {
    color: #F8F9FA;
    margin-top: 0 !important;
}

.subpage-container a {
    color: #FFFFFF !important;
}

@media (max-width: 1199.98px) {
    .subpage-container .subpage-text {
        padding: 3rem 15px;
    }

    .subpage-container.bg-cover .container { 
        padding: 5rem 0;
    }
}

@media (max-width: 991.98px) {
    .subpage-container.bg-cover .container {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    .subpage-container.bg-cover {
        -webkit-background-size: 150% !important;
        -moz-background-size: 150% !important;
        -o-background-size: 150% !important;
        background-size: 150% !important;
    }

    .subpage-container.bg-cover .container {
        padding: 3rem 0;
    }
}

.subpage-container .img-fluid {
    width: 100%;
}

.subpage-container .img-fluid {
    width: 100%;
}

.sub-hero {
    background-color: #DE2B2B;
    position: relative;
    height: calc(50vh + 33.5px);
    min-height: 405px;
    max-height: 710px;
    overflow: hidden;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.sub-hero-text {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    display: block;
}

@media (min-width: 1200px) {
    .sub-hero {
        margin-top: -77px;
    }

    .sub-hero-text {
        padding-top: calc(3rem + 33.5px)
    }
}

.sub-hero-text img {
    width: 50px;
}

.sub-hero h1 {
    color: #FFFFFF;
    margin-bottom: .75rem;
    text-shadow: 0px 0px 10px rgba(0,0,0,.5);
}

.sub-hero hr {
    width: 50%;
    margin: 15px auto;
}

.sub-hero p {
    color: #FFFFFF;
    margin-bottom: 0;
    text-shadow: 0px 0px 10px rgba(0,0,0,.5);
}

.sub-hero p.eyebrow {
    margin-bottom: .75rem;
}

@media (max-width: 1199.98px) {
    .sub-hero {
        height: calc(50vh - 55px);
    }
}

@media (max-width: 991.98px) {
    .sub-hero {
        height: calc(45vh - 55px);
    }
}

@media (max-width: 767.98px) {
    .sub-hero {
        height: calc(40vh - 55px);
        min-height: 320px;
        max-height: 540px;
    }
}

@media (max-width: 575.98px) {
    .sub-hero {
        height: calc(35vh - 55px);
    }
}

.subpage-nav {
    font-size: 16px;
    text-align: center;
    justify-content: center;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.subpage-tabs {
    font-size: 14px;
    border: 0;
    justify-content: center;
    background-color: #000000;
    padding: 10px;
}

.nav-tabs .nav-link {
    border-radius: 30px;
    border: 0;
}

.subpage-tabs li a {
    color: #FFFFFF !important;
    padding: .5rem .75rem;
    margin: 5px;
}

.subpage-tabs li a.active {
    color: #DE2B2B !important;
    text-decoration: none;
}


/* SPORT CATEGORY TABS */

.sport-category-tabs {
    list-style-type: none;
    /* columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
    column-gap: 5px;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px; */
    border: 0;
    margin-bottom: 0 !important;
    padding: 0 7.5px !important;
}

.sport-category-tabs li {
    margin-top: 15px !important;
}

.sport-category-tabs li button,
.sport-category-tabs li a {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .5px;
    text-align: center;
    display: block;
    width: 100%;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 12px 15px 8px 15px;
    background-color: #E6E7E8;
    color: #000000 !important;
    transition: all .3s ease;
}

.sport-category-tabs li button.active,
.sport-category-tabs li button:active,
.sport-category-tabs li a.active,
.sport-category-tabs li a:active {
    background-color: #DE2B2B !important;
    color: #FFFFFF !important;
}

.sport-category-tabs li button:hover,
.sport-category-tabs li button:focus,
.sport-category-tabs li button:target,
.sport-category-tabs li a:hover,
.sport-category-tabs li a:focus,
.sport-category-tabs li a:target {
    color: #DE2B2B !important;
    box-shadow: none;
}

.sport-category-tabs li a.active:hover,
.sport-category-tabs li a.active:focus,
.sport-category-tabs li a.active:target,
.sport-category-tabs li a.active:active {
    color: #FFFFFF !important;
}

@media (max-width: 991.98px) {
    .sport-category-tabs {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
}

@media (max-width: 767.98px) {
    .sport-category-tabs {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (max-width: 575.98px) {
    .sport-category-tabs {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

.carousel-expand-btn-icon {
    display: inline-block !important;
    width: 20px;
    height: 20px;
    padding: 0 !important;
    width: auto !important;
    border: 0 !important;
    margin-bottom: 0;
    background-color: #DBDBDB !important;
    text-align: center;
    margin-top: -24px;
}

.carousel-expand-btn-icon::after {
    top: 10px !important;
    right: 5px !important;
    left: auto !important;
}

.carousel-expand-btn-icon:hover,
.carousel-expand-btn-icon:focus,
.carousel-expand-btn-icon:target,
.carousel-expand-btn-icon:active {
    border: 0 !important;
    outline: none !important;
    color: #DE2B2B !important;
}

.sport-category-card-footer {
    background-color: transparent !important;
    border: 0 !important;
    padding-top: 0;
    margin-top: -48px;
    text-align: right;
    border-radius: 0 0 15px 0 !important;
}

.sport-swiper-card {
    background-color: #E6E7E8;
    border: 0;
    width: 100%;
    border-radius: 0 0 15px 0 !important;
    text-align: left;
}

.sport-swiper-card p {
    margin-bottom: 0;
}

.sport-swiper-card .card-body {
    min-height: 288px;
}


/* SCHEDULE TABS */

.schedule-tabs {
    list-style-type: none;
    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
    column-gap: 5px;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    border: 0;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
}

.schedule-tabs li {
    margin: 0 0 5px 0 !important;
    padding: 0 !important;
}

.schedule-tabs li button {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    text-align: left;
    line-height: 1;
    display: block;
    width: 100%;
    border-radius: 0 !important;
    padding: 12px 15px 8px 15px;
    background-color: #E6E7E8;
    color: #000000;
    transition: all .3s ease;
}

.schedule-tabs li button.active,
.schedule-tabs li button:active {
    background-color: #DE2B2B !important;
    color: #FFFFFF !important;
}

.schedule-tabs li button:hover,
.schedule-tabs li button:focus,
.schedule-tabs li button:target {
    box-shadow: none;
    opacity: .9;
}

.schedule-tabs span.big {
    font-size: 125%;
}

.schedule-content .col-12 {
    margin-top: .25rem;
}

.schedule-content p {
    margin-bottom: 0;
}

.schedule-event-name {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .schedule-tabs {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (max-width: 575.98px) {
    .schedule-tabs {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

.swiper-schedule-tabs .swiper-wrapper {
    margin-bottom: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.swiper-schedule-tabs li {
    display: block;
    width: 100%;
}

.swiper-schedule-tabs button {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    text-align: left;
    line-height: 1;
    display: block;
    width: 100%;
    border-radius: 0 !important;
    padding: 12px 15px 8px 15px;
    background-color: #E6E7E8;
    color: #000000;
    transition: all .3s ease;
}

.swiper-schedule-tabs button.active,
.swiper-schedule-tabs button:active {
    background-color: #DE2B2B !important;
    color: #FFFFFF !important;
}

.swiper-schedule-tabs button:hover,
.swiper-schedule-tabs button:focus,
.swiper-schedule-tabs button:target {
    box-shadow: none;
    opacity: .9;
}

.swiper-schedule-tabs span.big {
    font-size: 125%;
}

@media (max-width: 767.98px) {
    .swiper-schedule-tabs li {
        display: block;
        width: auto;
    }
}


/* EVENTS 2024 */

.event-card {
    border-radius: 0;
}

.event-card .card-header {
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0;
}

.event-card .card-header .title {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 1rem;
    margin-bottom: 0;
}

.event-card .card-header .price {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 1rem 1rem 1rem 0;
    display: block;
    line-height: 1;
    margin-bottom: 0;
}

.event-card .card-header .btn {
    margin-right: -5px;
    transform: skewX(-10deg);
    padding-top: 1rem;
    padding-right: calc(1.5rem + 5px);
    padding-bottom: 15px;
    padding-left: 1.5rem;
}

.event-card .card-header .btn span {
    display: inline-block;
    transform: skewX(10deg);
}

.btn-find-out-more {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 0;
    text-align: left;
    padding: .3rem 1rem .3rem 4rem;
    white-space: normal;
    position: relative;
    display: block;
    width: 100%;
    color: #FFFFFF;
    background-color: #1963A0;
    border: 0;
}

.btn-find-out-more.collapsed {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 0;
    text-align: left;
    padding: .3rem 1rem .3rem 4rem;
    white-space: normal;
    position: relative;
    display: block;
    width: 100%;
    color: #FFFFFF;
    background-color: #1C75BC;
    border: 0;
}

.btn-find-out-more:hover,
.btn-find-out-more:focus {
    color: #FFFFFF;
    background-color: #1963A0;
}

.btn-find-out-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    width: 48px;
    height: 39px;
}

.btn-find-out-more::after {
    font-size: 14px;
    padding: 1rem;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #000000;
    left: 0;
    top: -8px;
    position: absolute;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    transform: rotate(-180deg);
    -webkit-font-smoothing: antialiased;
    transition: all .2s ease;
}

.btn-find-out-more.collapsed::after {
    font-size: 14px;
    padding: 1rem;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #000000;
    left: 0;
    top: -8px;
    position: absolute;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: rotate(0deg);
    transition: all .2s ease;
}

.btn-find-out-more {
    box-shadow: none !important;
}


/* SIDEBAR */

#sidebar-loop .card a:not(.btn) {
    font-weight: 600 !important;
    color: #F8F9FA !important;
    transition: all .3s ease;
}

#sidebar-loop .card a:not(.btn):hover,
#sidebar-loop .card a:not(.btn):focus,
#sidebar-loop .card a:not(.btn):target,
#sidebar-loop .card a:not(.btn):active {
    color: #CBD3DA !important;
    text-decoration: none;
}

#sidebar-loop .card ul {
	line-height: 1.35;
}

#sidebar-loop .card ul li {
	margin-bottom: 5px;
}

ul.sub-page-nav {
    text-decoration: none;
    padding: 0;
    margin: 0;
	line-height: 1.35;
}

.sub-page-nav li {
    padding: 0;
    list-style-type: none;
    margin-bottom: 10px;
}

.sub-page-nav li a {
    color: #F8F9FA !important;
    text-decoration: none;
    padding: .25rem 0;
    font-size: 14px;
    display: inline-block;
    transition: all .3s ease;
}

.sub-page-nav li a:hover,
.sub-page-nav li a:focus {
    color: #CBD3DA !important;
    text-decoration: none;
}

.sub-page-nav li a .fa-external-link-alt {
    margin-left: 3px !important;
    margin-top: 3px !important;
    vertical-align: top !important;
    font-size: 12px !important;
}

.sub-page-nav li a.disabled {
    opacity: .5;
    pointer-events: none;
}

.sub-page-nav li a.disabled:before {
    display: none;
}


/* COLLAPSE */

.expand-btn {
    border-radius: 30px;
    font-size: 1rem;
    text-align: left;
    padding: .75rem 2.5rem .75rem 1rem;
    white-space: normal;
    position: relative;
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    text-transform: capitalize;
}

.expand-btn.collapsed {
    border-radius: 30px;
    font-size: 1rem;
    text-align: left;
    padding: .75rem 2.5rem .75rem 1rem;
    white-space: normal;
    position: relative;
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    text-transform: capitalize;
}

.expand-btn:hover {
    background-color: #F8F9FA;
}

.expand-btn::after {
    font-size: 1rem;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    right: 1rem;
    top: .75rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    transform: rotate(-180deg);
    -webkit-font-smoothing: antialiased;
    transition: all .2s ease;
}

.expand-btn.collapsed::after {
    font-size: 1rem;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    right: 1rem;
    top: .75rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: rotate(0deg);
    transition: all .2s ease;
}

.expand-btn.focus, .expand-btn:focus {
	border: 1px solid #000000;
	outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
    box-shadow: none;
}

.expand-btn.black {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 0 0 15px 0;
}

.expand-btn.black::after {
    top: 1rem;
}

.border-black {
    border: 1px solid #000000;
}

.border-black-2 {
    border: 2px solid #000000;
}

.border-right-black {
    border-right: 1px solid #000000;
}

.border-black-2 {
    border: 2px solid #000000;
}

ul.link-list {
    padding: 0;
    margin: 0;
}

.link-list li {
    list-style-type: none;
    padding: .25rem 0;
}

.link-list li:last-child {
    border-bottom: none;
}

.link-list li a {
    display: block;
    width: 100%;
}

ul.list-columns {
    width: 100%;
    list-style-type: none;
    padding-left: 0;
    line-height: 1.15;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-fill: balance;
    -webkit-column-fill: balance;
    -moz-column-fill: balance;
}

ul.list-columns li {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    ul.list-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (min-width: 768px) {
    ul.list-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (min-width: 992px) {
    ul.list-columns {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
}

@media (min-width: 1200px) {
    ul.list-columns {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
    }
}


/* MODALS */

.modal-body p:last-child {
	margin-bottom: 0;
}

.modal-content {
    border: 0;
    border-radius: 0px;
    background-clip: border-box;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.modal-header {
    border-radius: 0;
    padding: 1rem;
}

.modal-footer {
    border-radius: 0;
}

.modal .close {
    color: #DC3545;
    font-size: 1rem;
    padding: .5rem;
    margin-top: -.25rem;
    margin-right: -.25rem;
}

/* .modal-backdrop {
    background: linear-gradient(rgba(247,249,250,0),rgba(247,249,250,0)), url('/assets/img/logos/favicon-white.svg') center center no-repeat;
    background-color: #F8F9FA;
    transition: all .3s ease;
}

.modal-backdrop.show {
    opacity: 1;
} */


/* FORMS */

legend {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: .75rem;
    line-height: 1.2;
}

@media (max-width: 1199.98px) {
    legend {
        font-size: calc(1.4rem + 0.75vw);
    }
}

legend.section {
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding-top: 1rem;
}

label {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-control {
    background-color: #FFFFFF;
    border-radius: 0px;
    border: 1px solid #DEE2E6;
}

.custom-select {
    background-color: #FFFFFF;
    border-radius: 0px !important;
    border: 1px solid #DEE2E6;
}

.form-control:focus,
.form-control.focus,
.custom-select:focus,
.custom-select.focus {
	border: 1px solid #000000;
    background-color: #FFFFFF;
	outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
    box-shadow: none;
}

#newsletter_email .input-group-append button {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1 !important;
    transition: all .3s ease;
}

.modal-header .close:hover,
.modal-header .close:focus {
    opacity: .5 !important;
    transition: all .3s ease;
}


/* ALERTS */

#alert-bar {
    color: #FFFFFF;
    background: #000000;
    border: 0;
    border-radius: 0;
    padding: .5rem 0;
    margin-bottom: 0;
    font-size: 13px;
}

#alert-bar strong {
    font-weight: 700;
    margin-right: 3px;
}

#alert-bar a {
	color: #DE2B2B;
    position: relative;
}

#alert-bar a:hover,
#alert-bar a:focus,
#alert-bar a:target,
#alert-bar a:active {
	color: #AB2526;
}

#alert-bar a:not(.btn):before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #DE2B2B;
    transition: all .3s ease;
}

#alert-bar a.nav-link:before {
    display: none;
}

#alert-bar a:not(.btn):before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

#alert-bar a:not(.btn):hover:before,
#alert-bar a:not(.btn):focus:before {
    background-color: #AB2526;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
}

#alert-bar a:not(.btn) .fa-external-link-alt {
    margin-top: 6px;
    vertical-align: top;
    font-size: 12px;
}

.alert .close {
	text-shadow: none;
    font-size: 16px;
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    opacity: 1;
    transition: all .3s ease;
}

.alert .close:hover,
.alert .close:focus {
    opacity: .5;
}


/* DISCLAIMER */

.disclaimer-text hr {
    margin: 1.5rem 0;
}

.disclaimer-text p {
    font-size: 14px;
}

.disclaimer-text p:last-of-type {
    margin-bottom: 0;
}


/* BUY TICKETS CTA */

.tickets-cta {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    z-index: 9;
    background-color: #DE2B2B;
    color: #FFFFFF;
    left: 15px;
    bottom: 15px;
    padding: 5.5px 1rem;
    transition: all .3s ease;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.tickets-cta.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

.ticket-icon-button {
    border: 2px solid #000000 !important;
    display: block;
    height: 59px;
    border-radius: 0 0 15px 0;
}

.ticket-icon-button.disabled {
    border: 2px solid #FFFFFF !important;
    opacity: .25 !important;
    pointer-events: none !important;
}

.ticket-icon-button.red {
    color: #FFFFFF;
    background-color: #DE2B2B;
    padding: .75rem 1.5rem;
}

.ticket-icon-button.gray {
    color: #FFFFFF;
    background-color: #6C757D;
    padding: .75rem 1.5rem;
}

.ticket-icon-button svg,
.ticket-icon-button i {
    margin-top: .25rem;
}


/* TO TOP */

.scroll-top {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    z-index: 9;
    background-color: #DE2B2B;
    color: #FFFFFF;
    width: 34px;
    height: 34px;
    border-radius: 0;
    line-height: 34px;
    right: 15px;
    bottom: 15px;
    transition: all .3s ease;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.scroll-top.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

.scroll-top.show:hover,
.scroll-top.show:focus {
    color: #FFFFFF;
    background-color: #AB2526;
    box-shadow: 0px 10px 20px rgba(0,0,0,.15);
}


/* FOOTER */

footer a:not(.btn) {
    font-weight: 600;
    display: inline-block;
    position: relative;
    color: #DE2B2B;
    transition: all .3s ease;
}

footer a:not(.btn):before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #DE2B2B;
    transition: all .3s ease;
}

footer a:not(.btn):before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

footer a:not(.btn):hover:before,
footer a:not(.btn):focus:before {
    background-color: #AB2526;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.footer-logo {
    width: 208px;
    margin-bottom: 1.75rem;
}

ul.sm-nav-footer {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.sm-nav-footer li {
	list-style-type: none;
	display: inline-block;
}

.sm-nav-footer li a {
    font-size: 1.25rem;
    padding: .5rem;
    color: #FFFFFF !important;
    transition: all .3s ease;
}

.sm-nav-footer li a:before {
    display: none;
}

.sm-nav-footer li a:hover,
.sm-nav-footer li a:focus {
    color: #CBD3DA !important;
    transition: all .3s ease;
}

ul.contact-links {
    padding: 0;
    margin: 0;
}

.contact-links li {
	list-style-type: none;
}

.contact-links li:first-of-type {
    border-top: 0;
}

.contact-links li a {
    font-size: 1rem;
    padding: .25rem 0;
    color: #FFFFFF;
    display: block;
    border-radius: 30px;
}

.contact-links li a:hover,
.contact-links li a:focus,
.contact-links li a:target,
.contact-links li a:active {
	color: #FFFFFF;
    background-color: rgba(255,255,255,.25);
    text-decoration: none;
}

ul.white-list {
    padding: 0;
    margin: 0;
}

.white-list li {
	list-style-type: none;
}

.white-list li a {
    font-size: .9rem;
    padding: .25rem 0;
    color: #FFFFFF;
    display: block;
}

.white-list li a:hover,
.white-list li a:focus,
.white-list li a:target,
.white-list li a:active {
	color: #FFFFFF;
}

.opacity-0 {
    opacity: 0 !important;
}

.bg-light {
	background-color: #F8F9FA !important;
}