* {
  box-sizing: border-box;
  font-family: "Aileron", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
  --bs-body-font-family: "Aileron", "Helvetica Neue", "Helvetica", "Arial",
    sans-serif;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hat {
  margin-bottom: -10px;
}
.contracts {
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.container {
  border-radius: 5px;
  .form-container {
    max-width: 640px;
    box-shadow: 0px 1px 10px 0.1px #888888;
    margin-inline: auto;
    form {
      padding: 50px 30px;
      .column {
        width: 275px;
        margin-bottom: 25px;
      }
      .row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }
      .address {
        width: 100%;
        margin-bottom: 25px;
      }
      select:invalid,
      select option[value=""] {
        color: #2a2a26;
      }
      select:focus {
        border: #0f3cff solid 1px !important;
      }
      .validation-message {
        color: #c23934;
        font-weight: 300;
        font-size: 11px;
        display: none;
        margin-top: 10px;
        font-style: italic;
      }
      .asterisk {
        color: #c23934;
      }
      input[type="text"],
      input[type="email"],
      select {
        width: 100%;
        padding: 3px;
        box-sizing: border-box;
        margin-top: 6px;
        resize: vertical;
        background-color: #f5f5f4;
        outline: 1px solid #f5f5f4;
        border: none;
        text-transform: capitalize;
        height: 45px;
      }
      select:hover {
        background-color: #adbbbf;
      }
      input:focus {
        border: #0f3cff solid 1px !important;
        padding: 5px !important;
      }
      option {
        text-transform: capitalize;
        background-color: white;
      }
      input[type="checkbox"] {
        margin: 15px 10px 15px 0;
        transform: scale(1.5);
        border-radius: 0;
        text-transform: capitalize;
      }
      input[type="submit"] {
        display: block;
        background: #0f3cff;
        outline-color: #0f3cff;
        color: #ffffff;
        font-size: 16px;
        padding: 10px;
        border: none;
        width: 250px;
        text-transform: uppercase;
        height: 45px;
        margin-top: 35px;
        margin-bottom: 35px;
      }
      input[type="submit"]:hover {
        background: #000e57;
      }
      .checkbox-form {
        margin-top: 20px;
        label {
          font-size: 14px;
        }
      }
      p,
      a,
      label {
        font-size: 12px;
        line-height: 30px;
      }
      label:not(.checkbox-form label) {
        text-transform: uppercase;
      }
      .bold,
      label:not(.checkbox-form label) {
        font-weight: bold;
      }
      .terms {
        line-height: 25px;
        font-size: 11px;
        .bold {
          font-size: 11px;
        }
        a {
          color: #0f3cff;
          text-decoration: underline;
        }
      }
      .email {
        text-transform: lowercase !important;
      }

      @media only screen and (max-width: 768px) {
        .column {
          width: 100%;
        }
      }
    }
  }
}
