* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.search {
  padding: 50px 0;
}
.pages {
  padding: 50px 0 150px 0;
}
.pages h2 {
  font: 25px;
  font-weight: 400;
  margin-bottom: 20px;
}
.swiper {
  width: 100%;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 250px;
}
.swiper-slide a {
  outline: none;
}
.swiper-slide img {
  display: block;
  width: 100%;
}
.icons {
  padding: 0 350px 50px 350px;
  display: flex;
  justify-content: space-between;
}
.icons a{
  text-decoration: none;
}
.icons i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #111111;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  transition: 0.3s;
}
.icons i:hover {
  color: #f8010a;
  background-color: #fefefe;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
/* efecto hover  */
.swiper-slide .boxitem {
  height: 100%;
  position: relative;
}
.overlay_projects {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 42px;
  opacity: 0;
  transition: .6s ease;
}
.overlay_projects .overlay__icons {
  transition: 0.5s ease;
  color: #fff;
  font-size: 26px;
  padding: .7rem;
}
.overlay_projects .overlay__icons:hover {
  color: #f8010a;
  background-color: #fefefe;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border-radius: 50%;
}

.swiper-slide:hover .overlay_projects,
.boxitem:hover .overlay_projects {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  body {
    min-height: 0vh;
    display: block;
  }
  .search {
    padding: 30px 30px 0 30px;
  }
  .pages,
  .icons {
    padding: 30px;
  }
}
