/* Footer nav start */

.nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 55px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  /* background-color: #ffffff; */
  background-color: #798478;
  display: flex;
  overflow-x: auto;
  z-index: 9999;
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  min-width: 50px;
  overflow: hidden;
  white-space: nowrap;
  font-family: sans-serif;
  font-size: 13px;
  /* color: #444444; */
  color: #fff;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.1s ease-in-out;
}

.nav__link:hover {
  background-color: #a0a083;
}

.nav__link--active {
  color: #009578;
}

.nav__icon {
  font-size: 18px;
}

/* Footer nav end */
/* Main menu positionning */
.main-nav {
  position: absolute;
 
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  background: #4c5198;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: all .375s;
}

.main-nav.is-open {
  opacity: 1;
  z-index: 100;
  visibility: visible;
}

/* Yellow band effect */
.main-nav::before {
 content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -15px;
  background: #7175e6;
  /* background: #edf2f4; */

  transform-origin: 0 0;
  transform: skew(-14deg) translateX(-120%);
  transition: all .275s .1s;
}

.main-nav.is-open::before {
  transform: skew(-14deg) translateX(0);
}

/* Skewing effect on menu links */
.main-nav ul {
  display: inline-flex;
  flex-direction: column;
  height: 93%; /* Should be 100%, but we have a notice message :D */
  align-items: flex-end;
  justify-content: center;
  transform: translateX(-18%) skew(-16deg);
}

.main-nav li {
  display: block;
  margin: .5rem 0;
  text-align: right;
  transform: skew(16deg);
}

/* Apparition effect on links */
.main-nav a {
  opacity: 0;
  transform: translateY(-10px);
}

.main-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}
.main-nav li:nth-child(1) a {
transition: all 275ms 175ms
}
.main-nav li:nth-child(2) a {
transition: all 275ms 225ms
}
.main-nav li:nth-child(3) a {
transition: all 275ms 275ms
}
.main-nav li:nth-child(4) a {
transition: all 275ms 325ms
}
.main-nav li:nth-child(5) a {
transition: all 275ms 375ms
}


/* Decoration */
.main-nav ul,
.main-nav li {
list-style: none;
padding: 0;
}
.main-nav a {
display: block;
padding: 12px 0;
/* color: #003049; */
color: white;
font-size: 1.4em;
text-decoration: none;
font-weight: bold;
}
.main-nav a:hover{
  font-size: 1.5em;
  text-decoration: underline;
  /* color: #284b63; */
  color: #e9ecef;
}

/* Burger Style: @see: https://codepen.io/CreativeJuiz/full/oMZNXy */
.open-main-nav {
position: absolute;
top: 15px;
padding-top: 20px;
right: 15px;
z-index: 1000;
background: none;
border: 0;
cursor: pointer;
}
.open-main-nav:focus {
outline: none;
}
.burger {
position: relative;
display: block;
width: 28px;
height: 4px;
margin: 0 auto;
background: #353535;
transform: skew(5deg);
transition: all .275s;
}

.burger:after,
.burger:before {
content: '';
display: block;
height: 100%;
background: #353535;
transition: all .275s;
}

.burger:after {
transform: translateY(-12px) translateX(-2px) skew(-20deg);
}

.burger:before {
transform: translateY(-16px) skew(-10deg);
}

/* Toggle State part */
.is-open .burger {
transform: skew(5deg) translateY(-8px) rotate(-45deg);
}

.is-open .burger:before {
transform: translateY(0px) skew(-10deg) rotate(75deg);
}

.is-open .burger:after {
transform: translateY(-12px) translateX(10px) skew(-20deg);
  opacity: 0;
}

/* MENU Text part */

.burger-text {
display: block;
font-size: .675rem;
letter-spacing: .05em;
margin-top: .5em;
text-transform: uppercase;
font-weight: 500;
text-align: center;
color: #5A3B5D;
}

/* .device {
position: relative;
width: 345px;
height: 600px;
background: #FFF;
border: 1px solid #EEE;
border-radius: 3px;
box-shadow: 0 0 0 10px rgba(0,0,0,.1);
} */

/* .container {
position: absolute;
top: 0; right: 0;
bottom: 0; left: 0;
overflow: hidden;
background: linear-gradient(to bottom, #eee, #ddd);
} */



/* Slow motion button */
[id="slowmo"] {
position: absolute;
top: 20px;
right: 20px;
padding: 10px;
border: 0;
font-size: 1rem;
background: #FEDC2A;
color: #5A3B5D;
font-weight: bold;
cursor: pointer;
transition: all .275s;
}

[id="slowmo"] span {
display: block;
font-weight: normal;
}

[id="slowmo"]:hover,
[id="slowmo"]:focus {
background: #5A3B5D;
color: #FEDC2A;
}

[id="slowmo"].is-slowmo span:after {
content: 'Activated';
display: block;
font-weight: bold;
}

/* When slowmotion is activated */

.is-slowmo + .device .open-main-nav .burger,
.is-slowmo + .device .open-main-nav .burger:before,
.is-slowmo + .device .open-main-nav .burger:after,
.is-slowmo + .device .main-nav,
.is-slowmo + .device .main-nav::before,
.is-slowmo + .device .main-nav a {
transition-duration: 3s;
}
.is-slowmo + .device .main-nav li:nth-child(1) a {
transition-delay: 1750ms
}
.is-slowmo + .device .main-nav li:nth-child(2) a {
transition-delay: 2250ms
}
.is-slowmo + .device .main-nav li:nth-child(3) a {
transition-delay: 2750ms
}
.is-slowmo + .device .main-nav li:nth-child(4) a {
transition-delay: 3250ms
}
.is-slowmo + .device .main-nav li:nth-child(5) a {
transition-delay: 3750ms
}

/* Notice */
.notice {
position: absolute;
bottom: -15px;
left: 0; right: 0;
padding: 20px;
background: #F2F2F2;
color: #5A3B5D;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
z-index: 100;
text-align: center;
}
.notice strong {
font-weight: 700;
}
.notice a {
padding: 2px 3px;
background: #FEDC2A;
text-decoration: none;
}


/* New start */
.css-18t94o4 {
  cursor: pointer;
}

.css-4rbku5 {
  background-color: rgba(0,0,0,0.00);
  color: inherit;
  font: inherit;
  list-style: none;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  text-align: inherit;
  text-decoration: none;
}



.css-1dbjc4n {
  -ms-flex-align: stretch;
  -ms-flex-direction: column;
  -ms-flex-negative: 0;
  -ms-flex-preferred-size: auto;
  -webkit-align-items: stretch;
  -webkit-box-align: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-basis: auto;
  -webkit-flex-direction: column;
  -webkit-flex-shrink: 0;
  align-items: stretch;
  border: 0 solid black;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-basis: auto;
  flex-direction: column;
  flex-shrink: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  min-height: 0px;
  min-width: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  position: relative;
  z-index: 0;
}

.css-901oao {
  border: 0 solid black;
  box-sizing: border-box;
  color: rgba(0,0,0,1.00);
  display: inline;
  font: 14px -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.css-cens5h {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  text-overflow: ellipsis;
}

.css-16my406 {
  color: inherit;
  font: inherit;
  white-space: inherit;
}


.r-6koalj {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.r-1xc7w19 {
  border-bottom-color: rgba(0,0,0,1.00);
  border-left-color: rgba(0,0,0,1.00);
  border-right-color: rgba(0,0,0,1.00);
  border-top-color: rgba(0,0,0,1.00);
}

.r-z2wwpe {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.r-1phboty {
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  border-top-style: solid;
}

.r-1yadl64 {
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
}

.r-1udh08x {
  overflow-x: hidden;
  overflow-y: hidden;
}

.r-1xfd6ze {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.r-wh77r2 {
  border-bottom-color: rgba(227,227,227,1.00);
  border-left-color: rgba(227,227,227,1.00);
  border-right-color: rgba(227,227,227,1.00);
  border-top-color: rgba(227,227,227,1.00);
}

.r-17gur6a {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.r-13awgt0 {
  -ms-flex: 1 1 0%;
  -webkit-flex: 1;
  flex: 1;
}

.r-rs99b7 {
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
}

.r-hvic4v {
  display: none;
}

.r-1jwulwa {
  overflow-x: scroll;
  overflow-y: scroll;
}

.r-nsbfu8 {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
}

.r-bztko3 {
  overflow-x: visible;
  overflow-y: visible;
}



.r-ymttw5 {
  padding-left: 16px;
  padding-right: 16px;
}

.r-23eiwj {
  padding-bottom: 14px;
  padding-top: 14px;
}

.r-c2syf2 {
  padding-bottom: 13px;
  padding-top: 13px;
}

.r-5njf8e {
  padding-bottom: 8px;
  padding-top: 8px;
}

.r-6cv0rn {
  margin-left: -16px;
  margin-right: -16px;
}

.r-1pn2ns4 {
  padding-left: 8px;
  padding-right: 8px;
}

.r-atwnbb {
  padding-bottom: 5px;
  padding-top: 5px;
}

.r-mk0yit {
  padding-left: 0px;
  padding-right: 0px;
}

.r-rjfia {
  padding-bottom: 0px;
  padding-top: 0px;
}



.r-1niwhzg {
  background-color: rgba(0,0,0,0.00);
}

.r-1p0dtai {
  bottom: 0px;
}

.r-1pi2tsx {
  height: 100%;
}

.r-1d2f490 {
  left: 0px;
}

.r-1xnpdrn {
  min-height: inherit;
}

.r-gy4na3 {
  padding-left: 0px;
}

.r-9aemit {
  padding-right: 0px;
}

.r-wk8lta {
  padding-top: 0px;
}

.r-haz1mn {
  position: initial;
}

.r-zchlnj {
  right: 0px;
}

.r-ipm5af {
  top: 0px;
}

.r-1awozwy {
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}

.r-1iusvr4 {
  -ms-flex-preferred-size: 0px;
  -webkit-flex-basis: 0px;
  flex-basis: 0px;
}

.r-16y2uox {
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.r-1wbh5a2 {
  -ms-flex-negative: 1;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}

.r-17s6mgv {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.r-1mnahxq {
  margin-top: 0px;
}

.r-1777fci {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.r-pm9dpa {
  max-height: 100%;
}

.r-13qz1uu {
  width: 100%;
}

.r-eafdt9 {
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
}

.r-1i6wzkk {
  -moz-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.r-lrvibr {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.r-1loqt21 {
  cursor: pointer;
}

.r-1otgn73 {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.r-h3s6tt {
  height: 48px;
}



.r-1sqjfdd {
  width: 144px;
}

.r-1pt6hil {
  border-top-color: rgba(227,227,227,1.00);
}

.r-5kkj8d {
  border-top-width: 1px;
}

.r-1ok911v {
  border-bottom-color: rgba(227,227,227,1.00);
}

.r-qklmqi {
  border-bottom-width: 1px;
}

.r-n3tof8 {
  border-left-color: rgba(227,227,227,1.00);
}

.r-1ljd8xs {
  border-left-width: 1px;
}

.r-15t7ei {
  border-right-color: rgba(227,227,227,1.00);
}

.r-13l2t4g {
  border-right-width: 1px;
}

.r-18u37iz {
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.r-z80fyv {
  height: 20px;
}

.r-19wmn03 {
  width: 20px;
}

.r-3da1kt {
  height: 8px;
}

.r-1jg9483 {
  width: 8px;
}

.r-1habvwh {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.r-eqz5dr {
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.r-bnwqim {
  position: relative;
}

.r-1pwx3x0 {
  z-index: 99999;
}

.r-14lw9ot {
  background-color: rgba(255,255,255,1.00);
}

.r-1w2pmg {
  height: 0px;
}

.r-1h2t8mc {
  width: 0px;
}

.r-1qhn6m8 {
  padding-left: 16px;
}

.r-1pyaxff {
  padding-right: 8px;
}

.r-tbmifm {
  height: 12px;
}

.r-16eto9q {
  width: 12px;
}

.r-u8s1d {
  position: absolute;
}

.r-wy61xf {
  height: 72px;
}

.r-1b1obt9 {
  width: 216px;
}

.r-1s3egr7 {
  z-index: 100;
}

.r-zh076v {
  height: 100vh;
}

.r-1xcajam {
  position: fixed;
}

.r-g6jmlv {
  width: 100vw;
}

.r-1xwz97n {
  z-index: 99998;
}

.r-dn5me1 {
  box-shadow: 0px 4px 12px rgba(15,15,15,0.08);
}

.r-14gqq1x {
  margin-top: 4px;
}

.r-6yljno {
  max-height: 600px;
}

.r-iyfy8q {
  width: auto;
}

.r-633pao {
  pointer-events: none!important;
}

.r-1wtj0ep {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.r-10ptun7 {
  height: 16px;
}

.r-1janqcz {
  width: 16px;
}

.r-11wrixw {
  margin-left: 0px;
}

.r-3mc0re {
  right: 8px;
}

.r-184en5c {
  z-index: 1;
}

.r-ou6ah9 {
  border-top-left-radius: 0px;
}

.r-t12b5v {
  border-top-right-radius: 0px;
}

.r-ilng1c {
  padding-bottom: 1px;
}

.r-m2pi6t {
  padding-left: 4px;
}

.r-1hvjb8t {
  padding-right: 4px;
}

.r-njp1lv {
  padding-top: 1px;
}

.r-cb25cm {
  background-color: rgba(245,245,245,1.00);
}

.r-1mwlp6a {
  height: 56px;
}

.r-18tzken {
  width: 56px;
}

.r-tskmnb {
  padding-top: 8px;
}

.r-1ow6zhx {
  margin-left: 16px;
}

.r-1h0z5md {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.r-88pszg {
  margin-right: 16px;
}



.r-150rngu {
  -webkit-overflow-scrolling: touch;
}

.r-lltvgl {
  overflow-x: auto;
}

.r-buy8e9 {
  overflow-y: hidden;
}

.r-1sncvnh {
  -webkit-transform: translateZ(0px);
  transform: translateZ(0px);
}

.r-2eszeu::-webkit-scrollbar {
  display: none
}

.r-2eszeu {
  scrollbar-width: none;
}



.r-1r6ig80 {
  height: 222px;
}



.r-1obhr1n {
  /* width: 394.6666666666667px; */
  width: 343.666667px;
}

.r-1472mwg {
  height: 24px;
}

.r-lrsllp {
  width: 24px;
}



.r-1cklop6 {
  left: -24px;
}

.r-16l9doz {
  height: auto;
}

.r-1vs2vri {
  right: -24px;
}

.r-mabqd8 {
  height: 32px;
}

.r-1yvhtrz {
  width: 32px;
}

.r-kmdj9i {
  width: 233.6px;
}

.r-1q94agv {
  height: 233.6px;
}

.r-1r74h94 {
  left: 8px;
}

.r-1v5zh77 {
  background-color: rgba(159,24,83,1.00);
}

.r-19bllq0 {
  left: -25px;
}

.r-11xbo3g {
  right: -25px;
}

.r-hdaws3 {
  height: 4px;
}

.r-10g5efv {
  width: 4px;
}

.r-1qimiim {
  color: rgba(15,15,15,1.00);
}

.r-1ej5qbt {
  font-family: os_regular;
}

.r-1b43r93 {
  font-size: 14px;
}

.r-16dba41 {
  font-weight: 400;
}

.r-rjixqe {
  line-height: 20px;
}

.r-fdjqy7 {
  text-align: left;
}

.r-13wfysu {
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}

.r-3twk1y {
  text-transform: none;
}

.r-ogrl0h {
  color: rgba(84,84,84,1.00);
}

.r-1enofrn {
  font-size: 12px;
}

.r-1cwl3u0 {
  line-height: 16px;
}

.r-142tt33 {
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}

.r-13f0itf {
  background-color: rgba(7,121,76,1.00);
}

.r-sfbmgh {
  z-index: 9999;
}

.r-puj83k {
  padding-left: 24px;
}

.r-11g3r6m {
  padding-right: 24px;
}

.r-1ygmrgt {
  padding-top: 24px;
}

.r-173mn98 {
  -ms-flex-item-align: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}

.r-1balpek {
  height: 173.7px;
}

.r-10zmzbj {
  width: 231.6px;
}



.r-135wba7 {
  line-height: 24px;
}

.r-1jkjb {
  margin-left: 8px;
}

.r-1r8g8re {
  height: 36px;
}

.r-1bvkof7 {
  width: 108px;
}