@import url(https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap);
@import url(https://use.typekit.net/irc3axe.css);
:root {
  --page-size: 1600;
  --grid-size: 1400;
  --grid-offset: 8vw;
  --grid-columns: 12;
  --grid-column: 91;
  --grid-gutters: 11;
  --grid-gutter: 28;
}

@keyframes bounce {
  from, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounces {
  0%, 12% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1.2);
    transform: translate(0, 0);
  }
  8% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1.2);
    transform: translate(0, -3rem);
  }
}
@keyframes overscale {
  from {
    transform: matrix3d(1, 0, 0, 0, 0, 2, -1, 0.01, 0, 1, 0, 0, 0, 200, 0, 1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  35% {
    transform: matrix3d(2.5, 0, 0, 0, 0, 2.25, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  to {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 10rem, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -1rem, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 0.5rem, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -0.25rem, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/*----------------------------------------------------------------------
  Responsive Type
  More Infos: http://madebymike.com.au/writing/fluid-type-calc-examples/
  ------------------------------------------------------------------- */
/* Basic Settings*/
/* Type Scale Settings*/
/* test */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  display: inline-block;
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}

button {
  padding: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  background: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button:not([disabled]) {
  cursor: pointer;
}

object {
  width: 2rem;
  height: 2rem;
  pointer-events: none;
}

input {
  font: inherit;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=button],
input[type=submit] {
  cursor: pointer;
}

textarea {
  font: inherit;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

h2 {
  font-family: "museo";
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1.1944444444;
  text-transform: uppercase;
}
@media screen and (max-width:800px) {
  h2 {
    font-size: 2.6rem;
  }
}

strong {
  font-weight: bold;
}

body {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  font-family: "museo";
  font-size: 2rem;
  line-height: 1.2;
  color: #FFFFFF;
  background-color: #7C1D7D;
}

.button-primary {
  margin: 0 auto;
  padding: 1.6rem 4.3rem;
  padding-left: 5.1rem;
  max-width: 67rem;
  font-family: "museo";
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: #000000;
  border-radius: 3.8rem;
  color: #FFFFFF;
  background: #659E31;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:601px) {
  .button-primary {
    font-size: 3.6rem;
  }
}
.button-primary:hover {
  background: #71b137;
  transition: all 0.2s ease-in-out;
}

.button-secondary {
  margin: 0 auto;
  padding: 1.6rem 4.3rem;
  padding-left: 5.1rem;
  max-width: 67rem;
  font-family: "museo";
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: #000000;
  border-radius: 3.8rem;
  color: #FFFFFF;
  background: #7C1D7D;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:601px) {
  .button-secondary {
    font-size: 3.6rem;
  }
}
.button-secondary:hover {
  background: #912292;
  transition: all 0.2s ease-in-out;
}

.button-small {
  padding: 1rem 2.7rem 0.8rem;
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width:600px) {
  .button-small {
    font-size: 1.6rem;
  }
}

.button-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3.6rem;
  margin: 0 auto;
}

.form-fieldset--participation {
  margin: 0 auto;
  max-width: 60rem;
}
.form-fieldset--participation .form-row:not(:first-of-type) {
  margin-top: 5rem;
}
.form-fieldset--participation .form-row:not(:last-of-type) {
  margin-bottom: 5rem;
}
@media screen and (max-width:600px) {
  .form-fieldset--participation .form-row.form-row--radio {
    align-items: center;
    flex-direction: column;
  }
}
.form-fieldset--participation .form-row:not(.form-row--radio) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.form-fieldset--participation .form-row:not(.form-row--radio) label, .form-fieldset--participation .form-row.form-row--radio p {
  font-family: "museo";
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1.1923076923;
  text-align: center;
}
.form-fieldset--participation #code {
  width: auto;
  text-align: center;
}
@media screen and (min-width:601px) {
  .form-fieldset--participation #code {
    font-size: 3.6rem;
    line-height: 1.1944444444;
  }
}
.form-fieldset--participation input:not(#code) {
  text-align: center;
}

.form-fieldset--user-logged {
  display: flex;
  justify-content: space-between;
}

.form-row {
  margin: 0.8rem 0;
}
.form-fieldset--participant .form-row--radio {
  display: flex;
  gap: 1.5rem;
  padding: 1.6rem 2.5rem;
  font-family: "museo";
  font-weight: 900;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5.6rem;
}
@media screen and (max-width:600px) {
  .form-fieldset--participant .form-row--radio {
    flex-direction: column;
    border-radius: 2rem;
  }
}

::-moz-placeholder {
  color: rgba(124, 29, 125, 0.5);
  opacity: 1;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

:-ms-input-placeholder {
  color: rgba(124, 29, 125, 0.5);
  opacity: 1;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

::placeholder {
  color: rgba(124, 29, 125, 0.5);
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.form-fieldset--participation [type=radio] + label, input,
select,
textarea {
  padding: 1.6rem 2.5rem;
  width: 100%;
  font-family: "museo";
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.2;
  color: rgba(124, 29, 125, 0.5);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5.6rem;
}

.form-fieldset--participation [type=radio] + label, .form-fieldset--participation input:not(#code) {
  width: auto;
  color: white;
  background: transparent;
  border: 1px solid currentColor;
}
.form-fieldset--participation [type=radio] + label::-moz-placeholder, .form-fieldset--participation input:not(#code)::-moz-placeholder {
  color: currentColor;
}
.form-fieldset--participation [type=radio] + label:-ms-input-placeholder, .form-fieldset--participation input:not(#code):-ms-input-placeholder {
  color: currentColor;
}
.form-fieldset--participation [type=radio] + label::placeholder, .form-fieldset--participation input:not(#code)::placeholder {
  color: currentColor;
}
.form-fieldset--participation [type=radio] + label:focus::-moz-placeholder, .form-fieldset--participation input:focus:not(#code)::-moz-placeholder {
  opacity: 0.4;
}
.form-fieldset--participation [type=radio] + label:focus:-ms-input-placeholder, .form-fieldset--participation input:focus:not(#code):-ms-input-placeholder {
  opacity: 0.4;
}
.form-fieldset--participation [type=radio] + label:focus::placeholder, .form-fieldset--participation input:focus:not(#code)::placeholder {
  opacity: 0.4;
}

[type=checkbox] {
  display: none;
}
[type=checkbox] + * {
  display: flex;
  position: relative;
  padding-left: 2.3rem;
  font-family: "Lato";
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.1875;
  letter-spacing: -0.02rem;
  cursor: pointer;
}
[type=checkbox] + * a {
  text-decoration: underline;
}
[type=checkbox] + *::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
[type=checkbox] + *::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.9rem;
  margin-top: -1px;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 1rem;
  height: 0.6rem;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-right: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
[type=checkbox]:checked + *::before {
  background: #7C1D7D;
}
[type=checkbox]:checked + *::after {
  opacity: 1;
}

.form-fieldset--participant [type=radio], .form-fieldset--participation [type=radio] {
  display: none;
}

.form-fieldset--participant [type=radio] + * {
  display: flex;
  position: relative;
  padding-left: 2.3rem;
  letter-spacing: -0.02rem;
  cursor: pointer;
}
.form-fieldset--participant [type=radio] + *::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: #7C1D7D;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.form-fieldset--participant [type=radio] + *::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translate(-50%, -50%) scale(0);
  width: 0.7rem;
  height: 0.7rem;
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.form-fieldset--participant [type=radio]:checked + *::before {
  background: #FFFFFF;
}
.form-fieldset--participant [type=radio]:checked + *::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.form-fieldset--participation .form-row--radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.form-fieldset--participation .form-row--radio p {
  flex: 1 1 100%;
}
.form-fieldset--participation [type=radio] + label {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.form-fieldset--participation [type=radio] + label:hover {
  background: rgba(255, 255, 255, 0.15);
}
.form-fieldset--participation [type=radio]:checked + label {
  color: #7C1D7D;
  background: #FFFFFF;
}

.form-row--submit {
  text-align: center;
}

[type=submit] {
  margin: 0 auto;
  padding: 1.6rem 4.3rem;
  padding-left: 5.1rem;
  max-width: 67rem;
  font-family: "museo";
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: #000000;
  border-radius: 3.8rem;
  color: #FFFFFF;
  background: #659E31;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width:601px) {
  [type=submit] {
    font-size: 3.6rem;
  }
}
[type=submit]:hover {
  background: #71b137;
  transition: all 0.2s ease-in-out;
}

.form-error {
  padding: 0.5rem 1.5rem;
  color: white;
  background-color: red;
  border-radius: 0.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0 auto;
  max-width: 800px;
}
form label {
  display: block;
}

.form-fieldset--participation .form-row.form-row--radio p.question-prim-hint {
  font-family: "Lato";
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.1875;
  letter-spacing: -0.02rem;
}
.form-fieldset--participation .form-row.form-row--radio p.question-prim-hint a {
  text-decoration: underline;
}

.site-header {
  position: relative;
  padding: 3rem clamp(2rem, 7vw, 14rem);
  height: 100vh;
  max-height: 40rem;
  background-color: #FFFFFF;
}
body.page-home .site-header {
  height: 72.0930232558vw;
  background-color: #FFFFFF;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
[lang=fr] body.page-home .site-header {
  background-image: url(../images/biolys-BG-p2-fond-bois-v-mobile_FR.jpg);
}
[lang=nl] body.page-home .site-header {
  background-image: url(../images/biolys-BG-p2-fond-bois-v-mobile_NL.jpg);
}
@media screen and (min-width:601px) {
  body.page-home .site-header {
    height: 39.0625vw;
    background-size: contain;
  }
  [lang=fr] body.page-home .site-header {
    background-image: url(../images/biolys-BG-p2-fond-bois-v-tablette_FR.jpg);
  }
  [lang=nl] body.page-home .site-header {
    background-image: url(../images/biolys-BG-p2-fond-bois-v-tablette_NL.jpg);
  }
}
@media screen and (min-width:1025px) {
  body.page-home .site-header {
    height: 26.8229166667vw;
    background-position: 50% 0%;
    background-size: contain;
  }
  [lang=fr] body.page-home .site-header {
    background-image: url(../images/W-biolys-BG-p2-fond-bois-v-desktop_FR.jpg);
  }
  [lang=nl] body.page-home .site-header {
    background-image: url(../images/W-biolys-BG-p2-fond-bois-v-desktop_NL.jpg);
  }
}
body:not(.page-home) .site-header {
  background: url(../images/biolys-fond-bois-1920x1080.png) 50% 50% no-repeat;
  background-size: 200%;
}
@media screen and (min-width:601px) {
  body:not(.page-home) .site-header {
    background-size: 150%;
  }
}
@media screen and (min-width:901px) {
  body:not(.page-home) .site-header {
    background-size: 100%;
  }
}
body:not(.page-home) .site-header::before, body:not(.page-home) .site-header::after {
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width:1024px) {
  body:not(.page-home) .site-header::before, body:not(.page-home) .site-header::after {
    content: none;
  }
}
body:not(.page-home) .site-header::before {
  top: 0;
  left: calc(50% - 34.1rem);
  transform: translate(-100%, 0);
  width: 34.1vw;
  max-width: 34.1rem;
  height: 24.25vw;
  max-height: 24.25rem;
  background: url(../images/scratch-win.png) 50% 50% no-repeat;
  background-size: contain;
}
body:not(.page-home) .site-header::after {
  top: 85%;
  left: calc(50% + 40rem);
  transform: translate(-25%, -50%);
  width: 40rem;
  height: 40rem;
  background: url(../images/pack-biolys.png) 50% 50% no-repeat;
  background-size: contain;
}
.site-header .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62.5vw;
  max-width: 62.5rem;
  height: 62.5vw;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
@media screen and (max-width:800px) {
  .site-header .logo {
    width: 100vw;
    height: 100vw;
  }
}

.site-main {
  position: relative;
}
.page-home .site-main::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 5rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 45%, white 100%);
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 108rem;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
nav li {
  position: relative;
  padding: 0 2rem;
  font-family: "museo";
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.2222222222;
  color: #004077;
}
nav li.active {
  color: #7C1D7D;
}
nav li.active::before {
  content: "";
  display: block;
  position: absolute;
  transform: translateX(-50%);
  bottom: -0.6rem;
  left: 50%;
  width: 5rem;
  height: 0.2rem;
  background: #7C1D7D;
}
nav li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 100%;
  width: 2px;
  height: 1.8rem;
  background: #7C1D7D;
}
nav a {
  color: currentColor;
}

.page-home .site-main {
  background: url(../images/biolys-fond-bois-1920x1080.png) 50% 0% no-repeat;
  background-size: cover;
}

[class^=content-] {
  padding: 7rem var(--grid-offset) 6rem;
}

.content-home .button-secondary {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width:1024px) {
  .content-home .button-secondary {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width:1025px) {
  .content-home .button-secondary {
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}

.intro {
  margin: 0 auto;
  max-width: 144rem;
}

@media screen and (min-width:801px) {
  .intro-reverse .content {
    flex-direction: row-reverse;
  }
}

.intro .content {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width:800px) {
  .intro .content {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width:801px) {
  .intro .content {
    align-items: center;
    justify-content: space-between;
  }
}
.intro .content figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
  flex: 1 0 40%;
}
.intro .content figure img {
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 43.5rem;
  max-width: 100%;
  height: auto;
}
.intro .content article {
  padding: 1rem 2rem 1.3rem;
  background: rgba(255, 255, 255, 0.75);
}
.intro .content h2 {
  color: #659E31;
}
.intro .content p {
  margin: 1em 0;
  font-family: "Lato";
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.1875;
  color: #1B4B23;
}

.content-rules .content {
  margin: 0 auto;
  max-width: 80rem;
}
.content-rules .content h1 {
  margin-bottom: 0.4rem;
  text-align: center;
}
.content-rules .content h2 {
  margin-bottom: 1em;
  text-align: center;
}
.content-rules .content h3 {
  margin-top: 1.25em;
  font-family: "museo";
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
}
.content-rules .content p {
  margin: 0.75em 0;
  font-family: "Lato";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.1875;
}
.content-rules .content a {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.1s ease;
}
.content-rules .content a:hover {
  color: #659E31;
}

.content-splash {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  text-align: center;
  background: url(../images/biolys-fond-bois-1920x1080.png) 50% 50% repeat;
}
@media screen and ((min-width:601px)) {
  .content-splash {
    background: url(../images/biolys-fond-bois-1920x1080-splash.png) 50% 50% repeat;
    background-size: cover;
  }
}
.content-splash .logo {
  max-width: 50rem;
  height: auto;
}
.content-splash h2 {
  color: #004077;
}
.content-splash h2 strong {
  color: #7C1D7D;
}
.content-splash p {
  margin-top: 2rem;
  color: #7C1D7D;
}
.content-splash .button-wrapper {
  margin-top: 4rem;
}

.content-thanks {
  padding-top: 10rem;
  text-align: center;
}
.content-thanks .button {
  margin-top: 5.2rem;
}

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

.hidden {
  display: none;
}
