.contact_banner {
  background: url(../img/product-banner.jpg) no-repeat bottom center / cover;
  position: relative;
}
.contact_banner::after{
  content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.contact_banner .flex {
  min-height: 678px;
  padding: 6rem 0;
  position: relative;
  z-index: 9;
}
.contact_banner .head {
  max-width: 649px;
  padding-bottom: 7.05%;
}
.contact_banner .head h1 {
  font-size: 50px;
  font-weight: 800;
  color: white;
  line-height: 75px;
}
.contact_banner .head p {
  line-height: 28px;
  color: #fff;
  max-width: 512px;
  font-weight: 500;
  margin-top: 22px;
}
.contact_main {
  margin-top: -112px;
  padding-bottom: 7rem;
  position: relative;
  z-index: 10;
}
.contact_main .infos ul {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
.contact_main .infos ul li {
  flex: 1;
  max-width: 370px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  text-align: center;
  padding: 50px 1rem 76px;
}

.contact_main .infos ul li.active span::after {
  opacity: 1;
}
.contact_main .infos ul li.active span i {
  filter: contrast(0) brightness(20);
}
.contact_main .infos ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 101px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.contact_main .infos ul li span::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--theme_color);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transition: all 0.3s;
  opacity: 0;
}
.contact_main .infos ul li span i {
  display: block;
  width: 34px;
  height: 37px;
  background: no-repeat center / contain;
}
.contact_main .infos ul li strong {
  display: block;
  color: #1c232f;
  font-size: 22px;
  font-weight: 600;
  margin: 34px 0 28px;
}
.contact_main .infos ul li p,
.contact_main .infos ul li a {
  color: #606060;
  line-height: 26px;
  font-weight: 500;
}
.contact_main .infos ul li a {
  transition: all 0.3s;
}
.contact_main .infos ul li a:hover {
  color: var(--theme_color);
}
.contact_main .inquiry {
  padding: 173px 0 20px;
}
.contact_main .inquiry form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
  margin-top: 86px;
}
.contact_main .inquiry form span {
  width: 100%;
}
.contact_main .inquiry form .col3 {
  width: 32%;
}
.contact_main .inquiry form input,
.contact_main .inquiry form textarea {
  width: 100%;
  border: 1px solid #d4dddf;
  border-radius: 4px;
  color: var(--title_color);
  font-size: 18px;
  font-weight: 500;
  padding: 21px 22px;
}
.contact_main .inquiry form input::placeholder,
.contact_main .inquiry form textarea::placeholder {
  color: #808080;
}
.contact_main .inquiry form textarea {
  height: 336px;
}
.contact_main .inquiry form input[type="submit"] {
  margin-top: 24px;
  width: 186px;
  padding: 13.5px;
  transition: all 0.3s;
  background: var(--theme_color);
  background-size: 200%;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
}
.contact_main .inquiry form input[type="submit"]:hover {
  background: var(--subtheme_color);
}
.contact_location {
  padding: 142px 0;
}
.contact_location li {
  margin-bottom: 120px;
  display: flex;
  align-items: center;
  gap: 4.59%;
}
.contact_location li:last-child {
  margin-bottom: 0;
}
.contact_location li .img {
  width: 363px;
  aspect-ratio: 363/262;
  border-radius: 9px;
  overflow: hidden;
}
.contact_location li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s;
}
.contact_location li .img img:hover {
  transform: scale(1.05);
}
.contact_location li .info {
  flex: 1;
  padding-left: 4rem;
  position: relative;
}
.contact_location li .info::before {
  content: '';
  display: block;
  width: 29px;
  height: 37px;
  background: url(../img/pos.svg) no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 14px;
}
.contact_location li .info strong {
  display: block;
  font-size: 35px;
  line-height: 62px;
  font-weight: 700;
}
.contact_location li .info p {
  font-size: 20px;
  line-height: 2rem;
  font-weight: 500;
  margin: 14px 0;
}
.contact_location li .info a {
  color: var(--theme_color);
  text-decoration: underline;
  font-size: 20px;
  line-height: 2rem;
  transition: all 0.3s;
}
