/* start social */
.all {
  background: url(../images/social.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: max-content;
}
.follow {
  width: max-content;
  margin: auto;
  background: url(../images/Vector.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 50px;
}
.follow h1 {
  font-family: "Pacifico", cursive;
  width: fit-content;
  font-size: 50px;
  font-weight: 400;
  background: linear-gradient(
    7deg,
    #fb0707 15.52%,
    #f90 33.17%,
    #ffa800 62.41%,
    #fff500 87.34%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.follow img {
  width: 30px;
}
.box {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 500px;
}
.photo {
  position: absolute;
  width: 100%;
  height: 50%;
  top: 45%;
  transition: 0.7s;
}
.photo:hover {
  top: 0%;
}
.photo img {
  cursor: pointer;
  height: 500px;
}
.last-box {
  position: relative;
  margin: 100px auto;
  width: auto;
}
.photo-last .one {
  position: absolute;
  left: 50%;

  z-index: 1;
  top: 0;
  transition: 0.3s;
}
.photo-last .two {
  position: absolute;
  left: 50%;

  z-index: 4;
  top: 200px;
  transition: 0.3s;
}
.photo-last .three {
  position: absolute;
  left: 50%;
  z-index: 5;

  top: 400px;
  transition: 0.3s;
}
.photo-last .four {
  position: absolute;
  left: 50%;

  z-index: 6;
  top: 600px;

  transition: 0.3s;
}
.photo-last .one:hover {
  top: -150px;
}
.photo-last .two:hover {
  top: -10px;
}
.photo-last .three:hover {
  top: 196px;
}
.photo-last .four:hover {
  top: 404px;
}
/* end social */

/*start responsive */
@media (max-width: 991px) {
  .box {
    height: 350px;
    margin: -50px 0 0px;
  }
  .photo img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .all {
    height: 270vh;
  }
  .box {
    display: none;
  }

  .last {
    transform: translate(-50%);
    width: 250px !important;
    margin: auto;
    display: block !important;
  }
}
@media (max-width: 576px) {
  .all {
    height: 200vh;
  }
  .follow {
    width: max-content;
    margin: auto;
    background: url(../images/Vector.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 32px;
    margin-top: 30px;
  }
  .follow h1 {
    font-size: 30px;
    margin-bottom: 150px;
  }
  .last-box {
    width: 250px !important;
    margin: auto;
  }
}
/*end responsive */
