
.dropdown {
  position: relative;
  display: block;
  float:left;
 
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  left:0;
}

.dropdown:hover .dropdown-content {
  display: block;
}


.getstarted .php-email-form {
  background: #fef8f5;
  padding: 30px;
  height: 100%;
}

.getstared .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.getstared .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.getstared .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.getstared .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.getstared .php-email-form input,
.getstared .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.getstared .php-email-form input:focus,
.getstared .php-email-form textarea:focus {
  border-color: #ff7500;
}

.getstared .php-email-form input {
  padding: 10px 15px; border-color: #ffd39a;
}

.getstared .php-email-form textarea {
  padding: 12px 15px;border-color: #ffd39a;
}

.getstared .php-email-form button[type=submit] {
  background: #ff7500;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

 .getstared .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}