/* colors 
blue: #768896
*/

body.responsive #masthead {
  display: none;
}

/* typography */

h1 {
  font-size: 50px;
  line-height: 50px;
}

@media screen and (max-width: 650px) {
  h1 {
    font-size: 70px;
    line-height: 1.2;
  }
}

h2 {
  font-size: 24px;
  line-height: 33px;
  font-weight: 200;
  margin-bottom: 0px;
}

h3 {
  font-size: 20px;
  line-height: 29px;
  font-weight: 200;
  margin-bottom: 0px;
}

.entry-content ul {
  margin-top: 13px;
}

li {
  margin-bottom: 0px;
  line-height: 25px;
}

/* buttons */

.white-button {
  padding: 15px 20px;
  background: #ffffff;
  color: #768896;
  border: 1px solid #ffffff;
  text-decoration: none;
}

.white-button:hover {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  transition: 0.5s;
}

.blue-button {
  padding: 15px 20px;
  background: #768896;
  color: #ffffff;
  border: 1px solid #768896;
  text-decoration: none;
}

.blue-button:hover {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  transition: 0.5s;
}

/* forms */

.wpcf7 textarea.wpcf7-form-control.wpcf7-textarea {
  padding: 10px;
  background: #ffffff;
  border: solid 0px #cccccc;
  color: #000000;
  border-radius: 4px;
}

.wpcf7-form-control.wpcf7-text.wpcf7-tel.wpcf7-validates-as-tel {
  padding: 10px;
  background: #ffffff;
  border: solid 0px #cccccc;
  color: #000000;
  border-radius: 0px;
  border-color: #999999;
  border-width: 1px;
}

.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email {
  padding: 10px;
  background: #ffffff;
  border: solid 0px #cccccc;
  color: #000000;
  border-radius: 1px;
  border-width: 1px;
  border-style: solid;
  border-color: #999999;
}

.wpcf7 input.wpcf7-form-control.wpcf7-text {
  padding: 10px;
  background: #ffffff;
  border: solid 0px #cccccc;
  color: #000000;
  border-radius: 0px;
  border-width: 1px;
  border-style: solid;
  border-color: #999999;
}

.wpcf7-form-control.has-spinner.wpcf7-submit {
  background-color: #768895;
  padding: 18px;
  border-radius: 0px;
  text-decoration: none;
  text-transform: none;
  color: #ffffff;
  border: none;
  font-weight: 400;
  font-size: 13px;
  margin-top: 30px;
  margin-left: 0px;
  font-family: 'Poppins';
}

.wpcf7-form-control.has-spinner.wpcf7-submit:hover {
  background-color: #333333;
  color: #ffffff;
  transition: 0.5s;
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.0);
  /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0px;
  margin: 0px 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: '';
  position: absolute;
  background-color: #000000;
  /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  /* Blue */
}

.wpcf7 form.init .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  text-align: center;
  font-size: 24px;
  background: transparent;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  color: #dc3232;
  /* Red */
  border: none;
  text-align: center;
  font-size: 24px;
  background: transparent;
}

.wpcf7 form.spam .wpcf7-response-output {
  color: #f56e28;
  border: none;
  text-align: center;
  font-size: 24px;
  background: transparent;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: none;
  /* Yellow */
  text-align: center;
  font-size: 24px;
  background: transparent;
}

/* recaptcha */

.grecaptcha-badge {
  visibility: hidden;
}