@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
:root {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

body {
  background: rgb(233, 247, 243);
  background: url('../images/AdobeStock_460418039.jpeg') center top 0px/100% repeat-y, #fff;
  /* background: url('/harmony/frenda/images/treelines.png') center bottom 300px/100% 100% repeat-x, #fff; */
  min-height: 100vh;
  height: 100%;
  padding: 0;
  margin: 0;
}

/* header, */
footer {
  background: #151010;
}

.headerBg {
  max-width: 1440px;
  padding: 20px 8px;
  @media screen and (min-width: 601px) and (max-width: 900px) {
    padding: 24px 0;
  }
}

.logoWrapper {
  /* background: #ffffffa6; */
  border-radius: 8px;
  min-width: 300px;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
  @media screen and (min-width: 601px) {
    flex-wrap: nowrap;
  }
}

.logo {
  min-width: 80px;
  max-width: 120px;
  width: auto;
  height: auto;
  @media screen and (min-width: 601px) and (max-width: 900px) {
    height: 100px;
    width: auto;
  }
  @media screen and (min-width: 901px) {
    height: 150px;
    width: auto;
    max-width: 100%;
  }
}

h1 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 8px 0 16px;
  @media screen and (min-width: 901px) {
    font-size: 30px;
    margin: 60px 0;
  }
}
h2 {
  font-size: 18px;
  color: #956012;
  @media screen and (min-width: 901px) {
    font-size: 22px;
  }
}
h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px;
  color: #956012;
  @media screen and (min-width: 901px) {
    font-size: 18px;
  }
}
h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
  color: #956012;
  @media screen and (min-width: 901px) {
    font-size: 15px;
  }
}

form {
  font-size: 14px;
  max-width: 80vw;
  margin: 0 auto 60px;
}

.row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.small {
  font-size: smaller;
  margin-bottom: 16px;
}

.red {
  color: #a00;
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 5% 5%;
  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.3);
  background: #ffffffcf;
  background-blend-mode: overlay;
  border-radius: 12px;
  min-height: calc(100vh - 250px);
  @media screen and (min-width: 769px) {
    /* flex-direction: column; */
    min-height: calc(100vh - 325px);
    margin: 0 10% 5%;
  }
  @media screen and (min-width: 1025px) {
    min-height: 600px;
    min-height: calc(100vh - 500px);
    margin: 0 15% 5%;
  }
}

.content {
  flex-basis: calc(100% - 48px);
  padding: 8px 16px 8px;
  max-width: 100%;
  @media screen and (min-width: 769px) {
    flex-basis: calc(50% - 48px);
    max-width: 49.9%;
    /* padding: 48px 24px 24px; */
    padding: 24px 24px 8px;
  }
}

.content-l {
  border-radius: 8px 0 0 8px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.content-r {
  /* border-radius: 0 8px 8px 0; */
  padding-top: 12px;
  border-top: 1px solid #6f4d4488;
  @media screen and (min-width: 769px) {
    padding-top: 36px;
    border-top: none;
  }
}

.content-bottom {
  flex-basis: calc(100% - 48px);
  max-width: 100%;
  padding-bottom: 48px;
  margin: 0 auto;
  @media screen and (min-width: 350px) {
    flex-basis: content;
    max-width: 60%;
    align-items: center;
    padding: 0 48px 48px;
  }
}

.content-f {
  flex-basis: 100%;
  max-width: 80%;
  padding: 60px;
  @media screen and (min-width: 601px) and (max-width: 1024px) {
  }
}
.content-wrap-l {
  padding: 0;
  @media screen and (min-width: 601px) and (max-width: 1024px) {
    padding: 0 0 0 12px;
  }
  @media screen and (min-width: 901px) {
    padding: 0 0 0 10%;
  }
}
.content-wrap-r {
  padding: 0;
  @media screen and (min-width: 601px) and (max-width: 1024px) {
    padding: 0 12px 0 0;
  }
  @media screen and (min-width: 901px) {
    padding: 0 10% 0 0;
  }
}

.section-container {
  border-radius: 4px;
  border: 1px solid #528ea048;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.2);
  padding: 16px 8px 0;
  margin-bottom: 16px;
}

.row[role='listitem'] {
  display: flex;
  flex-direction: column;
  @media screen and (min-width: 601px) {
    flex-direction: row;
  }
}

br.responsive {
  display: none;
}

label {
  display: block;
  flex-basis: 100%;
  width: 100%;
  min-width: 150px;
  font-weight: 700;
  margin-bottom: 8px;
  @media screen and (min-width: 601px) {
    display: inline-block;
    flex-basis: 50%;
    min-width: 100px;
    width: 75%;
    margin-right: 16px;
    margin-bottom: 0;
  }
}

input[type='text'], textarea, input[type='number'], input[type='tel'] {
  display: block;
  height: 24px;
  width: 95%;
  @media screen and (min-width: 601px) {
    width: 100%;
  }
  @media screen and (min-width: 901px) {
    width: 100%;
  }
}

textarea {
  min-height: 50px;
  font-family: 'Open Sans', sans-serif;
}

.footer {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  margin: 24px 0 0;
}

.btn {
  /* background-color: #bfd8e7; */
  border-color: #bc6f16;
  border-radius: 4px;
  outline: none;
  appearance: none;
  display: inline-block;
  margin: 16px 5px;
}

.yaqOZd {
  display: none !important;
}

input[role='button'] {
  appearance: none;
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 24px;
  background: rgb(188, 111, 22);
  color: #eae7e1;
  border: 1px solid #528ea0;
  text-align: center;
  width: 125px;
  box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.3);
}

input[role='button']:hover {
  color: #fff;
  font-weight: 700;
  background: #bc6f16;
  box-shadow: inset -3px -3px 3px 0 rgba(0, 0, 0, 0.5), 0 3px 10px 0px rgba(0, 0, 0, 0.3);
}

footer {
  padding: 12px 0;
  color: #fff;
  font-weight: 300;
  text-align: center;
  @media screen and (min-width: 769px) {
    padding: 30px 0;
  }
  @media screen and (min-width: 1025px) {
    padding: 60px 0;
  }
}

footer nav {
  display: flex;
  justify-content: center;
}

footer a {
  margin: 10px;
  color: #fff;
  @media screen and (min-width: 769px) {
    margin: 14px;
  }
  @media screen and (min-width: 1025px) {
    margin: 18px;
  }
}

footer p {
  margin: 8px 0;
  @media screen and (min-width: 769px) {
    margin: 16px 0;
  }
  @media screen and (min-width: 1025px) {
    margin: 24px 0;
  }
}

.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  stroke-width: 0;
  stroke: #222;
  fill: #222;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
}

.icon-text {
  display: inline-block;
  width: 12px;
  height: 12px;
  stroke-width: 0;
  stroke: currentcolor;
  fill: currentcolor;
  vertical-align: middle;
  text-decoration: none;
}

.icon-external-link {
  color: #222;
  font-size: 16px;
}

.icon-youtube {
  font-size: 12px;
  color: #222;
}
.icon-facebook {
  font-size: 12px;
  color: #222;
}

.errorMsg{
  display: none;
  text-align: center;
  padding: 0 30px;
}

.display {
  display: block;
  font-size: larger;
  font-weight: bold;
}

.error {
  background-color: #aa00001a;
}
.warn {
  background-color: #aaaa001a;
}

input[role='button'] {
  cursor: pointer;
}
input::placeholder, textarea::placeholder{
  color: #aaa;
}
.lite {
  font-weight: 300;
  font-style: italic;
}

.plain-link {
  text-decoration: none;
}

.link {
  text-decoration: underline;
}

.full-span {
  flex-basis: calc(100% - 48px);
  min-width: 100%;
}

.divider {
  border-top: 1px solid #528ea048;
  margin: 16px 0;
}

.show {
  &.mobile {
    display: inline;
  }
  &.tablet {
    display: none;
    @media screen and (min-width: 426px) {
      display: inline;
    }
  }
  &.desktop {
    display: none;
    @media screen and (min-width: 769px) {
      display: inline;
    }
  }
  &.desktopL {
    display: none;
    @media screen and (min-width: 1025px) {
      display: inline;
    }
  }
}

.hide {
  &.mobile {
    display: none;
  }
  &.tablet {
    display: inline;
    @media screen and (min-width: 426px) {
      display: none;
    }
  }
  &.desktop {
    display: inline;
    @media screen and (min-width: 769px) {
      display: none;
    }
  }
  &.desktopL {
    display: inline;
    @media screen and (min-width: 1025px) {
      display: none;
    }
  }
}