body, html {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  border: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #555;
}

input, select, textarea, button {
  padding: 7px;
  border-width: 1px;
  border-radius: 2px;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 32px;
  color: #333;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

h4 {
  font-size: 18px;
  color: #333;
}

h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}

p {
  font-size: 15px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  background: #A9C398;
}

a.no-decor {
  color: #555;
  text-decoration: none;
}

.radio_button_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.radio_button_group input[type='radio'] {
  visibility: hidden;
  width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.radio_button_group input[type='radio'] + label {
  position: relative;
  display: block;
  width: 2.5em;
  height: 1.65em;
}

.radio_button_group input[type='radio'] + label:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  padding: .2em 0 0 0;
  content: attr(data-label);
}

.radio_button_group input[type='radio']:first-child + label:before {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.radio_button_group input[type='radio']:last-of-type + label:before {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.radio_button_group input[type='radio']:checked + label:before {
  background: #A9C398;
}

.errmsg {
  color: #FFF;
  background-color: #F55;
  padding: .3em 1em;
}

.errmsg:empty {
  display: none;
}

main > * > * {
  padding: 50px 16px;
}

@media (min-width: 768px) {
  main > * > * {
    padding: 50px 50px;
  }
}

@media (min-width: 992px) {
  main > * > * {
    padding: 50px 100px;
  }
}

@media (min-width: 1200px) {
  main > * > * {
    padding: 50px 150px;
  }
}

main > * > *:not(:last-child) {
  padding-bottom: 50px;
}

main .full_width {
  width: 100% !important;
  padding-left: 0;
  padding-right: 0;
}

main .no-top-bottom-padding {
  padding-top: 0;
  padding-bottom: 0;
}

main .text_img.right {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "img" "text";
}

main .text_img.right > .text {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: text;
}

main .text_img.right > .img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: img;
}

main .text_img.right > .img {
  height: 35vw;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 768px) {
  main .text_img.right {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 40px;
            column-gap: 40px;
        grid-template-areas: "text img";
  }
  main .text_img.right > .text {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: text;
  }
  main .text_img.right > .img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: img;
  }
  main .text_img.right > .text {
    padding-left: 0;
  }
  main .text_img.right > .img {
    height: unset;
    margin-left: 40px;
    margin-right: 40px;
  }
}

main .text_img.left {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "img" "text";
}

main .text_img.left > .text {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: text;
}

main .text_img.left > .img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: img;
}

main .text_img.left > .img {
  height: 35vw;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 768px) {
  main .text_img.left {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 40px;
            column-gap: 40px;
        grid-template-areas: "img text";
  }
  main .text_img.left > .text {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: text;
  }
  main .text_img.left > .img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: img;
  }
  main .text_img.left > .text {
    padding-right: 0;
  }
  main .text_img.left > .img {
    height: unset;
    margin-left: 40px;
    margin-right: 40px;
  }
}
/*# sourceMappingURL=style.css.map */