@media screen and (min-width: 0px) {
  header {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;

    padding-top: 1rem;
    z-index: 10;
  }
  .header-menu {
    width: 90vw;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    gap: 1.3rem;
    border: var(--white-color) solid 1px;
    background-color: var(--background-color-1);
    padding: 1rem;
  }
  .header-logo {
    min-width: 2rem;
    max-width: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header-logo img {
    width: 100%;
  }
  .header-menu-list {
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    opacity: 0;
    margin-top: 25rem;
    padding: 3rem 2rem;
    gap: 0.9rem;
    border-radius: var(--button-rounded-1);
    background-color: var(--dark-color-2);
    border-bottom: var(--white-color) solid 4px;
    box-shadow: 1px 1px 20px 7px var(--dark-color-3);
    transition: animation 0.5s ease;
    animation: opening ease-in-out 0.5s;
  }
  @keyframes opening {
    from {
      opacity: 0;
      margin-left: 0;
    }

    to {
      opacity: 1;
      margin-left: -1.3rem;
    }
  }

  .header-menu-list li a {
    color: var(--text-color-1);
  }
  .header-menu-button-2 {
    display: none;
  }
  .header-menu-button-1 button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header-menu-button-1 button a {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: transparent;
    padding: var(--button-padding-1);
    border: var(--white-color) solid 1px;
    border-radius: var(--button-rounded-1);
  }
  .header-menu-button-1 button a:hover {
    background-color: var(--white-color);
    color: var(--button-text-hover-1);
  }
  .header-burger-menu {
    min-width: 2rem;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 0.5rem;
    cursor: pointer;
  }
  .header-burger-menu span {
    width: 2.3rem;
    height: 2px;
    background-color: var(--white-color);
  }
  .nav-movil-event {
    display: flex;
    opacity: 1;
    margin-left: -1.3rem;
  }
  .footer-section {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-top: -4rem;
  }
  .footer-box {
    width: 90%;
    max-width: 90.93819rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 2rem;
    padding: 7rem 0;
  }
  .footer-1 {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;

    gap: 2rem;
  }
  .footer-1-wrapper {
    width: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer-1-wrapper img:first-of-type {
    min-width: 2rem;
    max-width: 13rem;
  }
  .footer-1-wrapper-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    gap: 0.5rem;
    margin-top: 2rem;
  }
  .footer-section a:hover {
    color: var(--hover-color-1);
    transition: var(--hover-color-animation-1);
  }
  .footer-1-wrapper-contact a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    gap: 0.5rem;
  }
  .footer-1-wrapper-title {
    font-size: var(--subtitle-size-1);
    font-weight: 300;
    margin-top: 3rem;
  }
  .footer-1-wrapper-title span {
    font-weight: 600;
  }
  .footer-1-wrapper-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    margin-top: 2rem;
    gap: 0.5rem;
  }
  .footer-1-wrapper-hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    margin-top: 2rem;
  }
  .footer-1-wrapper-socialmedia {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

    margin-top: 1rem;
    gap: 1rem;
  }

  .footer-2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding-top: 2rem;
    border-top: var(--gray-color-1) solid 1px;
  }
  .footer-2 p {
    font-weight: 300;
  }
  .footer-2 p a {
    font-weight: 600;
  }
}
@media screen and (min-width: 500px) {
  .header-logo {
    margin-left: 4rem;
  }
  .header-menu-button-burger {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: fit-content;

    gap: 1rem;
  }
  .header-menu-button-1 {
    display: none;
  }
  .header-menu-button-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header-menu-button-2 a {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: transparent;
    padding: var(--button-padding-1);
    border: var(--white-color) solid 1px;
    border-radius: var(--button-rounded-1);
  }
  .header-menu-button-2 a:hover {
    background-color: var(--white-color);
    color: var(--button-text-hover-1);
  }
}
@media screen and (min-width: 900px) {
  .header-menu-list {
    min-width: fit-content;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;

    position: relative;
    transition: none;
    opacity: 1;
    margin-top: 0;
    padding: 0;
    background-color: var(--background-color-1);
    box-shadow: none;
    border: none;
    gap: 1rem;
  }
  .header-menu-list li a {
    pointer-events: visible;
    font-size: var(--header-font-text);
    transition: ease 0.2s;
    font-size: 1rem;
  }
  .header-menu-list li a:hover {
    color: var(--hover-color-1);
    transition: var(--hover-color-animation-1);
  }
  /* .header-menu-button-burger {
      min-width: fit-content;
  } */
  .header-burger-menu {
    display: none;
  }
  .header-logo {
    max-width: 10rem;
  }
}
@media screen and (min-width:1200px) {
  .header-menu-list li a {
    font-size: 1.1rem;
  }
  .header-menu-button-2 a {
    font-size: 1rem;
  }
}
