@charset "UTF-8";
/* CSS Document */

/* HOME MAIN SLIDER */

#home_slider {
  position: relative;
  width: 100%;
  height: 100vh;
}

#loader {
  background-color: #000;
}

/* GALLERY */
#gallery_container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.gallery_animation {
  -webkit-transition: all 2000ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-transition: all 2000ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-transition: all 2000ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 2000ms cubic-bezier(0.445, 0.05, 0.55, 0.95); /* easeInOutSine */

  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95); /* easeInOutSine */
}

.slider_images_container {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: top;
  z-index: 1;
  transform-origin: center bottom;
  overflow: hidden;
}

#gallery_images_container {
  opacity: 0;
  min-height: 768px;
}
#gallery_images_container.in {
  opacity: 1;
}

.slider_images_container .image {
  position: absolute;
  top: 0;
  width: 0%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  -webkit-transition: all 1500ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 1500ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 1500ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 1500ms cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */

  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
}
.slider_images_container .image.left {
  left: 0;
}
.slider_images_container .image.right {
  right: 0;
}

.slider_images_container .image.in {
  width: 100%;
}
.slider_images_container .image.faded {
  opacity: 0;
}

.slider_images_container .image.image_mobile {
  display: none;
}

#slider_buttons {
  position: absolute;
  z-index: 1000;
  left: 5vw;
  bottom: 5vh;
}

/*
#gallery_container .arrows{
	display: inline-block;
}
*/
#gallery_container .arrow {
  position: absolute;
  display: block;
  bottom: 3vh;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 0 5px rgba(9, 255, 244, 0);
  z-index: 100;
  -webkit-transition: all 800ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 800ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 800ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 800ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */

  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}

#gallery_container .arrow .icon {
  font-size: 55px;
  margin-bottom: 4px;
  width: 50px;
  height: 50px;
  border:1px solid #fff;
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#gallery_container .icon img{
  width: 35%;
  height: auto;
}

/*
#slider_buttons .arrows .arrow:hover{
	color: #a9d8f7;
	text-shadow: 0 0 8px rgba(9, 255, 244,1);
}
*/

#gallery_container #left_arrow {
  transform: scale(0);
  right:calc(5vw + 75px);;
}
#gallery_container #left_arrow .icon img{
  transform: rotate(180deg);
}
#gallery_container #right_arrow {
  transform: scale(0);
  right: 5vw;
}
#gallery_container #left_arrow.in {
  transform: scale(1);
}
#gallery_container #right_arrow.in {
  transform: scale(1);
}

#gallery_container .arrow:hover .icon {
  transform: scale(1.1);
}

#slider_buttons #dots {
  display: flex;
  vertical-align: middle;
}
#slider_buttons #dots .dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background-color: white;
  margin: 0 3px;
  display: inline-block;
  vertical-align: top;
  border-radius: 5px;
  cursor: pointer;
}
#slider_buttons #dots .dot:hover{
  background-color: #f12d1a;
  transform-origin: center;
}

#slider_buttons #dots .dot:after{
  content: '';
  position: absolute;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 20px;
  background-color: #f12d1a;
  transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
  transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
  transition-delay: 150ms;
}
#slider_buttons #dots .dot.active {
  width: 80px;
  transition-delay: 0ms;
  
}
#slider_buttons #dots .dot.active:after {
  width: 100%;
  transition: all 5500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
  transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
  transition-delay: 0ms;
 
}

#slider_buttons.stopAuto #dots .dot.active:after{
  transition: all 10ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
  transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
  transition-delay: 0ms;
}


#slider_buttons #dots .dot,
#gallery_container .arrow .icon,
#gallery_container .arrow .name {
  transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
  transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
  transition-delay: 150ms;
}

/* SLIDE 0 */

#slide0_info_container {
  position: absolute;
  padding-left: 150px;
  width: 100vw;
  height: 100%;
  padding-top: 180px;
}

#slide0_buy_btn {
  margin-top: 35px;
  opacity: 0;
  transform: translateX(-150px);
  padding: 5px 15px;
  border-radius: 15px;
  text-shadow: 0 0 26px rgba(0, 0, 0, 1);
  font-size: 30px;
}
#slide0_buy_btn.in {
  opacity: 1;
  transform: translateX(0px);
}
#slide0_buy_btn:hover {
  transform: translateX(0) scale(1.02);
}

#slide0_info_container .text {
  font-size: 80px;
  line-height: 70px;
  opacity: 0;
  transform: translateX(-150px);
  text-shadow: 0 0 36px rgba(0, 0, 0, 0.7);
}
#slide0_info_container .text.in {
  opacity: 1;
  transform: translateX(0px);
}

#slide0_info_container .prices {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
#slide0_info_container .text.by_sponsor {
  font-size: 40px;
}

#home_countdown {
  position: absolute;
  left: 0px;
  padding: 20px;
  bottom: 100px;
}
#home_countdown:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 0px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  border-bottom-right-radius: 30px;
}
.in_width#home_countdown:after {
  width: 100%;
}
.in_height#home_countdown:after {
  height: 50px;
}

#home_countdown:after {
  -webkit-transition: all 700ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 700ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 700ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 700ms cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */

  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
}

.home_countdown_col {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
}

#race_month {
  font-size: 14px;
  line-height: 24px;
}
#race_days {
  font-size: 38px;
  line-height: 38px;
  letter-spacing: 1px;
}

.race_countdown_big_numbers {
  font-size: 28px;
  line-height: 28px;
}
.race_countdown_big_numbers {
  font-size: 7vw;
  line-height: 7vw;
  font-variant-numeric: tabular-nums;
  letter-spacing: -9px;
}

#race_countdown tr td {
  padding-right: 15px;
}
#race_countdown {
  font-size: 1vw;
  /* 	width: 320px; */
}
#home_countdown .countdown_text {
  opacity: 0;
  transform: scale(1.4);
  transform-origin: center center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
#home_countdown .countdown_text.in {
  opacity: 1;
  transform: scale(1);
}

#slide0_buy_btn,
#slide0_info_container .text,
#home_countdown .countdown_text,
#slide1_btn,
#slide1_info_container .text {
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */

  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}

#slide_0_ahr_img {
  position: relative;
  width: 100%;
}

#f1_70 {
  position: absolute;
  right: 20px;
  width: 160px;
  bottom: 95px;
}

/* SLIDE 1 */

#slide1_info_container {
  position: absolute;
  padding-left: 150px;
  width: 100vw;
  height: 100%;
  padding-top: 180px;
}

#slide1_info_container .text {
  font-size: 80px;
  line-height: 70px;
  opacity: 0;
  transform: translateX(-150px);
  text-shadow: 0 0 36px rgba(0, 0, 0, 1);
}
#slide1_info_container .text.in {
  opacity: 1;
  transform: translateX(0px);
}

#slide1_btn {
  margin-top: 35px;
  opacity: 0;
  transform: translateX(-150px);
  padding: 5px 15px;
  border-radius: 15px;
  text-shadow: 0 0 36px rgba(0, 0, 0, 1);
  font-size: 25px;
}
#slide1_btn.in {
  opacity: 1;
  transform: translateX(0px);
}

/* MEXICOGP2023 */

.mexicogp2023 {
  background-image: url("../images/home/slider/MexicoGP2023_poster_slider.jpg");
  background-position: center center !important;
}

#mexicogp2023_container {
  position: absolute;
  width: 100vw;
  height: 100%;
}
#mexicogp2023_container .fullsize_link {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100vh;
  background-position: center center !important;
  background-size: contain;
  background-repeat: no-repeat;
}

#mexicogp2023_btn {
  display: none;
}

@media (max-width: 1400px) {
  .mexicogp2023 {
    background-position: left center !important;
  }
}

@media (max-width: 767px) {
  .mexicogp2023 {
    background-image: url("../images/home/slider/MexicoGP2023_poster_slider_mobile.jpg");
    background-position: center center !important;
  }

  #mexicogp2023_01_container .fullsize_link {
    background-image: none;
  }

  #mexicogp2023_btn {
    padding: 5px 15px;
    border-radius: 15px;
    text-shadow: 0 0 36px rgb(0 0 0);
    font-size: 25px;
    left: 0vw;
    right: 0;
    position: absolute;
    top: 45%;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: block;
  }
  #mexicogp2023_btn .red_button {
    font-size: 4.5vw;
  }
}

/* MEXICOGP2022 */

.mexicogp2022_01 {
  background-image: url("../images/home/slider/04_MexicoGP2022_Desktop1920x1080px-Poster-01.jpg");
  background-position: center center !important;
}

#mexicogp2022_01t_container {
  position: absolute;
  width: 100vw;
  height: 100%;
}
#mexicogp2022_01_container .fullsize_link {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/home/slider/04_MexicoGP2022_Frame_Desktop1920x1080px-Poster-01.png?v2");
  background-position: center center !important;
  background-size: contain;
  background-repeat: no-repeat;
}

#mexicogp2022_01_btn {
  display: none;
}

@media (max-width: 767px) {
  .mexicogp2022_01 {
    background-image: url("../images/home/slider/04_MexicoGP2022_Mobile-1080x1920-Poster-01.jpg");
  }

  #mexicogp2022_01_container .fullsize_link {
    background-image: none;
  }

  #mexicogp2022_01_btn {
    padding: 5px 15px;
    border-radius: 15px;
    text-shadow: 0 0 36px rgb(0 0 0);
    font-size: 25px;
    left: 0vw;
    right: 0;
    position: absolute;
    top: 45%;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: block;
  }
  #mexicogp2022_01_btn .red_button {
    font-size: 4.5vw;
  }

  .slider_images_container .image.image_mobile {
    display: block;
    width: 100%;
  }
}

/* Stayf1rst */

.stayfirst {
  background-image: url("../images/home/slider/01_2022_stayfirst_desktop.jpg");
  background-position: center center !important;
}

#stayfirst_container {
  position: absolute;
  width: 100vw;
  height: 100%;
}
#stayfirst_container .fullsize_link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

#stayfirst_btn {
  padding: 5px 15px;
  border-radius: 15px;
  text-shadow: 0 0 36px rgb(0 0 0);
  font-size: 25px;
  left: 10vw;
  position: absolute;
  top: 30%;
  margin: 0 auto;
  width: 23vw;
  text-align: left;
}
#stayfirst_btn img {
  width: 100%;
  display: block;
  height: auto;
  margin-bottom: 15px;
}
#stayfirst_btn .animation_item {
  transform: scale(1.05);
  opacity: 0;
  transition: all 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94); /* easeOutQuad */
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* easeOutQuad */
}

#stayfirst_btn .animation_item.in {
  transform: scale(1);
  opacity: 1;
}

#stayfirst_btn .red_button {
  background-color: #f8e91e;
  font-size: 1.5vw;
}
#stayfirst_btn .red_button a {
  color: #313131;
}
#stayfirst_btn.in {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1200px) {
  #stayfirst_btn {
    width: 33vw;
  }
  #stayfirst_btn .red_button {
    font-size: 2.5vw;
  }
}

@media (max-width: 767px) {
  #stayfirst_btn {
    width: 65vw;
    top: 54%;
    left: 2vw;
  }
  #stayfirst_btn .red_button {
    font-size: 4.5vw;
  }

  .stayfirst {
    background-image: url("../images/home/slider/01_2022_stayfirst_mobile.jpg");
  }
  #stayfirst_btn:after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    filter: blur(10px);
    transform: scale(1.2);
    background-color: rgba(0, 0, 0, 0.5);
  }
  #stayfirst_btn img,
  #stayfirst_btn div {
    position: relative;
    z-index: 1;
  }
}

/* Main slides */

.big_slider_text {
  font-size: 80px;
  line-height: 75px;
  opacity: 0;
  transform: translateX(-150px);
  text-shadow: -4px 3px 15px rgba(0, 0, 0, 0.7);
}
.small_slider_text {
  font-size: 40px;
  line-height: 45px;
  opacity: 0;
  transform: translateX(-150px);
  text-shadow: -4px 3px 15px rgba(0, 0, 0, 0.7);
}

.slide_info_container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: absolute;
  width: 100vw;
  height: 100%;
}
.slide_info_container .fullsize_link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.slide_info {
  position: relative;
  display: block;
  padding: 0 5vw 10vh;
  text-align: left;
}
.slide_info .red_button {
  margin-top: 30px;
  font-size: 16px;
}

.slide_info.in {
  opacity: 1;
  transform: translateX(0);
}

.slide_info .red_button a {
  padding: 6px 20px 8px;
}
.slide_info .animation_item {
  transform: scale(1.1);
  opacity: 0;
  transition: all 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94); /* easeOutQuad */
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* easeOutQuad */
}
.slide_info .animation_item.in {
  opacity: 1;
  transform: scale(1);
}

.no_text_shadow {
  text-shadow: none !important;
}

@media (max-width: 1500px) {
  .big_slider_text {
    font-size: 6vw;
    line-height: 5.7vw;
  }
  .small_slider_text {
    font-size: 3vw;
    line-height: 3vw;
  }
  .slide_info .red_button {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  .slide_info_container {
    align-items: flex-end;
  }
  .big_slider_text {
    font-size: 7vw;
    line-height: 6.5vw;
  }
}

/* Noticias */

.news {
  background-image: url("../images/home/slider/slide_news_2023.jpg");
  background-position: center center !important;
}

@media (max-width: 767px) {
  .news {
    background-image: url("../images/home/slider/slide_news_2023_mobile.jpg");
  }
}

@media (max-width: 600px) {
  #news_btn .red_button {
    font-size: 3.5vw;
  }

  #news_btn .title {
    font-size: 8.5vw;
    line-height: 9vw;
  }
}

/* Posters */

.posters {
  background-image: url("../images/home/slider/posters_2022.jpg");
  background-position: center center !important;
}

@media (max-width: 767px) {
  .posters {
    background-image: url("../images/home/slider/posters_2022_mobile.jpg");
  }
}

@media (max-width: 600px) {
  /*
	#news_btn .red_button{
		font-size: 3.5vw;
	}

	#news_btn .title {
	    font-size: 8.5vw;
	    line-height: 9vw;
	}
*/
}

/* Campeonato */

.championship {
  background-image: url("../images/home/slider/championship_bg.jpg");
  background-position: center center !important;
}

@media (max-width: 600px) {
  .championship {
    background-image: url("../images/home/slider/championship_mobile_bg.jpg");
  }
}

/* 2022 live */

.race2022 {
  background-image: url("../images/home/slider/fiesta2022.jpg");
  background-position: center center !important;
}

/* Hall of fame */

#hall_of_fame_container{
 align-items: center; 
}
.hall_of_fame {
  background-image: url("../images/home/slider/muro_de_honor.jpg");
  background-position: center center !important;
}

.hall_of_fame video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hall_of_fame video.hidden {
  display: none;
}

.hall_of_fame .slide_info {
  position: relative;
  display: block;
  margin-left: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 120px;
}
.hall_of_fame .slide_info .logo {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
.hall_of_fame .slide_info .red_button {
  background-color: #f2555a;
  box-shadow: 0 0 80px #f2555a;
}
.hall_of_fame .slide_info .red_button a {
  padding: 6px 50px 8px;
  letter-spacing: 2px;
  font-size: 14px;
}
#hall_of_fame_btn .cta {
  margin-top: 40px;
  letter-spacing: 0.5vw;
  font-size: 20px;
}
@media (max-width: 767px) {
  #hall_of_fame_container {
    align-items: center;
  }
  .hall_of_fame .slide_info .red_button a {
    font-size: 10px;
  }
  #hall_of_fame_btn .cta {
    font-size: 1rem;
  }

  .hall_of_fame .slide_info .logo {
    width: 100%;
  }
}

/* countdown slide */

.countdown {
  background-color: #fff;
  background-image: url("../images/home/slider/countdown_loop_poster.jpg");
  background-position: center center !important;
}

#countdown_container {
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.countdown video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.countdown video.hidden {
  display: none;
}

.countdown .slide_info {
  position: relative;
  display: block;
  margin-left: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 120px;
}
.countdown .slide_info .logo {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
.countdown .slide_info .red_button {
  background-color: #f2555a;
  box-shadow: 0 0 80px #f2555a;
}
.countdown .slide_info .red_button a {
  padding: 6px 50px 8px;
  letter-spacing: 2px;
  font-size: 14px;
}
.countdown .black_screen {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 1);
  transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
}
.countdown .black_screen.in {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.countdown_text {
  overflow: hidden;
  position: relative;
  padding: 0 5px;
}

.countdown_text span {
  display: block;
  padding-right: 2px;
  transform: translateY(1.5vw);
  transition: all 1500ms cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
  text-align: center;
}
.race_countdown_big_numbers .countdown_text span {
  transform: translateY(7vw);
}
#race_date {
  font-size: 2vw;
  line-height: 2vw;
  margin-top: 35px;
}
#race_date span {
  transform: translateY(2.2vw);
}
.missing_days_title {
  font-size: 1.5vw;
  line-height: 2vw;
}
.missing_days_title span {
  transform: translateY(1.8vw);
}

.missing_days_title.in span,
.countdown_text.in span,
#race_date.in span {
  transform: translateY(0vw);
}

.countdown_logo {
  position: relative;
  margin: 0 auto 30px;
  width: 40%;
  opacity: 0;
  transition: all 1500ms cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1); /* easeInOutQuart */
}
.countdown_logo.in {
  opacity: 1;
}

.table_titles td {
  padding-left: 13px;
}

@media (max-width: 992px) {
  #countdown_container {
    padding: 0 10vw;
  }
  .countdown_logo {
    margin: 0 auto 20px;
    width: 60%;
  }
  .missing_days_title {
    font-size: 2.5vw;
    line-height: 3vw;
  }
  #race_countdown {
    font-size: 1.5vw;
  }
  #race_date {
    text-align: center;
    font-size: 3vw;
    line-height: 3vw;
    margin-bottom: 5px;
  }
  #race_name {
    text-align: center;
  }
  .race_countdown_big_numbers {
    letter-spacing: -7px;
  }
  .countdown_text span {
    padding-right: 5px;
  }
  #race_date span {
    transform: translateY(3.2vw);
  }
  .missing_days_title span {
    transform: translateY(2.8vw);
  }
  .countdown_text span {
    transform: translateY(2.8vw);
  }
}

@media (max-width: 767px) {
  #countdown_container {
    align-items: center;
  }
  .countdown .slide_info .red_button a {
    font-size: 10px;
  }
  .race_countdown_big_numbers {
    letter-spacing: -2px;
  }
  .table_titles td {
    padding-left: 3px;
  }
  #race_countdown tr td {
    padding-right: 0px;
  }
}
@media (max-width: 600px) {
  #race_countdown {
    font-size: 2.5vw;
  }
  #race_date {
    font-size: 5vw;
    line-height: 5vw;
    margin-bottom: 5px;
  }
  #race_name {
    text-align: center;
  }
  .race_countdown_big_numbers {
    letter-spacing: -3px;
  }
  .countdown_text {
    padding: 0 2px;
  }
  .countdown_text span {
    padding-right: 5px;
  }
  .race_countdown_big_numbers {
    font-size: 8vw;
    line-height: 8vw;
    letter-spacing: -1px;
  }
  #race_date span {
    transform: translateY(5.2vw);
  }
  .missing_days_title {
    font-size: 3.5vw;
    line-height: 4vw;
  }
  .missing_days_title span {
    transform: translateY(4.8vw);
  }
  .countdown_text span {
    transform: translateY(5.8vw);
  }
  #race_countdown tr td {
    padding-right: 2px;
  }
  #race_name span {
    transform: translateY(7.8vw);
  }
  #race_name.in span {
    transform: translateY(0vw);
  }
}

/* Raceweek */

.raceweek {
  background-image: url("../images/home/slider/2025/raceweek_16_slider_italia.jpg");
  background-position: center center !important;
}
@media (max-width: 600px) {
  .raceweek {
    background-image: url("../images/home/slider/2025/raceweek_16_slider_italia_mobile.jpg");
  }
}

/* latest news slide */
.latest_news {
  background-position: center center !important;
}

.latest_news .black_screen {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+50,000000+100&0.95+0,0.15+50,0.81+100 */
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.3) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.latest_news .slide_info {
  width: 75%;
}

.news_35344 {
  background-image: url("https://mexicogp.s3.us-west-2.amazonaws.com/wp-content/uploads/2025/05/12043251/mejor-evento-entretenimiento-2025-desktop.jpg") !important;
}

.news_35344:after {
  content: "";
  position: absolute;
  left: 65%;
  top: 0;
  height: 100%;
  width: 25vw;
  background-image: url(https://mexicogp.s3.us-west-2.amazonaws.com/wp-content/uploads/2025/05/12041528/nota-mejor-evento-entretenimiento-2025-logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.news_35344 .black_screen {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 768px) {
  .latest_news .slide_info {
    width: 100%;
  }
  .news_35344 {
    background-image: url("https://mexicogp.s3.us-west-2.amazonaws.com/wp-content/uploads/2025/05/12041221/nota-mejor-evento-entretenimiento-2025-mobile.jpg") !important;
  }
  .news_35344:after {
    display: none;
  }
}

/* Racepect */

.racepect {
  background-image: url("../images/home/slider/racepect_bg.jpg");
  background-position: center center !important;
}
.racepect video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.racepect video.hidden {
  display: none;
}

.racepect .slide_info {
  position: relative;
  display: block;
  margin-left: 0;
  width: 100%;
  text-align: center;
}
.racepect .slide_info .logo {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 767px) {
  #racepect_container {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .racepect {
    background-image: url("../images/home/slider/racepect_bg.jpg");
  }
}

/* Newsletter */

.newsletter {
  background-image: url("../images/home/slider/slider_newsletter.jpg");
  background-position: center center !important;
}
@media (max-width: 600px) {
  .newsletter {
    background-image: url("../images/home/slider/slider_newsletter_movil.jpg");
  }
}

/* safetix */

.safetix {
  background-image: url("../images/home/slider/Safetix_Desktop.jpg");
  background-position: center center !important;
}
@media (max-width: 600px) {
  .safetix {
    background-image: url("../images/home/slider/Safetix_Mobile.jpg");
  }
}

/* FANZONE */

.fanzone2023 {
  background-image: url("../images/landingFanzones2023/mexicoGP_poster_2023.jpg");
  background-position: center center !important;
}

#fanzone2023_container {
  justify-content: center;
}
#fanzone2023_container .fullsize_link {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
}
#fanzone2023_btn {
  margin-left: 0;
  z-index: 2;
  text-align: center;
}
#frame {
  position: absolute;
  z-index: 1;
  width: 95%;
  height: 95%;
  top: 6%;
  left: 2.5%;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/landingFanzones2023/fanzone_frame_home_desktop.png");
}
#fanzone2023_container .logo {
  width: 70%;
  height: auto;
  max-width: 1000px;
  margin-bottom: -10px;
}

@media (max-width: 1500px) {
  #fanzone2023_btn .slide_info .red_button {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  #frame {
    background-image: url("../images/landingFanzones2023/f1_frame.png");
  }
}

@media (max-width: 767px) {
  #frame {
    background-image: url("../images/landingFanzones2023/f1_frame_mobile.png");
    width: 100%;
    left: 0;
  }

  #fanzone2023_01_container .fullsize_link {
    background-image: none;
  }

  #fanzone2023_btn {
    padding: 5px 15px;
    border-radius: 15px;
    text-shadow: 0 0 36px rgb(0 0 0);
    font-size: 25px;
    left: 0vw;
    right: 0;
    position: absolute;
    top: 45%;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: block;
  }
  #fanzone2023_btn .red_button {
    font-size: 2.5vw;
  }
  #fanzone2023_container .fullsize_link {
    background-color: rgba(0, 0, 0, 0.1);
  }
  #fanzone2023_container .logo {
    width: 80%;
  }
}

/* 2024 */

.tickets_slide {
  background-image: url("../images/home/slider/slider_desktop_cartel2024.jpg");
  background-position: center center !important;
}
@media (max-width: 600px) {
  .tickets_slide {
    background-image: url("../images/home/slider/slider_mobile_cartel2024.jpg");
  }
}

#tickets_slide_container {
  justify-content: center;
}
#tickets_slide_container .fullsize_link {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100vh;
  /* 	background-color: rgba(0,0,0,0.2); */
}
#tickets_slide_btn {
  margin-left: 0;
  z-index: 2;
  text-align: center;
}
#tickets_slide_container .frame {
  position: absolute;
  z-index: 1;
  width: 90%;
  height: 85%;
  top: 10%;
  left: 5%;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/home/slider/pleca_localidades_vip_desktop.png");
}
#tickets_slide_btn {
  margin-top: 5vh;
}
.slide_info#tickets_slide_btn .red_button {
  margin-top: 15px;
}

@media (max-width: 1500px) {
  #tickets_slide .slide_info .red_button {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  #tickets_slide_container .frame {
    background-image: url("../images/home/slider/pleca_localidades_vip_tablet.png");
    height: 100%;
  }
}

@media (max-width: 767px) {
  #tickets_slide_container .frame {
    background-image: url("../images/home/slider/pleca_localidades_vip_mobile.png");
    top: 2%;
    width: 85%;
    height: 95%;
    left: 7.5%;
  }
  #tickets_slide_btn {
    padding: 5px 15px;
    border-radius: 15px;
    text-shadow: 0 0 36px rgb(0 0 0);
    font-size: 25px;
    left: 0vw;
    right: 0;
    position: absolute;
    top: 45%;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: block;
  }
  #tickets_slide_btn .red_button {
    font-size: 2.5vw;
  }
  /*
	#tickets_slide_container .fullsize_link{
		background-color: rgba(0,0,0,0.1);
	}
*/
  #tickets_slide_container .logo {
    width: 80%;
  }
}

/* Sostenible */

.sostenible {
  background-image: url("../images/home/slider/slider_sostenible.jpg");
  background-position: center center !important;
}
#sostenible_btn {
  width: 60%;
  max-width: 800px;
}
#sostenible_btn .logo {
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .sostenible {
    background-image: url("../images/home/slider/slider_sostenible_mobile.jpg");
  }
}

/* HOME MAP */

#home_map,
#home_map_soon {
  position: relative;
  padding: 120px 50px 50px;
  background-color: #fff;
  background-image: url("../images/home/home_map_bg.jpg?v4");
  background-size: cover;
  background-position: center center;
}
#home_map_info {
  position: relative;
  padding: 50px 0px 50px 0;
  margin-top: 0px;
  width: 100%;
  max-width: 500px;
  text-align: right;
  /*     margin-top: 30%; */
}

#home_map_info:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 16px;
  background-image: url("../images/home/home_map_decoration.png");
  background-repeat: no-repeat;
  background-position: left center;
}
#home_map_info p {
  width: 100%;
  display: inline-block;
}

#home_map_info .small_desc_font {
  font-size: 14px;
}

@media (max-width: 768px) {
  #home_map_info .small_desc_font {
    font-size: 11px;
  }
  #home_map_info p br {
    display: none;
  }
}

/* COUNTDOWN BLOCK */

#home_countdown_block {
  position: relative;
  padding: 50px;
  background-color: #f12d1a;
}

/* HOME NEWS */

#home_news {
  position: relative;
  padding: 120px 50px;
  background-color: #333;
  background-image: url("../images/home/home_news_bg.jpg");
  background-size: cover;
  background-position: center center;
}
#home_news:before {
  content: "";
  position: absolute;
  right: 10%;
  top: 85px;
  width: 100%;
  height: 16px;
  background-image: url("../images/home/home_map_decoration.png");
  background-repeat: no-repeat;
  background-position: left center;
}

#home_news .container-fluid {
  max-width: 1800px;
}

#home_news .section_title {
  margin-bottom: 35px;
}

#home_news .subtitle_container {
  margin-bottom: 15px;
}
#home_news .subtitle_container .subtitle {
  margin-bottom: 10px;
}

#home_main_news .date {
  letter-spacing: 1px;
}

#home_main_news .photo,
#home_latest_news .photo {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 5px;
  margin-bottom: 25px;
  background-size: cover;
  background-position: center center;
}
#home_main_news .photo a,
#home_latest_news .photo a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

#home_main_news .title {
  font-size: 45px;
  line-height: 47px;
  margin-bottom: 15px;
}
#home_main_news:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 98%;
  height: 50px;
  border-bottom: 2px solid #333333;
  border-right: 2px solid #333333;
  border-bottom-right-radius: 10px;
}
#home_main_news .extract {
  margin-bottom: 35px;
}
#home_main_news .see_more {
  position: relative;
  margin-top: 30px;
  min-width: 170px;
  text-align: center;
}

.home_more_news {
  position: relative;
  border: 2px solid #333333;
  border-radius: 10px;
  padding: 18px 15px;
  margin-bottom: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.home_more_news .date {
  position: absolute;
  right: 15px;
  bottom: 8px;
  border: 18px;
  letter-spacing: 1px;
}
.home_more_news .thumb {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background-size: cover;
  background-position: center center;
  vertical-align: top;
  border-radius: 10px;
  overflow: hidden;
}

.home_more_news .title {
  display: inline-block;
  vertical-align: top;
  width: 75%;
  font-size: 14px;
  line-height: 19px;
}
.more_news_title {
  margin-bottom: 15px;
}

#home_news a {
  color: #fff;
}
#home_news a:hover {
  text-decoration: none;
}

#banner_slider_container {
  position: relative;
  width: 100%;
  height: 560px;
  max-width: 560px;
  margin: 0 auto 25px;
  border-radius: 5px;
  overflow: hidden;
}
#banner_slider_container .fullsize_link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

#stay_first_button {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
}
#stay_first_button img {
  width: 100%;
  height: auto;
}

/* HOME RANKING */

#home_ranking {
  position: relative;
  padding: 100px 50px 120px;
  background-color: #fff;
  background-color: #fff;
  background-image: url("../images/home/home_podium_bg.jpg?v1");
  background-size: cover;
  background-position: center center;
}
#home_ranking .container-fluid {
  max-width: 1800px;
}
#home_ranking .title {
  margin-bottom: 25px;
}

.col-inline {
  display: inline-block;
  vertical-align: top;
}

#podium_first_place .position {
  margin-bottom: 15px;
}

#podium_first_place .position .number {
  font-size: 36px;
  line-height: 34px;
  margin-top: -4px;
}
#podium_first_place .position .position_title,
#home_ranking .subtitle {
  margin-bottom: 10px;
}

#podium_first_place .points {
  margin-bottom: 15px;
}

#podium_first_place .photo {
  position: relative;
  width: 95%;
  height: 380px;
  background-size: cover;
  background-position: center top;
  margin-bottom: 20px;
  border-radius: 5px;
}
.podium_first_place_name .name {
  font-size: 16px;
  line-height: 16px;
}
.podium_first_place_name .lastname {
  font-size: 48px;
  line-height: 48px;
}

.podium_first_place:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 98%;
  height: 50px;
  border-bottom: 2px solid #9f9f9f;
  border-right: 2px solid #9f9f9f;
  border-bottom-right-radius: 30px;
}

#home_ranking .subtitle_container {
  margin-bottom: 18px;
}

#home_ranking .subtitle_container,
.podium_pilots_container {
  padding-left: 20px;
}

.podium_pilots_container .pilot {
  position: relative;
  border: 2px solid #cac7c7;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 8px 0;
  background-color: rgba(255, 255, 255, 0.9);
  /* 	box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
}

.podium_pilots_container .pilot div {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}
.podium_pilots_container .pilot .team {
  font-size: 9px;
}

.podium_pilots_container .pilot .points {
  position: absolute;
  right: 20px;
  font-size: 18px;
}
.podium_pilots_container .pilot .color {
  position: relative;
  width: 3px;
  height: 12px;
  margin: -2px 5px 0;
}
.list-ranking.list-last {
  margin-top: 20px;
}

@media (max-height: 950px) {
  #slide0_info_container {
    padding-top: 120px;
  }
  #slide0_info_container .text,
  #slide1_info_container .text {
    font-size: 60px;
    line-height: 55px;
  }
  #home_countdown {
    bottom: 50px;
  }
}

@media (max-width: 2000px) {
  #home_news .container-fluid,
  #home_ranking .container-fluid,
  #home_countdown_block .container-fluid {
    max-width: 1400px;
  }

  #banner_slider_container {
    height: 436px;
    max-width: 436px;
  }
  #home_main_news .photo,
  #home_latest_news .photo {
    height: 436px;
  }
}

@media (max-width: 1700px) {
  #home_news .container-fluid,
  #home_ranking .container-fluid,
  #home_countdown_block .container-fluid {
    max-width: 1200px;
  }

  #banner_slider_container {
    height: 350px;
    max-width: 350px;
  }
  #home_main_news .photo,
  #home_latest_news .photo {
    height: 350px;
  }
  #podium_first_place .photo {
    height: 280px;
  }
}

@media (max-width: 1500px) {
  #slide0_info_container .text,
  #slide1_info_container .text {
    font-size: 70px;
    line-height: 65px;
  }
  #slide0_info_container .prices {
    margin-top: -10px;
    width: 490px;
  }
}

@media (max-width: 1300px) {
  #slide0_info_container .text,
  #slide1_info_container .text {
    font-size: 65px;
    line-height: 60px;
  }
  #home_main_news .title {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (max-width: 1200px) {
  #slide0_info_container,
  #slide1_info_container {
    padding-left: 100px;
  }
  #home_map,
  #home_map_soon {
    padding: 180px 20px;
  }
  #slide0_buy_btn {
    font-size: 25px;
  }
  #slide1_btn {
    font-size: 20px;
  }
}

@media (max-width: 1050px) {
  #slide0_buy_btn {
    font-size: 20px;
  }
  #slide1_btn {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  #slide0_info_container .text,
  #slide1_info_container .text {
    font-size: 50px;
    line-height: 50px;
  }
  #slide0_info_container,
  #slide1_info_container {
    padding-left: 100px;
  }
  #slide0_info_container .prices {
    width: 60%;
  }
  #slide0_buy_btn {
    font-size: 18px;
  }
  #slide1_btn {
    font-size: 18px;
  }
  #race_days {
    font-size: 30px;
    line-height: 30px;
  }
  .home_countdown_col.left {
    width: 25%;
  }
  .home_countdown_col.right {
    width: 70%;
  }
  #home_countdown {
    width: 460px;
  }
  #race_month {
    display: none;
  }
  #home_main_news .title {
    font-size: 34px;
    line-height: 37px;
  }
  .podium_first_place_name .lastname {
    font-size: 32px;
    line-height: 32px;
  }
  #podium_first_place .points {
    font-size: 14px;
  }

  #home_map,
  #home_map_soon {
    padding: 180px 50px;
  }
  #home_map_info {
    text-align: left;
    margin-top: 0;
  }

  #home_main_news .see_more {
    margin-top: 0px;
    min-width: 130px;
  }
  #home_latest_news {
    margin-top: 50px;
  }
  #home_main_news:after {
    display: none;
  }

  /* slide DMX */

  #dmx_container {
    padding-left: 100px;
    padding-top: 180px;
  }

  #dmx_container .text {
    font-size: 60px;
    line-height: 60px;
  }

  #dmx_btn {
    margin-top: 35px;
    padding: 5px 15px;
    font-size: 18px;
  }

  /*/ forever f1 */
  #forever_f1_container {
    padding-left: 100px;
    padding-top: 180px;
  }

  #forever_f1_container .text {
    font-size: 50px;
    line-height: 50px;
  }

  #forever_f1_btn {
    margin-top: 35px;
    padding: 5px 15px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #home_map,
  #home_map_soon {
    padding: 100px 0;
  }

  #gallery_container .arrow .icon {
    width: 40px;
    height: 40px;
  }
 
 #gallery_container #left_arrow {
    right: calc(5vw + 55px);
  }

  #f1_70 {
    display: none;
  }
  #slide0_info_container .text,
  #slide1_info_container .text {
    font-size: 44px;
    line-height: 44px;
  }
  #slide0_info_container .text.by_sponsor {
    font-size: 25px;
  }
  #slide0_info_container,
  #slide1_info_container {
    padding-left: 80px;
  }
  #slide0_info_container .prices {
    margin-top: 0px;
    width: 90%;
  }
  #slide0_buy_btn {
    font-size: 16px;
  }
  #slide1_btn {
    font-size: 16px;
  }
 
  #gallery_container .arrow {
    opacity: 0.5;
  }
  #gallery_container .arrow:hover {
    opacity: 1;
  }
  #home_news:before {
    top: 27px;
    right: 25px;
  }

  .podium_pilots_container .pilot .points {
    font-size: 14px;
  }
  #home_map {
    background-position: right center !important;
  }
}

@media (max-width: 600px) {
  #slide0_info_container .text,
  #slide1_info_container .text {
    font-size: 30px;
    line-height: 30px;
  }
  #slide0_info_container .text.by_sponsor {
    font-size: 15px;
  }

  #home_countdown {
    left: -40px;
  }
  #slide_0_ahr_img {
    position: relative;
    width: 100%;
  }
  #race_days {
    font-size: 25px;
    line-height: 25px;
  }
  /*
	.race_countdown_big_numbers {
	    font-size: 28px;
	    line-height: 28px;
	}

	#race_countdown tr td {
	    padding-right: 9px;
	}
*/
  #slide0_info_container,
  #slide1_info_container {
    top: 0%;
    left: 0px;
    height: 100%;
    padding-top: 100px;
    padding-left: 20px;
  }
  #slide0_buy_btn.red_button {
    font-size: 11px;
  }
  #slide0_buy_btn {
    margin-bottom: 20px;
  }
  #slide1_btn {
    font-size: 11px;
  }
  #home_countdown {
    margin-top: 0px;
    position: absolute;
    bottom: 40px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
  }

  .home_countdown_col {
    padding: 0 5px;
  }
  /*
	#race_countdown {
	    font-size: 8px;
	    line-height: 8px;
	}
*/
  .in_width#home_countdown:after {
    display: none;
  }
  #gallery_container .arrow .name {
    display: none;
  }
  #gallery_container .arrow .icon {
    width: 30px;
    height: 30px;
  }
  #gallery_container .arrow {
    bottom: 12px;
  }
  #gallery_container #right_arrow{
    right: 3vw;
  }
  #gallery_container #left_arrow {
      right: calc(3vw + 40px);
  }

  #slider_buttons {
    bottom: 20px;
  }

  #home_map,
  #home_map_soon {
    padding: 80px 0px;
  }
  #home_countdown_block {
    padding: 50px 30px;
  }

  #home_news {
    padding: 120px 30px;
  }
  #home_ranking {
    padding: 100px 30px 120px;
  }
  #home_ranking .subtitle_container,
  .podium_pilots_container {
    padding-left: 0;
  }
  #podium_first_place .photo {
    width: 100%;
  }

  #home_main_news .photo,
  #home_latest_news .photo {
    height: 200px;
  }
  .podium_pilots_container .pilot .points {
    font-size: 12px;
  }

  /* slide DMX */

  #dmx_container {
    padding-left: 20px;
    padding-top: 140px;
  }

  #dmx_container .text {
    font-size: 30px;
    line-height: 30px;
  }

  #dmx_btn {
    margin-top: 10px;
    padding: 5px 15px;
    font-size: 11px;
  }

  /*/ forever f1 */
  #forever_f1_container {
    padding-left: 20px;
    padding-top: 140px;
  }

  #forever_f1_container .text {
    font-size: 25px;
    line-height: 25px;
  }

  .forever_f1_item_bg {
    background-image: url("../images/home/slider/02_forever_f1_mobile.jpg?v3");
    background-position: center top;
  }
  .dinamica_bg {
    background-image: url("../images/home/slider/checo_home_slider_vertical_mobile.jpg?v3");
    background-position: center bottom;
  }

  #forever_f1_container {
    display: none;
  }

  #forever_f1__mobile_link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
  }

  /*
	#forever_f1_btn{
		margin-top: 10px;
		padding: 5px 15px;
		font-size: 11px;
	}
*/
}

@media (max-width: 600px) {
  #home_slider {
    height: 100vh;
    height: 100dvh;
  }
  #gallery_images_container {
    min-height: auto;
  }
}

@media (max-width: 400px) {
  /*
	#slide0_item{
		background-image: url("../images/home/poster_mexicogp_2020_responsive.jpg?v1");
	}
*/
  #slide0_info_container .text,
  #slide1_info_container .text {
    font-size: 32px;
    line-height: 30px;
  }
  #slide0_info_container,
  #slide1_info_container {
    padding-left: 10px;
  }

  #race_days {
    font-size: 24px;
    line-height: 24px;
  }
  /*
	.race_countdown_big_numbers {
	    font-size: 18px;
	    line-height: 18px;
	}
	#race_countdown tr td {
	    padding-right: 6px;
	}

*/
 
  #gallery_images_container .image.faded {
    opacity: 0;
    width: 100%;
  }

  body {
    font-size: 0.8rem;
  }

  .home_countdown_col.left {
    display: none;
  }
  .home_countdown_col.right {
    margin-left: 20px;
  }

  #home_news {
    padding: 70px 0px;
  }
  #home_ranking {
    padding: 70px 0px;
  }
  #home_map_soon {
    padding: 40px 20px;
  }

  #home_map_soon .section_title {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  #home_countdown_block {
    padding: 40px 0px;
  }
}

/* Poster 2026 */

.poster2026 {
  background-image: url("../images/mexicogp2026/mexicogp_poster2026_bg.webp");
}
.poster2026 .poster_cars .poster_car{
  position: absolute;
}
.poster2026 .poster_cars .poster_car img{
  width: 100%;
  height: auto;
}
.poster2026 .poster_cars .poster_car:nth-child(1){
  left: 8.5vw;
  top: 30vh;
  width: 20vw;
}
.poster2026 .poster_cars .poster_car:nth-child(2){
  left: 47vw;
  top: 14vh;
  width: 18vw;
}
.poster2026 .poster_cars .poster_car:nth-child(3){
 left: 74vw;
 top: 24vh;
 width: 19vw;
}
.poster2026 .vamos{
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 30%;
  max-width: 650px;
  bottom: 12%;
}
.poster2026 .logo{
  position: absolute;
  left: 1vw;
  top: 88px;
  width: 25%;
}
.poster2026 .logo img{
  width: 100%;
  height: auto;
}
.poster2026 .pleca{
  position: absolute;
  left: 1vw;
  right: 1vw;
  bottom: 17px;
  width: 45%;
  max-width: 1000px;
  margin: 0 auto;
}
.poster2026 .pleca img{
  width: 100%;
  height: auto;
}



@media(max-width:1400px){
  .poster2026 .poster_cars .poster_car:nth-child(1) {
      left: 1.5vw;
      top: 30vh;
      width: 22vw;
  }
  .poster2026 .poster_cars .poster_car:nth-child(2) {
      left: 48vw;
      top: 18vh;
      width: 22vw;
  }
  .poster2026 .poster_cars .poster_car:nth-child(3) {
      left: 79vw;
      top: 24vh;
      width: 22vw;
  }
}

@media(max-width:990px){
  .poster2026 {
    background-image: url("../images/mexicogp2026/mexicogp_poster2026_bg_mobile.webp");
  }
  .poster2026 .poster_cars .poster_car:nth-child(1) {
    left: -1.5vw;
    top: 37%;
    width: 29vw;
  }
  .poster2026 .poster_cars .poster_car:nth-child(2) {
    left: 42vw;
    top: 29%;
    width: 28vw;
  }
  .poster2026 .poster_cars .poster_car:nth-child(3) {
     left: 72vw;
     top: 33%;
     width: 29vw;
  }
  .poster2026 .logo {
      position: absolute;
      left: 1vw;
      top: 78px;
      width: 40%;
  }
}
@media(max-width:600px){
  .poster2026 .logo {
      position: absolute;
      left: 1vw;
      top: 58px;
      width: 40%;
  }
  .poster2026 .pleca{
    width: 70%;
  }
}

/* HERO */

.blue_bg {
  background-color: #003494;
}

.hero {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100vh;

  color: #fff;
}
.hero .race_title {
  position: absolute;
  left: 0;
  top: 9vh;
  width: 100%;
  padding: 0 2vw;
  z-index: 1;
}
.hero .eagle_container {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50vh;
  z-index: 0;
}
.hero .eagle {
  position: relative;
  height: 100%;
}

.hero .car_container {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 80vh;
  max-height: 900px;
  z-index: 2;
}
.hero .car_container .car {
  position: relative;
  height: 100%;
}
.hero .eagle img,
.hero .car_container .car img {
  width: auto;
  height: 100%;
}

.hero .info {
  position: absolute;
  right: 5%;
  bottom: 15%;
  text-align: right;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero .info .title {
  font-size: 4rem;
  line-height: 4.2rem;
}
.hero .info .text {
  font-size: 2rem;
  line-height: 2.1rem;
  margin-bottom: 20px;
}

.hero .scroll {
  position: absolute;
  left: 50%;
  bottom: 5%;
  width: 15vw;
  margin-left: -7.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  text-align: center;
  font-size: 0.7rem;
}
.hero .scroll .arrow {
  width: 30px;
}

.hero .animation_item {
  transition: all 800ms cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}

.hero .eagle {
  /* 	opacity: 0; */
  transform: translateX(-100vw) translateY(100vh);
  transition-delay: 150ms;
}
.hero .eagle.in {
  opacity: 1;
  transform: translateX(0vw) translateY(0vh);
}
.hero .car {
  /* 	opacity: 0; */
  transform: translateX(-100vw) translateY(100vh);
  transition-delay: 0ms;
}
.hero .car.in {
  opacity: 1;
  transform: translateX(0vw) translateY(0vh);
}

.hero .info div {
  opacity: 0;
  transform: translateY(50px);
  filter: blur(50px);
  transition-delay: 900ms;
}
.hero .info.in div {
  opacity: 1;
  transform: translateY(0vh);
  filter: blur(0px);
}

.hero .scroll div {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 1000ms;
}
.hero .scroll.in div {
  opacity: 1;
  transform: translateY(0vh);
}

@media (max-width: 1400px) {
  .hero .car_container {
    left: auto;
    right: 20%;
  }
  .hero .info {
    width: 50%;
  }
  .hero .info .title {
    font-size: 3.2rem;
    line-height: 3.4rem;
  }
  .hero .info .text {
    font-size: 1.5rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 768px) {
  .hero .car_container {
    height: 78vh;
    right: 0%;
  }
  .hero .eagle_container {
    position: absolute;
    left: 0;
    bottom: auto;
    z-index: 0;
    top: 30vh;
    width: 80%;
    height: auto;
    left: auto;
    right: 40%;
  }
  .hero .eagle img,
  .hero .car_container .car img {
    width: 100%;
    height: auto;
  }

  .hero .info {
    position: absolute;
    right: 0%;
    left: 0%;
    margin: 0 auto;
    bottom: 15%;
    text-align: center;
    z-index: 3;
    width: 100%;
    align-items: center;
  }
  .hero .info .title {
    font-size: 3rem;
    line-height: 3.2rem;
  }
  .hero .info .text {
    font-size: 1rem;
    line-height: 1.1rem;
    width: 75%;
    margin: 0 auto 20px;
  }
  .hero .scroll {
    position: absolute;
    left: 0;
    bottom: 2%;
    width: 100%;
    margin-left: 0;
  }
  .hero .eagle,
  .hero .car {
    transform: translateX(-100vw) translateY(30vh);
  }
  .hero .eagle {
    transition-delay: 50ms;
  }
}
@media (max-width: 500px) {
  .hero .info .title {
    font-size: 2.5rem;
    line-height: 2.7rem;
  }
}

/* first_options */
#first_options {
  padding: 10vh 8%;
  /* 	min-height: 100vh; */
}
#first_options .row_container {
  position: relative;
  display: flex;
  padding: 10vh 0;
}
#first_options .row_container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0vh;
  opacity: 0;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-top-right-radius: 30px;
  z-index: 0;
  transition: all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}
#first_options .row_container.in:before {
  opacity: 1;
  height: 8vh;
}

#first_options .row_container .option {
  width: 50%;
}
#first_options .row_container .option .pre_title {
  position: relative;
  font-size: 2vw;
  line-height: 2.2vw;
  padding-left: 10px;
}
#first_options .row_container .option h1 {
  font-size: 6.2vw;
  line-height: 6vw;
}

#first_options .row_container .option a {
  color: #000;
  text-decoration: none;
}
#first_options .row_container .option a:hover {
  color: #f12d19;
}

.red_arrow_link {
  position: relative;
  margin-top: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 800ms cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}
.red_arrow_link.in {
  opacity: 1;
  transform: translateY(0px);
}

.red_arrow_link .red_arrow {
  width: 30px;
}
.red_arrow_link img {
  width: 100%;
  height: auto;
}

.f1_logo {
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  #first_options .row_container {
    flex-direction: column;
  }
  #first_options .row_container .option {
    width: 100%;
    margin-bottom: 2vh;
  }

  #first_options .row_container .option h1 {
    font-size: 11.2vw;
    line-height: 10vw;
  }
  .phrase .word .letter_mask .letter {
    transform: translateY(12vw);
  }
  #first_options {
    min-height: auto;
  }
  #first_options .row_container:nth-child(2).in:before {
    display: none;
  }
  #first_options .row_container {
    padding: 10vh 0 0;
  }
  #first_options .row_container:nth-child(2) {
    padding: 0;
  }

  .red_arrow_link .red_arrow {
    width: 20px;
  }
}

/* FOOTER SPONSOR */
.home_sponsors_2025 {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2vw;
  background-color: #000;
  padding: 20px 5vw;
  flex-wrap: wrap;
}
.home_sponsors_2025 div{
  display: flex;
  align-items: center;
}
.home_sponsors_2025 div img {
  height: 18px;
  width: auto;
}

#sponsor_cdmx {
  height: 30px;
}
#sponsor_heineken {
  height: 35px;
  transform: translateY(-6px);
}
#sponsor_banamex {
  height: 23px;
}

#sponsor_banorte {
  height: 15px;
}
#sponsor_gnp {
  height: 25px;
}
#sponsor_hsbc {
  height: 22px;
}
#sponsor_tane {
  height: 22px;
}
#sponsor_heraldo {
  height: 28px;
}
#sponsor_telcel {
  height: 14px;
}
#sponsor_value {
  height: 21px;
}

@media (max-width: 1200px) {
  .home_sponsors_2025 div img {
    height: 14px;
  }

  #sponsor_cdmx {
    height: 25px;
  }
  #sponsor_heineken {
    height: 23px;
  }
  #sponsor_banorte {
    height: 10px;
  }
  #sponsor_gnp {
    height: 20px;
  }
  #sponsor_hsbc {
    height: 17px;
  }
  #sponsor_tane {
    height: 17px;
  }
  #sponsor_heraldo {
    height: 24px;
  }
  #sponsor_telcel {
    height: 12px;
  }
}

@media (max-width: 767px) {
  .home_sponsors_2025 {
    gap: 15px;
  }
  .home_sponsors_2025 div img {
    height: 12px;
  }
  #sponsor_cdmx {
    height: 18px;
  }
  #sponsor_heineken {
    height: 17px;
  }
  #sponsor_banorte {
    height: 8px;
  }
  #sponsor_gnp {
    height: 15px;
  }
  #sponsor_hsbc {
    height: 12px;
  }
  #sponsor_tane {
    height: 12px;
  }
  #sponsor_heraldo {
    height: 22px;
  }
  #sponsor_telcel {
    height: 10px;
  }
}
