
:root {
  --primary-color-dark: #8cece8;
  --white: #ffffff;
  --gradient: linear-gradient(to right, rgb(19 121 124), var(--bs-gray-400));
}
  
  .btn {
  padding: 0.5rem 1.5rem;
  outline: none;
  border: none;
  font-size: 14px;
  color: rgb(24, 145, 167);
  background-image: var(--gradient);
  border-radius: 5rem;
  cursor: pointer;
  }
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  
  
  /*******************/
  .language-switcher {
  position: absolute;
  top: 30px;
  right: 70px;
  cursor: pointer;
  font-size: 22px;
  
  }
  
  #switcher {
  width: 33px;
  margin-top: 5px;
  margin-left: -12%;
  }
  .language-switcher h2 {
  width: 50px; /* Largeur de l'icône de langue */
  height: auto; /* Hauteur automatique pour conserver les proportions */
  color: white;
  }
  
  
  @media (max-width:450px){
  .language-switcher {
      position: absolute; /* Position absolue pour l'icône */
      top: 11px; /* Alignement en haut */
      right: 42px ; /* Alignement à droite */
      cursor: pointer;
      font-size: 19px;
  }
  .language-switcher h2 {
    width: 40px;
    height: auto;
    margin-top: 23%;
    margin-left: 26%;
  }
  #switcher {
    width: 30px;
    margin-top: 2px;
    margin-left: -12%;
  }
  
  }
    
  .language-menu {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7); /* Couleur semi-transparente */
  padding: 7px;
  list-style: none;
  margin: 0;
  font-size: medium;
  }
  
  .language-menu li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  }
  
  .language-menu li a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  top: 4px;
  }
  
  .language-menu li a:hover {
  color: #ddd;
  }
  
  .language-menu li a img {
  width: 20px; /* Largeur de l'image */
  height: auto; /* Hauteur automatique pour conserver les proportions */
  margin-right: 5px; /* Marge à droite de l'image pour l'espace */
  }
  
  /*logoo***********************************************************************************************************************************/
  @media (min-width: 1000px) and (max-width: 1500px) {
  .logo{
    position: absolute;
    top: 0px;
    left: 0%;
  }
  
  .hamburger-lines{
    position: absolute;
    top: -8px;
    left: -3%;
  }
  
  :root {
    --fontSize-1: 4.4rem;
    --fontSize-2: 3.5rem;
    --section-padding: 100px;
  }
  
  .container {
  
    width: 100%;
        
  }
  
  .headline-3 { --fontSize-2: 2.4rem; }
  
  .topics .section-title { font-size: 2rem; }
  
  .slider { --slider-items: 3; }
  
  .slider-item { min-width: calc(33.33% - 13.33px); }
  
  .feature { position: relative; }
  
  .feature-bg {
    display: block;
    position: absolute;
    top: -100px;
    right: 0;
    pointer-events: none;
  }
  
  .recent-post-card {
    grid-template-columns: 0.5fr 1fr;
    gap: 20px;
  }
  
  
  }
  
  @media (min-width: 768px) and (max-width: 994px) {
  
  .recent-post-card { grid-template-columns: 0.7fr 1fr; }
  .leftt h2{
    position: absolute;
    top: 14%;
    left: 9%;
    font-size: 23px;
  }
  .card-text{
    margin-top: 21%;
  }
  }
  
  @media (min-width: 1200px) {
  .container { max-width: 1865px; }
  body.nav-active { overflow-y: overlay; }
  }
  
  @media (min-width: 576px){
  .container, .container-sm {
    max-width: 782px;
  }
  }
  @media (min-width: 992px){
  .container, .container-lg, .container-md, .container-sm {
      max-width: 1115px;
  }
  
  }
  
  @media (min-width: 768px){
  .container, .container-md, .container-sm {
      max-width: 948px;
  }
  }
  
  @media (min-width: 768px){
  .container, .container-md, .container-sm {
      max-width: 1894px;
  }
  }
  
 
  
  .social-icon {
    opacity: 0; /* Opacité initiale */
    transition: opacity 0.5s ease-in-out; /* Ajout de la transition pour l'opacité */
  }
  
  .social-icon.visible {
    opacity: 1; /* Opacité finale */
  }
  
  
  @keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
  }
    .toggler {
      position: absolute;
      top: 1.5rem;
      right: 0.5rem; /* Changer "left" en "right" */
      width: 64px;
      height: 68px;
      z-index: 3;
      opacity: 0;
      cursor: pointer;
    }
    @media(max-width:450px){
      .toggler{
        width: 36px;
      }
    }
    
    
    .hamburger {
      position: absolute;
      top: 0.5rem;
      right: 0.5rem; /* Changer "left" en "right" */
      width: 60px;
      height: 60px;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    
    }
    
    .hamburger>div {
      position: absolute;
      width: 60%;
      height: 5px;
      border-radius: 1.5px;
      background-color: rgb(10, 89, 134);
      transition: .4s;
    }
    
    .hamburger>div:before {
      content: '';
      position: absolute;
      width: 100%;
      height: 5px;
      border-radius: 1.5px;
      background-color: rgb(10, 89, 134);
      top: -10px;
      left: 0;
      transition: .4s;
    }
      
    .hamburger >div:after {
      content: '';
      position: absolute;
      width: 100%;
      height: 5px;
      border-radius: 1.5px;
      background-color: rgb(10, 89, 134);
      top: 10px;
      left: 0;
      transition: .4s;
    }
    @media (max-width:450px){
      .hamburger>div {
        position: absolute;
        width: 60%;
        height: 3px;
        border-radius: 1.5px;
        background-color: rgb(10, 89, 134);
        transition: .4s;
      }
      
      .hamburger>div:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        border-radius: 1.5px;
        background-color: rgb(10, 89, 134);
        top: -10px;
        left: 0;
        transition: .4s;
      }
      
      .hamburger>div:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        border-radius: 1.5px;
        background-color: rgb(10, 89, 134);
        top: 10px;
        left: 0;
        transition: .4s;
      }
      
    }
                
    .toggler:checked + .hamburger>div {
      transform: rotate(135deg);
    }
    
    .toggler:checked:hover + .hamburger>div {
      transform: rotate(225deg);
    }
    
    .toggler:checked + .hamburger>div:before,
    .toggler:checked + .hamburger>div:after {
      top: 0;
      transform: rotate(90deg);
    }
     /*menu*/
  .menu {
  
    left: -140px;
    right: 15px;
    padding: 10px;
    height: 97.5vh;
    width: 210vh;
    z-index: 1;
    transition: transform 0.5s ease-in-out;
    position: absolute;
    top: 308px;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: .6s;
    }

    .menu li {
      opacity: 0;
      transform: translateX(-300%);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .menu li:nth-child(1) {
      transition-delay: 0.1s;
    }
    
    .menu li:nth-child(2) {
      transition-delay: 0.2s;
    }
    
    .menu li:nth-child(3) {
      transition-delay: 0.3s;
    }
    
    .menu li:nth-child(4) {
      transition-delay: 0.4s;
    }
    
    .menu li:nth-child(5) {
      transition-delay: 0.5s;
    }
    .menu li:nth-child(6) {
      transition-delay: 0.6s;
  }
  .menu li:nth-child(7) {
    transition-delay: 0.7s;
}


  .nav-container input[type="checkbox"]:checked ~ .menu li {
    opacity: 1;
    transform: translateX(0);
}

    @media (min-width:1000px){
    .menu > div {
      transform: translateX(-150%) translateY(-50%);
      width: 120%;
      height: 1154px;/* on a modifier ce ligne mais 1000 ses original */
      background-color: rgba(0, 1, 1, 1);
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      transition: .3s;
      margin-left: 58%;
  }
  }
  @media screen and (max-width:450px){
    
    .menu > div {
      transform: translateX(-150%) translateY(-50%);
      width: 134%;
      height: 660px;
      background-color: rgba(0, 1, 1, 1);
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      transition: .6s;
      margin-left: 85%;
    position:absolute;
    top:-23px;
  }
  .hamburger {
    position: absolute;
    top: 0.5rem;
    right: -0.5rem;
    width: 48px;
    height: 27px;
    z-index: 2;
   
  }
  }
  
  @media screen and (max-width:1880px) and (min-width:450px){
    
  .menu > div {
    transform: translateX(-150%) translateY(-50%);
    width: 150%;
    
    height: 551px;
    background-color: rgba(0, 1, 1, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: .6s;
    margin-left: 70%;
    position:absolute;
    top:-10px;
  }
  }
  @media screen and (max-width:1880px) and (min-width:980px){
    
  .menu > div {
   
    margin-left: 59%;
  }
  }
  
    .menu > div > div {
      max-width: 90vw;
      max-height: 100vh;
      opacity: 0;
      transition: .6s;
    }
    
    .menu > div > div > ul > li {
      list-style: none;
    }
    
    .menu > div > div > ul > li > a {
      text-decoration: none;
      color: #fff;
      font-weight: 550;
      text-transform: uppercase;
      margin: .5rem;
      transition: .3s;
      font-size: 2.2rem;
      display: inline-block;
    }
    
    .menu > div > div > ul > li > a:hover {
      color: #fff44f;
    }
    
    .toggler:checked ~ .menu {
      visibility: visible;
    }
    
    .toggler:checked ~ .menu > div {
      transform: translateX(-50%) translateY(-50%);
    }
    
    .toggler:checked ~ .menu > div > div {
      opacity: 1;
    }
  
 
  .social-icon {
  margin-right: 10px; /* Ajustez la marge entre les icônes selon vos préférences */
  display: inline;
  
  margin-left: 1%;
  }
  
  
  
  
  
  /**********N menu ***********/
    /*menu*/
    
  
      .hamburger>div:before,
      .hamburger>div:after {
          content: '';
          position: absolute;
          width: 100%;
          height: 3px;
          border-radius: 1.5px;
          background-color: rgb(10, 89, 134);
          transition: .4s;
      }
      
      .hamburger>div:before {
          top: -10px;
      }
      
      .hamburger>div:after {
          top: 10px;
      }
        @media (max-width:450px){
          .hamburger>div {
            position: absolute;
            width: 60%;
            height: 3px;
            border-radius: 1.5px;
            background-color: rgb(10, 89, 134);
            transition: .4s;
          }
          
          .hamburger>div:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            border-radius: 1.5px;
            background-color: rgb(10, 89, 134);
            top: -10px;
            left: 0;
            transition: .4s;
          }
          
          .hamburger>div:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            border-radius: 1.5px;
            background-color: rgb(10, 89, 134);
            top: 10px;
            left: 0;
            transition: .4s;
          }
          
        }
      
        .hamburger img {
          position: absolute;
          max-width: 28px;
          top: 15px;
          right: 27px;
      }
      @media (max-width: 450px) {
        .hamburger img {
            margin-top: -8px;
            max-width: 23px;
            position: absolute;
            right: 16px;
        }
    }
     
        .menu-icon {
          display: block;
      }
      
      @keyframes fadeIn {
              from {
                  opacity: 0;
              }
              to {
                  opacity: 1;
              }
          }
      
          @keyframes fadeOut {
              from {
                  opacity: 1;
              }
              to {
                  opacity: 0;
              }
          }
                    
  .close-icon {
              animation: fadeIn 1s ease-in-out forwards;
          }
      
  .menu-icon {
              animation: fadeIn 1s ease-in-out forwards;
          }
  /********************/
  
  a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin-top:-8%;
  
  }
  
  .border-primary{
  border-color: rgb(167, 165, 165) !important;
  }
  html,body{
  
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  
  }
  body{
  
  color: beige;
  
  }
  
  .back-top-btn.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-1px);
  }
  
  .ion-icon {
  pointer-events: none;
  }
  
  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  
  .nav-container {
  position: relative;
  display: block;
  height: 60px;
  }
  
  .navbar .menu-items {
  
  
  display: flex;
  }
  
  .navbar .nav-container li {
  list-style: none;
  }
  
  .navbar .nav-container a {
  font-family: 'Noto Sans Kawi', sans-serif;
    text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: white;
  font-weight: 100;
  font-size: 3rem;
  padding-bottom: 8px;
  
  }
  
  .navbar .nav-container a:hover {
  
  font-weight: bolder;
  }

  .section1{
  position: relative;

  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-image 0.5s ease-in-out;
  height: 98vh;
  }

  
  .divlist{
  position: relative;
  margin: 0px;
  height: 90vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  top :-80px;
  
  }
  .s{
  box-shadow: 0 0 1px white;
  width: 50%;
  height: 32.5vh ;
  padding-top: 200px;
  display: flex;
  justify-content: flex-end;
  color: rgb(10, 54, 71);
  font-size: large;
  padding-right: 10px;
  opacity: 1;
  transition: opacity 0.5s;

  
  }
  .s:hover {
  background: rgba(255, 255, 255, 0.205); /* Slightly darker overlay on hover */
  }
  
  
  .nav-container input[type="checkbox"]:checked ~ .menu-items .s {
  opacity: 0; /* Hide .s elements when the checkbox is checked */
  pointer-events: none; /* Disable pointer events to prevent interaction */
  }
  
  .nav-container input[type="checkbox"]:checked ~ .menu-items .s:hover {
  opacity: 0; /* Ensure hover doesn't interfere with hiding */
  }
  
  .logo {
    position: absolute;
    top: 0px;
    left: 0%;
  }
  
  @media(max-width:450px){
  .s {
    box-shadow: 0 0 1px white;
    width: 100%;
    height: 15vh;
    padding-top: 74px;
    display: flex;
    justify-content: flex-end;
    color: rgb(10, 54, 71);
    font-size: large;
    padding-right: 10px;
    opacity: 1;
    transition: opacity 0.5s;
   
    margin-top: 0;
  }
  .left-column h1 {
  
  font-size: 3rem;
  }
  
  
  
  .logo {
    position: absolute;
    max-width: 10vh;
    margin-top: 2%;
  }
 
  
  
  .section1 {
  position: relative;
  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: .3s background ease;
  height: 88.5vh;
  margin-top: 0;
  }
  a {
 
  text-decoration: none;
        margin-left: 0%;
       margin-top:0px;
  }
  
  
  .home .right img {
  width: 100%;
  height: 54vh;
  object-fit: cover;
  margin-left: -6%;
  margin-top: 56%;
  position: absolute;
  
  }
  }
  
  
  @media screen and (max-width:450px){
  
  .logo {
    position: absolute;
    max-width: 10.7vh;
    margin-top: 2%;
  }

  .s {
    box-shadow: 0 0 1px white;
    width: 100%;
    height: 15vh;
    padding-top: 74px;
    display: flex;
    justify-content: flex-end;
    color: rgb(10, 54, 71);
    font-size: large;
    padding-right: 10px;
    opacity: 1;
    transition: opacity 0.5s;
    font-weight: 800px;
    margin-top: 0;
  }
  .section1 {
  position: relative;
  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: .3s background ease;
  height: 88.5vh;
  margin-top: 0;
  }
	  
 

  }
  
 
  
  /************************chiffre****************************************/
  
  .counter-wrapper {
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1.5rem;
    padding: 2rem 5%;
    margin-top: 5rem;
    position: relative;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}


.counter-wrapper::before{
  position: absolute;
  content: '';
  content: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}
.counter{
 text-align: center;   
 color: #444;
 z-index: 2;
 position: relative;
}
.counter::before{
  position: absolute;
  content: '';
  bottom: -2rem;
  left: 50%;
  width: 20%;
  height: .2rem;
 
  border-radius: .5rem;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  -ms-border-radius: .5rem;
  -o-border-radius: .5rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.counter .count {
  font-size: 31px;
  margin-bottom: 1rem;
  font-family: 'Playfair Display';
}
.counter p{
  font-size: 19px;
 
}

 
@media (max-width: 991px) {
  html{
      font-size: 55%;
  }
}
@media (max-width: 768px) {
 .counter-wrapper{
     grid-template-columns: repeat(2, 1fr);
     grid-row-gap: 8rem;
 }
}
@media (max-width: 450px) {
  html{
      font-size: 50%;
  }
  .counter-wrapper{
      grid-template-columns: 1fr;
  }
}


  
        
  /***************************************qui somme nous**************************************/
  
  h4{
    font-size: 2.5rem;
    font-family: 'Playfair Display';
    font-weight: 600;
}

  
  
  
  
  :root {
  --primary-color: #0f1a2c;
  --secondary-color: #f6ac0f;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --extra-light: #f8fafc;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Playfair Display", serif;
  }
  
  
  
  section {
   
  
     z-index: 2;
     position: relative;
  }

  
.section_header {
    font-size: 3rem;
   
    font-family: var(--header-font);
    color: var(--text-dark);
}  
  
  
  

  .h5 {
  font-size: 39px;
  margin-top: 5%;
  font-family: 'Noto Sans Kawi';
  letter-spacing: 2px;
  }
  
  .icons h4 {
    font-size: 24px;
    font-family: inherit;
  }
  
 
  
  
  .section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
  }
  

  
  
  .company-title[data-v-0eeaaf87] {
  font-family: "Nunito-ExtraBold";
  font-size: 53px;
  width: 136%;
  text-transform: uppercase;
  
  }
  .company-title[data-v-0eeaaf87] {
  color: #fff;
  background: url(../images/family2.2fb0e4b.webp) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  background-position: cover;
  -webkit-text-fill-color: transparent;
  background-position: 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom:1%;
  
  
  }
  
  @media (max-width:470px){
  .company-title[data-v-0eeaaf87] {
    font-family: "Nunito-ExtraBold";
    font-size: 33px;
    text-transform: uppercase;
	  margin-left:-3px;
  }
  }
  
  
  
  
  
  
  a {
  text-decoration: none;
  }
  
  
  
  
  .right-links {
  position: fixed;
  top: 52%;
  right: 49px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  /* height: 51vh; */
  /* width: 19vw; */
  }
  
  /* Ajoutez une marge à la section "about" pour éviter que le contenu ne soit caché derrière la barre latérale */
  .about__container {
  margin-right: 16vw; /* Ajustez selon la largeur de la barre latérale */
  margin-top: 1%;
  }
  
  .section__heder {
  font-size: 4rem;
  margin-bottom: 3%;
  }
  
  @media (max-width: 1000px) {
  .about__container {
  margin-right: 12vw; /* Ajustez selon la largeur de la barre latérale */
  }
  }
  
  
  @media (max-width: 800px) {
  .right-links {
    position: relative;
    top: 10%;
    transform: translateY(0);
    height: 40vh;
    width: 40vw;
  }
  
  .about__container {
    margin-right: 0;
  }
  
  .right-links a:first-child {
    background-color: #ced4da;
  }
  
  .right-links a:first-child i {
    color: #fff;
  }
  
  .about__content .btn {
    display: none;
  }
  
  }
  
  .right-links-button {
    display: none;
    cursor: pointer;
    background-color: #ced4da;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 1rem;
    position: relative;
   
  }
  
  
      #toggleLinksBtn {
        display: none; /* hide the button when the screen size is less than 900px */
      }
  @media screen  and (max-width:1000px) and (min-width:770px){
  .right-links-button {
    display: none;
    cursor: pointer;
    background-color: #ced4da;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 1rem;
    position: relative;
    top: -137%;
    left: 103%;
    width: 23vh;
  }
  .right-links a {
  color: white;
  text-decoration: none;
  margin-top: 17%;
  }
  }
  @media screen  and (max-width:769px){
    .right-links {
    position: relative;
    top: 10%;
    transform: translateY(0);
    height: 13vh;
    width: 92vw;
  }
    .right-links-button {
    display: none;
    cursor: pointer;
    background-color: #ced4da;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 1rem;
    position: relative;
    top: 0;
    left: 0%;
    width:26vh;
    
    .right-links a {
      color: white;
      text-decoration: none;
      margin-top: 17%;
    }
  }
  .right-links a {
  color: white;
  text-decoration: none;
  
  }
  }
  @media screen and (max-width:450px){
  .section__heder {
    font-size: 2.8rem;
    margin-bottom: 4%;
  }
  }
   
  
        
  
        .section__subhead {
          margin-bottom: 0.5rem;
          position: relative;
          font-weight: 500;
          letter-spacing: 2px;
          color: var(--text-dark);
          margin-bottom: 6%;
        }
        .section__subhead::after {
          position: absolute;
          content: "";
          top: 50%;
          transform: translate(1rem, -50%);
          height: 2px;
          width: 5rem;
          background-color: #1e9cb5;
        }
      .right-links h2 {
        color: black;
        margin-bottom: 11%;
        font-size: 30px;
        letter-spacing: 2px;
    }
  
  
  @media (max-width: 1000px) and (min-width:770px) {
  .right-links {
      display: none;
      background: var(--bs-gray-400);
      position:absolute;
      top:47%;
  }
  
  .right-links-button {
      display: block;
  }

  }
  
  
  @media (width > 768px) {
  
  .service__content {
    grid-column: 2/3;
  }
  
  
  }
  @media screen and (max-width: 770px) {
  .right-links {
      display: none; /* Cela cachera l'ensemble du bloc contenant les liens */
  }
  }
  
  
  :root {
    --max-width: 1200px;
   
  }
  

  .section__cotainer {
  max-width: var(--max-width);
  margin: auto;
  padding: 8rem 9rem;
  }
  
  .banner__content {
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    height: auto;
    width: 161%;
    
  }
  
 

  .banner__card h4 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Playfair Display';
  }

  @media (min-width: 1000px) {
    .banner__content {
        margin-top: 0%;
        margin-left: -97%;
        position: absolute;
    }
  }
  
  @media(max-width:1270px) and (min-width:1000px){
  .banner__content {
  margin-top: -31%;
  margin-left: -15%;
  position: absolute;
  }
  }
  
  
  
  /************************vision***************/

  @media(min-width:1500px){
  .paragraph-vision p {
    font-size: 20px;
    line-height: 42px;
    padding: 0.5rem 0;
}
  }

  .family[data-v-0eeaaf87] {
  margin-top: 0;
  
  background: #f5f9fc;
  
  
  }
  .left-family img[data-v-0eeaaf87] {
  height: 800px;
  width: 100%;
  -o-object-fit: cover;
  margin-left:-2%;
  }
  .blok-title[data-v-0eeaaf87] {
  font-family: "Nunito-ExtraBold";
  font-size: 53px;
  margin-bottom: 10px;
  text-transform: uppercase;
  
  }
  .blok-title[data-v-0eeaaf87] {
  color: #fff;
  background: url(../images/a.webp) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  background-position: cover;
  -webkit-text-fill-color: transparent;
  background-position: 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  
  margin-bottom: 0%;
  }
  
  h2[data-v-0eeaaf87] {
  
  font-size: 35px;
  line-height: 82px;
  
  }

  @media (max-width: 500px) {
    .right-contain {
        padding: 1.5rem;
    }
}

  @media (max-width:450px)
  {
  h2[data-v-0eeaaf87] {
  
    font-size: 32px;
    line-height: 49px;
   
  }
  }
  h4[data-v-0eeaaf87] {
    font-family: 'Montserrat';
    font-size: 28px;
    line-height: 70px;
    margin-bottom: -4px;
    text-transform: uppercase;
  }
  
  @media (max-width:1200px){
  .left-family img[data-v-0eeaaf87] {
      height: 470px;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
  }
  }
  
  @media screen and (min-width:1200px){
  .ros {
      display: flex;
      flex-wrap: nowrap;
      flex: 1 1 auto;
      margin: 20px;
  }   
  
  }
  
  @media (max-width:500px){
  .blok-title[data-v-0eeaaf87] {
    font-family: "Nunito-ExtraBold";
    font-size: 43px;
  
    margin-bottom: 10px;
    text-transform: uppercase;
   
   
  }
  }
  
  @media (min-width: 1000px)
  {
  .left-contain, .right-contain {
  max-width: 930.5px !important;
  }
	  
  .right-contain {
  padding-left: 5rem !important;
  width: 78%;
  margin-right: auto;
  margin-top:5%;
  }
  }
 
  @media (max-width: 1000px) {
    .right-contain {
        margin-left: 0%;
    }
}
  
  
  html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: none;
  }
  
  
  
  
  /*******************************organisation**************************************************/

  .organ-title[data-v-0eeaaf87] {
    font-family: "Nunito-ExtraBold";
    font-size: 53px;
    text-transform: uppercase;
    margin-left: 38%;
}
  
  .organ-title[data-v-0eeaaf87] {
  color: #fff;
 background: url(../images/Friends2.d5a0bb3.png) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  background-position: cover;
  -webkit-text-fill-color: transparent;
  background-position: 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 6%;
  margin-bottom: -5%;
  }
  
  @media (max-width:1200px){
  .organ-title[data-v-0eeaaf87] {
    font-family: "Nunito-ExtraBold";
    font-size: 38px;
    margin-bottom: 10px;
    text-transform: uppercase;
  
  }
  }
  
  
  .earth h5 {
  
  width: 50%;  
  font-size: 24px;
  line-height: 45px;
  margin-left: 1%;
  }
  
  .organ-image {
  max-width: 47%;
  height: 99vh;
  display: block;
  margin: 0 auto;
  margin-left: 50%;
  object-fit: cover;
  position: absolute;
  margin-top: 1%                 ;
  
  }
  @media (max-width: 1500px) {
  .organ-image {
      max-width: 47%;
      height: 112vh;
      display: block;
      margin: 0 auto;
      margin-left: 50%;
      object-fit: cover;
      position: absolute;
      margin-top: 0%;
  }
  }
  
  
  #product{
  opacity:.8;
  }
  
  
  .column-earth {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  
  }
  .row-1 {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  margin: -12px;
  padding-bottom: 8%;
  
  }
  
  .earth-grid[data-v-1cb2debd] {
  margin-top: 35px;
  }
  .earth-gri[data-v-1cb2debd] {
  margin-top: 35px;
  }
  
  .md-6 {
  flex: 0 0 19%;
  padding: 13px;
  margin-top: -2%;
  margin-left: 2%;
  margin-bottom:8%;
  }
  
  
  
  .grid-item {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #dfe8f0;
  border-radius: 19px;
  margin-bottom: 20px;
  align-items: center;
  height: 13vh;
  }
  
  .grid-item h6 {
  margin-bottom: 10px;
  font-size: 16px;
  }
  .grid-item-p {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #dfe8f0;
  border-radius: 19px;
  margin-bottom: 20px;
  align-items: center;
  height: 13vh;
  margin-left: -112%;
  }
  
  .grid-item-p h6 {
  margin-bottom: 10px;
  font-size: 16px;
  }
  
  
  .grid-img-container {
  
  height: auto;
  }
  
  .icon {
  width: 47px;
  height: 44px;
  }
  @media(min-width:1500px){
  .mb-4 {
    margin-bottom: 0rem !important;
  font-size: 20px; 
  }
  }

  @media (min-width: 830px) {
  .column-earth {
      display: flex;
      flex-direction: column;
      margin-left: 10px;
      margin-top: 4%;
      padding-bottom: 0%;
  }
  }
  
  @media (max-width:450px){
  
  
  .column-earth {
    display: flex;
    flex-direction: column;
    margin-left: 5%;
    
  }
  }
  
  @media screen and  (max-width:1000px) and (min-width:450px){
  .column-earth {
    display: flex;
    flex-direction: column;
    margin-left: 3%;
  
  }
  
  .organ-image {
  max-width: 100%;
  height: 42vh;
  display: block;
  margin: 0 auto;
  margin-left: 0%;
  object-fit: cover;
  position: relative;
  
  }
  
  
  .row-1 {
  flex-direction: column;
  }
  }
  
  @media screen and  (max-width:850px) and (min-width:450px){
  .column-earth {
    display: flex;
    flex-direction: column;
    margin-left: 3%;
  
  }
  
  .organ-image {
  max-width: 100%;
  height: 42vh;
  display: block;
  margin: 0 auto;
  margin-left: 0%;
  object-fit: cover;
  position: relative;
  margin-top: -10%;
  }
  .wrapper_ac {
  position: absolute;
  width: 71vw;
  transform: translate(-50%, -50%);
  top: 229%;
  left: 85%;
  display: flex;
  justify-content: space-around;
  gap: 58px;
  
  }
  
  .row-1 {
  flex-direction: column;
  }
  
  .grid-item-p {
  
  margin-left: -1%;
  }
 

  }
  
  
  
  *,
  *::before,
  *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  
  
  
  img { height: auto; }
  
  input,
  button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  }
  
  input {
  width: 100%;
  outline: none;
  }
  
  button { cursor: pointer; }
  
  ion-icon { pointer-events: none; }
  
  address { font-style: normal; }
  
  html {
  font-size: 10px;
  scroll-behavior: smooth;
  }
  
  body {
  background-color: #fffffd;
  color: var(--text-shadow-blue);
  font-family: var(--fontFamily-noto_sans);
  font-size: 1.6rem;
  line-height: var(--lineHeight-4);
  overflow-y: overlay;
  }
  
  body.nav-active { overflow: hidden; }
  
  ::-webkit-scrollbar { width: 5px; }
  
  ::-webkit-scrollbar-track { background-color: transparent; }
  
  ::-webkit-scrollbar-thumb {
  background-color: var(--bg-carolina-blue);
  border-radius: var(--radius-pill);
  }
  
  .container {
	  padding: 0rem;
}
  
  .hover-1,
  .hover-2 { transition: var(--transition-1); }
  
  .hover-1:is(:hover, :focus-visible) { 
  color: var(--text-wild-blue-yonder);
  transform: translateX(3px);
  }
  
  .hover-2:is(:hover, :focus-visible) { color: var(--text-carolina-blue); }
  
  .profile-card {
  display: flex;
  align-items: center;
  gap: 10px;
  }
  
  .profile-card .profile-banner { border-radius: var(--radius-circle); }
  
  .headline {
  color: var(--text-columbia-blue);
  line-height: var(--lineHeight-1);
  }
  
  .headline-1 {
  font-size: var(--fontSize-1);
  color: var(--text-alice-blue);
  font-weight: var(--weight-extraBold);
  }
  
  .headline-2 { font-size: var(--fontSize-2); }
  
  .headline-3 {
  font-size: var(--fontSize-2);
  line-height: var(--lineHeight-2);
  }
  
  .section-title { margin-block-end: 10px; }
  
  .headline .span {
  background-image: var(--gradient-1);
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  }
  
  
  
  .btn:is(:hover, :focus-visible) { background-position: right; }
  
  
  
  .btn-secondary {
  padding: 18px 30px;
  border-radius: var(--radius-pill);
  }
  
  .w-100 { width: 100%; }
  
  .card {
  background-color: var(--bg-oxford-blue);
  border: 1px solid var(--border-prussian-blue);
  }
  
  .img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--bg-prussian-blue);
  overflow: hidden;
  }
  
  .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  
  .section { padding-block: var(--section-padding); }
  
  .section-text {
  font-size: var(--fontSize-3);
  margin-block-end: 70px;
  }
  
  .grid-list {
  display: grid;
  gap: 30px;
  }
  
  .card-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: var(--fontSize-6);
  margin-block: 20px;
  }
  
  .card-wrapper :is(.card-tag, .wrapper) {
  display: flex;
  gap: 3px;
  align-items: center;
  }
  
  

  
  @media (max-width: 450px) {
    .section__header {
        margin-inline: 90px;
        left: -4px;
        font-size: 3rem;
    }
}
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 0rem !important;
	  padding:0rem;
}
    /**************icon video *********/
  
.custom-video__video {
  border-radius: 0.2em;
  cursor: pointer;
}
.custom-video__control {
  position: absolute;
  top: 42%;
  left: 42%;
  background-color: rgb(0 0 0 / 24%);
  border-radius: 50%;
  padding: 1.7em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1em;
  font-weight: 400;
  width: 3em;
  height: 3em;
  white-space: nowrap;
  line-height: 0;
  border: 2px solid #ffff;
}

video::-webkit-media-controls {
  position: relative;
  z-index: 1;
}


  
    
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
  width: 97%;
  padding: 12px;
}

  
  /****************************************************sustainbility*********************************************************************/
  
  
  .bloc-title[data-v-0eeaaf87] {
  font-family: "Nunito-ExtraBold";
  font-size: 53px;
  margin-bottom: 10px;
  text-transform: uppercase;
  
  }
  .bloc-title[data-v-0eeaaf87] {
  color: #fff;
 background: url(../images/Friends2.d5a0bb3.png) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  background-position: cover;
  -webkit-text-fill-color: transparent;
  background-position: 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  
  margin-bottom: 6%;
  }
  @media (max-width:1200px){
  .bloc-title[data-v-0eeaaf87] {
    font-family: "Nunito-ExtraBold";
    font-size: 37px;
        
   
  }
  }    
  .normes {
  display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
    gap: 4rem;
    margin-left: 9%;
   
  }
  
  .friends-bloc[data-v-14682a0f] {
  margin-top: 80px;
  }
  
  
  .friends-desc[data-v-14682a0f] {
  text-align: center;
  }
  
  /*
  .bloc-title[data-v-14682a0f] {
  color: #fff;
  background: url(/_nuxt/img/Friends2.d5a0bb3.png) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  background-position: 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  }*/
  
  [data-aos].aos-animate {
  pointer-events: auto;
  }
  [data-aos].aos-animate {
  pointer-events: auto;
  }
  
  .friends-list[data-v-14682a0f] {
  justify-content: center;
  }
  
  .rox {
  overflow-x: hidden!important;
  overflow-y: hidden!important;
  }
  .rox {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  margin: 0;
  }
  
  .list-img-container img[data-v-14682a0f] {
  display: block;
  margin: auto;
  opacity:.5;
  width: 250px;
  height: 227px;
  border-radius: 16px;
  }
  .list-img-container img[data-v-14682a0f]:hover {
  filter: none;
  opacity: 1;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
  box-sizing: inherit;  
  
  
  }
  @media screen and (max-width:1500px) and (min-width:600px){
  .list-img-container img[data-v-14682a0f] {
    display: block;
    margin: auto;
    opacity: .5;
    width: 199px;
    height: 179px;
    border-radius: 16px;
  }
  }
  
  @media screen and (max-width:1920px) and (min-width:460px){
  .normes-container h1 {
    font-size :4rem;
  }
  }
  @media screen  and (max-width:450px){
  .normes-container h1 {
    font-size :32px;
    margin-left:-20%;
  }
  }
  


  /**********************************************image***************************************/
  
  .blue{
  background: url(../images/blueBanner.5ce7a41.webp) center/cover no-repeat; /* Remplacez 'votre-image.jpg' par le chemin de votre image */
  height: 53vh; /* 100% de la hauteur de la vue */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff; /* Couleur du texte */
  margin-top: 4%;
  }
  .confection {
  text-align: center;
  padding: 20px;/*
  background: rgba(0, 0, 0, 0.7); /* Arrière-plan semi-transparent */
  border-radius: 10px; /* Coins arrondis */
  color: white;
  }
  
  .confection h1 {
  margin-bottom: 10px;
  font-size: 53px;
  font-family: cursive;
  
  }
  
  .confection p {
    font-size: 23px;
    line-height: 4.6;
    letter-spacing: 4px;
    color: aliceblue;
}
  
  @media screen and (max-width: 700px) {
  .confection h1  {
    font-size: 4rem; /* Taille réduite pour les écrans plus petits */
  
  }
  .confection p {
    font-size: 2.5rem;
    line-height: 2;
    letter-spacing: 4px;
  }
  }
  
  /****************************************************----partenaire----********************************************-*/
  
  @keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
  }
  
  .logos {
  overflow: hidden;
  padding: 15px 0;
  background: #ffffff;
  white-space: nowrap;
  position: relative;
  }
  
  .logos:before,
  .logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
  }
  
  .logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }
  
  .logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }
  
  .logos:hover .logos-slide {
  animation-play-state: paused;
  }
  
  .logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
  }
  
  .logos-slide img {
  height: 100px;
  margin: 0px 40px;
  }
    @media(max-width:450px){
    .logos-slide img {
      height: 55px;
      margin: 0px 7px;
  }
  }
  
  
  /****************************************************footer*************************************************************************/
  
.footer-section::after {
    content: "";
    background: url(../img/bgContact.6310a8e.svg) no-repeat right center;
    position: absolute;
    top: -102px;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

  .text-primary {
  color: #88b44e !important;
  }
  .mb-4 {
  margin-bottom: 0rem !important;
  }
  @media (min-width: 1200px)
  {
  h4, .h4 {
  font-size: 1.5rem;
  }
  h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
  }
  }
  
  ul {
  margin: 0px;
  padding: 0px;
  }
  .footer-section {
  background: #1A1D20;
  position: relative;
  }
  .footer-cta {
  border-bottom: 1px solid #373636;
  }
  .single-cta i {
  color: #1a8ca3;
  font-size: 30px;
  float: left;
  margin-top: 8px;
  }
  .cta-text {
  padding-left: 15px;
  display: inline-block;
  }
.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: sans-serif;
}

  .cta-text span {
  color: #757575;
  font-size: 16px;
	  line-height:23px;
  }
  .footer-content {
  position: relative;
  z-index: 2;
  }
  .footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
  }
  .footer-logo {
  margin-bottom: 30px;
  }
  .footer-logo img {
  max-width: 200px;
  }
  .footer-text p {
  margin-bottom: 14px;
  font-size: 16px;
    color: #7e7e7e;
  line-height: 28px;
  }
  .footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  }
  .footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  }
  .footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  }
  .facebook-bg{
  background: #3B5998;
  }
  .twitter-bg{
  background: #55ACEE;
  }
  .google-bg{
  background: #DD4B39;
  }
  .footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  }
  .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background:#1a8ca3;
  }
  .footer-widget ul li {
  display: inline-block;
 
  width: 50%;
  margin-bottom: 12px;
  }
  .footer-widget ul li a:hover{
  color: #1a8ca3;
  }


.footer-widget ul li a {
    color: #878787;
    font-family: "Nunito-Regular";
    font-size: 16px;
    font-weight: 100;
}



  .subscribe-form {
  position: relative;
  overflow: hidden;
  }
  .subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
  }
  .subscribe-form button {
  position: absolute;
  right: 0;
  background: #1a8ca3;
  padding: 13px 20px;
  border: 1px solid #1a8ca3;
  top: 0;
  }
  .subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
  }
  .copyright-area{
  background: #202020;
  padding: 25px 0;
  }
  .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
	  margin-top:14px;
  }
  .copyright-text p a{
  color: #1a8ca3;
  }
  .footer-menu li {
  display: inline-block;
  margin-left: 20px;
  }
  .footer-menu li:hover a{
  color: #1a8ca3;
  }

.footer-menu li a {
    font-size: 14px;
    color: #878787;
    font-family: "Nunito-Regular";
    font-weight: 100;
}
  
  .contact-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border: 2px solid #49b2c7;
    background-color: #1A1D20;
    transition: background-color 0.3s ease, background-position 0.3s ease;
    margin-top: 3%;
    width: 71%;
    background-image: linear-gradient(to right, #49b2c7 50%, #1A1D20 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    font-weight: bold;
    font-size: 18px;
 
  }
  
  
  .contact-button:hover {
  background-position: left bottom;
  color: white; /* Pour garder le texte en blanc */
  font-family: monospace;
  }
  
  
  
  /* Styles du bouton au survol */
  .contact-button:hover {
  background-color: rgb(7, 63, 85);
  }

  
  #back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  }  
  .btn-primary {
  background-color: #f5f5f5;
  box-shadow: 0 3px 5px -1px rgba(0,0,1,.2), 0 6px 10px 0 rgba(0,0,1,.14), 0 1px 18px 0 rgba(0,0,1,.12);
  border-color: transparent;
  height: 4vh;
  }
  .btn-primary:hover {
  
  background-color: #c1d8f1;
  border-color: transparent;
  
  }
  .btn-primary {
  padding: 22px 22px;
  border-radius: var(--radius-6);
  }
  .bi-arrow-up {
  position: absolute;
  top: 20%;
  left: 32%;
  height: 21vh;
  color: black;
  
  }
  .iframe{
  height: 600px;
  width:200px
  }
  /*********media***************************************************/
  @media(max-width:450px){
  
  .organ-image {
  max-width: 100%;
  height: 42vh;
  display: block;
  margin: 0 auto;
  margin-left: 0%;
  object-fit: cover;
  position: relative;
  margin-top: -10%;
  }

  .row-1 {
  flex-direction: column;
  }
  .md-7 {
  flex: 0 0 19%;
  padding: 13px;
  margin-top: -5%;
  margin-left: 4%;
  }
  .grid-item-p {
  
  margin-left: -1%;
  }
 


  .left-column p {
  font-size: 13px;
  margin-top: 3%;
  max-width: 87%;
  }

  .contain {
  display: flex;
  height: 10vh;
  width: 27vh;
  margin-left: 1%;
  margin-top: -26px;
  gap: 0;
  }

  
  .title-next-to-box h3 {
  margin-left: 25px;
  width: 94%;
  font-size: 22px;
  margin-top: 12%;
  }
  
  .navbar .nav-container a {
  font-weight: 100;
  font-size: 2rem;
  
  }
  }
  
  
  
  
  @media screen and (max-width:330px){
  
  .counter::before {
    position: absolute;
    top: 28%;
  }
  
  
  .normes-container h1 {
  font-size: 2.7rem;
  }

  .contain {
  display: flex;
  height: 10vh;
  width: 27vh;
  margin-left: 3%;
  margin-top: -84px;
  gap: 0;
  }
  
  }
  @media screen and (max-width:450px){
  
  .home .right img {
  width: 100%;
  height: 54vh;
  object-fit: cover;
  margin-left: -6%;
  margin-top: 102%;
  position: absolute;
  
  }
  
 
  
  .column-earth {
  display: flex;
  flex-direction: column;
  margin-left: 0%;
  
  }
  .organ-image {
  max-width: 100%;
  height: 42vh;
  display: block;
  margin: 0 auto;
  margin-left: 0%;
  object-fit: cover;
  position: relative;
  margin-top: -10%;
  }
  
  .row-1 {
  flex-direction: column;
  }
  
  .grid-item-p {
  
  margin-left: -1%;
  }
  
  
  
  .left-column p {
  font-size: 13px;
  margin-top: 3%;
  max-width: 87%;
  }
  .contain {
  display: flex;
  height: 10vh;
  width: 27vh;
  margin-left: 1%;
  margin-top: -26px;
  gap: 0;
  }
  .left-column h1 {
  
  font-size: 3rem;
  }
  .box h2 {
  margin-top: 28%;
  font-size: 13px;
  font-family: 'Montserrat';
  }
  
  .title-next-to-box h3 {
  margin-left: 25px;
  width: 94%;
  font-size: 22px;
  margin-top: 12%;
  }
  
  .navbar .nav-conteiner a {
  font-weight: 100;
  font-size: 2rem;
  
  }

  
  }

  .custom_nav-container {
  padding-left: 0;
  padding-right: 0;
  }
  
  .custom_menu-btn {
  position: fixed;
  right: 25px;
  top: 15px;
  width: 50px;
  height: 50px;
  }
  
  .custom_menu-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.07);
  z-index: 7;
  border-radius: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  }
  
  .custom_menu-btn.menu_btn-style::before {
  width: 100vh;
  height: 100vh;
  background-color: #184d47;
  -webkit-transform: scale(7);
          transform: scale(7);
  border-radius: 0;
  }
  
  .custom_menu-btn button {
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  position: relative;
  z-index: 999;
  margin: 0;
  }
  
  .custom_menu-btn button span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #000000;
  margin: 2.5px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 15px;
  }
  
  .custom_menu-btn .s-2 {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  }
  
  .menu_btn-style button span {
  background-color: #ffffff;
  }
  
  .menu_btn-style button .s-1 {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu_btn-style button .s-2 {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  }
  
  .menu_btn-style button .s-3 {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
  }
  
   
  .menu_width {
  width: 100%;
  }
  
  .menu_width.overlay a {
  opacity: 1;
  }
a {
font-family:"Nunito-Regular";
}

 a, a:hover, a:focus {
    text-decoration: none;
    font-size: 1.8rem;
    font-family: system-ui;
  
    letter-spacing: 2px;
}

@media(max-width:450px){
  a, a:hover, a:focus {
    text-decoration: none;
    font-size: 13px;
}
}
  
  a:hover,
  a:focus {
  color: initial;
  }
  
  .btn,
  .btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  }
  
  .navbar-brand {
  font-family: 'Playfair Display', serif;
  }
  
  .navbar-brand span {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  }
  
  /*end header section*/
  







