@charset "UTF-8";
a {
  color: #000000;
}
a:hover {
  color: #2c9479;
}

img {
  display: block;
  width: 100%;
  pointer-events: none;
}

header, section, footer {
  filter: opacity(100%);
  transition: filter 0.5s ease-out;
}

section, footer {
  position: relative;
  padding: 3rem 1rem;
}
@media screen and (min-width: 768px) {
  section, footer {
    padding: 4rem 2rem;
  }
}
@media screen and (min-width: 1200px) {
  section, footer {
    padding: 4rem 3rem;
  }
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

b {
  font-family: "Larken-Medium";
}

i {
  font-family: "Larken-Italic";
}

.mb-section {
  margin-bottom: 1rem !important;
}
@media screen and (min-width: 768px) {
  .mb-section {
    margin-bottom: 6rem !important;
  }
}

.mb-element {
  margin-bottom: 1rem !important;
}
@media screen and (min-width: 768px) {
  .mb-element {
    margin-bottom: 3rem !important;
  }
}

.mt-element {
  margin-top: 3rem !important;
}

.max-920 {
  max-width: 920px !important;
}

.max-wide {
  max-width: 1344px !important;
}

.t-center {
  text-align: center !important;
}

.t-right {
  text-align: right !important;
}

.t-left {
  text-align: left !important;
}

.upper {
  text-transform: uppercase;
}

.i-regular-italic {
  font-family: "Larken-Italic";
}

i, .i-ThinItalic {
  font-family: "Larken-ThinItalic";
}

.green {
  color: #2c9479;
}

.highlighted {
  background-color: rgba(44, 148, 121, 0.1);
}

.columns {
  display: flex;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
@media screen and (max-width: 640px) {
  .columns {
    flex-direction: column;
  }
}

.columns:last-child {
  margin-bottom: -0.75rem;
}

.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
  position: relative;
}

.mtop-2 {
  margin-top: 0.5rem;
}

.mtop-3 {
  margin-top: 1rem;
}

.mtop-4 {
  margin-top: 1.5rem;
}

.mtop-5 {
  margin-top: 2rem;
}

.mtop-6 {
  margin-top: 3rem;
}

.mtop-2-negative {
  margin-top: -0.5rem;
}

.mtop-3-negative {
  margin-top: -1rem;
}

.mtop-4-negative {
  margin-top: -1.5rem;
}

.mtop-5-negative {
  margin-top: -2rem;
}

.mtop-5-negative {
  margin-top: -2.5rem;
}

@media (min-width: 768px) {
  .mtop-md-0 {
    margin-top: 0rem;
  }
  .mtop-md-2 {
    margin-top: 2rem;
  }
  .mtop-md-3 {
    margin-top: 3rem;
  }
  .mtop-md-4 {
    margin-top: 4rem;
  }
  .mtop-md-5 {
    margin-top: 5rem;
  }
  .mtop-md-6 {
    margin-top: 6rem;
  }
  .mtop-md-2-negative {
    margin-top: -2rem;
  }
  .mtop-md-3-negative {
    margin-top: -3rem;
  }
  .mtop-md-4-negative {
    margin-top: -4rem;
  }
  .mtop-md-5-negative {
    margin-top: -5rem;
  }
  .mtop-md-6-negative {
    margin-top: -6rem;
  }
}
@media (min-width: 1200px) {
  .mtop-xl-0 {
    margin-top: 0rem;
  }
  .mtop-xl-2 {
    margin-top: 2rem;
  }
  .mtop-xl-3 {
    margin-top: 3rem;
  }
  .mtop-xl-4 {
    margin-top: 4rem;
  }
  .mtop-xl-5 {
    margin-top: 5rem;
  }
  .mtop-xl-6 {
    margin-top: 6rem;
  }
  .mtop-xl-3-negative {
    margin-top: -2rem;
  }
  .mtop-xl-2-negative {
    margin-top: -3rem;
  }
  .mtop-xl-4-negative {
    margin-top: -4rem;
  }
  .mtop-xl-5-negative {
    margin-top: -5rem;
  }
  .mtop-xl-6-negative {
    margin-top: -6rem;
  }
}
.center {
  margin: 0 auto;
  justify-content: center;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: 0.9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[tooltip]::before {
  content: "";
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}

[tooltip]::after {
  content: attr(tooltip); /* magic! */
  /* most of the rest of this is opinion */
  font-family: "Larken-Italic";
  text-align: center;
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: 0.3ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: rgb(255, 255, 255);
  color: #9096a8;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip=""]::before,
[tooltip=""]::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^=up]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: rgb(255, 255, 255);
}

[tooltip]:not([flow])::after,
[tooltip][flow^=up]::after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^=up]::before,
[tooltip][flow^=up]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^=down]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: rgb(255, 255, 255);
}

[tooltip][flow^=down]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^=down]::before,
[tooltip][flow^=down]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

/* FLOW: LEFT */
[tooltip][flow^=left]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: rgb(255, 255, 255);
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^=left]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^=right]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: rgb(255, 255, 255);
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[tooltip][flow^=right]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^=up]:hover::before,
[tooltip][flow^=up]:hover::after,
[tooltip][flow^=down]:hover::before,
[tooltip][flow^=down]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^=left]:hover::before,
[tooltip][flow^=left]:hover::after,
[tooltip][flow^=right]:hover::before,
[tooltip][flow^=right]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

/**
 * @license
 * MyFonts Webfont Build ID 4040878, 2021-04-18T15:50:17-0400
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: Larken-Thin by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/thin/
 * 
 * Webfont: Larken-ThinItalic by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/thin-italic/
 * 
 * Webfont: Larken-Light by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/light/
 * 
 * Webfont: Larken-LightItalic by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/light-italic/
 * 
 * Webfont: Larken-Regular by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/regular/
 * 
 * Webfont: Larken-Italic by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/italic/
 * 
 * Webfont: Larken-Medium by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/medium/
 * 
 * Webfont: Larken-MediumItalic by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/medium-italic/
 * 
 * Webfont: Larken-Bold by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/bold/
 * 
 * Webfont: Larken-BoldItalic by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/bold-italic/
 * 
 * Webfont: Larken-ExtraBold by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/extra-bold/
 * 
 * Webfont: Larken-ExtraBoldItalic by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/extra-bold-italic/
 * 
 * Webfont: Larken-Black by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/black/
 * 
 * Webfont: Larken-BlackItalic by EllenLuff
 * URL: https://www.myfonts.com/fonts/ellenluff/larken/black-italic/
 * 
 * 
 * Webfonts copyright: Copyright © 2020 by Tom Anders Watkins &amp; Ellen Luff. All rights reserved.
 * 
 * © 2021 MyFonts Inc
*/
/* @import must be at top of file, otherwise CSS will not work */
/* @import url("//hello.myfonts.net/count/3da8ae"); */
@font-face {
  font-family: "Larken-Light";
  src: url("webFonts/LarkenLight/font.woff2") format("woff2"), url("webFonts/LarkenLight/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-ThinItalic";
  src: url("webFonts/LarkenThinItalic/font.woff2") format("woff2"), url("webFonts/LarkenThinItalic/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-Regular";
  src: url("webFonts/LarkenRegular/font.woff2") format("woff2"), url("webFonts/LarkenRegular/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-Thin";
  src: url("webFonts/LarkenThin/font.woff2") format("woff2"), url("webFonts/LarkenThin/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-LightItalic";
  src: url("webFonts/LarkenLightItalic/font.woff2") format("woff2"), url("webFonts/LarkenLightItalic/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-BlackItalic";
  src: url("webFonts/LarkenBlackItalic/font.woff2") format("woff2"), url("webFonts/LarkenBlackItalic/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-ExtraBold";
  src: url("webFonts/LarkenExtraBold/font.woff2") format("woff2"), url("webFonts/LarkenExtraBold/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-ExtraBoldItalic";
  src: url("webFonts/LarkenExtraBoldItalic/font.woff2") format("woff2"), url("webFonts/LarkenExtraBoldItalic/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-Black";
  src: url("webFonts/LarkenBlack/font.woff2") format("woff2"), url("webFonts/LarkenBlack/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-BoldItalic";
  src: url("webFonts/LarkenBoldItalic/font.woff2") format("woff2"), url("webFonts/LarkenBoldItalic/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-Bold";
  src: url("webFonts/LarkenBold/font.woff2") format("woff2"), url("webFonts/LarkenBold/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-Medium";
  src: url("webFonts/LarkenMedium/font.woff2") format("woff2"), url("webFonts/LarkenMedium/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-MediumItalic";
  src: url("webFonts/LarkenMediumItalic/font.woff2") format("woff2"), url("webFonts/LarkenMediumItalic/font.woff") format("woff");
}
@font-face {
  font-family: "Larken-Italic";
  src: url("webFonts/LarkenItalic/font.woff2") format("woff2"), url("webFonts/LarkenItalic/font.woff") format("woff");
}
form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 6rem auto;
}

.send {
  margin: 0 auto;
}

.button-form {
  font-family: "Larken-ExtraBold";
  font-size: 5.5rem;
  text-align: left;
  margin-top: 1.5rem;
  border: none;
  padding: 1.2rem;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  width: auto;
  transition: all ease 0.3s;
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .button-form {
    font-size: 3.5rem;
    gap: 10px;
  }
}
.button-form img {
  width: 60px;
}
@media screen and (max-width: 767.98px) {
  .button-form img {
    width: 40px;
  }
}
.button-form:hover {
  color: #2c9479;
}

/* inputs */
.form-field {
  display: block;
  margin-bottom: 16px;
}

.form-field__label {
  font-size: 1rem;
  transform: translateY(-12px);
  display: block;
  font-weight: normal;
  left: 0;
  margin: 0;
  padding: 18px 12px 0;
  position: absolute;
  top: 0;
  transition: all 0.4s;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .form-field__label {
    font-size: 1rem;
  }
}

.form-field__control {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.form-field__bar {
  border-bottom: 2px solid #2c9479;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transition: all 0.4s;
  width: 1%;
}

.form-field__input,
.form-field__textarea {
  appearance: none;
  background: transparent;
  font-family: "Larken-Thin";
  border: 0;
  border-bottom: 1px solid rgba(186, 195, 224, 0.7);
  display: block;
  font-size: 3rem;
  margin-top: 24px;
  outline: 0;
  padding: 0 12px 10px 12px;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .form-field__input,
  .form-field__textarea {
    font-size: 2rem;
  }
}
.form-field__input:-ms-input-placeholder ~ .form-field__label,
.form-field__textarea:-ms-input-placeholder ~ .form-field__label {
  font-size: 3rem;
  transform: translateY(0);
}
@media screen and (max-width: 767.98px) {
  .form-field__input:-ms-input-placeholder ~ .form-field__label,
  .form-field__textarea:-ms-input-placeholder ~ .form-field__label {
    font-size: 2rem;
  }
}
.form-field__input:placeholder-shown ~ .form-field__label,
.form-field__textarea:placeholder-shown ~ .form-field__label {
  font-size: 3rem;
  transform: translateY(0);
}
@media screen and (max-width: 767.98px) {
  .form-field__input:placeholder-shown ~ .form-field__label,
  .form-field__textarea:placeholder-shown ~ .form-field__label {
    font-size: 2rem;
  }
}
.form-field__input:focus ~ .form-field__label,
.form-field__textarea:focus ~ .form-field__label {
  color: #2c9479;
  font-size: 1rem;
  transform: translateY(-12px);
}
@media screen and (max-width: 767.98px) {
  .form-field__input:focus ~ .form-field__label,
  .form-field__textarea:focus ~ .form-field__label {
    font-size: 1rem;
  }
}
.form-field__input:focus ~ .form-field__bar,
.form-field__textarea:focus ~ .form-field__bar {
  border-bottom: 2px solid #2c9479;
  transform: scaleX(150);
}

.form-field__textarea {
  height: 150px;
}

.check label {
  font-size: 1rem;
  line-height: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Larken-Thin";
  overflow: hidden;
  transition: background-color 0.6s ease;
}
@media screen and (max-width: 768.98px) {
  body {
    overflow: scroll;
    scroll-behavior: smooth;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 200;
  width: 100%;
  height: 100vh;
}

.page-transition {
  position: absolute;
  top: 0;
  background-color: #2c9479;
  width: 100%;
  height: 0%;
}

.fullpage-loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: white;
  z-index: 9999;
  opacity: 1;
  transition: all ease 1s;
  transition-delay: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* Loader 5 */
}
.fullpage-loader .text-gradient {
  font-size: 5rem;
  font-family: "Larken-Italic";
  margin-top: 1.5rem;
  background: linear-gradient(to right, #E3E1FA 20%, #2c9479 40%, #2c9479 60%, #E3E1FA 80%);
  background-clip: text;
  transition: all ease-in 0.3s;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: colorchange 5s linear infinite;
}
@keyframes colorchange {
  to {
    background-position: 200% center;
    transform: skew(-30deg);
  }
}
.fullpage-loader .loader-5 {
  height: 32px;
  width: 32px;
  transition: all ease-in 0.3s;
  -webkit-animation: loader-5-1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: loader-5-1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes loader-5-1 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes loader-5-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fullpage-loader .loader-5::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: auto;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #2c9479;
  border-radius: 50%;
  -webkit-animation: loader-5-2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: loader-5-2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes loader-5-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes loader-5-2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, 0, 0) scale(0.5);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.fullpage-loader .loader-5::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #2c9479;
  border-radius: 50%;
  -webkit-animation: loader-5-3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: loader-5-3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes loader-5-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(-24px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes loader-5-3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-24px, 0, 0) scale(0.5);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.fullpage-loader .loader-5 span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
}
.fullpage-loader .loader-5 span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #2c9479;
  border-radius: 50%;
  -webkit-animation: loader-5-4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: loader-5-4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes loader-5-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, 24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes loader-5-4 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 24px, 0) scale(0.5);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.fullpage-loader .loader-5 span::after {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #2c9479;
  border-radius: 50%;
  -webkit-animation: loader-5-5 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: loader-5-5 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes loader-5-5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(0, -24px, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes loader-5-5 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -24px, 0) scale(0.5);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.fullpage-loader--invisible {
  opacity: 0;
}
.fullpage-loader--invisible .loader-5,
.fullpage-loader--invisible .text-gradient {
  transform: translateY(-30px);
  opacity: 0;
}

p {
  font-size: 18px;
  margin-bottom: 1.3em;
  line-height: 1.7em;
}

.p-medium {
  font-size: 1.5rem;
}

.active {
  text-decoration: underline;
  pointer-events: none;
}

h1 {
  font-size: 3.4rem;
  font-family: "Larken-ExtraBold";
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 6.5rem;
    line-height: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 10rem;
    line-height: 9rem;
  }
}

h2 {
  font-size: 3.4rem;
  font-family: "Larken-ExtraBold";
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 6.5rem;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 7.8rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-family: "Larken-regular";
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 2.5rem;
  }
}

header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 20;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Icon 3 */
}
header #open-button {
  width: 27px;
  height: 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 9999;
  margin-left: 20px;
}
header #open-button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header #open-button span:nth-child(1) {
  top: 0px;
}
header #open-button span:nth-child(2),
header #open-button span:nth-child(3) {
  top: 8px;
}
header #open-button span:nth-child(4) {
  top: 16px;
}
header #open-button.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
header #open-button.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header #open-button.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header #open-button.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}
header .logo {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
  margin-left: 40px;
  color: #000;
}
header .menu-items {
  display: flex;
  list-style: none;
  margin-right: 15px;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  header .menu-items {
    margin-right: 40px;
  }
}
header .menu-items li {
  width: auto;
  height: 30px;
  display: grid;
}
header .menu-items li a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: lighter;
}
header .menu-items li .home,
header .menu-items li .animal,
header .menu-items li .paysage,
header .menu-items li .participer {
  width: 30px;
  background-color: black;
}
header .menu-items li .home {
  -webkit-mask: url(../images/home.svg) no-repeat;
  mask: url(../images/home.svg) no-repeat;
}
header .menu-items li .animal {
  -webkit-mask: url(../images/galerie-animal.svg) no-repeat;
  mask: url(../images/galerie-animal.svg) no-repeat;
}
header .menu-items li .paysage {
  -webkit-mask: url(../images/galerie-paysage.svg) no-repeat;
  mask: url(../images/galerie-paysage.svg) no-repeat;
}
header .menu-items li .participer {
  -webkit-mask: url(../images/participer.svg) no-repeat;
  mask: url(../images/participer.svg) no-repeat;
}
header .menu-items .active .home,
header .menu-items .active .animal,
header .menu-items .active .paysage,
header .menu-items .active .participer {
  background-color: #2c9479;
}

.scroll__down {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -200%);
}
.scroll__mouse {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 20px;
}
.scroll__wheel {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  animation: scrollDown 2.5s infinite;
}

@keyframes scrollDown {
  0% {
    top: 11px;
    opacity: 0;
  }
  15% {
    top: 11px;
    opacity: 1;
  }
  30% {
    top: 11px;
    opacity: 1;
  }
  45% {
    top: 30px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}
.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: space-between;
  transition: left 1s ease;
  background: rgb(255, 255, 255);
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  z-index: 9998;
  padding: 30px 30px 30px 80px;
}
@media screen and (min-width: 768px) {
  .menu {
    width: 50vw;
  }
}
.menu .logo-menu img {
  max-width: 140px;
  max-height: 140px;
}
.menu .menu-links .menu-item,
.menu .menu-links .net-item,
.menu .net-links .menu-item,
.menu .net-links .net-item {
  text-decoration: none;
  color: rgb(0, 0, 0);
  transition: color ease 0.3s;
}
.menu .menu-links .menu-item:hover,
.menu .menu-links .net-item:hover,
.menu .net-links .menu-item:hover,
.menu .net-links .net-item:hover {
  color: #2c9479;
}
.menu .menu-links .menu-item {
  display: block;
  font-size: 2.5rem;
  line-height: 1.5em;
  padding-left: 0;
  transition: padding-left ease 0.3s;
}
.menu .menu-links .menu-item:hover {
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .menu .menu-links .menu-item {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .menu .menu-links .menu-item {
    font-size: 4rem;
  }
}
.menu .menu-links .active {
  color: #2c9479;
}
.menu .net-links .net-item {
  display: inline-block;
  background-image: url("../images/logo-instagram.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  height: 30px;
  width: 30px;
}

.menu.open {
  left: 0;
}

.mobile-right-align {
  margin-right: 16px;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255) url(../images/header-viviers.jpg) center/cover;
  z-index: 100;
}
.hero .container {
  margin-top: -3rem;
}
.hero .hero_title .main-logo {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .hero .hero_title .main-logo {
    width: 55vw;
  }
}
@media screen and (min-width: 1600px) {
  .hero .hero_title .main-logo {
    width: 45vw;
  }
}
.hero .hero_subtitle {
  font-size: 1rem;
  color: white;
  letter-spacing: 10px;
  font-family: "Larken-Thin";
}
.hero .hero_subtitle span {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero .hero_subtitle {
    font-size: 1rem;
  }
  .hero .hero_subtitle span {
    display: inline-block;
  }
}
@media screen and (min-width: 1200px) {
  .hero .hero_subtitle {
    font-size: 1.2rem;
  }
}

.welcome p {
  font-family: "Larken-Light";
  font-size: 1.8rem;
  line-height: 1.3em;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 768px) {
  .welcome p {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 1200px) {
  .welcome p {
    font-size: 3rem;
  }
}

.intro {
  top: 0px;
}
@media screen and (min-width: 768px) {
  .intro {
    top: -100px;
  }
}
.intro .image {
  display: flex;
  justify-content: center;
}
.intro .image figure {
  width: 172px;
  position: relative;
}
.intro .text-intro {
  column-count: 2;
  column-gap: 40px;
}
@media screen and (max-width: 767.98px) {
  .intro .text-intro {
    column-count: 1;
  }
}

.intro-two-columns-section .text-intro {
  column-count: 2;
  column-gap: 40px;
}
@media screen and (max-width: 767.98px) {
  .intro-two-columns-section .text-intro {
    column-count: 1;
  }
}

.text-intro h2 {
  font-size: 1.6rem;
  color: #2c9479;
  margin-bottom: 1rem;
}

.text-gradient {
  font-family: "Larken-Italic";
  background: linear-gradient(to right, #E3E1FA 20%, #2c9479 40%, #2c9479 60%, #E3E1FA 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: colorchange 5s linear infinite;
}

@keyframes colorchange {
  to {
    background-position: 200% center;
  }
}
.gallery-animal,
.gallery-paysage {
  position: relative;
}
.gallery-animal .columns,
.gallery-paysage .columns {
  column-gap: 3.5rem;
}
.gallery-animal .columns .column,
.gallery-paysage .columns .column {
  width: 50%;
}
@media screen and (max-width: 767.98px) {
  .gallery-animal .columns .column,
  .gallery-paysage .columns .column {
    width: 100%;
  }
}
.gallery-animal .image,
.gallery-paysage .image {
  display: inline-block !important;
}
.gallery-animal .image img,
.gallery-paysage .image img {
  max-height: auto;
  max-width: 520px;
}
.gallery-animal .illustration,
.gallery-paysage .illustration {
  position: absolute;
  width: 250px;
  z-index: 5;
}
@media screen and (max-width: 1199.98px) {
  .gallery-animal .illustration,
  .gallery-paysage .illustration {
    display: none !important;
  }
}
.gallery-animal .gallery-text-column,
.gallery-paysage .gallery-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.gallery-animal .gallery-text-column .title-section,
.gallery-paysage .gallery-text-column .title-section {
  font-family: "Larken-Black";
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 2rem;
  z-index: 10;
}
.gallery-animal .gallery-text-column .title-section span,
.gallery-paysage .gallery-text-column .title-section span {
  font-family: "Larken-Italic";
  margin-left: 0px;
}
@media screen and (min-width: 768px) {
  .gallery-animal .gallery-text-column .title-section,
  .gallery-paysage .gallery-text-column .title-section {
    font-size: 5.5rem;
  }
  .gallery-animal .gallery-text-column .title-section span,
  .gallery-paysage .gallery-text-column .title-section span {
    margin-left: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .gallery-animal .gallery-text-column .title-section,
  .gallery-paysage .gallery-text-column .title-section {
    font-size: 7.8rem;
  }
}
.gallery-animal .gallery-text-column .section-links,
.gallery-paysage .gallery-text-column .section-links {
  display: flex;
  text-decoration: none;
}
.gallery-animal .gallery-text-column .section-links .h-txt,
.gallery-paysage .gallery-text-column .section-links .h-txt {
  font-family: "Larken-MediumItalic";
  font-size: 1.5em;
  color: #2e3335;
  position: relative;
  transition: all 0.3s ease;
}
.gallery-animal .gallery-text-column .section-links .b-arrow,
.gallery-paysage .gallery-text-column .section-links .b-arrow {
  display: block;
  background: url(../images/arrow-right.svg) no-repeat;
  width: 40px;
  height: 20px;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.gallery-animal .gallery-text-column .section-links:hover .h-txt,
.gallery-paysage .gallery-text-column .section-links:hover .h-txt {
  transform: translateX(-5px);
}
.gallery-animal .gallery-text-column .section-links:hover .b-arrow,
.gallery-paysage .gallery-text-column .section-links:hover .b-arrow {
  transform: translateX(5px);
}
.gallery-animal .gallery-text-column .description,
.gallery-paysage .gallery-text-column .description {
  max-width: 440px;
}

.gallery-animal .illustration {
  top: -110px;
  right: 85px;
}
.gallery-animal .gallery-text-column .title-section {
  margin-left: -60px;
}
@media screen and (max-width: 767.98px) {
  .gallery-animal .gallery-text-column .title-section {
    margin-left: 0px;
  }
}

@media screen and (max-width: 767.98px) {
  .gallery-paysage .columns {
    flex-direction: column-reverse;
  }
}
.gallery-paysage .illustration {
  top: -380px;
  left: 85px;
}
.gallery-paysage .gallery-text-column {
  text-align: right;
  align-items: flex-end;
}
.gallery-paysage .gallery-text-column .title-section {
  margin-right: -60px;
}
@media screen and (max-width: 767.98px) {
  .gallery-paysage .gallery-text-column {
    text-align: left;
    align-items: flex-start;
  }
  .gallery-paysage .gallery-text-column .title-section {
    margin-right: 0px;
  }
}

.back-link {
  display: flex;
  justify-content: center;
  text-decoration: none;
}
.back-link .b-arrow {
  display: block;
  transform: scaleX(-1);
  width: 40px;
  height: 20px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.back-link .h-txt {
  font-family: "Larken-MediumItalic";
  font-size: 1.5em;
  color: #2e3335;
  position: relative;
  transition: all 0.3s ease;
}
.back-link:hover .h-txt {
  transform: translateX(5px);
}
.back-link:hover .b-arrow {
  transform: translateX(-5px) scaleX(-1);
}

.section-links {
  display: flex;
  text-decoration: none;
}
.section-links .h-txt {
  font-family: "Larken-MediumItalic";
  font-size: 1.5em;
  color: #2e3335;
  position: relative;
  transition: all 0.3s ease;
}
.section-links .b-arrow {
  display: block;
  background: url(../images/arrow-right.svg) no-repeat;
  width: 40px;
  height: 20px;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.section-links:hover .h-txt {
  transform: translateX(-5px);
}
.section-links:hover .b-arrow {
  transform: translateX(5px);
}

.hashtag-container {
  height: 35vh;
}
@media screen and (min-width: 1200px) {
  .hashtag-container {
    height: 80vh;
  }
}

.hashtag {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10vh 0 25vh;
  --marquee-width: 100vw;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  --item-font-size: 10vw;
  counter-reset: hashtag;
  display: contents;
}

/* Make sure 3 items are visible in the viewport by setting suitable font size. */
.marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: var(--marquee-width);
  overflow: hidden;
  pointer-events: none;
}
@media screen and (min-width: 1200px) {
  .marquee {
    transform: translateY(-70%);
  }
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 5s linear infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.1s;
}

.marquee .marquee__inner {
  animation-play-state: running;
  opacity: 1;
  transition-duration: 0.4s;
}
.marquee div {
  text-align: center;
  white-space: nowrap;
  font-size: var(--item-font-size);
  padding: 0 1vw;
  line-height: 1.15;
}
@media screen and (max-width: 767.98px) {
  .marquee div {
    font-size: 6rem;
  }
}
.marquee span {
  color: #2c9479;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
img [src="assets/images/gallery/lazy-tableau-small.gif"] {
  width: 100%;
}

.app {
  height: 100%;
  width: 100%;
  background: white;
  position: relative;
  /* Hide the app on load */
}

.gallery {
  padding: 0px;
  font-size: 0;
}

.item {
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .item {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .item {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.item img [src="assets/images/gallery/lazy-horizontal-2x3-small.gif"],
.item img [src="assets/images/gallery/lazy-vertical-2x3-small.gif"],
.item img [src="assets/images/gallery/lazy-ratio4x3-horizontal-small.gif"],
.item img [src="assets/images/gallery/lazy-ratio4x3-vertical-small.gif"] {
  width: 100%;
}

.detail {
  position: fixed;
  cursor: pointer;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  z-index: 9999;
}
@media screen and (max-width: 767.98px) {
  .detail {
    flex-flow: wrap;
    align-content: center;
  }
}

.detail > img {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  height: 75vmin;
  object-fit: contain;
  width: auto;
}
@media screen and (max-width: 767.98px) {
  .detail > img {
    height: auto;
    width: 100%;
  }
}

.detail .content {
  background: none;
  height: 20vmin;
  padding: 2rem 0;
  box-sizing: border-box;
  flex-grow: 1;
  width: fit-content;
  margin: auto;
}

.detail .content > * {
  margin-bottom: 0.5rem;
}

.detail .title {
  font-size: 1.5rem;
}

.photo-section header.detail {
  justify-content: center !important;
  text-align: center;
}
.photo-section header.detail .menu-items {
  margin-right: 0px;
}
.photo-section header.detail .menu-items li {
  margin: 0;
}

.participate .illustration, .merci .illustration {
  width: 100%;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 768px) {
  .participate .illustration, .merci .illustration {
    width: 390px;
  }
}

.participate {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1920px) {
  .participate {
    height: auto;
  }
}
.participate h2 {
  white-space: pre-line;
  line-height: 5rem;
}
.participate h2 small {
  color: #2c9479;
  font-family: "Larken-italic";
  font-size: 3rem;
  line-height: 1.3em;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 767.98px) {
  .participate h2 {
    line-height: 3rem;
  }
  .participate h2 small {
    font-size: 2.3rem;
  }
}

@media (min-width: 1200px) {
  [class^=cursor] {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    box-sizing: border-box;
    pointer-events: none;
  }
  .cursor-outer {
    width: 30px;
    height: 30px;
    background: rgba(44, 148, 121, 0.2);
    transition: all 0.08s ease-out;
  }
  .cursor-outer-grow {
    background: #2c9479;
    width: 55px;
    height: 55px;
    mix-blend-mode: multiply;
    transform: translate(-50%, -50%);
  }
  .cursor-inner {
    width: 7px;
    height: 7px;
    background: #2c9479;
  }
  .cursor-inner-removed {
    opacity: 0;
  }
}
.credits::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0.5px;
  border-color: rgba(0, 0, 0, 0.2);
  display: block;
  width: 100%;
  max-width: 1320px;
  z-index: 1;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .credits::after {
    top: 0px;
  }
}
.credits .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .credits .container {
    flex-direction: column;
    gap: 1rem;
  }
}
.credits .container .social {
  display: flex;
  gap: 30px;
}
.credits .container .rigths {
  margin: 0px;
}
.credits .container .rigths span {
  font-size: 2rem;
  line-height: 0px;
  vertical-align: -webkit-baseline-middle;
}
@media screen and (max-width: 767.98px) {
  .credits .container .rigths {
    text-align: center;
  }
}
.credits .container .rigths, .credits .container .link {
  font-size: 1.4rem;
  font-family: "larken-Regular";
}

.not-found {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.not-found header {
  flex-direction: row;
}

.colums-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.colums-price .frame .img-frame {
  display: flex;
  align-items: end;
}
@media screen and (min-width: 768px) {
  .colums-price .frame .img-frame {
    height: 200px;
  }
}
.colums-price .frame h3 {
  font-family: "Larken-MediumItalic";
  font-size: 1.3rem;
  color: #2c9479;
}
.colums-price .frame ul li {
  padding: 5px 0;
}
.colums-price .frame ul .price {
  font-family: "Larken-Medium";
  font-size: 1.2rem;
}/*# sourceMappingURL=styles.css.map */