@font-face {
  font-family: "Gotham Bold";
  src: url("../webFonts/Gotham-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Medium";
  src: url("../webFonts/Gotham-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Book";
  src: url("../webFonts/Gotham-Book.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Book Italic";
  src: url("../webFonts/Gotham-BookItalic.otf") format("opentype");
}
/*----------------------------------
FONT
----------------------------------*/
/*==============================
   001 Site Wrapper
   002 Global Attributes
   003 Section
   004 Image
   005 Criteria Notice
   006 Decorations
   007 Lists
==============================*/
/*==============================
   001 Site wrapper
==============================*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  -webkit-font-kerning: normal;
          font-kerning: normal;
  font-size: 16px;
}

main {
  display: block;
}

.contain-site {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1250px !important;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}

.cookie_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 40px 0;
  background-color: #F8EEE5;
  -webkit-box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.2);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

@media (max-width: 991px) {
  .mobile_spacing {
    margin-top: 30px !important;
  }
}
@media (max-width: 580px) {
  .mobile_spacing {
    margin-top: 20px !important;
  }
}

/*==============================
   002 Global Attributes
==============================*/
.bg_fill_primary {
  background-color: rgba(51, 163, 64, 0.15);
}
.bg_fill_primary.extra_padding {
  padding: 30px 40px;
}
@media (max-width: 580px) {
  .bg_fill_primary.extra_padding {
    padding: 30px 20px;
  }
}

.bg_fill_secondary {
  background-color: pink;
}
.bg_fill_secondary h1, .bg_fill_secondary h2, .bg_fill_secondary h3, .bg_fill_secondary h4, .bg_fill_secondary h5, .bg_fill_secondary h6, .bg_fill_secondary p {
  color: #fff;
}
.bg_fill_secondary .btn.btn-primary {
  background-color: #fff;
  border: 2px solid #fff;
  color: #33A340;
}
.bg_fill_secondary .btn.btn-primary:hover {
  color: #fff;
  border-color: #fff;
  background-color: #33A340;
}
.bg_fill_secondary .btn.btn-primary:focus {
  border-color: #212121;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.4);
          box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.4);
}
.bg_fill_secondary .btn.btn-secondary:hover {
  color: #fff;
  border-color: #33A340;
  background-color: transparent;
}
.bg_fill_secondary .btn.btn-secondary:focus {
  -webkit-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.4);
          box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.4);
}

.bg_pattern {
  background-image: url("../images/texture.jpg");
  background-size: cover;
  position: relative;
}
.bg_pattern > * {
  position: relative;
  z-index: 10;
}

.no_padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.no_pad_top {
  padding-top: 0 !important;
}

.content_spacing {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .content_spacing {
    margin-bottom: 0;
  }
}

.nowrap {
  white-space: pre;
}

.photo_disclaimer {
  font-family: "Gotham Book Italic", serif;
  margin-top: 40px;
  font-size: 0.8em;
}
@media (max-width: 580px) {
  .photo_disclaimer {
    font-size: 0.75em;
  }
}

.sr-only,
.visually-hidden,
.visually_hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*==============================
   003 Section
==============================*/
section {
  padding: 50px 0 50px 0;
}
section:focus {
  outline: 0;
}
section.with-bg {
  padding-top: 0;
}
section.no_pad_bottom {
  padding-bottom: 0;
}
section.no_pad_top {
  padding-top: 0;
}
section .container {
  padding: 0 15px;
}
section .container.no_padding {
  padding: 0;
}
@media (max-width: 580px) {
  section .container {
    padding: 0 6%;
  }
}
@media (max-width: 580px) {
  section {
    padding: 30px 0;
  }
}

@media (max-width: 580px) {
  footer .container, header .container {
    padding: 0 6%;
  }
}

/*==============================
   004 Image
==============================*/
img.default_image {
  display: block;
  width: 100%;
}
img.default_image.align_right {
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  img.default_image.align_right {
    margin: 10px 0 15px 0;
  }
}

img.default_icon {
  display: block;
  margin: 0 0 16px 0;
  max-height: 65px;
}
@media (max-width: 991px) {
  img.default_icon {
    max-height: 90px;
    max-width: 80px;
  }
}
@media (max-width: 768px) {
  img.default_icon {
    margin-bottom: 15px;
    max-height: 70px;
    max-width: 60px;
  }
}

.register_button_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
@media (max-width: 991px) {
  .register_button_wrapper img.poweredBy {
    margin: 7px 0 0 0;
  }
}
@media (max-width: 991px) {
  .register_button_wrapper.mobile_center img.poweredBy {
    margin: 7px auto 0 auto;
  }
}
@media (max-width: 991px) {
  .register_button_wrapper {
    display: block;
  }
}

img.poweredBy {
  display: block;
  width: 100px;
  margin-left: 10px;
}

.scroll_arrow {
  display: block;
  width: 38px !important;
  margin: 0 auto;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  -webkit-animation-name: scrollAnim;
          animation-name: scrollAnim;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media (max-width: 580px) {
  .scroll_arrow {
    width: 28px !important;
  }
}

@-webkit-keyframes scrollAnim {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes scrollAnim {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*==============================
   005 Criteria Notice
==============================*/
@media (max-width: 991px) {
  .criteria_notice.desktop {
    display: none;
  }
}
.criteria_notice.mobile {
  display: none;
}
@media (max-width: 991px) {
  .criteria_notice.mobile {
    display: block;
  }
}

/*==============================
   006 Decorations
==============================*/
.animateSvg polygon {
  opacity: 0;
}

[data-aos=custom-fade-up] {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
[data-aos=custom-fade-up].aos-animate {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

@-webkit-keyframes float_animation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes float_animation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes float_animation_2 {
  0% {
    -webkit-transform: translate(31px, 38px);
            transform: translate(31px, 38px);
  }
  50% {
    -webkit-transform: translate(31px, 48px);
            transform: translate(31px, 48px);
  }
  100% {
    -webkit-transform: translate(31px, 38px);
            transform: translate(31px, 38px);
  }
}
@keyframes float_animation_2 {
  0% {
    -webkit-transform: translate(31px, 38px);
            transform: translate(31px, 38px);
  }
  50% {
    -webkit-transform: translate(31px, 48px);
            transform: translate(31px, 48px);
  }
  100% {
    -webkit-transform: translate(31px, 38px);
            transform: translate(31px, 38px);
  }
}
.default-table {
  border-collapse: collapse;
}
.default-table th, .default-table td {
  color: #000;
  padding: 4px 10px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .default-table th, .default-table td {
    padding: 2px 5px;
  }
}
@media (max-width: 580px) {
  .default-table th, .default-table td {
    font-size: 0.8rem;
  }
}

table.pp-table-1 tbody tr td:nth-child(1) {
  width: 25%;
}
@media (max-width: 768px) {
  table.pp-table-1 tbody tr td:nth-child(1) {
    width: 35%;
  }
}
table.pp-table-1 tbody tr td:nth-child(2) {
  width: 60%;
}
@media (max-width: 768px) {
  table.pp-table-1 tbody tr td:nth-child(2) {
    width: 60%;
  }
}
table.pp-table-1 tbody tr td:nth-child(3) {
  width: 15%;
}
@media (max-width: 768px) {
  table.pp-table-1 tbody tr td:nth-child(3) {
    width: 5%;
  }
}

table.pp-table-2 tbody tr td:nth-child(1) {
  width: 40%;
}
@media (max-width: 768px) {
  table.pp-table-2 tbody tr td:nth-child(1) {
    width: 45%;
  }
}
@media (max-width: 580px) {
  table.pp-table-2 tbody tr td:nth-child(1) {
    width: 40%;
  }
}
table.pp-table-2 tbody tr td:nth-child(2) {
  width: 35%;
}
@media (max-width: 768px) {
  table.pp-table-2 tbody tr td:nth-child(2) {
    width: 45%;
  }
}
@media (max-width: 580px) {
  table.pp-table-2 tbody tr td:nth-child(2) {
    width: 50%;
  }
}
table.pp-table-2 tbody tr td:nth-child(3) {
  width: 25%;
}
@media (max-width: 768px) {
  table.pp-table-2 tbody tr td:nth-child(3) {
    width: 10%;
  }
}

.block_item_wrapper {
  /*--------------------------
     Wrapper */
}
@media (max-width: 580px) {
  .block_item_wrapper:last-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .block_item_wrapper {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .block_item_wrapper {
    margin-top: 10px;
  }
}
.block_item_wrapper .block_items {
  padding: 10px;
  position: relative;
  text-align: center;
  /*--------------------------
     Text */
  /*--------------------------
     Swoosh Image */
}
@media (max-width: 768px) {
  .block_item_wrapper .block_items {
    padding: 0;
  }
}
.block_item_wrapper .block_items .block_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
.block_item_wrapper .block_items .block_content p {
  color: #fff;
  margin: 0;
  font-weight: 600;
  position: relative;
  text-align: center;
  line-height: 1.2;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.block_item_wrapper .block_items .block_content p span {
  display: block;
  font-family: "abril-display", serif;
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.8;
}
@media (max-width: 1200px) {
  .block_item_wrapper .block_items .block_content p {
    font-size: 0.8em;
  }
}
@media (max-width: 991px) {
  .block_item_wrapper .block_items .block_content p {
    font-size: 1em;
  }
}
@media (max-width: 580px) {
  .block_item_wrapper .block_items .block_content p {
    font-size: 0.9em;
  }
}
.block_item_wrapper .block_items img {
  width: 100%;
}
@media (max-width: 580px) {
  .block_item_wrapper .block_items img {
    width: 80%;
    margin: 0 auto;
  }
}

/*==============================
   007 Lists
==============================*/
.styled_list {
  list-style-type: none;
  margin-left: 0;
  padding: 0;
}
.styled_list > li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}
.styled_list > li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #1B5F2D;
  position: absolute;
  top: 6px;
  left: 0;
  border: 2px solid transparent;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 580px) {
  .styled_list > li:before {
    width: 2px;
    height: 2px;
    top: 8px;
  }
}
@media (max-width: 580px) {
  .styled_list > li {
    padding-left: 16px;
  }
}
.styled_list > li > ul {
  list-style-type: none;
  padding: 0;
  margin: 14px 0 0 0;
}
.styled_list > li > ul > li {
  position: relative;
  padding-left: 20px;
}
.styled_list > li > ul > li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: transparent;
  position: absolute;
  top: 6px;
  left: 0;
  border: 2px solid #212121;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 580px) {
  .styled_list > li > ul > li:before {
    width: 2px;
    height: 2px;
    top: 8px;
  }
}
@media (max-width: 580px) {
  .styled_list > li > ul > li {
    padding-left: 16px;
  }
}
@media (max-width: 580px) {
  .styled_list > li > ul > li {
    font-size: 1em;
  }
  .styled_list > li > ul > li:before {
    top: 6px;
  }
}

.no_style {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.no_style li {
  max-width: 90%;
}
@media (max-width: 580px) {
  .no_style li {
    max-width: 100%;
  }
}
.no_style .d-flex img {
  display: block;
  width: 38px;
}
.no_style .d-flex p {
  margin: 0 0 0 20px;
}

.sub_list {
  margin-left: 60px;
}
.sub_list > ul {
  margin: 0 0 0 16px;
  padding: 0;
  list-style-type: disc;
}
.sub_list > ul li {
  margin: 5px 0;
}
.sub_list p {
  margin: 0;
}

.table_heading {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "cat examples collected";
  -ms-grid-columns: 30% 50% auto;
  grid-template-columns: 30% 50% auto;
  font-family: "Gotham Bold", serif;
  color: #212121;
}
@media (max-width: 580px) {
  .table_heading .column.col_1 {
    display: none;
  }
}

.column.col_0 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: cat;
}

.policy_grid > .column.col_0 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.column.col_1 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  padding: 0 20px;
  grid-area: examples;
}

.policy_grid > .column.col_1 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media (max-width: 580px) {
  .column.col_1 {
    padding: 0;
  }
}

.column.col_2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: collected;
}

.policy_grid > .column.col_2 {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.policy_grid {
  display: -ms-grid;
  display: grid;
  gap: 10px 20px;
      grid-template-areas: "cat examples collected";
  -ms-grid-columns: 30% 20px 50% 20px auto;
  grid-template-columns: 30% 50% auto;
}
@media (max-width: 580px) {
  .policy_grid {
    font-size: 0.8rem;
        grid-template-areas: "cat collected" "examples examples";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .policy_grid > .column.col_0 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .policy_grid > .column.col_1 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .policy_grid > .column.col_2 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}

ol.policy {
  width: 100%;
  list-style-type: upper-alpha;
  counter-reset: item;
  padding: 0;
}
ol.policy li {
  counter-increment: item;
  padding-bottom: 20px;
}
@media (max-width: 580px) {
  ol.policy li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 10px;
  }
}
ol.policy li .column.col_0 {
  position: relative;
}
ol.policy li .column.col_0 span {
  display: block;
  margin-left: 25px;
}
@media (max-width: 580px) {
  ol.policy li .column.col_0 span {
    margin-left: 18px;
  }
}
ol.policy li .column.col_0:before {
  content: counter(item, upper-alpha) ".";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 580px) {
  ol.policy li .column.col_0 {
    font-family: "Gotham Bold", serif;
  }
}
ol.policy li .column.col_1 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  padding: 0 20px;
  grid-area: examples;
}
@media (max-width: 580px) {
  .policy_grid > .column.col_1 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}
@media (max-width: 580px) {
  ol.policy li .column.col_1 {
    padding: 0;
  }
}
@media (max-width: 580px) {
  ol.policy li .column.col_2 {
    font-family: "Gotham Bold", serif;
  }
}
ol.footnote_list {
  margin: 0 0 0 34px;
  padding: 0;
}
ol.footnote_list li {
  font-size: 0.85em;
  margin: 0 0 6px 0;
}
ol.footnote_list li:target, ol.footnote_list li:focus {
  outline: 0;
}
ol.footnote_list li:target span, ol.footnote_list li:focus span {
  outline: 2px solid #33A340;
}
ol.footnote_list li a.back_to_content_link {
  font-size: 0.75em;
  padding: 0 2px;
  color: #212121;
  border-color: #212121;
}
ol.footnote_list li a.back_to_content_link:hover {
  border-color: transparent;
}
ol.footnote_list li a.reference_link {
  color: #212121;
  font-weight: 500;
}
ol.footnote_list li a:focus-visible {
  outline: 2px solid #212121;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  z-index: 10;
}

body {
  color: #585A53;
  font-family: "Gotham Book", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  color: #33A340;
  font-family: "Gotham Bold", serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.4em 0;
  letter-spacing: 0px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 2em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.2em;
  }
}
@media (max-width: 580px) {
  h1 {
    font-size: 1.4em;
  }
}

h2 {
  font-size: 1.3em;
  color: #1B5F2D;
}
h2.intra_section {
  margin: 30px 0 0.4em 0;
}
@media (max-width: 991px) {
  h2.intra_section {
    margin: 10px 0 0.4em 0;
  }
}
@media (max-width: 580px) {
  h2 {
    font-size: 1.1em;
  }
}

h3, .h3 {
  color: #1B5F2D;
  font-size: 1.12em;
  line-height: 1.2;
  margin: 0.3em 0 0.2em 0;
  font-size: 1.12rem;
}
@media (max-width: 580px) {
  h3, .h3 {
    font-size: 1em;
  }
}
h3.grey, .h3.grey {
  margin: 0 0 6px 0;
  color: #212121;
}

h3.bordered {
  text-align: center;
}

.privacy-policy h3 {
  text-transform: sentence;
}

h4 {
  color: #212121;
  font-size: 1.12rem;
  font-family: "Gotham Book", sans-serif;
  font-weight: 400;
}

h5 {
  font-family: "omnes-pro", serif;
  font-size: 1.1em;
  color: #F8EEE5;
}

a {
  color: #1B5F2D;
  font-family: "Gotham Bold", serif;
  font-weight: 600;
  font-size: 1.12rem;
  border-bottom: 1px solid #1B5F2D;
  line-height: 1.3;
  text-decoration: none;
  -webkit-transition: border-bottom 0.2s ease;
  transition: border-bottom 0.2s ease;
}
a:focus {
  outline: 0;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(27, 95, 45, 0.7);
          box-shadow: 0px 0px 0px 4px rgba(27, 95, 45, 0.7);
}
a:active:focus {
  outline: none;
}
a.body_link {
  font-family: "Gotham Book", sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #33A340;
}
a:hover {
  border-color: transparent;
  text-decoration: none;
}
@media (max-width: 580px) {
  a {
    font-size: 1rem;
  }
}

p, li {
  font-family: "Gotham Book", sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 14px 0;
  color: #212121;
}
@media (max-width: 580px) {
  p, li {
    font-size: 1rem;
    line-height: 1.5;
  }
}

p sup {
  position: absolute;
  font-size: 0.65em;
}
p.sm {
  font-size: 0.85em;
}
@media (max-width: 580px) {
  p.sm {
    font-size: 0.75em;
  }
}
@media (max-width: 580px) {
  p a {
    font-size: 1em;
  }
}

sup.footnote_sup:target a {
  background-color: pink;
  color: #fff;
}
sup.footnote_sup a {
  border: 1px solid transparent;
  color: #212121;
  font-weight: 500;
  font-family: "Gotham", serif;
  font-size: 1em;
  padding: 0 1px;
}
sup.footnote_sup a:focus {
  outline: 2px solid #33A340;
  -webkit-box-shadow: none;
          box-shadow: none;
}
sup.footnote_sup a:hover {
  outline: 2px solid #33A340;
}

strong, b {
  font-family: "Gotham Bold", serif;
  font-weight: 700;
}

.text-link {
  font-family: "Gotham Book", sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 14px 0;
  color: #212121;
  border-bottom: 1px solid #212121;
  color: #F8EEE5;
  font-family: "Gotham Bold", serif;
  color: #212121;
  -webkit-transition: border-color 0.2s ease-out;
  transition: border-color 0.2s ease-out;
}
@media (max-width: 580px) {
  .text-link {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.text-link:hover {
  color: #212121;
  border-color: transparent;
}
.text-link:hover span {
  border: none;
}

.em, em {
  font-family: "Gotham Book Italic", serif;
  font-weight: 400;
  font-style: initial;
}
.em a, em a {
  font-family: "Gotham Book Italic", serif;
  font-weight: 600;
  font-size: 1em;
  font-style: intiial;
}

#see-who-may-qualify-qualify .introduction p {
  max-width: 700px;
  text-align: center;
  color: #585A53;
}

.introduction a {
  line-height: 3em;
}

.introduction h2 {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.page-title h1 {
  font-size: 1.66em;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
}

.page-title p {
  margin-bottom: 0;
  max-width: 640px;
}

#policy h3 {
  margin-bottom: 10px;
}

.fontAwesome {
  font-family: Helvetica, "FontAwesome", sans-serif;
}

header {
  background-color: #fff;
  padding: 20px 0;
  z-index: 900;
  width: 100%;
  margin: 0 auto;
  max-width: 1500px;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  /*--------------------
     Logo */
  /*-----------------------------------
     Navigation */
}
header img.header_decoration {
  width: calc(100% - 30px);
  margin: 20px auto 0 auto;
  display: block;
}
header.scrolled {
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 580px) {
  header {
    padding: 10px 0;
  }
}
@media (max-width: 991px) {
  header .container {
    max-width: 100%;
  }
}
header .header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
}
header .header_content > div:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 580px) {
  header .header_content {
    padding: 0;
  }
}
header a.header_cta {
  font-size: 1rem;
}
@media (max-width: 768px) {
  header a.header_cta {
    display: none;
  }
}
header a.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  border-bottom: 0;
  width: 200px;
  border: 2px solid transparent;
}
header a.logo:focus {
  outline: 0;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(27, 95, 45, 0.7);
          box-shadow: 0px 0px 0px 4px rgba(27, 95, 45, 0.7);
  border-color: #fff;
}
header a.logo:active:focus {
  outline: none;
}
@media (max-width: 580px) {
  header a.logo {
    width: 120px;
  }
}
header a.logo img {
  display: block;
  width: 100%;
}
header nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header ul.primary_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  background-color: #fff;
  /*--------------------
     Sub menu */
}
header ul.primary_nav.active {
  display: block;
  position: absolute;
  top: 52px;
  right: 0px;
  z-index: 999;
  padding: 0;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 580px) {
  header ul.primary_nav {
    top: 47px;
  }
}
header ul.primary_nav li {
  margin-bottom: 0;
  /*--------------------
     Link w/ children */
  /*---- CTA button: inherits link style -----*/
}
header ul.primary_nav li:not(:first-child) {
  margin-left: 0;
}
header ul.primary_nav li a {
  white-space: nowrap;
  padding: 14px 22px 9px 22px;
  display: block;
  border-bottom: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
header ul.primary_nav li a:hover {
  background-color: #33A340;
  color: #fff;
}
header ul.primary_nav li.nav_item {
  position: relative;
}
header ul.primary_nav li.nav_cta a {
  background-color: #33A340;
  color: #fff;
  margin-left: 14px;
  padding: 8px 28px;
  border: 2px solid transparent;
}
header ul.primary_nav li.nav_cta a:focus {
  border-color: #fff;
}
header ul.primary_nav li.nav_cta a:hover {
  background-color: #277c31;
}
@media (max-width: 1200px) {
  header ul.primary_nav li.nav_cta a {
    margin-left: 0;
    padding: 12px 14px;
    border-radius: 8px;
  }
}
@media (max-width: 1200px) {
  header ul.primary_nav li.nav_cta {
    padding: 0 25px;
  }
}
@media (max-width: 1200px) {
  header ul.primary_nav li.poweredBy img {
    margin: 0;
  }
}
@media (max-width: 1200px) {
  header ul.primary_nav li.poweredBy {
    margin-top: 8px;
    padding: 0 25px;
  }
}
header ul.primary_nav .sub_menu {
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header ul.primary_nav .sub_menu li {
  margin: 0;
}
header ul.primary_nav .sub_menu li a {
  background-color: transparent;
  padding: 12px 12px 10px 12px;
  color: #33A340;
  border: 2px solid transparent;
  border-radius: 4px;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 991px) {
  header ul.primary_nav .sub_menu li a {
    display: block;
    padding: 16px 10px 12px 10px;
    background-color: #33A340;
    color: #fff;
    border-radius: 0;
  }
}
@media (max-width: 580px) {
  header ul.primary_nav .sub_menu li a {
    background-color: #33A340;
    padding: 13px 18px;
  }
}

/* ===============
WHO MAY QUALIFY
=============== */
.questionnaire-wrapper {
  border: 2px solid #33A340;
  max-width: 750px;
  margin: 0 auto;
}
.questionnaire-wrapper.align-left {
  margin: 0;
}

.questionnaire-heading {
  background-color: #33A340;
  text-align: center;
}
.questionnaire-heading h2 {
  color: #fff;
  padding: 30px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.questionnaire-title {
  max-width: 750px;
  margin: 0 auto;
}
.questionnaire-title h2 {
  padding: 30px 34px 26px 34px;
  margin-bottom: 0;
}
@media (max-width: 580px) {
  .questionnaire-title h2 {
    padding: 20px 20px 10px 20px;
  }
}
@media (max-width: 991px) {
  .questionnaire-title {
    max-width: 100%;
  }
}

.questionnaire_padding {
  padding: 34px 0;
}
@media (max-width: 580px) {
  .questionnaire_padding {
    padding: 0;
  }
}

.questionnaire {
  /*-----------------------
     STEPS */
  /*-----------------------
     STEPS */
}
.questionnaire .form {
  padding: 0 34px 34px 34px;
}
.questionnaire .form h2 {
  color: #212121;
}
@media (max-width: 580px) {
  .questionnaire .form {
    padding: 20px 20px;
  }
}
.questionnaire .btn.btn-primary {
  margin-top: 6px;
}
.questionnaire.align-left {
  margin: 0;
}
.questionnaire .group {
  margin: 26px 0;
}
.questionnaire .group p {
  margin: 0 0 0.4em 0;
}
.questionnaire .group p.field_desc_spacing {
  margin: 0 0 1em 0;
}
.questionnaire .group.border_top {
  border-top: 1px solid rgba(128, 128, 128, 0.4);
  padding-top: 20px;
}
@media (max-width: 580px) {
  .questionnaire .group.border_top {
    padding-top: 10px;
  }
}
.questionnaire .group.border_bottom {
  border-bottom: 1px solid rgba(128, 128, 128, 0.4);
  padding-bottom: 22px;
  padding-top: 5px;
}
@media (max-width: 580px) {
  .questionnaire .group.border_bottom {
    padding-top: 3px;
    padding-bottom: 16px;
  }
}
@media (max-width: 580px) {
  .questionnaire .group {
    margin: 16px 0;
  }
}
.questionnaire .wizard p {
  color: #212121;
  font-weight: 600;
  display: inline-block;
  margin: 0;
}
.questionnaire .wizard .progress_bar {
  width: 100%;
  height: 4px;
  background-color: rgba(128, 128, 128, 0.3);
  position: relative;
}
.questionnaire .wizard .progress_bar .progress_bar_fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #33A340;
}
.questionnaire .wizard.step_spacing_top {
  padding-top: 30px;
}
.questionnaire .wizard.step_spacing_bottom {
  padding-bottom: 20px;
}
.questionnaire .caption {
  margin-top: 24px;
}
.questionnaire .finish_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
@media (max-width: 991px) {
  .questionnaire .finish_wrapper {
    display: block;
  }
}
.questionnaire .questionnaire_finish button {
  margin: 0 0 0 auto;
  display: block;
}
@media (max-width: 991px) {
  .questionnaire .questionnaire_finish button {
    margin: 15px 0 0 0;
  }
}

/*==============================
   001 Home
==============================*/
section.hero {
  padding: 90px 0 120px 0;
}
section.hero p.prehead {
  font-family: "Gotham Bold", serif;
  font-weight: 700;
  color: #1B5F2D;
}
@media (max-width: 991px) {
  section.hero .hero_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
section.hero .hero_image_wrapper {
  position: relative;
}
section.hero .hero_image_wrapper img {
  position: relative;
  display: block;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: center left;
          transform-origin: center left;
  z-index: 10;
}
@media (max-width: 1410px) {
  section.hero .hero_image_wrapper img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@media (max-width: 1270px) {
  section.hero .hero_image_wrapper img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media (max-width: 1200px) {
  section.hero .hero_image_wrapper img {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@media (max-width: 991px) {
  section.hero .hero_image_wrapper img {
    -webkit-transform: scale(1);
            transform: scale(1);
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 991px) {
  section.hero {
    padding: 20px 0 50px 0;
  }
}
@media (max-width: 580px) {
  section.hero {
    padding: 10px 0 40px 0;
  }
}

/*==============================
   002 About Study
==============================*/
/*==============================
   003 Participate
==============================*/
section.participate {
  position: relative;
}
section.participate img.decoration {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
}
@media (max-width: 991px) {
  section.participate img.decoration {
    width: 40vw;
  }
}
section.participate .container {
  position: relative;
  z-index: 10;
}
@media (max-width: 991px) {
  section.participate .description {
    max-width: 60vw;
  }
}

section.callout .d-flex > div:nth-child(1) {
  width: 58%;
  margin-right: 2%;
}
@media (max-width: 991px) {
  section.callout .d-flex > div:nth-child(1) {
    margin-right: 0;
    width: 100%;
  }
}
section.callout .d-flex > div:nth-child(2) {
  position: relative;
  width: 38%;
  margin-left: 2%;
}
@media (max-width: 991px) {
  section.callout .d-flex > div:nth-child(2) {
    width: 100%;
    margin: -240px 0 30px 0;
  }
}
section.callout .d-flex > div:nth-child(2) img {
  display: block;
  width: 85%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin-top: auto;
  margin-bottom: auto;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}
@media (max-width: 1200px) {
  section.callout .d-flex > div:nth-child(2) img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  section.callout .d-flex > div:nth-child(2) img {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    position: relative;
    top: unset;
    margin: 0 auto;
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  section.callout .d-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 160px;
  }
}

/*==============================
   004 Refer
==============================*/
.image_col {
  position: relative;
}
.image_col img {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 500px;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
@media (max-width: 991px) {
  .image_col img {
    position: relative;
    top: unset;
    left: unset;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    padding: 0 8%;
    top: 0;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@media (max-width: 991px) {
  .criteria_notice.desktop {
    display: none;
  }
}
.criteria_notice.mobile {
  display: none;
}
@media (max-width: 991px) {
  .criteria_notice.mobile {
    display: block;
  }
}

/*==============================
   006 Research Sites
==============================*/
.research_site_list h3 {
  color: #212121;
  margin: 0 0 6px 0;
}
@media (max-width: 991px) {
  .research_site_list h3 {
    margin: 20px 0 0 0px;
  }
}
.research_site_list h4, .research_site_list p {
  margin: 0 0 4px 0;
}
.research_site_list a {
  color: #1B5F2D;
  border-bottom: 1px solid #1B5F2D;
}
.research_site_list.margin h3 {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .research_site_list.margin h3 {
    margin: 20px 0 0 0px;
  }
}
@media (max-width: 991px) {
  .research_site_list > div {
    margin-top: 20px;
  }
}
section.contact_page h1 {
  max-width: 600px;
}
section.contact_page .questionnaire .form {
  padding-top: 30px;
}

section.spread_word .questionnaire .form {
  padding-top: 30px;
}

section.privacy_policy h2 {
  text-transform: uppercase;
}
section.privacy_policy .section {
  margin-bottom: 40px;
}

/* ===============
FOOTER
=============== */
footer {
  background-color: #fff;
  position: relative;
  padding-top: 30px;
}
footer .container {
  position: relative;
  z-index: 10;
}
footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 30px 0;
}
footer .flex > div:nth-child(1) a {
  border-color: transparent;
  display: block;
}
footer .flex > div:nth-child(1) img {
  width: 100%;
}
@media (max-width: 991px) {
  footer .flex > div:nth-child(1) {
    margin: 0 auto 20px auto;
  }
}
footer .flex > div.footer_nav {
  width: 100%;
  text-align: center;
}
footer .flex > div.footer_nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .flex > div.footer_nav ul li {
  margin: 6px 10px;
}
@media (max-width: 768px) {
  footer .flex > div.footer_nav ul li {
    margin: 15px 0 0 0;
  }
}
@media (max-width: 768px) {
  footer .flex > div.footer_nav ul {
    display: block;
  }
}
footer .flex .spacer {
  width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
@media (max-width: 991px) {
  footer .flex {
    display: block;
  }
}
footer p.version {
  color: #808080;
  font-size: 0.85rem;
  margin: 20px 0 0 0;
}
@media (max-width: 580px) {
  footer p.version {
    font-size: 0.75rem;
  }
}

img.footer_bg {
  display: block;
  max-width: 470px;
  width: 100%;
  position: absolute;
  bottom: 44px;
  right: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  img.footer_bg {
    max-width: 300px;
  }
}

.btn {
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Gotham Bold", serif;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 40px;
  margin-top: 20px;
  height: 51px;
  text-decoration: none;
  text-align: center;
  vertical-align: top;
  background-image: url("../images/btn-bg.svg");
  background-size: 100% auto;
  -webkit-transform: rotate(-1.5deg);
          transform: rotate(-1.5deg);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  /*---------------------------
  	PRIMARY BUTTON */
  /*---------------------------
  	SECONDARY BUTTON */
}
.btn.btn-primary, .btn.btn-secondary {
  background-color: transparent;
  border: 0;
  -webkit-transition: background-color 0.2s ease, border 0.15s ease, color 0.25s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, border 0.15s ease, color 0.25s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, border 0.15s ease, box-shadow 0.2s ease, color 0.25s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, border 0.15s ease, box-shadow 0.2s ease, color 0.25s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
}
.btn.btn-primary:hover, .btn.btn-secondary:hover {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
.btn.btn-primary:focus, .btn.btn-secondary:focus {
  outline: 0;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(27, 95, 45, 0.7);
          box-shadow: 0px 0px 0px 4px rgba(27, 95, 45, 0.7);
  border-color: #fff;
}
.btn.btn-secondary {
  background-image: url("../images/btn-bg-sm.svg");
  height: 46px;
  margin-top: 6px;
  margin-bottom: 20px;
  min-width: 140px;
}
@media (max-width: 580px) {
  .btn {
    font-size: 0.9rem;
    height: 49px;
  }
}

.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 163, 64, 0.4);
          box-shadow: 0 0 0 0.2rem rgba(51, 163, 64, 0.4);
}

.show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(172, 31, 37, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(172, 31, 37, 0.2);
}

.shareBtnWrapper {
  position: relative;
  display: inline-block;
  margin-top: 25px;
}
.shareBtnWrapper .shareNotice {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: -44px;
  left: -9px;
  padding: 6px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.shareBtnWrapper .shareNotice.dark {
  background-color: rgb(0, 0, 0);
}
@media (max-width: 768px) {
  .shareBtnWrapper .shareNotice {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.shareBtnWrapper .shareNotice:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: -7px;
  left: 9px;
  margin: auto;
}
.shareBtnWrapper .shareNotice p {
  color: #fff;
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.zip-search {
  margin-bottom: 10px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.zip-search input {
  max-width: 180px;
  width: 100%;
}
.zip-search .zip-button {
  margin-top: 0px;
  margin-left: 10px;
}
.zip-search .zip-button button {
  display: block;
  margin: 0;
}

.map-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  /*--------------------
     Legend Item */
  /*--------------------
     Location Icon */
  /*--------------------
     Text */
}
@media (max-width: 580px) {
  .map-legend {
    display: block;
  }
}
.map-legend p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
@media (max-width: 580px) {
  .map-legend p:first-child span.location_icon {
    margin-left: 6px;
  }
}
@media (max-width: 580px) {
  .map-legend p:first-child span.map-legend-text {
    margin-left: 11px;
  }
}
.map-legend p:not(:first-child) {
  margin-left: 60px;
}
@media (max-width: 580px) {
  .map-legend p:not(:first-child) {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.map-legend .location_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.map-legend .location_icon svg {
  display: inline-block;
  width: 15.06px;
  height: 20.39px;
}
.map-legend .location_icon.fill-primary path.location-icon-fill {
  fill: #1B5F2D;
}
.map-legend .location_icon.fill-secondary path.location-icon-fill {
  fill: #1B5F2D;
}
.map-legend .location_icon_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.map-legend .location_icon_active.fill-primary path.outer_ring {
  stroke: #1B5F2D;
}
.map-legend .location_icon_active.fill-primary path.dot {
  fill: #1B5F2D;
}
.map-legend .location_icon_active.fill-primary stop {
  stop-color: #1B5F2D;
}
.map-legend .map-legend-text {
  font-size: 0.85em;
  margin-left: 5px;
}

.map_placeholder {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .map_placeholder {
    margin-top: 30px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex .radio,
.flex .checkbox {
  width: auto;
}
.flex .radio:nth-child(1),
.flex .checkbox:nth-child(1) {
  margin-right: 20px;
  margin-bottom: 0;
}

section.contact_section .form {
  border: 3px solid #33A340;
  border-radius: 0;
  padding: 35px 30px;
  margin-top: 20px;
}
section.contact_section .form .radio-group {
  margin-bottom: 0;
}
section.contact_section .form .radio-group label {
  margin: 0;
}
@media (max-width: 580px) {
  section.contact_section .form {
    padding: 35px 20px;
  }
}

.icon_input {
  width: 100%;
  position: relative;
}
.icon_input input {
  padding-left: 45px !important;
}
.icon_input i {
  position: absolute;
  font-size: 1.1em;
  color: silver;
  top: 0;
  bottom: 0;
  left: 12px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

label, legend {
  color: #33A340;
  font-family: "Gotham Bold", serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.4em 0;
  letter-spacing: 0px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #1B5F2D;
  font-size: 1.12em;
  line-height: 1.2;
  margin: 0.3em 0 0.2em 0;
  display: block;
  letter-spacing: 0;
  font-weight: 500;
  margin: 0 0 0.4em 0;
}
@media (max-width: 580px) {
  label, legend {
    font-size: 1em;
  }
}

label > span:not(.behalf-default):not(.behalf-myself):not(.behalf-other):not(.captcha):not(.question-text):not([aria-hidden]) {
    display: block;
    font-size: 0.75em;
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 16px;
    -moz-osx-font-smoothing: initial;
    -webkit-font-smoothing: initial;
}

/*====================================
   INPUTS
====================================*/
input,
textarea,
select {
  font-family: "Gotham Book", sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 14px 0;
  color: #212121;
  font-weight: 400;
  margin: 0;
  border: 2px solid gray;
  padding: 10px 8px;
  display: block;
  width: 100%;
}
@media (max-width: 580px) {
  input,
textarea,
select {
    font-size: 1rem;
    line-height: 1.5;
  }
}
input:focus,
textarea:focus,
select:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(27, 95, 45, 0.7);
          box-shadow: 0 0 0 3px rgba(27, 95, 45, 0.7);
  border-color: #041007;
}

.input_helper {
  font-size: 0.9rem;
  opacity: 1;
  margin: 5px 0 0 0 !important;
  color: #757575;
}
@media (max-width: 580px) {
  .input_helper {
    font-size: 0.9rem;
  }
}

.field-xs input {
  max-width: 120px;
  width: 100%;
}

.field-sm input {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 991px) {
  .field-sm input {
    max-width: 100%;
  }
}

.field-md input {
  max-width: 70%;
  width: 100%;
}
@media (max-width: 991px) {
  .field-md input {
    max-width: 100%;
  }
}

/*====================================
   RADIO & CHECKBOX
====================================*/
.radio,
.checkbox {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.radio:not(:last-child),
.checkbox:not(:last-child) {
  margin: 0 0 10px 0;
}
.radio.align-start,
.checkbox.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.radio.align-start > span,
.checkbox.align-start > span {
  margin-top: 6px;
}
.radio input[type=radio],
.radio input[type=checkbox],
.checkbox input[type=radio],
.checkbox input[type=checkbox] {
  outline: 1px solid hotpink;
  height: 100%;
  width: 100%;
  display: block;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.radio input[type=radio]:checked ~ span,
.radio input[type=checkbox]:checked ~ span,
.checkbox input[type=radio]:checked ~ span,
.checkbox input[type=checkbox]:checked ~ span {
  background-color: #1B5F2D;
  border-color: #1B5F2D;
}
.radio input[type=radio]:focus ~ span,
.radio input[type=checkbox]:focus ~ span,
.checkbox input[type=radio]:focus ~ span,
.checkbox input[type=checkbox]:focus ~ span {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(27, 95, 45, 0.7);
          box-shadow: 0 0 0 3px rgba(27, 95, 45, 0.7);
  border-color: #041007;
  border-style: solid;
}
.radio input[type=radio]:focus:checked ~ span,
.radio input[type=checkbox]:focus:checked ~ span,
.checkbox input[type=radio]:focus:checked ~ span,
.checkbox input[type=checkbox]:focus:checked ~ span {
  background-color: #1d6731;
  border-color: #fff;
}
.radio > span,
.checkbox > span {
  width: 15px;
  height: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  display: block;
  border: 2px solid skyblue;
  border: 2px solid #606060;
  border-radius: 50%;
  margin: auto;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.radio input[type=checkbox] ~ span,
.checkbox input[type=checkbox] ~ span {
  border-radius: 0;
}
.radio label,
.checkbox label {
  font-family: "Gotham Book", sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 14px 0;
  color: #212121;
  cursor: pointer;
  margin: 0 0 0 8px;
  width: 100%;
  line-height: 1.5;
  -webkit-transition: border 0.4s ease, background 0.4s ease;
  transition: border 0.4s ease, background 0.4s ease;
}
@media (max-width: 580px) {
  .radio label,
.checkbox label {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.radio_flex .input_group_row .radio {
  width: auto;
}
.radio_flex .input_group_row .radio:not(:last-child) {
  margin: 0 10px 0 0;
}
@media (max-width: 991px) {
  .radio_flex .input_group_row .radio:not(:last-child) {
    margin: 0 0 10px 0;
  }
}
@media (max-width: 991px) {
  .radio_flex .input_group_row .radio {
    width: 100%;
  }
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

@media (max-width: 991px) {
  .input_group_row > .col-lg-6:not(:first-child) {
    margin-top: 26px;
  }
}

.page_banner {
  background-color: pink;
}
.page_banner img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .page_banner img {
    width: 120%;
  }
}
@media (max-width: 580px) {
  .page_banner img {
    width: 200%;
  }
}

.page_banner img {
  -webkit-transition: -webkit-transform 4s ease;
  transition: -webkit-transform 4s ease;
  transition: transform 4s ease;
  transition: transform 4s ease, -webkit-transform 4s ease;
}
.menu_toggler {
  display: inline-block;
  width: 43px;
  height: 41px;
  border-radius: 0;
  padding: 0;
  position: relative;
  background-color: #33A340;
  background-image: url("../images/btn-bg-sm.svg");
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 20px;
}
.menu_toggler:focus {
  outline: 0;
  border-color: #fff;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(51, 163, 64, 0.3);
          box-shadow: 0px 0px 0px 4px rgba(51, 163, 64, 0.3);
}
.menu_toggler:hover {
  cursor: pointer;
}
.menu_toggler:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 7px;
  font-size: 0.7rem;
}
.menu_toggler span {
  display: block;
  height: 2px;
  width: 60%;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.menu_toggler span:nth-child(1) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.menu_toggler span:nth-child(3) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.menu_toggler.active span:nth-child(1) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  top: 0px;
  left: -6px;
}
.menu_toggler.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu_toggler.active span:nth-child(3) {
  -webkit-transform: translateY(8px) scale(0);
          transform: translateY(8px) scale(0);
}