/*=====================================================
GLOBALS
======================================================*/
body {
  height: 100%;
  width: 100%;
  background-color: #212121;
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: white;
  animation: fadeIn 1s;
}
body,
html {
  margin: 0;
  padding: 0;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
.section-1,
.section-2,
.section-3,
.section-4,
.section-separator,
.section-separator-2,
.section-separator-3,
.section-action-separator,
.section-action,
.section-mentions {
  width: 100vw;
  max-width: 100%;
}

/*=====================================================
UTILITIES
======================================================*/
.d-jus {
  display: flex;
  justify-content: center;
}

.fontw-6 {
  font-weight: 600;
}

/*=====================================================
ANIMATIONS
======================================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes MoveUpDown {
  0%,
  100% {
    top: -3px;
  }
  50% {
    top: 15px;
  }
}

@keyframes animate-down {
  0% {
    opacity: 0;
    transform: translate(0px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0px, 10px);
  }
}

@keyframes animate-up {
  0% {
    opacity: 0;
    transform: rotate(180deg) translate(0px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(180deg) translate(0px, 10px);
  }
}

/*=====================================================
=======================================================
|                   PAGE 1 INDEX                      |
=======================================================
======================================================*/

/*=====================================================
SECTION 1
======================================================*/
.section-1 {
  padding: 0;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../img/Accueil/pres.jpg);
}

.overlay-1 {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  top: 0;
  left: 0;
  background-color: #241526;
  /* background-color: rgba(200, 153, 101, .8); */
}

.section-1 .container {
  position: relative;
}

.section-1 .container .row:nth-child(1) {
  height: 100vh;
}

.title-box {
  flex-direction: column;
  padding: 0;
  text-align: center;
}

.title-border-box {
  padding: 3rem;
  border: 8px solid;
  border-color: rgba(202, 148, 61, 0.4);
}

.title-icon {
  color: white;
  font-size: 70px;
  line-height: 80px;
  margin-bottom: 3.5rem;
}

.title-text {
  color: white;
  font-size: 160px;
  margin-bottom: 3.5rem;
  font-weight: 600;
  line-height: 95px;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-right: auto;
  margin-left: auto;
}

.title-span {
  color: #bf8b4cfa;
}

.title-subtext {
  letter-spacing: 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: white;
  text-underline-offset: 10px;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.section-1 .title-subsection {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  right: 0px;
  left: 0;
}

.animation-border-bottom:after {
  backface-visibility: hidden;
  border: 1px solid white;
  bottom: -25%;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 280ms ease-in-out;
  width: 0;
  opacity: 0;
}

.animation-border-bottom:hover:after {
  backface-visibility: hidden;
  transition: width 350ms ease-in-out;
  width: 70%;
  opacity: 1;
}

.section-1 .title-subsection .navbar {
  background-color: #bf8c4c;
  padding: 2.4rem;
  display: flex;
  align-items: center;
  /* min-height: 125px; */
}
.section-1 .title-subsection a {
  color: white;
  font-size: 1.5vw;
  font-weight: 200;
}

.section-1 .title-subsection .nav-white-section {
  background-color: white;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 125px; */
}

.section-1 .title-subsection .nav-white-section i {
  position: relative;
  color: #bf8c4c;
  font-size: 45px;
  transition: all 1s ease;
  animation: animate-down 2s cubic-bezier(0.25, 0.5, 0.5, 1.25) infinite;
}

.section-1 .isSticky .nav-white-section {
  min-height: 75px;
}

.section-1 .title-subsection .nav-white-section:hover i {
  opacity: 1 !important;
  animation-play-state: paused;
}

.isSticky {
  position: fixed !important;
  z-index: 2 !important;
  top: 0 !important;
  height: 7vh;
}

.col-12-navbar {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

/*=====================================================
RESPONSIVE SECTION 1
======================================================*/
@media (max-width: 991px) {
  .section-1 .container {
    max-width: 960px;
  }
}

@media (max-width: 973px) {
  .title-border-box {
    padding: 1vw;
  }

  .title-text {
    font-size: 21vw;
  }
}

@media (max-width: 597px) {
  .section-1 .title-subsection .nav-white-section {
  }

  .section-1 .title-subsection .navbar {
  }

  .section-1 .title-subsection .navbar a::after {
    bottom: 6%;
  }
}

@media (max-width: 425px) {
  .title-text {
    font-size: 84px;
    margin-bottom: 3.5rem;
    line-height: 40px;
    letter-spacing: -4px;
  }

  .title-border-box {
    padding: 1vw;
  }
}

@media (max-width: 348px) {
  .title-text {
    font-size: 24vw;
  }

  .title-subtext {
    text-underline-offset: 2vw;
  }

  .title-subsection a {
    font-size: 9vw !important;
  }
}

/*=====================================================
SECTION 1 SEPARATOR
======================================================*/

.section-separator {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-image: url(../img/Accueil/pauvrete.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  visibility: visible;
}
.section-separator .container::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 5px;
  height: 20%;
  background-color: rgba(202, 148, 61, 0.4);
}

.section-separator .container::after {
  content: "";
  position: absolute;
  bottom: 22%;
  left: 50%;
  width: 5px;
  height: 8%;
  background-color: rgba(202, 148, 61, 0.4);
}

.overlay-separator {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  background-color: #241526;
  /*#402644*/
}

.section-separator .row {
  align-items: center;
}

.section-separator .row .col-12 {
  text-align: center;
}

.section-separator .row .col-12 h2 {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-separator .row .col-12 h2 span {
  color: #bf8c4c;
  /* text-decoration: underline;
    text-underline-offset: 10px; */
}

/*=====================================================
RESPONSIVE SECTION 1 SEPARATOR
======================================================*/
@media (max-width: 991px) {
  .section-separator .container {
    max-width: 960px;
  }
}
/*=====================================================
SECTION 2
======================================================*/
.section-2 {
  padding: 0;
  visibility: visible;
  animation-name: fadeIn;
}

.section-2 .container-fluid .row .col-12:nth-child(1) {
  position: relative;
  overflow: hidden;
  visibility: visible;
  background-image: url(../img/Accueil/groupe.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.overlay-2 {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100vw;
  opacity: 0.2;
  top: 0;
  left: 0;
  background-color: #bf8c4c;
}

.section-2 .container-fluid .row .col-12:nth-child(2),
.half-section-padding {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
  padding-left: 10.5rem;
  padding-right: 10.5rem;
  background-color: #241526;
  /*#402644*/
  visibility: visible;
  animation-delay: 0.3s;
  animation-name: fadeIn;
}

.section-2 .container-fluid .row .col-12:nth-child(2) span:nth-child(1) {
  display: block;
  color: #bf8c4c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.section-2 .container-fluid .row .col-12:nth-child(2) h3 {
  font-size: 2.85rem;
  line-height: 3.4rem;
  letter-spacing: -1px;
  font-weight: 500;
  width: 90%;
  margin-bottom: 5.5rem;
}

.section-2 .container-fluid .row .col-12:nth-child(2) .section-2-text-box {
  background-color: #1c101e;
  /*#241526*/
  padding-bottom: 35px;
  padding-top: 35px;
  padding-left: 50px;
  padding-right: 50px;
}

.section-2 .container-fluid .row .col-12:nth-child(2) .section-2-text-box span {
  margin-bottom: 0;
}
/*=====================================================
SECTION 2 RESPONSIVE
======================================================*/
@media screen and (max-width: 1440px) {
  .section-2 .container-fluid .row .col-12:nth-child(2) {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media (max-width: 991px) {
  .section-2 {
    height: auto;
  }

  .section-2 .col-lg-5 {
    height: 50vh;
    order: 2;
  }

  .section-2 .col-lg-7 {
    order: 1;
  }
}

@media screen and (max-width: 425px) {
  .section-2 .container-fluid .row .col-12:nth-child(2) {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

@media screen and (max-width: 320px) {
  .section-2 .container-fluid .row .col-12:nth-child(2) .section-2-text-box {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/*=====================================================
SECTION 2 SEPARATOR 
======================================================*/

.section-separator-2 {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-image: url(../img/Accueil/bg.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  visibility: visible;
}

.overlay-3 {
  position: absolute;
  z-index: 1;

  height: 100%;
  width: 100%;
  opacity: 0.5;
  top: 0;
  left: 0;
  /* background-color: #241526; */
  background-color: rgba(200, 153, 101, 0.2);
}

.section-separator-2 .container::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 5px;
  height: 20%;
  background-color: rgba(202, 148, 61, 0.4);
}

.section-separator-2 .container::after {
  content: "";
  position: absolute;
  bottom: 22%;
  left: 50%;
  width: 5px;
  height: 8%;
  background-color: rgba(202, 148, 61, 0.4);
}

.no-before .container::before,
.no-after .container::after {
  content: "";
  width: 0px;
}

.section-separator-2 .row {
  align-items: center;
}

.section-separator-2 .row .col-12 {
  text-align: center;
}

.section-separator-2 .row .col-12 h2 {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #241526;
}

.section-separator-2 .row .col-12 h2 span {
  color: #bf8c4c;
  /* text-decoration: underline;
    text-underline-offset: 10px; */
}

/*=====================================================
SECTION SEPARATOR 2 RESPONSIVE
======================================================*/
@media (max-width: 991px) {
  .section-separator-2 .container {
    max-width: 960px;
  }
}

@media screen and (max-width: 375px) {
  .section-separator-2 .row .col-12 h2 {
    font-size: 12vw;
  }
}
/*=====================================================
SECTION 3
======================================================*/
.section-3 {
  padding: 0;
  visibility: visible;
  animation-name: fadeIn;
}

.section-3 .container-fluid .row .col-xl-5 {
  padding-top: 9.5rem;
  padding-bottom: 6rem;
  padding-left: 7rem;
  padding-right: 7rem;
  background-color: #241526;
  /*#402644*/
  visibility: visible;
  animation-delay: 0.3s;
  animation-name: fadeIn;
}

.section-2 .container-fluid .row .col-xl-5 span:nth-child(1) {
  display: block;
  color: #bf8c4c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.section-3 .container-fluid .row .col-xl-5 span {
  display: block;
  color: #bf8c4c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.section-3 .container-fluid .row .col-xl-5 h3 {
  font-size: 2.85rem;
  line-height: 3.4rem;
  letter-spacing: -1px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 4rem;
}

.section-3 .container-fluid .row .col-xl-5 .section-2-text-box {
  background-color: #1c101e;
  /*#241526*/
  padding-bottom: 35px;
  padding-top: 35px;
  padding-left: 50px;
  padding-right: 50px;
}

.section-3 .container-fluid .row .col-xl-5 .section-2-text-box span {
  margin-bottom: 0;
}

.section-3 .container-fluid .row .col-xl-7 {
  position: relative;
  overflow: hidden;
}
.section-3 .container-fluid .row .col-xl-7 .row:nth-child(1) {
  height: 100%;
}

.section-3
  .container-fluid
  .row
  .col-xl-7
  .row:nth-child(1)
  .col-12:nth-child(2) {
  height: 20%;
}
.section-3 .container-fluid .row .col-xl-7 .img-box {
  height: 80%;
  visibility: visible;
  background-image: url(../img/Accueil/distribution.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.overlay-2 {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100vw;
  opacity: 0.2;
  top: 0;
  left: 0;
  background-color: #bf8c4c;
}

.right-row .col-12:nth-child(2) {
  padding: 0;
  background-color: #feffea;
}

.right-row .col-12:nth-child(2) .quote-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-row .col-12:nth-child(2) .quote-icon {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #bf8c4c;
}

.right-row .col-12:nth-child(2) .quote-icon i {
  font-size: 64px;
  color: white;
  font-weight: 900;
  margin-right: 0;
}

.right-row .col-12:nth-child(2) .quote-block {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/Accueil/bg.jpg");
  background-size: 140%;
  background-repeat: no-repeat;
  background-position: top center;
  height: 20%;
}

.right-row .col-12:nth-child(2) .quote-block .quote-text {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
  height: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-row .col-12:nth-child(2) .quote-text h6 {
  color: #3f2642;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 48px;
  font-style: italic;
  letter-spacing: 0;
}

.quote-text span:nth-child(1) {
  font-weight: 600;
  font-size: 2.5rem;
}

.quote-text .underline {
  text-decoration: underline #bf8c4c87 solid;
  text-decoration-skip-ink: auto;
  text-underline-offset: 10px;
}

.quote-text .fa-quote-right {
  position: absolute;
  opacity: 0.2;
  color: #bf8c4c;
  font-size: 64px;
  font-weight: 900;
  margin-right: 0;
  right: 10%;
  bottom: 20%;
}

/*=====================================================
SECTION 3 RESPONSIVE
======================================================*/

@media screen and (max-width: 1440px) {
  .section-3 .container-fluid .row .col-12:nth-child(1) {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media screen and (max-width: 1439px) {
  .section-3 .container-fluid .quote-block .quote-icon {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .section-3 .container-fluid .quote-block .quote-text {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .section-3 .container-fluid .quote-block .quote-text h6 {
    font-size: 1.2vw;
  }

  .quote-text span:nth-child(1) {
    font-size: 2rem;
  }
}

@media (max-width: 1199px) {
  .section-1 .title-subsection a {
    color: white;
    font-size: 1.7vw;
    font-weight: 200;
    line-height: 2.5vw;
  }

  .full-width-navbar {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .quote-text {
    padding-top: 39px;
    padding-bottom: 39px;
  }

  .section-3 .container-fluid .quote-block .quote-text h6 {
    font-size: 2vw;
  }

  .quote-text span:nth-child(1) {
    font-size: 1.7rem;
  }
}

@media (max-width: 991px) {
  .section-3 {
    height: auto;
  }

  .right-row {
    height: 80vh !important;
  }

  .img-box {
    height: 80%;
  }
  .right-row .col-12:nth-child(2) .quote-text h6 {
    line-height: 4vw;
  }
  .right-row .col-12:nth-child(2) .quote-text h6 span:nth-child(1) {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 530px) {
}

@media screen and (max-width: 425px) {
  .section-3 .container-fluid .row .col-12:nth-child(1) {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .quote-text h6 {
    font-size: 10px !important;
    line-height: 4.5vw !important;
  }

  .quote-text h6 span:nth-child(1) {
    font-size: 4.8vw !important;
  }

  .quote-text h6 .underline {
    text-underline-offset: 1px;
  }

  .section-1 .title-subsection .navbar {
    padding: 1rem;
  }

  .section-1 .title-subsection .nav-white-section i {
    font-size: 4vw;
  }
}

@media screen and (max-width: 375px) {
  .quote-text h6 {
    line-height: 5vw !important;
  }
}

@media screen and (max-width: 320px) {
  .section-3 .container-fluid .row .col-xl-5 .section-2-text-box {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* @media  screen and (max-width: 1440px){
    .section-3 .container-fluid .col-lg-5 .section-3-text-container{
        padding-left: 5rem!important; 
        padding-right: 5rem!important;
    }
}

@media (max-width: 576px){
    
    .section-3-text-container .section-3-text-block .section-3-text-content {
        width:100%
    }
}

@media  screen and (max-width: 425px){
    .section-3 .container-fluid .col-lg-5 .section-3-text-container {
        padding-left: 1rem!important;
        padding-right: 1rem!important;
    }
} */

/*=====================================================
SECTION 3 SEPARATOR
======================================================*/

.section-separator-3 {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-image: url(../img/Accueil/pauvrete.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  visibility: visible;
}
.section-separator-3 .container::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 5px;
  height: 20%;
  background-color: rgba(202, 148, 61, 0.4);
}

.section-separator-3 .container::after {
  content: "";
  position: absolute;
  bottom: 22%;
  left: 50%;
  width: 5px;
  height: 8%;
  background-color: rgba(202, 148, 61, 0.4);
}

.section-separator-3 .overlay-2 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.9;
  background-color: #241526;
  /*#402644*/
}

.section-separator-3 .row {
  align-items: center;
}

.section-separator-3 .row .col-12 {
  text-align: center;
  padding: 0;
}

.section-separator-3 .row .col-12 h2 {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-separator-3 .row .col-12 h2 span {
  color: #bf8c4c;
}

/*=====================================================
RESPONSIVE SECTION 3 SEPARATOR
======================================================*/
@media (max-width: 991px) {
  .section-separator-3 .container {
    max-width: 960px;
  }
}

@media screen and (max-width: 375px) {
  .section-separator-3 .row .col-12 h2 {
    font-size: 12vw;
  }
}
/*=====================================================
SECTION 4
======================================================*/
.section-4 {
  padding: 0;
  height: 800px;
}

.section-4 .container-fluid {
  height: 100%;
  padding: 0;
}

.section-4 .container-fluid .row:nth-child(1):not(.left-col-header) {
  max-height: 100%;
  height: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
  display: flex;
  justify-content: center;
}

.section-4 .left-col {
  height: 100%;
  background-color: #feffea;
  padding: 0;
}

.section-4 .left-col .col-12:nth-child(1) {
  text-align: center;
  padding-top: 0;
}

.section-4 .left-col h6:nth-child(1) {
  color: #bf8c4c;
  font-size: 2.85rem;
  line-height: 3.4rem;
  letter-spacing: -1px;
  font-weight: 500;
  width: 100%;
  padding-left: 7rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.section-4 .left-col .row:nth-child(1) .col-12:nth-child(1) {
  padding: 0;
  max-height: 100%;
  display: flex;
  justify-content: center;
}

.left-col-header .col-6 {
  text-align: left;
}

.left-col-header .col-3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-col-header .col-3 a {
  position: relative;
  color: #bf8c4c;
  font-size: 45px;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.left-col-header .col-3 a i {
  transform: rotate(180deg) !important;
  /*animation: animate-up 2s cubic-bezier(.25,.5,.5,1.25) infinite;*/
  -webkit-transform: rotate(180deg) !important;
  -moz-transform: rotate(180deg) !important;
  -ms-transform: rotate(180deg) !important;
  -o-transform: rotate(180deg) !important;
}

.section-4 .left-col .left-col-content {
  height: 100%;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-bottom: 0rem;
}

.section-4 .left-col .left-col-panel-1 {
  height: 100%;
  width: 100%;
  background-color: #241526;
  transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.padder-1 p {
  text-align: left;
  padding: 7rem;
  background-color: #1c101e;
}

.padder-1,
.padder-2 {
  padding-left: 7rem;
  padding-right: 7rem;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

/* .section-4 .left-col .left-col-panel-2 {
  border-top: 1px solid #bf8c4c;
  height: 15%;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #feffea;
  transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
} */

.section-4 .left-col .left-col-panel-2 .left-col-header {
  cursor: pointer;
}

.padder-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.padder-2 ul {
  width: 50%;
  padding: 4rem;
  list-style: none;
  background-color: #bf8b4cfa;
  text-align: justify;
}

.padder-2 ul li {
  text-align: left;
}

.letter {
  font-size: 20px;
  font-weight: 700;
}

.membre {
  color: white;
}

.section-4 .right-col {
  padding-left: 0;
  padding-right: 0rem;
  padding-bottom: 0rem;
  height: 100%;
}

.section-4 .right-col .cover-img {
  background-image: url("../img/Accueil/dsitrib-pe.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.section-4 .col-4 img {
  height: 100%;
}

/*=====================================================
SECTION 4 RESPONSIVE
======================================================*/
@media screen and (max-width: 1440px) {
  .section-4 .padder-1,
  .section-4 .padder-2 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .section-4 .left-col h6:nth-child(1) {
    padding-left: 5rem !important;
  }

  .section-4 .padder-2 ul {
    width: 50%;
    height: auto;
    padding: 5rem;
  }
}

@media (max-width: 991px) {
  .section-4 {
    height: 940px;
  }
  .section-4 .padder-2 ul {
    width: 50%;
    height: auto;
    padding: 2rem;
  }
}

@media screen and (max-width: 874px) {
}

@media screen and (max-width: 547px) {
  .section-4 .padder-1 p {
    padding: 3rem;
  }
}

@media screen and (max-width: 475px) {
  .section-4 .padder-2,
  .section-4 .padder-1 {
    padding-top: 0;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

@media screen and (max-width: 425px) {
  .section-4 .padder-1,
  .section-4 .padder-2 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    padding-top: 0 !important;
    padding-bottom: 1rem !important;
  }
  .section-4 {
    height: 800px;
  }
  .padder-2 {
    height: 81%;
  }

  .padder-2 ul {
    height: 100%;
  }

  .padder-2 ul li {
    padding: 0rem;
  }
  .section-4 .padder-2 ul {
    padding: 1rem;
  }
  .section-4 .left-col h6:nth-child(1) {
    padding-left: 2rem !important;
  }

  .padder-2 {
    height: auto;
  }
}

@media screen and (max-width: 375px) {
  .section-4 {
    height: 1000px;
  }
  .left-col-header,
  .right-col-header {
    margin-bottom: 20px;
  }
  .section-4 .padder-1,
  .section-4 .padder-2 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .padder-2 {
    height: 60%;
  }

  .padder-2 ul {
    height: 100%;
    padding-bottom: 0 !important;
    padding-top: 1rem !important;
  }

  .padder-2 ul li {
    padding: 0.6rem;
  }
  .section-4 .left-col h6:nth-child(1) {
    padding-left: 2rem !important;
  }
}

@media screen and (max-width: 356px) {
  .section-4 {
    height: 1000px;
  }
  .left-col-header,
  .right-col-header {
    margin-bottom: 30px;
  }
  .padder-2 ul li {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}
@media screen and (max-width: 343px) {
  .section-4 .padder-1 p {
    padding: 2rem;
  }
}

@media (max-width: 320px) {
  .left-col-header .col-3 {
    padding-left: 0;
  }

  .padder-2 {
    height: auto;
  }
  .padder-2 ul li {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .padder-2 ul li:not(.not) {
    border-bottom: white solid 1px;
  }

  .section-4 .left-col h6:nth-child(1) {
    padding-left: 1rem !important;
  }
}

/*=====================================================
FOOTER
======================================================*/

footer {
  background-color: #dfd5c6;
  /*#D1B085*/
  position: relative;
  background-image: url(../img/icones/foulage.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  overflow: hidden;
  visibility: visible;
  /*#ddc296*/
}

.overlay-footer {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  top: 0;
  left: 0;
  background-color: #bf8b4cfa;
  /* background-color: rgba(200, 153, 101, .8); */
}
footer .footer-top {
  padding-top: 5%;
  padding-bottom: 1%;
}

footer .footer-top span a {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
}

footer .footer-top span a::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 0%;
  width: 0%;
  height: 3px;
  bottom: 17%;
  left: 32%;
  transition: all 0.3s ease;
}

footer .footer-top span a:hover::after {
  width: 35%;
}

footer .footer-bottom {
  padding-bottom: 1%;
  border-color: rgba(255, 255, 255, 0.2);
  border-top: 1px solid;
}
footer .footer-bottom .container .row {
  display: flex;
  align-items: center;
}

footer .footer-bottom .container .row .img-bottom {
  text-align: left;
}

footer .footer-bottom .container .row .col-md-6 {
  text-align: center;
}

footer .footer-bottom .container .row .col-md-6 p {
  margin: 0 0 25px;
}

footer .footer-bottom .container .row .col-md-3 {
  text-align: center;
}

footer .footer-bottom .container .row .col-md-3 a {
  color: white;
  display: inline-block;
}

footer .footer-bottom .container .row .col-md-3 a i {
  font-size: 20px;
  font-weight: 700;
}
.link-h {
  color: #3f2642;
  font-weight: 400;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
}

.link-h:hover {
  color: #1c101e;
  border-bottom: solid 0.2rem #241526;
}

/*=====================================================
FOOTER RESPONSIVE
======================================================*/

/*=====================================================
=======================================================
|                   PAGE 2 ACTIONS                    |
=======================================================
======================================================*/

/*=====================================================
SECTION 1
======================================================*/
.section-1 .title-subsection .action {
  color: white;
  font-size: 1.4vw;
  font-weight: 200;
}

.title-border-box-purple {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 0;
  padding-right: 0;
  border: 8px solid;
  border-color: rgba(36, 21, 38, 0.8);
}

.purple-bg {
  background-color: #241526 !important;
}

.purple-col {
  color: #241526 !important;
}

/*=====================================================
SECTION 1 Responsive
======================================================*/
@media (max-width: 973px) {
  .title-text.tt-action {
    font-size: 18vw;
  }
}

/*=====================================================
SECTION 1 SEPARATOR
======================================================*/

.section-action-separator {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-image: url(../img/Accueil/pauvrete.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  visibility: visible;
}
.section-action-separator .container::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 5px;
  height: 20%;
  background-color: rgba(202, 148, 61, 0.4);
}

.section-action-separator .container::after {
  content: "";
  position: absolute;
  bottom: 22%;
  left: 50%;
  width: 5px;
  height: 8%;
  background-color: rgba(202, 148, 61, 0.4);
}

.overlay-separator {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  background-color: #241526;
  /*#402644*/
}

.section-action-separator .row {
  align-items: center;
}

.section-action-separator .row .col-12 {
  text-align: center;
}

.section-action-separator .row .col-12 h2 {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-action-separator .row .col-12 h2 span {
  color: #bf8c4c;
  /* text-decoration: underline;
    text-underline-offset: 10px; */
}

/*=====================================================
RESPONSIVE SECTION 1 SEPARATOR
======================================================*/
@media (max-width: 991px) {
  .section-separator .container {
    max-width: 960px;
  }
}

@media screen and (max-width: 375px) {
  .section-separator .row .col-12 h2 {
    font-size: 12vw;
  }
}

/*=====================================================
SECTION ACTIONS
======================================================*/

.section-action {
  background-color: #feffea;
  height: auto;
  width: 100%;
}

.section-action img-fluid {
  width: 100% !important;
}

/*=====================================================
SECTION ACTIONS GRIDDER
======================================================*/

.gridder-content {
  display: block;
  float: left;
  width: 100%;
  padding: 20px 35px;
  margin-bottom: 1%;
}

.gridder-content .gridder-padding {
  min-height: 500px;
  background-color: red;
}

.gridder {
  margin: 0 auto;
  padding: 50px 2%;
  list-style-type: none;
  display: table;
  margin: 0 auto;
  width: 100%;
}

.gridder .col-lg-6 {
  padding: 0;
}

.gridder .col-lg-6:nth-of-type(2) {
  background-color: white;
}

.gridder-list {
  display: inline-block;
  vertical-align: top;
  width: 24%;
}

.gridder-show {
  display: block;
  float: left;
  width: 100%;
  padding: 20px 35px;
  margin-bottom: 1%;
}

.gridder-show.loading {
  background: #efefef url("../images/loading-spin.svg") no-repeat center;
}

.gridder-content {
  display: none;
}
.gridder-min-height .img-fluid {
  width: 100%;
}
.gridder-list:nth-child(n) {
  margin-bottom: 1%;
  margin-right: 1%;
}

.gridder-navigation .gridder-nav.disabled {
  opacity: 0.2;
}

.gridder-list {
  cursor: pointer;
  transition: 0.5s all;
}

.gridder-list:hover {
  opacity: 0.8;
  box-shadow: 15px 20px 30px 1px rgba(0, 0, 0, 0.2);
}

.hasSelectedItem .gridder-list {
  opacity: 0.2;
}

.hasSelectedItem .gridder-list.selectedItem {
  opacity: 1;
}

.gridder-padding {
  width: 100%;
  margin: 0 auto;
  background: url("../img/fond_key_visuel.jpg");
  position: relative;
  box-shadow: 15px 20px 30px 1px rgba(0, 0, 0, 0.2);
  border-top: 3px solid #bf8b4cfa;
}

.gridder-expanded-content .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.img-fluid {
  max-width: 100% !important;
  height: auto !important;
}

.gridder-expanded-content h2 {
  font-size: 3.4em;
  font-weight: 600;
  text-transform: uppercase;
}

.gridder-expanded-content h3 {
  font-size: 2em;
  font-weight: 600;
}

.gridder-navigation .gridder-nav {
  height: 77px;
  padding: 0;
  position: absolute;
  width: 32px;
  z-index: 1;
  background-color: rgba(36, 21, 38, 0.8);
  color: #fff !important;
  cursor: pointer !important;
  display: inline-block;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 5px;
  outline: 0;
  text-align: center;
  text-decoration: none !important;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: normal;
  word-wrap: normal;
  bottom: 0;
  margin-top: -40px;
  overflow: hidden;
}

.gridder-navigation .gridder-nav span {
  display: block;
  bottom: 0;
  height: 23px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
}

.gridder-navigation .gridder-nav.prev {
  left: -6px;
}

.gridder-navigation .gridder-nav.prev span {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAXBAMAAADJv2OxAAAAMFBMVEX///+ZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZnHHh8xAAAAD3RSTlMAESIzRFVmd4iZqrvM3e5GKvWZAAAAdElEQVQI12NgAAH2v2CKsf83mJb8vxBEMe3/KQCitf83gLn3n4Flff8FgCjW90/A3Pw/BiBK4v0lMHf+bwUw/R/CZVj/SwBq5kaIQD1UAfv7yxCBuH8OYJrl/VWIgM3/AjDNdP45REDq/0SI+9b/gghw/AUAn68l+4HFkZUAAAAASUVORK5CYII=)
    center no-repeat;
}

.gridder-navigation .gridder-nav.next {
  right: -6px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.gridder-navigation .gridder-nav.next span {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAXBAMAAADJv2OxAAAAMFBMVEX///+ZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZnHHh8xAAAAD3RSTlMAESIzRFVmd4iZqrvM3e5GKvWZAAAAdElEQVQI12NgAAH2v2CKsf83mJb8vxBEMe3/KQCitf83gLn3n4Flff8FgCjW90/A3Pw/BiBK4v0lMHf+bwUw/R/CZVj/SwBq5kaIQD1UAfv7yxCBuH8OYJrl/VWIgM3/AjDNdP45REDq/0SI+9b/gghw/AUAn68l+4HFkZUAAAAASUVORK5CYII=)
    center no-repeat;
}

.gridder-navigation .gridder-nav:hover {
  background: rgba(36, 21, 38, 1);
}

.gridder-navigation .gridder-close {
  display: none;
  background: url(data:image/gif;base64,R0lGODlhFAAUAJEAAE1NTf///////wAAACH5BAEHAAIALAAAAAAUABQAAAIzBISpK+YMm5Enpodw1HlCfnkKOIqU1VXk55goVb2hi7Y0q95lfG70uurNaqLgTviyyUoFADs=)
    no-repeat center center;
  cursor: pointer;
  height: 30px;
  padding: 7px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  z-index: 2;
  color: white;
  background-color: white;
}

.gridder-navigation .gridder-close:hover {
  color: #3d3d3d;
}
.gridder-title {
  font-size: 2.85rem !important;
  line-height: 3.4rem;
  white-space: normal;
  letter-spacing: -1px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 5.5rem;
}
.gridder-expanded-content p {
  font-size: 13.5pt;
  color: #101010;
  line-height: 35px;
  margin-bottom: 10px;
}

.badge {
  white-space: normal;
  font-size: 2.75vh;
  line-height: 1.5;
}

.gridder-expanded-content .row {
  box-shadow: 5px 5px 11px #cecece;
}

.gridder-expanded-content .col-10 {
  width: 100%;
}

.gridder-expanded-content .col-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.gridder-expanded-content .col-2 i {
  color: #bf8c4c;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gridder-expanded-content .col-2:hover i {
  color: #bf8b4cc5;
}

.badge-golden {
  background-color: #bf8c4c;
  color: white;
  border-radius: 0px;
  padding: 12px 20px;
  font-weight: 500;
  width: 100%;
}

.gridder-expanded-content .badge-golden {
  padding: 1.5rem;
}

.gridder-content-box {
  padding-top: 6rem;
  padding-left: 7rem;
  padding-right: 7rem;
}

.gridder-surtitle {
  color: #241526;
  padding: 15px 0px 0px;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: left;
  font-style: italic;
}

.thumb-img {
  width: 100%;
}

.partenaires {
  width: 10% !important;
  display: inline-block !important;
}
/*=====================================================
SECTION ACTIONS RESPONSIVE
======================================================*/

@media (max-width: 1440px) {
  #sectionAction .gridder-content-box {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #sectionAction .gridder-expanded-content p {
    line-height: 1.5vw;
  }
}
@supports (-moz-appearance: none) {
  .gridder {
    text-align: center;
  }

  @media screen and (min-width: 1200px) {
    .gridder-list:nth-child(n) {
      margin-bottom: 3%;
      margin-left: 2% !important;
      margin-right: 2% !important;
    }
  }

  @media screen and (max-width: 700px) {
    .gridder-list:nth-child(n) {
      margin-bottom: 0% !important;
      margin-right: 0% !important;
    }
  }
}
@media screen and (max-width: 1024px) {
  #sectionAction .gridder-expanded-content p {
    line-height: 2.5vw;
    font-size: 2vw;
  }
}
@media (min-width: 1350px) {
  .gridder-expanded-content .team-img {
    height: 37vw;
    width: auto;
  }

  .gridder-padding {
    width: 100%;
    margin: 0 auto;
    background: url("../img/fond_key_visuel_attenue.jpg");
    background-position: center right;
    position: relative;
  }
}

@media screen and (min-width: 1200px) {
  .gridder-list {
    width: 15%;
  }

  .wallet-gridder .gridder-list {
    width: 20%;
  }

  .gridder-list:nth-child(n) {
    margin-bottom: 3%;
    margin-left: 2.4%;
    margin-right: 2.4%;
  }
}
@media screen and (max-width: 992px) {
  .gridder-padding .badge {
    margin-top: 30px;
  }

  .wallet-gridder .gridder-list {
    width: 32%;
  }

  .wallet-gridder img {
    height: auto !important;
    width: auto;
    margin: 0 auto;
    display: table;
  }

  .wallet-gridder .gridder-expanded-content img:not(.img-fluid) {
    height: auto !important;
    width: 10%;
    padding: 0px;
    display: inline-block;
  }

  .wallet-gridder .gridder-padding .badge {
    margin-top: initial;
  }
}

@media screen and (max-width: 973px) {
  .actions {
    font-size: 18vw;
  }
}

@media screen and (max-width: 900px) {
  .gridder-list {
    width: 100%;
  }

  .gridder-show {
    display: block;
    float: left;
    width: 100%;
    padding: 2vw 3vw;
    margin-bottom: 1%;
  }

  .gridder-expanded-content p {
    font-size: 4vw;
    line-height: 7.25vw;
    color: #101010;
    margin-bottom: 10px;
    text-align: left;
  }

  .badge {
    white-space: normal;
    font-size: 0.8em;
    line-height: 1.5;
  }

  .gridder-padding .badge {
    margin-top: 1vw;
  }

  .wallet-gridder .gridder-list {
    width: 100%;
    margin: 20px 0px;
  }

  .wallet-gridder img {
    height: auto !important;
    margin: 0;
    width: 100%;
    display: table;
  }

  .wallet-gridder .gridder-location {
    font-size: 1.05rem !important;
  }

  .wallet-gridder .gridder-surtitle {
    font-size: 5.25vw !important;
  }

  .gridder-investment-date {
    font-size: 4.5vw !important;
    text-align: left;
  }

  .gridder-show .col-12:nth-child(1) {
    order: 2;
  }
  .gridder-show .col-12:nth-child(1) {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  .badge {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 700px) {
  .gridder-list {
    width: 49%;
  }
}

@media screen and (max-width: 425px) {
  .gridder-content-box {
    padding-right: 1rem !important;
    padding-left: 1 2rem;
  }
  .title-subsection .action {
    font-size: 8vw !important;
  }
}

@media screen and (max-width: 320px) {
  .gridder-content-box {
    padding: 1rem;
  }
  #sectionAction .gridder-expanded-content p {
    line-height: 4.5vw;
    font-size: 4vw;
  }
}

/*=====================================================
SECTION MENTIONS
======================================================*/

.title-text-2 {
  color: white;
  font-size: 130px;
  margin-bottom: 3.5rem;
  font-weight: 600;
  line-height: 95px;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-right: auto;
  margin-left: auto;
}
.section-mentions {
  display: flex;
  height: auto;
}

.section-2-mentions {
  padding: 0;
  visibility: visible;
  animation-name: fadeIn;
}

.section-2-mentions .container-fluid .row .col-12:nth-child(1) {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
  padding-left: 5vw;
  padding-right: 5vw;
  background-color: #feffea;
  visibility: visible;
  animation-delay: 0.3s;
  animation-name: fadeIn;
}

.section-2-mentions
  .container-fluid
  .row
  .col-12:nth-child(1)
  .section-2-text-box {
  background-color: #bf8c4c;
  padding-bottom: 35px;
  padding-top: 35px;
  padding-left: 50px;
  padding-right: 50px;
}

.section-2-mentions .container-fluid .row .col-12:nth-child(1) h3 {
  color: #241526;
  font-size: 2.85rem;
  line-height: 3.4rem;
  letter-spacing: -1px;
  font-weight: 500;
  width: 90%;
  margin-bottom: 5.5rem;
}

.section-2-mentions
  .container-fluid
  .row
  .col-12:nth-child(1)
  .section-2-text-box
  span {
  margin-bottom: 0;
}

.section-2-mentions
  .container-fluid
  .row
  .col-12:nth-child(1)
  span:nth-child(1) {
  display: block;
  color: #241526;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.section-2-mentions
  .container-fluid
  .row
  .col-12:nth-child(2)
  .section-2-text-box {
  background-color: #1c101e;
  padding-bottom: 35px;
  padding-top: 35px;
  padding-left: 50px;
  padding-right: 50px;
}

.section-2-mentions .container-fluid .row .col-12:nth-child(2) {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
  padding-left: 5vw;
  padding-right: 5vw;
  background-color: #241526;
  visibility: visible;
  animation-delay: 0.3s;
  animation-name: fadeIn;
}

.section-2-mentions .container-fluid .row .col-12:nth-child(2) h3 {
  font-size: 2.85rem;
  line-height: 3.4rem;
  letter-spacing: -1px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 5.5rem;
}

.section-2-mentions
  .container-fluid
  .row
  .col-12:nth-child(2)
  .section-2-text-box
  span {
  margin-bottom: 0;
}

.section-2-mentions
  .container-fluid
  .row
  .col-12:nth-child(2)
  span:nth-child(1) {
  display: block;
  color: #bf8c4c;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.mentions-legales {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
  padding-left: 5vw;
  padding-right: 5vw;
  background-color: white;
  visibility: visible;
  animation-delay: 0.3s;
  animation-name: fadeIn;
}

.mentions-legales .padding-1 {
  padding: 3rem;
}

.mentions-legales .padding-1 span {
  color: #bf8c4c;
  font-weight: 600;
  font-size: 3rem;
  line-height: 80px;
}

.mentions-legales .padding-1 p {
  color: #241526;
  font-size: 2rem;
  line-height: 45px;
  text-align: justify;
}
.mentions-legales .bold {
  font-weight: 600;
}
/*=====================================================
SECTION MENTIONS RESPONSIVE
======================================================*/
@media (max-width: 1024px) {
  .section-2-mentions .container-fluid .row .col-12:nth-child(1) h3 {
    font-size: 2.2rem;
  }
  .section-2-mentions .container-fluid .row .col-12:nth-child(2) h3 {
    font-size: 2.2rem;
  }

  .section-2-mentions
    .container-fluid
    .row
    .col-12:nth-child(2)
    .section-2-text-box {
    height: 34vh;
  }
  .section-2-mentions
    .container-fluid
    .row
    .col-12:nth-child(1)
    .section-2-text-box {
    height: 34vh;
  }
}

@media (max-width: 768px) {
  .section-2-mentions
    .container-fluid
    .row
    .col-12:nth-child(2)
    .section-2-text-box {
    height: auto;
  }
  .section-2-mentions
    .container-fluid
    .row
    .col-12:nth-child(1)
    .section-2-text-box {
    height: auto;
  }
  .mentions-legales .padding-1 p {
    color: #241526;
    font-size: 2rem;
    line-height: 45px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .section-2-mentions
    .container-fluid
    .row
    .col-12:nth-child(1)
    .section-2-text-box {
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-2-mentions
    .container-fluid
    .row
    .col-12:nth-child(2)
    .section-2-text-box {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 821px) {
  .title-text-2 {
    font-size: 15vw;
    line-height: 100px;
  }
}

@media (max-width: 425px) {
  .title-text-2 {
    font-size: 15vw;
    line-height: 70px;
  }

  .mentions-legales {
    padding: 0;
  }

  .mentions-legales .padding-1 p {
    color: #241526;
    font-size: 1.5rem;
    line-height: 30px;
    text-align: left;
  }

  .mentions-legales .padding-1 span {
    line-height: 40px;
  }
}
/*=====================================================
SECTION CONTACT
======================================================*/
input,
textarea {
  background-color: #feffea;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.section-2-text-box .link1 {
  color: #3f2642;
}
.section-2-text-box .link1:hover {
  color: #3f2642;
  text-decoration: underline;
}

.section-2-text-box .link2 {
  color: #bf8c4c;
}
.section-2-text-box .link2:hover {
  color: #bf8c4c;
  text-decoration: underline;
}
/*=====================================================
SECTION CONTACT RESPONSIVE
======================================================*/

/*=====================================================
SLIDING MENU
======================================================*/
.full-width-navbar {
  width: 100%;
}

.btn-don:hover {
  background-color: transparent !important;
}

.show-menu {
  overflow: hidden;
}

.push-btn {
  display: none;
}

.show-menu .push-menu {
  right: 0;
  box-shadow: 0 0 20px rgb(0 0 0 / 30%);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 30%);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.push-menu .push-menu-wrapper {
  height: 100%;
  overflow-y: hidden;
  padding: 70px 0;
  -webkit-overflow-scrolling: touch;
}

.push-menu {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: 0;
  direction: ltr;
}

.push-menu {
  position: fixed;
  bottom: 0;
  right: -100%;
  width: 500px;
  height: 100vh;
  z-index: 1060;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background: #feffea !important;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 44px;
  height: 44px;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.close-menu {
  width: auto;
  height: auto;
  top: 40px;
  right: 40px;
}
.fa-times {
  font-size: 2rem;
  color: #241526;
}

.push-menu-wrapper h3 {
  font-size: 80px;
  font-weight: 600;
  position: relative;
  color: #3f2642;
  text-align: center;
  line-height: 40px;
}

.push-menu-wrapper h3::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #bf8c4c;
}
.push-menu-content {
  height: inherit;
  display: flex;
  margin-top: 100px;
}
.push-menu-content li {
  margin-bottom: 30px;
  color: #241526;
  font-size: 25px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translate(0 0);
  -webkit-transform: translateX(0);
  -moz-transform: translate(0 0);
  -ms-transform: translate(0 0);
  -o-transform: translate(0 0);
}

.push-menu-content li:not(.social-icon-style-12):hover {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  color: #bf8c4c;
}

.push-menu-content li:hover a {
  color: #bf8c4c;
}

.push-menu-content li a {
  color: #241526;
  font-size: 20px;
}

@media (max-width: 991px) {
  .push-menu {
    display: block !important;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 980px) {
  .scrollTo .chevron-scroll {
    display: none;
  }
  .scrollTo .push-btn {
    display: flex;
  }
  .scrollTo {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    background-color: #bf8c4c !important;
  }
  .col-8.navbar {
    display: none !important;
  }
  .resp-nav {
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
    justify-content: start !important;
  }
  .resp-nav img {
    max-width: 74px;
    margin-left: 40px;
  }
}

@media (max-width: 375px) {
  .push-menu-wrapper h3 {
    font-size: 50px;
  }
}

@media screen and (max-width: 375px) and (max-height: 653px) {
  .push-menu-content {
    margin-top: 70px;
  }

  .push-menu-content li a {
    font-size: 20px;
  }

  .push-menu-content li {
    margin-bottom: 0;
  }
}

@media screen and (max-height: 495px) {
  .push-menu {
    padding: 0 30px;
  }
  .push-menu-content {
    margin-top: 40px;
  }

  .push-menu-content li a {
    font-size: 18px;
  }
  .push-menu .push-menu-wrapper {
    padding: 35px 0;
  }
  .push-menu .push-menu-wrapper h3 {
    font-size: 50px;
  }
  .push-menu-content li {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 360px) {
  .push-menu {
    padding: 0px 20px;
  }
}

/*=====================================================
ADDED RESP/STYLE
======================================================*/

@media screen and (max-width: 375px) {
  .section-2 .container-fluid .row .col-12:nth-child(2) h3,
  .section-3 .container-fluid .row .col-xl-5 h3 {
    font-size: 1.5em !important;
  }
  .right-row {
    height: 118vh !important;
  }
}
@media screen and (max-width: 768px) {
  .section-don {
    padding-bottom: 0 !important;
  }
  .q2 {
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .section-don .quote-text {
    padding-bottom: 0;
  }
}

/*=====================================================
SECTION SEPARATOR 4 - NOS MEMBRES
======================================================*/
.section-separator-4 {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-image: url(../img/Accueil/separator-3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  visibility: visible;
}

.section-separator-4 .container::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 5px;
  height: 20%;
  background-color: rgba(202, 148, 61, 0.4);
}

.section-separator-4 .container::after {
  content: "";
  position: absolute;
  bottom: 22%;
  left: 50%;
  width: 5px;
  height: 8%;
  background-color: rgba(202, 148, 61, 0.4);
}

.section-separator-4 .overlay-separator {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  background-color: #241526;
}

.section-separator-4 .row {
  align-items: center;
}

.section-separator-4 .row .col-12 {
  text-align: center;
}

.section-separator-4 .row .col-12 h2 {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-separator-4 .row .col-12 h2 span {
  color: #bf8c4c;
}

/*=====================================================
SECTION 5 - NOS MEMBRES (STYLE CARTE)
======================================================*/
.section-5 {
  padding: 80px 0;
  background-color: #fff;
}

.membres-header {
  background-color: #bf8c4c;
  padding: 15px 20px;
  border-bottom: 1px solid #bf8c4c;
}

.membres-header h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #bf8c4c;
}

.padder-membres {
  padding: 30px;
}

/* Style des cartes membres */
.membre-card {
  background-color: white;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.membre-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(191, 140, 76, 0.2);
}

.membre-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.membre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.membre-card:hover .membre-img img {
  transform: scale(1.05);
}

.membre-info {
  padding: 15px;
  text-align: center;
  background-color: white;
  border-top: 3px solid #bf8c4c;
}

.membre-info h5 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #241526;
}

.membre-info .letter {
  color: #bf8c4c;
  font-weight: 700;
  font-size: 18px;
}

.membre-role {
  margin: 0;
  font-size: 14px;
  color: #bf8c4c;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .membre-img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .membre-img {
    height: 200px;
  }

  .padder-membres {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .membre-img {
    height: 250px;
  }

  .padder-membres {
    padding: 15px;
  }
}
