section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section .container .contact-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  section .container .contact-area {
    grid-template-columns: repeat(1, 1fr);
  }
}
section .container .contact-area .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
section .container .contact-area .contact-item img {
  max-height: 60px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  section .container .contact-area .contact-item img {
    max-height: 42px;
    margin-bottom: 1rem;
  }
}
section.form {
  margin-bottom: 3rem;
}
section.form .container {
  max-width: 900px;
}
@media screen and (max-width: 767px) {
  section.form .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
section.form form {
  text-align: left;
  width: 100%;
}
section.form form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
@media screen and (max-width: 1366px) {
  section.form form .field {
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 560px) {
  section.form form .field {
    margin-bottom: 18px;
  }
}
section.form form .field label {
  padding-left: 18px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
@media screen and (max-width: 1366px) {
  section.form form .field label {
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  section.form form .field label {
    padding-left: 14px;
    margin-bottom: 6px;
    font-size: 14px;
  }
}
section.form form .field input,select {
  height: 48px;
  background-color: var(--white);
  border-radius: 20px;
  outline: 0;
  -webkit-appearance: none;
  box-shadow: 0 0 0 0 transparent inset;
  border: 1px solid rgba(34, 36, 38, 0.15);
  color: rgba(0, 0, 0, 0.87);
  -webkit-transition: color 0.1s ease, border-color 0.1s ease;
  transition: color 0.1s ease, border-color 0.1s ease;
  overflow: visible;
  padding: 0.67857143em 1em;
  border-radius: 20px;
}
@media screen and (max-width: 560px) {
  section.form form .field input {
    height: 42px;
  }
}
section.form form .field input:focus {
  background-color: var(--white);
  border-radius: 20px;
}
section.form form .field textarea {
  background-color: var(--white);
  border-radius: 20px;
  outline: 0;
  -webkit-appearance: none;
  box-shadow: 0 0 0 0 transparent inset;
  border: 1px solid rgba(34, 36, 38, 0.15);
  color: rgba(0, 0, 0, 0.87);
  -webkit-transition: color 0.1s ease, border-color 0.1s ease;
  transition: color 0.1s ease, border-color 0.1s ease;
  overflow: visible;
  padding: 0.67857143em 1em;
  border-radius: 20px;
}
section.form form .field textarea:focus {
  background-color: var(--white);
  border-radius: 20px;
}
section.form form .field .ui.checkbox label {
  display: flex;
  align-items: center;
  height: 28px;
  padding-left: 36px;
}
section.form form .field .ui.checkbox label::before,
section.form form .field .ui.checkbox label::after {
  width: 28px;
  height: 28px;
  box-shadow: none;
}
section.form form .field .ui.checkbox label::before {
  border-radius: 5px;
}
section.form form .field .ui.checkbox input {
  height: 28px;
  width: 28px;
}
section.form form .field .ui.checkbox a {
  font-weight: 700;
  white-space: nowrap;
}
section.form form .field .ui.checkbox.checked label::before {
  border-color: var(--primary);
  background-color: var(--primary);
}
section.form form .field .ui.checkbox.checked label::after {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 16px;
}
section.form form button {
  border: none;
  box-shadow: none;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 60px;
  text-transform: uppercase;
  background-color: var(--red);
  color: var(--white);
}
@media screen and (max-width: 1680px) {
  section.form form button {
    font-size: 18px;
  }
}
@media screen and (max-width: 1366px) {
  section.form form button {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  section.form form button {
    font-size: 14px;
  }
}
section.form form button:hover {
  cursor: pointer;
}
