.soon {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
}

@font-face {
  font-family: 'Play-Bold';
  src: url('../fonts/Play-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu-M';
  src: url('../fonts/Ubuntu-M.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu-BI';
  src: url('../fonts/Ubuntu-BI.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.Play-Bold {
  font-family: 'Play-Bold', 'Arial' !important;
}

.Ubuntu-M {
  font-family: 'Ubuntu-M', 'Arial';
}

.Ubuntu-BI {
  font-family: 'Ubuntu-BI', 'Arial';
}


* {
  outline: none !important;
}

body {
  font-family: 'Ubuntu-M', 'Arial';
  font-size: 18px;
  letter-spacing: .1rem;
  position: relative;
  overflow-x: hidden;
  color: #FFF;
}

body::before {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  background: url('../img/design/bg.jpg') no-repeat center top #191833;
  background-size: cover;
  content: '';
  width: 100%;
  height: 100%;
}

.page {
  opacity: 0;
  transition: opacity 300ms;
}

body.loaded .page {
  opacity: 1;
}



.container {
  z-index: 2;
}

@media (max-width: 1400px) {
  .container {
    width: 100%;
    max-width: none;
  }

  header .container {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

img {
  max-width: 100%;
}

hr {
  border-color: #b7b7b7;
  margin-top: 3.3rem;
  margin-bottom: 3rem;
}

.opa,
.text-hover {
  transition: all 300ms;
}

.opa:hover {
  opacity: .7;
}

.text-red {
  color: #FC1010;
}

.text-hover:hover {
  color: #23ffff;
}

.fill-white {
  fill: #ebe7dd;
}

.fill-dark {
  fill: #1f1f1f;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

.btn {
  border-radius: 0;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.error-message {
  color: #dc3545;
}

.form-error {
  border-color: #dc3545;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.content {
  line-height: 1.2;
}

.content a {
  text-decoration: underline;
}

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

.separator {
  position: relative;
  height: 5px;
  margin: 130px auto;
}

.separator {
  position: relative;
  height: 5px;
  width: 200px;
}

.separator::before,
.separator::after {
  content: "";
  position: absolute;
  top: 0;
}

.separator::before {
  left: 0;
  background-color: #23ffff;
  width: 50%;
  height: 5px;
}

.separator::after {
  right: 0;
  background-color: #fc1010;
  width: 50%;
  height: 5px;
}

@media (max-width: 575.98px) {
  .separator {
    position: relative;
    height: 5px;
    margin: 50px auto;
  }
}

.shakeHover:hover {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: shakeY;
  animation-name: shakeY
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/**** HEADER ****/
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 50px 5px;
  font-size: 1.8rem;
  z-index: 100;
  transition: all 300ms;
}

header::before {
  display: block;
  position: absolute;
  z-index: -10;
  background: url('../img/design/bg.jpg') no-repeat center top;
  background-size: cover;
  content: '';
  width: 100%;
  height: 100%;
}

header a {
  display: inline-block;
}

header .header-link {
  text-align: center;
}

header .header-link:first-child {
  margin-right: 100px;
}

header .header-link:last-child {
  margin-left: 100px;
}

header .header-link a {
  position: relative;
  width: 200px;  
}

header .header-link a::before,
header .header-link a::after {
  content: "";
  position: absolute;
  bottom: -20px;
  transition: width 300ms;
}

header .header-link a::before {
  right: 50%;  
  background-color: #23ffff;
  width: 50%;
  height: 5px;
}

header .header-link a::after {
  left: 50%;  
  background-color: #fc1010;
  width: 50%;
  height: 5px;
}

header .header-link a:hover::before,
header .header-link a:hover::after {
  width: 40%;
}

header .header-logo {
  padding: 0 20px;
}

header .logo {
  display: inline-block;
  /* width: 236px; */
  transition: width 300ms;
}

/* body.scroll-up header {
  padding: 15px;
}

body.scroll-up header .logo {
  width: 300px;
} */

@media (max-width: 991.98px) {
  header {
    padding: 30px 5px;
    font-size: 1.3rem;
  }
  header .logo {
    width: 200px;
  }
  header .header-link {
    flex: 1;
  }
  header .header-link a {    
    width: inherit;
  }

  header .header-link a::before,
  header .header-link a::after {
    display: none;
  }

  header .header-link:first-child {
    text-align: right;
    margin-right: 30px;
  }

  header .header-link:last-child {
    text-align: left;
    margin-left: 30px;
  }
}

@media (max-width: 575.98px) {
  /* body.scroll-up header {
    transform: translateY(-100%);
  } */

  body header {
    padding: 15px;
    font-size: 1rem;
  }

  header .logo {
    width: 150px;
  }

  header .header-link:first-child {
    margin-right: 10px;
  }

  header .header-link:last-child {
    margin-left: 10px;
  }
}


/**** MAIN ****/
#main {
  padding-top: 104px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  #main {
    padding-top: 44px;
  }
}

@media (max-width: 575.98px) {
  #main {    
    padding-top: 6px;
  }
}

.notif {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .76);
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  z-index: 2000;
  cursor: pointer;
}

.notif .box {
  background-color: #191833;
  padding: 35px 55px;
  border-radius: 1rem;
  color: #FFF;
}

.content-video {
  position: relative;  
}

.video {
  position: relative;
  z-index: 20;
}

.video video {
  max-width: 100%;
  width: 100%;
}

.dashed {
  /* position: absolute;
  top: -10%;
  left: 0; */
  display: block;
  width: 100%;
  z-index: 10;
}

.dashed-reverse {
  bottom: -10%;
  top: inherit;
  transform: rotate(180deg);
}

#infos {
  padding-top: 90px;
} 

@media (max-width: 575.98px) {
  #infos {
    padding-top: 30px;
  }
}

.description {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.2;

}

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

.description p {
  position: relative;
  z-index: 40;
  margin-bottom: 1.5rem;
}

.logo-vertical {
  position: absolute;
  top: 90px;
  z-index: 30;
}

.logo-vertical-1 {
  left: 50px;
}

.logo-vertical-2 {
  right: 50px;
}

.logo-vertical.sticky {
  position: fixed;
  top: 245px;
}

@media (max-width: 1400px) {
  .logo-vertical {
    display: none;
  }
}

.btn-register {  
  width: 674px;
  margin-bottom: 65px;
}

.btn-follow-us {
  width: 674px;
  margin-bottom: 65px;
}

.btn-prize {
  width: 278px;
  margin-bottom: 45px;
}

.boarding {
  width: 900px;
}

.arrows {
  width: 150px;
}

.logo-infos {
  margin-bottom: 1rem;
  width: 92px;
  transform: translateX(-8px);
}

#prize {
  margin-bottom: 130px;
}

/**** FORM *****/
#PlayerRegisterForm {
  margin-bottom: 80px;
}
#PlayerRegisterForm .small {
  font-size: 70%;
}

#PlayerRegisterForm a {
  text-decoration: underline;
}

#PlayerRegisterForm .form-control {
  height: calc(1em + .75rem + 2px);

}

#PlayerRegisterForm label {
  display: block;
  color: #FFF;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: .3rem;
  line-height: 1;
}

#PlayerRegisterForm legend {
  display: inline-block;
  margin-bottom: .5rem;
  font-weight: 700;
  width: inherit;
  max-width: 100%;
  padding: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: inherit;
  color: inherit;
  white-space: normal;
  color: #FFF;
}


#PlayerRegisterForm .small {
  line-height: 1.2;
}



#PlayerRegisterForm .select2,
#PlayerRegisterForm input,
.select2-dropdown {
  font-family: Arial, Helvetica, sans-serif;
}

#PlayerRegisterForm .select2 {
  width: 100% !important;
}

#PlayerRegisterForm .select2-selection {
  border-radius: 0;
}

#PlayerRegisterForm .select2-selection,
#PlayerRegisterForm .select2-selection__rendered {
  height: calc(1em + .75rem + 2px);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 3px;
}

.select2-results {
  color: #000;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #191833;
}

.form-control {
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

label.content-radio {
  display: inline-block !important;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 30px !important;
}

label.content-radio:not(:last-child) {
  margin-right: 15px;
}

label.content-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #FFF;
}

.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 300ms;
}

label.content-radio input:checked~.checkmark:after {
  opacity: 1;
}

label.content-radio .checkmark:after {
  background-image: url('../img/design/check.svg');
  background-repeat: no-repeat;
  right: -6px;
  top: -4px;
  width: 100%;
  height: 100%;
}

.btn-send {
  border: 1px solid #FFF;
  border-radius: 0;
  padding: 15px 20px;
  background-color: transparent;
  color: #FFF;
  transition: all 300ms;
}

.btn-send:hover {
  background-color: #FFF;
  color: #191833;
}

.infos-form .content {
  width: 75%;
}

@media (max-width: 991.98px) {
  .infos-form .content {
    width: 100%;
  }
}

.content-page p {
  font-family: Arial, Helvetica, sans-serif;

}



/**** FOOTER *****/
#rs {
  margin-bottom: 8rem;
}

.title-rs {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 107px;
  margin-bottom: 50px;
}

.content-rs a {
  display: inline-block;
  margin: 0 15px;
  font-size: 3.6rem;
}

.content-rs img {
  height: 55px;
}

@media (max-width: 575.98px) {
  .content-rs a {
    display: inline-block;
  }

  .content-rs a img {
    height: 75px;
  }
}

.pages {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.pages a {
  display: inline-block;
  margin: 0 10px;
}

@media (max-width: 575.98px) {
  .pages a {
    display: block;
  }

  .pages .dot {
    display: none;
  }
}

footer {
  position: relative;
  overflow: hidden;
  height: 99px;
}

footer a {
  position: absolute;
  display: block;
  background-image: url('../img/design/drivethemcrazy.svg');
  background-position: center;
  background-repeat: repeat-x;
  background-color: #191833;
  height: 80px;
  width: 100%;
  top: -39px;
  transform: rotate(-1deg) translateY(87px);
  box-shadow: 0px 0px 26px rgba(0, 0, 0, .5);
}

/**** REAVEAL ****/

.reveal-loaded .reveal [class*=reveal-] {
  opacity: 0 !important;
  transform: translateY(50px) !important;
  transition: 0s !important
}

.reveal-loaded [class*=reveal-] {
  transition: 1s cubic-bezier(.5, 0, 0, 1)
}

.reveal-loaded .reveal-2 {
  transition-delay: .1s
}

.reveal-loaded .reveal-3 {
  transition-delay: .2s
}

.reveal-loaded .reveal-4 {
  transition-delay: .3s
}

.reveal-loaded .reveal-5 {
  transition-delay: .4s
}

.reveal-loaded .reveal-6 {
  transition-delay: .5s
}

.reveal-loaded .reveal-7 {
  transition-delay: .6s
}

.reveal-loaded .reveal-8 {
  transition-delay: .7s
}

.reveal-loaded .reveal-9 {
  transition-delay: .8s
}

.reveal-loaded .reveal-10 {
  transition-delay: .9s
}

.reveal-loaded .reveal-11 {
  transition-delay: 1s
}

@media (prefers-reduced-motion:reduce) {
  .reveal [class*=reveal-] {
    opacity: 1 !important;
    transform: translateY(0) !important
  }

  [class*=reveal-] {
    transition-duration: 0s !important;
    transition-delay: 0s !important
  }
}

@-webkit-keyframes shakeY {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  25%,
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
}

@keyframes shakeY {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  25%,
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {

  0%,
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  24% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  38% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  52% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background: url('../img/design/bg.jpg') no-repeat center top;
  background-size: cover;
  z-index: 1000;
}

.loader.show {
  display: flex;
}

body.loaded .loader {
  display: none;
}

.lds-circle {
  display: inline-block;
  transform: translateZ(1px);
}

.lds-circle>div {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  background: #fc1010;
  animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes lds-circle {

  0%,
  100% {
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }

  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(1800deg);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }

  100% {
    transform: rotateY(3600deg);
  }
}
