.container {
  text-align: justify;
}
.animated.fadeInUp {
  text-align: justify;
  font-size: 16px;
  line-height: 1.5;
  margin: 20px;
  padding: 10px;

}
.features {
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 20px;
  padding: 240px;
}

.features ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.features li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-weight: bold; /* Ajout pour rendre le texte en gras */
}

.features li::before {
  content: '\2714 '; /* Symbole de coche (✔) suivi d'un espace */
  /* content: '\2713 '; // Symbole de validation (✓) suivi d'un espace */
  position: absolute;
  left: 0;
  top: 0;
}


.container-f {
    max-width: 800px;
    margin: 23px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .pictogram-container {
    display: flex;
    align-items: center;
    margin-right: 30px;
  }
  
  .pictogram {
    font-size: 24px;
    margin-right: 40px;
  }
  
  .feature-title {
    font-size: 18px;
  }
  
  .btn-programmes {
    display: inline-block;
    padding: 24px 60px;
    background-color: #253c34;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    position: fixed;
    overflow: hidden;
    margin-top: 30px;
  }
  
  .btn-programmes:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
  }
  
  .btn-programmes:hover:before {
    width: 200px;
    height: 200px;
    opacity: 0.2;
    transition: all 0.3s ease;
  }
  
  .btn-programmes:hover {
    background-color: #dfa249;
    transition: all 0.3s ease;
  }

      .programme-immobilier {
        background-color: #f7f7f7;
        overflow: hidden;
      }
  
      .container-x {
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 0;
      }
  
      .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }
  
      .col-md-6 {
        flex-basis: 50%;
        max-width: 50%;
        padding: 0 15px;
      }
  
      .content h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 30px;
        margin-left: 27px;
      }
  
      .content p {
        font-size: 20px;
        font-weight: 100;
        line-height: 1.8;
        margin-bottom: 30px;
      }
  
      .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        margin-top: 5px;
      }
  
      .animated {
        animation-duration: 1s;
        animation-fill-mode: both;
      }
  
      .fadeInLeft {
        animation-name: fadeInLeft;
      }
  
      .fadeInUp {
        animation-name: fadeInUp;
      }
  
      .fadeInRight {
        animation-name: fadeInRight;
      }
  
      /* Add hover effect for image */
      .image img:hover {
        transform: scale(1.05);
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
      }

  .animated-gradient-text {
    background-image: linear-gradient(45deg, #ff3d00, #ffab40);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientAnimation 3s ease-in-out infinite;
    
  }
  
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .animated {
    opacity: 0;
  }
  
  .animated.fadeInUp {
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-name: fadeInUp;
    animation-fill-mode: forwards;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .frame {
    border: 2px solid black;
    padding: 20px;
    background-color: #f5f5f5;
    color: #333;
    margin-top: 160px;
  }
  
  .frame-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .pictogram-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .pictogram {
    font-size: 24px;
    margin-right: 10px;
  }
  .enlarge-image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
  }

  .enlarge-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .enlarge-image-container img {
    max-width: 100%;
    max-height: calc(85vh - 80px);
    object-fit: contain;
    margin-bottom: 20px;
  }

  .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-image: url("path/to/close.svg");
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
  }

  .swiper-slide {
    width: 100%;
  }

  .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .close-button:hover {
    background-color: #333;
    color: #fff;
  }

  .image-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 20px;
  }

  .image-list img {
    max-width: 100px;
    max-height: 100px;
    margin: 5px;
    cursor: pointer;
  }

  .image-list img:hover {
    opacity: 0.7;
  }

  .frame {
    display: inline-block;
    padding: 10px;
    border: 4px solid #2b423b;
    border-radius: 10px;
    background-color: #fff;
    color: #016450;
  }
  .frame:hover {
    background-color: #dfa24a;
    color: #fff;
  }

  .programmes-section {
    min-height: 200px;
    background-image: url('assets/images/about/24.png');
    background-position: center center;
    background-size: cover;
  }

  .programmes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 0%);
  }
  .carousel-wrap {
    max-width: 1100px; /* Example value, adjust as needed */
    margin: 0 auto; /* Center the carousel on the page */
  }

  .carousel-container {
    position: relative;
    padding: 20px;
    width: 100%;
    overflow: hidden;
  }

  .carousel {
    display: flex;
    width: 100%;
    transition: transform 0.5s linear infinite; /* Updated transition property */
    transform: translateX(0);
    animation: carousel-animation 33s linear infinite; /* Added animation */
  }

  .carousel-item {
    flex: 0 0 auto;
    margin-right: 20px;
  }

  .prev-btn,
  .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #dfa249;
    border-radius: 50%;
    z-index: 1; /* To ensure buttons are displayed above the carousel */
    cursor: pointer;
  }

  .prev-btn {
    left: 0;
  }

  .next-btn {
    right: 0;
  }

  .prev-btn .arrow,
.next-btn .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(-45deg);
  margin-right: 6px;
}

.next-btn .arrow {
  margin-left: 6px;
  margin-right: 0;
  transform: rotate(135deg);
}

  /* Animation keyframes */
  @keyframes carousel-animation {
    0% {
      transform: translateX(0);
    }
    33.33% {
      transform: translateX(-33.33%);
    }
    66.67% {
      transform: translateX(-66.67%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  /* Apply a responsive width to the container */
.container {
  width: 100%;
  max-width: 1200px; /* Adjust the maximum width as per your design */
  margin: 0 auto; /* Center the container horizontally */
}

/* Apply responsive styles to the body */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif; /* Set a font family for the body */
  font-size: 16px; /* Adjust the base font size as per your design */
  line-height: 1.5; /* Adjust the line height as per your design */
  background-color: #f9f9f9; /* Set a background color for the body */
}

/* Add media queries for different screen sizes */
@media (max-width: 767px) {
  /* Styles for screens smaller than 768px */
  body {
    font-size: 14px; /* Adjust font size for smaller screens */
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  /* Styles for screens between 768px and 1199px */
  .container {
    padding: 10px; /* Adjust container padding for smaller screens */
  }
}

@media (max-width: 576px) {
  /* Styles for screens smaller than 577px */
  .container {
    max-width: 100%; /* Adjust container width for smaller screens */
  }
}
 .pictogram-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .pictogram-container .feature-title {
    margin-bottom: 5px;
  }

  .pictogram-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .pictogram-container .subtitle {
    font-size: 14px;
    color: #999;
    margin-top: 14px;
    margin-left: 60px;
  }

  .pictogram-container {
    position: relative;
  }
  
  .pictogram {
    /* Add your styles for the pictogram image */
  }
  
  .title {
    position: static;
    top: 0;
    left: 0;
    color: #000;
    font-weight: bold;
  }
  
  .subtitle {
    position: absolute;
    top: 20px; /* Adjust the positioning as per your design */
    left: 0;
    color: #000;
  }
  
  .subtitle a {
    text-decoration: none;
    color: #000;
  }
  
  
.frame0 {
  position: relative;
  background-color: #bfbfbf;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.frame-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.offer-frame {
  position: relative;
  background-color: #016450;
  border: 1px solid #ccc;
  border-radius: 60px;
  padding: 20px;
  margin-top: 20px;
}

.offer-text {
  -webkit-text-fill-color: #f5f5f5;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.offer-container {
  position: relative;
  margin-bottom: 20px;
}

.offer-arrow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.offer-text {
  font-weight: bold;
  text-align: center;
  margin: 0;
}
