@font-face { 
font-family: "Ma_Super_Fonte";     src: url('../font/Sacramento-Regular.ttf');
}

body {
 font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;;
 }


 #container-text {
color:#2B3F8C; 
background-color: #f4ae05; 
box-shadow: 0px 2px 5px #1c1a19;
      border-radius: 5px;
      line-height: 150%;
    
      padding: 10px;
} 


 
 #container-text-bleu {
color:#2B3F8C; 
background-color: #2B3F8C; 
box-shadow: 0px 2px 5px #1c1a19;
      border-radius: 5px;
      line-height: 150%;
    
      padding: 10px;
} 

#card-1 {
color:#2B3F8C; 
background-color: #f4ae05; 
box-shadow: 0px 2px 5px #1c1a19;
      border-radius: 5px;
      line-height: 150%;
    
      padding: 10px;
} 

p {
 font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;;
 font-size: 120%;
 line-height: 1.5em; 
 }      

h1 {
 font-family:Ma_Super_Fonte, "Trebuchet MS", Arial, Helvetica, sans-serif;;
 font-size: 400%;
  background-color: #f4ae05; 
      padding: 10px;
      box-shadow: 0px 2px 5px #1c1a19;
      border-radius: 5px;
      color:#2B3F8C; 
 } 

h2 {
 font-family:Ma_Super_Fonte, "Trebuchet MS", Arial, Helvetica, sans-serif;;
 font-size: 300%;
  background-color: #f4ae05; 
      padding: 10px;
      box-shadow: 0px 2px 5px #1c1a19;
      border-radius: 5px;
      color:#2B3F8C; 
 } 

h3 {
 font-family:Ma_Super_Fonte, "Trebuchet MS", Arial, Helvetica, sans-serif;;
 font-size: 250%;
  background-color: #f4ae05; 
      padding: 10px;
      box-shadow: 0px 2px 5px #1c1a19;
      border-radius: 5px;
 }       

 h4 {
 font-family:Ma_Super_Fonte, "Trebuchet MS", Arial, Helvetica, sans-serif;;
 font-size: 400%;
 background-color: #f4ae05; 
      padding: 10px;
 }    

 .orange-block {
   color: #f4ae05;
    font-size: 1000%;
    text-align: center;
    margin-top: 0;
}  

 .orange-block-mini {
   color: #f4ae05;
    font-size: 600%;
    text-align: center;
    margin-top: 0;
}  

 .bleu-block {
   color: #2B3F8C;
    font-size: 1000%;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}  

.bleu-block-mini {
    color: #2B3F8C;
     font-size: 600%;
     text-align: center;
     margin-top: 0;
 } 

.centered {
 justify-content: center;
 text-align: center;
 margin-bottom: 0;
 } 

/* custom css theme panel */
.fab {
    padding: 10px;
    font-size: 15px;
    width: 35px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
}

/* Add a hover effect if you want */
.fab:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
    background: #3B5998;
    color: white;
}

/* LinkedIn */
.fa-linkedin {
  background: white;
}

/* Twitter */
.fa-twitter {
    background: #55ACEE;
    color: white;
}

/* YouTube */
.fa-youtube {
  background: #bb0000;
  color: white;
}

/* Google Plus */
.fa-google-plus {
  background: #dd4b39;
  color: white;
}

/* Instagram */
.fa-instagram {
  background: #dd4b39;
  color: white;
} 

ul {
  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;;
  font-size: 120%;
  line-height: 1.5em; 
  }  
 /* pour la partie slider */ 
  .custom-slider { display: none; }
  .slide-container {
      max-width: 300px;
      position: relative;
      margin: auto;
  }
  .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: white;
      font-size: 30px;
      background-color: rgba(0,0,0,0);
      transition: background-color 0.6s ease;
  }
  .prev{ left: 15px; }
  .next { right: 15px; }
  .prev:hover, .next:hover {
      background-color: rgba(0,0,0,0.5);
  }
  .slide-text {
      position: absolute;
      color: #ffffff;
      font-size: 15px;
      padding: 15px;
      bottom: 15px;
      width: 100%;
      text-align: center;
  }
  .slide-index {
      color: #ffffff;
      font-size: 13px;
      padding: 15px;
      position: absolute;
      top: 0;
  }
  .slide-img{
      width: 100%;
      height: 300px;
      object-fit: cover;
      object-position: center;
  }
  .slide-dot{ text-align: center; }
  .dot {
      cursor: pointer;
      height: 10px;
      width: 10px;
      margin: 0 2px;
      background-color: #999999;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
  }
  .active, .dot:hover { background-color: #111111; }
  .fade {
      animation-name: fade;
     animation-duration: 10s;
  }
  @keyframes fade {
      from {opacity: 0}
      to {opacity: 1}
  }
  