.calltoaction {
  position: relative;
  display: flex;
}

.calltoaction__background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.calltoaction__background img {
  object-fit: cover;
}

.calltoaction__background:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.5;
  position: absolute;
}

.calltoaction__content {
  margin: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.calltoaction__title {
  color: #FFF;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  margin: 0 0 20px;
}

.calltoaction__link {
  background: #FFF;
  margin: auto;
  color: var(--primary-color);
}
.footer {
  padding: 40px 20px;
}

.footer__container {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 40px;
  margin: auto;
}

.footer__logo {
  display: block;
  margin-bottom: 20px;
  width: 200px;
}

.footer__logo img {
  width: 100%;
}

.footer__presentation {
  margin: 0;
}

.footer__title {
  text-decoration: underline;
  font-weight: bold;
}

.footer__social {
  margin-top: 20px;
}

.footer__social a {
  text-decoration: none;
}

.footer__social a svg {
  stroke: #FFF;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.footer ul li {
  line-height: 25px;
}

.footer ul li a {
  text-decoration: none;
  color: #000;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer__dev-infos {
  background: var(--primary-color);
}

.footer__dev-infos span {
  display: block;
  text-align: center;
  padding: 20px;
  color: #FFF;
}

.footer__dev-infos a {
  color: #FFF;
}

@media screen and (min-width: 500px) {
  .footer__container {
    grid-template-columns: 50% 1fr;
  }
}
.hero-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.hero-banner--small {
  height: 30vh;
}

.hero-banner--big {
  height: auto;
}

.hero-banner__logo {
  display: none;
  width: 200px;
  margin-bottom: 30px;
}

.hero-banner__title {
  margin: auto;
  color: var(--primary-color);
  text-decoration: underline;
  text-align: center;
}

.hero-banner__description {
  background: #FFF;
  padding: 40px 20px;
  flex: 1.5;
}

.hero-banner__link {
  background: var(--primary-color);
  width: 150px;
  color: #FFF;
  margin-top: 40px;
}

.hero-banner__background {
  position: absolute;
  inset: 0;
  display: block;
  z-index: -1;
}

.hero-banner__background--colored:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  opacity: 0.7;
  position: absolute;
  inset: 0;
}

.hero-banner__background img {
  object-fit: cover;
}

.hero-banner__quote-container {
  display: flex;
  flex: 1;
  position: relative;
}

.hero-banner__quote-container:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, white 0, transparent 100%);
  position: absolute;
  z-index: -1;
}

.hero-banner__quote {
  margin: auto;
  padding: 40px 20px;
  max-width: 500px;
  font-family: "Josefin Slab", serif;
  display: flex;
  flex-direction: column;
}

.hero-banner__quote p {
  font-size: 20px;
  padding: 0 40px;
}

.hero-banner__quote span {
  display: block;
  text-align: right;
}

.hero-banner__quote__icon {
  width: 20px;
}

.hero-banner__quote__icon--right {
  margin: 0 0 20px auto;
}
.grecaptcha-badge {
  visibility: hidden;
  pointer-events: none;
}

picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.button {
  position: relative;
  display: block;
  padding: 10px 25px;
  overflow: hidden;
  text-decoration: none;
}

.button span {
  display: block;
  transition: 0.2s ease-in;
}

.button:after {
  content: url("/assets/img/arrow-right-white.svg");
  position: absolute;
  margin-top: 3px;
  right: -14px;
  width: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in;
}

.button--red:after {
  content: url("/assets/img/arrow-right-red.svg");
}

.button:hover span {
  transform: translateX(-8px);
}

.button:hover:after {
  transform: translate(-22px, -50%);
}
nav {
  background: #FFF;
  color: #FFF;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 100000;
}

nav > div {
  margin: auto;
}

nav > div ul {
  padding: 0;
  list-style: none;
}

nav > div ul .menu-logo-container {
  display: none;
}

nav > div ul li {
  margin-bottom: 20px;
  font-size: 20px;
  display: block;
}

nav > div ul li a {
  position: relative;
  text-align: center;
  text-decoration: none;
  color: var(--secondary-color);
}

nav > div ul li a svg {
  display: none;
  height: 20px;
}

nav > div ul li a .menu-logo {
  width: 210px;
  margin-bottom: 60px;
}

nav > div ul li a .menu-logo img {
  width: 100%;
}

nav > div ul li a:hover {
  color: var(--primary-color);
}

nav > div ul li .menu-active {
  color: var(--primary-color);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  background: #FFF;
  z-index: 1000000;
  padding: 10px 20px 10px 20px;
  display: flex;
  align-items: center;
}

.mobile-nav a {
  width: 150px;
  display: block;
}

.navToggle {
  transform: translateX(-100%);
}

/******************************/

/*           BURGER           */

/******************************/

.burger {
  width: 30px;
  height: 25px;
  margin-left: auto;
  position: relative;
  border-radius: 4px;
  z-index: 100001;
  outline: none;
  transition: 0.4s;
}

.burger-sticky {
  top: 15px;
}

.burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -1.5px;
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.burger span::before,
.burger span::after {
  position: absolute;
  content: "";
}

.burger span::before {
  top: -9px;
}

.burger span::after {
  top: 9px;
}

.burger.clicked span {
  background-color: transparent;
}

.burger.clicked span::before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

.burger.clicked span::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.burger:hover {
  cursor: pointer;
}
