.get-a-quote .story-form {
  background: #f3f6fc;
  padding: 40px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .story-form {
    padding: 20px;
  }
}

.get-a-quote .story-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .story-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .story-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .story-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-a-quote .story-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-a-quote .story-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-a-quote .story-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.get-a-quote .story-form input,
.get-a-quote .story-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-a-quote .story-form input:focus,
.get-a-quote .story-form textarea:focus {
  border-color: var(--color-primary);
}

.get-a-quote .story-form input {
  padding: 12px 15px;
}

.get-a-quote .story-form textarea {
  padding: 12px 15px;
}

.get-a-quote .story-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .story-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}


.contact .story-form {
  width: 100%;
 
}

.contact .story-form .form-group {
  padding-bottom: 8px;
}

.contact .story-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .story-form .error-message br+br {
  margin-top: 25px;
}

.contact .story-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .story-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .story-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .story-form input,
.contact .story-form textarea {
 font-family:var(--font-primary);
  padding:20px 30px;
  border:none;
  border-radius:10px;
}

.contact .story-form input {
 font-family:var(--font-primary);
  padding:20px 30px;
  border:none;
  border-radius:10px;
}

.contact .story-form textarea {
 font-family:var(--font-primary);

  padding:20px 30px;

  border:none;

  border-radius:10px;
}

.contact .story-form button[type=submit] {
  background: var(--color-secondary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;

  font-size:24px;

  border:1px solid var(--color-secondary);
}

.contact .story-form button[type=submit]:hover {
  background: #fff;

  color:var(--color-secondary);

  border:1px solid var(--color-secondary);
}

