/* Custom Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
}

.navbar {
    background-color: #078CD8 !important;
    text-align: center;
}

.hero-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-text {
    background-color: rgba(62, 96, 160, 0.7);
    padding: 1rem;
    border-radius: 10px;
}

.parallax-section {
    padding: 1rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.parallax-section h3 {
    color: #078CD8;
    font-weight: bold;
}

/* Parallax Effect */
.parallax-section {
    transform: translateY(0);
    transition: transform 0.3s ease-out;
    box-shadow: 3px 3px red inset, 1em 0 0.9em olive;

}

.box_border
{
    border: 1px solid lightblue;
    padding: 20px;
}

.grid_items
{
    display: grid;
    grid-template-columns: 33% 33% 33%;
    gap: 0.3rem;
}


.flex-basis {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto;
        grid-template-columns: auto auto auto;
    gap: 1.5rem;
    padding-top: 25px;
  }
  
  .flex-basis img {
    width: 100%;
  }
  
  .flex-basis .article {
    padding: 10px 10px;
  }

  @media (max-width: 800px) {
    .flex-basis {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: auto auto;
          grid-template-columns: auto auto ;
      gap: .5rem;
      padding-top: 12px;
    }
    .flex-basis .article {
      padding: 2px;
    }
    .flex-basis img {
      max-width: 110px;
      padding-bottom: auto;
      max-height: 80px;
    }
  }
  
  @media (max-width: 600px) {
    .flex-basis {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: auto ;
          grid-template-columns: auto ;
      gap: .5rem;
      padding-top: 12px;
    }
    .flex-basis .article {
      padding: 2px;
    }
    .flex-basis img {
      max-width: 110px;
      padding-bottom: auto;
      max-height: 80px;
    }
  }

  
.presse {
    -webkit-box-shadow: 10px 10px 20px #00000029;
            box-shadow: 10px 10px 20px #00000029;
    background-color: #fff;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 320px;
            flex: 0 1 320px;
  }
  
  .presse img {
    width: 100%;
    max-height: 180px;
  }
  
  .presse .small-img img {
    max-width: 120px;
  }
  
  .row--presse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .info-box {
    padding: 10px 1px;
  }

  .info-box {
    padding: 40px 40px;
  }

  #scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
}
#scrollTopBtn:hover {
    background-color: #0056b3;
}