/* colors
dark-green : #b5c3ae
darker-green : #8ba47e
light-green : #f6f8f5
*/

/* structure */

#masthead {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

#masthead .site-branding img {
  width: 200px;
}

body.responsive #masthead .container {
  max-width: none;
  padding: 0px 50px;
}

#colophon .site-info {
  font-size: 10px;
}

#colophon a:hover {
  color: #f6f8f5;
}

/* typography 
LTC Goudy Oldstyle Pro Regular
font-family: "ltc-goudy-oldstyle-pro", serif;
font-weight: 400;
font-style: normal;

LTC Goudy Oldstyle Pro Italic
font-family: "ltc-goudy-oldstyle-pro", serif;
font-weight: 400;
font-style: italic;

LTC Goudy Oldstyle Pro Bold
font-family: "ltc-goudy-oldstyle-pro", serif;
font-weight: 700;
font-style: normal;

LTC Goudy Oldstyle Pro Bold Italic
font-family: "ltc-goudy-oldstyle-pro", serif;
font-weight: 700;
font-style: italic; 

*/

p {
  line-height: 1.5;
  margin-top: 0px;
}

a {
  text-decoration: none;
}

h1 {
  font-family: "ltc-goudy-oldstyle-pro", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 0px;
}

h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 20px;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 20px 0px 0px 0px;
  font-weight: 600;
}

@media screen and (max-width: 650px) {
  h1 {
    font-size: 35px;
    line-height: 1;
  }

  h2 {
    font-size: 18px;
    line-height: 1.2;
  }
}

.entry-content ul {
  margin-top: 13px;
}

/* elements */

hr {
  margin: 10px 0px;
}

.white-hr {
  background-color: #ffffff;
}

.white-frosting {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* buttons */

.green-link {
	color: #8ba47e;	
}

.green-link:hover {
	color: #b5c3ae;	
}		
		
.white-button {
  padding: 10px 15px;
  border-radius: 30px;
  background: #ffffff;
  color: #333333;
  text-decoration: none;
  transition: 0.5s;
  font-size: 12px;
  line-height: 60px;
}

.white-button:hover {
  background: #b5c3ae;
  color: #ffffff;
  transition: 0.5s;
}

.green-button {
  padding: 10px 15px;
  border-radius: 30px;
  background: #8ba47e;
  color: #ffffff;
  text-decoration: none;
  transition: 0.5s;
  font-size: 12px;
  line-height: 60px;
}

.green-button:hover {
  background: #b5c3ae;
  color: #ffffff;
  transition: 0.5s;
}

/* accordians */

.widget-title {
  font-size: 16px;
  margin-bottom: 10px;
  color: #b5c3ae !important;
}

/* 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: #f5cb5c;
  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: 70px;
  font-family: 'Poppins';
}

.wpcf7-form-control.has-spinner.wpcf7-submit:hover {
  background-color: #333533;
  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;
}

#topbar p {
  color: #ffffff;
  text-align: center;
  line-height: 1;
  margin: 10px 0px;
}