.contact_main {
  padding: 19rem 0 9.6rem;
}
.contact_main .lt {
  flex: 1;
  margin-top: -0.4rem;
}
.contact_main .tcon > em {
  color: var(--text);
}
.contact_main .tcon p {
  max-width: 58.5rem;
  margin-top: 2.2rem;
}
.contact_main .infos {
  max-width: 54.2rem;
  padding-top: 2.2rem;
  margin-top: 4rem;
  border-top: 1px solid #e5e5e5;
}
.contact_main .infos .head em {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.contact_main .infos .head h3 {
  font-weight: 600;
  font-size: 3.2rem;
}
.contact_main .infos .contact {
  padding-top: 0.5rem;
}
.contact_main .infos .contact li {
  position: relative;
  padding-left: 4rem;
  margin-top: 2.8rem;
}
.contact_main .infos .contact li::before {
  content: '';
  display: block;
  width: 1.8rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 0.2rem;
  background: no-repeat center / contain;
}
.contact_main .infos .contact .phone::before {
  background-image: url(../images/icon-phone.svg);
}
.contact_main .infos .contact .email::before {
  background-image: url(../images/icon-email.svg);
}
.contact_main .infos .contact .address::before {
  background-image: url(../images/icon-address.svg);
}
.contact_main .infos .contact .label {
  color: var(--text);
  font-size: 1.5rem;
  text-transform: uppercase;
}
.contact_main .infos .contact a,
.contact_main .infos .contact p {
  font-weight: 600;
  font-size: 1.8rem;
}
.contact_main .infos .contact a {
  transition: all 0.3s;
  vertical-align: top;
}
.contact_main .infos .contact a:hover {
  color: var(--primary);
}
.contact_main .infos .contact p {
  max-width: 38rem;
  margin-top: 0.8rem;
}
.contact_main .resources {
  max-width: 54.2rem;
  padding-top: 3.5rem;
  margin-top: 3.5rem;
  border-top: 1px solid #e5e5e5;
}
.contact_main .resources .tcon strong {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
}
.contact_main .resources .tcon p {
  margin-top: 0.8rem;
}
.contact_main .resources .btn_more {
  color: var(--title);
  font-size: 1.6rem;
  line-height: 4.9rem;
  padding: 0 3rem 1px;
  margin-top: 1.6rem;
  gap: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact_main .resources .btn_more::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s;
  background: url(../images/icon-download-b.svg) no-repeat center / contain;
}
.contact_main .resources .btn_more:hover {
  color: #fff;
}
.contact_main .resources .btn_more:hover::after {
  filter: contrast(0) brightness(2);
}
.contact_main .rt {
  width: 52.777778%;
}
.contact_main form {
  color: #fff;
  gap: 1.8rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 8.157895% 10.263158% 8.289474%;
  background-color: var(--secondary);
}
.contact_main form span {
  width: 100%;
}
.contact_main form .col2 {
  width: 48.675497%;
}
.contact_main form label {
  display: block;
}
.contact_main form .label {
  cursor: pointer;
  max-width: max-content;
  margin-bottom: 0.7rem;
}
.contact_main form .label i {
  color: var(--primary);
}
.contact_main form input,
.contact_main form select,
.contact_main form textarea {
  width: 100%;
  height: 4.6rem;
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0 2rem;
  transition: all 0.3s;
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.contact_main form input::placeholder,
.contact_main form select::placeholder,
.contact_main form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact_main form input:focus,
.contact_main form select:focus,
.contact_main form textarea:focus,
.contact_main form input.focus,
.contact_main form select.focus,
.contact_main form textarea.focus {
  border-color: var(--primary);
}
.contact_main form select {
  padding-right: 6rem;
  background: url(../images/icon-select.svg) no-repeat right 2.5rem center / 1rem rgba(255, 255, 255, 0.15);
}
.contact_main form textarea {
  height: 23.6rem;
  padding: 1.5rem 2rem;
}
.contact_main form span:has(input[type="checkbox"], .btn) {
  position: relative;
  margin-top: 1.2rem;
}
.contact_main form input[type="checkbox"] {
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}
.contact_main form input[type="checkbox"]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  opacity: 0;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../images/icon-gou.svg) no-repeat center / contain;
}
.contact_main form input[type="checkbox"]:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}
.contact_main form input[type="checkbox"]:checked::after {
  opacity: 1;
}
.contact_main form input[type="checkbox"] ~ span {
  line-height: 2rem;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  padding-left: 0.6rem;
  width: calc(100% - 2.4rem);
}
.contact_main form input[type="checkbox"] ~ span a {
  transition: all 0.3s;
}
.contact_main form input[type="checkbox"] ~ span a:hover {
  color: var(--primary);
}
.contact_main form .btn {
  max-width: max-content;
  min-width: 15.6rem;
  position: relative;
}
.contact_main form .btn input {
  display: none;
}
.contact_main form .btn .wpcf7-spinner {
  left: 100%;
  right: unset;
}
@media screen and (max-width: 768px) {
  .contact_main {
    padding: 50px 0;
  }
  .contact_main .tcon p {
    margin-top: 12px;
  }
  .contact_main .infos {
    margin-top: 20px;
    padding-top: 20px;
  }
  .contact_main .infos .head h3 {
    font-size: 18px;
  }
  .contact_main .infos .contact li {
    margin-top: 15px;
    padding-left: 30px;
  }
  .contact_main .infos .contact .label {
    font-size: 14px;
  }
  .contact_main .infos .contact a,
  .contact_main .infos .contact p {
    font-size: 16px;
  }
  .contact_main .resources {
    margin-top: 20px;
    padding-top: 20px;
  }
  .contact_main .resources .tcon strong {
    font-size: 18px;
  }
  .contact_main .resources .btn_more {
    gap: 12px;
    font-size: 14px;
    padding: 0 20px;
    line-height: 40px;
  }
  .contact_main form {
    gap: 15px 0;
    padding: 30px 20px;
  }
  .contact_main form input,
  .contact_main form select,
  .contact_main form textarea {
    height: 42px;
    font-size: 15px;
    padding: 0 15px;
  }
  .contact_main form select {
    padding-right: 40px;
    background: url(../images/icon-select.svg) no-repeat right 15px center / 10px rgba(255, 255, 255, 0.14);
  }
  .contact_main form textarea {
    height: 120px;
    padding: 12px 15px;
  }
  .contact_main form .btn {
    min-width: 120px;
  }
}
@media screen and (max-width: 576px) {
  .contact_main .flex {
    display: block;
  }
  .contact_main .rt {
    width: 100%;
    margin-top: 30px;
  }
  .contact_main form .col2 {
    width: 100%;
  }
}
