/*

	Main Stylesheet: LCCA (LCCA)
	Author: CFRONT (SABN)
	CDate: 14/08/2023

*/

* {
	box-sizing: border-box;
}

html {
	overflow-y:scroll;
    overflow-x: hidden;
}

html, body {
	padding:0;
	margin:0;
    font-size:16px;
}

body {
    font-family: soleil, sans-serif;
    background:#000000;
    color:#FFFFFF;
}

p {
	line-height:24px;
}

/* GENERAL */

.flex {
	display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.inner {
	width:100%;
	padding: 0 16px;
    max-width: 1260px;
    margin: 0 auto;
}

#page {
	height:100%;
}

h1, h2, h3, h4, h5 {
	font-weight:600;
}

h1 {
	font-weight: 900;
    font-size: 48px;
    max-width: 960px;
    margin: 48px 0 12px 0;
}

h2 {
    font-size: 32px;
    max-width: 960px;
    margin: 36px 0;
}

h3 {
    font-size: 26px;
    max-width: 960px;
    margin: 36px 0;
}

h4 {
    font-size: 24px;
    max-width: 660px;
    margin: 32px 0;
}

header {
    position: fixed;
    top: 32px;
    right: 32px;
    bottom: 32px;
    left: 32px;
    pointer-events: none;
    width: calc(100vw - 72px);
    z-index:3;
}

header .logo {
    display: block;
    width: 82px;
    margin-left: 10px;
    --animate-duration: 1s;
}

header .logo svg {
    pointer-events:none;
    display:block;
    width:100%;
    height:100px;
}

.header-h::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    left: 98px;
    top: 0;
    background: #333333;
    position: absolute;
}

.header-h {
    display:flex;
    border:1px solid #333333;
    pointer-events: all;
    z-index: 10;
    position: relative;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

nav {
    color:#FFFFFF;
    display:flex;
    justify-content:space-between;
    flex-grow:1;
    margin-left:60px;
    align-items: center;
}


nav ul,
nav li {
    margin:0;
    padding:0;
    list-style-type:none;
}

nav ul {
    display:flex;
    align-items:center;
}

nav > ul > li {
    position:relative;
}

nav a.sponsor-logo {
    display:block;
    width:50%;
}

nav a.sponsor-logo img {
    display:block;
    width:140px;
    margin:0 auto;
}

nav a {
    display:block;
    color:#FFFFFF;
    text-decoration:none;
    padding:16px;
    font-weight:600;
}

.content a {
    word-break:break-all;
}

nav a:hover,
.nav-item:hover {
    color:#B31983;
    text-decoration:none;
    transition:0.5s;
}

.snav {
    display:none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(61,0,42);
background: -moz-linear-gradient(180deg, rgba(61,0,42,1) 0%, rgba(179,25,131,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(61,0,42,1) 0%, rgba(179,25,131,1) 100%);
background: linear-gradient(180deg, rgba(61,0,42,1) 0%, rgba(179,25,131,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3d002a",endColorstr="#b31983",GradientType=1);
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    width:200px;
}

.has-snav:hover + .snav,
.snav:hover {
    display:flex;
}

.snav::after {
    content: "";
    position: absolute;
    top: -12px;
    width: 100%;
    left: 12px;
    height: 12px;
    background: none;
}

.snav::before {
    content: "";
    position: absolute;
    top: -12px;
    width: 0;
    left: 12px;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 12px 10px;
    border-color: transparent transparent #3d002a transparent;
}

.snav li,
.snav li a {
    width:100%;
}

.snav a:hover {
    background:#3d002a;
    color:#FFFFFF;
}

.header-v {
    position: absolute;
    top: 0;
    display: flex;
    border: 1px solid #333333;
    height: 100%;
    left: 0;
    width: 100px;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: all;
    z-index:9;
}

.header-v .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.mobile-nav a,
.header-v .social a {
    display:block;
    margin:12px 0;
    text-decoration:none;
}

.mobile-nav a svg,
.header-v .social a svg {
    fill:#FFFFFF;
    width: 24px;
    height: 24px;
    transition:0.5s;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-bottom: 32px;
    width: 100%;
}

.nav-close .nav-bar:nth-of-type(1) {
    transform: rotate(45deg) translate(5px, 4px);
}
.nav-close .nav-bar:nth-of-type(2) {
    transform: rotate(-45deg) translate(3px, -2px);
}

.nav-item {
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right: 32px;
}

.header-v .social a:hover svg {
    fill:#B31983;
}

main {
    min-height:1200px;
    margin-left:200px;
    margin-top:200px;
}

.col-50 {
    width:50%;
}

.flex-container {
    display: flex;
    align-items: center;
}

.hero {
    align-items: center;
}

.event-section.article a,
.news-item a,
.feature-item a,
.content a,
.race-preview a,
.race-report a,
a.text-link {
    color:#B31983;
}

.event-section.article a:hover,
.news-item a:hover,
.feature-item a:hover,
.content a:hover,
.race-preview a:hover,
.race-report a:hover,
a.text-link:hover {
    color:#3d002a;
}

.feature-item .link-button > span {
    font-size:13px;
}

.feature-item .link-button {
    margin-top:36px;
    padding: 6px 12px;
}

.feature-item .text {
    padding-right:32px;
    max-width: 360px;
}

table {
    margin: 32px 0;
    border-collapse: collapse;
    width: 90%;
}

table th,
table td {
    border: 1px solid #333333;
    padding: 16px;
}

.sponsors img {
    display:block;
    width:100%;
}


/* 
    EVENTS
*/

.hi-type {
    font-size:14px;
    font-weight:500;
    border-bottom:1px solid #232323;
    padding:16px 0;
    position:relative;
    width:90%;
}

.hi-type::after {
    content:"";
    display:block;
    width:12.5%;
    min-width:32px;
    height:4px;
    background:#B31983;
    position:absolute;
    right:0;
    bottom:0;
}

.hi-round {
    font-size:18px;
    font-style:italic;
    padding:16px 0;
}

.hi-round .league {
    font-weight:900;
    margin-right:10px;
    
}

.hi-round .round {
    margin-right:24px;
    font-weight:300;
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin: 36px 0;
    margin: 0 0 24px 0;
    line-height: 54px;
    max-width: 640px;
}

.hero h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 36px 0;
    line-height: 54px;
}

.location-info {
    font-size:36px;
    font-style:italic;
}

.event-date {
    font-size:36px;
    font-weight:700;
    text-transform:capitalize;
    margin: 32px 0 16px 0;
}

.link-button {
    display:block;
    padding:8px 16px;
    position:relative;
    width:fit-content;
    text-decoration:none;
    margin: 16px 0;
    transition:0.5s;
}

.link-button > .button-pgram-shape {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    transform: skew(-20deg);
    background:#000000;
}

.link-button > span,
.link-button > svg {
    position: relative;
    z-index: 1;
}

.link-button > svg {
    width:17px;
    position:relative;
    top:3px;
    margin-left:12px;
}

.link-button.download > svg {
    transform:rotate(90deg);
}

.link-button.pink > .button-pgram-shape {
    color:#FFFFFF;
    background:#B31983;
    transition:0.5s;
}

.link-button.pink:hover > .button-pgram-shape {
    color:#FFFFFF;
    background:#3d002a;
}

.link-button.grey > .button-pgram-shape {
    color:#FFFFFF;
    background:#666666;
    transition:0.5s;
}

.link-button.grey:hover > .button-pgram-shape {
    color:#FFFFFF;
    background:#B31983;
    transition:0.5s;
}

.link-button.purple > .button-pgram-shape {
    color:#FFFFFF;
    background:#3d002a;
    transition:0.5s;
}

.link-button.purple:hover > .button-pgram-shape {
    color:#FFFFFF;
    background:#B31983;
    transition:0.5s;
}

.link-button.purple > span,
.link-button.purple > svg,
.link-button.grey > span,
.link-button.grey > svg,
.link-button.pink > span,
.link-button.pink > svg {
    color: #FFFFFF;
    fill: #FFFFFF;    
}


.page-hero .link-button,
.hero .link-button {
    margin: 32px 0 0 0;
}

.controls {
    display:flex;
    position: relative;
    z-index: 0;
}

.hero-item-content {
    width:60%;
    padding-right: 64px;
}

.hero-item-image {
    width:40%;
    position:relative;
}

.event-image-overlay-x,
.hero-image-overlay-x {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 140%;
    top: -30%;
    z-index:2;
}

.event-image-overlay-x.ekcx-logo,
.hero-image-overlay-x.ekcx-logo {
position: absolute;
    top: 0;
    left: 0%;
    width: 90%;
    height: 90%;
    top: -10%;
    transform: rotate(-15deg);
    z-index: 2;
}

.hero .intro {
    width:70%;
    max-width: 480px;
}

.event-image-overlay-x {
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    top: -10%;
}

event-image-overlay-x svg,
.hero-image-overlay-x svg {
    width:100%;
    height:100%;
}

.hero-item-image img {
    display:block;
    width:100%;
    margin-bottom:20%;
    position:relative;
}

.hero-item-image::after {
    content:"";
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    z-index:1;
}

.item-label {
    font-style:italic;
}

.item-label {
    display:block;
}

.organiser {
    margin:32px 0;
}

.organiser .item-label {
    margin-bottom:12px;
}

.organiser-name {
    color:#B31983;
}

.events-list .controls {
    justify-content:flex-end;
}

.event-item {
    color:#888888;
    text-decoration:none;
    display:grid;
    grid-template-columns: 1fr 3fr 2fr;
    align-items: baseline;
    border-top:1px solid #232323;
    padding-bottom: 16px;
    padding-right: 32px;
    transition:0.5s;
    margin-right: 64px;
}

.sponsor-logo-grid,
.feature-grid {
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 32px;
    margin-right:64px;
}

.partners-grid {
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 48px;
    row-gap: 48px;
    margin:64px 64px 64px 0;
    align-items: center;
}

.partners-grid a {
    display:block;
    width:100%;
    max-width:300px;
    margin: 0 auto;
}

.partners-grid img,
.partners-grid svg {
    display:block;
    max-width: 100%;
    max-height: 120px;
    margin: auto;
}

.event-item.results,
.event-item.next-event {
    color:#FFFFFF;
}

.event-item.past {
    color:#333333;
}

.event-item:hover {
    color:#FFFFFF;
}

.event-item.past:hover {
    color:#666666;
}

.event-item:first-of-type {
    border-top:none;
}

.event-item .event-date {
    font-size:19px;
}

.event-item h3 {
    font-size:24px;
    margin:0 0 0 0;
}

.event-item .location-info {
    font-size:19px;
}

.event-item .hi-round {
    font-size:15px;
}

.feature-item {

}

.race-preview {
    margin:32px 0;
    padding-right:64px;
}

.content img,
.race-preview img,
.race-preview iframe {
    display:block;
    width:80%;
    margin:64px auto;
}

.news-item,
.faq-item h3,
.features h2,
.content h2,
.event-section h2 {
    border-bottom:1px solid #232323;
    position:relative;
    padding-bottom:16px;
}

.faq-item {
    margin-bottom:64px;
}

.answer {
    width:80%;
}

.news-item {
    position:relative;
    max-width:960px;
    transition:0.5s;
}

.news-item::before {
    content:"";
    display:block;
    width:0;
    height:1px;
    background:#B31983;
    position:absolute;
    bottom:0;
    left:0;
    transition:0.5s;
}

.news-item:hover::before {
    width:100%;
}

.event-section.article {
    max-width: 960px;
}

.event-section.article img {
    display:block;
    width:100%;
}

.news-item::after,
.faq-item h3::after,
.features h2::after,
.content h2::after,
.event-section h2::after {
    content:"";
    display:block;
    width:12.5%;
    min-width:32px;
    height:4px;
    background:#B31983;
    position:absolute;
    right:0;
    bottom:0;
}

.race-info-grid {
    display:grid;
    grid-template-columns: 2fr 1fr;
    align-items: baseline;

}

table.schedule td div {
    display:none;
}

section.content {
    padding-right:64px;
    margin: 64px 0;
}

article .article-hero img {
    display:block;
    margin:0 0 2rem 0;
}

.grid {
    display:grid;
    gap:32px;
}

.g-2 {
    grid-template-columns:1fr 1fr;
}

.article-date {
    display:block;
    font-size:1rem;
    font-weight: 200;
    color: #999999;
}

.precis {
    max-width:960px;
    font-weight:200;
    margin:1rem 0;
}

.news-item h2 {
    margin-bottom:0;
}

section.content .text {
    font-weight:300;
    width:80%;
}

section.content .link-button {
    margin-top:32px;
}

.stuff-item {
    display:grid;
    grid-template-columns: 60% 40%;
    align-items: center;
}

.stuff-item img {
    display:block;
    width:100%;
    margin:24px auto;
}

.stuff-item-image {
    position:relative;
    overflow: visible;
}

.stuff-item-image-overlay-x {
    position: absolute;
    top: 0;
    right: 5%;
    width: 100%;
    height: 100%;
    top: 0%;
}

.stuff-item-image-overlay-x svg {
    width: 100%;
    height: 100%;
}

.stuff-content {
    padding-right:64px;
}

.stuff-content h2 {
    margin:12px 0 4px 0;
}

.stuff-content .hi-round {
    font-size:15px;
    padding:0 0 16px 0;
    font-weight:200;

}

.stuff-precis {
    margin-left: 64px;
    padding: 32px 0;
    max-width: 70%;
    font-weight: 300;
    position: relative;
    margin-top: 16px;
}

.stuff-precis::after {
    content:"";
    display:block;
    position:absolute;
    top:0px;
    left:0;
    width:200px;
    background:#3d002a;
    height:3px;
}

.sponsors {
    padding: 0 0 86px 0;
}

.sponsors h2,
.partners h2 {
    font-style:italic;
    text-align:center;
    position:relative;
    max-width:calc(100% - 64px);
    z-index:1;
    margin: 36px 0 48px 0;
}

.rte {
    max-width:840px;
}
.item-grid {
    display: grid;
    grid-gap: 32px;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
}

.grid-item h2 {
    font-size:2rem;
    margin:0 0 16px 0;
}

.grid-item {
    border-top: 1px solid #232323;
    border-bottom: 1px solid #232323;
    position: relative;
    padding: 24px 0;
}

.grid-item::after {
    content: "";
    display: block;
    width: 12.5%;
    min-width: 32px;
    height: 4px;
    background: #B31983;
    position: absolute;
    right: 0;
    bottom: 0;
}

.partners h2 span,
.sponsors h2 span {
    display: inline-block;
    padding: 0 56px 0 42px;
    background: #000000;
    position: relative;
    z-index: 2;
}

.partners h2::after,
.sponsors h2::after {
    content:"";
    display:block;
    position:absolute;
    width:100%;
    height:2px;
    background:#FFFFFF;
    left:0;
    top:50%;
    margin-top:-1px;
}

footer {
    padding:128px 64px 32px 232px;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(179,25,131,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(179,25,131,1) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(179,25,131,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#b31983",GradientType=1);
    position:relative;
    overflow: hidden;
}

.footer-nav a {
    display:block;
    color:#FFFFFF;
    text-decoration:none;
    margin:8px 0;
    font-weight:600;
    font-size:24px;
}

.footer-nav a:hover {
    display:block;
    color:#FFFFFF;
    text-decoration:underline;
}

.footer-x svg {
    width: 75vw;
    height: 75vw;
}

.footer-base {
    display:flex;
    justify-content:space-between;
    padding:32px 32px 32px 0;
    position:relative;
    z-index:1;
    font-size: 14px;
}

.footer-base a {
    color:#FFFFFF;
    text-decoration:none;
    display:inline-block;
    margin:0 12px;
}

.footer-base a:hover {
    color:#FFFFFF;
    text-decoration:underline;
}

.footer-x {
    position: absolute;
    right: -15vw;
    bottom: -26vw;
    width: 75vw;
    height: 75vw;
    pointer-events: none;
}

.nav-icon {
    display:none;
}

.nav-container {
    display:none;
    position:fixed;
    padding: 33px 16px 32px 27px;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000000;
    z-index:10;
}

.mobile-nav a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin: 8px 0;
    font-weight: 600;
    font-size: 24px;
    transition:0.5s;
}

.mobile-nav-sub {
    padding-left:32px;
}

.mobile-nav-sub a {
    font-size:18px;
}

.mobile-nav .social a:hover svg {
    fill:#B31983;
}
.mobile-nav a:hover {
    color:#B31983;
}

.mobile-nav .social {
    margin-top:32px;
}

section.content.contact-copy {
    font-size:18px;
    max-width:680px;
    margin:16px 0;
}

section.content.contact-copy p {
    line-height:32px;
}

section.content.contact-copy a {
    display:flex;
}

section.content.contact-copy .inline-link a {
    display:inline;
}

section.content.contact-copy a img {
    display:block;
    width:16px;
    height:16px;
    margin: 8px;
}

.contact-note {
    font-size: 36px;
    max-width: 680px;
}

.form-row {
    margin:24px 0 16px 0;
}

.form-row input, 
.form-row textarea, 
.form-row select {
    border: none;
    border-bottom: 1px solid #333333;
    padding: 12px 0;
    color: #FFFFFF;
    font-family: soleil, sans-serif;
    font-size: 17px;
    font-weight: 300;
    margin: 16px 0;
    outline: none;
    width: 95%;
    box-sizing: border-box;
    transition:0.5s;
    max-width:690px;
    background:none;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color:#B31983;
}

.form-row input[type="submit"] {
    width: fit-content;
    border: none;
    background: #3d002a;
    color: #FFFFFF;
    padding: 12px 24px;
    margin: 32px 0;
}

.form-row input[type="submit"]:hover {
    cursor:pointer;
    background: #B31983;
}

.grow-wrap {
  /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
  display: grid;
}
.grow-wrap::after {
  /* Note the weird space! Needed to preventy jumpy behavior */
  content: attr(data-replicated-value) " ";

  /* This is how textarea text behaves */
  white-space: pre-wrap;

  /* Hidden from view, clicks, and screen readers */
  visibility: hidden;
}
.grow-wrap > textarea {
  /* You could leave this, but after a user resizes, then it ruins the auto sizing */
  resize: none;

  /* Firefox shows scrollbar on growth, you can hide like this. */
  overflow: hidden;
}
.grow-wrap > textarea,
.grow-wrap::after {
  /* Identical styling required!! */
  padding: 12px 0;
  border-bottom: 1px solid #333333;
  /* Place on top of each other */
  grid-area: 1 / 1 / 2 / 2;
}

.grow-wrap > textarea:focus {
    border-bottom: 1px solid #B31983;  
}

@media all and (max-width: 1024px) {

    .g-2 {
        grid-template-columns:1fr;
    }

    .event-item {
        grid-template-columns: 1fr;
        padding-right: 0;
        margin-right: 16px;
    }

    .race-info-grid {
        grid-template-columns: 1fr;
    }

    .controls {
        justify-content:flex-start;
    }

    h1 {
        font-size: 36px;
    }

    .event-date {
        font-size: 24px;
        font-weight: 500;
    }

    .header-v {
        display:none;
    }

    section.content,
    .race-preview {
        padding-right: 0;
    }

    .answer,
    section.content .text,
    .content img, .race-preview img, .race-preview iframe {
        width: 100%;
    }

    main {
        margin: 200px 32px 0 32px;
    }

    .flex-container {
        flex-wrap:wrap;
    }


    .hero-item.flex-container {
        flex-direction:column-reverse;
    }

    .hero-item-image,
    .hero-item-content {
        width:100%;
        margin-bottom: 32px;
    }

    .stuff-item {
        display: grid;
        grid-template-columns: 100%;
    }

    .hero-item-image img {
        display: block;
        width: 80%;
        margin: 0 auto 10% auto;
    }

    .hero-image-overlay-x {
        position: absolute;
        left: -10%;
        width: 120%;
        height: 120%;
        top: -15%;
    }

    .sponsor-logo-grid, .feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0;
        margin: 0;
    }

    .sponsors img {
        max-width: 300px;
        margin: 0 auto;
    }

    footer {
        padding: 64px 32px 32px 32px;
    }

    .footer-base {
        padding: 32px 0;
    }

    .partners h2,
    .sponsors h2 {
        max-width: 100%;
        margin: 16px 0;
    }

    .partners h2 {
        margin:32px 0;
    }

    .partners h2 span,
    .sponsors h2 span {
        padding: 0 32px 0 32px;
    }

    nav {
        display:none;
    }

    .header-h {
        justify-content:space-between;
        align-items:center;
        border:none;
    }

    .event-image-overlay-x svg {
        width:100%;
        height:100%;
    }

    .header-h::after {
        display:none;
    }

    .hero .intro {
        width: 100%;
    }

    .nav-close,
    .nav-icon {
        display: flex;
        align-content: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.5s;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        z-index: 2;
        position: relative;
        flex-wrap: wrap;
        flex-direction: column;
        margin-right: 0;
        background:#333333;
    }

    .nav-bar {
        width: 24px;
        height: 2px;
        margin: 4px;
        background: #ffffff;
        pointer-events: none;
        position: relative;
        z-index: 2;
        display: block;
    }

    .nav-close:hover,
    .nav-icon:hover {
        background:#B31983;
    }

    header {
        top: 16px;
        right: 16px;
        bottom: 16px;
        left: 16px;
        width:calc(100% - 48px);
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr;
        margin:0;
    }

    table td {
        padding:8px;
        font-size:15px;
    }

    table {
        width:100%;
    }

    table.schedule thead {
        display:none;
    }

    table.schedule tr.practice {
        display:flex;
    }

    table.schedule tr.race {
        display:flex;
        flex-wrap:wrap;
    }

    table.schedule td div {
        display:block;
    }

    table.schedule tr.practice td {
        width:50%;
        background:#3d002a;
    }

    table.schedule tr.race td {
        width:33.333%;
    }

    table.schedule tr.race td.race-cat {
        width:100%;
        background:#333333;
    }

    .hero-item-content {
        padding-right:0;
    }
}