
.divvideo { 
display: flex;
    justify-content: center;
}

.divvideo iframe {
aspect-ratio: 16 / 9;
    width: 100% !important;
}

.services .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}
.services .box{
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.services .box:hover{
    transform: translateY(-10px);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}
.services .box img{
    max-width: 100%;
}
.services .box .content{
    padding: 20px;
}
.services .box .content h3{
    margin: 0;
}
.services .box .content p{
    margin: 10px 0 0;
    line-height: 1.5;
    color: #777;
}
.services .box .info{
    padding: 20px;
    border-top: 1px solid #E6E6E7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.services .box .info a{
    color: #0170bb;
    font-weight: 600;
}
.services .box .info i{
    color: #0170bb;
}

.description p{
    font-size: 22px;
}

.bg-primary-variant-2{
    background-color: rgba(1, 112, 187, 0.88);
}

.bg-img{
    background-image: url(../images/hero2.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mywidth{
    padding-left: 100px;
    width: 900px;
}

.vehicule p{
    font-size: 22px;
}
.vehicule h6{
    font-size: 30px;
}

a[href^="mailto:"]:hover{
  color: #333 !important;
}

.form-service{
  display: none;
}




.qualite {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    background-color: #f9f9f9;
  }
  .qualite .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
  }
  .qualite .box {
    background-color: white;
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
    counter-increment: services;
    transition: .3s;
    position: relative;
  }
  .qualite .box::before {
    content: "";
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    top: -3px;
    background-color: #0170bb;
    position: absolute;
    width: 0;
    transition: .3s;
  }
  .qualite .box:hover {
    transform: translateY(-10px);
  }
  .qualite .box:hover::before {
    width: 100%;
  }
  .qualite .box > h3 {
    text-align: center;
    margin: 20px 0 40px;
    font-size: 25px;
    color: #0170bb;
  }
  .qualite .box .info {
    padding: 15px;
    position: relative;
    background-color: #f9f9f9;
    text-align: right;
  }
  .qualite .box .info::before {
    content: "0" counter(services);
    position: absolute;
    background-color: #0170bb;
    color: white;
    left: 0;
    top: 0;
    height: 100%;
    width: 80px;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 15px;
  }
  .qualite .box .info::after {
    content: "";
    position: absolute;
    background-color: #d5d5d5;
    top: 0;
    left: 80px;
    width: 50px;
    height: calc(100% + 0.4px);
    transform: skewX(-30deg);
  }
  .qualite .box .info a {
    color: #0170bb;
  }




  .pourquoi {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
  }
  .pourquoi .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 991px) {
    .pourquoi .container {
      flex-direction: column;
    }
  }
  .pourquoi .image {
    max-width: 100%;
    margin-right: 100px;
  }
  @media (max-width: 991px) {
    .pourquoi .image {
      margin: 0 0 50px;
    }
  }
  .pourquoi .info .box {
    background-color: #f6f5f5;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    border: 2px solid white;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 767px) {
    .pourquoi .info .box {
      flex-direction: column;
      text-align: center;
    }
  }
  .pourquoi .info .box::before {
    content: "";
    left: 50%;
    top: 50%;
    position: absolute;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    background-color: #ededed;
    z-index: -1;
    transition: .3s;
  }
  .pourquoi .info .box:hover::before {
    width: 100%;
    height: 100%;
  }
  .pourquoi .info .box img {
    width: 64px;
    margin-right: 30px;
  }
  @media (max-width: 767px) {
    .pourquoi .info .box img {
      margin: 0 0 30px;
    }
  }
  .pourquoi .info .box h3 {
    margin: 0;
    font-size: 22px;
  }
  .pourquoi .info .box p {
    color: #777;
    line-height: 1.7;
    margin: 10px 0 0;
    font-size: 18px;
  }