@charset "UTF-8";
/**
 * Main SCSS
 *
 * @project : Boilerplate
 * @author  : Dogstudio
 */
/**
 * Kennel 0.0.1
 *
 * @project : Kennel - Dogstudio Style Sheets
 * @author  : Dogstudio
 */
/**
 * Default colors palette
 *
 * @type Map
 */
/**
 * Default z-layers map
 *
 * @type Map
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
main, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/**
 * Set up a decent box model on the root element
 */
html {
  height: 100%;
  box-sizing: border-box; }

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*, *::before, *::after {
  box-sizing: inherit; }

body {
  height: 100%;
  width: 100%;
  background-color: white; }
  body .prevent-mobile-overflow {
    height: auto;
    width: 100%;
    overflow: hidden; }
  body.mobile-nav-is-open .prevent-mobile-overflow, body.login-is-open .prevent-mobile-overflow {
    height: 100vh;
    width: 100vw;
    overflow: hidden; }

b,
strong {
  font-weight: 700; }

i {
  font-style: italic;
  font-weight: 600; }

.site-container {
  height: auto;
  width: 100%;
  overflow: hidden; }
  @media (max-width: 64.99em) {
    .site-container {
      padding-top: 100px; } }
  @media (max-width: 46.24em) {
    .site-container {
      padding-top: 65px; } }

[background="white"] {
  background: white; }

[section-type] {
  background: white; }

[background="brand-color"] {
  background: #4e8c43 !important; }

.section-header {
  margin-bottom: 3rem; }
  .section-header .section-title {
    font-size: 2.1875rem;
    line-height: 2.625rem;
    font-weight: 600;
    color: #4e8c43;
    position: relative; }
    @media (min-width: 46.25em) {
      .section-header .section-title:before {
        content: '';
        position: absolute;
        top: 50%;
        left: -70px;
        height: 1px;
        width: 50px;
        transform: translateY(-50%);
        background: #f17d00; } }
    @media (max-width: 46.24em) {
      .section-header .section-title {
        font-size: 1.625rem; } }
  .section-header p {
    font-size: 1rem;
    line-height: 1.875rem;
    color: #91929a; }
  .section-header .button-basic {
    float: right;
    position: relative;
    top: -6px; }
    @media (max-width: 46.24em) {
      .section-header .button-basic {
        float: none;
        display: block;
        margin-top: 2rem; } }
  .section-header.section-header-centered .section-title:before {
    display: none; }
  .section-header.section-header-centered .section-title, .section-header.section-header-centered p {
    text-align: center; }

.video-container {
  position: relative; }

.section-top-bar::after {
  clear: both;
  content: '';
  display: table; }

.select-container {
  display: inline-block;
  width: auto;
  position: relative; }
  .select-container select {
    width: 100%;
    margin-bottom: 0;
    height: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent; }
  .select-container .svg {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    fill: #f17d00;
    pointer-events: none; }

.controls {
  height: 30px;
  width: auto;
  margin-bottom: 18px; }
  .controls .swiper-button {
    position: relative;
    display: inline-block;
    height: 25px;
    width: 25px;
    background: transparent; }
    .controls .swiper-button:focus {
      outline: 0; }
    .controls .swiper-button:first-child {
      margin-left: 0; }
    .controls .swiper-button .svg {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      height: 25px;
      width: 25px; }
      .controls .swiper-button .svg svg {
        fill: #f17d00; }
  .controls .swiper-button-disabled {
    cursor: default; }
    .controls .swiper-button-disabled .svg svg {
      opacity: 0.35; }

[overlap="brand-color"]:before {
  position: absolute;
  top: -3rem;
  height: 3rem;
  width: 100%;
  background: #4e8c43;
  content: '';
  z-index: 0; }

[overlap="white"] {
  position: relative; }
  [overlap="white"]:before {
    position: absolute;
    top: -3rem;
    height: 3rem;
    width: 100%;
    background: white;
    content: '';
    z-index: 0; }

picture.learn-more {
  position: relative; }
  picture.learn-more .more-info {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 25px;
    width: 25px;
    background: white;
    border-radius: 100%; }
    picture.learn-more .more-info .icon-more-info .svg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      fill: #f17d00; }
    picture.learn-more .more-info:hover .tooltip-container {
      display: block; }
    picture.learn-more .more-info .tooltip-container {
      display: none;
      position: absolute;
      bottom: calc(100% + 15px);
      left: 50%;
      transform: translateX(-50%);
      height: auto;
      width: 300px;
      height: auto;
      width: 270px;
      background: #f2f7fa;
      border: 1px solid #91929a;
      padding: 0.4rem 2rem 0.8rem 1.5rem;
      cursor: default;
      pointer-events: hover; }
      picture.learn-more .more-info .tooltip-container .tooltip-element {
        margin-bottom: 0.3rem; }
        picture.learn-more .more-info .tooltip-container .tooltip-element .tooltip-element-content {
          position: relative;
          padding-left: 1.2rem; }
          picture.learn-more .more-info .tooltip-container .tooltip-element .tooltip-element-content .svg {
            position: absolute;
            top: 2px;
            left: -8px;
            fill: #f17d00; }
          picture.learn-more .more-info .tooltip-container .tooltip-element .tooltip-element-content .tooltip-element-title {
            font-size: 0.6875rem;
            color: #91929a;
            text-transform: uppercase;
            letter-spacing: 0.25em; }
          picture.learn-more .more-info .tooltip-container .tooltip-element .tooltip-element-content p {
            font-size: 0.8125rem;
            line-height: 0.9375rem;
            color: #91929a; }
      picture.learn-more .more-info .tooltip-container:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        height: 0;
        width: 0;
        border-style: solid;
        border-width: 15px 9px 0 9px;
        border-color: #f2f7fa transparent transparent transparent; }
    @media (max-width: 61.24em) {
      picture.learn-more .more-info {
        display: none; } }

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  /* 1 */
  font-size: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  color: #4d4d4d; }

a {
  cursor: pointer;
  color: #f17d00;
  text-decoration: none;
  transition: color 0.1s, background-color 0.1s; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold; }

.typeset p {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 1.35999rem;
  padding-top: 0.64001rem;
  font-size: 1rem;
  line-height: 1.875rem;
  color: #91929a;
  font-weight: normal; }

.typeset h1 {
  font-size: 2.1875rem;
  line-height: 2rem;
  margin-bottom: 0.78749rem;
  padding-top: 0.21251rem;
  font-size: 2.1875rem;
  line-height: 2.5rem;
  color: #4e8c43;
  font-weight: 600; }

.typeset h2 {
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 0.49499rem;
  padding-top: 0.50501rem;
  font-size: 1.375rem;
  line-height: 2.5rem;
  color: #4e8c43;
  font-weight: normal; }

.typeset h3 {
  font-size: 1.125rem;
  line-height: 2rem;
  margin-bottom: 1.40499rem;
  padding-top: 0.59501rem;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #4e8c43;
  font-weight: 600; }

.typeset h4 {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 1.35999rem;
  padding-top: 0.64001rem;
  font-size: 1rem;
  line-height: 1.875rem;
  color: rgba(78, 140, 67, 0.5); }

.typeset h5 {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 1.35999rem;
  padding-top: 0.64001rem; }

.typeset h6 {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 1.35999rem;
  padding-top: 0.64001rem; }

.typeset b,
.typeset strong {
  font-weight: 700; }

.typeset small,
.typeset .caption {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.7501875469rem;
  color: #4e8c43;
  font-weight: 600; }

.typeset small {
  line-height: 1rem; }

.typeset .caption {
  font-size: 0.9848673721rem;
  line-height: 2rem;
  margin-bottom: 1.354542254rem;
  padding-top: 0.645457746rem;
  color: #dce8d9; }

.typeset h1 + .caption,
.typeset h2 + .caption,
.typeset h3 + .caption {
  margin-top: -1rem; }

.typeset h4 + .caption,
.typeset h5 + .caption,
.typeset h6 + .caption {
  margin-top: 0; }

.typeset ul,
.typeset ol {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 1.35999rem;
  padding-top: 0.64001rem; }
  .typeset ul li,
  .typeset ol li {
    margin-left: 1.25rem; }

.typeset ul li {
  list-style: disc;
  color: #91929a; }

.typeset ol li {
  list-style: decimal;
  color: #91929a; }

.typeset img {
  width: 100%;
  height: auto; }

.typeset blockquote {
  border-left: 0.125rem solid #4e8c43;
  padding-left: 1rem; }
  .typeset blockquote p {
    font-style: italic;
    color: #91929a;
    font-weight: 600; }
    .typeset blockquote p + cite {
      font-size: 0.875rem;
      font-weight: normal;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      margin-top: -3rem;
      color: #91929a; }
  .typeset blockquote cite {
    font-size: 1rem;
    line-height: 2rem;
    margin-bottom: 1.35999rem;
    padding-top: 0.64001rem;
    display: block;
    text-transform: uppercase; }

hr {
  height: 1px;
  width: 100%;
  background: rgba(145, 146, 154, 0.3);
  border: 0;
  margin: 0;
  margin-bottom: 2rem;
  margin-top: 2rem; }

code,
pre {
  background: #f5f4f2;
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 1.35999rem;
  padding-top: 0.64001rem; }

pre {
  display: block;
  margin-bottom: 2rem;
  padding: 1rem;
  white-space: pre;
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word; }

code {
  line-height: 1rem;
  font-size: 0.9848673721rem; }
  code .comment {
    opacity: 0.5; }

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: solid 1px;
  margin: 0 0 20px; }

tr td,
tr th {
  padding: 8px;
  text-align: left;
  border: solid 1px; }

tr th {
  background: #f5f4f2;
  font-weight: 700; }

tr:nth-child(even) td {
  background: #f5f4f2; }

tbody tr td,
tbody tr th {
  background: white; }

tbody tr:nth-child(even) td,
tbody tr:nth-child(even) th {
  background: #f5f4f2; }

[background="dark"] h3, [background="dark"] h4, [background="dark"] a, [background="dark"] b {
  color: white; }

[background="dark"] p {
  color: #c5e9bf; }

.u-pull-left {
  float: left; }

.u-pull-right {
  float: right; }

.u-text-left {
  text-align: left; }

.u-text-right {
  text-align: right; }

.u-text-center {
  text-align: center; }

.u-text-justify {
  text-align: justify; }

.u-uppercase {
  text-transform: uppercase; }

.u-lowercase {
  text-transform: lowercase; }

.u-clearfix::after {
  clear: both;
  content: '';
  display: table; }

.u-inline {
  display: inline; }

.u-inline-block {
  display: inline-block; }

.u-block {
  display: block; }

.u-table {
  display: table; }

.u-cell {
  display: table-cell; }

.u-va-top {
  vertical-align: top; }

.u-va-middle {
  vertical-align: middle; }

.u-va-bottom {
  vertical-align: bottom; }

/*
 * Hide visually and from screen readers:
 */
.u-hidden {
  display: none; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.u-invisible {
  visibility: hidden; }

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.u-hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap; }

/*
 * Hide element only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.u-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .u-visually-hidden--focusable:active, .u-visually-hidden--focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

/**
 * Text hyphenation
 *
 * Break strings when their length exceeds the width of their container
 * and hyphenate words at the end of lines using the `hyphens` property.
 * Browser support for hyphenation: http://caniuse.com/#search=hyphenation
 */
.u-text-hyphenate {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  hyphens: auto; }

/**
 * Reset button styles
 */
.u-button-reset {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  background: transparent; }
  .u-button-reset:focus {
    outline: 0; }

/**
 * Prevent line breaks
 */
.u-nobr {
  white-space: nowrap; }

/*------------------------------------*    Grid
    \*------------------------------------*/
.container {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 1100px;
  width: 88%; }
  .container::after {
    clear: both;
    content: '';
    display: table; }
  @media (max-width: 61.24em) {
    .container {
      height: auto;
      width: 86%;
      max-width: auto; } }

header.site-header .navs-container {
  position: relative;
  padding-top: 45px; }

@media (max-width: 64.99em) {
  header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100vw;
    background: white;
    z-index: 20; }
    header.site-header .navs-container {
      position: fixed;
      left: 100%;
      height: 100%;
      width: 100%;
      padding-top: 0;
      overflow-y: scroll;
      transition: all 0.25s; } }

header.site-header .sticky-mobile-nav-trigger-container {
  padding-top: 15px;
  padding-bottom: 15px; }
  @media (max-width: 46.24em) {
    header.site-header .sticky-mobile-nav-trigger-container {
      padding-top: 10px;
      padding-bottom: 10px; } }
  header.site-header .sticky-mobile-nav-trigger-container .logo__container {
    height: 70px;
    width: auto;
    display: block;
    float: left; }
    header.site-header .sticky-mobile-nav-trigger-container .logo__container img {
      height: 100%;
      width: auto; }
    @media (max-width: 46.24em) {
      header.site-header .sticky-mobile-nav-trigger-container .logo__container {
        height: 45px; } }
  header.site-header .sticky-mobile-nav-trigger-container .open-mobile-nav {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: transparent; }
    header.site-header .sticky-mobile-nav-trigger-container .open-mobile-nav .svg {
      fill: #4e8c43; }
    header.site-header .sticky-mobile-nav-trigger-container .open-mobile-nav .open {
      display: inline-block; }
      header.site-header .sticky-mobile-nav-trigger-container .open-mobile-nav .open:hover .svg {
        fill: #f17d00;
        transition: all 0.25s; }
    header.site-header .sticky-mobile-nav-trigger-container .open-mobile-nav .close {
      display: none; }
      header.site-header .sticky-mobile-nav-trigger-container .open-mobile-nav .close .svg {
        transform: rotate(45deg);
        display: inline-block; }
      header.site-header .sticky-mobile-nav-trigger-container .open-mobile-nav .close:hover .svg {
        fill: #f17d00;
        transition: all 0.25s; }
  @media (min-width: 65em) {
    header.site-header .sticky-mobile-nav-trigger-container {
      display: none; } }

header.site-header .upper__header {
  position: absolute;
  top: 0;
  left: 0;
  height: 45px;
  width: 100%;
  background: #f2f7fa;
  font-weight: bold;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em; }
  @media (min-width: 65em) {
    header.site-header .upper__header:before, header.site-header .upper__header:after {
      position: absolute;
      top: 0;
      right: 100%;
      height: 100%;
      width: 100vh;
      content: '';
      background: #f2f7fa; }
    header.site-header .upper__header:after {
      position: absolute;
      top: 0;
      right: auto;
      left: 100%; } }
  @media (max-width: 64.99em) {
    header.site-header .upper__header {
      position: relative;
      top: auto;
      left: auto;
      background: none; } }
  header.site-header .upper__header .upper--left {
    display: inline-block; }
    @media (max-width: 64.99em) {
      header.site-header .upper__header .upper--left {
        width: 100%;
        display: block; } }
    header.site-header .upper__header .upper--left li {
      position: relative;
      display: inline-block;
      margin-right: 16px;
      margin-left: 16px; }
      @media (max-width: 64.99em) {
        header.site-header .upper__header .upper--left li {
          margin-right: 0;
          margin-left: 0;
          text-align: center;
          display: block; } }
      header.site-header .upper__header .upper--left li:first-child {
        margin-left: 0; }
      header.site-header .upper__header .upper--left li:last-child {
        margin-right: 0; }
      header.site-header .upper__header .upper--left li a {
        color: #91929a;
        padding-top: 6px;
        padding-bottom: 6px;
        display: inline-block;
        text-decoration: none; }
        header.site-header .upper__header .upper--left li a:hover {
          color: #142326; }
          @media (max-width: 64.99em) {
            header.site-header .upper__header .upper--left li a:hover {
              color: #f17d00; } }
      header.site-header .upper__header .upper--left li.active:before {
        position: absolute;
        bottom: 0px;
        height: 3px;
        width: 100%;
        content: '';
        background: #91929a; }
        @media (max-width: 64.99em) {
          header.site-header .upper__header .upper--left li.active:before {
            position: absolute;
            bottom: 3px;
            left: 50%;
            height: 3px;
            width: 20px;
            content: '';
            background: #91929a;
            transform: translateX(-50%); } }
  header.site-header .upper__header .upper--right {
    float: right; }
    @media (max-width: 64.99em) {
      header.site-header .upper__header .upper--right {
        padding-bottom: 8rem;
        float: none;
        margin-top: 2.5rem;
        margin-bottom: 2.5rem; } }
  header.site-header .upper__header .register, header.site-header .upper__header .languages-container {
    display: inline-block; }
  header.site-header .upper__header .languages-container {
    position: relative; }
    @media (max-width: 64.99em) {
      header.site-header .upper__header .languages-container {
        display: block;
        margin-bottom: 1rem; } }
    @media (max-width: 64.99em) {
      header.site-header .upper__header .languages-container .language-button-container {
        text-align: center; } }
    header.site-header .upper__header .languages-container .language-button-container .language-button {
      height: 45px;
      width: auto;
      background: transparent;
      border: none;
      font-weight: bold;
      letter-spacing: 0.25em;
      font-size: 0.6875rem;
      text-transform: uppercase;
      color: #91929a;
      border-left: 1px solid white;
      appearance: none;
      position: relative;
      cursor: pointer;
      padding: 12px 28px 12px 20px; }
      @media (max-width: 64.99em) {
        header.site-header .upper__header .languages-container .language-button-container .language-button {
          border: none;
          background: white;
          color: #4e8c43;
          border-radius: 0;
          padding: 14px 35px 15px 20px;
          margin-top: 0; } }
      header.site-header .upper__header .languages-container .language-button-container .language-button .svg {
        top: 3px; }
      header.site-header .upper__header .languages-container .language-button-container .language-button:focus {
        outline: 0; }
      header.site-header .upper__header .languages-container .language-button-container .language-button:hover {
        color: #142326; }
    header.site-header .upper__header .languages-container .language-button-container .svg {
      top: calc(50% + 2px); }
  header.site-header .upper__header .member-zone-container {
    height: 100%;
    width: auto;
    float: right;
    position: relative;
    font-size: 0.6875rem; }
    @media (max-width: 64.99em) {
      header.site-header .upper__header .member-zone-container {
        float: none; } }
    header.site-header .upper__header .member-zone-container .member-zone {
      height: 100%;
      width: auto;
      background: #43aed1;
      color: white;
      display: block;
      border-radius: 0;
      text-decoration: none;
      padding: 0 32px 0 24px;
      height: 45px; }
      header.site-header .upper__header .member-zone-container .member-zone i {
        text-transform: lowercase;
        font-style: italic; }
      header.site-header .upper__header .member-zone-container .member-zone .member-zone-content {
        font-size: 0.6875rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        position: relative; }
        header.site-header .upper__header .member-zone-container .member-zone .member-zone-content .icon-chevron {
          position: absolute;
          top: 50%;
          right: -14px;
          height: 12px;
          width: 9px;
          transform: translateY(-50%);
          fill: white; }
      header.site-header .upper__header .member-zone-container .member-zone:hover {
        color: #385769; }
        header.site-header .upper__header .member-zone-container .member-zone:hover .icon-chevron {
          fill: #385769; }
        @media (max-width: 64.99em) {
          header.site-header .upper__header .member-zone-container .member-zone:hover {
            color: #f17d00; } }
      @media (max-width: 64.99em) {
        header.site-header .upper__header .member-zone-container .member-zone {
          background: transparent;
          width: 100%;
          padding-right: 24px; }
          header.site-header .upper__header .member-zone-container .member-zone .svg {
            display: none; } }
    header.site-header .upper__header .member-zone-container .member-nav {
      position: absolute;
      top: 100%;
      left: 0;
      height: auto;
      width: 100%;
      display: none;
      background: #43aed1;
      z-index: 2; }
      header.site-header .upper__header .member-zone-container .member-nav li {
        text-align: center; }
        header.site-header .upper__header .member-zone-container .member-nav li a {
          text-decoration: none;
          padding-top: 6px;
          padding-bottom: 6px;
          width: 100%;
          display: block;
          color: white; }
        header.site-header .upper__header .member-zone-container .member-nav li:hover a {
          color: #385769; }
          @media (max-width: 64.99em) {
            header.site-header .upper__header .member-zone-container .member-nav li:hover a {
              color: #f17d00; } }
      @media (max-width: 64.99em) {
        header.site-header .upper__header .member-zone-container .member-nav {
          position: relative;
          top: auto;
          left: auto;
          display: block;
          background: transparent; } }
    header.site-header .upper__header .member-zone-container:hover .member-nav {
      display: block; }

header.site-header .lower__header {
  padding-top: 20px;
  padding-bottom: 8px; }
  header.site-header .lower__header .logo__container img {
    width: 275px; }
  @media (max-width: 64.99em) {
    header.site-header .lower__header .logo__container {
      display: none; } }
  header.site-header .lower__header .main__nav {
    position: absolute;
    top: calc(50% + 22px);
    right: 0;
    transform: translateY(-50%);
    font-size: 1.1875rem;
    font-weight: 600; }
    @media (max-width: 64.99em) {
      header.site-header .lower__header .main__nav {
        position: relative;
        width: 100%;
        transform: none;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem; }
        header.site-header .lower__header .main__nav ul {
          margin-top: 1.5rem; } }
    header.site-header .lower__header .main__nav li {
      display: inline-block; }
      @media (max-width: 64.99em) {
        header.site-header .lower__header .main__nav li {
          display: block;
          width: 100%;
          text-align: center;
          padding-right: 1rem;
          padding-left: 1rem; } }
      header.site-header .lower__header .main__nav li a {
        color: rgba(20, 35, 38, 0.7);
        position: relative;
        text-decoration: none;
        padding: 6px 16px; }
        header.site-header .lower__header .main__nav li a:hover {
          color: #142326; }
        @media (max-width: 64.99em) {
          header.site-header .lower__header .main__nav li a {
            color: white;
            font-size: 1.5rem;
            line-height: 3rem; }
            header.site-header .lower__header .main__nav li a:hover {
              color: #f17d00; } }
        @media (max-width: 64.99em) {
          header.site-header .lower__header .main__nav li a {
            font-size: 1.25rem;
            line-height: 2.6rem; } }
    header.site-header .lower__header .main__nav li.nav-active a {
      color: #142326; }
    header.site-header .lower__header .main__nav .search {
      padding-left: 30px;
      margin-left: 15px;
      border-left: 1px solid rgba(145, 146, 154, 0.4);
      top: 5px;
      overflow: visible; }
      @media (max-width: 64.99em) {
        header.site-header .lower__header .main__nav .search {
          position: absolute;
          top: 0;
          left: 0;
          margin-left: 0; } }
      header.site-header .lower__header .main__nav .search .close-search {
        position: absolute;
        top: -2px;
        right: -2px;
        height: 42px;
        width: 42px;
        background: transparent;
        display: block; }
        header.site-header .lower__header .main__nav .search .close-search .svg {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%) rotate(45deg);
          fill: #4e8c43;
          transition: all 0.25s; }
        header.site-header .lower__header .main__nav .search .close-search:hover .svg {
          fill: #f17d00;
          transition: all 0.25s; }
      @media (min-width: 65em) {
        header.site-header .lower__header .main__nav .search .search-input {
          position: absolute;
          top: -4px;
          right: 50px;
          height: calc(100% + 10px);
          width: calc(100% - 50px);
          display: none; } }
      header.site-header .lower__header .main__nav .search .open-search {
        height: 32px;
        width: 32px;
        padding: 0;
        position: relative;
        top: 2px;
        background: white;
        overflow: visible; }
        header.site-header .lower__header .main__nav .search .open-search svg {
          fill: #f17d00;
          transition: all 0.25s; }
        @media (max-width: 64.99em) {
          header.site-header .lower__header .main__nav .search .open-search {
            position: absolute;
            top: 0;
            right: 0;
            height: 50px;
            width: 50px; } }
        @media (max-width: 64.99em) {
          header.site-header .lower__header .main__nav .search .open-search .icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            height: 30px;
            width: 30px; }
            header.site-header .lower__header .main__nav .search .open-search .icon svg {
              fill: #f17d00;
              transition: all 0.25s; } }
        header.site-header .lower__header .main__nav .search .open-search:hover .icon svg {
          fill: #4e8c43;
          transition: all 0.25s; }
    @media (max-width: 64.99em) {
      header.site-header .lower__header .main__nav {
        padding-top: 65px;
        padding-bottom: 8px; }
        header.site-header .lower__header .main__nav .search {
          position: absolute;
          top: 0;
          right: auto;
          left: 50%;
          height: 50px;
          width: 60%;
          padding-left: 0;
          transform: translateX(-50%);
          border-left: 0; }
          header.site-header .lower__header .main__nav .search .search-input {
            position: absolute;
            top: 0;
            left: 0;
            height: 50px;
            width: 100%;
            display: block; }
          header.site-header .lower__header .main__nav .search .icon {
            position: absolute;
            top: 50%;
            left: 0;
            transform: none; } }
    @media (max-width: 46.24em) {
      header.site-header .lower__header .main__nav .search {
        width: 80%; } }

body.search-is-open .open-search {
  position: absolute !important;
  right: 65px;
  top: 0px; }

body.search-is-open .close-search, body.search-is-open .search-input {
  display: block !important; }

body.search-is-open .search-input {
  height: 50px; }

body.mobile-nav-is-open .navs-container {
  z-index: 20;
  background: #4e8c43;
  left: 0;
  transition: all 0.25s; }

body.mobile-nav-is-open .open-mobile-nav .open {
  display: none !important; }

body.mobile-nav-is-open .open-mobile-nav .close {
  display: inline-block !important; }

footer.site-footer {
  position: relative;
  height: auto;
  width: 100%;
  background: #4e8c43; }
  footer.site-footer .site-footer-up {
    padding-top: 80px;
    padding-bottom: 80px; }
    footer.site-footer .site-footer-up .footer__column {
      float: left;
      width: 16.8%;
      margin-right: 2%;
      margin-left: 2%; }
      footer.site-footer .site-footer-up .footer__column:first-child {
        margin-left: 0; }
      footer.site-footer .site-footer-up .footer__column:last-child {
        margin-right: 0; }
      footer.site-footer .site-footer-up .footer__column:last-child img {
        margin-top: 10px;
        margin-bottom: 10px; }
      @media (min-width: 46.25em) and (max-width: 61.24em) {
        footer.site-footer .site-footer-up .footer__column:nth-child(-n+2) {
          width: 15%;
          margin: 0; }
        footer.site-footer .site-footer-up .footer__column:nth-child(1) {
          margin-left: 30%;
          margin-right: 10%; }
        footer.site-footer .site-footer-up .footer__column:nth-child(2) {
          margin-right: 30%; }
        footer.site-footer .site-footer-up .footer__column:nth-child(n+3) {
          width: 24%;
          margin: 4rem 0 0; }
        footer.site-footer .site-footer-up .footer__column:nth-child(3) {
          margin-left: 10%; }
        footer.site-footer .site-footer-up .footer__column:nth-child(4) {
          margin-right: 4%;
          margin-left: 4%; }
        footer.site-footer .site-footer-up .footer__column:nth-child(5) {
          margin-right: 10%; } }
      @media (max-width: 46.24em) {
        footer.site-footer .site-footer-up .footer__column {
          width: 50%;
          margin: 0 auto;
          display: block; }
          footer.site-footer .site-footer-up .footer__column:nth-child(1) {
            float: left; }
          footer.site-footer .site-footer-up .footer__column:nth-child(2) {
            float: right;
            text-align: right; }
          footer.site-footer .site-footer-up .footer__column:nth-child(n+3) {
            width: 75%;
            margin: 2rem auto 0;
            padding-top: 0;
            padding-bottom: 0;
            float: none; }
          footer.site-footer .site-footer-up .footer__column:nth-child(3) {
            padding-top: 9rem;
            padding-bottom: 0; } }
      footer.site-footer .site-footer-up .footer__column h3 a {
        font-size: 1.125rem;
        line-height: 35px;
        text-decoration: none; }
        footer.site-footer .site-footer-up .footer__column h3 a:hover {
          color: #f17d00; }
      footer.site-footer .site-footer-up .footer__column h4 {
        font-size: 0.9375rem;
        line-height: 34px;
        margin-bottom: 6px; }
      footer.site-footer .site-footer-up .footer__column p {
        font-size: 0.8125rem;
        line-height: 24px; }
      footer.site-footer .site-footer-up .footer__column .icon-social-container {
        position: relative;
        font-size: 0.6875rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: #c5e9bf;
        text-decoration: none;
        padding-left: 1.5rem; }
        footer.site-footer .site-footer-up .footer__column .icon-social-container:hover {
          color: #f17d00; }
          footer.site-footer .site-footer-up .footer__column .icon-social-container:hover .icon svg {
            fill: #f17d00; }
        footer.site-footer .site-footer-up .footer__column .icon-social-container .icon svg {
          position: absolute;
          top: 0px;
          left: 0;
          fill: #c5e9bf; }
  footer.site-footer hr {
    padding-top: 0;
    padding-bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    border: none; }
  footer.site-footer .site-footer-low {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px; }
    footer.site-footer .site-footer-low .disclaimer-list {
      position: absolute;
      top: 50%;
      float: left;
      transform: translateY(-50%); }
      footer.site-footer .site-footer-low .disclaimer-list li {
        position: relative;
        display: inline;
        padding-right: 1rem; }
        footer.site-footer .site-footer-low .disclaimer-list li:not(:last-child):after {
          height: 1px;
          width: 8px;
          position: absolute;
          top: 60%;
          right: 2px;
          content: '';
          background: rgba(255, 255, 255, 0.12);
          transform: translateY(-50%); }
        footer.site-footer .site-footer-low .disclaimer-list li a {
          font-size: 0.6875rem; }
      @media (max-width: 46.24em) {
        footer.site-footer .site-footer-low .disclaimer-list {
          float: none;
          position: relative;
          top: auto; } }
    footer.site-footer .site-footer-low .logo-container {
      float: right; }
      footer.site-footer .site-footer-low .logo-container img {
        height: 40px;
        margin-right: 100px; }
        footer.site-footer .site-footer-low .logo-container img:last-child {
          margin-right: 0; }
      @media (max-width: 46.24em) {
        footer.site-footer .site-footer-low .logo-container {
          float: none; } }

/*------------------------------------*    BUTTONS
    \*------------------------------------*/
input[type="submit"] {
  -webkit-appearance: none; }

select::-ms-expand {
  display: none; }

button,
.button {
  display: inline-block;
  padding: 12px;
  color: white;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  border: 2px solid transparent;
  box-sizing: border-box;
  border-radius: 3px; }
  button:hover,
  .button:hover {
    text-decoration: none;
    background: #0000cc;
    color: white; }
  button--disable,
  .button--disable {
    pointer-events: none; }
    button--disable:hover,
    .button--disable:hover {
      cursor: default; }
  button--outline,
  .button--outline {
    border-color: blue;
    background: none;
    color: blue; }
    button--outline:hover,
    .button--outline:hover {
      background: blue; }
    button--outline.button--disable,
    .button--outline.button--disable {
      background: none; }
  button--transparent,
  .button--transparent {
    background: none;
    color: blue; }
    button--transparent:hover,
    .button--transparent:hover {
      color: blue;
      background: #e6e6ff; }
    button--transparent.button--disable,
    .button--transparent.button--disable {
      background: none; }
  button--expand,
  .button--expand {
    display: block; }
  button--big,
  .button--big {
    padding: 15px 20px; }
  button--small,
  .button--small {
    padding: 6px; }

.button-basic {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #f17d00;
  font-weight: 600;
  position: relative;
  padding: 1rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  transition: all 0.25s; }
  .button-basic .svg {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    fill: #f17d00;
    transition: all 0.25s; }
  .button-basic:hover {
    border: 1px solid rgba(241, 125, 0, 0.12);
    color: #f17d00; }
  .button-basic-chevron-right {
    padding-right: 3rem; }
    .button-basic-chevron-right .svg {
      position: absolute;
      right: 20px;
      transition: all 0.25s; }
    .button-basic-chevron-right:hover .svg {
      position: absolute;
      right: 10px;
      transition: all 0.25s; }
  .button-basic-chevron-left {
    padding-left: 3rem; }
    .button-basic-chevron-left .svg {
      position: absolute;
      left: 20px;
      transition: all 0.25s; }
    .button-basic-chevron-left:hover .svg {
      position: absolute;
      left: 10px;
      transition: all 0.25s; }

.button-naked {
  color: white;
  font-weight: 600;
  font-size: 0.9375rem; }
  .button-naked .icon {
    transition: all 0.25s;
    margin-right: 7px;
    fill: #fff; }
  .button-naked:hover .icon {
    margin-right: 17px;
    transition: all 0.25s; }

.button-full {
  margin-top: 2.4rem;
  background: #f17d00;
  border-radius: 3px;
  color: white;
  font-size: 1.0625rem;
  padding: 0.8rem 1rem;
  display: block;
  width: 100%; }
  .button-full span {
    position: relative; }
    .button-full span .svg {
      position: absolute;
      top: -1px;
      right: -36px;
      fill: white;
      transition: all 0.25s; }
  .button-full:hover {
    background: #f17d00; }
    .button-full:hover .svg {
      right: -46px;
      transition: all 0.25s; }
  .button-full.no-icon {
    border: 1px solid #f17d00;
    transition: all 0.25s ease-in-out; }
    .button-full.no-icon:hover {
      background: transparent;
      color: #f17d00;
      transition: all 0.25s ease-in-out; }

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none; }

input[type="text"], input[type="password"], input[type="email"], select {
  width: 100%;
  height: 50px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1.0625rem;
  color: #4e8c43;
  padding-left: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  -webkit-appearance: none; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus {
    border: 1px solid rgba(241, 125, 0, 0.12);
    transition: border 0.25s;
    color: #f17d00; }
    input[type="text"]:focus::-webkit-input-placeholder, input[type="password"]:focus::-webkit-input-placeholder, input[type="email"]:focus::-webkit-input-placeholder, select:focus::-webkit-input-placeholder {
      color: #f17d00; }
    input[type="text"]:focus:-moz-placeholder, input[type="password"]:focus:-moz-placeholder, input[type="email"]:focus:-moz-placeholder, select:focus:-moz-placeholder {
      color: #f17d00; }
    input[type="text"]:focus::-moz-placeholder, input[type="password"]:focus::-moz-placeholder, input[type="email"]:focus::-moz-placeholder, select:focus::-moz-placeholder {
      color: #f17d00; }
    input[type="text"]:focus:-ms-input-placeholder, input[type="password"]:focus:-ms-input-placeholder, input[type="email"]:focus:-ms-input-placeholder, select:focus:-ms-input-placeholder {
      color: #f17d00; }
  input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, select::-webkit-input-placeholder {
    color: #4e8c43; }
  input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="email"]:-moz-placeholder, select:-moz-placeholder {
    color: #4e8c43; }
  input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="email"]::-moz-placeholder, select::-moz-placeholder {
    color: #4e8c43; }
  input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, select:-ms-input-placeholder {
    color: #4e8c43; }

textarea {
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1.0625rem;
  color: #4e8c43;
  padding-left: 1.2rem; }
  textarea:focus {
    border: 1px solid rgba(241, 125, 0, 0.12);
    transition: border 0.25s;
    color: #f17d00; }
    textarea:focus::-webkit-input-placeholder {
      color: #f17d00; }
    textarea:focus:-moz-placeholder {
      color: #f17d00; }
    textarea:focus::-moz-placeholder {
      color: #f17d00; }
    textarea:focus:-ms-input-placeholder {
      color: #f17d00; }

.section-cta {
  color: #f17d00;
  font-size: 1rem;
  margin-top: 4rem;
  display: inline-block; }
  .section-cta .svg {
    fill: #f17d00;
    position: relative;
    top: 4px;
    margin-left: 7px;
    transition: all 0.25s; }
  .section-cta:hover .svg {
    margin-left: 17px;
    transition: all 0.25s; }

[pagination="button"], .submit-button {
  width: 220px;
  margin-top: 4rem;
  margin-right: auto;
  margin-left: auto; }

.play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  height: 75px;
  width: 75px;
  border-radius: 100%;
  pointer-events: none; }
  .play-video svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #f17d00; }

[section-type="content-bar"] {
  padding-top: 8rem; }
  [section-type="content-bar"] .content-intro {
    width: calc(25% - 35px);
    margin-right: 35px;
    float: left; }
    [section-type="content-bar"] .content-intro h1 {
      font-size: 2.1875rem;
      line-height: 2.5rem;
      color: #4e8c43;
      font-weight: 600;
      position: relative;
      margin-bottom: 24px; }
      @media (min-width: 61.25em) {
        [section-type="content-bar"] .content-intro h1:before {
          content: '';
          position: absolute;
          top: 20px;
          left: -70px;
          height: 1px;
          width: 50px;
          background: #f17d00; } }
    [section-type="content-bar"] .content-intro p {
      font-size: 1rem;
      line-height: 1.875rem;
      color: #91929a;
      font-weight: normal;
      margin-bottom: 14px; }
    @media (max-width: 61.24em) {
      [section-type="content-bar"] .content-intro {
        width: calc(50% - 35px); } }
    @media (max-width: 46.24em) {
      [section-type="content-bar"] .content-intro {
        width: 100%;
        float: none;
        margin-right: 0; } }
    @media (min-width: 46.25em) {
      [section-type="content-bar"] .content-intro .controls {
        position: absolute;
        top: 50%;
        left: calc(25% - 35px);
        height: auto;
        width: calc(75% + 70px);
        transform: translateY(-50%); }
        [section-type="content-bar"] .content-intro .controls .swiper-button-next {
          float: right; } }
    @media (max-width: 61.24em) {
      [section-type="content-bar"] .content-intro .controls {
        width: calc(50% + 70px);
        left: calc(50% - 35px); } }
    @media (max-width: 46.24em) {
      [section-type="content-bar"] .content-intro .controls {
        width: 100%; } }
  [section-type="content-bar"] .content-right {
    width: 75%;
    float: right; }
    @media (max-width: 61.24em) {
      [section-type="content-bar"] .content-right {
        width: 50%; } }
    @media (max-width: 46.24em) {
      [section-type="content-bar"] .content-right {
        width: 100%;
        float: none; } }

@media (max-width: 61.24em) {
  [section-type="stats"] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem; } }

[section-type="stats"] .stats-basics picture svg {
  fill: #c5e9bf; }

[section-type="stats"] .stats-basics h1 {
  font-weight: 200;
  font-size: 2.8125rem;
  color: white; }

[section-type="stats"] .stats-basics span {
  font-weight: 700;
  font-size: 0.75rem;
  color: #c5e9bf;
  text-transform: uppercase;
  letter-spacing: 0.25em; }

[section-type="stats"] .stats-container {
  margin-top: 2rem;
  margin-bottom: 2rem; }
  [section-type="stats"] .stats-container .stats-element {
    width: calc(100% / 3 - 1px);
    float: left; }
    [section-type="stats"] .stats-container .stats-element:nth-child(2) {
      border-left: 1px dashed rgba(242, 247, 250, 0.1);
      border-right: 1px dashed rgba(242, 247, 250, 0.1); }
    [section-type="stats"] .stats-container .stats-element picture {
      display: block;
      text-align: center;
      margin-bottom: 0.8rem; }
      [section-type="stats"] .stats-container .stats-element picture svg {
        fill: #c5e9bf; }
    [section-type="stats"] .stats-container .stats-element h1 {
      text-align: center;
      margin-bottom: 0.8rem; }
    [section-type="stats"] .stats-container .stats-element span {
      display: block;
      text-align: center; }
    @media (max-width: 46.24em) {
      [section-type="stats"] .stats-container .stats-element {
        height: auto;
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding-top: 1rem;
        padding-bottom: 1rem; }
        [section-type="stats"] .stats-container .stats-element:nth-child(2) {
          border-right: 0;
          border-left: 0;
          position: relative; }
          [section-type="stats"] .stats-container .stats-element:nth-child(2):before, [section-type="stats"] .stats-container .stats-element:nth-child(2):after {
            content: '';
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            height: 1px;
            width: 100px;
            background: rgba(242, 247, 250, 0.1); }
          [section-type="stats"] .stats-container .stats-element:nth-child(2):after {
            position: absolute;
            top: auto;
            bottom: -1rem;
            left: 50%; } }

[section-type="stats"] .map-header-stats-container .stats-element {
  position: relative;
  margin-bottom: 2.5rem; }
  @media (max-width: 46.24em) {
    [section-type="stats"] .map-header-stats-container .stats-element {
      text-align: center; } }
  [section-type="stats"] .map-header-stats-container .stats-element picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-bottom: 1px solid rgba(242, 247, 250, 0.1); }
    @media (max-width: 46.24em) {
      [section-type="stats"] .map-header-stats-container .stats-element picture {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block; } }
  [section-type="stats"] .map-header-stats-container .stats-element .stats-inner-content {
    padding-left: 4rem; }
    @media (max-width: 46.24em) {
      [section-type="stats"] .map-header-stats-container .stats-element .stats-inner-content {
        padding-left: 0; } }
    [section-type="stats"] .map-header-stats-container .stats-element .stats-inner-content .stats-element {
      display: block; }

/* MAP 2018 */
[section-type="js-map"] {
  position: relative;
  margin-top: 2rem;
  padding-bottom: 1.5rem;
  z-index: 1;
  background: none; }
  [section-type="js-map"]:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    content: '';
    background: white; }
  [section-type="js-map"] .legend {
    position: absolute;
    bottom: 10px;
    left: 10px; }
    @media (max-width: 46.24em) {
      [section-type="js-map"] .legend {
        bottom: auto;
        top: 100%; } }
    [section-type="js-map"] .legend-element {
      display: block;
      font-size: 0.8125rem;
      line-height: 1;
      color: #142326;
      position: relative;
      padding-left: 18px; }
      [section-type="js-map"] .legend-element::before {
        height: 10px;
        width: 10px;
        position: absolute;
        top: 1px;
        left: 0;
        content: ''; }
      [section-type="js-map"] .legend-element--green::before {
        background-color: #5da051; }
      [section-type="js-map"] .legend-element--orange::before {
        background-color: #f1910f; }
      [section-type="js-map"] .legend-element + .legend-element {
        margin-top: 10px; }
  [section-type="js-map"] .map-islands-wrapper {
    position: absolute;
    top: 12px;
    right: 12px;
    height: 90%;
    max-width: 270px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    align-content: flex-start;
    flex-direction: column;
    flex-flow: wrap;
    pointer-events: none; }
    @media (max-width: 61.24em) {
      [section-type="js-map"] .map-islands-wrapper {
        display: none; } }
    [section-type="js-map"] .map-islands-wrapper .island-parent {
      position: relative;
      width: 125px;
      height: 86px;
      display: flex;
      align-items: center;
      border: 1px solid #1c4054;
      padding-top: 16px;
      background-color: white;
      pointer-events: auto; }
      [section-type="js-map"] .map-islands-wrapper .island-parent + .island-parent {
        margin-top: 10px;
        margin-left: 10px; }
        @media (max-width: 64.99em) {
          [section-type="js-map"] .map-islands-wrapper .island-parent + .island-parent {
            margin-top: 5px;
            margin-left: 5px; } }
      [section-type="js-map"] .map-islands-wrapper .island-parent:nth-child(1), [section-type="js-map"] .map-islands-wrapper .island-parent:nth-child(2) {
        margin-top: 0; }
      [section-type="js-map"] .map-islands-wrapper .island-parent .country-etwinning {
        fill: #f8c887 !important; }
      [section-type="js-map"] .map-islands-wrapper .island-parent .country-etwinning-plus {
        fill: #aed0a8 !important; }
      [section-type="js-map"] .map-islands-wrapper .island-parent.is-visible .country-etwinning {
        fill: #f1910f !important; }
      [section-type="js-map"] .map-islands-wrapper .island-parent.is-visible .country-etwinning-plus {
        fill: #5da051 !important; }
      [section-type="js-map"] .map-islands-wrapper .island-parent::after {
        position: absolute;
        top: 5px;
        left: 10px;
        width: calc(100% - 20px);
        font-size: 0.8125rem;
        line-height: 1;
        color: #1c4054;
        content: attr(data-island-name); }
      [section-type="js-map"] .map-islands-wrapper .island-parent svg {
        width: 100%;
        height: 100%;
        text-align: center; }
  [section-type="js-map"] .js-map-container {
    position: relative;
    background: #f2f7fa;
    position: relative;
    background-color: #88b5d1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden; }
    [section-type="js-map"] .js-map-container:before {
      padding-top: 56.25%;
      display: block;
      content: ''; }
    @media (max-width: 46.24em) {
      [section-type="js-map"] .js-map-container {
        width: 100%; } }
    [section-type="js-map"] .js-map-container .container-map {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%);
      height: 100%;
      width: 100%; }
    [section-type="js-map"] .js-map-container #map {
      height: 100%;
      width: 100%;
      position: relative; }
      [section-type="js-map"] .js-map-container #map > svg {
        position: relative;
        left: -80% !important;
        top: -36% !important; }

[section-type="js-map-listing"] {
  padding-top: 80px;
  padding-bottom: 8rem;
  position: relative; }
  [section-type="js-map-listing"]:before {
    height: 6rem;
    width: 100%;
    top: -6rem;
    background: white;
    z-index: 0; }
  [section-type="js-map-listing"].buttons-list-container ul::after {
    clear: both;
    content: '';
    display: table; }
  [section-type="js-map-listing"].buttons-list-container ul .country-element {
    width: calc(92% / 3);
    float: left;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem; }
    [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(3n+2) {
      margin-right: 4%;
      margin-left: 4%; }
    [section-type="js-map-listing"].buttons-list-container ul .country-element .button-basic {
      height: auto;
      width: 100%;
      display: block;
      font-weight: 600;
      font-size: 1.0625rem; }
    @media (max-width: 61.24em) {
      [section-type="js-map-listing"].buttons-list-container ul .country-element {
        width: calc(92% / 2); }
        [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(3n+2) {
          margin-right: 0;
          margin-left: 0; }
        [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(even) {
          margin-left: 4%; } }
    @media (max-width: 46.24em) {
      [section-type="js-map-listing"].buttons-list-container ul .country-element {
        width: 100%; }
        [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(3n+2), [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(even) {
          margin-right: 0;
          margin-left: 0; } }
  [section-type="js-map-listing"].bars-list-container {
    padding-top: 130px;
    padding-bottom: 8rem; }
    [section-type="js-map-listing"].bars-list-container .bars-list-filters {
      position: absolute;
      top: -180px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      height: auto;
      width: calc(100% - 16.666%);
      margin-right: auto;
      margin-left: auto;
      background: #f2f7fa;
      padding: 2rem; }
      [section-type="js-map-listing"].bars-list-container .bars-list-filters::after {
        clear: both;
        content: '';
        display: table; }
      [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container {
        position: relative;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        width: 33.3333%;
        float: left; }
        [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container .bars-search {
          font-size: 1.0625rem;
          color: #1c4054;
          width: 100%;
          height: 40px;
          padding-right: 1rem;
          padding-left: 1rem;
          background: transparent;
          border: 1px solid rgba(0, 0, 0, 0.12);
          font-weight: 600;
          transition: border 0.25s; }
          [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container .bars-search:focus {
            border: 1px solid rgba(241, 125, 0, 0.12);
            transition: border 0.25s; }
        [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container .bars-submit {
          position: absolute;
          top: 0;
          right: 1.5rem;
          height: 100%;
          width: 50px;
          display: block;
          background: transparent; }
          [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container .bars-submit .svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            fill: #1c4054; }
  @media (max-width: 61.24em) {
    [section-type="js-map-listing"] {
      padding-top: 40px; } }

[section-type="map-right"] .map-header-main {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px; }
  [section-type="map-right"] .map-header-main .map-header-stats-container {
    width: 33%;
    float: left; }
    [section-type="map-right"] .map-header-main .map-header-stats-container .map-header-title {
      color: white;
      font-size: 2.1875rem;
      font-weight: 600;
      margin-bottom: 40px; }
    @media (max-width: 46.24em) {
      [section-type="map-right"] .map-header-main .map-header-stats-container {
        width: 100%;
        float: none;
        text-align: center; } }
  [section-type="map-right"] .map-header-main .google-map {
    position: absolute;
    top: 0;
    left: 377px;
    height: 550px;
    width: calc(100vw - 377px - (100vw - 1100px) / 2);
    z-index: 2; }
    @media (max-width: 61.24em) {
      [section-type="map-right"] .map-header-main .google-map {
        height: 550px;
        width: calc(100vw - 40% - (100vw - 100%) / 2);
        position: absolute;
        top: 0;
        left: 40%; } }
    @media (max-width: 46.24em) {
      [section-type="map-right"] .map-header-main .google-map {
        height: 350px;
        width: 100%;
        position: relative;
        top: auto;
        left: auto; } }
    [section-type="map-right"] .map-header-main .google-map .map-element {
      height: 100%;
      width: 100%; }
    [section-type="map-right"] .map-header-main .google-map .button-map {
      position: absolute;
      right: 0;
      bottom: 0;
      padding: 0.6rem 3.4rem 0.6rem 1.25rem;
      background: #f17d00;
      color: white;
      font-weight: 600; }
      [section-type="map-right"] .map-header-main .google-map .button-map .icon {
        padding-left: 22px;
        position: absolute;
        top: 55%;
        right: 15px;
        transition: all 0.25s;
        transform: translateY(-50%); }
        [section-type="map-right"] .map-header-main .google-map .button-map .icon .svg {
          fill: white; }
      [section-type="map-right"] .map-header-main .google-map .button-map:hover .icon {
        position: absolute;
        right: 25px;
        transition: all 0.25s; }
  @media (max-width: 46.24em) {
    [section-type="map-right"] .map-header-main {
      margin-bottom: 0; } }        

/* /MAP 2018 */

.marker-blue-map {
  position: absolute;
  top: 0;
  left: 0;
  height: 32px;
  width: 18px;
  background: url(/images/pin.svg);
  background-repeat: no-repeat;
  transform: translate(-9px, -16px);
  display: block; }

.point {
  position: absolute;
  color: #f1910f;
  padding: 10px 15px;
  background: #fff;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #f19111;
  border-radius: 3px;
  display: none; }
  .point.visible {
    display: block; }

[section-type="js-map-listing"] {
  padding-top: 80px;
  padding-bottom: 8rem;
  position: relative; }
  [section-type="js-map-listing"]:before {
    height: 6rem;
    width: 100%;
    top: -6rem;
    background: white;
    z-index: 0; }
  [section-type="js-map-listing"].buttons-list-container ul::after {
    clear: both;
    content: '';
    display: table; }
  [section-type="js-map-listing"].buttons-list-container ul .country-element {
    width: calc(92% / 3);
    float: left;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem; }
    [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(3n+2) {
      margin-right: 4%;
      margin-left: 4%; }
    [section-type="js-map-listing"].buttons-list-container ul .country-element .button-basic {
      height: auto;
      width: 100%;
      display: block;
      font-weight: 600;
      font-size: 1.0625rem; }
    @media (max-width: 61.24em) {
      [section-type="js-map-listing"].buttons-list-container ul .country-element {
        width: calc(92% / 2); }
        [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(3n+2) {
          margin-right: 0;
          margin-left: 0; }
        [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(even) {
          margin-left: 4%; } }
    @media (max-width: 46.24em) {
      [section-type="js-map-listing"].buttons-list-container ul .country-element {
        width: 100%; }
        [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(3n+2), [section-type="js-map-listing"].buttons-list-container ul .country-element:nth-child(even) {
          margin-right: 0;
          margin-left: 0; } }
  [section-type="js-map-listing"].bars-list-container {
    padding-top: 130px;
    padding-bottom: 8rem; }
    [section-type="js-map-listing"].bars-list-container .bars-list-filters {
      position: absolute;
      top: -180px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      height: auto;
      width: calc(100% - 16.666%);
      margin-right: auto;
      margin-left: auto;
      background: #f2f7fa;
      padding: 2rem; }
      [section-type="js-map-listing"].bars-list-container .bars-list-filters::after {
        clear: both;
        content: '';
        display: table; }
      [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container {
        position: relative;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        width: 33.3333%;
        float: left; }
        [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container .bars-search {
          font-size: 1.0625rem;
          color: #4e8c43;
          width: 100%;
          height: 40px;
          padding-right: 1rem;
          padding-left: 1rem;
          background: transparent;
          border: 1px solid rgba(0, 0, 0, 0.12);
          font-weight: 600;
          transition: border 0.25s; }
          [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container .bars-search:focus {
            border: 1px solid rgba(241, 125, 0, 0.12);
            transition: border 0.25s; }
        [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container .bars-submit {
          position: absolute;
          top: 0;
          right: 1.5rem;
          height: 100%;
          width: 50px;
          display: block;
          background: transparent; }
          [section-type="js-map-listing"].bars-list-container .bars-list-filters .filters-element-container .bars-submit .svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            fill: #4e8c43; }
  @media (max-width: 61.24em) {
    [section-type="js-map-listing"] {
      padding-top: 40px; } }

[section-type="map-right"] .map-header-main {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px; }
  [section-type="map-right"] .map-header-main .map-header-stats-container {
    width: 33%;
    float: left; }
    [section-type="map-right"] .map-header-main .map-header-stats-container .map-header-title {
      color: white;
      font-size: 2.1875rem;
      font-weight: 600;
      margin-bottom: 40px; }
    @media (max-width: 46.24em) {
      [section-type="map-right"] .map-header-main .map-header-stats-container {
        width: 100%;
        float: none;
        text-align: center; } }
  [section-type="map-right"] .map-header-main .google-map {
    position: absolute;
    top: 0;
    left: 377px;
    height: 550px;
    width: calc(100vw - 377px - (100vw - 1100px) / 2);
    z-index: 2; }
    @media (max-width: 61.24em) {
      [section-type="map-right"] .map-header-main .google-map {
        height: 550px;
        width: calc(100vw - 40% - (100vw - 100%) / 2);
        position: absolute;
        top: 0;
        left: 40%; } }
    @media (max-width: 46.24em) {
      [section-type="map-right"] .map-header-main .google-map {
        height: 350px;
        width: 100%;
        position: relative;
        top: auto;
        left: auto; } }
    [section-type="map-right"] .map-header-main .google-map .map-element {
      height: 100%;
      width: 100%; }
    [section-type="map-right"] .map-header-main .google-map .button-map {
      position: absolute;
      right: 0;
      bottom: 0;
      padding: 0.6rem 3.4rem 0.6rem 1.25rem;
      background: #f17d00;
      color: white;
      font-weight: 600; }
      [section-type="map-right"] .map-header-main .google-map .button-map .icon {
        padding-left: 22px;
        position: absolute;
        top: 55%;
        right: 15px;
        transition: all 0.25s;
        transform: translateY(-50%); }
        [section-type="map-right"] .map-header-main .google-map .button-map .icon .svg {
          fill: white; }
      [section-type="map-right"] .map-header-main .google-map .button-map:hover .icon {
        position: absolute;
        right: 25px;
        transition: all 0.25s; }
  @media (max-width: 46.24em) {
    [section-type="map-right"] .map-header-main {
      margin-bottom: 0; } }

[section-type="simple-header"] {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #4e8c43 !important; }
  [section-type="simple-header"].simple-header-large {
    padding-top: 4rem;
    padding-bottom: 4rem; }
  [section-type="simple-header"].simple-header-full {
    position: relative; }
    [section-type="simple-header"].simple-header-full:after {
      content: '';
      width: 100vw;
      position: absolute;
      top: 0;
      left: 100%;
      background: #4e8c43;
      height: 100%;
      z-index: 0; }
    [section-type="simple-header"].simple-header-full:before {
      content: '';
      width: 100vw;
      position: absolute;
      top: 0;
      right: 100%;
      background: #4e8c43;
      height: 100%;
      z-index: 0; }
  [section-type="simple-header"] .simple-header-content {
    height: auto;
    width: 50%; }
    [section-type="simple-header"] .simple-header-content h1 {
      font-size: 2.1875rem;
      line-height: 2.5rem;
      color: white;
      font-weight: 600;
      margin-bottom: 0.6rem; }
    [section-type="simple-header"] .simple-header-content p {
      color: white;
      font-size: 1rem;
      line-height: 1.875rem; }
    @media (max-width: 61.24em) {
      [section-type="simple-header"] .simple-header-content {
        width: 85%;
        display: block;
        margin-right: auto;
        margin-left: auto; } }
    @media (max-width: 46.24em) {
      [section-type="simple-header"] .simple-header-content {
        width: 100%; } }

[section-type="vertical-listing"] {
  padding-bottom: 8rem;
  padding-left: nul;
  position: relative; }
  [section-type="vertical-listing"] .list-element-wrapper {
    height: auto;
    width: calc(66.666% - 35px);
    display: inline-block;
    padding-top: 4rem; }
    @media (max-width: 61.24em) {
      [section-type="vertical-listing"] .list-element-wrapper {
        width: 70%;
        display: block;
        margin-right: auto;
        margin-left: auto; } }
    @media (max-width: 46.24em) {
      [section-type="vertical-listing"] .list-element-wrapper {
        width: 100%; } }
    [section-type="vertical-listing"] .list-element-wrapper .list-element {
      padding-top: 30px;
      padding-bottom: 30px;
      background-image: linear-gradient(to right, rgba(78, 140, 67, 0.25) 33%, rgba(255, 255, 255, 0) 0%);
      background-position: bottom;
      background-size: 9px 1px;
      background-repeat: repeat-x; }
      [section-type="vertical-listing"] .list-element-wrapper .list-element:first-child {
        padding-top: 0; }
      [section-type="vertical-listing"] .list-element-wrapper .list-element .article-link {
        display: block;
        height: auto;
        width: 100%; }
        [section-type="vertical-listing"] .list-element-wrapper .list-element .article-link picture {
          display: inline-block;
          height: auto;
          width: 50%;
          vertical-align: top;
          margin-top: 11px; }
          [section-type="vertical-listing"] .list-element-wrapper .list-element .article-link picture img {
            width: 100%; }
          @media (max-width: 46.24em) {
            [section-type="vertical-listing"] .list-element-wrapper .list-element .article-link picture {
              width: 100%; } }
      [section-type="vertical-listing"] .list-element-wrapper .list-element .list-element-content {
        display: inline-block;
        width: calc(50% - 40px);
        margin-left: 35px; }
        [section-type="vertical-listing"] .list-element-wrapper .list-element .list-element-content .sub-article-element {
          font-size: 0.6875rem;
          letter-spacing: 0.25em;
          color: #91929a;
          text-transform: uppercase;
          font-weight: 700; }
          [section-type="vertical-listing"] .list-element-wrapper .list-element .list-element-content .sub-article-element .svg {
            position: relative;
            top: 4px;
            fill: #f17d00;
            margin-right: 0.4rem; }
        [section-type="vertical-listing"] .list-element-wrapper .list-element .list-element-content h2 {
          font-size: 1.375rem;
          line-height: 1.45;
          color: #4e8c43;
          margin-bottom: 1rem;
          max-height: 63.8px;
          overflow: hidden; }
          @supports (-webkit-line-clamp: 2) {
            [section-type="vertical-listing"] .list-element-wrapper .list-element .list-element-content h2 {
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 2;
              text-overflow: ellipsis; } }
        [section-type="vertical-listing"] .list-element-wrapper .list-element .list-element-content p {
          font-size: 0.875rem;
          line-height: 1.7;
          color: #91929a; }
        @media (max-width: 46.24em) {
          [section-type="vertical-listing"] .list-element-wrapper .list-element .list-element-content {
            width: 100%;
            margin-left: 0; } }

[section-type="vertical-listing-blocks"] {
  position: relative; }
  [section-type="vertical-listing-blocks"]:before {
    height: 6rem;
    width: 100%;
    top: -6rem;
    background: white;
    z-index: 0; }
  [section-type="vertical-listing-blocks"].buttons-list-container ul::after {
    clear: both;
    content: '';
    display: table; }
  [section-type="vertical-listing-blocks"].buttons-list-container ul .country-element {
    width: calc(92% / 3);
    float: left;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem; }
    [section-type="vertical-listing-blocks"].buttons-list-container ul .country-element:nth-child(3n+2) {
      margin-right: 4%;
      margin-left: 4%; }
    [section-type="vertical-listing-blocks"].buttons-list-container ul .country-element .button-basic {
      height: auto;
      width: 100%;
      display: block;
      font-weight: 600;
      font-size: 1.0625rem; }

.article-wrapper {
  padding-top: 6rem; }

[article] {
  padding-top: 4rem;
  width: calc(66.666% - 35px);
  display: inline-block; }
  @media (max-width: 61.24em) {
    [article] {
      display: block;
      width: 70%;
      margin: 0 auto;
      margin-top: 2rem; } }
  @media (max-width: 46.24em) {
    [article] {
      width: 100%; } }
  [article] .tags-list li {
    margin-left: 0; }

[section-type="full-download"] {
  background: #f2f7fa;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem; }
  [section-type="full-download"] h2 {
    margin-right: auto;
    margin-left: auto;
    width: 50%;
    font-size: 2.1875rem;
    line-height: 2.5rem;
    font-weight: 200;
    color: #4e8c43; }
    [section-type="full-download"] h2 b {
      font-weight: 400; }
    @media (max-width: 46.24em) {
      [section-type="full-download"] h2 {
        width: 100%; } }
  [section-type="full-download"] .button-full {
    width: auto;
    display: inline-block;
    padding-right: 3rem;
    padding-left: 3rem; }

[section-type="3columns"] {
  padding-top: 4rem;
  position: relative;
  z-index: 0; }
  [section-type="3columns"].overlap {
    position: relative;
    z-index: 2; }
    [section-type="3columns"].overlap:after {
      z-index: -1;
      width: 100%;
      height: 3rem;
      bottom: 0;
      left: 0;
      content: '';
      position: absolute;
      background: #4e8c43; }
  [section-type="3columns"] .section-header .section-title {
    display: inline-block; }
  [section-type="3columns"] .section-header .section-cta {
    float: right; }
  [section-type="3columns"] .card-element {
    width: calc((100% / 3) - 23px);
    float: left;
    background: #f2f7fa; }
    [section-type="3columns"] .card-element:nth-child(3n+2) {
      margin-right: 34px;
      margin-left: 34px; }
    [section-type="3columns"] .card-element:nth-child(n+4) {
      margin-top: 2rem; }
    [section-type="3columns"] .card-element picture {
      height: 210px;
      width: 100%;
      display: inline-block; }
      [section-type="3columns"] .card-element picture img {
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover";
        height: 100%;
        width: 100%; }
    [section-type="3columns"] .card-element .content-container {
      padding: 2rem 3rem 3rem; }
      [section-type="3columns"] .card-element .content-container .content-title {
        font-size: 1.5rem;
        line-height: 1.5;
        color: #4e8c43;
        font-weight: 600;
        text-align: center;
        max-height: 144;
        overflow: hidden;
        height: 72px; }
        @supports (-webkit-line-clamp: 2) {
          [section-type="3columns"] .card-element .content-container .content-title {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            text-overflow: ellipsis; } }
      [section-type="3columns"] .card-element .content-container .content-sub-title {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.25em;
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: block;
        text-align: center;
        text-transform: uppercase;
        color: #91929a;
        position: relative; }
        [section-type="3columns"] .card-element .content-container .content-sub-title .icon {
          margin-right: 0.2rem;
          position: relative;
          top: 3px;
          fill: #f17d00; }
      [section-type="3columns"] .card-element .content-container .content-text {
        font-size: 0.875rem;
        line-height: 1.71;
        font-weight: normal;
        text-align: center;
        color: #91929a;
        height: 120px;
        overflow: hidden; }
    @media (max-width: 61.24em) {
      [section-type="3columns"] .card-element {
        height: auto;
        width: 50%;
        float: none;
        display: block;
        margin: 2rem auto; }
        [section-type="3columns"] .card-element:nth-child(3n+2) {
          margin-right: auto;
          margin-left: auto; }
        [section-type="3columns"] .card-element:last-child {
          margin-bottom: 0; } }
    @media (max-width: 46.24em) {
      [section-type="3columns"] .card-element {
        height: auto;
        width: 100%; } }

[section-type="listing-blocks"] {
  padding-top: 125px;
  padding-bottom: 8rem; }
  [section-type="listing-blocks"] .bars-list {
    width: calc(100%);
    margin: 0 auto; }
    [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link {
      padding-top: 2rem;
      padding-bottom: 2rem;
      border-top: 1px solid rgba(145, 146, 154, 0.12);
      border-bottom: 1px solid rgba(145, 146, 154, 0.12);
      display: block; }
      [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link::after {
        clear: both;
        content: '';
        display: table; }
      [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link picture {
        width: calc(22% - 30px);
        float: left;
        min-width: 140px; }
        @media (max-width: 46.24em) {
          [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link picture {
            width: 100%;
            float: none; } }
        [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link picture img {
          height: auto;
          width: 100%; }
      [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .list-element-content {
        width: 78%;
        float: right; }
        @media (max-width: 46.24em) {
          [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .list-element-content {
            width: 100%;
            float: none; } }
      [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link h2 {
        color: #f17d00;
        font-size: 1.375rem;
        line-height: 1.5rem;
        font-weight: 600;
        position: relative; }
        [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link h2:after {
          content: '';
          position: absolute;
          bottom: -14px;
          left: 0;
          height: 1px;
          width: 30px;
          background: rgba(145, 146, 154, 0.3); }
          @media (max-width: 46.24em) {
            [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link h2:after {
              display: none; } }
        @media (max-width: 46.24em) {
          [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link h2 {
            margin-top: 1rem; } }
      [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .detail-container {
        margin-top: 1.4rem; }
        [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .detail-container .detail-element {
          position: relative;
          width: calc((100% / 3) - 35px);
          margin-right: 30px;
          float: left;
          padding-left: 2rem; }
          [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .detail-container .detail-element .detail-label {
            font-size: 0.6875rem;
            color: #4e8c43;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            font-weight: 700; }
          [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .detail-container .detail-element .svg {
            height: 20px;
            width: 20px;
            position: absolute;
            left: 0rem;
            top: 5px; }
            [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .detail-container .detail-element .svg svg {
              fill: #f17d00; }
            @media (max-width: 46.24em) {
              [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .detail-container .detail-element .svg {
                position: relative;
                left: -1rem; } }
          @media (max-width: 46.24em) {
            [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .detail-container .detail-element {
              width: 100%;
              display: inline-block;
              float: none;
              margin-right: 0;
              padding-right: 2rem;
              padding-left: 2rem; } }
          [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .detail-container .detail-element:last-child .svg {
            top: 8px; }
        @media (max-width: 46.24em) {
          [section-type="listing-blocks"] .bars-list .bar-list-element .bar-list-element-link .detail-container {
            text-align: center; } }
    [section-type="listing-blocks"] .bars-list .bar-list-element:first-child a {
      border-top: none; }
    @media (max-width: 61.24em) {
      [section-type="listing-blocks"] .bars-list {
        width: 100%; } }
    @media (max-width: 46.24em) {
      [section-type="listing-blocks"] .bars-list {
        text-align: center; } }

[section-type="breadcrumb-form"] {
  position: relative; }
  [section-type="breadcrumb-form"]:before {
    background: #4e8c43;
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    content: ''; }
  [section-type="breadcrumb-form"] .not-available {
    pointer-events: none;
    cursor: default; }
  [section-type="breadcrumb-form"] .breadcrumb-registration {
    width: 100%;
    padding: 3rem 1rem;
    top: 0; }
    [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element {
      width: calc(25% - 24px);
      display: inline-block;
      vertical-align: top; }
      [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element .icon-container {
        height: 80px;
        width: 80px;
        display: block;
        border-radius: 100%;
        position: relative;
        border: 1px solid rgba(78, 140, 67, 0.5);
        margin-right: auto;
        margin-left: auto;
        fill: rgba(78, 140, 67, 0.5); }
        [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element .icon-container .svg {
          display: block;
          height: 40px;
          width: 40px;
          position: relative;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
          [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element .icon-container .svg svg.icon-check {
            margin-top: 5px; }
          [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element .icon-container .svg svg.icon-star {
            margin-top: 2px; }
        @media (max-width: 46.24em) {
          [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element .icon-container {
            height: 70px;
            width: 70px; } }
        @media (max-width: 46.24em) {
          [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element .icon-container {
            transform: scale(0.85); } }
      [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element h2 {
        font-size: 1.375rem;
        line-height: 2.125rem;
        font-weight: normal;
        text-align: center;
        margin-top: 0.6rem;
        color: rgba(78, 140, 67, 0.5); }
        @media (max-width: 46.24em) {
          [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element h2 {
            font-size: 1.25rem;
            line-height: 1.625rem; } }
      [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element-active .icon-container {
        border-color: #f17d00;
        fill: #f17d00; }
      [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element-active h2 {
        color: #f17d00; }
      [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element-done .icon-container {
        border-color: #4e8c43;
        fill: #4e8c43; }
      [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element-done h2 {
        color: #4e8c43; }
      @media (max-width: 46.24em) {
        [section-type="breadcrumb-form"] .breadcrumb-registration .breadcrumb-element {
          width: 100%; } }
    [section-type="breadcrumb-form"] .breadcrumb-registration .inter-element-chevron {
      position: relative;
      display: inline-block;
      height: 80px;
      width: 18px;
      vertical-align: top; }
      [section-type="breadcrumb-form"] .breadcrumb-registration .inter-element-chevron .svg {
        position: absolute;
        top: 50%;
        left: calc(50% - 4px);
        transform: translate(-50%, -50%);
        fill: rgba(78, 140, 67, 0.5); }
        @media (min-width: 61.25em) {
          [section-type="breadcrumb-form"] .breadcrumb-registration .inter-element-chevron .svg:before {
            content: '';
            position: absolute;
            top: calc(50% - 2px);
            right: calc(100% + 9px);
            height: 1px;
            width: 60px;
            transform: translateY(-50%);
            background-image: linear-gradient(to right, rgba(78, 140, 67, 0.5) 33%, rgba(255, 255, 255, 0) 0%);
            background-position: bottom;
            background-size: 9px 1px;
            background-repeat: repeat-x; }
          [section-type="breadcrumb-form"] .breadcrumb-registration .inter-element-chevron .svg:after {
            content: '';
            position: absolute;
            top: calc(50% - 2px);
            left: calc(100% + 17px);
            height: 1px;
            width: 60px;
            transform: translateY(-50%);
            background-image: linear-gradient(to right, rgba(78, 140, 67, 0.5) 33%, rgba(255, 255, 255, 0) 0%);
            background-position: bottom;
            background-size: 9px 1px;
            background-repeat: repeat-x; } }
        @media (max-width: 46.24em) {
          [section-type="breadcrumb-form"] .breadcrumb-registration .inter-element-chevron .svg {
            position: absolute;
            top: 50%;
            left: calc(50%);
            transform: translate(-50%, -50%) rotate(90deg); } }
      @media (max-width: 46.24em) {
        [section-type="breadcrumb-form"] .breadcrumb-registration .inter-element-chevron {
          display: block;
          height: 45px;
          width: 100%; } }

[section-type="opening-blocks"] .list-element-wrapper {
  padding-top: 4rem;
  padding-bottom: 8rem;
  height: auto;
  width: calc(66.666% - 35px);
  display: inline-block; }
  [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element {
    position: relative;
    padding-top: 2rem;
    padding-right: 3rem;
    padding-left: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    height: auto;
    transition: all 0.25s;
    margin-top: 2rem;
    margin-bottom: 2rem;
    cursor: pointer; }
    [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element:first-child {
      margin-top: 0; }
    [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element .list-block--element-content {
      position: relative; }
      [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element .list-block--element-content .block-title {
        padding-bottom: 2rem;
        font-size: 1.125rem;
        line-height: 1.6875rem;
        color: #91929a; }
      [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element .list-block--element-content p {
        display: none; }
      [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element .list-block--element-content p:last-of-type {
        padding-bottom: 2rem; }
      [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element .list-block--element-content .block-button {
        display: block;
        height: 25px;
        width: 25px;
        position: absolute;
        top: 0;
        right: -25px;
        background: none; }
        [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element .list-block--element-content .block-button .svg {
          position: absolute;
          top: 0;
          left: 0;
          fill: #f17d00;
          transition: transform 0.25s; }
    [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element.opened-block .list-block--element-content p {
      display: block; }
    [section-type="opening-blocks"] .list-element-wrapper .list-blocks .list-block-element.opened-block .list-block--element-content .block-button .svg {
      transform: rotate(45deg);
      transition: transform 0.25s; }
  @media (max-width: 61.24em) {
    [section-type="opening-blocks"] .list-element-wrapper {
      width: 80%;
      margin-right: auto;
      margin-left: auto;
      display: block; } }
  @media (max-width: 46.24em) {
    [section-type="opening-blocks"] .list-element-wrapper {
      width: 100%; } }

[section-type="comments"] {
  padding-top: 2rem;
  padding-bottom: 2rem; }
  [section-type="comments"] .comments-title {
    font-size: 1.375rem;
    line-height: 1.6875rem;
    color: #4e8c43;
    margin-bottom: 2.5rem; }
  [section-type="comments"] .comment-element {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem; }
    [section-type="comments"] .comment-element:first-child {
      padding-top: 0; }
    [section-type="comments"] .comment-element .comment-text {
      color: #787a7f; }
    [section-type="comments"] .comment-element .comment-author {
      font-style: italic;
      font-weight: 600;
      color: #4e8c43; }
    [section-type="comments"] .comment-element .comment-date {
      color: #787a7f;
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.25em; }
      [section-type="comments"] .comment-element .comment-date:before {
        content: '•';
        color: #f17d00;
        font-size: 18px;
        margin-right: 6px;
        margin-left: 6px; }
  [section-type="comments"] .add-comment {
    padding-top: 2rem;
    padding-bottom: 6rem; }
    @media (max-width: 61.24em) {
      [section-type="comments"] .add-comment {
        padding-bottom: 0rem; } }
  [section-type="comments"] .star-rating {
    margin-bottom: 1rem; }
    [section-type="comments"] .star-rating p {
      display: inline-block; }
  [section-type="comments"] .rating {
    position: relative;
    margin-left: 2rem;
    display: inline-block; }
  [section-type="comments"] .rating span {
    position: relative;
    float: right; }
  [section-type="comments"] .rating span input {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0; }
  [section-type="comments"] .rating .svg {
    position: relative;
    top: 1rem;
    fill: #4e8c43; }
  [section-type="comments"] .rating span:hover ~ span .svg,
  [section-type="comments"] .rating span:hover .svg,
  [section-type="comments"] .rating span.checked .svg,
  [section-type="comments"] .rating span.checked ~ span .svg {
    fill: #f17d00; }

.card-header-wrapper {
  width: 100%;
  height: auto;
  background: #4e8c43;
  position: relative;
  padding-bottom: 3rem; }
  .card-header-wrapper:after {
    content: '';
    width: 100vw;
    position: absolute;
    top: 0;
    left: 100%;
    background: #4e8c43;
    height: 100%;
    z-index: 0; }
  .card-header-wrapper:before {
    content: '';
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
    background: #4e8c43;
    height: 100%;
    z-index: 0; }
  .card-header-wrapper .section-cta {
    margin-bottom: 1rem;
    color: #fff; }
    .card-header-wrapper .section-cta .svg {
      fill: #fff; }
    @media (min-width: 61.25em) {
      .card-header-wrapper .section-cta {
        position: relative;
        top: -2.5rem;
        margin-top: 0; } }
    @media (max-width: 61.24em) {
      .card-header-wrapper .section-cta {
        margin-top: 1rem; } }
    @media (max-width: 46.24em) {
      .card-header-wrapper .section-cta {
        width: 100%;
        text-align: center; } }
  .card-header-wrapper .card-header-content {
    height: auto;
    width: calc(66.666% - 35px);
    display: inline-block; }
    @media (max-width: 61.24em) {
      .card-header-wrapper .card-header-content {
        width: 85%;
        margin: 0 auto;
        display: block; } }
    @media (max-width: 46.24em) {
      .card-header-wrapper .card-header-content {
        width: 100%; } }
    .card-header-wrapper .card-header-content picture {
      display: inline-block;
      height: auto;
      width: 50%;
      vertical-align: top;
      margin-top: 11px; }
      @media (max-width: 46.24em) {
        .card-header-wrapper .card-header-content picture {
          width: 100%;
          margin-bottom: 1rem; } }
      .card-header-wrapper .card-header-content picture img {
        height: auto;
        width: 100%; }
    .card-header-wrapper .card-header-content .card-content {
      display: inline-block;
      width: calc(50% - 40px);
      margin-left: 35px; }
      @media (max-width: 46.24em) {
        .card-header-wrapper .card-header-content .card-content {
          margin-left: 0; } }
      @media (max-width: 46.24em) {
        .card-header-wrapper .card-header-content .card-content {
          width: 100%; } }
      .card-header-wrapper .card-header-content .card-content time {
        font-size: 0.6875rem;
        letter-spacing: 0.25em;
        color: white;
        text-transform: uppercase;
        font-weight: 700; }
      .card-header-wrapper .card-header-content .card-content h1 {
        font-size: 2.1875rem;
        line-height: 2.5rem;
        color: white;
        margin-bottom: 0.6rem;
        font-weight: 600; }
      .card-header-wrapper .card-header-content .card-content p {
        margin-top: 0.4rem;
        font-size: 0.875rem;
        line-height: 1.5rem;
        color: #91929a; }
    .card-header-wrapper .card-header-content--picture-right {
      margin-top: 3rem;
      margin-bottom: 3rem;
      height: auto;
      width: 100%; }
      .card-header-wrapper .card-header-content--picture-right picture {
        height: auto;
        width: calc(50% + 35px); }
        @media (max-width: 46.24em) {
          .card-header-wrapper .card-header-content--picture-right picture {
            width: 100%; } }
      .card-header-wrapper .card-header-content--picture-right .card-content {
        margin-right: 8.333%;
        margin-left: 0;
        height: auto;
        width: calc(41.666% - 39px); }
        @media (min-width: 61.25em) {
          .card-header-wrapper .card-header-content--picture-right .card-content {
            padding-bottom: 3rem; } }
        .card-header-wrapper .card-header-content--picture-right .card-content .list-details {
          margin-top: 2rem; }
          .card-header-wrapper .card-header-content--picture-right .card-content .list-details li {
            position: relative;
            padding-top: 1.2rem;
            padding-bottom: 1.2rem; }
            .card-header-wrapper .card-header-content--picture-right .card-content .list-details li .list-detail-content {
              padding-left: 3rem;
              font-size: 0.6875rem;
              line-height: 0.9375rem;
              color: white;
              font-weight: 600;
              text-transform: uppercase;
              letter-spacing: 0.25em; }
              .card-header-wrapper .card-header-content--picture-right .card-content .list-details li .list-detail-content .svg {
                position: absolute;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                fill: #fff;
                display: block;
                width: 2rem; }
                .card-header-wrapper .card-header-content--picture-right .card-content .list-details li .list-detail-content .svg:after {
                  position: absolute;
                  content: '';
                  width: 100%;
                  height: 1px;
                  background: rgba(255, 255, 255, 0.1);
                  left: 0;
                  bottom: -10px; }
                .card-header-wrapper .card-header-content--picture-right .card-content .list-details li .list-detail-content .svg svg {
                  margin: 0 auto;
                  display: block; }
          .card-header-wrapper .card-header-content--picture-right .card-content .list-details .stars-element {
            padding-top: 0;
            padding-bottom: 0; }
            .card-header-wrapper .card-header-content--picture-right .card-content .list-details .stars-element .svg {
              fill: #c5e9bf; }
            .card-header-wrapper .card-header-content--picture-right .card-content .list-details .stars-element .selected .svg {
              fill: #fff; }
        @media (max-width: 46.24em) {
          .card-header-wrapper .card-header-content--picture-right .card-content {
            width: 100%; } }

[aside] {
  height: auto;
  width: 30.333%;
  float: right;
  position: relative;
  z-index: 2; }
  @media (max-width: 61.24em) {
    [aside] {
      float: none;
      display: block;
      width: 70%;
      margin: 0 auto;
      margin-top: 2rem; } }
  @media (max-width: 46.24em) {
    [aside] {
      width: 100%; } }
  [aside].aside-right {
    position: absolute;
    top: 0;
    right: 0; }
    @media (max-width: 61.24em) {
      [aside].aside-right {
        position: relative;
        top: auto;
        right: auto; } }
  [aside] .title-zone {
    font-size: 0.8125rem;
    color: #91929a;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem; }
  [aside] .aside-bloc {
    padding: 2rem 3rem;
    background: #f2f7fa; }
    [aside] .aside-bloc input {
      padding: 0.6rem 0.8rem;
      height: auto;
      width: 100%;
      background: transparent;
      display: block;
      border: 1px solid rgba(145, 146, 154, 0.35);
      border-radius: 3px;
      font-size: 1.0625rem;
      line-height: 1.5rem;
      font-weight: 600;
      text-align: center;
      color: #4e8c43; }
    [aside] .aside-bloc h3 {
      font-size: 1.625rem;
      line-height: 2.375rem;
      color: #4e8c43;
      text-transform: none;
      letter-spacing: normal; }
    [aside] .aside-bloc p {
      color: rgba(78, 140, 67, 0.7);
      margin-bottom: 2rem; }
    [aside] .aside-bloc .select-container {
      width: 100%;
      margin-bottom: 2rem; }
      [aside] .aside-bloc .select-container:last-of-type {
        margin-bottom: 0; }
      [aside] .aside-bloc .select-container:nth-of-type(odd) {
        margin-right: 60px; }
      [aside] .aside-bloc .select-container select {
        height: 48px;
        width: 100%;
        padding: 0.6rem 1rem;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 3px;
        margin-bottom: 0;
        font-size: 1.125rem;
        line-height: 1.5rem;
        color: #4e8c43; }
    [aside] .aside-bloc .related li {
      padding-top: 1rem;
      padding-bottom: 1rem;
      background-image: linear-gradient(to right, rgba(78, 140, 67, 0.25) 33%, rgba(255, 255, 255, 0) 0%);
      background-position: bottom;
      background-size: 9px 1px;
      background-repeat: repeat-x;
      text-decoration: none;
      list-style: none; }
      [aside] .aside-bloc .related li:last-child {
        padding-bottom: 0;
        background-image: none; }
      [aside] .aside-bloc .related li a {
        height: 100%;
        width: 100%;
        display: block;
        text-decoration: none; }
        [aside] .aside-bloc .related li a picture {
          height: auto;
          width: calc(42% - 25px);
          display: inline-block;
          vertical-align: top;
          margin-top: 0.8rem; }
          [aside] .aside-bloc .related li a picture img {
            height: auto;
            width: 100%; }
        [aside] .aside-bloc .related li a .content-container {
          display: inline-block;
          width: 58%;
          margin-left: 15px; }
          [aside] .aside-bloc .related li a .content-container time {
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: #91929a; }
          [aside] .aside-bloc .related li a .content-container .related-bloc-title {
            color: #4e8c43;
            font-size: 0.9375rem;
            line-height: 1.1875rem; }
        [aside] .aside-bloc .related li a:hover .related-bloc-title {
          color: #f17d00; }
  [aside] .aside-zone {
    margin-bottom: 2rem; }
  [aside] .button-basic {
    width: 100%;
    display: block; }
  [aside] .buttons-list ul li {
    margin-bottom: 1rem; }
    [aside] .buttons-list ul li a {
      display: block; }
  [aside] .buttons-list .button-full {
    padding-right: 3rem;
    padding-left: 3rem;
    margin-top: 1rem;
    width: auto;
    display: inline-block; }
  [aside] .aside-slider .aside-slider-header {
    position: relative;
    margin-bottom: 1.4rem; }
    [aside] .aside-slider .aside-slider-header .aside-title {
      font-size: 1.625rem;
      color: #4e8c43;
      font-weight: 600;
      padding-right: 3.3rem; }
    [aside] .aside-slider .aside-slider-header .controls {
      position: absolute;
      right: 0;
      top: -2px; }
  [aside] .aside-slider .swiper-container {
    overflow: hidden; }
    [aside] .aside-slider .swiper-container::after {
      clear: both;
      content: '';
      display: table; }
    [aside] .aside-slider .swiper-container article {
      float: left; }
      [aside] .aside-slider .swiper-container article picture {
        height: auto;
        width: 100%; }
        [aside] .aside-slider .swiper-container article picture img {
          height: auto;
          width: 100%; }
      [aside] .aside-slider .swiper-container article .article-title {
        max-height: 86.4px;
        overflow: hidden;
        margin-top: 6px;
        margin-bottom: 6px;
        color: #4e8c43;
        font-size: 1.125rem;
        line-height: 1.5rem;
        font-weight: 600; }
        @supports (-webkit-line-clamp: 2) {
          [aside] .aside-slider .swiper-container article .article-title {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            text-overflow: ellipsis; } }
      [aside] .aside-slider .swiper-container article p {
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: rgba(78, 140, 67, 0.7);
        max-height: 112px;
        overflow: hidden; }
        @supports (-webkit-line-clamp: 4) {
          [aside] .aside-slider .swiper-container article p {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            text-overflow: ellipsis; } }
  [aside] .buttons-border-bottom li .button-basic {
    border: none;
    border-bottom: 1px solid rgba(241, 125, 0, 0.12);
    padding-left: 0; }

[content-type="bar-slider"] .swiper-container {
  overflow: hidden; }
  [content-type="bar-slider"] .swiper-container .swiper-wrapper::after {
    clear: both;
    content: '';
    display: table; }
  [content-type="bar-slider"] .swiper-container .swiper-wrapper .swiper-slide {
    width: calc((100% / 4) - 34px);
    float: left;
    margin-right: 35px; }
    [content-type="bar-slider"] .swiper-container .swiper-wrapper .swiper-slide picture {
      width: 100%; }
      [content-type="bar-slider"] .swiper-container .swiper-wrapper .swiper-slide picture img {
        width: 100%; }
    [content-type="bar-slider"] .swiper-container .swiper-wrapper .swiper-slide .name {
      font-size: 1.375rem;
      color: #4e8c43;
      margin-top: -6px; }
    [content-type="bar-slider"] .swiper-container .swiper-wrapper .swiper-slide .school {
      display: block;
      font-size: 0.6875rem;
      color: #f17d00;
      text-transform: uppercase;
      margin-top: -4px;
      letter-spacing: 0.25em; }
    [content-type="bar-slider"] .swiper-container .swiper-wrapper .swiper-slide .location {
      display: block;
      font-size: 0.875rem;
      color: #4e8c43;
      margin-top: -8px; }
    @media (max-width: 46.24em) {
      [content-type="bar-slider"] .swiper-container .swiper-wrapper .swiper-slide {
        width: 100%; } }

[content-type="bar-full"] .content-right {
  padding: 3rem 2rem;
  background: #f2f7fa; }
  [content-type="bar-full"] .content-right picture {
    height: auto;
    width: 165px;
    position: relative;
    display: inline-block;
    vertical-align: top; }
    [content-type="bar-full"] .content-right picture img {
      width: 100%; }
    @media (max-width: 46.24em) {
      [content-type="bar-full"] .content-right picture {
        width: 100%; } }
  [content-type="bar-full"] .content-right .text-content {
    height: auto;
    width: calc(100% - 170px - 2rem);
    display: inline-block;
    margin-left: 2rem; }
    @media (max-width: 61.24em) {
      [content-type="bar-full"] .content-right .text-content {
        width: 100%;
        margin-left: 0; } }

.overlap-block {
  position: relative;
  z-index: 10;
  top: -5rem;
  margin-right: auto;
  margin-left: auto;
  background: #f2f7fa;
  padding: 2rem 3rem;
  height: auto;
  width: calc(100% - 16.666% + (35px * 2)); }
  .overlap-block::after {
    clear: both;
    content: '';
    display: table; }
  .overlap-block .filters-element-container {
    position: relative;
    margin-right: 0.75rem;
    width: 33.3333%;
    float: left; }
    .overlap-block .filters-element-container:first-of-type {
      padding-right: 0;
      margin-right: 2rem; }
    .overlap-block .filters-element-container:last-of-type {
      margin-right: 0; }
    .overlap-block .filters-element-container.filters-element-container-tinier {
      position: relative;
      top: 6px;
      width: 27%; }
      @media (max-width: 61.24em) {
        .overlap-block .filters-element-container.filters-element-container-tinier {
          width: 48%;
          margin-top: 1rem; } }
      @media (max-width: 46.24em) {
        .overlap-block .filters-element-container.filters-element-container-tinier {
          width: 100%;
          text-align: center; } }
    .overlap-block .filters-element-container.filters-element-container-bigger {
      width: 39%; }
      @media (max-width: 61.24em) {
        .overlap-block .filters-element-container.filters-element-container-bigger {
          width: 100%; } }
    .overlap-block .filters-element-container .bars-search {
      font-size: 1.0625rem;
      color: #4e8c43;
      width: 100%;
      height: 50px;
      margin-bottom: 0;
      padding-right: 1rem;
      padding-left: 1rem;
      background: transparent;
      border: 1px solid rgba(0, 0, 0, 0.12);
      font-weight: 600;
      transition: border 0.25s; }
      .overlap-block .filters-element-container .bars-search:focus {
        border: 1px solid rgba(241, 125, 0, 0.12);
        transition: border 0.25s;
        color: #f17d00; }
        .overlap-block .filters-element-container .bars-search:focus::-webkit-input-placeholder {
          color: #f17d00; }
        .overlap-block .filters-element-container .bars-search:focus:-moz-placeholder {
          color: #f17d00; }
        .overlap-block .filters-element-container .bars-search:focus::-moz-placeholder {
          color: #f17d00; }
        .overlap-block .filters-element-container .bars-search:focus:-ms-input-placeholder {
          color: #f17d00; }
      .overlap-block .filters-element-container .bars-search::-webkit-input-placeholder {
        color: #4e8c43; }
      .overlap-block .filters-element-container .bars-search:-moz-placeholder {
        color: #4e8c43; }
      .overlap-block .filters-element-container .bars-search::-moz-placeholder {
        color: #4e8c43; }
      .overlap-block .filters-element-container .bars-search:-ms-input-placeholder {
        color: #4e8c43; }
    .overlap-block .filters-element-container .bars-submit {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 50px;
      display: block;
      background: transparent;
      background: #f2f7fa;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-left: 0; }
      .overlap-block .filters-element-container .bars-submit .svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        fill: #4e8c43; }
    .overlap-block .filters-element-container label {
      position: relative;
      top: 1px;
      left: 2px;
      color: #4e8c43;
      font-size: 1.0625rem;
      font-weight: 600; }
  @media (max-width: 61.24em) {
    .overlap-block {
      position: relative;
      top: auto;
      width: 100%; } }

.form-container {
  margin-right: auto;
  margin-left: auto;
  width: calc(58.333% - 80px); }
  .form-container .column-element {
    padding: 0.6rem 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.5rem;
    color: #4e8c43; }
  .form-container .select-container {
    width: calc(50% - 32px);
    margin-bottom: 2rem; }
    .form-container .select-container:nth-of-type(odd) {
      margin-right: 60px; }
    .form-container .select-container select {
      width: 100%;
      margin-bottom: 0; }
    @media (max-width: 46.24em) {
      .form-container .select-container {
        width: 100%; }
        .form-container .select-container:nth-of-type(odd) {
          margin-right: 0px; } }
  .form-container .half-column {
    width: calc(50% - 32px); }
    .form-container .half-column:nth-of-type(odd) {
      margin-right: 60px; }
    @media (max-width: 46.24em) {
      .form-container .half-column {
        width: 100%; }
        .form-container .half-column:nth-of-type(odd) {
          margin-right: 0px; } }
  .form-container .full-column {
    width: 100%; }
  .form-container textarea {
    max-width: 100%; }
    .form-container textarea:focus {
      border: 1px solid rgba(241, 125, 0, 0.12);
      color: #f17d00; }
  .form-container .submit-container {
    width: auto;
    display: inline-block;
    position: relative;
    cursor: pointer; }
    .form-container .submit-container input[type="submit"] {
      padding: 1rem 5rem 1rem 4rem;
      background: #f17d00;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      color: white;
      font-size: 1.0625rem; }
      @media (max-width: 46.24em) {
        .form-container .submit-container input[type="submit"] {
          padding: 1rem 3rem 1rem 2rem; } }
    .form-container .submit-container .svg {
      position: absolute;
      top: 50%;
      right: 32px;
      transform: translateY(-50%);
      fill: white;
      transition: all 0.25s; }
    .form-container .submit-container:hover .svg {
      position: absolute;
      top: 50%;
      right: 22px;
      transition: all 0.25s; }
  .form-container .password-element {
    position: relative; }
    .form-container .password-element .password-input {
      padding-right: 6rem; }
    .form-container .password-element .show-password-container {
      position: absolute;
      top: 50%;
      right: 1rem;
      transform: translateY(-50%); }
      .form-container .password-element .show-password-container label {
        color: #4e8c43;
        font-size: 1rem;
        font-weight: 600; }
  .form-container .error-message, .form-container .success-message {
    color: #ed1a1a;
    font-size: 0.8125rem;
    line-height: 1.125rem; }
  .form-container .success-message {
    margin-top: 2rem;
    font-size: 20px;
    font-weight: 600;
    color: green; }
    @media (max-width: 61.24em) {
      .form-container .success-message {
        width: 100%;
        display: block;
        text-align: center; } }
  .form-container .disclaimer-message {
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem; }
  .form-container .form-element {
    margin: 0 0 2rem;
    display: block; }
    .form-container .form-element .column-element {
      margin-bottom: 0;
      width: 100%;
      margin: 0; }
    .form-container .form-element.form-element-half {
      width: calc(50% - 32px);
      display: inline-block;
      vertical-align: top; }
      .form-container .form-element.form-element-half:first-child {
        margin-right: 60px; }
      @media (max-width: 46.24em) {
        .form-container .form-element.form-element-half {
          width: 100%; }
          .form-container .form-element.form-element-half:first-child {
            margin-right: 0px; } }
    .form-container .form-element .select-container {
      width: 100%;
      margin: 0; }
      .form-container .form-element .select-container-row .select-container {
        width: calc(50% - 32px); }
        .form-container .form-element .select-container-row .select-container:first-child {
          margin-right: 60px; }
        @media (max-width: 46.24em) {
          .form-container .form-element .select-container-row .select-container {
            width: 100%;
            margin-top: 15px; }
            .form-container .form-element .select-container-row .select-container:nth-of-type(odd) {
              margin-right: 0px; } }
  .form-container .indicators-message {
    color: #91929a;
    font-size: 200;
    font-size: 0.8125rem;
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem; }
  .form-container .special:nth-of-child(odd) {
    margin-right: 60px;
    background: red; }
  .form-container h3 {
    font-size: 1.375rem;
    color: #4e8c43;
    font-weight: 600;
    margin-top: 4rem; }
  .form-container h4 {
    font-size: 1.0625rem;
    color: #4e8c43;
    font-weight: 600;
    margin-bottom: 1rem; }
  .form-container .checkbox-option {
    display: inline-block;
    margin-right: 3rem; }
    .form-container .checkbox-option label {
      font-size: 1rem;
      color: #4e8c43;
      font-weight: 600; }
  .form-container .checkbox-option-radio input[type="radio"] {
    -webkit-appearance: checkbox;
    /* Chrome, Safari, Opera */
    -moz-appearance: checkbox;
    /* Firefox */
    -ms-appearance: checkbox;
    /* not currently supported */ }
  .form-container .checkbox-list::after {
    clear: both;
    content: '';
    display: table; }
  .form-container .checkbox-list .checkbox-option {
    display: block;
    width: 50%;
    margin: 0;
    float: left; }
    .form-container .checkbox-list .checkbox-option:nth-child(2n) {
      float: right; }
    @media (max-width: 46.24em) {
      .form-container .checkbox-list .checkbox-option {
        width: 100%; } }
  .form-container .buttons-container {
    display: block; }
    .form-container .buttons-container::after {
      clear: both;
      content: '';
      display: table; }
    .form-container .buttons-container .button-back {
      font-size: 1.0625rem;
      float: left;
      padding: 0.9rem 4rem 0.9rem 5rem; }
      @media (max-width: 46.24em) {
        .form-container .buttons-container .button-back {
          padding-right: 2rem;
          padding-left: 3rem; } }
    .form-container .buttons-container .submit-container {
      float: right; }
  @media (max-width: 61.24em) {
    .form-container {
      width: 80%; } }
  @media (max-width: 46.24em) {
    .form-container {
      width: 100%; } }

[section-type="register-form"] .form-recap h4, [section-type="register-form"] .form-recap p {
  display: inline; }

[section-type="register-form"] .form-recap p {
  margin-left: 6px; }

[section-type="register-form"] .form-recap h3 {
  color: #f17d00; }

[section-type="register-form"] .form-recap .form-element-recap {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  background-image: linear-gradient(to right, rgba(78, 140, 67, 0.25) 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 9px 1px;
  background-repeat: repeat-x; }
  [section-type="register-form"] .form-recap .form-element-recap .edit-form-element {
    float: right;
    position: relative;
    top: 8px;
    fill: #f17d00; }

/*------------------------------------*    BREADCRUMB
    \*------------------------------------*/
@media (max-width: 46.24em) {
  .section-top-bar {
    text-align: center; } }

.section-top-bar .breadcrumb {
  position: relative;
  float: left; }
  .section-top-bar .breadcrumb::after {
    clear: both;
    content: '';
    display: table; }
  @media (max-width: 46.24em) {
    .section-top-bar .breadcrumb {
      float: none;
      display: block;
      width: 100%; } }
  .section-top-bar .breadcrumb li {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    padding-left: 1.1rem;
    text-align: left; }
    .section-top-bar .breadcrumb li a {
      color: #c5e9bf;
      font-size: 0.8125rem;
      font-weight: 600; }
    .section-top-bar .breadcrumb li .icon-chevron {
      position: absolute;
      height: 28px;
      width: 28px;
      left: 1px;
      top: 50%;
      transform: translateY(-50%);
      fill: #fff; }
    .section-top-bar .breadcrumb li:last-child a {
      color: white;
      cursor: default; }
    @media (max-width: 46.24em) {
      .section-top-bar .breadcrumb li:last-child {
        display: block;
        width: 100%; } }
    .section-top-bar .breadcrumb li:first-child {
      padding-left: 0; }
    .section-top-bar .breadcrumb li:last-child::after {
      content: none; }
  .section-top-bar .breadcrumb a {
    text-decoration: none; }

.section-top-bar .button-naked {
  float: right; }
  @media (max-width: 46.24em) {
    .section-top-bar .button-naked {
      margin-top: 2rem;
      float: none;
      display: inline-block;
      text-align: center; } }

.wrapper-tags .tags-list {
  margin-top: -0.45rem; }
  .wrapper-tags .tags-list li {
    display: inline-block;
    margin-top: 0.45rem;
    margin-right: 0.3rem;
    margin-bottom: 0.45rem; }
    .wrapper-tags .tags-list li span, .wrapper-tags .tags-list li a {
      padding: 0.5rem 0.8rem;
      font-size: 0.8125rem;
      color: #f17d00;
      border: 1px solid rgba(241, 125, 0, 0.2);
      border-radius: 3px; }

[popup] {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(78, 140, 67, 0.92);
  z-index: 900; }

.login-popup {
  display: none;
  overflow-y: scroll; }
  .login-popup .login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; }
    @media (max-width: 46.24em) {
      .login-popup .login-container {
        width: 80%; } }
    .login-popup .login-container .login-close-button {
      position: absolute;
      top: -4rem;
      right: -1rem;
      background: transparent;
      transform: rotate(45deg); }
      @media (max-width: 46.24em) {
        .login-popup .login-container .login-close-button {
          position: absolute;
          top: -3rem; } }
      .login-popup .login-container .login-close-button .svg {
        fill: white; }
    .login-popup .login-container .login-content {
      padding: 2.5rem 3rem;
      background: white; }
      @media (max-width: 46.24em) {
        .login-popup .login-container .login-content {
          padding: 1.5rem 2rem; } }
      .login-popup .login-container .login-content h2 {
        font-size: 2.1875rem;
        line-height: 2.5rem;
        color: #4e8c43;
        text-align: center;
        font-weight: 600;
        margin-bottom: 3rem; }
        @media (max-width: 46.24em) {
          .login-popup .login-container .login-content h2 {
            font-size: 1.5rem;
            line-height: 2rem;
            margin-bottom: 1.5rem; } }
      .login-popup .login-container .login-content input:last-of-type {
        margin-bottom: 0; }
      .login-popup .login-container .login-content .button-full {
        margin-top: 3rem;
        font-weight: 600;
        padding-right: 2rem; }
        .login-popup .login-container .login-content .button-full .svg {
          top: 1px; }
        @media (max-width: 46.24em) {
          .login-popup .login-container .login-content .button-full {
            width: 100%; } }
    .login-popup .login-container .secondary-link {
      color: #91929a;
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 600;
      text-align: center;
      display: block;
      margin-top: 1.5rem; }
      @media (max-width: 46.24em) {
        .login-popup .login-container .secondary-link {
          margin-top: 1rem; } }
      .login-popup .login-container .secondary-link b {
        color: #f17d00; }

.login-is-open .login-popup {
  display: block; }

[pagination="prev-next"] {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem; }
  [pagination="prev-next"]::after {
    clear: both;
    content: '';
    display: table; }
  [pagination="prev-next"] .next, [pagination="prev-next"] .previous {
    color: #4e8c43;
    font-size: 0.9375rem; }
    [pagination="prev-next"] .next .svg, [pagination="prev-next"] .previous .svg {
      fill: #f17d00;
      position: relative;
      top: 4px; }
  [pagination="prev-next"] .previous {
    float: left;
    position: relative;
    z-index: 2; }
    [pagination="prev-next"] .previous .svg {
      padding-right: 0.6rem;
      left: 0;
      transition: all 0.25s; }
    [pagination="prev-next"] .previous:hover .svg {
      left: -10px;
      transition: all 0.25s; }
  [pagination="prev-next"] .next {
    float: right;
    position: relative;
    z-index: 2; }
    [pagination="prev-next"] .next .svg {
      padding-left: 0.6rem;
      right: 0;
      transition: all 0.25s; }
    [pagination="prev-next"] .next:hover .svg {
      right: -10px;
      transition: all 0.25s; }
  [pagination="prev-next"] .pagination-numbers {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    text-align: center;
    display: inline-block;
    margin: 0 auto; }
    [pagination="prev-next"] .pagination-numbers li {
      display: inline;
      color: #4e8c43; }
      [pagination="prev-next"] .pagination-numbers li a {
        position: relative;
        font-size: 0.9375rem;
        color: #4e8c43; }
        [pagination="prev-next"] .pagination-numbers li a.active {
          color: #f17d00;
          pointer-events: none;
          cursor: cursor; }
      [pagination="prev-next"] .pagination-numbers li:after {
        content: '/';
        margin-left: 2px;
        margin-right: 1px; }
      [pagination="prev-next"] .pagination-numbers li:last-child:after {
        content: none; }

[data-view="homepage"] .container-bg {
  position: relative;
  height: auto; }
  [data-view="homepage"] .container-bg::after {
    clear: both;
    content: '';
    display: table; }
  [data-view="homepage"] .container-bg picture {
    height: 450px;
    width: calc(100% - 37%);
    position: relative;
    z-index: 1;
    display: inline-block; }
    @media (min-width: 61.25em) {
      [data-view="homepage"] .container-bg picture:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100vw;
        background: #f2f7fa;
        z-index: -1; } }
    [data-view="homepage"] .container-bg picture img {
      -o-object-fit: cover;
      object-fit: cover;
      font-family: "object-fit: cover";
      height: 100%;
      width: 100%; }
    [data-view="homepage"] .container-bg picture video {
      height: 100%;
      width: 100%; }
    @media (max-width: 61.24em) {
      [data-view="homepage"] .container-bg picture {
        height: auto;
        width: 80%; } }
    @media (max-width: 46.24em) {
      [data-view="homepage"] .container-bg picture {
        height: auto;
        width: 100%; } }
  [data-view="homepage"] .container-bg .header-intro {
    height: 100%;
    width: calc(36%);
    max-width: 340px;
    padding: 2rem 0 3rem 4%;
    z-index: 1;
    display: block;
    float: right;
    position: relative; }
    [data-view="homepage"] .container-bg .header-intro h1 {
      font-weight: 200;
      font-size: 1.875rem;
      line-height: 2.5rem;
      color: #142326;
      margin-bottom: 30px; }
      [data-view="homepage"] .container-bg .header-intro h1 b {
        font-weight: 600;
        color: #4e8c43; }
    [data-view="homepage"] .container-bg .header-intro p {
      font-family: "Source Sans Pro", sans-serif;
      font-weight: 400;
      font-size: 0.875rem;
      line-height: 1.5rem;
      font-weight: normal;
      color: #787a7f; }
    [data-view="homepage"] .container-bg .header-intro .button-full {
      font-size: 0.9375rem;
      padding-left: 2rem; }
    @media (max-width: 61.24em) {
      [data-view="homepage"] .container-bg .header-intro {
        height: auto;
        width: 100%;
        max-width: 100%;
        background: #f2f7fa;
        top: -12px;
        padding: 3rem 4rem; }
        [data-view="homepage"] .container-bg .header-intro .button-full {
          display: inline-block;
          width: auto;
          padding-right: 3.5rem;
          padding-left: 2rem; } }
    @media (max-width: 46.24em) {
      [data-view="homepage"] .container-bg .header-intro {
        padding: 2rem; }
        [data-view="homepage"] .container-bg .header-intro .button-full {
          display: block; }
          [data-view="homepage"] .container-bg .header-intro .button-full .cta-content {
            display: block; } }

[data-view="homepage"] [section-type="stats"] {
  background: none; }

[data-view="countries"] [section-type="js-map"] {
  background: none; }

[data-view="country"] {
  padding-bottom: 8rem; }
  [data-view="country"] .section-header {
    padding-top: 180px; }
    @media (max-width: 46.24em) {
      [data-view="country"] .section-header {
        padding-top: 20px; } }
  [data-view="country"] [section-type="map-right"] {
    padding-top: 2rem;
    padding-bottom: 2rem; }
  [data-view="country"] [section-type="stats"] {
    background: #4e8c43; }

[data-view="blog"] [aside] {
  position: relative;
  top: -4rem; }
  @media (max-width: 61.24em) {
    [data-view="blog"] [aside] {
      top: 0; } }

[data-view="blog-detail"] [section-type="aside-header"] [aside] {
  position: absolute;
  top: 0;
  right: 0; }

[data-view="blog-detail"] [section-type="vertical-listing"] {
  padding-bottom: 2rem; }

[data-view="blog-detail"] [section-type="simple-header"] {
  background: none; }

[data-view="contact"] [section-type="contact-form"] {
  padding-top: 6rem;
  padding-bottom: 8rem; }
  [data-view="contact"] [section-type="contact-form"] .content-container {
    width: calc(33.333% + 35px);
    display: inline-block; }
    @media (max-width: 61.24em) {
      [data-view="contact"] [section-type="contact-form"] .content-container {
        width: 100%;
        display: block; } }
  [data-view="contact"] [section-type="contact-form"] .form-container {
    float: right;
    width: calc(58.333% - 80px);
    display: inline-block; }
    @media (max-width: 61.24em) {
      [data-view="contact"] [section-type="contact-form"] .form-container {
        width: 100%;
        float: none;
        display: block; } }

[data-view="project"] [article] {
  height: auto;
  width: calc(58.333% - 35px); }
  @media (max-width: 61.24em) {
    [data-view="project"] [article] {
      width: 80%; } }
  @media (max-width: 46.24em) {
    [data-view="project"] [article] {
      width: 100%; } }

[data-view="project"] [aside] {
  padding-left: 7.3333%;
  margin-top: 4rem;
  width: calc(33.333% + 4.1666%);
  background-image: linear-gradient(rgba(78, 140, 67, 0.25) 33%, rgba(255, 255, 255, 0) 0%);
  background-position: left;
  background-size: 1px 9px;
  background-repeat: repeat-y; }
  @media (max-width: 61.24em) {
    [data-view="project"] [aside] {
      width: 80%;
      padding-left: 0;
      background-image: none; } }
  @media (max-width: 46.24em) {
    [data-view="project"] [aside] {
      width: 100%; } }

[data-view="project"] [section-type="vertical-listing"] {
  padding-top: 0;
  padding-bottom: 8rem;
  padding-left: nul; }
  [data-view="project"] [section-type="vertical-listing"] .card-header-content--picture-right {
    margin-top: 1rem;
    margin-bottom: 1rem; }

[data-view="project"] [section-type="full-download"] {
  background: #f2f7fa; }

[data-view="projects"] [aside] {
  top: -4rem; }
  @media (max-width: 61.24em) {
    [data-view="projects"] [aside] {
      top: 0; } }

[data-view="projects"] [section-type="vertical-listing"] .list-element-wrapper .list-element .article-link .list-element-content h2 {
  margin-bottom: 0.2rem; }

[data-view="projects"] [section-type="vertical-listing"] .list-element-wrapper .list-element .article-link .list-element-content .sub-article-element {
  display: block;
  margin-bottom: 0.3rem; }

[data-view="support"] [aside] {
  top: -4rem; }

[data-view="support"] .section-header {
  margin-top: 5rem; }
  [data-view="support"] .section-header:first-of-type {
    margin-top: 2rem; }

[data-view="schools"] .section-top-bar {
  margin-top: 2rem; }

[data-view="schools"] [section-type="js-map"] {
  background: none; }
  [data-view="schools"] [section-type="js-map"]:before {
    top: auto;
    bottom: 0;
    background: white;
    height: 10rem; }
  @media (max-width: 61.24em) {
    [data-view="schools"] [section-type="js-map"] {
      padding-bottom: 0; } }

[data-view="schools"] [section-type="listing-blocks"] {
  padding-top: 0; }
  [data-view="schools"] [section-type="listing-blocks"] .section-header {
    margin-top: 2.5rem; }

[data-view="school-detail"] [section-type="map-right"] {
  padding-top: 1rem; }
  [data-view="school-detail"] [section-type="map-right"] .map-header-main {
    padding-top: 0; }
    @media (min-width: 61.25em) {
      [data-view="school-detail"] [section-type="map-right"] .map-header-main .google-map {
        left: 41.666%;
        width: calc(100vw - 41.666% - (100vw - 1100px) / 2);
        height: 540px; } }
    @media (max-width: 61.24em) {
      [data-view="school-detail"] [section-type="map-right"] .map-header-main {
        background: #4e8c43;
        margin-bottom: 14rem; } }
    @media (max-width: 46.24em) {
      [data-view="school-detail"] [section-type="map-right"] .map-header-main {
        margin-bottom: 3rem; } }

[data-view="school-detail"] [section-type="stats"] {
  margin-top: 0;
  margin-bottom: 8rem; }
  [data-view="school-detail"] [section-type="stats"] .card-header-content {
    margin-top: 0;
    margin-bottom: 4rem; }
  @media (max-width: 61.24em) {
    [data-view="school-detail"] [section-type="stats"] .card-header-wrapper {
      padding-bottom: 0; } }

[data-view="school-detail"] [section-type="list-tags"] {
  padding-top: 3rem; }
  [data-view="school-detail"] [section-type="list-tags"] .list-element-wrapper {
    width: calc(66.666% - 35px); }
    [data-view="school-detail"] [section-type="list-tags"] .list-element-wrapper .list-element {
      margin-top: 30px;
      margin-bottom: 30px;
      padding-top: 30px;
      padding-bottom: 30px;
      background-image: linear-gradient(to right, rgba(78, 140, 67, 0.25) 33%, rgba(255, 255, 255, 0) 0%);
      background-position: bottom;
      background-size: 9px 1px;
      background-repeat: repeat-x; }
      [data-view="school-detail"] [section-type="list-tags"] .list-element-wrapper .list-element:first-child, [data-view="school-detail"] [section-type="list-tags"] .list-element-wrapper .list-element:last-child {
        padding-top: 0; }
      [data-view="school-detail"] [section-type="list-tags"] .list-element-wrapper .list-element .list-element-content h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #4e8c43;
        margin-bottom: 0.2rem; }
      [data-view="school-detail"] [section-type="list-tags"] .list-element-wrapper .list-element .list-element-content .sub-article-element {
        font-size: 0.875rem;
        font-weight: 700;
        color: #91929a;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
        display: inline-block; }
        [data-view="school-detail"] [section-type="list-tags"] .list-element-wrapper .list-element .list-element-content .sub-article-element span {
          font-weight: 600; }
  @media (max-width: 61.24em) {
    [data-view="school-detail"] [section-type="list-tags"] {
      padding-top: 0; }
      [data-view="school-detail"] [section-type="list-tags"] .list-element-wrapper {
        width: 80%;
        display: block;
        margin-right: auto;
        margin-left: auto; } }
  @media (max-width: 61.24em) {
    [data-view="school-detail"] [section-type="list-tags"] .list-element-wrapper {
      width: 100%; } }

[data-view="school-detail"] [section-type="3columns"] .content-container .content-sub-title {
  margin-bottom: 0; }
  [data-view="school-detail"] [section-type="3columns"] .content-container .content-sub-title .svg {
    position: relative;
    top: 3px;
    fill: #f17d00;
    margin-right: 2px; }

[data-view="register"] [section-type="register-form"] {
  padding-top: 6rem;
  padding-bottom: 8rem; }
  [data-view="register"] [section-type="register-form"] .form-container {
    width: calc(58.333% - 80px);
    margin-right: auto;
    margin-left: auto; }
    @media (max-width: 61.24em) {
      [data-view="register"] [section-type="register-form"] .form-container {
        width: 80%; } }
    @media (max-width: 46.24em) {
      [data-view="register"] [section-type="register-form"] .form-container {
        width: 100%; } }
  [data-view="register"] [section-type="register-form"] .disclaimer-message {
    margin-top: 4rem;
    margin-bottom: 4rem; }

[data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] {
  padding-top: 0;
  padding-bottom: 0; }

[data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] {
  padding-top: 6rem;
  padding-bottom: 10rem; }
  [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration {
    top: 0;
    width: 100%; }
    [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .filters-element-container-bigger {
      width: 100%; }
      [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .filters-element-container-bigger .bars-search {
        border: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        font-style: italic; }
      [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .filters-element-container-bigger .svg {
        fill: #f17d00; }
      [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .filters-element-container-bigger .bars-submit {
        background: #f2f7fa;
        border: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
    [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .select-filters {
      display: block; }
      [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .select-filters li {
        display: inline-block;
        margin-top: 2.5rem;
        width: 25.5%; }
        [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .select-filters li .select-container {
          width: 100%; }
        [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .select-filters li:nth-child(3n+2) {
          margin-right: 11.3%;
          margin-left: 11.3%; }
      @media (max-width: 61.24em) {
        [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .select-filters {
          width: 75%;
          margin-right: auto;
          margin-left: auto; }
          [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .select-filters li {
            width: 100%; }
            [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .select-filters li:nth-child(3n+2) {
              margin-right: 0;
              margin-left: 0; } }
      @media (max-width: 46.24em) {
        [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .overlap-block-registration .select-filters {
          width: 100%; } }
  [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] .bars-list {
    margin-top: 2rem; }
  @media (max-width: 46.24em) {
    [data-view="complete-registration-step-1-1"] [section-type="listing-blocks"] {
      padding-bottom: 6rem; } }

[data-view="complete-registration-step-1-1"] [section-type="full-download"] {
  position: relative;
  background: white;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0;
  padding-bottom: 0; }
  [data-view="complete-registration-step-1-1"] [section-type="full-download"]:before {
    left: 0;
    top: auto;
    bottom: 0; }
  [data-view="complete-registration-step-1-1"] [section-type="full-download"] .container {
    background: #f2f7fa;
    padding-top: 4rem;
    padding-bottom: 4rem; }
    [data-view="complete-registration-step-1-1"] [section-type="full-download"] .container .section-title {
      font-weight: normal;
      margin-bottom: 1.5rem; }
    [data-view="complete-registration-step-1-1"] [section-type="full-download"] .container p {
      width: 40%;
      margin: 0 auto;
      display: block;
      color: #91929a; }
      @media (max-width: 46.24em) {
        [data-view="complete-registration-step-1-1"] [section-type="full-download"] .container p {
          width: 80%; } }
    [data-view="complete-registration-step-1-1"] [section-type="full-download"] .container .button-full .svg {
      position: relative;
      top: 4px;
      fill: white;
      right: -20px; }
    [data-view="complete-registration-step-1-1"] [section-type="full-download"] .container .button-full:hover .svg {
      right: -30px; }
    @media (max-width: 46.24em) {
      [data-view="complete-registration-step-1-1"] [section-type="full-download"] .container .button-full {
        display: block;
        width: 80%;
        margin-right: auto;
        margin-left: auto;
        padding-right: 1rem;
        padding-left: 1rem; } }

[data-view="complete-registration-step-1-2"] [section-type="register-form"] {
  padding-top: 6rem;
  padding-bottom: 10rem; }

[data-view="complete-registration-step-2"] [section-type="register-form"] {
  padding-top: 6rem;
  padding-bottom: 10rem; }
  [data-view="complete-registration-step-2"] [section-type="register-form"] .section-header-centered {
    padding-bottom: 2rem; }
  [data-view="complete-registration-step-2"] [section-type="register-form"] .buttons-container {
    margin-top: 4rem; }

[data-view="complete-registration-step-2-teacher"] [section-type="register-form"] {
  padding-top: 6rem;
  padding-bottom: 10rem; }
  [data-view="complete-registration-step-2-teacher"] [section-type="register-form"] .section-header-centered {
    padding-bottom: 2rem; }
  [data-view="complete-registration-step-2-teacher"] [section-type="register-form"] .buttons-container {
    margin-top: 4rem; }

[data-view="complete-registration-step-3"] [section-type="register-form"] {
  padding-top: 6rem;
  padding-bottom: 10rem; }
  [data-view="complete-registration-step-3"] [section-type="register-form"] .section-header-centered {
    padding-bottom: 2rem; }
  [data-view="complete-registration-step-3"] [section-type="register-form"] .buttons-container {
    margin-top: 4rem; }

[data-view="professional_dev"] .card-header-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem; }
  [data-view="professional_dev"] .card-header-wrapper .card-header-content--picture-right {
    margin-top: 0;
    margin-bottom: 0; }
  [data-view="professional_dev"] .card-header-wrapper .card-content p {
    font-size: 1rem;
    color: white;
    line-height: 1.875rem;
    margin-top: 1rem; }

[data-view="professional_dev"] [section-type="vertical-listing"] .list-element .list-element-content h2 {
  margin-bottom: 0.2rem; }

[data-view="professional_dev"] [section-type="vertical-listing"] .list-element .list-element-content .sub-article-element {
  display: block;
  margin-bottom: 0.3rem; }

[data-view="featured-kit"] .card-header-content--picture-right {
  margin-top: 0;
  margin-bottom: 0; }

[data-view="featured-kit"] .list-element-wrapper {
  padding-top: 3rem;
  padding-bottom: 0; }

[data-view="featured-kit"] [aside] {
  padding-top: 2.2rem;
  padding-bottom: 0; }

[data-view="featured-kit"] .form-container {
  width: 100%; }
