.showcase {
  height: 650px;
  display: flex;
  background: #e53935;
  background: linear-gradient(to right, #e35d5b65, #e538355d), url("../img/fondo3.jpg") no-repeat center/cover fixed;
}

.showcase .container {
  flex-direction: column;
  align-items: start;
  color: white;
}

.showcase h2 {
  font-size: 42px;
  padding: 15px 0px;
}

.showcase p {
  font-size: 24px;
  width: 35%;
  margin-bottom: 80px;
}

.present-main {
  height: auto;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.present-text {
  text-align: center;
  margin-bottom: 60px;
}

.present-text div {
  font-size: 2.5rem;
  margin-top: 10px;
}

.present-text div i:nth-child(2) {
  transform: scale(1.3);
}

.present-text div i:nth-child(1):hover {
  transform: scale(1.3);
  transition: 0.5s;
  color: blue;
}

.present-text div i:nth-child(2):hover {
  transform: scale(1.6);
  transition: 0.5s;
  color: red;
}

.present-text h4 {
  font-size: 18px;
}

.present-text h2 {
  font-size: 50px;
  margin-bottom: 10px;
}

.present-text h3 {
  font-size: 20px;
}

.present-first-file {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  gap: 180px;
  margin-bottom: 80px;
  text-align: center;
}

.present-main img {
  height: 160px;
}

.present-main h6 {
  margin-top: 20px;
  font-size: 20px;
}

.present-second-file {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  gap: 180px;
  text-align: center;
}

.gallery-container {
  height: 250px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0px 0px 10px black;
  background: black;
}

.gallery-container .gallery-card {
  overflow: hidden;
}

.gallery-container .gallery-card a {
  width: 100%;
  height: 100%;
}

.gallery-container .gallery-card a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-container .gallery-card a > img:hover {
  transform: scale(1.45) rotate(20deg);
  filter: blur(1px);
  filter: brightness(80%);
}

.logros-main {
  height: auto;
  padding: 40px 0px;
}

.logros-main .container{
  flex-direction: column;
}

.logros-main h2 {
  font-size: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.logros-container-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
}

.logros-container-info div {
  padding: 40px 15px;
  border-radius: 30px;
  color: black;
  background: white;
  box-shadow: 0px 0px 15px gray;
}

.logros-container-info img {
  width: 90%;
  border-radius: 20px;
}

.logros-container-info h3 {
  font-size: 22px;
  text-align: center;
  padding: 20px 0px;
  border-bottom: 1px solid #db3939;
}

.logros-container-info p {
  font-size: 16px;
  margin-top: 20px;
}

@media screen and (max-width: 1129px) {
  .present-first-file {
    gap: 80px;
  }

  .present-second-file {
    gap: 80px;
  }

  .gallery-container {
    height: 550px;
    grid-template-columns: repeat(2, 1fr);
  }

  .logros-container-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
  }
}
@media screen and (max-width: 890px) {
  .showcase h2 {
    font-size: 38px;
    margin-top: 10px;
  }

  .showcase p {
    width: 50%;
    color: #fff7f7;
    text-shadow: 0px 0px 5px black;
    font-size: 20px;
  }

  .present-first-file {
    grid-template-columns: repeat(1, 200px);
    gap: 20px;
  }

  .present-second-file {
    grid-template-columns: repeat(1, 200px);
    gap: 40px;
  }

  .logros-container-info {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }

  .logros-container-info div {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 589px) {
  .showcase p {
    width: 90%;
  }
  
  .boton {
    padding-top: 20px;
  }
  .gallery-container {
    height: 1000px;
    grid-template-columns: repeat(1, 1fr);
  }
  .logros-main .container{
    width: 95%;
  }
  .logros-container-info div {
    padding: 20px 10px;
  }  
  .logros-container-info {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
}