/* start about */
body {
  background-color: black;
}
.about {
  background: url(../images/bg-about.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: max-content;
  min-height: 100vh;
}
.about .about-info p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
.about .about-img {
  position: relative;
  margin-top: -50px;
  animation: up-and-down 2s ease-in-out infinite;
}

@keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: -40px;
  }
}
.about .about-img img:last-child {
  position: absolute;
  top: 50%;
  left: 25%;
  width: 80%;
}
.icon {
  height: 100px;
}
/* end about */

/* start work */
.work {
  position: relative;
  background: url(../images/work.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: max-content;
  min-height: 100vh;
}
.place {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding: 8px;
  line-height: 80px;
}
.place img {
  width: 57px;
}
.sub-title {
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}
.sub-title span {
  font-size: 16px;
}
.date {
  font-size: 15px;
  font-weight: 100;
  font-family: "Montserrat", sans-serif;
}
.item {
  min-height: 340px;
  height: 300px;
  padding: 20px;
  transition: 0.3s;
  margin-bottom: 15px;
  background: linear-gradient(black, black, black, black) padding-box,
    var(--bg-linear) border-box;
  border: 2px solid transparent;
  border-radius: 15px;
}
.item:hover {
  box-shadow: 0px 0px 9px 0px white;
}
/* end work */

/*start responsive */
@media (max-width: 991px) {
  .about-info p {
    font-size: 15px !important;
  }
  .about .about-img {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .about-info p {
    font-size: 17px !important;
    text-align: center;
    font-size: 15px !important;
  }
}
@media (max-width: 568px) {
  .about-info p {
    margin: auto;
  }
  .about .about-img img:last-child {
    width: 75%;
  }
  .item {
    height: 270px;

    width: 300px;
    margin: 0 auto 15px;
  }
}
/*end responsive */
