/* GENERAL */

.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);
}

.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: #FFF;
}

.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 {
    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;
    }
}

.favicon-circle {
    display: inline-block;
    background: #FFF;
    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: #000;
    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: 7.5px;
    margin-left: -50%;
}

.divided-text:after {
    left: 7.5px;
    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: #FFF;
}

.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: #000;
}

.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;
}

.px-15px {
    padding-left: 15px;
    padding-right: 15px;
}

.py-15px {
    padding-top: 15px;
    padding-bottom: 15px;
}

.pt-10px {
    padding-top: 10px;
}

.pt-15px {
    padding-top: 15px;
}

.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 {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

@media (min-width: 576px) {
    .row-small > .col-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 {
        -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 {
        -ms-flex: 0 0 75% !important;
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }
}

@media (min-width: 1200px) {
    .row-small > .col-12 {
        -ms-flex: 0 0 66.666667% !important;
        flex: 0 0 66.666667% !important;
        max-width: 66.666667% !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;
    }
}

@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-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;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

@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: #000;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

#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;
}

.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;
}

.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;
    }
}

strong, b {
    font-weight: 600;
}

.eyebrow {
    color: #6C757D;
    font-size: 12.5px;
    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);
}

.spaced-list li {
    line-height: 1.25;
    padding: .25rem 0;
}


/* COLORS

Red: #DE2B2B;
Dark Red: #AB2526;
Black: #000;
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-black {
    background-color: #000;
}

.text-black {
    color: #000;
}

.bg-dark-black {
    background-color: #000;
}

.text-dark-black {
    color: #000;
}

.bg-grey {
    background-color: #DBDBDB;
}

.text-grey {
    color: #DBDBDB;
}

.bg-trans {
    background-color: transparent;
}

.bg-black {
    background-color: #000;
}

.text-black {
    color: #000 !important;
}

.bg-black hr,
.bg-black-gradient hr,
.bg-red hr {
    border-top: 1px solid rgba(255,255,255,.1);
}


/* BUTTONS */

.btn {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn.text-underline {
    text-decoration: underline;
}

.btn-rounded {
    border-radius: 30px;
}

.btn-reg {
    padding: .75rem 1.5rem;
    border-radius: 30px;
}

.btn .fa-external-link-alt {
    margin-left: 3px;
    margin-top: 5px;
    vertical-align: top;
    font-size: 12px;
}

.btn-red {
    background-color: #DE2B2B;
    color: #FFF;
}

.btn-red:hover,
.btn-red:focus,
.btn-red:target,
.btn-red:active {
    background-color: #AB2526;
    color: #FFF;
}

.btn-red:focus,
.btn-red:target,
.btn-red:active {
    box-shadow: 0 0 0 0.2rem rgba(171,37,38,.25);
}

.btn-black {
    background-color: #000;
    color: #FFF;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:target,
.btn-black:active {
    background-color: #343A40;
    color: #FFF;
}

.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: #000;
    border: 1px solid #000;
}

.btn-outline-black:hover,
.btn-outline-black:focus,
.btn-outline-black:target,
.btn-outline-black:active {
    background-color: #000;
    color: #FFF;
    border: 1px solid #000;
}

.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: #FFF !important;
}

.btn-outline-red.focus,
.btn-outline-red:focus,
.btn-outline-red:target,
.btn-outline-red:active {
    background-color: #DE2B2B;
    color: #FFF !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;
}


/* NAVIGATION */

@media (min-width: 1200px) {
    .nav-offset {
        margin-top: -77px;
    }

    .nav-pad-offset {
        padding-top: 77px;
    }
}

#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: #FFF;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all .3s ease;
}

a.navbar-brand {
    color: #FFF;
    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: #000;
}

.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: #000;
    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: #FFF;
    box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}

.dropdown-header {
    color: #000;
    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;
}

@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;
    }

    #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: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.show a.nav-link:before {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -18px;
        width: 0;
        height: 0;
        content: '';
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 15px solid #DE2B2B;
        z-index: 1;
        transition: all .3s ease;
    }

    .dropdown-menu {
        margin: 0;
        min-width: 275px;
        /* box-shadow: 0px 10px 20px rgba(0,0,0,.1); */
    }

    .dropdown:last-of-type > .dropdown-menu {
	    left: auto;
	    right: 0;
	}
}

@media (max-width: 1199.98px) {
    .navbar {
        padding: 0;
        box-shadow: 0px 10px 20px rgba(0,0,0,.1);
    }

    a.navbar-brand {
        margin: 10px 15px;
    }

    .navbar-brand img {
        width: 140px;
        height: 50px;
        /* 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 15px !important;
        border-top: 0 !important;
    }

    .dropdown.show :after {
    	transform: rotate(-180deg);
    	transition: all .1s ease-in-out;
    }

    .dropdown.show .dropdown-toggle::before {
        position: absolute;
        left: .75rem;
        bottom: 0;
        width: 0;
        height: 0;
        content: '';
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 10px solid #DE2B2B;
        z-index: 1;
        transition: all .3s ease;
    }

    .dropdown.show .nav-link {
        color: #000;
        outline: none;
    }

    .dropdown-menu {
        margin: 0;
    }

    .dropdown-item .fa-external-link-alt {
        float: right;
        font-size: 8px;
        margin-left: 4px;
        margin-top: 4px;
    }

    .dropdown-toggle::after {
        position: absolute;
        right: .4rem;
        top: 1.25rem;
    	font-size: 1rem;
    }
}

.nav-item.nav-link-active a.nav-link {
    color: #555;
    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 1rem;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 100%;
}

.navbar-toggler:focus {
    outline: none;
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    background-color: #000;
    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-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: #FFF !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: #000 !important;
        background: #FFF;
    }

    /* .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: #FFF;
    border: 1px solid #FFF;
    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: #FFF;
    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;
}


/* HOME */

.link-icon {
    font-size: 12px;
    font-weight: 700 !important;
    color: #000;
    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: #000 !important;
}

.link-icon:hover,
.link-icon:focus {
    color: #000;
    opacity: .5;
    text-decoration: none;
}

footer .link-icon span {
    color: #FFF !important;
}


/* SWIPERS */

.swiper-container {
    padding: 0 15px;
	margin: 0 -15px;
}

.swiper-wrapper {
	margin: 0 0 30px 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: #FFF !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: 10px;
    height: 20px;
    background-size: 8px 20px;
    background-color: transparent;
    border-radius: 100%;
    padding: 10px;
    border: 0;
    transition: all .3s ease;
}

.swiper-button-prev:hover,
.swiper-button-prev:focus,
.swiper-button-next:hover,
.swiper-button-next:focus {
    background-color: transparent;
    border: 0;
}

.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,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.full,
.swiper-button-next.full {
    width: 10px;
    height: 20px;
    background-size: 8px 20px;
    background-color: #FFF;
    border-radius: 100%;
    padding: 15px;
    border: 0;
    transition: all .3s ease;
}

.swiper-button-prev.full,
.swiper-container-rtl .swiper-button-next.full {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23DE2B2B'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.full,
.swiper-container-rtl .swiper-button-prev.full {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23DE2B2B'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: -webkit-focus-ring-color auto 1px;
}

.swiper-pagination-bullet {
    background: #FFF;
    border: 1px solid #DE2B2B;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #DE2B2B;
    border: 1px solid #DE2B2B;
    opacity: 1;
}

.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);
}

.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: #FFF;
    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: #FFF;
    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: #000;
    border-radius: 0;
    border-bottom: 1px solid #FFF !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: #FFF;
    color: #000;
    padding: .25rem;
}

.card-zoom {
    position: relative;
    overflow: hidden;
}

.card-zoom a {
    text-decoration: none;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: linear-gradient(-180deg, rgba(0,0,0,0),rgba(0,0,0,.5));
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.overlay-text .icon {
    color: #FFF;
    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 h2 {
    color: #FFF;
    margin-bottom: .5rem;
    text-shadow: 0px 10px 20px rgba(0,0,0,.25);
}

.overlay-text p {
    color: #FFF;
    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 #FFF;
}

/* .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);
}


/* 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: #FFF !important;
    background-color: #000 !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: #FFF !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 {
    color: #FFF;
    text-align: center;
    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;
    -webkit-background-size: contain !important;
    -moz-background-size: contain !important;
    -o-background-size: contain !important;
    background-size: contain !important;
    background-color: #000;
}

.subpage-container.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.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;
}

.subpage-container .subpage-text .eyebrow {
    color: #F8F9FA;
}

.subpage-container a {
    color: #FFF !important;
}

@media (max-width: 1199.98px) {
    .subpage-container .subpage-text {
        padding: 3rem 15px;
    }
}

.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: #FFF;
    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: #FFF;
    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: #000;
    padding: 10px;
}

.nav-tabs .nav-link {
    border-radius: 30px;
    border: 0;
}

.subpage-tabs li a {
    color: #FFF !important;
    padding: .5rem .75rem;
    margin: 5px;
}

.subpage-tabs li a.active {
    color: #DE2B2B !important;
    text-decoration: none;
}


/* 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: #FFF;
    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: #FFF;
    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 #000;
	outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
    box-shadow: none;
}

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: #444;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-control {
    background-color: #FFF;
    border-radius: 0px;
    border: 1px solid #DEE2E6;
}

.custom-select {
    background-color: #FFF;
    border-radius: 0px !important;
    border: 1px solid #DEE2E6;
}

.form-control:focus,
.form-control.focus,
.custom-select:focus,
.custom-select.focus {
	border: 1px solid #000;
    background-color: #FFF;
	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: #FFF;
    background: #000;
    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: #FFF;
    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;
}


/* TO TOP */

.scroll-top {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    z-index: 9;
    background-color: #DE2B2B;
    color: #FFF;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    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: #FFF;
    background-color: #AB2526;
    box-shadow: 0px 10px 20px rgba(0,0,0,.15);
}


/* FOOTER */

.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.75rem;
    padding: .5rem;
    color: #FFF !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: #FFF;
    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: #FFF;
    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: #FFF;
    display: block;
}

.white-list li a:hover,
.white-list li a:focus,
.white-list li a:target,
.white-list li a:active {
	color: #FFF;
}

.opacity-0 {
    opacity: 0 !important;
}

.bg-light {
	background-color: #F8F9FA !important;
}


/* USED FOR HIDING BODY UNTIL JS LOADS - LEAVE AT THE END */

body {
    opacity: 0;
}
