.about_area {
  padding-bottom: 120px;
}

.about_banner {
  height: 420px;
  position: relative;
  overflow: hidden;
}

.about_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/about_banner.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  filter: brightness(0.9);
  z-index: -1;
}

.about_location {
  position: absolute;
  width: 1440px;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 0;
  display: flex;
  gap: 15px;
}

.about_location span {
  color: #fff;
}

.about_location a {
  transition: all 0.3s ease;
}

.about_location a:hover {
  color: #ffb907;
}

.about_content {
  width: 1440px;
  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: 168px;
  height: 5px;
  background-color: rgb(0, 32, 107);
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
}

.content_txt {
  display: flex;
  gap: 60px;
}

.content_txt p {
  margin-bottom: 20px;
  font-size: 18px;
}

.txt_desc p {
  font-size: 20px;
}

.txt_img {
  flex: 0 0 48%;
  display: flex;
  align-items: center;
}

.txt_img img {
  max-width: 100%;
  object-fit: cover;
}
