#about-section .about-banner {
  background-image: url("../img/slider-banner.jpg");
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

#about-section .about-banner::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(#932290), to(#b364b1));
  background: linear-gradient(to right, #932290, #b364b1);
  opacity: .8;
}

#about-section .container {
  -webkit-transform: translateY(-20vh);
          transform: translateY(-20vh);
}

#services-section {
  font-size: 15px;
}

#services-section .image-wrapper {
  overflow: hidden;
  height: 350px;
}

#services-section .image-wrapper img {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#services-section .image-wrapper img:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#services-section .feat li {
  font-size: .9rem;
}

#services-section .row {
  margin: 4rem 0;
}

.gallery-section .image-card {
  border: 0;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  position: relative;
  border-radius: 5px;
}

.gallery-section .image-card::before, .gallery-section .image-card::after {
  position: absolute;
  width: 100%;
  content: '';
  height: 100%;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  background-color: #fff;
  z-index: -1;
  -webkit-transition: .35s;
  transition: .35s;
  border-radius: 5px;
}

.gallery-section .image-card .card-body {
  padding: .8rem;
}

.gallery-section .image-card:hover::before {
  opacity: 1;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.gallery-section .image-card:hover::after {
  opacity: 1;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

@media (max-width: 767px) {
  #about-section .container {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
