header::before {
  opacity: 0;
}
.page_banner {
  padding: 138px 0 203px;
}
.page_banner .head_banner .title {
  line-height: 1.16;
}
.page_banner .head_banner .desc_big {
  margin: 6px 0 5px;
}
.page_banner .head_banner .desc {
  padding-right: 5%;
}
.contact_section {
  padding: 123px 0 227px;
}
.contact_section .head {
  max-width: 653px;
}
.contact_section .items {
  margin-top: 79px;
}
.contact_section .items > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2.77777778%;
}
.contact_section .items .item a:hover {
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.11);
}
.contact_section .items .item a:hover::before {
  opacity: 1;
}
.contact_section .items .item a:hover p {
  color: var(--theme_color);
  text-decoration: underline;
}
.contact_section .items .item a:hover i {
  filter: none;
}
.contact_section .items .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #f5f9fc;
  border-radius: 32px;
  position: relative;
  padding: 12.5% 11% 12%;
  transition: all 0.3s;
}
.contact_section .items .item a::before {
  width: 100%;
  height: 100%;
  border: 1px solid var(--theme_color);
  content: '';
  border-radius: 32px;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.contact_section .items .item .icon {
  width: 113px;
  aspect-ratio: 1;
  border-radius: 100%;
  overflow: hidden;
  background: url("../img/bg-circle.svg") no-repeat center / cover;
}
.contact_section .items .item .icon span {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
  content: '';
}
.contact_section .items .item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact_section .items .item h3 {
  font-size: 30px;
  line-height: 42px;
  color: var(--title_color);
  font-weight: 700;
  margin: 27px 0 36px;
}
.contact_section .items .item p {
  font-size: 19px;
  line-height: 26px;
  color: var(--content_color);
  margin-bottom: 16%;
  transition: all 0.3s;
  word-break: break-word;
}
.contact_section .items .item i {
  width: 18px;
  height: 13px;
  content: '';
  display: inline-block;
  background: url("../img/arrow-line-r.svg") no-repeat center / contain;
  filter: contrast(0) brightness(0);
  transform: rotate(-45deg);
  transition: all 0.3s;
  margin-top: auto;
}