
@import 'globalBaseColor.css';

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--global-primary-color);
}
.section-title p {
  margin-bottom: 0;
  font-style: italic;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
  /* background: url("../img/backgrounds/dakar.svg") top center; */
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin-bottom: -150px;
  z-index: 99;
  transition: 0.3s;
}
#hero:before {
  content: "";
  /* background: #026e74; */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 900;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}


#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-nous-contacter{
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--global-primary-color);
}

#hero .btn-nous-contacter:hover {
  background: var(--global-primary-color);
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px), (max-height: 700px) {
  #hero {
    height: 100vh;
    padding: 100px 0;
  }
  #hero h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
  padding-top: 0;
  position: relative;
  z-index: 100;
}
.icon-boxes .icon-box {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.icon-boxes .icon {
  color: var(--global-primary-color);
}

.icon-boxes .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 35px;
}

.icon-boxes .title span {
  color: var(--global-primary-color);
}

.icon-boxes .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #777777;
}

.icon-boxes .maj {
  float: right;
  font-size: 13px;
  color: var(--global-primary-color);
  margin-top: 10%;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding: 0px 0;
  background: url("../img/backgrounds/bg-map-2.png") top center no-repeat;
  position: relative;
  margin-top: -110px;
}
.about:before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .container {
  position: relative;
}

@media (max-width: 992px) {
  .about {
    padding: 0px 0;
  }
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--global-primary-color);
  opacity: 1;
}
.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.videotheque .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.videotheque .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.videotheque .video-box {
  min-height: 400px;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Adhésion
--------------------------------------------------------------*/
.adhesion .icon-box {
  margin-bottom: 20px;
  padding: 50px 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.adhesion .icon-box i {
  float: left;
  color: #00c2cb;
  font-size: 40px;
  line-height: 0;
}
.adhesion .icon-box h4 {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--global-primary-color);
  transition: 0.3s;
}

.adhesion .icon-box h4 a:hover {
  color: #0880e8;
}
.adhesion .icon-box p {
  margin-left: 5px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-bg {
  padding: 80px 0;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-secondary-dark-rgb), 0.8);
}

.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(var(--color-white-rgb), 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-white);
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(var(--color-white-rgb), 0.6);
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 26px;
  line-height: 0;
}
.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;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--global-primary-color);
  opacity: 1;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}



/* 

/*--------------------------------------------------------------
# Portfoio
--------------------------------------------------------------*/
.portfoio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.portfoio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 18px 10px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
}
.portfoio #portfolio-flters li:hover, .portfoio #portfolio-flters li.filter-active {
  color: #fff;
  background: var(--global-primary-color);
}
.portfoio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfoio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}
.portfoio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.portfoio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: var(--global-primary-color);
  padding: 15px 20px;
}

.portfoio .portfolio-item .portfolio-info i{
 color: white;
}

.portfoio .portfolio-item .portfolio-info h6 {
  color: #fff;
}

.portfoio .portfolio-item:hover img {
  top: -30px;
}
.portfoio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 00px;
  border-radius: 10px;
  background: #fff;
}
.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}
.team .member .pic img {
  transition: ease-in-out 0.3s;
}
.team .member:hover img {
  transform: scale(1.1);
}
.team .member .member-info {
  padding-left: 30px;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--global-primary-color);
}
.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #bfe0fd;
  bottom: 0;
  left: 0;
}
.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Faire un don
--------------------------------------------------------------*/
.custumed-input{
  border-radius: 5px;
  border-width: 0.5px;
  border-color: var(--global-primary-color) !important;
}

.custumed-input:focus{
  border-radius: 5px;
  border-color: var(--global-primary-color) !important;
}

.submit-btn-don {
  padding: 5px 32px;
  color: var(--global-primary-color);
  transition: 0.4s;
  border-radius: 50px;
  border: 2px solid var(--global-primary-color);
}
.submit-btn-don:hover span {
  display: none
}
.submit-btn-don:hover:before {
  content: "Coming soon...";
  color: rgb(255, 221, 0);
}
.submit-btn-don:hover {
  background: var(--global-primary-color);
  color: #fff;
}

.wave-orange-money-btn {
  padding: 5px 32px;
  color: var(--global-primary-color);
  transition: 0.4s;
  border-radius: 50px;
  border: 2px solid var(--global-primary-color);
}

.wave-orange-money-btn:hover  {
  background: var(--global-primary-color);
  color: #fff;
}


/*--------------------------------------------------------------
# agenda
--------------------------------------------------------------*/
.bloc-all-annonces{
  display: flex;
  justify-content: center;
}


.titre{
  color: var(--global-primary-color);
}


.date-time{
  display: flex;
  justify-content: space-around;
}


.voir-tout-lagenda-btn {
  padding: 10px 32px;
  color: var(--global-primary-color);
  transition: 0.4s;
  border-radius: 50px;
  border: 2px solid var(--global-primary-color);
  background: #fff;
}

.voir-tout-lagenda-btn:hover {
  background: var(--global-primary-color);
  color: #fff;
}


/*--------------------------------------------------------------
# cagnottes
--------------------------------------------------------------*/
.bloc-all-cagnottes{
  display: flex;
  justify-content: center;
}


.titre{
  color: var(--global-primary-color);
}


.date-time{
  display: flex;
  justify-content: space-around;
}


.voir-les-cagnottes-btn {
  padding: 10px 32px;
  color: var(--global-primary-color);
  transition: 0.4s;
  border-radius: 50px;
  border: 2px solid var(--global-primary-color);
  background: #fff;
}

.voir-les-cagnottes-btn:hover {
  background: var(--global-primary-color);
  color: #fff;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 20px;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--global-secondary-color);
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 10px 0 30px;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color:var(--global-secondary-color);
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}


/*--------------------------------------------------------------
# Section à la une
--------------------------------------------------------------*/
