.services_area {
  padding-bottom: 120px;
}

.services_banner {
  height: 420px;
  position: relative;
  overflow: hidden;
}

.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_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgba(30, 58, 138, 0.8),
    rgba(0, 0, 0, 0)
  );
  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;
  padding: 12px 0;
  margin: 60px auto;
  color: rgb(0, 32, 107);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.content_title h2:after {
  content: "";
  position: absolute;
  width: 210px;
  height: 5px;
  background-color: rgb(0, 32, 107);
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
}

.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: 28px;
  margin-bottom: 10px;
}

.service_item p {
  font-size: 18px;
}

.content_box .service_item:last-child {
  margin-bottom: 0;
}
