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

*{
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  /*outline: 1px solid red;*/
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: var(--font);
  font-size: 1em;
  scroll-behavior: smooth;
}

/*

@media (prefers-color-scheme: dark) {}

@media (prefers-color-scheme: light) {}

*/

body::-webkit-scrollbar { display: none; }

:root{
  --font:'Montserrat', sans-serif;
  --font-headlines: 'Staatliches', cursive;
  --black:#191716;
  --grey:#808080;
  --yellow:#e6af2e;
  --white: #e0e2db;
}

body{
  background-color: var(--black);
}

.container {
  width: 100%;
  min-height: 80px;
  padding: 15px 50px;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-block: 15px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
}

.logo {
  margin-right: 50px;
  font-weight: 700;
}

.logo span{
  font-weight: 500;
  color: var(--yellow);
}

.list {
  list-style: none;
  display: flex;
  gap: 50px;
}

.list li{
  display: flex;
  justify-content: center;
  align-items: center;
}

.list li a{
  padding: 10px 0;
}

.list li:last-child{
  border: 2px solid var(--yellow);
  border-radius: 15px;
  padding: 0 15px;
}

.list a{
  text-transform: uppercase;
}

#toggler,
.navbar label {
  display: none;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .container {
    min-height: 80px;
    padding: 30px 20px 0px 20px;
  }

  .navbar{
    gap: 20px;
  }

  .menu {
      width: 100%;
      max-height: 0;
      overflow: hidden;
  }
  .list {
      flex-direction: column;
      align-items: center;
      padding: 20px;
      gap:20px;
  }
  .navbar label {
      display: inline-flex;
      align-items: center;
      cursor: pointer;
  }
  #toggler:checked ~ .menu {
      max-height: 100%;
  }
}

.landing-page{
  min-height: calc(100vh - 80px);
  width: 100%;
  padding: 30px 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.landing-page-left, .landing-page-right{
  width: 100%;
}

.landing-page-left{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.landing-page-left p.landing-page-left-title, .landing-page-left p.landing-page-left-title span{
  font-family: var(--font-headlines);
}

.landing-page-left p.landing-page-left-title{
  color: #fff;
  font-size: 4.5em;
  line-height: 1.7;
}

.landing-page-left p.landing-page-left-title span{
  color: var(--yellow);
  text-shadow: 0 0 10px var(--yellow);
}

.landing-page-left p.landing-page-left-description{
  color: var(--grey);
  font-weight: 400;
  text-align: justify;
}

.landing-page-right img{
  width: 100%;
  border-radius: 30% 50%;
}

@media screen and (max-width: 991px) {
  .landing-page{
    padding: 30px 20px;
    flex-direction: column;
    gap: 50px;
  }
  .landing-page-left{
    gap: 30px;
  }
  .landing-page-left p.landing-page-left-title{
    font-size: 3.5em;
    line-height: 1.5;
    text-align: center;
  }
  .landing-page-left p.landing-page-left-description{
    font-weight: 400;
    text-align: center;
  }
  
  .landing-page-right img{
    width: 100%;
    border-radius: 30% 50%;
  }
}

.objectifs{
  height: 100vh;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.title-categories{
  position: relative;
  font-family: var(--font-headlines);
  font-size: 3em;
  color: #fff;
}

.title-categories::after{
  position: absolute;
  bottom:-8px;
  left: 50%;
  content: '';
  transform: translateX(-50%);
  height: 8px;
  width: 100px;
  background-color: var(--yellow);
  z-index: -1;
}

.description-categories{
  color: #fff;
  text-align: justify;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.objectifs-axes{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.objectifs-axes-child{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: center;
  overflow: hidden;
  transition: width 400ms ease-in-out;
  position: relative;
}

.objectifs-axes-child:hover{
  width: 300%;
}

.objectifs-axes-child:hover > img{
  filter: grayscale(100%) blur(8px);
}

.objectifs-axes-child:hover > .objectifs-axes-child-up-box > *{
  opacity: 1;
}

.objectifs-axes-child img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 200ms ease-in-out;
}

.objectifs-axes-child img:last-child{
  object-position: 25%;
}

.objectifs-axes-child img:hover{
  scale: 1.1;
}

.objectifs-axes-child-up-box{
  width:100%;
  height:100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 20px;
}

.objectifs-axes-child-up-box > * {
  transition: all 200ms ease-in-out;
}

.objectifs-axes-child:nth-child(3),.objectifs-axes-child:nth-child(4){
  color: #fff;
}

.objectifs-axes-child-up-box p{
  opacity: 0;
}

.objectifs-axes-child-up-box-title{
  font-family: var(--font-headlines);
  font-size: 2em;
  text-align: center;
}

.objectifs-axes-child-up-box-bullets{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 1.3em;
}

@media screen and (max-width: 991px) {
  .objectifs{
    padding: 30px 20px;
    height: auto;
  }
  .objectifs-axes{
    flex-direction: column;
    gap: 20px;
  }
  .objectifs-axes ion-icon{
    display: none;
  }
  .objectifs-axes-child{
    aspect-ratio: 1 / 1;
    transition: none;
  }
  .objectifs-axes-child:hover{
    width: 100%;
  }
  .objectifs-axes-child img{
    transition: none;
  }
  .objectifs-axes-child-up-box{
    text-align: center;
  }
  .objectifs-axes-child-up-box > * {
    transition: none;
  }
  .objectifs-axes-child-up-box p{
    opacity: 1;
  }
  .objectifs-axes-child-up-box-title{
    font-size: 1em;
  }
  .objectifs-axes-child-up-box-bullets{
    font-size: 0.8em;
  }
  .objectifs-axes-child img{
    filter: grayscale(100%) blur(8px);
  }
}

.modalites{
  height: 100vh;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.description-categories{
  width: 100%;
}

.description-categories a{
  color: #fff;
  text-decoration: none;
}

.description-categories p span{
  font-weight: 600;
  color: var(--yellow);
}

@media screen and (max-width: 991px) {
  .modalites{
    padding: 30px 20px;
    height: auto;
  }
}

.contact{
  min-height: 100vh;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.form-contact{
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.form-contact form{
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 30px;
}

.form-contact form input, .form-contact form textarea, .form-contact form button{
  padding: 15px 10px;
  width: 100%;
  border-radius: 15px;
  background-color: rgb(255, 255, 255,0);
  border: 1px solid var(--yellow);
  color: #fff;
}

.form-contact form textarea{
  resize: vertical;
}

.form-contact form button{
  cursor: pointer;
  background-color: var(--yellow);
  color: var(--black);
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .contact{
    padding: 30px 20px;
    height: auto;
  }
  .form-contact form{
    width: 100%;
  }
}

.footer{
  height: auto;
  width: 100%;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 30px;
  background-color: #111111;
}

.footer-title{
  color: #fff;
  font-size: 1.3em;
  font-weight: 700;
}

.footer-title span{
  color: var(--yellow);
  font-weight: 500;
}

.footer-categories{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 20px;
}

.footer-categories a{
  color: #4e4e4e;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-credits{
  color: #4e4e4e;
}

@media screen and (max-width: 991px) {
  .footer{
    padding: 30px 20px;
  }
  .footer-categories{
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-credits{
    text-align: center;
  }
}

.register{
  min-height: calc(100vh - 80px);
  width: 100%;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.register form{
  width: 50%;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.register form .box-form{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.register form label{
  color: #fff;
}

.register form input, .register form .box-form select, .register form textarea{
  max-width: 500px;
}

.register form input, .register form .box-form select, .register form textarea, .register form button{
  padding: 15px 10px;
  width: 100%;
  border-radius: 15px;
  background-color: rgb(255, 255, 255,0);
  border: 1px solid var(--yellow);
  color: #fff;
}

.register form option{
  color: var(--black);
}

.register form textarea{
  resize: vertical;
}

.register form button{
  cursor: pointer;
  background-color: var(--yellow);
  color: var(--black);
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .register{
    padding: 30px 20px;
  }
  .register form{
    width: 100%;
  }
  .register form .box-form{
    flex-direction: column;
    gap: 15px;
  }
  .register form input, .register form .box-form select, .register form textarea{
    width: 100%;
  }
}

.login-admin{
  min-height: calc(100vh - 80px);
  width: 100%;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.log-out{
  align-self: flex-end;
  padding: 15px 10px;
  border-radius: 15px;
  cursor: pointer;
  background-color: var(--yellow);
  color: var(--black);
  font-weight: 600;
  width: 200px;
}

.login-admin form{
  width: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 30px;
}

.box-form-login-page{
  width: 500px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.box-form-login-page label{
  color: #fff;
}

.box-form-login-page input{
  padding: 15px 10px;
  width: 300px;
  border-radius: 15px;
  background-color: rgb(255, 255, 255,0);
  border: 1px solid var(--yellow);
  color: #fff;
}

.error-box-form-sign-in{
  display: none;
  padding: 15px 10px;
  border-radius: 15px;
  border: 1px solid red;
  color: red;
  text-align: center;
  font-weight: 600;
  width: 100%;
}

.login-admin form button{
  padding: 15px 10px;
  border-radius: 15px;
  cursor: pointer;
  background-color: var(--yellow);
  color: var(--black);
  font-weight: 600;
  width: 100%;
}

.flex-admin{
  min-height: calc(100vh - 80px);
  width: 100%;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 50px;
}

.display-all-informations{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.column-flexAllInformationsAdmin{
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.column-flexAllInformationsAdmin p{
  padding: 20px;
  width: 100%;
  color: #fff;
}

.title-column-flexAllInformationsAdmin{
  font-weight: 700;
}

.element-column-flexAllInformationsAdmin{
  overflow: auto;
  height: 100px;
  max-height: 100px;
}

#yellow{
  color: var(--yellow);
}