/************************************************/
/* *

*/
/************************************************/
@media (max-width: 1024px) {
  /* Override Bootstrap columns to become full width at 1024px */
  .col-sm-6,
  .col-md-6,
  .col-lg-6 {
    width: 100% !important;
  }
}

@media (max-width: 5000px) {
  body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    overflow-x: hidden;
  }
  .notification {
    display: none;
  }
  .button-container {
    display: flex; /* Utilise un modèle de boîte flex */
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    height: 15vh; /* Ajuste la hauteur pour occuper toute la fenêtre */
  }

  .button-container {
    text-align: center;
    margin: 10px 0;
  }

  .logButtonSocial {
    position: relative;
    color: white;
    font-weight: 500;
    font-family: "Montserrat-SemiBold", sans-serif;
    border-radius: 22px;
    height: 40px;
    font-size: 1.1em;
    width: 67%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0 15px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation douce */
  }
  .logButton {
    position: relative;
    color: white;
    font-weight: 500;
    font-family: "Montserrat-SemiBold", sans-serif;
    border-radius: 22px;
    height: 40px;
    font-size: 1.1em;
    width: 67%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0 15px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation douce */
  }
  .mobilesocial {
    display: none;
  }
  /* Effet au survol */
  .logButton:hover {
    transform: translateY(-5px); /* Légère élévation */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Ombre douce */
  }
  .logButtonSocial img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
  }
  .logButton-google {
    background-color: #4f86ec;
    color: white;
  }

  .logButton-facebook {
    background-color: #3b5998;
    color: white;
  }

  .logButton .fa {
    font-size: 20px;
    margin-right: 10px;
  }
  .container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  h1 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
  }

  .form-wrapper {
    display: flex;
    gap: 50px;
    justify-content: space-between;
  }

  .form-section {
    flex: 1;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideIn 1s ease-in-out;
  }

  .form-section:first-child {
    border-left: 5px solid #41a2aa;
  }

  .form-section:last-child {
    border-right: 5px solid #f09e7a;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .form-section h2 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  input:focus {
    border-color: #41a2aa;
    outline: none;
    box-shadow: 0 0 8px rgba(65, 162, 170, 0.3);
  }

  .btn {
    width: 100%;
    padding: 12px;
    background-color: #f09e7a;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .btn:hover {
    background-color: #d87c5d;
    transform: translateY(-2px);
  }

  .btn:active {
    transform: translateY(0);
  }

  .error {
    color: #d9534f;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
  }

  .divider {
    height: 100%;
    width: 2px;
    background-color: #ddd;
  }

  .social-buttons {
    margin-top: 20px;
  }

  .social-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
  }

  .btn-google {
    background-color: #db4437;
  }

  .btn-facebook {
    background-color: #3b5998;
  }

  @media (max-width: 1300px) {
    .form-wrapper {
      flex-direction: column;
      gap: 20px;
    }

    .divider {
      display: none;
    }
  }
  .HeaderLogin {
    padding-top: 4.2%;
  }

  .contentParents {
    min-height: 100vh;
  }
  .homeparent {
    display: none;
  }
  .modal-backdrop {
    z-index: 100;
  }
  .modal-dialog {
    max-width: 50%;
    margin: 1.75rem auto;
  }
  .modal-content {
    border-radius: 0px;
  }
  .modal-header {
    border-bottom: 0px solid #e9ecef;
    padding-bottom: 0px;
  }
  .Inscription {
    display: block;
  }
  .contenuHeaderLoginAccompagnateur {
    padding-top: 9%;
    display: none;
  }
  .imageParent {
    width: 63px;
    height: 100px;
    cursor: pointer;
    margin-left: 13%;
  }
  .header {
    padding-top: 9%;
  }
  .titrelogo {
    font-size: 24px;
    font-family: Montserrat-Regular;
    color: #41a2aa;
    position: relative;
    left: 21px;
    padding-top: 47px;
    height: fit-content;
    cursor: pointer;
  }
  .title {
    font-family: Montserrat-Bold;
    font-size: 30px;
    color: black;
    padding-left: 1%;
    line-height: 1;
    display: flex;
  }
  .borderSou {
    border-bottom: 1px solid #000000ad;
    padding-bottom: 18px;
  }
  .circleCree {
    display: none;
  }
  .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #41a2aa;
    outline: 0;
    box-shadow: 0 0 0 2.2px #41a2aa7a;
  }
  .login-form {
    margin: auto;
    height: 400px;
    background: #ffffff;
    padding: 35px 90px;
    border-radius: 5%;
    width: 50%;
    font-family: Montserrat-Regular;
  }
  .Mp {
    font-family: Montserrat-Bold;
    color: #f09e7a;
    text-align: center;
    text-transform: uppercase;
    display: block;
    width: 100%;
    padding: 0;
    font-size: 21px;
  }
  .DetailsSejourAccom {
    display: none;
  }
  .HeaderDetailsAccompagnateur {
    display: none;
  }
  .logosejour {
    width: 80%;
    padding-top: 7px;
    padding-left: 19px;
  }
  .title {
    font-family: Montserrat-Bold;
    font-size: 29px;
    color: black;
    padding-left: 1%;
    display: flex;
  }
  .headerAccompagnateur2 {
    height: 109px;
  }
  .text {
    font-family: Montserrat-Regular;
    font-size: 15px;
    padding-top: 5px;
  }
  .borderSou {
    border-bottom: 1px solid #000000ad;
    padding-bottom: 18px;
  }
  /*.Space {
 padding-top: 4%;
 padding-left: 2px;
} */

  .splide__slide {
    position: relative; /* Nécessaire pour positionner le texte par rapport à l'image */
    overflow: hidden; /* Empêche l'image de dépasser en dehors du slider */
  }
  .slider-text {
    position: absolute;
    right: 5%; /* Positionnement à droite */
    text-align: right;
    color: #d87c5d; /* Changez la couleur du texte si nécessaire */

    padding: 20px;
    border-radius: 8px;
    max-width: 30%; /* Limitez la largeur du texte */
  }

  .slider-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .slider-text p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .namePRD .titleProdbienvenu {
    font-size: 30px;
    margin-bottom: 0;
    font-weight: 700;
  }

  .namePRD {
    padding-top: 30px;
  }
  .splide {
    width: 100%;
    margin: auto;
  }
  .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fait en sorte que l'image couvre toute la zone sans distorsion */
    object-position: center; /* Centrer l'image pour une meilleure composition */
    display: block;
  }
  .titleAutre {
    font-family: Montserrat-Regular;
    font-size: 1.6em;
    line-height: 80px;
    padding-left: 15px;
  }
  .ou-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 300px; /* Ajustez selon vos besoins */
    width: 50px;
    margin-top: 50px;
  }

  .ou-line {
    position: absolute;
    width: 2px;
    background-color: #555;
    height: 100%;
  }

  .ou-text {
    position: absolute;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
    background-color: #f9f9f9; /* Masque la ligne derrière */
    padding: 0 5px;
    text-align: center;
    line-height: 1;
  }
  .soutitle {
    font-family: Montserrat-Bold;
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    color: #333;
    margin-bottom: 30px;
  }
  .vertical {
    border: none;
    border-left: 2px solid#41a2aa;
    height: 100vh;
    width: 1px;
    margin: auto;
  }
  .fomru {
    padding-top: 9%;
    padding-right: 29%;
  }
  .fomru2 {
    padding-top: 5%;
    padding-right: 37%;
  }
  .Titlee {
    font-family: "Montserrat-SemiBold";
    color: #000;
    margin-bottom: 0px;
    font-size: 16px;
  }
  .Titlee2 {
    font-family: "Montserrat-Regular";
    color: #000;
    margin-bottom: 0px;
    font-size: 13px;
    line-height: 20px;
  }
  .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 3px);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #41a2aa;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-bottom: 12px;
    border-radius: 0px;
    padding-right: 40px; /* Space for the eye icon */
    box-sizing: border-box;
  }
  .SousBouton {
    display: none;
  }
  .circleModal {
    border-color: #f09e7a;
    background: #f09e7a;
    color: #fff !important;
    font-family: "Montserrat-SemiBold";
    border-radius: 22px;
    height: 35px;
    font-size: 13px;
    width: 25%;
    margin: auto;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    margin-top: 0px;
    transition: 0.5s;
    cursor: pointer;
  }

  .description {
    font-size: 15px;
    font-family: "Montserrat-Regular";
    padding-top: 0%;
    color: #f09e7a !important;
    cursor: pointer;
    margin-top: -5%;
    margin-left: 15%;
    width: 391px;
    padding: 0px;
  }
  .description2 {
    font-size: 15px;
    font-family: "Montserrat-SemiBold";
    padding-top: 2%;
    padding: 20px;
    padding-left: 0px;
    line-height: 19px;
  }
  .circle:hover {
    background-color: #41a2aa;
  }
  input[type="checkbox"] {
    position: relative;
    width: 58px;
    height: 26px;
    -webkit-appearance: none;
    background: #c6c6c6;
    outline: none;
    border-radius: 20px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    cursor: pointer;
  }
  input[type="checkbox"]::before {
    content: "";
    position: absolute;
    width: 27px;
    height: 26px;
    border-radius: 20px;
    top: 0;
    left: 0;
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
  }
  .sms {
    margin-right: 10%;
    margin-left: 5%;
  }
  .mail {
    margin-left: 5%;
  }
  input:checked[type="checkbox"] {
    background: #f09e7a;
  }
  input:checked[type="checkbox"]::before {
    left: 35px;
  }
}

@media (max-width: 1700px) {
  .titleAutre {
    font-size: 1.3em;
  }
}
@media (max-width: 1450px) {
  .circle {
    border-color: #f09e7a;
    background: #f09e7a;
    color: #fff !important;
    font-family: "Montserrat-SemiBold";
    border-radius: 22px;
    height: 26px;
    font-size: 12px;
    width: 52%;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    margin-top: 0px;
  }
}

@media (max-width: 1366px) {
  .text {
    font-family: Montserrat-Regular;
    font-size: 11px;
  }
  .title {
    font-family: Montserrat-Bold;
    font-size: 20px;
    color: black;
    padding-left: 2%;
  }
  .titleAutre {
    font-family: Montserrat-Regular;
    font-size: 1.1em;
    line-height: 30px;
    margin-top: 20px;
  }
  .soutitle {
    font-family: Montserrat-Bold;
    font-size: 13px;
    color: black;
    padding-top: 17px;
    line-height: 23px;
  }
  .description {
    font-size: 11px;
    font-family: "Montserrat-Regular";
    padding-top: 6%;
    color: #f09e7a !important;
  }
  .description2 {
    font-size: 11px;
    font-family: "Montserrat-SemiBold";
    padding-top: 2%;
    line-height: 19px;
  }
  .circle {
    border-color: #f09e7a;
    background: #f09e7a;
    color: #fff;
    font-family: "Montserrat-Semibold";
    border-radius: 22px;
    height: 26px;
    font-size: 12px;
    width: 50%;
    margin-top: 0px;
  }
  .titleFooter {
    font-family: Montserrat-Regular;
    font-size: 9px;
    color: #707070;
    padding-top: 14px;
    cursor: pointer;
  }

  .date-picker-wrapper .month-wrapper table {
    width: 143px !important;
    float: left;
  }
  .header {
    padding-top: 8%;
  }
}

@media (max-width: 1160px) {
  .circle {
    width: 63%;
  }
}

@media (max-width: 1100px) {
  .HeaderLogin {
    padding-top: 4%;
  }
  .header {
    padding-top: 11%;
  }
  .title {
    font-family: Montserrat-Bold;
    font-size: 19px;
    color: black;
    padding-left: 2%;
  }
  .circle {
    border-color: #f09e7a;
    background: #f09e7a;
    color: #fff;
    font-family: "Montserrat-SemiBold";
    border-radius: 22px;
    height: 35px;
    font-size: 13px;
    width: 60%;
    margin-top: 0px;
  }

  .lconeFooter {
    width: 38px;
    height: 33px;
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 0%;
  }
  .titleaide {
    display: inline-grid;
    padding-left: 0% !important;
    margin-top: -6%;
  }
  .aide {
    margin-left: 0px;
    margin-top: 9px;
    color: black !important;
    font-family: Montserrat-bold !important;
  }
  .DivFooter {
    margin-left: -1%;
  }
}

@media (max-width: 990px) {
  .topHeader-area,
  .nav > .nav-btn,
  .nav-title {
    display: none;
  }
  .headerAccompagnateur {
    display: block;
  }
  .contenuHeaderLoginAccompagnateur {
    display: flex;
    padding-top: 0%;
  }
  .header {
    padding-top: 2%;
  }
  .col-12 {
    display: none;
  }
  .DetailsSejourAccom {
    display: none;
  }
  .HeaderDetailsAccompagnateur {
    display: none;
  }
  .logosejour {
    width: 97%;
    padding-top: 7px;
    padding-left: 17px;
    margin-left: -10px;
  }
  .title {
    font-family: Montserrat-Bold;
    font-size: 17px;
    color: black;
    margin-left: 8px;
  }
  .headerAccompagnateur2 {
    height: 102px;
  }
  .text {
    font-family: Montserrat-Regular;
    font-size: 12px;
    padding-top: 5px;
  }
  .borderSou {
    border-bottom: 1px solid #000000ad;
    padding-bottom: 18px;
  }
  .Space {
    padding-top: 4%;
    padding-left: 2px;
  }
  .titleAutre {
    font-family: Montserrat-Regular;
    font-size: 1.1em;
    line-height: 31px;
    padding-left: 15px;
  }
  .soutitle {
    font-family: Montserrat-Bold;
    font-size: 0.8em;
    color: black;
    padding-top: 0px;
    line-height: 23px;
    margin-top: 7%;
  }
  .vertical {
    border: none;
    border-left: 2px solid#41a2aa;
    height: 80vh;
    width: 1px;
  }
  .fomru {
    padding-top: 9%;
    padding-right: 0%;
  }
  .fomru2 {
    padding-top: 5%;
    padding-right: 0%;
  }
  .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 3px);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #41a2aa;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-bottom: 12px;
    border-radius: 0px;
  }
  .circle {
    border-color: #f09e7a;
    background: #f09e7a;
    color: #fff;
    font-family: "Montserrat-SemiBold";
    border-radius: 22px;
    height: 35px;
    font-size: 13px;
    width: 85%;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    margin-top: 0px;
  }
  .description {
    font-size: 15px;
    font-family: "Montserrat-Regular";
    padding-top: 6%;
    color: #f09e7a !important;
    cursor: pointer;
  }
  .description2 {
    font-size: 0.67em;
    font-family: "Montserrat-SemiBold";
    padding-top: 2%;
    line-height: 19px;
  }

  label {
    display: inline-block;
    margin-bottom: 0.5rem;
    margin-top: 34%;
  }
  .imageParent {
    width: 63px;
    height: 100px;
    cursor: pointer;
    margin-left: 2%;
    margin-right: 2%;
  }
  .titrelogo {
    font-size: 24px;
    font-family: Montserrat-Regular;
    color: #41a2aa;
    position: relative;
    left: 18px;
    padding-top: 55px;
    height: fit-content;
    cursor: pointer;
  }
  .imageLogo2 {
    width: 100px;
  }
  .imgcroix {
    width: 25px;
  }
}

@media (max-width: 600px) {
  .contenuHeaderLoginAccompagnateur {
    padding-top: 0%;
  }
  .button-container {
    text-align: center;
    margin: 17px 0;
    height: 7vh;
  }
  .vertical {
    border: none;
    border-left: 2px solid#41a2aa;
    height: 100vh;
    width: 1px;
    margin: inherit;
  }
  .DetailsSejourAccom {
    display: none;
  }
  .HeaderDetailsAccompagnateur {
    display: none;
  }
  .logosejour {
    width: 97%;
    padding-top: 7px;
    padding-left: 17px;
    margin-left: -10px;
  }
  .title {
    font-family: Montserrat-Bold;
    font-size: 18px;
    color: black;
    padding-left: 3%;
    margin-left: 0px;
  }
  .headerAccompagnateur2 {
    height: 102px;
  }
  .text {
    font-family: Montserrat-Regular;
    font-size: 12px;
    padding-top: 5px;
  }
  .borderSou {
    border-bottom: 1px solid #000000ad;
    padding-bottom: 18px;
    width: 100%;
  }
  .Space {
    padding-top: 4%;
    padding-left: 2px;
  }
  .titleAutre {
    font-family: Montserrat-Regular;
    font-size: 20px;
    line-height: 29px;
    padding-left: 15px;
  }
  .soutitle {
    font-family: Montserrat-Bold;
    font-size: 1.5em;
    padding-top: 0px;
    line-height: 23px;
  }
  .vertical {
    border: none;
    border-left: 2px solid#41a2aa;
    height: 80vh;
    width: 1px;
  }
  .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 3px);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #41a2aa;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-bottom: 12px;
    border-radius: 0px;
  }
  .circle {
    border-color: #f09e7a;
    background: #f09e7a;
    color: #fff;
    font-family: "Montserrat-SemiBold";
    border-radius: 22px;
    height: 35px;
    font-size: 13px;
    width: 53%;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    margin-top: 0px;
    margin-left: 0px;
  }
  .description {
    font-size: 15px;
    font-family: "Montserrat-Regular";
    padding-top: 6%;
    color: #f09e7a !important;
    cursor: pointer;
  }
  .description2 {
    font-size: 13px;
    font-family: "Montserrat-SemiBold";
    padding-top: 2%;
    line-height: 19px;
  }

  .imageParent {
    width: 63px;
    height: 100px;
    cursor: pointer;
    margin-left: 5%;
    margin-right: -1%;
  }
}

@media (max-width: 600px) {
  .logButtonSocial {
    font-size: 0.8em;
  }
  .mobilesocial {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .circle {
    border-color: #f09e7a;
    background: #f09e7a;
    color: #fff;
    font-family: "Montserrat-SemiBold";
    border-radius: 22px;
    height: 35px;
    font-size: 13px;
    width: 53%;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    margin-top: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 576px) {
  .vertical {
    display: none;
  }
  .ou-container {
    display: none;
  }
  .circleCree {
    border: 1px solid #f09e7a;
    background-color: #f09e7a;
    color: white;
    align-self: center;
    font-family: "Montserrat-SemiBold";
    border-radius: 22px;
    height: 30px;
    font-size: 13px;
    width: 71%;
    display: block;
    margin-left: 13%;
    margin-bottom: 25px;
    cursor: pointer;
  }
  .connexion {
    display: none;
  }
  .circleCree:hover {
    border-color: #41a2aa;
    color: #41a2aa;
  }
}

@media (max-width: 450px) {
  .header {
    padding-top: 8%;
  }
  .titrelogo {
    font-size: 22px;
    font-family: Montserrat-Regular;
    color: #41a2aa;
    position: relative;
    left: 18px;
    padding-top: 50px;
    height: fit-content;
    cursor: pointer;
  }
  .imageParent {
    width: 58px;
    height: 100px;
    cursor: pointer;
    margin-left: 4%;
    margin-right: -1%;
  }
}

.field-icon {
  float: right;
  margin-top: -35px;
  position: relative;
  z-index: 2;
  margin-right: 10px;
}

.container {
  padding-top: 50px;
  margin: auto;
}
