.service {
  background: #222220;
  padding-bottom: calc(10vw + 10px);
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #7d5e13;
  border-right: 100vw solid transparent;
}

.service__container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service__card {
  max-width: 300px;
  margin: 0 1rem;
  position: relative;
  margin-top: 50px;
}

.service__card-img {
  width: 200px;
  height: 200px;
}

.service__card-img img {
  width: 100%;
  max-width: 100px;
  z-index: 1;
  position: absolute;
  top: 21%;
  left: 50%;
  max-height: 100px;
  transform: translate(-50%, -50%);
}

.service__card:nth-child(1) .service__card-img::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 200px;
  background-color: #f4f4f4;
}

.service__card:nth-child(2) .service__card-img::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 200px;
  background-color: #7E5F18;
}

.service__card:nth-child(3) .service__card-img::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 200px;
  background-color: #999999;
}

.service__card-title {
  text-align: center;
  margin-top: 30px;
}

.service__card-title-main {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
}

.service__card-title-sub {
  display: block;
  font-size: 0.8rem;
  line-height: 1.5;
}

.service__card-text {
  margin-top: 40px;
  font-size: 0.9rem;
  font-weight: normal;
}
