/* Barre de menu fixe */


/*.menu-container{

    padding: 20px;
}
*/

.back{
    background-image: url('/design/images/afrique-fortune-accueil1.jpg');
    height: 70vh;
    background-size: cover; /* Rend l'image responsive */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
  }

.app-div-back{
    background-image: url('/design/images/prise-de-RDV-blog.png');
    /* height: 70vh; */
    background-size: cover; /* Rend l'image responsive */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
  }

.contact-div-back{
    background-image: url('/design/images/afrique-fortune-accueil1.jpg');
    /* height: 70vh; */
    background-size: cover; /* Rend l'image responsive */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
  }

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 99%;
    height: 50px;
    background-color: #fff;
    color: #fc6403;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    
}

.navbar .logo {
    font-size: 20px;
    padding-left: 0px;
 }

.navbar .btn-logo-cont {
   
    display:flex;
}


.logo img {
    width: 74px;  /* Ajuster la largeur du logo */
    height: auto;  /* Conserve les proportions de l'image */
}

.menu {
    list-style-type: none;
    display: flex;
    margin: 0;
    /* padding-top: 20px; */
    justify-content: center;
    
}



.menu li {
    margin: 0 15px;
    position: relative;
}

.menu li a {
    color: black;
    text-decoration: none;
}


.menu-ext{
    list-style-type: none;
    display: flex;
    margin: 0;
    /* padding-top: 20px; */
    justify-content: center;
    
}

.menu-ext li {
    margin: 0 15px;
    position: relative;
}

.menu-ext li a {
    color: black;
    text-decoration: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    z-index: 1;
}

.dropdown-content li {
    padding: 8px 12px;
}

.dropdown-content li a {
    color: black;
    text-decoration: none;
}

.dropdown-content li a:hover {
    background-color: #ddd;
}

.menu li:hover .dropdown-content {
    display: block;
}

/* Sidebar */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 1100;
}

.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    background-color: #575757;
}

.sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
}

/* Toggle button (hamburger icon) */
.sidebar-toggle {
    font-size: 15px;
    background: none;
    color: black;
    cursor: pointer;
    border: 4px solid #000;
    border-radius: 8px;
    height: 46px;
    width: 110px;
    margin-top: 16px;
    margin-right: 3rem;
}

/* Contenu principal */
.content {
    margin-top: 1px;
    padding: 40px;
    background-color: #e6d6cd;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
    }

    .sidebar-toggle {
        display: block;
    }
}


.hero-sect{

    padding-top: 140px;
    text-align: center;

}


.hero-sect h1{

    -webkit-text-stroke: 3px white; 
    padding: .5rem;
    margin-bottom: 0;
    color: #fc6403;
    font-size: 5rem;
    
}

.hero-sect h4 {

    -webkit-text-stroke: 2px white; 
    color: #000;
    font-size: 3rem;
    margin-top: 1rem;
    padding-top: 0;
}

@media (max-width: 768px) {
    .hero-sect h1{
        -webkit-text-stroke: 3px white; 
        padding: .5rem;
        margin-bottom: 0;
        color: #fc6403;
        font-size: 3rem;    }
}

@media (max-width: 480px) {
    .chero-sect h1{
        -webkit-text-stroke: 3px white; 
        padding: .5rem;
        margin-bottom: 0;
        color: #fc6403;
        font-size: 2rem;     }
}




 .container-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 colonnes sur les grands écrans */
      gap: 20px;
  }

  .immo-grid {
      background-color: #f4f4f4;
      padding: 20px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
  }

  .immo-grid img {
      width: 100%;
      height: auto;
  }

  @media (max-width: 768px) {
      .container-grid {
          grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur les écrans moyens */
      }
  }

  @media (max-width: 480px) {
      .container-grid {
          grid-template-columns: 1fr; /* 1 colonne sur les petits écrans */
      }
  }





  .promoter {
    display: grid;
    grid-template-columns: 1fr; /* Une colonne sur petits écrans */
    gap: 16px; /* Espacement entre les colonnes */
    padding: 16px;
    background-color: #fc6403;
    justify-content: space-between;
}

/* Grille pour les écrans moyens et plus grands */
@media (min-width: 768px) {
    .promoter {
        grid-template-columns: 2fr 1fr; /* 2/3 pour la description et 1/3 pour l'image */
    }
}

/* Style de la description */
.promot-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fc6403;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Style de l'image */
.promot-im {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #e0e0e0; */
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-image: url('ban1.jpg');
}

.promot-im img {
    max-width: 100%;
    height: auto;
    width: 150px; /* Dimensions égales pour créer le cercle */
    height: 150px;
    border-radius: 50%; /* Bordure arrondie pour rendre l'image circulaire */
    object-fit: cover;
    border: 4px solid #ffffff;
}

  /* Footer */



.social-media{

    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
}


.page_foot {
    background-color: #2c3b4b;
    color: aliceblue;
    padding: 20px;
    display: flex;
    flex-direction: column; /* Disposition verticale */
    align-items: center;
    justify-content: center;
}

/* Utilisation de CSS Grid pour organiser les liens avec une colonne par lien */
.foot-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Une colonne par lien */
    gap: 10px;
    justify-items: center; /* Centre les liens horizontalement */
}

.foot-links li {
    margin: 0;
}

/* Style des liens */
.foot-links a {
    color: aliceblue;
    text-decoration: none;
    font-size: 1rem;
}

.foot-links a:hover {
    text-decoration: underline;
}

/* Responsivité pour les petits écrans : passe à deux colonnes */
@media (max-width: 600px) {
    .foot-links {
        grid-template-columns: repeat(2, 1fr); /* Deux colonnes sur petits écrans */
    }
}

/* Responsivité pour les écrans moyens : passe à trois colonnes */
@media (min-width: 601px) and (max-width: 900px) {
    .foot-links {
        grid-template-columns: repeat(3, 1fr); /* Trois colonnes sur écrans moyens */
    }
}

/* Padding plus important sur les grands écrans */
@media (min-width: 768px) {
    .page_foot {
        padding: 40px;
    }
}


.afor-mark{
    margin-top: 40px;
}

/* Style pour l'adresse et le copyright */
.footer-info {
    text-align: center;
    margin: 20px 0;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.9rem;
}



.sweet-pre{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Une colonne par lien */
    gap: 20px; 
    justify-content: space-between; 
    padding: 30px;
    background-color: white;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    
}


.sweet-pre div{
    background-color: #df5804; color: white; border-radius: 10px; padding: 15px; padding-top: 25px;
}



.sweet-pre a {
   
    color: white;
    /* color: #df5804; */
    font-weight: bold;
    
}

@media (max-width: 768px) {
    .sweet-pre{
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur les écrans moyens */
    }
}

@media (max-width: 480px) {
    .sweet-pre{
        grid-template-columns: 1fr; /* 1 colonne sur les petits écrans */
    }
}



/* Conteneur de la section */
.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Trois colonnes */
    gap: 10px; /* Espace entre les colonnes */
    padding: 20px;
}

/* Première colonne divisée en deux lignes */
.col1 {
    display: flex;
    flex-direction: column; /* Orientation verticale */
    gap: 10px;
}

.col1 > div {
    background-color: #e0e0e0;
    padding: 10px;
    height: 100%; /* Prend tout l'espace disponible */
}

/* Deuxième colonne contenant l'image */
.col2 {
    display: flex;
    justify-content: center; /* Centre l'image horizontalement */
    align-items: center;     /* Centre l'image verticalement */
}

.col2 img {
    max-width: 100%; /* Image responsive */
    height: auto;
    border-radius: 5px; /* Ajoute des coins arrondis */
}

/* Troisième colonne contenant du texte */
.col3 {
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsivité : affichage en une seule colonne sur les petits écrans */
@media (max-width: 768px) {
    .section-container {
        grid-template-columns: 1fr; /* Une seule colonne */
    }

    .col1, .col2, .col3 {
        margin-bottom: 10px; /* Espace entre les éléments */
    }
}




/*


SECOND PAGE A PROPOS

*/


.back_a_propos{
    background-color: #f0e6e6;
    height: auto;
    background-size: cover; /* Rend l'image responsive */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
}


  
.intro_ap {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes */
    gap: 6rem;
    padding-top: 12rem;
    padding-left: 10rem;
    padding-bottom: 7rem;
    padding-right: 10rem;
}

/* Style pour le texte et le bouton */
.intro_ap div p  {
    margin: 0;
}

.intro_ap div h1 {
    margin: 0;
    color: #fc6403;
}

.intro_ap button {
    padding: 0.5rem 1rem;
    background-color: #fc6403;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

/* Image responsive */
.intro_ap img {
    max-width: 100%; /* L'image prend la largeur du conteneur */
    height: auto; /* Garde les proportions de l'image */
    border-radius: 5px; /* Coins arrondis pour un style plus esthétique */
    
}



.imgs-container{

    padding-left: 4rem;
    padding-right: 4rem;
}






.mission_ap {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes */
    gap: 6rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 10rem;
    padding-right: 10rem;
    background-color: #fc6403;
}

/* Style pour le texte et le bouton */
.mission_ap div p {
    margin: 0;
   
}


.mission_ap div h1 {
    margin: 0;
    color: white;
}


/* Image responsive */
.mission_ap img {
    max-width: 100%; /* L'image prend la largeur du conteneur */
    height: auto; /* Garde les proportions de l'image */
    border-radius: 5px; /* Coins arrondis pour un style plus esthétique */
}




.valeurs_ap {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes */
    gap: 6rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  
    padding-left: 10rem;
    padding-right: 10rem;

}

/* Style pour le texte et le bouton */
.valeurs_ap div p {
    margin: 0;
   
}


.valeurs_ap div h1 {
    margin: 0;
    color: #fc6403;
}



/* Image responsive */
.valeurs_ap img {
    max-width: 100%; /* L'image prend la largeur du conteneur */
    height: auto; /* Garde les proportions de l'image */
    border-radius: 5px; /* Coins arrondis pour un style plus esthétique */
}





/* Responsivité : affichage en une seule colonne sur les petits écrans */
@media (max-width: 768px) {
    .intro_ap, .mission_ap, .valeurs_ap {
        grid-template-columns: 1fr; /* Une seule colonne */
        gap: .5rem;
        padding-top: 5rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}


.bottom_ban {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes */
    gap: 6rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  
    padding-left: 10rem;
    padding-right: 10rem;

}

/* Style pour le texte et le bouton */
.bottom_ban div p {
    margin: 0;
   
}


.bottom_ban div h1 {
    margin: 0;
    color: #fc6403;
}



/* Image responsive */
.bottom_ban img {
    max-width: 100%; /* L'image prend la largeur du conteneur */
    height: auto; /* Garde les proportions de l'image */
    border-radius: 5px; /* Coins arrondis pour un style plus esthétique */
}





/* Responsivité : affichage en une seule colonne sur les petits écrans */
@media (max-width: 768px) {
    .bottom_ban, .mission_ap, .valeurs_ap {
        grid-template-columns: 1fr; /* Une seule colonne */
        gap: .5rem;
        padding-top: 5rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}






.slogan{

    /*display: grid;
    grid-template-columns: 1fr 1fr;  deux colonnes */
    display: grid;
    gap: .5rem; /* Espace entre les colonnes */
    background-color: #ffffff;
    padding-left: 10rem;
    padding-right: 10rem;

    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;

}


.slogan h1{

    
    color: #000000;

}

.slogan p{

    
    color: #000000;

}


/* Formulaire*/



/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  */
  .app-form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fcfcfc;

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  
  .app-form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
  }
  
  h2 {
    text-align: center;
    color: #fc6403;
    margin-bottom: 20px;
  }
  
  .app-appointment-form {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
  
  .app-form-group {
    display: flex;
    flex-direction: column;
  }
  
  .app-form-group label {
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .app-form-group input,
  .app-form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }
  
  .app-full-width {
    grid-column: span 2;
  }
  
  .app-submit-btn {
    grid-column: span 2;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #fc6403;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .app-submit-btn:hover {
    background-color: #e55602;
  }
  
  @media (max-width: 600px) {
    .app-appointment-form {
      grid-template-columns: 1fr;
    }
  }
  


  /*contacts*/

  .contacts-form {
    margin-top: 5rem;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.space_maker {
    margin-top: 5rem;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    
}


.apro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #fc6403;
    margin-bottom: 30px;
}

.apro-info {
    display: grid;
    /*grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0%;
}

.apro-card {
    background-color: #fc6403;
    border: 4px solid #ffffff;
    border-radius: 25px;
    padding: 15px;
    text-align: center;
    height: 250px;
    width: 325px;
}

.apro-card h2{
    color: white;
}

.contacts-form h1{
    color: #fc6403;
    padding: 15px 0px;
    background-color: white;
}

.apro-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.apro-localisation {
    margin-bottom: 30px;
}

.apro-map {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.apro-form {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

.apro-form-group {
    margin-bottom: 15px;
}

.apro-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.apro-form-group input,
.apro-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.apro-submit-btn {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #fc6403;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.apro-submit-btn:hover {
    background-color: #e55602;
}

@media (max-width: 600px) {
    .apro-info {
        grid-template-columns: 1fr;
    }
}

  

.immo_back{
    background-image: url('/design/images/afrique-fortune-immobilier-et-foncier-1.jpg');
    height: 70vh;
    background-size: cover; /* Rend l'image responsive */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
  }

  

  .gouv_back{
    background-image: url('/design/images/afrique-fortune-gouvernance-et-gestion-des-crises-1.png');
    height: 70vh;
    background-size: cover; /* Rend l'image responsive */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
  }

  .btp_back{
    background-image: url('/design/images/afrique-fortune-batiment-et-travaux-public1.jpg');
    height: 70vh;
    background-size: cover; /* Rend l'image responsive */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
  }


  .af-form {
    font-family: Arial, sans-serif;
    background-color: #fc6403; /* Couleur de fond principale */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .form-container {
    background-color: #ffffff; /* Fond du formulaire */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .form-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .form-header h2 {
    margin: 0;
    font-size: 1.5em;
    color: #fc6403; /* Couleur du titre */
  }

  .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }

  .form-group.full-width {
    grid-template-columns: 1fr;
  }

  .form-group label {
    font-size: 0.9em;
    color: #000000; /* Couleur des étiquettes */
  }

  .form-group input {
    padding: 10px;
    border: 1px solid #fc6403; /* Bordure des champs */
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
  }

  .form-group input:focus {
    outline: none;
    border-color: #000000; /* Bordure au focus */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }

  .form-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .form-submit button {
    padding: 10px 20px;
    background-color: #fc6403; /* Couleur du bouton */
    border: none;
    color: #ffffff; /* Couleur du texte du bouton */
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .form-submit button:hover {
    background-color: #000000; /* Couleur du bouton au survol */
  }




  .con-form {
    font-family: Arial, sans-serif;
    background-color: #fc6403; /* Couleur de fond principale */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .con-container {
    background-color: #ffffff; /* Fond du formulaire */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .con-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .con-header h2 {
    margin: 0;
    font-size: 1.5em;
    color: #fc6403; /* Couleur du titre */
  }

  .con-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }

  .con-group label {
    font-size: 0.9em;
    color: #000000; /* Couleur des étiquettes */
  }

  .con-group input {
    padding: 10px;
    border: 1px solid #fc6403; /* Bordure des champs */
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
  }

  .con-group input:focus {
    outline: none;
    border-color: #000000; /* Bordure au focus */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }

  .con-submit {
    display: flex;
    justify-content: center;
  }

  .con-submit button {
    padding: 10px 20px;
    background-color: #fc6403; /* Couleur du bouton */
    border: none;
    color: #ffffff; /* Couleur du texte du bouton */
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .con-submit button:hover {
    background-color: #000000; /* Couleur du bouton au survol */
  }

  .con-footer {
    text-align: center;
    margin-top: 10px;
  }

  .con-footer a {
    color: #fc6403; /* Lien avec la couleur principale */
    text-decoration: none;
    font-size: 0.9em;
  }

  .con-footer a:hover {
    text-decoration: underline;
  }

  .nav-form-submit {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #fc6403; /* Couleur du bouton */
    border: none;
    color: #ffffff; /* Couleur du texte du bouton */
    font-size: 1em;
    /* border-radius: 5px; */
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .menu-ext button:hover {
    background-color: #000000; /* Couleur du bouton au survol */
  }

  .intro_act{

    margin-top: 7rem;
    text-align: center;
    background-color: #e55602;
    color: white;
    padding: 25px 5px;

  }

  .domaines{

    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #e55602;
    font-size: large;

  }

  .sweet-pre div{
    text-align: center;
  }


.b-col{
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    height: 150px;
    /* width: 325px; */
    align-content: center;
    color: #e55602;
    font-size: larger;
   
}