.contact-clean {
  width: 100%;
  background: #f1f7fc;
  background-color: transparent;
  padding: 100px 0 100px 0;
}

@media (max-width:767px) {
  .contact-clean {
    background-color: transparent;
    padding: 100px 0 100px 0;
  }
}

.contact-clean form {
  margin: 0 auto;
  padding: 25px;
  border-radius: 3px;
  color: #ffffff;
  width: 100%;
}

@media (max-width:767px) {
  .contact-clean form {
    padding: 30px;
  }
}

.contact-clean h2 {
  margin-top: 5px;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 36px;
  color: inherit;
}

.contact-clean .form-group:last-child {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-clean form .form-control {
  transition: 0.2s;
  color: white;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  border-color: rgba(255,255,255,0);
  padding-left: 12px;
  height: 42px;
}

.contact-clean form .form-control:focus {
  transition: 0.2s;
  border: 2px solid #955eff;
  box-shadow: none;
  background-color: rgb(0,0,0,0.1);
}

.contact-clean form textarea.form-control {
  transition: 0.2s;
  min-height: 100px;
  max-height: 260px;
  padding-top: 10px;
  resize: vertical;
}

@media (max-width: 576px) {
  .contact-clean form .btn {
    transition: 0.5s;
    padding: 13px 32px;
    border: none;
    color: white;
    margin-top: 15px;
    border: 2px solid #955eff!important;
    background: none;
    box-shadow: none;
    text-shadow: none;
    opacity: 0.9;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.4px;
    line-height: 1;
    outline: none !important;
    width: 90%!important;
  }
}

.contact-clean form .btn {
  transition: 0.5s;
  transition-timing-function: ease;
  padding: 13px 32px;
  border: none;
  color: white;
  margin-top: 15px;
  border: 2px solid #955eff!important;
  background: none;
  box-shadow: none;
  text-shadow: none;
  opacity: 0.9;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1;
  outline: none !important;
  width: 35%;
}

.contact-clean form .btn:hover {
  transition: 0.5s;
  transition-timing-function: ease;
  background-color: #955eff !important;
  border: 2px solid #955eff!important;
  width: 50%;
}

.contact-clean form .btn:active {
  transition: 0.3s;
  box-shadow: 0 0 0 0!important;
  filter: contrast(0.75);
}

.contact-clean form .btn-primary {
}

