@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');
:root{
  --dark: #171716;
  --medium: #1E1E1B;
  --light: #383836;
  --white: #F6F7F7;
  --main: #C1D833;
  --gold: #B5926D;
  --silver: #A3A3A3;
  --bronze: #7D6754;
  --font: "Schibsted Grotesk", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --animate: all .35s ease-in-out;
  --grid-gap: 1.6rem;
  --shadow: 0 0 2.4rem hsla(0 0% 0% / .24);
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
html{
  font-size: 62.5%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
::-moz-selection {
  background: hsla(0 0% 0% / .6);
  color: white;
}
::selection {
  background: hsla(0 0% 0% / .6);
  color: white;
}
body{
  color: var(--white);
  background: var(--medium);
  font-family: var(--font);
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  padding: 0;
  margin: 0;
  -webkit-text-size-adjust: none;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6{
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4{
  font-style: italic;
  font-weight: 900;
}
h5, .h5,
h6, .h6{
  font-weight: 300;
  color: var(--main);
}
h1,
.h1 {
  font-size: clamp(4rem, 5vw, 6.4rem);
}
h2,
.h2 {
  font-size: clamp(4rem, 5vw, 5.6rem);
}
h3,
.h3 {
  font-size: 4.8rem;
}
h4,
.h4 {
  font-size: 4rem;
}
h5,
.h5 {
  font-size: 3.2rem;
}
h6,
.h6 {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
}
p {
  margin: 0 0 1.6rem;
}
.content{
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
header{
  padding: 1.6rem 2.4rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 0 -8.8rem;
  z-index: 999;
  transition: var(--animate);
}
header.header-bg{
  background: var(--medium);
  box-shadow: var(--shadow);
}
header .content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo-wrapper{
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  align-items: center;
}
header a.logo{
  width: 12rem;
  height: auto;
  display: block;
}
header a.logo-gt7{
  width: 14rem;
  display: block;
}
header a img{
  width: 100%;
  height: auto;
}
header .break{
  width: .2rem;
  height: 5.6rem;
  background: hsla(0 0% 100% / .16);
}
header ul{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
header ul li a{
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  font-family: var(--font-mono);
  text-decoration: none;
  padding: .4rem 1.6rem;
  position: relative;
  transition: var(--animate);
  z-index: 1;
}
header ul li a:hover{
  color: var(--dark);
}
header ul li a::before{
  content: '';
  width: 0;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  position: absolute;
  background: var(--main);
  transition: var(--animate);
}
header ul li a:hover::before{
  width: 100%;
}
footer{
  border-top: 2px solid var(--light);
  padding: 3.2rem 2.4rem 1.6rem;
}
footer .content{
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .logo-wrapper{
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
footer a.logo{
  width: 12rem;
  height: auto;
  display: block;
}
footer a.logo-gt7{
  width: 14rem;
  display: block;
}
footer .break{
  width: .2rem;
  height: 56px;
  background: var(--light);
}
footer a img{
  width: 100%;
  height: auto;
}
footer nav{
  width: 100%;
  margin-top: 2.4rem;
}
footer nav ul{
  list-style: none;
  display: flex;
  justify-content: space-around;
}
footer nav ul li a{
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  text-decoration: none;
}
footer nav ul li a:hover{
  color: var(--main);
}
footer p.copyright{
  width: 100%;
  margin: 3.2rem auto 0;
  text-align: center;
  padding-top: 1.6rem;
  border-top: 2px solid var(--light);
  font-size: 1.2rem;
}
footer p.copyright a{
  color: white;
}
footer p.copyright a:hover{
  text-decoration: none;
  color: var(--main);
}
section{
  background: var(--medium);
  position: relative;
  z-index: 1;
  padding: 9.6rem 4rem;
}
.standings{
  text-align: left;
}
.snz-heading,
.szn-table{
  display: none;
}
.snz-heading.active,
.szn-table.active{
  display: block;
}
.standings .heading-wrapper{
  padding-bottom: 3.2rem;
  margin-bottom: 3.2rem;
  border-bottom: 2px solid var(--light);
}
.standings .btn-wrapper{
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.standings .btn-wrapper .tab{
  cursor: pointer;
  font-family: var(--font-mono);
  text-transform: uppercase;
  padding: .4rem 1.6rem;
  border-radius: .4rem .4rem 0 0;
  border: 2px solid var(--light);
  background: var(--dark);
  border-bottom: none;
  transition: var(--animate);
}
.standings .btn-wrapper .tab:hover{
  background: var(--light);
}
.standings .btn-wrapper .tab.active{
  background: var(--main);
  color: var(--dark);
  border-color: var(--main)
}
.standings .grid{
  background: var(--light);
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .2rem;
}
.standings .row{
  display: flex;
  background: var(--medium);
}
.standings .row.row-header{
  background: var(--dark);
  position: relative;
  z-index: 2;
}
.standings .row.row-header .col{
  font-weight: 300;
  color: var(--main);
  font-size: 1.8rem;
  position: relative;
}
.standings .row.row-header .col::after{
  content: 'Driver';
  position: absolute;
  padding: .8rem;
  background: var(--dark);
  box-shadow: var(--shadow);
  color: var(--main);
  font-size: 1.2rem;
  bottom: 0;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  z-index: 1;
  transition: var(--animate);
  border: 2px solid var(--light);
  text-align: center;
}
.standings .row.row-header .col:hover::after{
  transform: translate(-50%, 100%);
  opacity: 1;
}
.standings .row.row-header .col.driver::after{
  display: none;
}
.standings .row.row-header .col.position::after{
  content: 'Position';
}
.standings .row.row-header .col.pp::after{
  content: 'Pole Position';
}
.standings .row.row-header .col.fl::after{
  content: 'Fastest Lap';
}
.standings .row.row-header .col.p1::after{
  content: '1st Place';
}
.standings .row.row-header .col.p2::after{
  content: '2nd Place';
}
.standings .row.row-header .col.p3::after{
  content: '3rd Place';
}
.standings .row.row-header .col.points::after{
  content: 'Points';
}
.standings .row.champ{
  position: relative;
  z-index: 1;
}
.standings .row.champ::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/graphic-checker.svg);
  background-position: left top;
  background-repeat: repeat;
  opacity: .05;
  background-size: 1.6rem;
  z-index: -1;
}
.standings .row.coming-soon{
  padding: 1.6rem;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
}
.standings .col{
  font-weight: 700;
  border-left: .2rem solid var(--light);
  padding: .4rem;
}
.standings .col:first-child{
  border: none;
}
.standings .col.position{
  width: 5rem;
}
.standings .col.driver{
  font-weight: 300;
  width: calc(100% - 30rem);
}
.standings .col.pp,
.standings .col.fl,
.standings .col.p1,
.standings .col.p2,
.standings .col.p3{
  width: 4rem;
}
.standings .col.points{
  width: 5rem;
}
@media screen and (max-width: 680px){
  header a.logo{
    width: 12rem;
  }
  header .break{
    height: 5.6rem;
  }
  header a.logo-gt7{
    width: 14rem;
  }
  footer a.logo{
    width: 8rem;
  }
  footer a.logo-gt7{
    width: 10rem;
  }
  footer .break{
    height: 4rem;
  }
  .standings .row.row-header{
    display: none;
  }
  .standings .grid{
    padding: 0;
    background: var(--medium);
    gap: 1.6rem;
  }
  .standings .row{
    flex-wrap: wrap;
    border: 2px solid var(--light);
  }
  .standings .col:before{
    margin: 0 8px 0 0;
    color: var(--main);
    font-weight: 400;
  }
  .standings .col.position:before{
    content: 'Position:';
  }
  .standings .col.driver:before{
    content: 'Driver:';
  }
  .standings .col.pp:before{
    content: 'Pole Positions:';
  }
  .standings .col.fl:before{
    content: 'Fastest Laps:';
  }
  .standings .col.p1:before{
    content: '1st Place:';
  }
  .standings .col.p2:before{
    content: '2nd Place:';
  }
  .standings .col.p3:before{
    content: '3rd Place:';
  }
  .standings .col.points:before{
    content: 'Points:';
  }
  .standings .col{
    width: 100% !important;
  }
  .standings .col{
    border-left: none;
    border-top: .2rem solid var(--light);
  }
  .standings .col:first-child{
    border: none;
  }
}
/* ----- Hero ----- */
section.hero{
  width: 100%;
  height: 100svh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  top: 0;
}
section.hero .video-wrapper{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
section.hero .video-wrapper::before,
section.hero .video-wrapper::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--dark) 0, var(--dark) 25%, transparent 100%);
  opacity: .48;
}
section.hero .video-wrapper::after{
  background: linear-gradient(to bottom, var(--dark) 0, var(--dark) 5.6rem, transparent 100%);
}
section.hero .video-wrapper video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.hero .content{
  position: relative;
  z-index: 2;
}
section.hero .content .content-wrapper{
  text-align: left;
}
section.hero h1{
  font-weight: 900;
  font-style: italic;
  font-size: 8.4rem;
  line-height: 1;
  margin: 0;
}
section.hero h1 span{
  color: var(--main);
}
section.hero .btn-wrapper{
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 7.2rem 0 0;
}
.btn{
  cursor: pointer;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: white;
  text-decoration: none;
  height: 4rem;
  padding: 0 3.2rem 0 6.4rem;
  border-radius: 4rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  background-color: hsla(0 0% 100% / .08);
  display: flex;
  align-items: center;
  border: 1px solid hsla(0 0% 100% / .16);
  z-index: 1;
  transition: var(--animate);
}
.btn:hover{
  color: var(--dark);
}
.btn::before{
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0 , -50%);
  left: 3px;
  height: 3.2rem;
  width: 3.2rem;
  background-color: var(--main);
  border-radius: 50%;
  z-index: -1;
  transition: var(--animate);
}
.btn:hover::before{
  width: 30rem;
  left: 0;
  height: 30rem;
}
.btn::after{
  content: '';
  position: absolute;
  top: 0;
  left: 3px;
  height: 3.2rem;
  width: 3.2rem;
  background-image: url(../images/icon-chevron.svg);
  background-position: 10px 4px;
  background-size: 9px auto;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: -1;
  transition: var(--animate);
  transform: rotate(180deg);
}
section.scroll{
  padding: 0;
  background: none;
}
section.scroll span{
  font-size: 1.2rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: white;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -6.4rem;
  transform: translate(-50%, 0);
}
section.scroll span:after{
  content: '';
  width: 1px;
  height: 4rem;
  position: absolute;
  left: 50%;
  bottom: -12px;
  background: white;
  transform: translate(0, 100%);
}
section.intro{
  padding-block: 20rem 12rem;
}
section.intro .content-wrapper{
  max-width: 64rem;
}
section.intro .content-wrapper .h1{
  margin: 0 0 3.2rem;
}
.flex{
  display: flex;
  gap: var(--grid-gap);
  flex-wrap: wrap;
}
.flex-three > *{
  width: calc(33.3333% - calc(var(--grid-gap) * 2 / 3));
}
.flex-two > *{
  width: calc(50% - calc(var(--grid-gap) / 2));
}
.results-table,
.schedule-table{
  margin-top: 4rem;
}
.results-table .card,
.schedule-table .card{
  border: 2px solid var(--light);
  background: var(--dark);
  padding: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.results-table .card .date,
.schedule-table .card .date{
  text-align: center;
  width: 7.2rem;
}
.results-table .card .month,
.schedule-table .card .month{
  letter-spacing: 0.05em;
  margin: 0;
}
.results-table .card .day,
.schedule-table .card .day{
  font-style: normal;
  margin: 0;
}
.results-table .card .card-content,
.schedule-table .card .card-content{
  width: calc(100% - 1.6rem - 7.2rem);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.results-table .card .card-content{
  flex-direction: column;
  align-items: flex-start;
}
.results-table .card .card-content h3,
.schedule-table .card .card-content h3{
  margin: 0;
  font-weight: 400;
  font-size: 2.4rem;
  font-style: normal;
}
.results-table .card .card-content ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.results-table .card .card-content ul li{
  display: flex;
  align-items: center;
  gap: .8rem;
}
.results-table .card .card-content ul li span{
  font-weight: 800;
}
.results-table .card .card-content ul li span.p1{
  color: var(--gold);
}
.results-table .card .card-content ul li span.p2{
  color: var(--silver);
}
.results-table .card .card-content ul li span.p3{
  color: var(--bronze);  
}
.results-table .card .card-content ul li img{
  height: 1.2rem;
  width: auto;
}
.apply{
  padding-block: 12rem 20rem;
}
.apply .content{
  max-width: 56rem;
  text-align: center;
}
.apply .content h2{
  margin-bottom: 3.2rem;
}
.driver-list{
  margin-top: 4rem;
}
.driver-list .card{
  aspect-ratio: 4 / 2;
  position: relative;
  background: var(--dark);
  border: 2px solid var(--light);
  padding: 1.6rem;
  display: flex;
  align-items: flex-end;
}
.driver-list .card .img-wrapper{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
}
.driver-list .card .img-wrapper img{
  height: 100%;
  width: auto;
}
.driver-list .card .card-content{
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 36rem;
}
.driver-list .card .card-content .number{
  font-size: 4.8rem;
  font-style: italic;
  font-weight: 900;
}
.driver-list .card .card-content .driver-name{
  display: flex;
  align-items: center;
  gap: .8rem;
  border-bottom: .2rem solid hsla(0 0% 100% / .16);
  padding-bottom: .8rem;
  margin-bottom: .8rem;
}
.driver-list .card .card-content .driver-name h3{
  font-size: 2rem;
  font-weight: 400;
  font-style: normal;
}
.driver-list .card .card-content .driver-info{
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}
.driver-list .card .card-content .driver-info .szn{
  width: 100%;
  font-weight: 600;
  font-size: 1.8rem;
}
.driver-list .card .card-content .driver-info .pp,
.driver-list .card .card-content .driver-info .fl{
  width: calc(50% - .4rem);
}
.driver-list .card .card-content .driver-info .p1,
.driver-list .card .card-content .driver-info .p2,
.driver-list .card .card-content .driver-info .p3{
  width: calc(33.3333% - calc(.8rem * 2 / 3));
}
.driver-list .card .card-content .driver-info span{
  font-weight: 600;
}
.driver-list .card .card-content .driver-info .p1 span{
  color: var(--gold);
}
.driver-list .card .card-content .driver-info .p2 span{
  color: var(--silver);
}
.driver-list .card .card-content .driver-info .p3 span{
  color: var(--bronze);
}
header .ham-btn{
  display: none;
  width: 2.4rem;
  height: 18px;
  position: relative;
  cursor: pointer;
}
.ham-btn span {
  width: 100%;
  height: 2px;
  background: white;
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translate(-50%, 0);
  transition: all .5s ease-in-out;
}
.ham-btn span:first-child {
  top: 0;
}
.ham-btn span:last-child {
  bottom: 0;
  top: auto;
}
header.active .ham-btn span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
  top: 8px;
}
header.active .ham-btn span:nth-child(2) {
  opacity: 0;
}
header.active .ham-btn span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
  bottom: 8px;
}
header .nav-drawer {
  display: none;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--dark);
  z-index: -1;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(0, -101%);
  transition: all .5s ease-in-out;
}
header.active .nav-drawer {
  transform: translate(0, 0);
}
header .nav-drawer nav{
  max-width: 60rem;
  width: 100%;
}
header .nav-drawer nav ul {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .nav-drawer nav ul li{
  width: auto;
}
header .nav-drawer nav ul li a{
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  font-family: var(--font-mono);
  text-decoration: none;
  padding: .4rem 1.6rem;
  position: relative;
  transition: var(--animate);
  z-index: 1;
}
header .nav-drawer nav ul li a:hover{
  color: var(--dark);
}
hr{
  box-shadow: none;
  border: none;
  border-top: 2px solid hsla(0 0% 100% / .16);
  margin: 3.2rem 0;
}
section.intro .car-card{
  border: 2px solid var(--light);
  background: var(--dark);
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  margin-top: 3.2rem;
}
section.intro .car-card img{
  width: 30rem;
}
section.intro .car-card .content-wrapper{
  width: calc(100% - 30rem);
  padding-left: 3.2rem;
  max-width: unset;
  text-align: left;
  margin: 0;
}
section.intro .car-card .pill{
  background: var(--light);
  color: #c4c4c4;
  font-size: 1.4rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: .8rem;
  width: auto;
  display: inline-block;
  margin: 0 0 1.6rem;
}
section.intro .car-card .h6{
  font-size: 1.6rem;
}
section.intro .car-card h3{
  font-size: 2.8rem;
  margin: 0 0 1.6rem;
}
section.intro .car-card ul{
  border-top: 2px solid var(--light);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: 1.6rem;
}
section.intro .car-card ul li{
  width: calc(50% - .4rem);
  font-size: 1.4rem;
  line-height: 1.1;
}
section.schedule .schedule-table .card{
  padding: 0;
  align-items: flex-start;
}
section.schedule .schedule-table .card .date{
  width: 64px;
  padding: .8rem 0;
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
}
section.schedule .schedule-table .card .month {
  letter-spacing: 0.2em;
  margin: 0;
  font-size: 1.4rem;
}
section.schedule .schedule-table .card .date .h3{
  font-size: 32px;
}
section.schedule .schedule-table .card .card-content{
  width: calc(100% - 1.6rem - 6.4rem);
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  padding: 1.6rem;
  padding-left: 0;
}
section.schedule .schedule-table .card .card-content .track{
  width: 100%;
  display: flex;
  gap: .8rem;
  align-items: center;
  border-bottom: 2px solid var(--light);
  padding: 0 0 1.2rem;
  margin: 0 0 .4rem;
}
section.schedule .schedule-table .card .card-content .track h3{
  font-size: 1.8rem;
}
section.schedule .schedule-table .card .card-content ul{
  list-style: none;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  width: 100%;
}
section.schedule .schedule-table .card .card-content ul li{
  width: calc(50% - .4rem);
  font-size: 1.4rem;
}
section.schedule .schedule-table .card .card-content ul li span{
  font-size: 12px;
  margin-left: 2px;
}
#countDown{
  font-family: var(--font-mono);
  position: absolute;
  width: 64rem;
  bottom: 2.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#countDown .h6{
  width: 100%;
}
#countDown > span{
  font-weight: 300;
  color: var(--main);
  text-transform: uppercase;
  margin: 0 0 1.6rem;
  line-height: 1.1;
  font-size: 2rem;
  width: 100%;
  display: block;
}
#countDown > div{
  padding: 0.4rem 1.6rem 1.6rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0 0% 100% / .16);
  background-color: hsla(0 0% 100% / .08);
  border-radius: .8rem;
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  width: 12rem;
  text-align: center;
  font-family: var(--font-mono);
}
#countDown > div > div{
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: -8px;
  font-family: var(--font-mono);
}
p.no-results{
  margin-top: 3.2rem;
  border: 2px solid var(--light);
  background: var(--dark);
  padding: 1.6rem;
  text-align: center;
}
/* Media Queries */
@media screen and (max-width: 1240px) {
  header ul li a{
    font-size: 1.6rem;
    padding-inline: .8rem;
  }
  header a.btn{
    font-size: 1.6rem;
  }
  .results-table .card .card-content h3, .schedule-table .card .card-content h3{
    font-size: 2rem;
  }
  .results-table .card .date .h3, .schedule-table .card .date .h3{
    font-size: 4rem;
  }
}
@media screen and (max-width: 1120px) {
  header ul{
    gap: 2.4rem;
  }
  header a.btn{
    padding: 0 2.4rem 0 5.6rem;
  }
  .flex-three > * {
    width: calc(50% - calc(var(--grid-gap) / 2));
  }
}
@media screen and (max-width: 1040px) {
  header a.btn,
  header ul li a{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 990px) {
  #countDown{
    position: initial;
    transform: none;
    margin: 6.4rem 0 0;
    width: 100%;
    padding: 0 2.4rem;
  }
  header .ham-btn {
    display: flex;
  }
  header .nav-drawer {
    display: flex;
  }
  header a.btn,
  header .content > nav{
    display: none;
  }
  section.hero h1{
    font-size: 6.4rem;
  }
  section.hero{
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    position: relative;
  }
  section.hero .video-wrapper{
    position: relative;
    height: auto;
    width: 100%;
    aspect-ratio: 100 / 56.25;
    min-height: 34rem;
  }
  section.hero .video-wrapper video {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  section.hero .video-wrapper::before{
    display: none;
  }
  section.hero .video-wrapper::after{
    opacity: 1;
    top: 1px;
    background: linear-gradient(to top, var(--medium) 0, var(--medium) 2px, transparent 33%, transparent 100%);
  }
  section.hero .content .content-wrapper{
    padding: 0 2.4rem;
  }
  section.scroll{
    display: none;
  }
  section.intro{
    padding: 12rem 2.4rem 4rem;
  }
  section{
    padding: 8rem 2.4rem;
  }
  .flex-two > *{
    width: 100%;
  }
  .apply{
    padding: 4rem 2.4rem 12rem;
  }
  section.intro .car-card ul li{
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  section.intro .car-card{
    flex-direction: column;
    align-items: center;
  }
  section.intro .car-card img{
    width: 100%;
    max-width: 30rem;
  }
  section.intro .car-card .content-wrapper{
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 680px) {
  .flex-three > * {
    width: 100%;
  }
  footer .logo-wrapper{
    flex-direction: column;
  }
  footer nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
  footer a.logo {
    width: 12rem;
  }
  header .break,
  header a.logo-gt7,
  footer .break,
  footer a.logo-gt7 {
    display: none;
  }
}
@media screen and (max-width: 640px){
  #countDown > div{
    width: calc(50% - .8rem);
    max-width: 100%;
    margin: 0 0 1.6rem;
  }
}
@media screen and (max-width: 600px){
  section.hero .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 560px){
  section.hero h1 {
      font-size: 4.8rem;
  }
  section.hero .btn-wrapper{
    margin-top: 3.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .driver-list .card{
    aspect-ratio: unset;
    flex-direction: column;
  }
  .driver-list .card .img-wrapper{
    position: initial;
    height: auto;
    border-bottom: 2px solid var(--light);
    padding-inline: 2.4rem;
  }
  .driver-list .card .img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .driver-list .card .card-content{
    max-width: 100%;
  }
  section.schedule .schedule-table .card .card-content ul li{
    width: 100%;
  }
}
@media screen and (max-width: 480px){
  .results-table .card .card-content, .schedule-table .card .card-content,
  .results-table .card, .schedule-table .card{
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .results-table .card .card-content ul li{
    text-align: left;
  }
  section.schedule .schedule-table .card .card-content{
    width: 100%;
    padding: 0 1.6rem 1.6rem;
  }
}
@media screen and (max-width: 420px){
  .driver-list .card .card-content .driver-info .pp, .driver-list .card .card-content .driver-info .fl,.driver-list .card .card-content .driver-info .p1, .driver-list .card .card-content .driver-info .p2, .driver-list .card .card-content .driver-info .p3{
    width: 100%;
  }
  @media screen and (max-width: 640px){
    #countDown > div{
      width: 100%
    }
  }
}
@media screen and (max-width: 340px){
  section.intro .car-card ul li strong{
    display: block;
    margin: 0 0 4px;
  }
}