/* Scrollbar color */
body::-webkit-scrollbar-thumb {
  background: linear-gradient(#00b67a, #34dc84);
}
/* End of scrollbar */

/* About us */
.services {
  width: 100%;
  height: 100vh;
  margin-top: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30%;
}

.services-wrapper {
  border-radius: 1rem;
  box-shadow: 0 2rem 6rem rgba(130, 162, 255, 0.3);
  width: 80%;
}

.container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

h1 {
  font-family: "Mooli", cursive;
  color: #fefae0;
  margin: 20px auto;
  width: 450px;
  font-size: 3rem;
  text-align: center;
  /* border-bottom: 10px double #bc6c25; */
}

.galery-img img {
  width: 450px;
  height: 300px;
  margin: 10px;
  border: 10px solid #fefae0;

  transition-duration: 1s;
}

.galery-img img:hover {
  border: 5px solid #fff;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.2);
  -webkit-filter: none;
  filter: none;
}
