.services_area {
  padding-bottom: 120px;
}

.services_banner {
  height: 420px;
  position: relative;
  overflow: hidden;
  /* background-image: url(../images/services_banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7); */
}

.services_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/service_banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
  z-index: -1;
}

.services_location {
  position: absolute;
  width: 1320px;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 0;
  display: flex;
  gap: 15px;
}

.services_location span {
  color: #fff;
}

.services_location a {
  transition: all 0.3s ease;
}

.services_location a:hover {
  color: #ffb907;
}

.services_content {
  width: 1320px;
  margin: 0 auto;
}

.content_title h2 {
  font-size: 30px;
  font-weight: bold;
  margin: 60px auto;
  color: #000;
  text-align: center;
}

.service_item {
  margin-bottom: 100px;
  display: flex;
  gap: 60px;
}

.service_item img {
  width: 48%;
  height: 320px;
  object-fit: cover;
  flex: 0 0 48%;
}

.service_item .item_txt {
  margin-top: 30px;
}

.service_item h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service_item p {
  font-size: 18px;
}

.service_item.last-child {
  margin-bottom: 0;
}
