@font-face {
  font-family: "CaeciliaLTPro75Bold";
  src: url("../fonts/CaeciliaLTPro75Bold.TTF") format("truetype"), url("../fonts/CaeciliaLTPro75Bold.woff") format("woff"), url("../fonts/CaeciliaLTPro75Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: normal;
}
@font-face {
  font-family: "RobotoSlab";
  src: url("../fonts/RobotoSlab-Medium.ttf") format("truetype"), url("../fonts/RobotoSlab-Medium.woff") format("woff"), url("../fonts/RobotoSlab-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "RobotoSlab";
  src: url("../fonts/RobotoSlab-SemiBold.ttf") format("truetype"), url("../fonts/RobotoSlab-SemiBold.woff") format("woff"), url("../fonts/RobotoSlab-SemiBold.woff2") format("woff2");
  font-weight: 600;
}
html {
  /* 62.5% of 16px browser font size is 10px */
  font-size: 62.5%;
  height: 100svh;
  overflow:hidden;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  background-color: #22415E;
  height: 100svh;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 2.1rem;
  overflow:hidden;
}

h1,
h2 {
  font-family: "RobotoSlab", sans-serif;
  font-weight: 500;
  margin-top: 0;
}

p {
  margin: 0;
}

a {
  font-family: "RobotoSlab", sans-serif;
  font-weight: 500;
}
a, a:hover {
  text-decoration: none;
}

.btn-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}
.btn-container.abs-container {
  position: absolute;
  top: 20px;
  right: 0;
}

.btn-blanc {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #22415E;
  border-radius: 200px;
  border: none;
}

.btn-round {
  height: 36px;
  width: 36px;
}

.btn-bleu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  border: 2px solid #22415E;
  height: 44px;
  padding: 5px 18px 5px 18px;
}
.btn-bleu::after {
  content: "";
  position: relative;
  width: 15px;
  height: 100%;
  background-image: url("../src/svg/picto_next.svg");
  background-repeat: no-repeat;
  background-position: right center;
}

.lien-bleu {
  border: none;
  border-bottom: 2px solid #22415E;
  padding: 0;
}

.btn-bleu,
.lien-bleu {
  font-family: "RobotoSlab", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-top: 20px;
  color: #22415E;
  background-color: transparent;
}

.btn-langues {
  position: relative;
}
.btn-langues::after {
  content: "";
  position: relative;
  height: 100%;
  width: 11px;
  background-image: url(../src/svg/picto_down.svg);
  background-repeat: no-repeat;
  background-position: right center;
}

.btn-close {
  background-image: url(../src/svg/picto_close.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.btn-menu {
  background-image: url(../src/svg/picto_menu.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 49px;
  height: 44px;
  border-radius: 200px 0 0 200px;
  margin-left: 10px;
}

.container {
  padding: 20px;
  height: calc(100% - 40px);
}

.menu-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #22415E;
  color: #FFFFFF;
  z-index: 10;
}
.menu-container .menu-content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 20px 54px 20px;
}
.menu-container .menu-content .menu-titre {
  width: 100%;
  font-family: "RobotoSlab", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 3rem;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #FFFFFF;
}
.menu-container .menu-content .menu-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-container .menu-content .menu-items a {
  margin-top: 20px;
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.menu-container .menu-content .menu-items a.active {
  color: #19AAC1;
}

.popup-container {
  position: absolute;
  background-color: #FFFFFF;
  color: #22415E;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 31px;
  width: 90%;
}
.popup-container .popup-content {
  position: relative;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup-container .popup-content h1 {
  color: #046980;
  font-size: 2.5rem;
  line-height: 3.6rem;
}
.popup-container .popup-content p {
  color: #22415E;
}

.body {
  position: relative;
}

.splash-screen {
  height: 100%;
  width: 100%;
  z-index: 10;
  visibility: hidden;
  position: absolute;
  background-color: #19AAC1;
  animation: splashScreenAnimation 3s;
}
.splash-screen .conteneur {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  gap: 30px;
}
.splash-screen .conteneur img {
  width: 70%;
}
.splash-screen .conteneur .progress {
  width: 25%;
  height: 10px;
  background-color: #22415E;
  border-radius: 30px;
}
.splash-screen .conteneur .progressbar {
  height: 10px;
  border-radius: 30px;
  background-color: white;
  animation: progressAnimation 2s;
}

@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes splashScreenAnimation {
  0% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.home-bg {
  position: relative;
  height: 100%;
  background-image: url("../src/img/home_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home-bg .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-bg .menu-principal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.home-bg .menu-principal-content a {
  min-height: 66px;
  width: 70%;
}
.home-bg .menu-principal-content a:not(:last-of-type) {
  margin-bottom: 18px;
}
.home-bg .menu-principal-content a p {
  padding: 11px 35px;
  font-size: 1.8rem;
  line-height: 2.7rem;
  text-align: center;
}
.home-bg .menu-principal-content a p .cat-menu {
  display: block;
  font-size: 1.3rem;
  color: #19AAC1;
}

@media (min-width: 700px) {
  .splash-screen .conteneur, .home-bg, .mat, .menu-content, .menu-content .btn-container, .Credits {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .Jeu .popup-container {
    width: 500px;
  }
}
@media (min-width: 900px) {
  .Jeu .btn-container.abs-container, .Film .btn-container.abs-container {
    width: 550px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 330px){
  body{
    font-size:1.2rem;
  }
  .home-bg .menu-principal-content a p{
    font-size:1.2rem;
  }
  .popup-container .popup-content h1{
    font-size:2rem;
  }
}

@media (min-width: 800px) and (max-width: 1200px) {
  .Jeu .btn-container.abs-container, .Film .btn-container.abs-container {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
