@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth; }
  @media only screen and (max-width: 78em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 53.75em) {
    html {
      font-size: 50%; } }
  @media only screen and (max-width: 30em) {
    html {
      font-size: 37.5%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  width: 100vw;
  overflow-x: hidden;
  background-color: #101010;
  font-family: "Oswald", sans-serif;
  color: #dddddd; }
  body.loading {
    overflow: hidden;
    height: 100vh; }

.row {
  width: 100%;
  display: flex; }
  @media only screen and (max-width: 53.75em) {
    .row {
      flex-direction: column-reverse;
      align-items: center; } }

.back-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid black;
  /* Tamaño y color de la flecha */
  margin: 20px;
  /* Espaciado alrededor de la flecha */
  margin-top: 0;
  display: inline-block;
  right: 6rem;
  top: 0;
  color: white; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: black !important; }

ul {
  list-style: none; }

/* Overlay full screen */
#formContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; }

/* Cuando esté oculto */
#formContainer.hidden {
  display: none; }

.ascent_title {
  color: yellow;
  width: 100%;
  font-size: 5rem;
  text-align: center;
  margin-bottom: 3rem; }

.typo-section-title {
  color: #101010;
  font-size: 6rem;
  font-weight: 600;
  align-self: flex-start;
  transition: opacity 0.6s ease-in-out 0.4s;
  opacity: 0; }
  @media only screen and (max-width: 78em) {
    .typo-section-title {
      font-size: 4rem; } }
  @media only screen and (max-width: 53.75em) {
    .typo-section-title {
      font-size: 5rem; } }
  @media only screen and (max-width: 30em) {
    .typo-section-title {
      font-size: 6rem; } }

.typo-section-title.show {
  opacity: 1; }

.typo-section-title:not(:first-child) {
  margin-top: -2rem; }

.typo-section-title.form-title {
  color: white;
  width: 60rem; }

.list-icon {
  color: #22ac79;
  font-size: 6rem;
  transform: translateY(2rem);
  margin-right: 2rem; }

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg); }
  25% {
    transform: rotate(90deg); }
  50% {
    transform: rotate(180deg); }
  75% {
    transform: rotate(270deg); }
  100% {
    transform: rotate(360deg); } }

.rotate-object {
  animation-name: rotateAnimation;
  animation-duration: 50s;
  /* 2 seconds for one complete rotation */
  animation-iteration-count: infinite;
  /* Infinite makes it rotate forever */
  animation-timing-function: linear;
  /* Keeps the speed consistent */
  animation-direction: alternate-reverse; }

.color-animation {
  background-image: linear-gradient(to right bottom, #475ca7, #745aa3, #ff4163);
  animation: cambiarGradienteSuave 10s infinite;
  background-repeat: no-repeat;
  animation-direction: alternate-reverse; }

.spinner {
  border: 4px solid transparent;
  border-radius: 50%;
  border-top: 4px solid white;
  border-right: 4px solid transparent;
  border-bottom: 4px solid white;
  width: 3rem;
  height: 3rem;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes cambiarGradiente {
  0% {
    background: linear-gradient(to right, #475ca7 0%, #745aa3 100%); }
  25% {
    background: linear-gradient(to bottom right, #475ca7 25%, #745aa3 75%); }
  50% {
    background: linear-gradient(to bottom, #475ca7 50%, #745aa3 50%); }
  75% {
    background: linear-gradient(to bottom left, #475ca7 75%, #745aa3 25%); }
  100% {
    background: linear-gradient(to left, #475ca7 100%, #745aa3 0%); } }

@keyframes cambiarGradienteSuave {
  0%,
  100% {
    background-size: 100% 100%;
    background-position: right bottom; }
  50% {
    background-size: 200% 200%;
    background-position: left top; } }

@keyframes gradient {
  0% {
    background-position: 0% 0%; }
  50% {
    background-position: 500% 50%; }
  100% {
    background-position: 1000% 100%; } }

.loader_container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #101010;
  transition: all 3s ease-in; }

.loader {
  position: relative;
  width: 30%;
  height: 30rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center; }
  .loader_text {
    font-size: 3rem;
    letter-spacing: 0.3rem; }

.loader img {
  width: 100%;
  display: block;
  z-index: 100;
  position: relative; }

.loader .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #101010;
  z-index: 101;
  transition: height 0.1s linear; }

.section {
  width: 100vw;
  padding: 2rem 10rem;
  color: #dddddd;
  position: relative; }
  .section_header {
    background: url("/src/img/header_background_3_blur.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8rem; }
    @media only screen and (max-width: 30em) {
      .section_header {
        background-position: bottom center; } }
  .section_projects {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .section_title {
    width: calc(100vw - 20rem);
    font-size: 6rem;
    margin-left: 10rem;
    color: yellow;
    margin-bottom: 10rem;
    border-style: solid;
    border-width: 0;
    border-bottom-width: 2px;
    border-color: yellow; }
    @media only screen and (max-width: 78em) {
      .section_title {
        margin-left: 5rem;
        width: calc(100vw - 10rem);
        font-size: 5rem; } }
  .section_title.right {
    width: calc(100vw - 20rem);
    font-size: 6rem;
    margin-left: 10rem;
    margin-bottom: 10rem;
    border-style: solid;
    border-width: 0;
    border-bottom-width: 2px;
    border-color: yellow;
    text-align: right; }

.difumination {
  width: 100%;
  height: 8rem;
  background: linear-gradient(to top, #101010, transparent);
  transform: translateY(-8rem);
  margin-bottom: 30vh; }
  @media only screen and (max-width: 30em) {
    .difumination {
      margin-bottom: 20vh; } }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  box-shadow: 0 0.1rem 2rem rgba(255, 255, 255, 0.1);
  background-color: #101010;
  z-index: 50;
  transition: all 1s ease;
  transform: translateY(-10rem);
  opacity: 0; }
  @media only screen and (max-width: 30em) {
    .navbar {
      padding: 0 3rem; } }
  .navbar.down {
    transform: translateY(0rem);
    opacity: 1; }
  .navbar_logo_container {
    height: 60%;
    width: auto;
    transition: all 0.2s ease-in;
    transform: translateY(-10rem);
    cursor: pointer; }
    .navbar_logo_container.down {
      transform: translateY(0rem); }
  .navbar_logo {
    height: 100%;
    width: auto; }
  .navbar_menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
    font-size: 1.8rem;
    color: #dddddd; }
  .navbar_button {
    position: relative;
    margin-right: 2rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.1s ease; }
    .navbar_button::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 4px;
      background-color: yellow;
      transition: width 0.3s ease-in-out; }
    .navbar_button:hover::before {
      width: 100%; }
    .navbar_button.hidden {
      display: none !important; }
    .navbar_button.selected {
      color: yellow; }

.navbar_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  box-shadow: 0 0.1rem 2rem rgba(255, 255, 255, 0.2);
  background-color: #101010;
  z-index: 50; }
  @media only screen and (max-width: 30em) {
    .navbar_fixed {
      padding: 0 4rem; } }
  .navbar_fixed_logo_container {
    height: 60%;
    width: auto;
    cursor: pointer; }
  .navbar_fixed_logo {
    height: 100%;
    width: auto; }
  .navbar_fixed_menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
    font-size: 1.5rem;
    color: #dddddd; }
    @media only screen and (max-width: 30em) {
      .navbar_fixed_menu {
        font-size: 2.5rem; } }
  .navbar_fixed_button {
    position: relative;
    margin-right: 2rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.1s ease; }
    .navbar_fixed_button::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 4px;
      background-color: yellow;
      transition: width 0.3s ease-in-out; }
    .navbar_fixed_button:hover::before {
      width: 100%; }
    .navbar_fixed_button.selected {
      color: yellow;
      scale: 1.2; }

.next_mountain_container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  background-color: rgba(16, 16, 16, 0.8);
  box-shadow: 0 0.1rem 1rem rgba(255, 255, 255, 0.1);
  color: grey;
  padding: 2rem 10rem;
  z-index: 50;
  transition: all 1s ease;
  transform: translateY(5rem);
  opacity: 0; }
  .next_mountain_container.down {
    transform: translateY(0rem);
    opacity: 1; }
  @media only screen and (max-width: 53.75em) {
    .next_mountain_container {
      display: none; } }

.next_mountain_timer {
  font-size: 2rem; }

.header_container {
  width: 100%;
  height: 30rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: all 1s ease; }

.header_title,
.header_subtitle {
  text-shadow: 0.5rem 0.2rem 1rem rgba(0, 0, 0, 0.8);
  color: #dddddd; }

.header_title {
  font-size: 8rem;
  font-weight: 300; }
  @media only screen and (max-width: 30em) {
    .header_title {
      font-size: 6rem; } }

.header_subtitle {
  font-size: 4rem; }

.project {
  width: 80%;
  position: relative;
  padding: 10rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20rem;
  overflow-x: hidden;
  border-radius: 10px;
  box-shadow: 0rem 0rem 3rem rgba(255, 255, 255, 0.1); }
  @media only screen and (max-width: 78em) {
    .project {
      padding: 8 5rem; } }
  @media only screen and (max-width: 30em) {
    .project {
      flex-direction: column;
      padding: 6rem 5rem;
      padding-top: 13rem; } }
  .project_image_container {
    position: relative;
    width: 70%; }
    @media only screen and (max-width: 53.75em) {
      .project_image_container {
        width: 60%; } }
    @media only screen and (max-width: 30em) {
      .project_image_container {
        width: 100%;
        padding-top: 5rem; } }
  .project_image {
    width: 100%; }
  .project_specs {
    font-size: 2rem; }
  .project_specs_container {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 5rem; }
    @media only screen and (max-width: 78em) {
      .project_specs_container {
        padding-left: 2rem; } }
    @media only screen and (max-width: 30em) {
      .project_specs_container {
        width: 80%; } }
  .project_title {
    font-size: 5rem;
    margin-bottom: 5rem;
    align-self: center; }
    @media only screen and (max-width: 78em) {
      .project_title {
        font-size: 4rem; } }
  .project_date_container {
    width: 100%;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-style: solid;
    border-width: 0;
    border-bottom-width: 2px;
    border-color: yellow;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 1rem 4rem; }
  .project_date {
    font-size: 4rem;
    color: yellow; }
  .project_timer {
    color: yellow;
    font-size: 3rem; }
  .project_bullet {
    margin-bottom: 1rem;
    font-weight: 300; }
    @media only screen and (max-width: 78em) {
      .project_bullet {
        font-size: 1.8rem;
        font-weight: 100; } }
    @media only screen and (max-width: 30em) {
      .project_bullet {
        font-size: 2.7rem; } }
  .project_bullet span {
    color: yellow;
    margin-right: 1rem; }
    @media only screen and (max-width: 78em) {
      .project_bullet span {
        font-size: 2rem; } }
  .project_weather_container {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 30rem;
    height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 100; }
    @media only screen and (max-width: 78em) {
      .project_weather_container {
        top: 2rem; } }
    @media only screen and (max-width: 53.75em) {
      .project_weather_container {
        top: -2rem; } }
    @media only screen and (max-width: 30em) {
      .project_weather_container {
        top: 0; } }
    .project_weather_container.right {
      top: 4rem;
      right: 0%;
      transform: translateX(250%); }
      @media only screen and (max-width: 78em) {
        .project_weather_container.right {
          transform: translateX(165%); } }
  .project_weather_spec {
    font-weight: 200;
    font-size: 1.6rem;
    color: grey; }
    .project_weather_spec.right {
      text-align: end; }
    @media only screen and (max-width: 30em) {
      .project_weather_spec {
        font-size: 2rem; } }
  .project_button {
    padding: 0.6rem 6rem;
    border-radius: 8px;
    font-size: 1.8rem;
    background-color: yellow;
    color: black;
    margin-top: 2rem;
    align-self: center;
    transition: all 0.1s ease-in;
    cursor: pointer; }
    .project_button:hover {
      scale: 1.1; }
    @media only screen and (max-width: 30em) {
      .project_button {
        padding: 0.6rem 0;
        width: 100%;
        text-align: center;
        font-size: 2.2rem; } }

.mountain_popup {
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  display: none;
  justify-content: center;
  align-items: flex-start;
  overflow: scroll; }
  .mountain_popup_content_container {
    position: relative;
    width: 80%;
    background-color: #101010;
    border-radius: 10px;
    box-shadow: 0.2rem 0.2rem 4rem rgba(255, 255, 255, 0.2);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media only screen and (max-width: 30em) {
      .mountain_popup_content_container {
        width: 100%;
        padding: 6rem 2rem; } }
  .mountain_popup_image_container {
    position: relative;
    width: 90%;
    height: 40rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin-bottom: 2rem; }
    @media only screen and (max-width: 30em) {
      .mountain_popup_image_container {
        height: 30rem; } }
  .mountain_popup_route_image_container {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px; }
  .mountain_popup_weather_container {
    position: absolute;
    top: 3rem;
    left: 3rem;
    background-color: #101010;
    padding: 1rem;
    border-radius: 8px; }
    @media only screen and (max-width: 53.75em) {
      .mountain_popup_weather_container {
        top: 1rem;
        left: 1rem; } }
  .mountain_popup_weather_spec {
    font-size: 1.6rem;
    color: grey; }
  .mountain_popup_button_close {
    padding: 0.5rem 1.25rem;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 8px;
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #101010;
    background-color: yellow;
    transition: all 0.1s ease;
    cursor: pointer; }
    .mountain_popup_button_close:hover {
      scale: 1.1; }
  .mountain_popup_date {
    font-size: 3rem;
    color: yellow;
    width: 90%;
    text-align: left;
    border-style: solid;
    border-width: 0;
    border-bottom-width: 2px;
    border-color: yellow;
    margin-bottom: 2rem; }
  .mountain_popup_name {
    font-size: 3.5rem;
    margin-bottom: 2rem; }
  .mountain_popup_info {
    width: 80%;
    border-radius: 8px;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around; }
    @media only screen and (max-width: 53.75em) {
      .mountain_popup_info {
        width: 100%; } }
  .mountain_popup_info2 {
    width: 100%;
    border-radius: 8px;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    padding: 1rem 2rem; }
  .mountain_popup_data {
    font-size: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
  .mountain_popup_title {
    font-size: 3rem;
    width: 100%;
    text-align: center; }
  .mountain_popup_list {
    align-self: flex-start; }
  .mountain_popup_section1 {
    display: flex;
    width: 90%;
    height: 30rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    gap: 2rem; }
    @media only screen and (max-width: 53.75em) {
      .mountain_popup_section1 {
        flex-direction: column;
        height: 50rem;
        align-items: center; } }
  .mountain_popup_section2 {
    display: flex;
    width: 90%;
    margin-bottom: 2rem;
    justify-content: center; }
