.center h1 {
  font-family: sectionInfoFont;
  position: relative;
  padding-top: 10px;
}

.center {
  text-align: center;
  display: block
}

#imageContainer {
    height: 350px;
    background-image: url("./../ressources/utilitairesCover.jpg"), url("./../ressources/utilitairesCover.webp");
    background-size: cover;
    background-repeat: no-repeat, repeat;
    background-position: 50% 50%, 0 0;
}

#imageContainer h1 {
    font-family: sectionInfoFont;
    font-size: 40px;
    text-align: center;
    position: absolute;
    top: 45%;
    left: 25%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 650px) {
  #imageContainer h1 {
    top: 40%;
    left: 35%;
  }
}

/* Services Section */
.services {
    margin: 10px 20px 10px 20px;
  }
  
  .services .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .services .column {
    float: left;
    width: 33.33%;
    padding: 5px;
  }
  
  .services a {
    position: relative;
    text-align: center;
    color: white;
  }
  
  .services h2 {
    font-family: sectionInfoFont;
  }
  
  .services img:hover {
    -webkit-filter: blur(2px);
    filter: blur(2px);
  }
  
  .services .overlay {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .services .overlay h2 {
    color: white;
    font: bold;
    font-weight: 300px;
  }
  
  @media screen and (max-width: 500px) {
    .services .column {
      width: 100%;
    }
  }
  /* END Services Section */

  /*Calculatrice*/

  .calculatrice {
      width: 75%;
      padding-top: 10px;
      padding-bottom: 10px;
  }

  .calculatrice .content {
      position: relative;
      left: 12.5%;
  }

  /* End Calculatrice */

/* Specialistes */
/* Three columns side by side */
.specialistes {
    padding-left: 20px;
    padding-right: 20px;
}

.type {
  padding-top: 20px;
}

.type h3 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 30px;
}

.row {
  display: flex; /* equal height of the children */
}

.column {
    float: left;
    width: 25%;
    margin-bottom: 16px;
    padding: 0 8px;
  }

.card {
  height: 100%;
}
  
  /* Display the columns below each other instead of side by side on small screens */
  @media screen and (max-width: 650px) {
    .column {
      width: 100%;
      display: block;
    }
  }
  
  /* Add some shadows to create a card effect */
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }
  
  /* Some left and right padding inside the container */
  .container {
    padding: 10px 16px;
  }
  
  .title {
    color: grey;
  }
  /* End Specialistes */