@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} */

/* .container {
  width: 100%;
  height: 100%;
  padding: 0px 8%;
} */

.container h1 {
  text-align: center;
  padding-top: 10%;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.container h1::after {
  content: '';
  background: #777;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.row-service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.service {
  /*color: rgb(119, 101, 20);*/
  color: #B87333;
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
}

.service i {
  /*color: rgb(119, 101, 20);*/
  color: #B87333;
  font-size: 40px;
  margin-bottom: 10px;
  color: #777;
}

.service h2 {
  /*color: rgb(119, 101, 20);*/
  color: #B87333;
  font-weight: 600;
  margin-bottom: 8px;
}

.service:hover {
  /*color: rgb(119, 101, 20);*/
  color: #B87333;
  /* background: #777; */
  /* color: #fff; */
  transform: scale(1.05);
}

.service:hover i {
  /*color: rgb(119, 101, 20);*/
  color: #B87333;
  /* color: #fff; */
}
