/* Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Set background color and font styles */
  body {
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 400, 700;
    background-color: #f0f0f0;
  }

  /* Header styles */
  header {
    background-color: #FFFBD3;
    color: #00283C;
    text-align: center;
    padding: 1rem 2rem;
  }
  header img {
    max-width: 10rem;
    padding: 0 2rem;
  }
  header h1 {
    font-weight: 400;
    font-size:  1.6rem;
  
   
  }

  headercont {
    max-width: 940px;
    display: flex;
    margin: auto;
    align-items: center;
  }

  /* Navigation styles */
  nav {
    display: flex;
    justify-content: center;
    background-color: #36700A;
    padding: 0;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0;
    display: block;
    padding: 0.5rem 0.8rem;
  }

  nav a:hover {
    background-color: #00283C;
    color:  #FFFBD3;
  }

  /* Main content styles */
  .content {
    max-width: 940px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  /* #BDE4E9 */
  section {
    border-bottom: 1px dashed #36700A;
    padding: 1rem;
    line-height: 1.8;
  }

  section h2 {
    color:#00283C;
  }

  section h3 {
    color: #36700A;
  }

  .clientel {
    display: flex;
    flex-wrap: wrap;
  }

  .clientel img {
    width: 100%;
  }

  .clientel li {
    list-style: none;
    width: 250px;
    text-align: center;
    /*border: #36700A 1px solid;*/
    background-color: #F0F0F0;
    /*padding: 0.5rem;*/
    margin: 0.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1rem;
    overflow: hidden;
  }
  .caption {
    padding: 0.5rem;
    /*font-weight: 700;*/
    color: gray;
    display: block;
  
  }

  .central {
    position: relative;
    top: 35%;
    font-weight: 700;
    align-items: center;
  
  }

  .contacts {
    text-align: center;
  }

  /* Footer styles */
  footer {
    text-align: center;
    font-size: small;
    padding: 1rem;
    background-color: #00283C;
    color: #fff; }