@charset "UTF-8";

.track3 {
  position: relative;
  /* padding: 0 min(10rem, 10vw); */
  color: #ece7e2;
  width: 100vw;
  box-sizing: border-box;
}

.track3 .background {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.track3 .track-container {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-template-columns: 25vw 1fr; */
  min-height: 100vh;
  position: relative;
  width: 100vw;
  box-sizing: border-box;
}

.track3 .track-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.3rem;
  padding: 12% 0;
  width: 100vw;
  position: relative;
  z-index: 1;
}

.track3 .title {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: min(55px, 10vw);
  margin-bottom: 30px;
  letter-spacing: 0.1vw;
/*
  transform: translateY(0.5em);
  margin-bottom: 0.67em;
*/
}

.track3 .title>div {
  display: inline-block;
  height: 1.1em;
}

#track_description {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 0;
}

#track_description.show {
  opacity: 1;
}



.track3 .paragraph {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  text-align: left;
  position: relative;
  opacity: 1;
}


.track3 .texts {
  position: relative;
  top: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.track3 .texts.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.track3 .texts .text {
  width: 100%;
  top: 2rem;
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: min(17px, 5vw);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  padding-bottom: 1rem;
  padding-left: 1rem;
  overflow: hidden;
  font-family: futura-pt, sans-serif;
}


.track3 .texts .text:hover {
  opacity: 0.8;
}

.track3 .texts .text.active {
  opacity: 1 !important;
}

.track3 .texts .text .name {
  position: relative;
}

.track3 .texts .text .name:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.track3 .texts .text.active .name:after {
  width: 100%;
}

.track3 .texts .text .lenght {
  opacity: 0.8;
  font-weight: 400;
}

.track3 .texts .text:first-child {
  padding-bottom: 0;
}

.track3 .texts .text img {
  width: 2.2rem;
  height: 2.2rem;
}

.track3 .texts .text .text-c {
  width: fit-content;
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0);
  opacity: 1;
}

.track3 .texts .text .text-c.show {
  animation: show-btn 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes show-btn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#tracks_menu .paragraph {
  margin-bottom: 2rem;
}


.track3 .three-map {
  width: 100%;
  height: 100%;
  min-height: 50vh;
  position: relative;
  margin: 0;
  padding: 0;
  padding-left: min(17rem, 20vw);
  overscroll-behavior: none;
  cursor: grab;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  pointer-events: none;
}
.track3 .three-map canvas{
	transform: scale(0.8);
}

.track3 .legal {
  position: absolute;
  right: 2vw;
  bottom: 2rem;
  text-align: right;
  font-size: 12px;
  opacity: 0.7;
}

.track3 .paragraph.show {
  animation: show-p 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes show-p {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.track3 .title .word {
  height: 0em;
}

.track3 .title .word {
  animation: show-title 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 0s;
  overflow: hidden;
  display: inherit;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: min(55px, 10vw);
  margin: 0;
  text-transform: uppercase;
}

@keyframes show-title {
  0% {
    height: 0em;
  }

  100% {
    height: 1.1em;
  }
}

.button_arrow {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.button_arrow img {
  height: 1.3rem;
  width: 1.3rem;
  opacity: 1;
}

.track3 .button_arrow div {
  position: relative;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
}

.button_arrow div:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: 1px;
}

.button_arrow.back img {
  transform: rotate(180deg);
}

#track_description .button_arrow {
  margin-top: 1rem;
}

#tracks_menu .button_arrow.back {
  margin-bottom: 1.5rem;
}

.track_info_container {
  position: relative;
/*
  font-size: min(19px, 6vw);
  line-height: min(28px, 7vw);
*/
  font-weight: 400;
  padding-left: min(10rem, 10vw);
  width: 25vw;
}

.track3 .title {
  padding-left: min(10rem, 10vw);
}

.mobile_track {
  display: none;
}

.mobile_tracks_title {
  display: none;
}

.mobile_tracks_title h3 {
  text-transform: uppercase;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 7vw;
  line-height: 8vw;
  text-align: center;
}

@media(max-width:1200px){
	.track_info_container{
		padding-left: min(10rem, 5vw);
		width: 32vw;
	}
	.track3 .title {
    	padding-left: min(10rem, 5vw);
	}
}

@media (max-width: 992px) {
  .track3 .track-container {
    padding-left: 0px;
  }

  .track3 .track-info {
    width: 100%;
    padding: 15% 0;
  }

  .track3 .three-map {
    position: relative;
    padding-left: 0;
    width: 100%;
    height: 50vh;
    min-height: auto;
    margin-top: -15vh;
    pointer-events: none;
  }

  .track3 .three-map canvas {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 1;
  }

  .track3 .three-map .legal {
    z-index: 0;
    text-align: center;
  }

  .track3 .title {
    padding: 0 30px;
  }

  .mobile_track,
  .mobile_tracks_title {
    display: block;
  }
  .mobile_track{
	  width: 100%;
	  max-width: 450px;
	  margin: 0 auto;
	  position: relative;
  }

  .mobile_track img {
    width: 100%;
    height: auto;
  }

  .track_info_container {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
  }

  #track_description {
    width: 88%;
    position: relative;
    opacity: 1;
  }

  .track3 .texts {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .track3 .texts .text {
    opacity: 1;
    font-size: min(15px, 5vw);
  }

  .menu_items_container {
    display: flex;
  }

  .track3 .texts .text {
    width: 50%;
    justify-content: center;
    padding-left: 0;
  }

  .track3 .button_arrow {
    display: none;
  }

  .track3 .texts .text img {
    width: 1.5rem;
    height: 1.5rem;
    top: 5px;
    display: block;
    position: relative;
  }
}

@media(max-width:767px) {
  .track3 .track-info {
    padding:  100px 0;
  }

  
  #track_description {
    width: 100%;
  }

  .track3 .title {
    text-align: center;
  }

  .track3 .paragraph {
    text-align: center;
  }

  .menu_items_container {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .track3 .texts .text {
    width: 100%;
    padding-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    justify-content: flex-start;
  }

  .track3 .texts .text.active {
    padding-bottom: 2rem;
  }

  .track3 .texts .text:first-child {
    padding-bottom: 1rem;
  }

  .track3 .texts .active.text:first-child {
    padding-bottom: 2rem;
  }

  .track3 .texts .text .lenght {
    position: absolute;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 200px;
  }

  .track3 .texts .text.active .lenght {
    transform: translateY(0px);
    opacity: 1;
  }
  .track3 .three-map canvas{
	transform: scale(1);
	}
	.track3 .legal {
	    position: absolute;
	    right: 2vw;
	    left: 2vw;
	    margin: 0 auto;
	    text-align: center;
	}
	.track3 .texts .text .text-c{
		align-items: center;
		justify-content: center;
		width: 100%;
	}
}
