/*----- VARIABLES-----*/
/*FONT FAMILY*/
@font-face {
  font-family: 'OpenSans';
  src: url(../font/OpenSans-Regular.ttf);
}
@font-face {
  font-family: 'fascinate';
  src: url(../font/Fascinate-Regular.ttf);
}
/*----- RESET -----*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
img {
  display: block;
}
body {
  background-color: #0a032b;
  font-family: "OpenSans", sans-serif;
  scroll-behavior: smooth;
}
/*----- RECURRENTS -----*/
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.center {
  max-width: 960px;
  margin: 0 auto;
}
h1 {
  color: #d60b52;
  font-size: 60px;
  font-family: "fascinate";
}
h2 {
  font-family: 'fascinate';
  font-size: 30px;
  text-transform: uppercase;
}
p {
  color: white;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
/*NAVBAR*/
.nav .container .row a {
  margin-left: calc(10% - 20px);
  /* 20px = la valeur du padding mis sur le a*/
  display: block;
  height: 180px;
  max-width: 180px;
  padding: 20px;
}
.nav .container .row a img {
  max-width: 100%;
  height: auto;
  overflow: hidden;
}
.nav .nav-container .button_container#toggle {
  position: fixed;
  z-index: 9999;
  top: 70px;
  right: 10%;
  height: 40px;
  width: 40px;
  cursor: pointer;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.nav .nav-container .button_container#toggle span {
  height: 5px;
  width: 60%;
  background: #d60b52;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.nav .nav-container .button_container#toggle:before,
.nav .nav-container .button_container#toggle:after {
  content: '';
  position: absolute;
  background: #d60b52;
  width: 100%;
  height: 5px;
  display: block;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.nav .nav-container .button_container#toggle:before {
  transform-origin: right;
  top: 0;
  right: 0;
}
.nav .nav-container .button_container#toggle:after {
  transform-origin: right;
  bottom: 0;
  right: 0;
}
.nav .nav-container .button_container#toggle.active span {
  background: transparent;
}
.nav .nav-container .button_container#toggle.active:before,
.nav .nav-container .button_container#toggle.active:after {
  background: white;
}
.nav .nav-container .button_container#toggle.active:before {
  transform: rotate(-45deg);
  width: 120%;
  top: 0;
  right: 0;
}
.nav .nav-container .button_container#toggle.active:after {
  transform: rotate(45deg);
  width: 120%;
  bottom: 0;
  right: 0;
}
.nav .nav-container .overlay#overlay {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  transform: translateY(-100%);
  background: #d60b52;
  overflow: hidden;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.nav .nav-container .overlay#overlay nav.overlay-menu ul {
  list-style: none;
}
.nav .nav-container .overlay#overlay nav.overlay-menu ul li {
  display: block;
  text-align: center;
  padding: 20px 0;
}
.nav .nav-container .overlay#overlay nav.overlay-menu ul li a {
  display: inline-block;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
  position: relative;
  opacity: 0;
}
.nav .nav-container .overlay#overlay nav.overlay-menu ul li a:after {
  position: absolute;
  content: '';
  width: 100%;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: #FFF;
  transform-origin: center;
  transform: scale(0);
  transition: all 0.5s;
}
.nav .nav-container .overlay#overlay nav.overlay-menu ul li a:hover:after {
  transform: scale(1);
}
.nav .nav-container .overlay#overlay.open {
  transform: translateY(0);
}
.nav .nav-container .overlay#overlay.open nav.overlay-menu ul li:nth-of-type(2) a {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.nav .nav-container .overlay#overlay.open nav.overlay-menu ul li:nth-of-type(3) a {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.nav .nav-container .overlay#overlay.open nav.overlay-menu ul li:nth-of-type(4) a {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.nav .nav-container .overlay#overlay.open nav.overlay-menu ul li:nth-of-type(5) a {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.nav .nav-container .overlay#overlay.open nav.overlay-menu ul li a {
  animation: fadeInRight 1s ease-in-out forwards;
}
/*---------HEADER---------*/
header {
  background-image: url(../img/bg-header.jpeg);
  background-size: cover;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*---------SECTION BILLETTERIE---------*/
.billetterie {
  padding: 80px 10px;
}
.billetterie p {
  padding: 5px 0;
}
.billetterie .resa {
  text-align: center;
  padding: 30px 0;
  margin: 50px 0;
  border-top: solid 2px #d60b52;
  border-top-width: 100%;
  border-bottom: solid 2px #d60b52;
  border-bottom-width: 100%;
}
.billetterie .resa a {
  color: #d60b52;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  animation: fadeIn linear 5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*---------SECTION ACTUALITE---------*/
.actualite {
  background-color: #d60b52;
  padding: 40px 0 70px 0;
}
.actualite .contain h2 {
  font-family: 'fascinate';
  padding: 0 40px;
  text-transform: uppercase;
  color: #0a032b;
}
.actualite .contain .slide {
  padding: 0 40px;
}
.actualite .contain .slide article {
  padding: 10px;
}
.actualite .contain .slide article img {
  width: 100%;
}
.actualite .contain .slide article .texte {
  padding-bottom: 10px;
}
.actualite .contain .slide article .texte h4 {
  font-family: 'fascinate';
  font-size: 18px;
  padding-top: 30px;
  color: #0a032b;
}
.actualite .contain .slide article .texte h3 {
  font-size: 24px;
  color: white;
  padding: 10px 0;
}
.actualite .contain .slide article .texte a {
  background-color: #0a032b;
  color: white;
  padding: 10px 10px;
  text-align: center;
  line-height: 30px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.5s;
}
.actualite .contain .slide article .texte a:hover {
  transform: translateX(5px);
  color: #d60b52;
  background-color: white;
}
/*SLIDER*/
.slick-prev {
  height: 40px;
  width: 40px;
  left: 0px;
}
.slick-prev:before {
  content: '\f053';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: #0a032b;
  font-size: 40px;
}
.slick-next {
  height: 40px;
  width: 40px;
  right: 0px;
}
.slick-next:before {
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: #0a032b;
  font-size: 40px;
}
/*AGENDA*/
.agenda {
  background-image: url(../img/bg-cal.png);
  padding: 30px 0;
}
.agenda .date {
  padding: 10px 0;
}
.agenda .date h2 {
  color: #d60b52;
  text-align: center;
  font-size: 48px;
}
.agenda .date h3 {
  text-transform: uppercase;
  color: white;
  font-size: 24px;
  padding: 10px 0;
  text-align: center;
}
.agenda .box {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: center;
}
.agenda .box .container {
  position: relative;
  width: 400px;
  min-height: 400px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(25px);
  opacity: 1.5;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.agenda .box .container #dycalendar {
  width: 100%;
  padding: 20px;
}
.agenda .box .container #dycalendar table {
  width: 100%;
  margin-top: 40px;
  border-spacing: 5px;
}
.agenda .box .container #dycalendar table tr:nth-child(1) td {
  background: white;
  color: #0a032b;
  border-radius: 4px;
  font-weight: bold;
}
.agenda .box .container #dycalendar table td {
  color: white;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}
.agenda .box .container #dycalendar table td:hover {
  background-color: #d60b52;
  color: #0a032b;
}
.agenda .box .container .dycalendar-month-container .dycalendar-today-date,
.agenda .box .container .dycalendar-month-container .dycalendar-target-date {
  background-color: #d60b52;
  color: #0a032b;
}
.agenda .box .container .dycalendar-month-container .dycalendar-header .dycalendar-prev-next-btn.prev-btn {
  background: white;
  color: #0a032b;
  width: 44px;
  height: 38px;
  left: 4px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.agenda .box .container .dycalendar-month-container .dycalendar-header .dycalendar-prev-next-btn.next-btn {
  background: white;
  color: #0a032b;
  width: 44px;
  height: 38px;
  right: 4px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.agenda .box .container .dycalendar-month-container .dycalendar-span-month-year {
  color: white;
  font-size: 1.5em;
  font-weight: 500;
}
/*MAP*/
.map {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 100px 0;
}
.map iframe {
  padding: 20px;
  width: calc(50% - 5px);
}
.map .texte {
  margin: 20px 0;
  width: calc(50% - 5px);
  border-top: 2px solid #d60b52;
  border-top-width: 100%;
  border-bottom: 2px solid #d60b52;
  border-bottom-width: 100%;
}
.map .texte .metro .icone {
  display: flex;
  justify-content: left;
  align-items: baseline;
  padding-top: 20px;
}
.map .texte .metro .icone i {
  color: #d60b52;
  font-size: 20px;
}
.map .texte .metro .icone h3 {
  color: #d60b52;
  font-family: 'fascinate';
  margin-left: 10px;
}
.map .texte .metro .explain {
  display: flex;
  align-items: center;
}
.map .texte .metro .explain img {
  width: 20px;
  margin: 10px 5px 10px 0;
}
.map .texte .metro .explain p {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 5px;
}
.map .texte .bus .icone {
  display: flex;
  justify-content: left;
  align-items: baseline;
  padding-top: 20px;
}
.map .texte .bus .icone i {
  color: #d60b52;
  font-size: 20px;
}
.map .texte .bus .icone h3 {
  color: #d60b52;
  font-family: 'fascinate';
  margin-left: 10px;
}
.map .texte .bus .explain {
  padding-bottom: 50px;
}
.map .texte .bus .explain p {
  padding: 10px 0;
}
.map .texte a {
  background-color: #d60b52;
  color: white;
  padding: 10px 10px;
  text-align: center;
  line-height: 30px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.5s;
}
.map .texte a:hover {
  transform: translateX(5px);
  color: #d60b52;
  background-color: white;
}
/*FOOTER*/
footer {
  background-color: #d60b52;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer img {
  overflow: hidden;
  max-width: 180px;
  padding: 10px;
  margin: 10px 0;
}
footer ul {
  font-size: 0px;
  list-style-type: none;
}
footer ul li {
  font-size: 16px;
  display: inline-block;
  margin: 10px;
}
footer ul li a i {
  color: #0a032b;
  font-size: 20px;
}
footer .texte {
  text-align: center;
  padding: 20px 0;
}
footer .texte a {
  color: white;
  transition: all 0.5s;
}
footer .texte a:hover {
  color: #0a032b;
}
/*MENTIONS LEGALES*/
.mentions h2 {
  color: #d60b52;
  padding: 10px 0;
}
.mentions section {
  padding: 20px 0;
}
.mentions section:nth-of-type(even) {
  background-color: #d60b52;
}
.mentions section:nth-of-type(even) h3 {
  color: #0a032b;
}
.mentions section h3 {
  font-family: 'fascinate';
  font-size: 30px;
  color: #d60b52;
}
.mentions section p {
  padding: 20px 0;
}
.mentions section li {
  list-style-type: none;
}
.mentions section li a {
  color: white;
  transition: all 0.5s;
}
.mentions section li a:hover {
  color: #0a032b;
}
/* ----------------------- MEDIA QUERIES 960px ----------------------------- */
@media screen and (max-width: 960px) {
  /*RECURRENT*/
  .center {
    width: 768px;
  }
  /*---------SECTION BILLETTERIE---------*/
  .billetterie {
    padding: 30px 10px;
  }
  .billetterie .resa {
    margin: 30px 0;
  }
  /*---------MAP---------*/
  .map {
    justify-content: inherit;
    padding: 50px 0;
  }
}
/* ----------------------- MEDIA QUERIES 768px ----------------------------- */
@media screen and (max-width: 768px) {
  /*RECURRENT*/
  .center {
    width: 100%;
  }
  /*---------MAP---------*/
  .map {
    justify-content: center;
    padding: 20px 0;
  }
  .map iframe {
    width: 100%;
  }
  .map .texte {
    width: 95%;
    padding: 20px 10px;
    text-align: center;
    margin: 0px 0px;
  }
  .map .texte .metro .icone {
    justify-content: center;
  }
  .map .texte .metro .explain {
    justify-content: center;
  }
  .map .texte .bus .icone {
    justify-content: center;
  }
  .map .texte .bus .explain {
    padding-bottom: 20px;
  }
}
/* ----------------------- MEDIA QUERIES 425px ----------------------------- */
@media screen and (max-width: 425px) {
  /*RECURRENT*/
  .center {
    width: 100%;
  }
  /*---------HEADER---------*/
  header h1 {
    font-size: 40px;
  }
  /*---------SECTION ACTUALITE---------*/
  .actualite {
    padding: 30px 0 30px 0;
  }
  /*---------FOOTER---------*/
  footer .texte {
    padding: 10px 0;
  }
}
