/* --- Syle --- */
@font-face {
  font-family: "BebasNeue";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/BebasNeue/BebasNeue-9066d226ebddc4741793f8df0ea128af.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo/Cairo-Regular-54bd7ac78fbd7c1c10d6efb271ff0607.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo/Cairo-Bold-c4e1915b983b64f02a24088521b924f0.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GeorgiaPro";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/GeorgiaPro/GeorgiaPro-Light-2b7cd1ac4ebae93ead3bb3497858c6d1.woff") format("woff");
  font-display: swap;
}
:root {
  --swiper-pagination-color: #FFFFFF;
  --swiper-theme-color: #FFFFFF;
  --swiper-navigation-size: 30px;
  --swiper-navigation-sides-offset: 20px;
}

* {
  box-sizing: border-box;
}

.bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

body {
  font-size: 16px;
  font-family: "Cairo", "Helvetica", "sans-serif";
  background-color: #EFEFEF;
  color: #00455A;
  padding-top: 60px;
  max-width: 500px;
  margin: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
}

header {
  background-color: #00455A;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 15px 20px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.161);
  max-width: 500px;
}
header > * {
  flex: 1 0 0%;
  text-align: center;
}
header > *:first-child {
  text-align: left;
}
header > *:last-child {
  text-align: right;
}
header .header__logo {
  height: 100%;
}
header .header__logo img {
  height: 75px;
  width: auto;
}
header .header__lang img {
  height: 20px;
  width: 30px;
  border: solid 1px #ffffff;
}
header #menu-opener {
  width: 22px;
  height: 15px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header #menu-opener span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background-color: #ffffff;
}
header #menu-opener span:nth-child(1) {
  top: 0px;
}
header #menu-opener span:nth-child(2) {
  top: 6px;
}
header #menu-opener span:nth-child(3) {
  top: 12px;
}
header #menu-opener.opened span:nth-child(1) {
  display: none;
}
header #menu-opener.opened span:nth-child(2) {
  transform: rotate(45deg) scaleX(1);
}
header #menu-opener.opened span:nth-child(3) {
  transform: rotate(-45deg) scaleX(1) translateX(4px) translateY(-4px);
}
@media (min-width: 500px) {
  header {
    left: 50%;
    transform: translateX(-50%);
  }
}

#menu {
  display: none;
  background-color: #FFFFFF;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 70px 0 20px 0;
  overflow: auto;
  z-index: 400;
  max-width: 500px;
  margin: auto;
  background-image: url("../images/bg_duck-2f263e0f47dc8ebbba446996dae9a1af.svg");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: -30px -45px;
}
#menu.opened {
  display: block;
}
#menu .menu__title {
  font-family: "GeorgiaPro", "Georgia", "serif";
  font-size: 35px;
  margin: 0 20px 30px 20px;
  border-bottom: solid 1px #00455A;
}
#menu .menu__map {
  padding: 0 10px 0 5px;
  text-align: center;
  background-color: #FFFFFF;
}
#menu .menu__map img {
  width: 100%;
  height: auto;
  max-width: 450px;
}
#menu .menu__places {
  display: flex;
  gap: 10px;
  padding: 25px 20px 0 20px;
}
#menu .menu__route {
  flex: 1 0 0%;
}
#menu .menu__route ol {
  padding-left: 25px;
}
#menu .menu__route li {
  padding: 1px 0;
}
#menu .menu__route li a {
  text-decoration: none;
  color: inherit;
}
#menu .menu__route li.current {
  font-weight: bold;
}
#menu .menu__route__title, #menu .menu__route__title--yellow, #menu .menu__route__title--blue {
  text-transform: uppercase;
  font-weight: bold;
}
#menu .menu__route__title--blue {
  color: #008993;
}
#menu .menu__route__title--yellow {
  color: #F59E00;
}
#menu .menu__caption__item, #menu .menu__caption__item--stele, #menu .menu__caption__item--pov {
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px auto;
}
#menu .menu__caption__item--pov {
  background-image: url("../images/binocular-dfd41d3bd8b839db19f115994adb5eba.svg");
}
#menu .menu__caption__item--stele {
  background-image: url("../images/stele-f77d05edfa2d6dd9dfc3cce6ba88c651.svg");
}

footer {
  background-color: #00455A;
  color: #FFFFFF;
  height: 75px;
  text-align: center;
  padding: 15px 20px;
}
footer > span {
  display: block;
  font-size: 12px;
  margin-bottom: 15px;
}
footer > a {
  margin-right: 7px;
  color: #ffffff;
  font-size: 10px;
  text-decoration: none;
}
footer > a::after {
  background-color: #ffffff;
  border-radius: 3px;
  content: "";
  display: inline-block;
  height: 3px;
  width: 3px;
  margin-left: 10px;
  vertical-align: middle;
}
footer > a:last-child::after {
  content: none;
}

#body-content {
  min-height: calc(100vh - 60px - 75px);
  padding-bottom: 60px;
  background-color: #FFFFFF;
  background-image: url("../images/bg_wave_2-2de17b158c8f7c31d210801add0ec2d4.svg");
  background-repeat: no-repeat;
  background-position: bottom 20px right -10px;
  background-size: 220px auto;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}
.carousel .swiper {
  width: 100%;
  height: 100%;
}
.carousel .swiper-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.carousel .swiper-background + * img {
  object-fit: contain;
}
.carousel .edouard-background {
  background-repeat: repeat;
  background-size: 13%;
}
.carousel figure {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.carousel figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  background-color: rgba(255, 255, 255, 0.7019607843);
  text-align: center;
  padding: 5px;
  font-size: 12px;
}
.carousel .swiper-dl {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10;
  border-radius: 5px;
  background-image: url("../images/dl-68caae305d47af39d2b67eb34a7f378d.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.place-description {
  padding: 0 20px;
}
.place-description__top {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.place-description__step {
  font-size: 40px;
  border: solid 3px;
  border-radius: 100%;
  font-family: "BebasNeue", "Helvetica", "sans-serif";
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 58px;
  padding-right: 2px;
  margin-right: 15px;
}
.place-description__title {
  font-family: "GeorgiaPro", "Georgia", "serif";
  margin-top: 0;
  margin-bottom: 5px;
}
.place-description__subtitle {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}

.home {
  padding: 0 20px 30px 20px;
}

.start {
  display: block;
  text-align: center;
  margin: 30px 0 35px 0;
  color: #008993;
  font-weight: bold;
  text-transform: uppercase;
}

.step-blue .place-description__title,
.step-blue .place-description__step {
  color: #008993;
}
.step-blue .place-description__step {
  border-color: #008993;
}

.step-yellow .place-description__title,
.step-yellow .place-description__step {
  color: #F59E00;
}
.step-yellow .place-description__step {
  border-color: #F59E00;
}

.acknowledgment {
  padding: 30px 20px 30px 20px;
}
.acknowledgment li {
  margin-top: 5px;
}

/*# sourceMappingURL=app.output.css.map */
