/* import fonts */
* {
  box-sizing: border-box;
}

#wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

@font-face {
  font-family: "Mondara";
  src: url("../../fonts/mondara/MondaraSans-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Mondara";
  src: url("../../fonts/mondara/MondaraSans-Italic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Mondara";
  src: url("../../fonts/mondara/MondaraSans-Bold.otf") format("opentype");
  font-weight: bold;
}
@font-face {
  font-family: "Mondara";
  src: url("../../fonts/mondara/MondaraSans-BoldItalic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Mondara";
  src: url("../../fonts/mondara/MondaraSans-Book.otf") format("opentype");
  font-weight: bold;
}
@font-face {
  font-family: "Mondara";
  src: url("../../fonts/mondara/MondaraSans-BookItalic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
}

a {
  color: inherit;
  text-decoration: none;
  background: none;
  cursor: pointer;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

*,
p,
h1,
h2,
h3,
a,
button {
  font-family: Mondara;
}

iframe {
  max-width: 100%;
}

.je_typo_gras_gris {
  font-family: "Mondara";
  font-weight: bold;
  font-size: 32px;
  color: #403e3e;
  margin: 0;
  line-height: 100%;
}

.je_soustitre_serif {
  font-family: "Mondara-Serif";
  color: #454640;
  font-size: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0px;
}

.je_soustitre_serif_italique {
  font-family: "Mondara-Serif";
  color: #403e3e;
  font-size: 28px;
  font-style: italic;
  padding: 0;
  margin: 0px;
}

.je_titre_generique_module {
  color: #103f4f;
  margin: 0px;
  font-size: 55px;
  font-weight: bold;
}

.je_typo_generique_paragraphe {
  color: #454640;
  font-size: 20px;
  margin: 0px;
  padding: 0px;
  line-height: 1.4;
}

.je_typo_blanc_gras {
  font-size: 30px;
  line-height: 1;
  color: white;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.je_typo_paragraphe_generique {
  font-family: "Mondara";
  color: black;
  font-size: 24px;
  line-height: 1.5;
  font-weight: normal;
}

.je_typo_gras_noir {
  font-family: "Mondara";
  color: black;
  font-size: 48px;
  font-weight: bold;
}

.je_typo_nom_acteur {
  font-family: "Mondara";
  font-weight: bold;
  font-size: 25px;
  line-height: 1.1;
  color: #454640;
  padding: 0px;
  margin: 0px;
  text-align: center;
}

.je_typo_soustitre_acteur {
  font-family: "Mondara";
  font-style: italic;
  font-size: 20px;
  color: #454640;
  padding: 0px;
  margin: 0px;
  text-align: center;
}

.je_typo_footer {
  font-size: 18px;
  color: white;
  margin: 0;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.columns {
  display: flex;
  gap: 60px;
}
.columns > div{
  flex: 1 1 50%;
}
.columns.--free > div {
  flex: 1 1 auto;
}
.columns.--three > div {
  flex: 1 1 33%;
}

.popin {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, .3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.popin .inner {
  width: 90vw;
  height: 80vh;
  background-color: white;
  overflow-y: scroll;
  padding: 20px 40px;
}