* {
    font-family: "Poppins", sans-serif;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.hidden {
    display: none;
}

.form-contact {
    padding: 30px !important;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.form-control,
.form-select {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    width: 80%;
    /* Ajouté pour que le select ait le même width */
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.btn {
    width: 80%;
    /* Réduire la largeur à 80% */
    padding: 8px;
    font-size: 16px;
    background-color: #007bff;
    border: none;
    color: white;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
    /* Couleur au survol */
}

.caption-banner {
    position: relative;
    text-align: center;
    margin-top: -60px;
}
.form-control,.form-select{
    margin-left: 2rem;
}
.number-circle {
    border: solid;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    /* background-color: #007bff; */
    color: #007bff;
    text-align: center;
    font-size: 20px;
    margin-right: 15px;
    font-family: fantasy;
  }
  .number-circle1 {
    border: solid;
    display: inline-block;
    width: 100px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    /* background-color: #007bff; */
    color: #007bff;
    text-align: center;
    font-size: 20px;
    margin-right: 15px;
    font-family: fantasy;
  }
  .text-content {
    display: flex;
    align-items: flex-start; /* Aligner le cercle avec le début du texte */
  }
  .mon-image{
    border-radius: 50px;
  }
  .mydiv{
    height: 450px;
  }
  .myform{
    position: absolute;
    bottom: -30rem;
  }
  p{
      font-family: inherit;
      color: gray;
  }
  @media only screen and (max-width: 991px) {
    .mydiv{
        display: none;
        /* height: 450px; */
      }
      .myform{
        position: static;
        /* bottom: -30rem; */
      }
  }