@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
}
a:hover{
  text-decoration: none !important;
}

:root {
  --primary-templete: #004991;
  --primary-templete-border: #00254c;
  --white: #fff;
  --black-text: #00254c;
  --container-templete: 100%;
  --nav-height: 10rem;
}
.container-templete {
  max-width: var(--container-templete);
  width: calc(100% - 10%);
  padding: 0 1rem;
  margin: 0 auto;
}
html {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
}
header {
  box-shadow: 0 0 0.4rem rgba(139, 150, 214, 0.5);
}

.logo {
  width: 7rem;
  height: 7rem;
  object-fit: cover;
}

.navigation {
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sticky {
  z-index: 3000;
  background: #fff;
  position: fixed;
  width: var(--container-templete);
  top: 0;
  left: 0;
  animation: sticky 0.5s ease-in-out;
  padding-left: 5%;
  padding-right: 5%;
  box-shadow: 0 0 0.4rem #004991;
}

@keyframes sticky {
  0% {
    transform: translateY(-7rem);
  }
  100% {
    transform: translateY(0rem);
  }
}

.nav_list {
  display: inline-block;
}
.nav_link {
  position: relative;
  font-size: 1.9rem;
  color: #005eb6;
  letter-spacing: 1px;
  font-weight: 100;
  border-radius: 0.2rem;
  outline: none;
  font-family: 'Bebas Neue', sans-serif;
  border-right: 1px solid #00499165;
  padding: 5px 10px;
}

.enleve_trait{
  border-right: none;
}
.nav_list_item{
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 16px !important;
  font-weight: 200 !important;
  color: #004991 !important;
  letter-spacing: 1px;
}

ul {
  position: relative;
}
.nav_link.active {
  animation: wait 0.5s linear;
}

.nav_link.importante {
  color: var(--white);
  padding: 7px 10px;
  background: var(--primary-templete);
  border-radius: 0.4rem;
}

.typing {
  letter-spacing: 0.2rem;
  font-size: 3rem;
}
.txt-type {
  color: var(--primary-templete);
  border-right: 0.3rem solid var(--primary-templete);
}
@keyframes wait {
  0% {
    color: var(--black);
  }
  100% {
    color: var(--white);
  }
}


/* Carousel */
.carousel-accueil{
  width: 100%;
  min-height: 300px !important;
  height: auto;
  z-index: 800;
  background-color: #004991;
  background: url(images/fond1.svg),#004991;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; 
  padding: 70px;

  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-image: linear-gradient(to right,
  rgb(0, 153, 255) 0% 35%,
  yellow 35% 65%,
#ff004c 65%) 1;
}

#carouselExampleCaptions {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 10px;
}

.carousel-item{
  width: 100%;
  height: inherit;
  display: flex !important;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.carousel-image{
  width: 40%;
  min-width: 400px;
  height: auto;
}

.carousel-image img{
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border-bottom: 4px double white;
  border-right: 4px double white;
  border-left: 4px solid #ff004c;
  border-top: 4px solid yellow;
}

.carousel-block-text{
  width: 50%;
  min-width: 400px;
  height: auto;
  margin: 10px 0 10px 0;
}

.carousel-block-text h3{
  font-size: 30px;
  font-weight: 900;
  color: #ffffffe5;
  margin-bottom: 5px;
}

.carousel-block-text p{
  font-size: 20px;
  color: #ffffffe5;
  font-weight: 100;
  margin-top: 10px;
}

.carousel-block-text span{
  font-size: 16px;
  color: #ffffffc4;
  font-weight: 100;
  font-style: italic;
}

.carousel-block-text .acticle-btn{
  font-size: 16px;
}

.dropdown-item{
  font-size: 14px;
}
/* Fin carousel */


/* Autres */
.autres{
  margin: 30px 0;
  padding: 13px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.autres-titre{
  font-size: 30px;
  font-weight: 900;
  color: #005eb6;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.842);
}

.autre-bloc{
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: justify;
  padding: 10px;
  margin: 2px auto;
}

.autre-bloc p{
  width: 100%;
  text-align: left;
}

.autre-bloc ul {
  width: 100%;
  margin: 5px 0;
}

.autre-bloc ul li{
  margin-left: 20px;
  list-style-image: url(images/icon.png);
}

.autre-detail{
  width: 230px;
  height: 130px;
  background-color: rgba(235, 235, 235, 0.439);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 3px;
}

.autre-detail .img-autre{
  font-size: 50px;
  color: #ff004c;
  padding: 10px;
}

.text-autre{
  margin: 10px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.autres .autre-detail a{
  background-color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 3px;
  margin-bottom: 5px;
}

.autres .autre-detail a:hover{
  background-color: #005eb6;
}

.autres a{
  padding: 5px 10px;
  color: #005eb6;
  font-size: 16px;
  border: 1px solid #005eb63c;
  border-radius: 5px;
  text-decoration: none;
  margin: 5px;
}

.autres a:hover{
  background-color: #e8e8e8bd;
}

.partenaires{
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px auto;
  padding: 10px;
}

.partenaires-titre{
  font-size: 30px;
  color: #005eb6;
  font-weight: 900;
  text-align: center;
  margin: 25px 0 25px 0;
}

.bloc-partenaire{
  padding: 10px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.bloc-partenaire img{
  width: 200px;
  height: 180px;
  border: 1px solid gainsboro;
  padding: 2px;
  margin: 5px;
}


.presentation{
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background-color: rgb(235, 235, 235);
}

.presentation h1{
  width: 88%;
  font-size: 30px;
  margin: 0 auto;
  margin-bottom: 25px;
  padding-bottom: 23px;
  text-align: center;
  color: #ff004c;
  border-bottom: 1px solid #005eb6;
}

.presentation p{
  width: 88%;
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  line-height: 25px;
  margin: 0 auto;
}

/* Bloc titre */
.articles-titre-bloc{
  background-color:rgba(235, 235, 235, 0.296); 
  width: 100%;
  height: auto;
  transition: transform ease-in .5s;
  padding: 50px 10px 20px 10px;
}

.articles-titre{
  margin: 0 auto;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px;
}

.articles-titre h1{
  font-size: 30px;
  font-weight: 900;
  color: #004991;
}

.articles-titre a{
  font-size: 20px;
  color: white;
  background-color: #ff004c;
  padding: 10px;
  border-radius: 5px;
}

.articles-titre a:hover{
  background-color: #ff004c82;
}

.articles{
  margin: 0;
  padding: 10px;
  padding-bottom: 80px;
  background-color: rgba(235, 235, 235, 0.296); 
  width: 100%;
  height: auto;
}

.bloc-articles{
  margin: 5px auto;
  padding: 5px;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  transition: transform ease-in .5s;
}

.card{
  margin: 5px;
  border-radius: 10px;
  border: 1px solid white;
  transition: transform ease-in .2s;
  box-shadow: 0px 5px 1px rgb(188, 188, 188);
}

.card .card-img-top{
  border-radius: 10px 10px 0 0;
}

.card:hover{
  transform: scale(1.01);
  opacity: 0.6;
}

/* New letter */
.modal-container {
  padding: 4rem 0;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.848);
}

.modal-inner {
  width: 100rem;
  max-width: 90%;
  z-index: 100;
  display: grid;
  padding: 3rem;
  border-radius: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  align-items: center;
  background: rgba(235, 235, 235, 0.314); 
}

.modal-image .modal-img {
  width: 100%;
  height: 100%;
}

.modal-content{
  background-color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
}

.heading {
  font-size: 5.5rem;
  color: rgba(0, 0, 0, 0.733);
}

.text-light {
  color: rgba(0, 0, 0, 0.508);
}

.input-container {
  display: flex;
  margin-top: 1rem;
}

.input-container input {
  flex: 1;
  padding: 0.1rem 1rem;
  border: none;
  border-radius: 1.2rem 0 0 2rem;
}

input::placeholder {
  color: rgba(0, 0, 0, 0.613);
}

.input-container .btn {
  padding: 1.3rem 2rem;
  background: #004991;
  color: white;
  border-radius: 0 1.2rem 1.2rem 0;
  cursor: pointer;
  font-size: 16px;
}

@media (max-width: 800px) {
  .modal-container {
    padding: 10px;
    width: 100%;
    height: auto;
    align-items: center;
  }

  .modal-inner {
    width: 100%;
    display: flex;
    padding: 10px;
    border-radius: 0;
    margin: 0;
  }
  .modal-image .modal-img {
    display: none;
  }
  
  .heading {
    font-size: 3rem;
  }
  .modal-inner {
    margin-top: 10px;
  }

  .input-container {
    margin-top: 20px;
  }

  .modal-content{
    height: auto;
  }

  .carousel-image{
    display: none;
  }
}

@media (max-width: 501px) {

  .input-container {
    flex-direction: column;
  }

  .input-container input {
    width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 0;
  }
  
  .input-container .btn {
    width: 100%;
    padding: 10px;
    border-radius: 0;
  }
}



/* Blocs documents*/
.documents-titre-bloc{
  width: 100%;
  height: auto;
  margin-top: 100px;
}

.documents-titre{
  margin: 0 auto;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px;
}

.documents-titre h1{
  font-size: 35px;
  font-weight: 900;
  color: #004991;
}

.documents-titre a{
  font-size: 20px;
  color: white;
  background-color: #004991;
  padding: 10px;
  border-radius: 5px;
}

.documents-titre a:hover{
  background-color: #00499187;
}

.documents{
  margin: 0 0 20px 0;
  padding: 10px;
  padding-bottom: 20px;
  width: 100%;
  height: auto;
}

.bloc-documents{
  margin: 5px auto;
  padding: 5px;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.bloc-documents-part{
  background-color: rgba(235, 235, 235, 0.296);
  padding: 10px;
  margin: 5px;
  width: 300px;
  min-height: auto;
  transition: transform ease-in .2s;
  box-shadow: 0px 5px 1px rgb(188, 188, 188);
  border-radius: 5px;
}

.bloc-documents-part:hover{
  transform: scale(1.01);
  background-color: rgba(235, 235, 235, 0.548);
}

.bloc-documents-part .bloc-part-head{
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: nowrap;
  padding-bottom: 6px;
  height: 70px;
}

.bloc-documents-part .bloc-part-head img{
  width: 60px;
  height: 60px;
  border-radius: 10px;
  padding: 5px;
  background-color: white;
}

.bloc-documents-part .bloc-part-head h2{
  display: inline-block;
  color: #00254c;
  padding: 10px;
  font-weight: 700;
  font-size: 17px;
}

.bloc-documents-part p{
  color: #00254ca4;
}

/* Programme et projet */
	/* Page Histoire */

	.titre-histoire{
		font-size: 30px;
		margin: 50px 0;
		text-align: center;
		color: #ff004c;
	}

	.histoire{
		width: 80%;
		height: auto;
    margin: 10px auto;
		padding: 10px;
		box-shadow: 1px 1px 2px rgb(235, 235, 235),
					1px 1px 2px rgb(235, 235, 235),
					-1px -1px 2px rgb(235, 235, 235),
					-1px -1px 2px rgb(235, 235, 235);
	}

	.histoire h1{
		font-size: 16px;
		font-weight: 400;
		background-color: rgb(235, 235, 235);
		padding: 10px;
		text-transform: uppercase;
	}

	.histoire p{
		padding: 10px;
		padding-left: 35px;
		font-size: 16px;
    font-weight: 400;
		text-align: justify;
	}

	.histoire ul{
		padding: 10px;
	}

	.histoire ul li{
		font-size: 16px;
		font-weight: 400;
		padding-left: 25px;
	}

  /* Partie de médias */
  .section-heading {
    margin: 1rem auto;
    font-family: 'Bebas Neue';
    font-size: 36px;
    padding-bottom: 0.7rem;
    position: relative;
    display: inline-block;
    color: white;
  }
  .section-heading::before,
  .section-heading::after {
    content: '';
    position: absolute;
  }
  .section-heading::before {
    width: 100%;
    height: 0.1rem;
    bottom: 0;
    left: 0;
    background: yellow;
    border-radius: 0.2rem;
  }
  .section-heading::after {
    bottom: -0.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 1rem;
    border: 0.1rem solid red;
    background: var(--box-shadow);
  }

  .section-heading2{
    font-size: 25px;
    color: rgb(227, 227, 227);
    font-weight: 500;
  }

  .section-heading-title a{
    color: rgb(227, 227, 227);
    font-weight: 500;
  }

  .section-heading-title span{
    color: rgb(227, 227, 227);
    font-weight: 500;
  }

  .section-heading-title .barre {
    color: rgba(227, 227, 227, 0.637);
  }

  .tab-container {
    width: 100%;
    margin: 0 auto 3rem auto;
    box-shadow: 0 0.8rem 1rem var(--box-shadow);
  }
  .tab-filter-container {
    padding: 2rem;
    text-align: center;
  }
  .filter-btn {
    display: inline-flex;
    padding: 0.8rem 2.5rem;
    cursor: pointer;
    border-radius: 2rem;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
  }
  .filter-btn.active {
    background: var(--primary);
    color: var(--white);
  }
  .tab-filter-item-container {
    background: var(--white);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .tab-item {
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 0rem 3rem;
    transform: translateY(100%);
    background: var(--white-light);
    transition: transform 0.5s ease-in-out;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
    place-items: center start;
  }
  .tab-img {
    width: 30rem;
  }
  .tab-heading {
    padding: 2rem 0;
    font-size: 3rem;
  }
  .tab-item.select_tab {
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
    background: var(--white);
    animation: feadIn 0.6s ease-in-out;
  }
  .btn-primary {
    margin-top: 1.5rem;
    display: inline-block;
    background: var(--primary);
    padding: 0.6rem 2rem;
    border-radius: 2rem;
    color: var(--white);
  }
  @keyframes feadIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  

	/* Footer */
	footer{
    background-color: #004991;
    /* background: url(images/fond1.svg),#004991; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
		padding: 30px 50px;
		display: flex;
		justify-content: space-around;
		align-items: start;
		flex-wrap: nowrap;

    border-top-width: 4px;
    border-top-style: solid;
    border-image: linear-gradient(to right,
    rgb(0, 153, 255) 0% 35%,
    yellow 35% 65%,
#ff004c 65%) 1;
	}

  .bloc-logo{
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: start;
    flex-wrap: nowrap;
    padding: 10px;
    /* background-color: rgba(255, 255, 255, 0.355); */
    border-radius: 10px;
    width: 250px;
    height: auto;
    margin-bottom: 20px;
  }

  .bloc-logo img{
    width: 130px;
    border-radius: 5px;
  }

  .bloc-logo-detail{
    width: 100%;
    height: auto;
  }

  .bloc-logo-detail h2{
    font-family: 'Bebas Neue';
		text-transform: uppercase;
		font-size: 20px;
		color: white;
    letter-spacing: 1px;
		padding: 5px 0;
    border-bottom: 1px solid rgba(220, 220, 220, 0.47);
  }

  .bloc-logo-detail ul{
		padding: 2px;
	}

  .bloc-logo-detail ul li{
		color: white;
		font-size: 16px;
		font-weight: 500;
		list-style-type: circle;
    margin: 0 10px;
    font-family: 'Bebas Neue';
    letter-spacing: 1px;
	}

  .bloc-footer-details{
    width: 73%;
    min-width: 250px;
    height: auto;
    display: flex;
		justify-content: space-around;
		align-items: start;
		flex-wrap: wrap;
    padding: 10px;
    /* background-color: rgba(255, 255, 255, 0.355); */
    border-radius: 10px;
    margin: 3px;
  }

	.bloc-footer{
		width: 220px;
		height: auto;
	}

	.bloc-footer h2{
    font-family: 'Bebas Neue';
		text-transform: uppercase;
		font-size: 20px;
		color: white;
    border-bottom: 1px solid rgba(220, 220, 220, 0.47);
		padding: 5px;
    padding-left: 0;
    letter-spacing: 1px;
    font-weight: 200;
	}

	.bloc-footer ul{
		padding: 2px 20px;
	}

	.bloc-footer ul li{
		color: white;
		font-size: 16px;
		font-weight: 500;
		list-style-type: circle;
		margin: 3px;
    font-family: 'Bebas Neue';
    letter-spacing: 1px;
	}

	.bloc-footer ul li a{
		color: white;
		text-decoration: none;
	}

	.bloc-footer ul li a:hover{
		color: #50aaff;
	}

	.reseaux{
		padding: 2px;
	}

	.reseaux a{
		display: block;
		color: white;
		text-decoration: none;
		margin: 5px 0;
		font-size: 16px;
    font-family: 'Bebas Neue';
    letter-spacing: 1px;
	}

  .reseaux a:hover{
		color: rgba(255, 255, 255, 0.558);
	}

  .reseaux-bas{
    background-color: #004991;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .reseaux-bas a{
    font-size: 35px;
    color: white;
    padding: 10px;
  }

  @media (max-width: 430px) {
    footer{
      flex-wrap: wrap;
      padding: 10px;
    }

    .bloc-logo-detail h2{
      text-align: center;
    }

    .bloc-logo{
      width: 90%;
    }

    .bloc-logo img{
      display: inline-block;
      margin: 10px auto;
    }

    .bloc-logo-detail ul li{
      text-align: center;
      list-style-type: none;
    }
  
    .bloc-footer-details{
      width: 90%;
    }
  
    .bloc-footer{
      width: 90%;
      height: auto;
    }
  
    .bloc-footer h2{
      text-align: center;
    }
  
    .bloc-footer ul li{
      text-align: center;
      list-style-type: none;
    }

    .reseaux a{
      text-align: center;
    }

	}

	/* Copyright */
	.copyright{
		background-color: #004991;
	}

	.copyright p{
		text-align: center;
		font-size: 16px;
		font-weight: 100;
		padding: 10px;
    color: rgba(229, 229, 229, 0.885)
	}

  .mobile_icon{
    display: none;
  }

@media (max-width: 850px) {
  .nav_menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgb(255, 255, 255);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    z-index: 1000;
  }
  .nav_menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: all 0.5s ease-in-out;
    animation: menuBlur 0.5s linear;
  }
  @keyframes menuBlur {
    0% {
      filter: blur(1rem);
    }
    100% {
      filter: blur(0);
    }
  }

  .nav_list {
    display: block;
    padding: 1rem 4rem;
    text-align: right;
  }

  .nav_link.active {
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }

  .enleve_trait{
    border-right: 1px solid #00499165;
  }
  
.importante{
  display: block;
  text-align: center;
}

  .mobile_icon {
    display: inline-block;
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    cursor: pointer;
  }
  .line {
    position: relative;
    width: 100%;
    height: 0.3rem;
    top: 1.5rem;
    background: var(--primary-templete);
    border-radius: 0.1rem;
    transition: all 0.5s ease-in-out;
  }
  .line.active {
    background: transparent;
  }
  .line::before,
  .line::after {
    left: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 0.3rem;
    background: var(--primary-templete);
    border-radius: inherit;
    transition: all 0.5s ease-in-out;
  }
  .line::before {
    transform: translateY(-1rem);
  }
  .line.active::before {
    transform: rotate(-45deg);
  }
  .line::after {
    transform: translateY(1rem);
  }
  .line.active::after {
    transform: rotate(45deg);
  }

  .carousel-accueil{
    width: 100%;
    height: auto;
    padding: 25px 0;
  }

  #carouselExampleCaptions{
    width: 100%;
    height: auto;
  }

  .carousel-block-text{
    width: 100%;
    height: auto;
    min-width: 100%;
  }

  .carousel-block-text h3{
    text-align: center;
  }
  
  .carousel-block-text p{
    text-align: center;
  }

  .carousel-block-text span{
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .acticle-btn{
    display: block;
    margin: 0 auto;
  }

  .histoire{
		width: 95%;
	}

  .presentation {
    padding: 10px;
	}

  .presentation p{
		width: 95%;
	}

  .autre-bloc{
    width: 100%;
    padding: 10px;
  }

  footer{
		justify-content: space-around;
	}
}


@media (max-width: 500px) {
    
  .carousel-block-text h3{
    font-size: 25px;
  }
  
  .carousel-block-text p{
    font-size: 18px;
  }
}
/* Organigramme 
.tree ul {
	padding-top: 20px; position: relative;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.tree li {
	float: left; text-align: center;
	list-style-type: none;
	position: relative;
	padding: 20px 5px 0 5px;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
*/

/*We will use ::before and ::after to draw the connectors

.tree li::before, .tree li::after{
	content: '';
	position: absolute; top: 0; right: 50%;
	border-top: 1px solid #ccc;
	width: 50%; height: 20px;
}
.tree li::after{
	right: auto; left: 50%;
	border-left: 1px solid #ccc;
}
*/

/*We need to remove left-right connectors from elements without 
any siblings
.tree li:only-child::after, .tree li:only-child::before {
	display: none;
}
*/

/*Remove space from the top of single children
.tree li:only-child{ padding-top: 0;}
*/

/*Remove left connector from first child and 
right connector from last child
.tree li:first-child::before, .tree li:last-child::after{
	border: 0 none;
}
*/

/*Adding back the vertical connector to the last nodes
.tree li:last-child::before{
	border-right: 1px solid #ccc;
	border-radius: 0 5px 0 0;
	-webkit-border-radius: 0 5px 0 0;
	-moz-border-radius: 0 5px 0 0;
}
.tree li:first-child::after{
	border-radius: 5px 0 0 0;
	-webkit-border-radius: 5px 0 0 0;
	-moz-border-radius: 5px 0 0 0;
}
*/

/*Time to add downward connectors from parents*/
/* .tree ul ul::before{
	content: '';
	position: absolute; top: 0; left: 50%;
	border-left: 1px solid #ccc;
	width: 0; height: 20px;
}

.tree li a{
	border: 1px solid #ccc;
	padding: 5px 10px;
	text-decoration: none;
	color: #666;
	font-family: arial, verdana, tahoma;
	font-size: 11px;
	display: inline-block;
	
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
} */

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also
.tree li a:hover, .tree li a:hover+ul li a {
	background: #c8e4f8; color: #000; border: 1px solid #94a0b4;
}
*/

/*Connector styles on hover
.tree li a:hover+ul li::after, 
.tree li a:hover+ul li::before, 
.tree li a:hover+ul::before,
.tree li a:hover+ul ul::before{
	border-color:  #94a0b4;
}
*/


/* Animation de bloc */
  [class*="reveal-"]{
    opacity: 0;
    transform: translateY(-50px);
    }
    .reveal-visible{
    opacity: 1;
    transform: translateY(0);
    transition: 1s cubic-bezier(.5,0,0,1);
    }
    .reveal-1{
    transition-delay: .3s;
    }
    .reveal-2{
    transition-delay: .5s;
    }
    .reveal-3{
    transition-delay: .7s;
    }

[class*="gauche-"]{
  opacity: 0;
  transform: translateX(-50px);
  }  
  .gauche-visible{
  opacity: 1;
  transform: translateX(0);
  transition: 1s cubic-bezier(.5,0,0,1);
  }
  .gauche-1{
  transition-delay: .3s;
  }
  .gauche-2{
  transition-delay: .5s;
  }

[class*="droite-"]{
  opacity: 0;
  transform: translateX(50px);
  }  
  .droite-visible{
  opacity: 1;
  transform: translateX(0);
  transition: 1s cubic-bezier(.5,0,0,1);
  }
  .droite-1{
  transition-delay: .3s;
  }
  .droite-2{
  transition-delay: .5s;
  }

  /* Btn retour */
  .scroll-btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 10;
    width: 3.7rem;
    height: 3.7rem;
    background: #005eb6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    box-shadow: 0 0 0.1rem 0.1rem #005eb6;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10rem);
    transition: all 0.5s ease-in-out;
  }
  .scroll-btn.active {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    transform: translateY(0);
  }

  .scroll-btn i {
    width: 2.7rem;
    height: 2.7rem;
  }

  /* Partie de photos */
.filter-project-items {
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 80%;
  margin: 5px auto;
}

.filter-project-item {
  width: 250px !important;
  text-align: center;
  border: 3px solid white;
  margin: 5px;
}
.filter-project-item img {
  display: block;
  width: 100%;
  height: 200px;
}

@media (max-width: 850px) {
  .filter-project-items {
    width: 100%;
  }
}

 /* Fin Partie Photo */

 /* Partie loading */
 .centre-loading{
  height: 100vh;
  width: 100%;
  background-color: #004991;
  background: url(images/fond1.svg),#004991;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; 
  z-index: 4000;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centre-loading img{
  border-radius: 12px;
  animation: cache 5s infinite;
  height: 150px;
  width: 150px;
}

@keyframes cache{
  0%{
      opacity: 1;
  }
  50%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}

.fondu-out{
  /* opacity: 0;
  transition: opacity 0.4s ease; */
  display: none;
}

/* Titre contact */
.titre-contact{
  background-color: #004991;
  color: white;
  font-weight: 500;
  font-family: 'Bebas Neue';
  padding: 5px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.icone-contact{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 10px;
  margin: 5px;
  background-color: gainsboro;
  border-radius: 50%;
}

.social-links{
  background-color: red !important;
}

.social-links ul{
  display: flex;
  justify-content: space-around;
}

.social-links ul li{
  display: flex;
  width: 50px;
  height: 50px;
  padding: 20px;
  margin: 5px;
  background-color: gainsboro;
  border-radius: 50%;
}

/* Bloc vide */
.bloc-vide{
  width: 100%;
  height: auto;
  padding: 50px 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.bloc-vide img{
  width: 100px;
  height: auto;
}

.bloc-vide p{
  color: rgba(0, 0, 0, 0.452);
}