@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=PT+Sans&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

.totalCenter {
  display: flex;
  justify-content: center;
  align-items: center; }

.horizontalCenter {
  display: flex;
  justify-content: center; }

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

.verticalCenterColumn {
  display: flex;
  align-items: center;
  flex-direction: column; }

.header {
  position: fixed;
  top: 0;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: transform 200ms ease-in-out 0s;
  -moz-transition: transform 200ms ease-in-out 0s;
  -ms-transition: transform 200ms ease-in-out 0s;
  -o-transition: transform 200ms ease-in-out 0s;
  transition: transform 200ms ease-in-out 0s;
  -webkit-transition: background 300ms ease-in-out 0s;
  -moz-transition: background 300ms ease-in-out 0s;
  -ms-transition: background 300ms ease-in-out 0s;
  -o-transition: background 300ms ease-in-out 0s;
  transition: background 300ms ease-in-out 0s;
  z-index: 10;
  background: transparent; }
  .header.transparent {
    background: transparent; }
    .header.transparent .header__desktopLogo {
      display: none; }
      .header.transparent .header__desktopLogo.active {
        display: block; }
        @media all and (max-width: 425px) {
          .header.transparent .header__desktopLogo.active {
            display: none; } }
  .header.semitransparent {
    background: rgba(255, 255, 255, 0.8); }
    .header.semitransparent .white-mobile-logo {
      display: none; }
    .header.semitransparent .header__desktopLogo {
      display: none; }
      .header.semitransparent .header__desktopLogo.orange-logo {
        display: block; }
        @media all and (max-width: 425px) {
          .header.semitransparent .header__desktopLogo.orange-logo {
            display: none; } }
    @media all and (max-width: 425px) {
      .header.semitransparent .orange-mobile-logo {
        display: block; } }
  @media all and (max-width: 767px) {
    .header {
      height: 50px;
      background: rgba(255, 255, 255, 0.9); } }
  .header__iconButton {
    flex-shrink: 0;
    margin: 15px; }
    @media all and (max-width: 767px) {
      .header__iconButton {
        margin: 8px; } }
  .header__mobileLogo {
    display: none;
    height: 35px; }
    @media all and (max-width: 425px) {
      .header__mobileLogo.active {
        display: block; } }
  .header__desktopLogo {
    height: 45px; }
    @media all and (max-width: 767px) {
      .header__desktopLogo {
        height: 35px; } }
  .header__buttonsContainer {
    display: flex;
    align-items: baseline;
    margin-top: 23px; }
    @media all and (max-width: 767px) {
      .header__buttonsContainer {
        margin-top: 8px; } }
    .header__buttonsContainer > * {
      margin-right: 20px; }
      .header__buttonsContainer > *.primary-button {
        padding: 8px 20px;
        margin-right: 30px;
        box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.15); }
        @media all and (max-width: 767px) {
          .header__buttonsContainer > *.primary-button {
            margin-right: 20px; } }
  .header.hide-header {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%); }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

.totalCenter {
  display: flex;
  justify-content: center;
  align-items: center; }

.horizontalCenter {
  display: flex;
  justify-content: center; }

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

.verticalCenterColumn {
  display: flex;
  align-items: center;
  flex-direction: column; }

.footer-section {
  min-width: 250px;
  max-width: 380px;
  overflow-wrap: break-word;
  line-height: 24px; }
  .footer-section h1 {
    font-size: 18px;
    color: var(--primary-0);
    font-weight: 700;
    margin-bottom: 5px; }
  .footer-section a {
    color: var(--primary-0); }
  .footer-section__content {
    padding-top: 10px; }
  .footer-section .newsletter-subscribe {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px; }
    .footer-section .newsletter-subscribe .input-container-host {
      width: 190px; }
    .footer-section .newsletter-subscribe .input-position .newsletter-input {
      margin: 0;
      padding: 15px 0 0;
      border: none;
      width: 190px; }
      .footer-section .newsletter-subscribe .input-position .newsletter-input .newsletter-input-field {
        width: 100%;
        padding: 10px; }
    .footer-section .newsletter-subscribe .input-position.input-error .validation-error {
      width: 320px;
      top: 0;
      font-size: 16px; }
    .footer-section .newsletter-subscribe .c-btn--default.c-btn--primary {
      width: 130px;
      padding-top: 10px;
      padding-bottom: 10px;
      vertical-align: middle; }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

.totalCenter {
  display: flex;
  justify-content: center;
  align-items: center; }

.horizontalCenter {
  display: flex;
  justify-content: center; }

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

.verticalCenterColumn {
  display: flex;
  align-items: center;
  flex-direction: column; }

.footer {
  background: var(--dark-background);
  margin-top: 50px;
  padding: 52px 0; }
  .footer__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px; }
    @media all and (max-width: 1198px) {
      .footer__container {
        padding: 0 15%; } }
    @media all and (max-width: 900px) {
      .footer__container {
        padding: 0 10%; } }
    @media all and (max-width: 767px) {
      .footer__container {
        padding: 0 5%; } }
  .footer a {
    text-decoration: none; }
  .footer__desktopLogo {
    align-self: center;
    height: 60px;
    width: 160px; }
    @media all and (max-width: 1198px) {
      .footer__desktopLogo {
        display: none; } }
  .footer__mobileLogo {
    display: none; }
    @media all and (max-width: 1198px) {
      .footer__mobileLogo {
        display: block;
        height: 35px;
        width: 35px;
        margin: 0 auto; } }
  .footer__links {
    font-size: 14px;
    line-height: 24px;
    width: 70%;
    margin: 20px auto 40px;
    flex-wrap: wrap; }
    @media all and (max-width: 1198px) {
      .footer__links {
        font-size: 13px;
        margin: 20px auto; } }
    @media all and (max-width: 767px) {
      .footer__links {
        width: 100%; } }
    .footer__links a {
      color: var(--neutral-0); }
  .footer .separator-line {
    align-self: center;
    height: 11px;
    width: 2px;
    background-color: var(--primary-0);
    margin: 1px 10px; }
    @media all and (max-width: 1198px) {
      .footer .separator-line {
        margin: 3px 10px; } }
  .footer__info {
    display: flex;
    font-size: 16px;
    color: var(--neutral-0); }
    .footer__info h1 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--primary-0); }
    .footer__info > div {
      padding: 0 15px; }
    @media all and (max-width: 1198px) {
      .footer__info {
        display: none; } }
  .footer__line {
    height: 1px;
    margin: 30px 20px 20px;
    background: var(--neutral-0); }
    @media all and (max-width: 1198px) {
      .footer__line {
        margin: 0 40px 25px; } }
  .footer__contributeLink.primary-button {
    font-size: 16px;
    text-align: center;
    line-height: normal;
    padding: 5px 15px;
    align-self: center;
    margin-top: 25px;
    font-weight: 600; }
    @media all and (max-width: 1198px) {
      .footer__contributeLink.primary-button {
        font-size: 16px; } }
  .footer__socialLogos {
    margin: 20px 0; }
    @media all and (max-width: 1198px) {
      .footer__socialLogos {
        margin: 0; }
        .footer__socialLogos img {
          height: 22px;
          width: 22px; } }
  .footer__helpfulInfo {
    text-align: center; }
    @media all and (max-width: 1198px) {
      .footer__helpfulInfo {
        margin-top: 20px; } }
    .footer__helpfulInfo a {
      color: var(--primary-0); }
      @media all and (max-width: 1198px) {
        .footer__helpfulInfo a {
          font-size: 12px; } }
    .footer__helpfulInfo p {
      font-size: 16px;
      color: var(--neutral-0); }
      @media all and (max-width: 1198px) {
        .footer__helpfulInfo p {
          font-size: 12px; } }
      .footer__helpfulInfo p:first-child {
        margin-bottom: 16px; }
      .footer__helpfulInfo p.site-version {
        font-size: 14px;
        margin-top: 16px; }
        @media all and (max-width: 1198px) {
          .footer__helpfulInfo p.site-version {
            font-size: 12px;
            margin-top: 8px; } }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

.totalCenter {
  display: flex;
  justify-content: center;
  align-items: center; }

.horizontalCenter {
  display: flex;
  justify-content: center; }

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

.verticalCenterColumn {
  display: flex;
  align-items: center;
  flex-direction: column; }

.homepage-slider {
  height: 100vh;
  padding: 0 5% 0 15%;
  justify-content: center;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--neutral-0); }
  @media all and (max-width: 767px) {
    .homepage-slider {
      padding: 5% 17% 5% 23%; } }
  .homepage-slider::before {
    height: 100vh;
    width: 100%;
    position: absolute;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: ''; }
  .homepage-slider > div > p {
    margin: 15px 0; }
    @media all and (max-width: 767px) {
      .homepage-slider > div > p {
        margin: 12px 0; } }
  .homepage-slider > div {
    width: 55%; }
    @media all and (max-width: 767px) {
      .homepage-slider > div {
        width: 100%; } }
  .homepage-slider > * {
    margin: 12px 0;
    z-index: 2;
    line-height: 24px;
    font-weight: 500; }
  .homepage-slider h2 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 500; }
    @media all and (max-width: 900px) {
      .homepage-slider h2 {
        font-size: 25px;
        margin-bottom: 0; } }
  .homepage-slider .secondary-button {
    padding: 1px 15px;
    font-weight: 700; }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

.totalCenter {
  display: flex;
  justify-content: center;
  align-items: center; }

.horizontalCenter {
  display: flex;
  justify-content: center; }

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

.verticalCenterColumn {
  display: flex;
  align-items: center;
  flex-direction: column; }

.navigation {
  position: fixed;
  top: 50%;
  left: 10px;
  cursor: pointer;
  color: var(--primary-0); }
  @media all and (max-width: 767px) {
    .navigation {
      left: 0; } }
  .navigation .nav-line {
    height: 4px;
    width: 22px;
    background-color: var(--neutral-0);
    transition: all 0.1s ease-in-out;
    margin: 3px 10px; }
  .navigation .nav-line-active {
    width: 44px;
    background-color: var(--primary-0); }
    @media all and (max-width: 767px) {
      .navigation .nav-line-active {
        width: 32px; } }
  .navigation .nav-current-page {
    font-weight: 700;
    position: absolute;
    top: -6px;
    left: 60px;
    font-size: 14px; }
    @media all and (max-width: 767px) {
      .navigation .nav-current-page {
        left: 50px; } }
  .navigation .nav-item {
    position: relative;
    height: 9px; }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

.totalCenter {
  display: flex;
  justify-content: center;
  align-items: center; }

.horizontalCenter {
  display: flex;
  justify-content: center; }

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

.verticalCenterColumn {
  display: flex;
  align-items: center;
  flex-direction: column; }

.homepage-slideshow .arrow-navigation {
  position: fixed;
  bottom: 30px;
  left: 50%;
  height: 19px;
  width: 30px; }
  @media all and (max-width: 767px) {
    .homepage-slideshow .arrow-navigation {
      display: none; } }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

.totalCenter {
  display: flex;
  justify-content: center;
  align-items: center; }

.horizontalCenter {
  display: flex;
  justify-content: center; }

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

.verticalCenterColumn {
  display: flex;
  align-items: center;
  flex-direction: column; }

.share-popup {
  display: none;
  user-select: none; }
  .share-popup__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 99;
    margin: auto; }
    .share-popup__wrapper::before {
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      background-color: var(--dark);
      content: '';
      opacity: 0.8;
      z-index: 1; }
  .share-popup__content {
    height: 460px;
    width: 690px;
    position: relative;
    top: 20%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-animation: fadeInShare ease-in 0.5s;
    -moz-animation: fadeInShare ease-in 0.5s;
    -ms-animation: fadeInShare ease-in 0.5s;
    -o-animation: fadeInShare ease-in 0.5s;
    animation: fadeInShare ease-in 0.5s;
    background-color: var(--neutral-0);
    z-index: 99; }

@keyframes fadeInShare {
  0% {
    top: -50%; }
  100% {
    top: 20%; } }
    @media all and (max-width: 767px) {
      .share-popup__content {
        width: 90%; } }
  .share-popup__drawing {
    height: 120px;
    width: 126px;
    margin-top: 50px;
    margin-bottom: 45px;
    object-fit: contain; }
    @media all and (max-width: 767px) {
      .share-popup__drawing {
        height: 90px;
        width: 100px;
        margin-top: 40px;
        margin-bottom: 30px; } }
  .share-popup__title {
    font-size: 24px;
    color: var(--text-dark-gray);
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    letter-spacing: normal;
    text-transform: uppercase;
    font-strech: normal;
    margin: 22px 0; }
    @media all and (max-width: 767px) {
      .share-popup__title {
        height: auto;
        width: 100%;
        margin-bottom: 10px;
        padding: 0 10px;
        font-size: 16px; } }
  .share-popup__info {
    font-size: 16px;
    color: var(--text-medium-gray);
    text-align: center;
    line-height: 1.33;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    letter-spacing: normal;
    font-strech: normal;
    margin: 0 27px 40px; }
    @media all and (max-width: 767px) {
      .share-popup__info {
        margin: 0 30px 40px; } }
  .share-popup__form {
    display: flex;
    flex-direction: row;
    position: relative; }
    @media all and (max-width: 320px) {
      .share-popup__form {
        justify-content: center;
        align-items: center;
        flex-direction: column; } }
    .share-popup__form button {
      height: 36px;
      width: 140px;
      border: none; }
      .share-popup__form button:hover {
        cursor: pointer; }
      @media all and (max-width: 767px) {
        .share-popup__form button {
          font-size: 12px;
          width: 112px; } }
      @media all and (max-width: 320px) {
        .share-popup__form button {
          margin-top: 20px; } }
      @media all and (max-width: 767px) {
        .share-popup__form button span {
          font-size: 12px; } }
    .share-popup__form .share-popup__input {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 36px;
      width: 281px;
      margin: 0;
      border: none;
      background-color: var(--input-color); }
      @media all and (max-width: 767px) {
        .share-popup__form .share-popup__input {
          max-width: 170px; } }
      .share-popup__form .share-popup__input input {
        border: none;
        text-align: center;
        background-color: var(--input-color);
        width: 100%; }
        @media all and (max-width: 767px) {
          .share-popup__form .share-popup__input input {
            max-width: 160px;
            line-height: 20px; } }
        @media all and (max-width: 320px) {
          .share-popup__form .share-popup__input input {
            width: auto; } }
        .share-popup__form .share-popup__input input::placeholder {
          color: var(--dark);
          line-height: 1.88;
          font-weight: bold;
          letter-spacing: normal; }
          @media all and (max-width: 767px) {
            .share-popup__form .share-popup__input input::placeholder {
              font-size: 12px; } }
  .share-popup .validation-error {
    top: 40px !important;
    width: 370px; }
    @media all and (max-width: 767px) {
      .share-popup .validation-error {
        font-size: 12px !important;
        width: 310px; } }
  .share-popup__terms {
    margin-top: 28px;
    margin-bottom: 22px;
    width: 50%; }
    @media all and (max-width: 767px) {
      .share-popup__terms {
        width: 90%; } }
  .share-popup__info {
    margin: 0;
    font-size: 14px;
    text-align: center; }
  .share-popup__link {
    color: var(--primary-0); }
  .share-popup__subscribe-text {
    text-align: center;
    width: 70%;
    margin-bottom: 30px; }
    @media all and (max-width: 767px) {
      .share-popup__subscribe-text {
        width: 90%; } }

/**
* FONT variables
*/
/*
    added null property so you can get away using only what you need from this mixin
    ex1: @include font($font-size: 10px, $line-height: 1em);
    ex2: @include font(10px, red,  center);
    you can use it without variables but you MUST keep the order
  */
/* GENERAL MIXINS */
/*
    on event like: hover, focus or active, execute style;
    ex: .element { color: red;   @include on_event { color: blue }}
  */
/*
    this is the most solid clearfix there is, it works even on IE6;
    ex: .container-with-floated-children { @extend %clearfix; }
  */
/*
  remove margin
*/
/*
    add margin values
  */
/*
  remove padding
*/
/*
      add padding values
    */
/*
    mixin for setting the possition;
    if you don't want to set set/right/top/bottom you can use it like:
    @include position(absolute);
    .element { @include position(absolute, 10px, 20px, 30px, 40px); }
    this is if you want to define top, right bottom, left in this exact order
    .element { @include position(absolute, $top: 10px, left: 20px); }
    this is if you don't keep the order
  */
/*
    mixin to vertically-align: center a selector;
      ex: .txt { @include vertical_center(absolute); }
    beware: gives position as param and adds top, left: 50%, and translates the container to center it.
  */
/*
      mixin to vertically-align: center and horizontal align: center a selector;
        ex: .txt { @include force_center(absolute); }
      beware: gives position as param and adds top, left: 50%, and translates the container to center it.
    */
/*
      added null property so you can get away using only what you need from this mixin
      ex: good: @include display($justify-content: center, $align-items: center);
    */
/*
  added null property so you can get away using only what you need from this mixin
  ex: good: @include size($width: 100%, $max-widht: 320px);
  bad: @include size(100px, 200px); works anyhow but it's difficult to maintain
*/
/*
      add calculated values for length units
      ex: calc(height, '100% - 41px')
    */
/*
    fallback mixin for any vendor prefix:
      ex: @include prefix(transform, rotate(42deg), webkit moz ms o);
    you don't have to include all 4 fallbacks, you have to include at least 1;
  */
.container-fluid {
  padding: 0 15px 15px 15px; }
  @media all and (max-width: 767px) {
    .container-fluid {
      padding: 0 25px 20px 25px; } }

.main-wrap {
  padding-top: 53px; }

.section-container {
  margin-bottom: 15px; }
  @media all and (max-width: 767px) {
    .section-container {
      margin-bottom: 10px; } }

.no-scroll {
  overflow: hidden; }

.hidden-scroll-bar::-webkit-scrollbar {
  display: none; }

p {
  margin-bottom: 10px;
  margin-top: 0; }

button:focus {
  outline: none; }

#__next {
  position: relative; }

.padding-bottom--30 {
  padding-bottom: 30px; }

.social-button {
  margin-right: 15px; }

/* Media queries breakpoints variables */
/* Z-index variables */
.verticalCenter {
  display: flex;
  align-items: center; }

.totalCenter {
  display: flex;
  justify-content: center;
  align-items: center; }

.horizontalCenter {
  display: flex;
  justify-content: center; }

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.directionColumn {
  display: flex;
  flex-direction: column; }

.directionRow {
  flex-direction: row; }

.resetToDirectionColumn {
  flex-direction: column; }

.verticalCenterColumn {
  display: flex;
  align-items: center;
  flex-direction: column; }

.cookies-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background-color: var(--primary-0);
  color: var(--neutral-0);
  z-index: 9;
  opacity: 0.95; }
  @media all and (max-width: 767px) {
    .cookies-popup {
      height: 45%; } }
  .cookies-popup__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
    @media all and (max-width: 767px) {
      .cookies-popup__wrapper {
        width: 80%;
        text-align: center; } }
  .cookies-popup .secondary-button {
    border: var(--neutral-0) solid 3px;
    color: var(--neutral-0);
    margin-top: 40px; }
  .cookies-popup p {
    margin: 0;
    line-height: 25px; }
  .cookies-popup a {
    color: var(--neutral-0);
    font-weight: 600;
    font-style: italic;
    text-decoration: underline; }
  .cookies-popup .flex {
    display: flex; }

