/*----GothaPro-----*/
@font-face {
  font-family: GothaProBol;
  src: local("GothaProBol"), url(fonts/GothaProBol/GothaProBol.otf);
}
/*----ProximaNova-----*/
@font-face {
  font-family: ProximaNova-Bold;
  src: local("ProximaNova-Bold"), url(fonts/ProximaNova/ProximaNovaBold.otf);
}
@font-face {
  font-family: ProximaNova-Semi-Bold;
  src: local("ProximaNova-Semi-Bold"), url(fonts/ProximaNova/ProximaNovaSemibold.otf);
}
@font-face {
  font-family: ProximaNova-Regular;
  src: local("ProximaNova-Regular"), url(fonts/ProximaNova/ProximaNovaRegular.otf);
}
@font-face {
  font-family: ProximaNova-Regular-Italic;
  src: local("ProximaNova-Regular-Italic"), url(fonts/ProximaNova/ProximaNovaRegularItalic.otf);
}
@font-face {
  font-family: ProximaNovaCondensedRegular;
  src: local("ProximaNovaCondensedRegular"), url(fonts/ProximaNova/ProximaNovaCondensedRegular.otf);
}
@font-face {
  font-family: ProximaNovaCondensedBold;
  src: local("ProximaNovaCondensedBold"), url(fonts/ProximaNova/ProximaNovaCondensedBold.otf);
}
@font-face {
  font-family: ProximaNovaExtraCondensedRegular;
  src: local("ProximaNovaExtraCondensedRegular"), url(fonts/ProximaNova/ProximaNovaExtraCondensedRegular.otf);
}
/*----Montserrat-----*/
@font-face {
  font-family: MontserratReg;
  src: local("MontserratReg"), url(fonts/Montserrat/Montserrat-Regular.ttf);
}
@font-face {
  font-family: MontserratSemiBold;
  src: local("MontserratSemiBold"), url(fonts/Montserrat/Montserrat-SemiBold.ttf);
}
@font-face {
  font-family: MontserratBold;
  src: local("MontserratBold"), url(fonts/Montserrat/Montserrat-Bold.ttf);
}
/*
|----------------------
| General
|----------------------
|
*/
* {
  position: relative;
  z-index: 5;
  outline: none;
  font-size: 1rem;
  font-family: "MontserratReg", sans-serif;
  line-height: 1.5rem;
  color: #000;
}

body {
  overflow-x: hidden;
}

a:hover, a:focus, a:active {
  text-decoration: none;
}

ul, ol {
  padding: 0;
  margin: 0;
}

li {
  position: relative;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin: 0 0 10px;
  overflow: hidden;
  display: block;
}

h1, .h1 {
  font-size: 2.2rem;
  text-transform: uppercase;
  font-family: "MontserratBold", sans-serif;
}

h2, .h2 {
  font-size: 1.7rem;
  font-family: "MontserratBold", sans-serif;
}

h3, .h3 {
  font-size: 1.5rem;
  font-family: "MontserratBold", sans-serif;
}

.title-block {
  color: #d3680c;
}

main.main {
  display: flex;
  flex-direction: column;
  z-index: -1;
  min-height: calc(100vh - (193px + 85px));
}

.page-title {
  background-color: #ecf2f6;
}
.page-title__content {
  height: 150px;
}
.page-title__content h1.h1 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*<========slick=========>*/
.slick-dots {
  z-index: 10;
  bottom: 20px;
}

.slick-dots > li {
  margin-right: -5px;
}

.slick-dots > li > button {
  width: 15px;
  height: 15px;
  line-height: 13px;
  text-align: center;
  border-radius: 50%;
  font-size: 0px;
  padding: 0;
  border: solid 2px #158b15;
  background-color: #fff;
}

.slick-dots > li.slick-active > button {
  background-color: #158b15;
}

.header {
  border-bottom: 2px solid #158b15;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: none;
  background-color: #fff;
  box-shadow: 0 0 12px silver;
  z-index: 11;
}
.header__logo {
  width: 123px;
  transition: 1s;
}
.header__menu li a {
  margin-right: 75px;
  transition: 1s;
}
.header__menu li a:hover {
  color: #d3680c;
}
.header__menu li a.active {
  color: #d3680c;
}
.header__menu li:last-child a {
  margin-right: 0;
}
@media (max-width: 991px) {
  .header__menu {
    order: 3;
    width: 100%;
  }
  .header__menu.menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -1000px;
    padding: 45px 0 0 35px;
    height: 100vh;
    background-color: #000000eb;
    transition: all 0.5s ease-in;
  }
  .header__menu.menu.active {
    left: 0;
  }
  .header__menu.menu li a {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}
.header__btnMenu {
  font-size: 1.6rem;
  display: none;
}
.header__btnMenu i {
  color: #d3680c;
}
@media (max-width: 991px) {
  .header__btnMenu {
    display: block;
  }
}

.footer {
  background-color: #158b15;
}
.footer-top__item {
  width: 300px;
}
@media (max-width: 767px) {
  .footer-top__item {
    width: 100%;
  }
}
.footer-top__item h4 {
  color: #fff;
  border-bottom: 1px solid #fff;
  font-family: "MontserratSemiBold", sans-serif;
  font-size: 1.2rem;
}
.footer-top__item:nth-child(1) .menu li a {
  color: #fff;
  margin-right: 53px;
  margin-bottom: 1px;
  transition: 1s;
  font-size: 0.95rem;
}
.footer-top__item:nth-child(1) .menu li a:hover {
  color: #00ff66;
}
.footer-top__item:nth-child(1) .menu li:last-child a {
  margin-right: 0;
  margin-bottom: 0;
}
.footer-top__item:nth-child(2) p {
  color: #fff;
  margin-bottom: 0;
}
.footer-top__item:nth-child(2) address {
  color: #fff;
  font-size: 0.9rem;
}
.footer-top__item:nth-child(2) address i {
  color: #fff;
  font-size: 1.1rem;
}
.footer-top__item:nth-child(2) a {
  color: #fff;
  transition: 1s;
}
.footer-top__item:nth-child(2) a i {
  color: #fff;
  margin-right: 3px;
}
.footer-top__item:nth-child(2) a:hover {
  color: #00ff66;
}
@media (max-width: 767px) {
  .footer-top__item:nth-child(2) {
    margin-top: 20px;
  }
}
.footer-bottom {
  background-color: #d3680c;
}
.footer-bottom__content {
  padding: 4px 0;
}
.footer-bottom__content p {
  color: #fff;
  font-size: 0.8rem;
}
.footer-bottom__content a {
  color: #fff;
  font-family: "MontserratBold", sans-serif;
  font-size: 0.8rem;
  transition: 0.2s;
}
.footer-bottom__content a:hover {
  color: #00ff66;
}

.menu__list a {
  font-family: "MontserratSemiBold", sans-serif;
  color: #000;
}

.firstface-slide .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  background-color: #158b15a6;
  height: 70px;
  width: 50px;
  transition: 1s;
}
.firstface-slide .slick-arrow:hover {
  background-color: #158b15;
}
.firstface-slide .slick-arrow:before {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -66%);
}
.firstface-slide .slick-arrow.slick-prev {
  left: 0;
}
.firstface-slide .slick-arrow.slick-next {
  right: 0;
}
.firstface-slide__item {
  width: 100%;
  height: calc(100vh - 81px);
}
/*
 First galery
 de f1.jpeg a  f12.jpeg
*/
/*
 second galery
 de /formations/88.jpg a  /formations/99.jpg
*/
.firstface-slide__item.bg-f1 {
  background-image: url("../../images/formations/88.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f2 {
  background-image: url("../../images/formations/89.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f3 {
  background-image: url("../../images/formations/90.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f4 {
  background-image: url("../../images/formations/91.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f5 {
  background-image: url("../../images/formations/92.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f6 {
  background-image: url("../../images/formations/93.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f7 {
  background-image: url("../../images/formations/94.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f8 {
  background-image: url("../../images/formations/95.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f9 {
  background-image: url("../../images/formations/96.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f10 {
  background-image: url("../../images/formations/97.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f11 {
  background-image: url("../../images/formations/98.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.firstface-slide__item.bg-f12 {
  background-image: url("../../images/formations/99.jpg");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.activity {
  background-image: url("../../images/pattern-1.png");
  background-size: initial;
  background-repeat: repeat;
}
.activity__body {
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .activity__body {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.activity__left {
  width: 400px;
  height: auto;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 11px #0000008f;
}
.activity__left img {
  transition: all 0.5s ease-in;
}
.activity__left img:hover {
  transform: scale(1.2, 1.2);
}
@media (max-width: 991px) {
  .activity__left {
    height: auto;
  }
}
.activity__right {
  width: calc(100% - 400px);
  padding-left: 50px;
}
@media (max-width: 991px) {
  .activity__right {
    width: 100%;
    margin-top: 25px;
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .activity__voirplus {
    text-align: center;
  }
}
.activity__voirplus a {
  font-family: "ProximaNova-Bold", sans-serif;
  border: 2px solid #158b15;
  border-radius: 35px;
  color: #158b15;
  padding: 7px 22px;
  transition: all 0.4s ease-in;
}
.activity__voirplus a i {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  right: 20px;
  color: #fff;
  opacity: 0;
  transition: all 0.4s ease-in;
}
.activity__voirplus a:hover {
  padding-right: 35px;
  color: #fff;
  background-color: green;
}
.activity__voirplus a:hover i {
  opacity: 1;
}

.stat__img {
  margin: 0 auto 10px auto;
}
.stat__img span {
  width: 80px;
  height: 101px;
}
.stat__percent {
  color: #158b15;
  font-family: "MontserratBold", sans-serif;
  font-size: 2.8rem;
}
.stat__title {
  font-family: "MontserratBold", sans-serif;
  color: #d3680c;
  margin-top: 5px;
}

.partner {
  background-color: #ecf2f6;
}
.partner__list .slick-arrow {
  background-color: #158b15a6;
  height: 45px;
  width: 45px;
  top: inherit;
  bottom: -71px;
  border-radius: 50%;
  overflow: hidden;
  transition: 1s;
}
.partner__list .slick-arrow:before {
  height: 44px;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.partner__list .slick-arrow:hover {
  background-color: #158b15;
}
.partner__list .slick-arrow.slick-prev {
  left: 15px;
}
.partner__list .slick-arrow.slick-next {
  right: 15px;
}
.partner__item {
  display: flex !important;
  justify-content: center;
  vertical-align: middle;
  width: 230px;
  border: 1px dashed #158b15;
  padding: 5px;
}
.partner__item img {
  height: 110px;
}

.strategie {
  background-image: url("../../images/pattern-1.png");
  background-size: initial;
  background-repeat: repeat;
}
.strategie__content p {
  text-indent: 35px;
}

.centre {
  box-shadow: 0 0 18px #c0c0c0a8;
}

.infras-centre__during h4.h4 {
  font-family: "MontserratBold", sans-serif;
  font-size: 1.1rem;
}
.infras-centre__during ul li {
  padding-left: 15px;
}
.infras-centre__during ul li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  height: 8px;
  width: 5px;
  border-right: 2px solid #158b15;
  border-bottom: 2px solid #158b15;
  transform: rotate(45deg);
}
.infras-centre__left {
  font-family: "MontserratBold", sans-serif;
  line-height: 2rem;
  background-color: #d3680c;
  color: #fff;
  padding: 2px 0 2px 8px;
  margin-top: 75px;
}
.infras-centre__left:before {
  content: "";
  position: absolute;
  top: -30px;
  right: -48px;
  border-style: solid;
  border-width: 49px 0 50px 50px;
  border-color: transparent transparent transparent #d3680c;
}
@media (max-width: 767px) {
  .infras-centre__left {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .infras-centre__left:before {
    display: none;
  }
}
.infras-centre__item {
  padding-left: 18px;
}
.infras-centre__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #158b15;
}
.infras-centre__objectifs {
  box-shadow: 0 0 40px #e8e0e0;
  padding: 15px;
  border-radius: 6px;
}

.jardin {
  box-shadow: 0 4px 18px 0px #c0c0c0a8;
  background-color: #ecf2f6;
}
.jardin__content p {
  text-indent: 35px;
}

.electrification__content p {
  text-indent: 35px;
}

.ong-desc {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .ong-desc {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.ong-desc__left {
  width: 400px;
  height: auto;
}
.ong-desc__left img {
  border-radius: 5px;
  box-shadow: 0 0 11px #0000008f;
  transition: all 0.5s ease-in;
}
.ong-desc__left img:hover {
  transform: scale(1.05, 1.05);
}
@media (max-width: 991px) {
  .ong-desc__left {
    height: auto;
  }
}
.ong-desc__right {
  width: calc(100% - 400px);
  padding-left: 50px;
}
@media (max-width: 991px) {
  .ong-desc__right {
    width: 100%;
    margin-top: 25px;
    padding-left: 0;
  }
}

.formation-text, .formation-during, .jardin-text {
  display: none;
}

.control-arrow a {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #158b15;
  transition: all 0.5s ease-in;
}
.control-arrow a i {
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.control-arrow a:hover {
  box-shadow: 0 0 18px #c0c0c0a8;
}
.control-arrow a.rotate {
  transform: rotate(180deg);
}
.control-arrow span {
  color: #158b15;
}

.galerie__item {
  width: 300px;
  height: 397px;
  overflow: hidden;
  border: 3px solid #158b15;
  margin: 5px;
  background-color: #000;
  transition: 1.5s;
}
.galerie__item a {
  height: 397px;
}
.galerie__item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -357px;
  width: 100%;
  height: 100%;
  padding: 10px 5px;
  background-color: #458c1885;
  z-index: 6;
}
@media (max-width: 340px) {
  .galerie__item:before {
    bottom: -307px;
  }
}
.galerie__item:hover {
  filter: brightness(0.8);
}
@media (max-width: 340px) {
  .galerie__item {
    height: 350px;
  }
  .galerie__item a {
    height: 350px;
  }
}
.galerie__title {
  font-family: "GothaProBol", sans-serif;
  position: absolute;
  bottom: 4px;
  left: 7px;
  z-index: 6;
  font-size: 1.1rem;
}

.fancybox-infobar {
  color: #fff;
}
.fancybox-infobar span {
  color: #fff;
  font-family: "GothaProBol", sans-serif;
}

.fancybox-toolbar button svg path {
  color: #fff;
}

.fancybox-image {
  border: 6px solid #fff !important;
  border-radius: 2px;
}

.identification {
  border-bottom: 1px solid #ecf2f6;
  background-size: initial;
  background-repeat: repeat;
  background-color: #158b15;
}
.identification__name {
  text-align: center;
}
.identification__name h4.h4 {
  font-size: 1rem;
  font-family: "GothaProBol", sans-serif;
  color: #fff;
}
.identification__name p {
  color: #fff;
}
.identification__name p em {
  color: #fff;
}
@media (max-width: 991px) {
  .identification__name {
    text-align: left;
    padding-top: 25px !important;
    padding-right: 15px !important;
    padding-bottom: 0 !important;
    padding-left: 15px !important;
  }
}
.identification__siege {
  text-align: center;
}
.identification__siege h4.h4 {
  font-size: 1rem;
  font-family: "GothaProBol", sans-serif;
  color: #fff;
}
.identification__siege p {
  color: #fff;
}
@media (max-width: 991px) {
  .identification__siege {
    text-align: left;
    padding-top: 10px !important;
    padding-right: 15px !important;
    padding-bottom: 0 !important;
    padding-left: 15px !important;
  }
}
.identification__date {
  text-align: center;
}
.identification__date h4.h4 {
  font-size: 1rem;
  font-family: "GothaProBol", sans-serif;
  color: #fff;
}
.identification__date p {
  color: #fff;
}
@media (max-width: 991px) {
  .identification__date {
    text-align: left;
    padding-top: 10px !important;
    padding-right: 15px !important;
    padding-bottom: 0 !important;
    padding-left: 15px !important;
  }
}
.identification__register {
  text-align: center;
}
.identification__register h4.h4 {
  font-size: 1rem;
  font-family: "GothaProBol", sans-serif;
  color: #fff;
}
.identification__register p {
  color: #fff;
}
@media (max-width: 991px) {
  .identification__register {
    text-align: left;
    padding-top: 10px !important;
    padding-right: 15px !important;
    padding-bottom: 15px !important;
    padding-left: 15px !important;
  }
}

@media (max-width: 575px) {
  .mission__left {
    text-align: -webkit-center !important;
    text-align: center;
    margin-bottom: 40px;
  }
}
.mission__img {
  width: 230px;
}
.mission__smallTitle {
  color: #158b15;
  font-family: "GothaProBol", sans-serif;
  font-size: 1.2rem;
}
.mission__text p {
  font-family: "ProximaNova-Bold", sans-serif;
  opacity: 0.8;
}

.stat.stat-about {
  background-image: url("../../images/pattern-1.png");
  background-size: initial;
  background-repeat: repeat;
}

.team__item {
  box-shadow: 0 0 5px #0000000d;
  width: 260px;
  margin: 8px 5px;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
.team__item:hover {
  box-shadow: 0 0 30px #d9d1d1d1;
}
.team__name {
  font-family: "GothaProBol", sans-serif;
  color: #158b15;
  font-size: 1rem;
}
.team__post p {
  font-family: "GothaProBol", sans-serif;
  color: silver;
  font-size: 0.9rem;
}
.team__email {
  font-family: "GothaProBol", sans-serif;
  color: #80b062;
}

@media (max-width: 575px) {
  .contact__right {
    margin-top: 35px;
  }
}
.contact__phone {
  margin-top: 20px;
  color: #158b15;
}
.contact__phone i {
  color: #d3680c;
}
.contact__phone:hover {
  color: #d3680c;
}
.contact__email {
  margin-bottom: 8px;
  color: #158b15;
}
.contact__email i {
  color: #d3680c;
}
.contact__email:hover {
  color: #d3680c;
}
.contact__map {
  width: 100%;
}
.contact #gmap_canvas {
  width: 100%;
  bottom: -7px;
}

/*# sourceMappingURL=style.css.map */
