.main {
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  display: block;
  padding: 0 5%;
}
.container > .richtext-content {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.main-content {
  background-color: white;
  padding: 20px 0 40px;
}

.header {
  height: 60px;
  padding-top: 1px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.header .contact-link,
.header .language {
  position: absolute;
  line-height: 29px;
  padding: 0 8px;
  background-color: darkslategrey;
  top: 0;
}
.header .contact-link a:link,
.header .contact-link a:visited,
.header .language a:link,
.header .language a:visited {
  color: white;
  line-height: 49px;
}
.header .language {
  right: 5%;
}
.header .contact-link {
  right: calc(5% + 75px);
}
.header h1 {
  position: relative;
  margin: 0;
  font-size: 2em;
}
.header h1 a:link,
.header h1 a:visited {
  color: #333;
  text-decoration: none;
}
.header h1.light a:link,
.header h1.light a:visited {
  color: #CCC;
}

.nav > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.nav > ul > li {
  text-align: center;
  line-height: 30px;
}

.main-nav {
  padding: 0;
  background-color: #F3EDE7;
}
.main-nav li {
  border-bottom: 6px solid #F3EDE7;
  font-family: "Amatic SC", sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  overflow: hidden;
  height: 36px;
  transition: height 0.5s;
}
.main-nav li.link-active span,
.main-nav li.link-active a {
  background-color: rgba(243, 237, 231, 0.5);
}
.main-nav li:hover span, .main-nav li:hover a {
  background-color: rgba(243, 237, 231, 0.75);
}
.main-nav a, .main-nav span {
  background-color: #F3EDE7;
}
.main-nav span,
.main-nav a:link,
.main-nav a:visited {
  color: #333;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
.main-nav .toggled li:not(.link-active) {
  height: 0;
}

.secondary-nav {
  font-family: "Calligraffitti", cursive;
  background-color: darkslategrey;
  color: white;
}
.secondary-nav > ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.secondary-nav > ul > li {
  width: 30%;
  padding: 5px 0;
}
.secondary-nav > ul > li:not(:first-child) {
  margin-left: 10px;
}
.secondary-nav a:link,
.secondary-nav a:visited {
  color: white;
  text-decoration: none;
  width: 100%;
  padding: 1px 0;
  font-weight: bold;
  font-size: 18px;
}
.secondary-nav a:link.link-active,
.secondary-nav a:visited.link-active {
  border-bottom: 1px solid white;
}

.home {
  text-align: center;
}
.home .home-banner {
  height: 30vh;
  background-size: cover;
}

.footer {
  padding: 8px 0;
  text-align: center;
  color: white;
  font-family: "Amatic SC", sans-serif;
  font-size: 1.2em;
  background-color: darkslategrey;
}
.footer a:link,
.footer a:visited {
  color: white;
  text-decoration: none;
}

body {
  background-color: white;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
}

* {
  box-sizing: border-box;
}

h1 {
  font-family: "Amatic SC", sans-serif;
}

h2 {
  font-family: "Amatic SC", sans-serif;
  font-size: 2em;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.richtext-content h1 {
  font-family: "Amatic SC", sans-serif;
  font-size: 2em;
}
.richtext-content h3 {
  font-family: "Amatic SC", sans-serif;
  font-size: 1.5em;
}
.richtext-content h5 {
  font-family: "Amatic SC", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  margin: 0.5em 0;
}
.richtext-content h6 {
  font-size: 1em;
  margin: 0.5em 0;
}
.richtext-content img {
  max-width: 100%;
  display: block;
}
.richtext-content blockquote {
  font-family: "Calligraffitti", cursive;
  padding: 10px 25px;
}
.richtext-content figure {
  max-width: 500px;
  width: fit-content;
  margin: 10px auto;
  padding: 3px;
  text-align: center;
}
.richtext-content figure img {
  margin: 0 auto;
}
.richtext-content figure figcaption {
  padding: 5px;
}
.richtext-content ul > li {
  list-style-type: square;
}
.richtext-content ol > li {
  list-style-type: decimal;
}

.cv-list ul {
  margin: 0;
  padding: 0;
}
.cv-list ul li {
  list-style-type: none;
  display: flex;
  margin: 8px 0;
}
.cv-list ul li .date {
  flex-basis: 25%;
}
.cv-list ul li .activity {
  flex-basis: 75%;
}
.cv-list ul li .activity p {
  margin: 5px 0;
}
.cv-list ul li.child .activity {
  padding-left: 5%;
}

.galleries-list {
  margin: 0;
  padding: 0;
}
.galleries-list li {
  list-style-type: none;
  margin-bottom: 15px;
}
.galleries-list .media-wrapper {
  display: flex;
  flex-direction: column;
  border: 1px solid white;
  border-bottom-width: 6px;
  width: calc(100vw - 10%);
}
.galleries-list .media-text {
  padding: 5px 10px;
  overflow-y: auto;
}
.galleries-list .media-text .gallery-title {
  font-family: "Amatic SC", sans-serif;
  font-size: 2em;
  color: white;
}
.galleries-list .media-list {
  display: flex;
  align-items: center;
  padding: 5px 5px 0;
  overflow: auto;
}
.galleries-list .media-list .media {
  text-align: center;
  padding: 5px;
  cursor: pointer;
}
.galleries-list .media-list .media img {
  max-width: 100px;
  max-height: 100px;
}
.galleries-list .media-list .media p {
  margin: 5px 0;
  max-width: 150px;
}
.galleries-list .media-list .media .icon-pdf {
  display: block;
  margin: 10px auto 10px;
  height: 50px;
  width: 100%;
  max-width: 100px;
}
.galleries-list .media-featured {
  overflow: hidden;
  text-align: center;
  padding: 10px;
  background-color: white;
}
.galleries-list .media-featured .featured {
  margin: 0;
  height: 100%;
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: auto;
  position: relative;
}
.galleries-list .media-featured .featured figcaption {
  display: block;
  padding: 10px 10px 20px;
  position: sticky;
  bottom: 0;
  background-color: white;
  width: 100%;
}
.galleries-list .media-featured img {
  max-height: 100%;
  max-width: 100%;
}
.galleries-list .media-featured .icon-pdf {
  display: block;
  margin: 50px auto 20px;
  height: 100px;
}

.video-icon {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: relative;
}
.video-icon:after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 20px 30px;
  border-color: transparent transparent transparent #FFFFFF99;
  top: 20px;
  left: 30px;
  width: 0;
  height: 0;
  transition: border-color 1s, top 1s, left, 1s;
}
.video-icon:hover:after {
  border-color: transparent transparent transparent white;
}

.contact-data {
  text-align: center;
}
.contact-data .contact-infos {
  padding: 20px;
  border-bottom: 6px solid;
}

/*# sourceMappingURL=main.css.map */
