:root {
    --color-primary: #80BD38;
    --color-secondary: #003E4B;
    --color-text-gray: #707070;
    --text-xs: 0.75rem;
    --text-sm: 0.95rem;
    --text-base: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.875rem;
    --text-3xl: 2.5rem;
    --text-4xl: 2.75rem;
    --text-5xl: 3rem;
    --rounded-sm: 0.25rem;
    --rounded: 0.5rem;
    --rounded-full: 9999px;
}
@media screen and (max-width: 1024px) {
     :root {
        --text-base: .9rem;
        --text-lg: 1rem;
        --text-xl: 1.25rem;
        --text-2xl: 1.5rem;
        --text-3xl: 2rem;
    }
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.mt-1 {
    margin-top: 1.75rem !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
}
input {
    font-family: 'DINPro-Regular', sans-serif;
}
section {
    margin: 0;
    padding: 0;
}
.custom-select {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--color-text-gray);
    font-size: var(--text-base);
    padding: 1.5rem 0;
    margin-right: 0.9rem;
    outline: none;
    width: 100%;
    overflow: hidden;
}
.custom-select:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--color-text-gray);
    position: absolute;
    right: 18px;
    top: 50%;
    bottom: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
}
.custom-select select {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: var(--text-base);
    border: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0 1.5rem;
    background-color: transparent;
    color: var(--color-text-gray);
    font-family: 'DINPro-Regular', sans-serif;
}
.custom-select select option {
    color: var(--color-text-gray);
}
table {
    border-collapse: collapse;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-spacing: 0;
    width: 100%;
}
.table-responsive {
    overflow-x: auto;
}
.table-responsive table {
    width: 100%;
    max-width: 100%;
}
.newsletter-wrap {
    background-color: var(--color-secondary);
    padding-top: 3rem;
    padding-bottom: 3.5rem;
    text-align: center;
}
.newsletter-wrap h3 {
    color: #fff;
    font-weight: bold;
    font-size: var(--text-2xl);
}
.newsletter-wrap_form {
    margin-top: 2rem;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.newsletter-wrap_form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.newsletter-wrap_form form .field-group {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.newsletter-wrap_form form .field-group label.error {
    text-align: left;
    display: block;
    margin-top: .25rem;
    color: red;
    font-size: var(--text-sm);
    top: 0;
    font-weight: bold;
}
.newsletter-wrap_form form input[type=email] {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    width: 100%;
    padding: .75rem 1.5rem;
    font-size: var(--text-base);
}
.newsletter-wrap_form form button {
    height: 2.95rem;
    margin-left: -.25rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    font-family: 'DINPro-Regular', sans-serif;
    font-size: var(--text-base);
    border-radius: unset;
}
.newsletter-wrap_form form button:hover {
    color: var(--color-secondary);
}
.news-wrap {
    background: rgba(229, 229, 229, 0.25);
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.news-wrap h3 {
    color: var(--color-secondary);
    font-size: var(--text-2xl);
    font-weight: bold;
    margin: 0 0 1.7rem 0;
}
.news-wrap_feed {
    margin-top: 1rem;
    overflow: hidden;
}
.news-wrap_feed-hold {
    margin-left: -1rem;
    margin-right: -1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.news-feed_item-hold {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
    max-width: 25%;
    padding: 1rem;
}
.news-feed_item-hold:hover .news-feed_item .news-feed_item-figure img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.news-feed_item-hold:hover .news-feed_item .news-feed_item-content h3 a {
    color: var(--color-primary);
}
.news-feed_item-hold:nth-child(1),
.news-feed_item-hold:nth-child(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
}
.news-feed_item-hold:nth-child(1) .news-feed_item,
.news-feed_item-hold:nth-child(2) .news-feed_item {
    min-height: 15.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-figure,
.news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-figure {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
    max-width: 40%;
    height: 100%;
    min-height: 15.75rem;
    position: relative;
}
.news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-figure:after,
.news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-figure:after {
    margin-top: -.45rem;
    position: absolute;
    z-index: 20;
    content: "";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 25px solid #fff;
}
.news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-figure img,
.news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-figure img {
    height: 100%;
    min-height: 15.75rem;
    -o-object-fit: cover;
    object-fit: cover;
}
.news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-content,
.news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 60%;
    flex: 1 0 60%;
    max-width: 60%;
    padding-top: 3rem;
}
.news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-content h3,
.news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-content h3 {
    font-size: var(--text-lg);
    font-weight: bold;
}
.news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-content .news-feed_content--actions,
.news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-content .news-feed_content--actions {
    max-width: 100%;
    right: 20px;
    left: 43.5%;
}
.news-feed_item {
    position: relative;
    background-color: #fff;
    height: 100%;
}
.news-feed_item-figure {
    height: 10.75rem;
    overflow: hidden;
}
.news-feed_item-figure img {
    height: 10.75rem;
    -o-object-fit: cover;
    object-fit: cover;
}
.news-feed_item-content {
    padding: 1rem 1.25rem 3rem 1.25rem;
}
.news-feed_item-content h5 {
    padding: 0;
    margin: 0;
    font-size: var(--text-xs);
    font-weight: bold;
    color: var(--color-text-gray);
}
.news-feed_item-content h3 {
    padding: 0;
    margin: .5rem 0 1.5rem 0;
    font-weight: bold;
    font-size: var(--text-base);
}
.news-feed_item-content h3 a {
    font-weight: bold;
    color: var(--color-secondary);
}
.news-feed_content--actions {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: .75rem;
    padding-bottom: 1.25rem;
    border-top: 1px solid #ddd
}
.news-feed_content--actions h4 {
    margin: 0;
    padding: 0;
    font-size: var(--text-xs);
    font-weight: bold;
    color: var(--color-text-gray);
}
.news-feed_content--actions a {
    font-size: var(--text-xs);
    color: var(--color-text-gray);
}
.gallery-wrap {
    background: rgba(229, 229, 229, 0.25);
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.gallery-wrap h3 {
    color: var(--color-secondary);
    font-size: var(--text-2xl);
    font-weight: bold;
    margin: 0 0 1.7rem 0;
}
.gallery-wrap_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1rem;
}
.gallery-wrap_title h3 {
    color: var(--color-secondary);
    font-size: var(--text-2xl);
    font-weight: bold;
    margin: 0;
}
.gallery-wrap_nav ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.gallery-wrap_nav ul li a {
    background-color: var(--color-primary);
    color: #fff;
    font-size: var(--text-base);
    padding: .75rem 1rem;
    margin-left: .75rem;
    text-transform: uppercase;
}
.gallery-wrap_nav ul li a.active {
    background-color: var(--color-secondary);
}
.gallery-wrap_feed {
    margin-top: 1rem;
    overflow: hidden;
}
.gallery-wrap_feed-hold {
    margin-left: -.75rem;
    margin-right: -.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.gallery-feed_item-hold {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
    max-width: 25%;
    padding: .75rem;
    position: relative;
}
.gallery-feed_item-hold:hover .gallery-feed_item .gallery-feed_item-figure img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery-feed_item-hold:hover .gallery-feed_item .gallery-feed_item-content h3 {
    color: var(--color-primary);
    font-weight: bold;
}
.gallery-feed_item {
    position: relative;
}
.gallery-feed_item-figure {
    height: 12.5rem;
    position: relative;
    overflow: hidden;
}
.gallery-feed_item-figure.video-item:before {
    content: "\e983";
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #FF0000;
    font-size: var(--text-5xl);
    z-index: 2;
}
.gallery-feed_item-figure img {
    height: 12.5rem;
    -o-object-fit: cover;
    object-fit: cover;
}
.gallery-feed_item-content h3 {
    padding: 0;
    margin: .5rem 0 1.5rem 0;
    font-size: var(--text-base);
    font-weight: bold;
    color: #000;
}
.filter-input_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 50%;
}
.stats-wrap {
    padding-bottom: 2rem;
    background-color: #fff;
}
.stats-wrap .container {
    overflow: hidden;
}
.stats-wrap_hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -1rem;
    margin-right: -1rem;
}
.stats-wrap_standings {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 60%;
    flex: 1 0 60%;
    max-width: 60%;
    padding-left: 1rem;
    padding-right: 1rem;
}
.stats-wrap_standings-filter {
    border: none;
    border-bottom: 2px solid #ddd;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}
.stats-wrap_standings-filter.custom-select:after {
    right: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--color-secondary);
}
.stats-wrap_standings-filter.custom-select select {
    padding-left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: var(--text-lg);
}
.stats-wrap_standings-hold {
    padding-top: 1.5rem;
}
.stats-table table {
    border: 0;
    font-size: var(--text-base);
}
.stats-table table th {
    text-align: left;
    color: var(--color-secondary);
}
.stats-table table th,
.stats-table table tr td {
    padding: 1rem;
    vertical-align: middle;
}
.stats-wrap_standings-table table tr:nth-child(even) td {
    background: rgba(229, 229, 229, 0.25);
}
.stats-wrap_standings-table.rugby-standings table tr td:nth-child(3) img {
    width: auto;
    height: 2rem;
    -o-object-fit: contain;
    object-fit: contain;
}
.stats-wrap_results {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
    max-width: 40%;
    padding-left: 1rem;
    padding-right: 1rem;
}
.stats-wrap_results-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 1.175rem;
    padding-bottom: 1.175rem;
    border-bottom: 2px solid #ddd
}
.stats-wrap_results-title h3 {
    margin: 0;
    padding: 0;
    font-size: var(--text-lg);
    font-weight: bold;
    color: var(--color-secondary);
}
.stats-wrap_results-nav {
    padding-left: 1rem;
}
.stats-wrap_results-nav a {
    padding-left: 1rem;
    font-size: var(--text-lg);
    color: var(--color-secondary);
    font-weight: bold;
    line-height: 1;
}
.stats-wrap_results-hold {
    padding-top: 1.5rem;
}
.stats-wrap_results-table table tr:nth-child(even) td {
    background: rgba(229, 229, 229, 0.25);
}
.stats-wrap_results-table table tr td:nth-child(3) img {
    height: 2rem;
    -o-object-fit: contain;
    object-fit: contain;
}
.sponsors-wrap {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background-color: #fff;
}
.sponsors-wrap_hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sponsors-wrap_item {
    margin-left: 1rem;
    margin-right: 1rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 250px;
    flex: 1 0 250px;
    max-width: 250px;
    height: 6.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #ddd;
}
.sponsors-wrap_item img {
    width: auto;
    position: relative;
    -o-object-fit: contain;
    object-fit: contain;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}
.team-wrap {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.team-wrap_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.team-wrap_header-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.team-wrap_header-title h3 {
    margin: 0;
    font-size: var(--text-2xl);
    font-weight: bold;
    color: #fff;
}
.team-wrap_header-title .filter-input_members {
    border: 1px solid #fff;
    width: 254px;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}
.team-wrap_header-title .filter-input_members.custom-select:after {
    border-top: 10px solid #fff;
}
.team-wrap_header-title .filter-input_members select {
    color: #fff;
}
.team-wrap_header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.team-wrap_header-nav a {
    padding-left: 1rem;
    font-size: var(--text-lg);
    color: #fff;
    font-weight: bold;
    line-height: 1;
}
.team-wrap_profiles {
    margin-top: 2rem;
}
.team-wrap_profiles .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
}
.team-wrap_profiles .owl-dots button {
    margin-left: .25rem;
    margin-right: .25rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: var(--rounded-full);
    background-color: var(--color-secondary);
}
.team-wrap_profiles .owl-dots button.active {
    background-color: #fff;
}
.team-wrap_profiles .team-member_item {
    margin-bottom: 1rem;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.45);
}
.team-wrap_profiles .team-member_item .team-member_item-figure {
    height: 10rem;
    overflow: hidden;
}
.team-wrap_profiles .team-member_item .team-member_item-figure img {
    -o-object-fit: contain;
    object-fit: contain;
}
.team-wrap_profiles .team-member_item .team-member_item-content {
    padding: 1rem 1.25rem 2rem 1.25rem;
}
.team-wrap_profiles .team-member_item .team-member_item-content h3 {
    margin: 0 0 .5rem 0;
    font-size: var(--text-lg);
    font-weight: bold;
    color: var(--color-secondary);
}
.team-wrap_profiles .team-member_item .team-member_item-content h4 {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--color-secondary);
    font-weight: normal;
}
.intro-sliders {
    background-color: #fff;
    padding-top: 2rem;
    padding-bottom: 1rem;
}
.intro-sliders .container {
    overflow: hidden;
}
.intro-sliders_hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -1rem;
    margin-right: -1rem;
}
.intro-sliders_hold .intro-sliders_headlines,
.intro-sliders_hold .intro-sliders_highlights {
    padding-left: 1rem;
    padding-right: 1rem;
}
.intro-sliders_hold .intro-sliders_headlines {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 70%;
    flex: 1 0 70%;
    max-width: 70%;
}
.intro-sliders_hold .intro-sliders_highlights {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 30%;
    flex: 1 0 30%;
    max-width: 30%;
}
.headlines-slider_item {
    border-bottom: 8px solid var(--color-primary);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    height: 30rem;
    margin-bottom: 1rem;
    position: relative;
}
.headlines-slider_item .headlines-slider_item-content {
    color: #fff;
    position: absolute;
    bottom: 63px;
    left: 43px;
    right: 43px;
}
.headlines-slider_item .headlines-slider_item-content h4 {
    font-size: var(--text-xs);
    font-weight: normal;
    text-transform: uppercase;
    margin: 0 0 .25rem 0;
}
.headlines-slider_item .headlines-slider_item-content h3 {
    font-weight: bold;
    font-size: var(--text-2xl);
    margin: 0 0 .75rem 0;
}
.headlines-slider_item .headlines-slider_item-content h3:after {
    content: "";
    width: 3rem;
    height: .125rem;
    background: rgba(255, 255, 255, .8);
    display: block;
    margin-top: .5rem;
}
.headlines-slider_item .headlines-slider_item-content p {
    font-size: var(--text-sm);
}
.headlines-slider_item .headlines-slider_item-content a {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    font-size: var(--text-xs);
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.headlines-slider_item .headlines-slider_item-content a:hover {
    background-color: var(--color-secondary);
    color: #fff;
}
.headlines-slider_item .headlines-slider_item-content a:after {
    content: "\e906";
    font-family: 'icomoon' !important;
    color: #fff;
    font-size: var(--text-xs);
    margin-left: .75rem;
}
.headlines-slider .owl-dots {
    position: absolute;
    bottom: 62px;
    left: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.headlines-slider .owl-dots button {
    margin-right: .5rem;
    width: .75rem;
    height: .75rem;
    background-color: var(--color-primary);
    display: block;
    border-radius: var(--rounded-full);
}
.headlines-slider .owl-dots button.active {
    background-color: #fff;
}
.highlights-slider {
    height: 30rem;
    overflow: hidden;
    border-bottom: 8px solid var(--color-primary);
}
.highlights-slider_header {
    padding-left: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--color-secondary);
}
.highlights-slider_header h3 {
    margin: 0;
    color: #fff;
    font-size: var(--text-base);
    font-weight: bold;
}
.highlights-slider_content-hold {
    position: relative;
}
.highlights-slider_content-hold-items {
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.highlights-slider_content-hold-items .highlights-slider_content-item {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
    background-color: #fff;
}
.highlights-slider_content-hold-items .highlights-slider_content-item img {
    height: 4rem;
    -o-object-fit: contain;
    object-fit: contain;
}
.highlights-slider_content-hold-items .highlights-slider_content-item h3 {
    margin: 1.7rem 0 0 0;
    font-size: var(--text-lg);
    font-weight: bold;
}
.highlights-slider_content-hold-items .highlights-slider_content-item h4 {
    margin: .5rem 0 0 0;
    font-size: var(--text-base);
    font-weight: bold;
}
.highlights-slider_content-hold-items .highlights-slider_content-item a {
    display: inline-block;
    font-size: var(--text-xs);
    background-color: var(--color-secondary);
    color: #fff;
    padding: .5rem 1.25rem;
    margin-top: 1.7rem;
    text-transform: uppercase;
}
.highlights-slider_content-hold-items .highlights-slider_content-item a:hover {
    background-color: var(--color-primary);
}
.highlights-slider_content .highlights-slider_content-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 22;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.highlights-slider_content .highlights-slider_content-nav a {
    background-color: var(--color-primary);
    color: #fff;
    padding: .5rem .75rem;
}
.highlights-slider_content .highlights-slider_content-nav a:hover {
    background-color: var(--color-secondary);
}
.highlights-slider_content-notice {
    background-color: var(--color-secondary);
    text-align: center;
    padding: 2.5rem 2rem;
    height: 100%;
}
.highlights-slider_content-notice h3 {
    margin: 0;
    color: #fff;
    font-size: var(--text-base);
    line-height: 1.5;
}
.match-results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: .75rem;
    padding-right: .75rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.match-results:nth-child(odd) {
    background: rgba(229, 229, 229, 0.25);
}
.match-results_status span {
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--color-secondary);
    font-size: var(--text-sm);
    color: #fff;
    display: block;
    text-align: center;
    line-height: 2.25;
    letter-spacing: 2px;
}
.match-results_details {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.match-team_result {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 48%;
    flex: 1 0 48%;
    max-width: 48%;
    font-size: var(--text-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.match-team_result.away-team {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.match-team_result.home-team span:first-child {
    padding-right: 1rem;
}
.match-team_result.away-team span:first-child {
    padding-left: 1rem;
}
.match-team_result-divider:after {
    content: "-";
    font-size: var(--text-lg);
    padding-right: 1rem;
    padding-left: 1rem;
}
.match-results_title h3 {
    margin: 0;
    padding: 0;
    font-size: var(--text-lg);
    font-weight: bold;
    color: var(--color-secondary);
}
.header-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-intro_title {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 21rem;
            flex: 1 0 21rem;
    max-width: 21rem;
}
.header-intro_title h2 {
    font-size: var(--text-xl) !important;
    color: var(--color-secondary);
}
.header-intro_desc {
    padding-left:  2rem;
}
.cat-links {
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}
.cat-links_inner a {
    display: inline-block;
    width: calc(33.3333% - .25rem);
    height: 20rem;
    position: relative;
    overflow: hidden;
}
.cat-links_inner a:nth-child(odd) {
    background-color: var(--color-secondary);
}
.cat-links_inner a:nth-child(even) {
    background-color: var(--color-primary);
}
.cat-links_inner a:hover {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
}
.cat-links_inner a .cat-item {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    display: block;
    -webkit-transition: all .9s ease-in-out;
    -o-transition: all .9s ease-in-out;
    transition: all .9s ease-in-out;
}
.cat-links_inner a .cat-item span {
    color: #ffffff;
    font-size: var(--text-5xl);
    display: block;
    margin-bottom: 1.5rem;
}
.cat-links_inner a .cat-item h3 {
    font-size: var(--text-xl);
    color: #ffffff;
}
/**********************************
Media Queries
**********************************/

@media screen and (max-width: 1024px) {
    .newsletter-wrap_form {
        max-width: 100%;
    }
    .news-feed_item-hold:nth-child(1),
    .news-feed_item-hold:nth-child(2) {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
    }
    .news-feed_item-hold {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 50%;
    }
    .filter-input_wrap {
        max-width: 100%;
    }
    .gallery-feed_item-hold {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 33.3333%;
        flex: 1 0 33.3333%;
        max-width: 33.3333%;
    }
    .stats-wrap_hold {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .stats-wrap_standings {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        margin-bottom: 3rem;
    }
    .stats-wrap_results {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
    }
    .intro-sliders_hold {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .intro-sliders_hold .intro-sliders_headlines {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
    }
    .intro-sliders_hold .intro-sliders_highlights {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
    }
    .highlights-slider {
        height: auto;
    }
    .sponsors-wrap_hold {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .sponsors-wrap_item {
        margin-bottom: 2rem;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        height: auto;
    }
    .sponsors-wrap_item img {
        max-height: 5rem;
        top: 0;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .cat-links_inner a {
        height: 10rem;
    }
    .header-intro {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .header-intro_title {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
                flex: 1 0 100%;
        max-width: 100%;
    }
    .header-intro_desc {
        padding-left: 0;
    }
}
@media screen and (max-width: 600px) {
    .newsletter-wrap h3 {
        font-size: var(--text-lg);
    }
    .news-feed_item-hold:nth-child(1) .news-feed_item,
    .news-feed_item-hold:nth-child(2) .news-feed_item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
    }
    .news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-figure,
    .news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-figure {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        min-height: auto;
    }
    .news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-figure img,
    .news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-figure img {
        height: auto;
        min-height: auto;
    }
    .news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-content,
    .news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-content {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
        padding-top: 1rem;
    }
    .news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-content .news-feed_content--actions,
    .news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-content .news-feed_content--actions {
        max-width: 100%;
        right: 20px;
        left: 20px;
    }
    .news-feed_item-hold:nth-child(1) .news-feed_item .news-feed_item-figure::after,
    .news-feed_item-hold:nth-child(2) .news-feed_item .news-feed_item-figure::after {
        display: none;
    }
    .news-feed_item-hold {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
    }
    .filter-input_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .custom-select {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .custom-select:last-child {
        margin-bottom: 0;
    }
    .gallery-feed_item-hold {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        max-width: 100%;
    }
    .team-wrap_header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .team-wrap_header-title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
    .team-wrap_header-title h3 {
        margin-bottom: 1.7rem;
    }
    .team-wrap_header-title .filter-input_members {
        margin: 0;
    }
    .team-wrap_header-nav {
        display: none
    }
    .headlines-slider_item .headlines-slider_item-content {
        left: 23px;
        right: 23px;
    }
    .headlines-slider .owl-dots {
        left: 23px;
    }
    .cat-links_inner a .cat-item span {
        font-size: var(--text-2xl);
    }
    .cat-links_inner a .cat-item h3 {
        font-size: var(--text-base);
    }
}