@font-face {
    font-family: 'Lemon Milk';
    src: url('../fonts/lemonmilk/LEMONMILK-Regular.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Sources Sans Pro Regular';
    src: url('../fonts/source_sans_pro/SourceSansPro-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Sources Sans Pro Light';
    src: url('../fonts/source_sans_pro/SourceSansPro-Light.ttf') format('truetype');
    font-display: swap;
}

@font-face {
   font-family: 'Open Sans Regular';
   src: url('../fonts/open_sans/OpenSans-Regular.ttf') format('truetype');
   font-display: swap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    margin:0;
    font-family: "Open Sans Regular", sans-serif;
    color: #272829;
}

a {
  color: #94c045;
}

a:hover {
  color: #37b3ed;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sources Sans Pro Regular", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #94c045;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #2eafec;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* #header { */
/*   position: fixed; */
/*   top: 0; */
/*   left: 0; */
/*   bottom: 0; */
/*   width: 300px; */
/*   transition: all ease-in-out 0.5s; */
/*   z-index: 9997; */
/*   transition: all 0.5s; */
/*   padding: 0 15px; */
/*   background: #040b14; */
/*   overflow-y: auto; */
/* } */

/* #header .profile img { */
/*   margin: 15px auto; */
/*   display: block; */
/*   width: 120px; */
/*   border: 8px solid #2c2f3f; */
/* } */

/* #header .profile h1 { */
/*   font-size: 24px; */
/*   margin: 0; */
/*   padding: 0; */
/*   font-weight: 600; */
/*   -moz-text-align-last: center; */
/*   text-align-last: center; */
/*   font-family: "Poppins", sans-serif; */
/* } */

/* #header .profile h1 a, #header .profile h1 a:hover { */
/*   color: #fff; */
/*   text-decoration: none; */
/* } */

/* #header .profile .social-links a { */
/*   font-size: 18px; */
/*   display: inline-block; */
/*   background: #212431; */
/*   color: #fff; */
/*   line-height: 1; */
/*   padding: 8px 0; */
/*   margin-right: 4px; */
/*   border-radius: 50%; */
/*   text-align: center; */
/*   width: 36px; */
/*   height: 36px; */
/*   transition: 0.3s; */
/* } */

/* #header .profile .social-links a:hover { */
/*   background: #94c045; */
/*   color: #fff; */
/*   text-decoration: none; */
/* } */

/* #main { */
/*   /\* margin-left: 300px; *\/ */
/* } */

/* @media (max-width: 1199px) { */
/*   #header { */
/*     left: -300px; */
/*   } */
/*   #main { */
/*     margin-left: 0; */
/*   } */
/* } */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
/* .nav-menu { */
/*   padding-top: 30px; */
/* } */

/* .nav-menu * { */
/*   margin: 0; */
/*   padding: 0; */
/*   list-style: none; */
/* } */

/* .nav-menu > ul > li { */
/*     background:#040b14; */
/*     position: relative; */
/*     white-space: nowrap; */
/* } */

/* .nav-menu > ul > li a:hover { */
/*     background:#94c045; */
/* } */

/* .nav-menu a { */
/*   display: flex; */
/*   align-items: center; */
/*   color: #a8a9b4; */
/*   padding: 12px 15px; */
/*   margin-bottom: 8px; */
/*   transition: 0.3s; */
/*   font-size: 15px; */
/* } */

/* .nav-menu a i { */
/*   font-size: 24px; */
/*   padding-right: 8px; */
/*   color: #6f7180; */
/* } */

/* .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a { */
/*   text-decoration: none; */
/*   color: #fff; */
/* } */

/* .nav-menu a:hover i, .nav-menu .active > a i, .nav-menu li:hover > a i { */
/*   color: #94c045; */
/* } */

/* /\* Mobile Navigation *\/ */
/* .mobile-nav-toggle { */
/*   position: fixed; */
/*   right: 15px; */
/*   top: 15px; */
/*   z-index: 9998; */
/*   border: 0; */
/*   background: none; */
/*   font-size: 24px; */
/*   transition: all 0.4s; */
/*   outline: none !important; */
/*   line-height: 1; */
/*   cursor: pointer; */
/*   text-align: right; */
/* } */

/* .mobile-nav-toggle i { */
/*   color: #94c045; */
/* } */

/* .mobile-nav-active { */
/*   overflow: hidden; */
/* } */

/* .mobile-nav-active #header { */
/*   left: 0; */
/* } */

/* .mobile-nav-active .mobile-nav-toggle i { */
/*   color: #fff; */
/* } */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background: url("../img/saint_antonin.webp") top center;*/
  background-size: cover;
}

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container {
    position: relative;
    z-index: 2;
    min-width: 300px;


    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-container {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #94c045;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
    font-family: "Sources Sans Pro Regular", sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #555;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #94c045;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #94c045;
}

.about .content p:last-child {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

@media (max-width: 575px) {
  .portfolio #portfolio-flters li {
      cursor: pointer;
      display: inline-block;
      padding: 3px 3px 3px 3px;
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
      color: #272829;
      margin-bottom: 3px;
      transition: all 0.3s ease-in-out;
  }
}

@media (min-width:576px) and (max-width: 767px) {
  .portfolio #portfolio-flters li {
      cursor: pointer;
      display: inline-block;
      padding: 5px 5px 5px 5px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
      color: #272829;
      margin-bottom: 5px;
      transition: all 0.3s ease-in-out;
  }
}

@media (min-width: 768px) and (max-width: 991px){
  .portfolio #portfolio-flters li {
      cursor: pointer;
      display: inline-block;
      padding: 5px 10px 5px 10px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
      color: #272829;
      margin-bottom: 5px;
      transition: all 0.3s ease-in-out;
  }    
}

@media (min-width: 992px) {
  .portfolio #portfolio-flters li {
      cursor: pointer;
      display: inline-block;
      padding: 10px 15px 8px 15px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
      color: #272829;
      margin-bottom: 5px;
      transition: all 0.3s ease-in-out;
  }
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #94c045;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #37b3ed;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

.groupe-info {
  text-align: center;
  position: relative;
}

.groupe-info h4 {
  font-weight: 700;
  font-size: 19px;
  color: #555;
  position: relative;
  margin-top:10px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
}

.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #94c045;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #94c045;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #94c045;
}

.services .title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
}

.services .title a:hover {
  color: #94c045;
}

.services .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Gastronomie
--------------------------------------------------------------*/
.gastronomie .icon-box {
  margin-bottom: 20px;
}

.gastronomie .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  margin-right: 10px;
}

.gastronomie .icon i {
  color: #fff;
  font-size: 24px;
}

.gastronomie .icon-box:hover .icon {
  background: #fff;
}

.gastronomie .icon-box:hover .icon i {
  color: #94c045;
}

.gastronomie .title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.gastronomie .title a {
  color: #343a40;
}

.gastronomie .title a:hover {
  color: #94c045;
}

.gastronomie .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c3e8fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #94c045 !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #94c045;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #94c045;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #94c045;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #94c045;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #37b3ed;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    /*padding: 40px 0;*/
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #94c045 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  /* bottom: -70px; */
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}


/*--------------------------------------------------------------
# Items chroniques musique
--------------------------------------------------------------*/

.item {
  border: none;
/**  margin-bottom: 30px; **/
}

.item .item-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.item .item-wrap:after {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: .3s all ease-in-out;
}

.item .item-wrap img {
  transition: .3s transform ease;
  transform: scale(1);
}

.item .item-wrap > .work-info {
  position: absolute;
  top: 75%;
  width: 100%;
  text-align: center;
  z-index: 3;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  transition: .3s all ease;
}

.item .item-wrap > .work-info h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.item .item-wrap > .work-info span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .2rem;
}

.item .item-wrap:hover {
  text-decoration: none;
}

.item .item-wrap:hover img {
  transform: scale(1.05);
}

.item .item-wrap:hover:after {
  opacity: 1;
  visibility: visible;
}

.item .item-wrap:hover .work-info {
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# youtube video
--------------------------------------------------------------*/

.auto-resizable-iframe {
  max-width: 420px;
  margin: 0px auto;
}

.auto-resizable-iframe > div {
  position: relative;
  padding-bottom: 75%;
  height: 0px;
}

.auto-resizable-iframe iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Équipe
--------------------------------------------------------------*/

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #2f4d5a;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
  max-height: 300px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f4d5a;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #52869d;
}

.team .member .social a:hover {
  color: #67b0d1;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}


/**
* Map
*/

.leaflet-sidebar > .leaflet-control {
    width: 70%;
    padding: 8px 16px;
}

.leaflet-sidebar .close {
    right: 140px;
}
.leaflet-sidebar.left.visible ~ .leaflet-left {
    left: 325px;
}

@media (max-width: 575px) {
    .leaflet-sidebar {
	padding: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .leaflet-sidebar {
	padding: 10px;
    }
    .leaflet-sidebar > .leaflet-control {
	width: 45%;
	padding: 8px 16px;
    }

    .leaflet-sidebar .close {
	right: 290px;
    }
    .leaflet-sidebar.left.visible ~ .leaflet-left {
	left: 230px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .leaflet-sidebar .close {
	right: 95px;
    }
    .leaflet-sidebar.left.visible ~ .leaflet-left {
	left: 210px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .leaflet-sidebar .close {
	right: 125px;
    }
    .leaflet-sidebar.left.visible ~ .leaflet-left {
	left: 270px;
    }
}

.info-concert {
    padding-bottom: 30px;
    padding-top:20px;
}

.info-concert h2 {
    font-size: 25px;
    padding-top:10px;
    font-weight: bold;
    position: relative;
    color: #173b6c;
}


/* --------------------- */

@media (max-width: 575px) {
    #maCarte {
	height: 60vh;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #maCarte {
	height: 65vh;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #maCarte {
	height: 70vh;
    }
}

@media (min-width: 992px) {
    #maCarte {
	height: 75vh;
    }
}

.imgvideo {
    cursor: pointer;
}

.playbutton {
    background: url(https://cdn0.iconfinder.com/data/icons/vector-basic-tab-bar-icons/48/play_button-128.png) center center no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 74px;
    height: 74px;
    margin: -37px 0 0 -37px;
    z-index: 10;
    opacity: .6;
}

.ytvideo {
    height:315px;
    position: relative;
    margin: 0;
    padding: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    /* pour anciens Chrome et Safari */
    background-size: cover;
    /* version standardisée */
    cursor: pointer;
}

.ytvideo iframe {
    border-style: none;
    height: 100%;
    width: 100%;
}

.ytvideo .seo {
    display: none;
}

/* Map */
.my-label {
    background: rgb(235, 235, 235);
    background: rgba(235, 235, 235, 0.81);
    background-clip: padding-box;
    border-color: #777;
    border-color: rgba(0,0,0,0.25);
    border-radius: 4px;
    border-style: solid;
    border-width: 4px;
    color: #111;
    display: block;
    font: 10px/13px "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 1px 6px;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: 6;
}

.vertical-align {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.panel-heading {
    padding: 0;
    border:0;
}
.panel-title>a, .panel-title>a:active{
    display:block;
    padding:15px;
    color:#555;
    font-size:16px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
    word-spacing:3px;
    text-decoration:none;
}
.panel-heading  a:before {
    font-family: 'Boxicons';
    content: "\ed44";
    transition: all 0.5s;
    float: right;
}
.panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
} 



/* --------------------------- */


/* --------------------- */

.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
  top:0;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}

.header li a {
  display: block;
  padding: 20px 20px;
/*  border-right: 1px solid #f4f4f4;*/
  text-decoration: none;
  color: #696c7b;
}

.header li a:hover,
.header .menu-btn:hover {
  /* background-color: #f4f4f4;*/
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
      padding: 0px 0px;
      margin-left:30px
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}


ul {
  display: flex;
  /* flex-direction: column;*/
  align-items: start;
  list-style-type: none;
}
ul li {
  padding: 6px 0;
}
ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  font-family: "Lato";
  /* font-size: 2rem;;*/
  color: #ecf0f1;
  text-transform: uppercase;
  padding: 4px 0;
  transition: 0.5s;
}
ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 100%;
  left: 0;
  background: #94c045;
  transition: transform 0.5s;
  transform: scaleX(0);
  transform-origin: right;
}
ul li a:hover {
  color: #95a5a6;
}
ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.title-container {
   display: -ms-flex;
   display: -webkit-flex;
   display: flex;
   height:100%;
   position:relative;
}

.title-container h1 {
    font-family: "Lemon Milk", sans-serif;
    font-size: calc(3.5vw + 3.5vh);
}

.title-container p {
    font-size: calc(2vw + 2vh);
}
/* @media (max-width: 768px) { */
/*   .title-container h1 { */
/*       font-size: 3.8rem; */
/*   } */
/*   .title-container p { */
/*       font-size: 2rem; */
/*       line-height: 1.3; */
/*   } */
/* } */

video::-webkit-media-controls {
     visibility: hidden;
}

video::-webkit-media-controls-enclosure {
     visibility: visible;
}

#bloc-video {
    height:65vh;
    padding: 0px 0px 0px 0px;
}

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
   /*  height: 75vh; */
    object-fit: cover;
    width: 100%;
}

/* Add some content at the bottom of the video/page */
.content {
    font-family: "Sources Sans Pro Light", sans-serif;
    position: absolute;
    /* bottom: 0; */
    background: rgba(0, 0, 0, 0.2); 
    text-shadow: black 0px 0px 10px;
    color: #f1f1f1;
    width: 100%;
    height:100%;
    padding: 20px;
    top:0;
    left:0;
}

#don a {
    border: 4px solid #3F3F3F;
    color: #3F3F3F;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    margin: auto;
    padding: 12px 32px 12px 82px;
    position: relative;
    text-decoration: none;
}

#don .label,
a .icon-arrow {
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000;
}

#don a .label {
    display: inline-block;
    transition: transform .5s cubic-bezier(0.86, 0, 0.07, 1);
}

#don a .icon-arrow {
    fill: #3F3F3F;
    height: 15px;
    top: 17px;
    transition: transform .5s cubic-bezier(0.86, 0, 0.07, 1), opacity .4s cubic-bezier(0.86, 0, 0.07, 1);
    width: 35px;
}

#don a .icon-arrow.before {
    left: 32px;
    margin-right: 15px;
    position: absolute;
    transform-origin: left center;
}

#don a .icon-arrow.after {
    margin-left: 15px;
    opacity: 0;
    position: absolute;
    right: 32px;
    transform: translateX(75%) scaleX(0.1);
    transform-origin: right center;
}

#don a:hover .label {
    transform: translateX(-52px);
}

#don a:hover .icon-arrow.before {
    opacity: 0;
    transform: translateX(-75%) scaleX(0.1);
}

#don a:hover .icon-arrow.after {
    opacity: 1;
    transform: translateX(0) scaleX(1);
}

#don a:active {
    border-color: #FD6154;
    color: #FD6154;
}

#don a:active .icon-arrow {
    fill: #FD6154;
}


.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-item {
  padding: 0 0 1px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  /* font-size: 16px; */
  /* background: #e4edf9; */
  /* padding: 5px 15px; */
  /* display: inline-block; */
  /* font-weight: 600; */
  /* margin-bottom: 10px; */
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

      
/* Style pour l'accordéon */
.accordion {
  overflow: hidden; /* Assure que les coins arrondis soient appliqués correctement */
}

/* Style pour le texte à l'intérieur du bouton */
.accordion-button h2 {
      margin: 0; /* Supprime les marges par défaut */
}

.accordion-button:focus {
  outline: none; /* Suppression de l'effet de focus */
}

/* Style pour l'accordéon */
      .accordion-item {
      border-radius: 10px; /* Bordures arrondies */
      margin-bottom: 5px; /* Marge entre chaque élément de l'accordéon */
      
      background-color: #f9f9f9; /* Couleur de fond de l'accordéon */
      border: 1px solid #ccc; /* Bordure de l'accordéon */
}

/* Style pour le bouton de l'accordéon */
      .accordion-button {
      font-family: "Sources Sans Pro Regular", sans-serif;
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
      padding-bottom: 20px;
      position: relative;
      color: #555;

        background-color: #ddd; /* Couleur de fond du bouton */
      padding: 10px; /* Espacement intérieur du bouton */
      cursor: pointer; /* Curseur pointeur au survol */
      width: 100%; /* Occupera toute la largeur de l'accordéon */
      text-align: center; /* Centre le texte dans le bouton */
      border: none; /* Supprime la bordure du bouton */
      border-bottom: 1px solid #ccc; /* Ajoute une bordure en bas du bouton */
      border-radius:10px 10px 0px 0px;
}

/* Style pour le contenu de l'accordéon */
.accordion-collapse {
  padding: 10px; /* Espacement intérieur du contenu */
}

/* Style pour le contenu de chaque accordéon */
.accordion-content {
  background-color: #fff; /* Couleur de fond du contenu de l'accordéon */
}
      

.accordion-body {
  padding: 20px; /* Espacement interne */
}

/* Style pour les images des événements */
.member img {
  max-width: 100%; /* Largeur maximale de l'image */
  height: auto; /* Hauteur automatique */
}


/* bouton */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Couleur de fond du bouton */
    color: #fff; /* Couleur du texte */
    text-decoration: none; /* Supprime le soulignement du lien */
    border-radius: 5px; /* Coins arrondis */
    transition: background-color 0.3s ease; /* Transition fluide */
}

.button:hover {
    background-color: #0056b3; /* Couleur de fond du bouton au survol */
      }
