section.contact-detail {
  margin-bottom: 150px;
}
section.contact-detail .container {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  section.contact-detail .container {
    flex-direction: column;
  }
}
section.contact-detail .container h3 {
  text-transform: uppercase;
  margin-bottom: 36px;
}
@media screen and (max-width: 1366px) {
  section.contact-detail .container h3 {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  section.contact-detail .container h3 {
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 560px) {
  section.contact-detail .container h3 {
    margin-bottom: 18px;
  }
}
section.contact-detail .container form {
  text-align: left;
  width: 100%;
}
section.contact-detail .container form .field {
  margin-bottom: 24px;
}
@media screen and (max-width: 1366px) {
  section.contact-detail .container form .field {
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 560px) {
  section.contact-detail .container form .field {
    margin-bottom: 18px;
  }
}
section.contact-detail .container form .field label {
  padding-left: 24px;
  font-size: 24px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 10px;
}
@media screen and (max-width: 1366px) {
  section.contact-detail .container form .field label {
    padding-left: 21px;
    margin-bottom: 8px;
    font-size: 21px;
  }
}
@media screen and (max-width: 560px) {
  section.contact-detail .container form .field label {
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 18px;
  }
}
section.contact-detail .container form .field input {
  height: 64px;
  background-color: var(--purple10);
  border-radius: 20px;
}
@media screen and (max-width: 1366px) {
  section.contact-detail .container form .field input {
    height: 54px;
  }
}
@media screen and (max-width: 560px) {
  section.contact-detail .container form .field input {
    height: 48px;
  }
}
section.contact-detail .container form .field input:focus {
  background-color: var(--purple10);
  border-radius: 20px;
}
section.contact-detail .container form .field textarea {
  background-color: var(--purple10);
  border-radius: 20px;
}
section.contact-detail .container form .field textarea:focus {
  background-color: var(--purple10);
  border-radius: 20px;
}
section.contact-detail .container form .field .ui.checkbox label {
  display: flex;
  align-items: center;
  height: 28px;
  padding-left: 42px;
}
section.contact-detail .container form .field .ui.checkbox label::before, section.contact-detail .container form .field .ui.checkbox label::after {
  width: 28px;
  height: 28px;
  box-shadow: none;
}
section.contact-detail .container form .field .ui.checkbox label::before {
  border-radius: 5px;
}
section.contact-detail .container form .field .ui.checkbox input {
  height: 28px;
  width: 28px;
}
section.contact-detail .container form .field .ui.checkbox a {
  font-weight: 700;
  white-space: nowrap;
}
section.contact-detail .container form .field .ui.checkbox.checked label::before {
  border-color: var(--purple);
  background-color: var(--purple);
}
section.contact-detail .container form .field .ui.checkbox.checked label::after {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 16px;
}
section.contact-detail .container form button {
  border: none;
  box-shadow: none;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 60px;
  text-transform: uppercase;
}
@media screen and (max-width: 1680px) {
  section.contact-detail .container form button {
    font-size: 18px;
  }
}
@media screen and (max-width: 1366px) {
  section.contact-detail .container form button {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  section.contact-detail .container form button {
    font-size: 14px;
  }
}
section.contact-detail .container form button:hover {
  cursor: pointer;
}
section.contact-detail .container iframe {
  width: 100%;
  height: 420px;
}