@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bellefair&display=swap');

*{
  font-family: 'Bellefair', serif;
}

p, li{
  font-size: 16px;
  color: #3f3f3f;
}

a{
  color:#bb008b;
}

.messageFormulaire{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: rgb(63, 64, 94);
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  z-index: 99999999;
}

.form-check-input:checked{
  background-color: #bb008b;
  border-color: #bb008b;
}

#menu-burger{
  display: none;
  width: 50%;
  height: 100vh;
  position:fixed;
  z-index: 10001;
  top:0;
  left:-50%;
  background-color: white;
  transition: all 0.5s;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

#menu-burger .onglet{
  position: absolute;
  right: 15px;
  top: 15px;
}

#menu-burger ul{
  list-style: none;
  padding: 0;
  margin: auto;
  line-height: 3rem;
}

#menu-burger ul li a{
  font-size: 2rem;
}

nav .btn-burger{
  display: none;
  position:absolute;
  top: 25px;
  opacity: 1;
  transition: all 0.25s;
}

nav .btn-burger:hover, #menu-burger .onglet:hover{
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.25s;
}

nav .btn-burger i, #menu-burger .onglet i{
  font-size: 2rem;
  color: #bb008b;
}

#map{
  height: 100%;
}

#buttons{
  position: fixed;
  z-index: 10;
  right: 15px;
  top:calc(50% - 75px);
}

#buttons .section-button{
  width: 12px;
  height: 12px;
  background-color: grey;
  border-radius: 50%;
  margin: 15px;
}

#buttons .section-button.active{
  background-color:#bb008b;
}

.fade-in-block {
  opacity: 0;
  transition: opacity 1s;
}

.bg-mosaique{
  background-image: url('../img/mosaique.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.btn{
  border-radius: 25px;
}

.btn-primary{
  background-color:#bb008b;
  border-color:#bb008b;
}

.btn-primary:hover{
  background-color:black;
  border-color:black;
}

.btn-outline-primary{
  color:#bb008b;
  border-color: #bb008b;
}

.btn-outline-primary:hover{
  background-color:#bb008b;
  border-color: #bb008b;
}

img{
  border-radius: 5px;
}

h1, h4{
  font-family: 'Cinzel', serif;
}

h2, h3{

  font-family: 'Bellefair', serif;
  text-transform: uppercase;
}

nav#navbar{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: all 0.5s;
  z-index: 1000;
}

nav img{
  position: absolute;
}

nav.initial img{
  margin: 15px;
  left: calc(50% - 115px);
  width: 200px;
  top: 10px;
  transition: all 0.25s;
}

nav.fixed img{
  margin: 15px;
  width: 120px;
  left:calc(50% - 75px);
  top:0;
  transition: all 0.25s;
}

nav ul:last-child{
  text-align: right;
}

nav ul{
  width: 400px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav .ul-left li{
  margin-right: 15px;
}

nav .ul-right li{
  padding-left: 15px;
  padding-right: 15px;
}

nav .btn-menu{
  border:1px solid #bb008b;
  border-radius: 25px;
}

nav .btn-menu a{
  color: #bb008b;
}

nav .btn-menu:hover{
  background-color: #bb008b;
  cursor: pointer;
  color:white!important;
}

nav .btn-menu:hover > a{
  color:white!important;
}

nav ul li{
  display: inline-block;
  padding-top:10px;
  padding-bottom: 10px;
  margin: 15px 0;
}

nav ul li a{
  text-decoration: none;
  color:grey;
  font-size: 19px;
}

header{
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
}

header h1{
  color:grey;
}

#parallax-image{
  width: 35%;
  height: auto;
  position: absolute;
  left: 50%;
  bottom:5%;
  opacity: 0.05;
  z-index: 0;
  transform: translateX(0);
}

header svg{
  position: absolute;
  left: calc(50% - 25px);
  bottom: 15px;
  color:#bb008b;
}

header .header-text{
  z-index: 9;
}

footer img{
  max-width: 150px;
  margin-bottom: 15px;
}

footer ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li a{
  color:#3f3f3f;
  text-decoration: none;
}

footer h4{
  color:#bb008b!important;
}

footer .informations{
  text-align: right;
}

footer .informations i{
  color:#bb008b;
  font-size: 20px;
  margin-left: 10px;
}

.current{
  color:#bb008b;
  font-weight: 500;
}

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

.container-sm{
  max-width: 960px;
}

@media (max-width: 1250px){

  #navbar{
    min-height: 50px;
  }

  #navbar li{
    display: none;
  }

  #menu-burger{
    display: flex;
  }

  nav .btn-burger{
    display: block;
  }

  footer .informations{
    text-align: center;
  }

  footer .informations i{
    margin: 0 10px;
  }

  #formation a.btn{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

}

@media (max-width: 850px){

  #buttons{
    display: none;
  }

  #menu-burger{
    width: 80%;
    left: -80%;
  }

  #formation .float-start{
    float:none!important;
    width: 70%;
    margin: 0 15% 1rem 15%!important;
  }

  #formation h2.text-end{
    text-align: left!important;
  }

}
