.header {
  width: 100%;
  height: 58px;
  display: flex;
}

.header__button-open {
  display: none;
}
@media (max-width: 770px) {
  .header__button-open {
    border: none;
    text-decoration: none;
    display: grid;
    gap: 7px;
    width: 54px;
    height: 50px;
    padding: 10px;
    background-color: white;
  }
  .header {
    width: 100%;
    justify-content: right;
  }
}

.header__hamburguer-line {
  width: 36px;
  height: 6px;
  background-color: #1d201f;
}

.header__nav {
  width: 100%;
  display: grid;
  column-gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 15px;
}
@media (max-width: 770px) {
  .header__nav {
    display: none;
  }
}
.header__nav__item {
  list-style: none;
}

.header__nav__link {
  text-align: center;
  font-family: "Poppins";
  color: #1d201f;
  text-decoration: none;
  position: relative;
}

.header__nav__link:hover {
  background: #efefef;
  left: 10%;
  transition: transform 0.15s ease-in-out;
}
.active {
  background-color: #7c8587;
}
.header__ventana {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: none;
  background: linear-gradient(75deg, rgba(253,240,161,255) 15%, #c9f0bf, #dac2f6 , #f4c0e6  100%);
}
.header__ventana-links {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  row-gap: 25px;
  text-align: center;
  font-family: "Poppins";
}
.header__ventana-link {
  font-family: "Poppins";
  text-decoration: none;
  text-align: center;
  font-size: 48px;
  line-height: 48px;
  color: #1d201f;
}
.header__ventana-link:hover {
  background-color: #7c8587;
  left: 10%;
  transition: transform 0.15s ease-in-out;
}
.header__button-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  background-color: white;
  color: #1d201f;
  border-radius: 50px;
}
