* {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

header {
  width: 100%;
  display: flex;
  background-color: rgb(112, 103, 103);
  align-items: center;
  justify-content: center;
  position: fixed;
}

nav ul {
  display: flex;
  gap: 2em;
}

header nav ul li a {
  color: white;
}

header a i {
  color: white;
  font-size: 1.5em;
  padding: 10px;
}

#check {
  display: none;
}

.checkbtn {
  font-size: 25px;
  color: white;
  float: right;
  line-height: 20px;
  margin-right: 10px;
  cursor: pointer;
  padding-left: 10px;
  display: none;
}

.seccion-1{
  background: linear-gradient(hsl(49, 71%, 49%), 80% , white);
}

.container-general{
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

.container{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4em 4em 1em 4em;
  flex-wrap: wrap;
}


.acerca-de {
  width: 500px;
  padding: 1.5em;
  text-align: end;
}

.btn-descarga {
  width: 50%;
  border-radius: 25px;
  background-color: hsla(0, 89%, 45%, 0.356);
  color: white;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  margin-left: 20px;
  cursor: pointer;
  border: none;
}

.botones{
  display: flex;
}

.btn-descarga:hover {
  background-color: hsla(231, 86%, 54%, 0.356);
  color: white;
}

.seccion-2 > img {
  width: 100%;
  height: 500px;
}

.pie-pagina {
  background-color: rgb(112, 103, 103);
  padding: 1em;
  text-align: center;
}

.footer {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: hsl(48, 92%, 42%);
}

.contactos {
  display: block;
}

.item-contacto {
  color: hsl(0, 0%, 93%);
  padding: 0.3em;
}

.seccion-3 > h2 {
  margin: 0.5em;
  text-align: center;
  font-size: 3.5em;
}

.activities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.activities-item {
  width: 300px;
  margin: 2em;
}

.activities-item > h3 {
  font-family: "Anta", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5em;
  padding: 8px;
  text-align: center;
}

.imagen {
  display: flex;
  justify-content: center;
}

.descripcion {
  font-family: "Anta", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 1em;
  height: 170px;
  overflow: hidden;
}

.link > a {
  font-weight: bold;
  font-size: 1.5em;
  color: hsl(48, 92%, 42%);
}

.link > a:hover {
  color: hsla(34, 83%, 39%, 0.993);
  cursor: pointer;
}

@media (max-width: 768px) {
  .seccion-1 {
    padding: 3em;
  }
  .checkbtn {
    display: block;
  }

  .navbar {
    height: 0vh;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: #2c3e50;
    text-align: center;

    transition: all 0.5s;
    overflow: hidden;
  }

  .navbar ul.menu {
    float: none;
    display: block;
    width: 174px;
    margin: 0 auto;
    opacity: 0;
    margin-top: 20px;
  }

  .navbar ul.menu li a:hover {
    color: #b59a61;
  }
  /* ACTIVE */
  .navbar.active {
    height: 100vh;
  }

  .navbar.active ul.menu {
    opacity: 1;
  }

  nav ul li{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  .seccion-3 > h2 {
    font-size: 2.5em;
  }

  .activities-item > h3 {
    font-size: 2em;
  }
  
  #img-personal{
    width: 200px;
  }

  .acerca-de {
    width: 200px;
    padding: 1.5em;
    text-align: center;
  }

  .container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
  }

  .btn-descarga {
    color: white;
    font-weight: bold;
    margin: 10px;
  }

  .botones{
    display: flex;
    width: 70%;
  }
}
