* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: auto;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 15px 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.header-left {
    display: flex;
    align-items: center;
}
.header-left img {
    height: 80px;
    margin-right: 30px;
}
.header-left nav a {
    margin: 0 15px;
    font-weight: 500;
    color: #05AFF2;
    text-decoration: none;
}
.header-left nav a:hover {
    color: #8CBF3F;
}

.slider-container {
    position: relative;
    height: 90vh;
    overflow: hidden;
}
.slider {
    display: flex;
    transition: transform 1s ease-in-out;
}
.slide {
    min-width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
}
.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
}
.btn-main {
    display: inline-block;
    background: #05AFF2;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
}
.slider-controls {
    position: absolute;
    width: 100%;
  
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.slider-controls span {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    color: #05AFF2;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.slider-controls span:hover {
    background: #05AFF2;
    color: white;
    transform: scale(1.1);
}

.realisation {
    display: flex;
    align-items: center;
    margin: 40px 0;
}
.realisation.reverse {
    flex-direction: row-reverse;
}
.real-img img {
    width: 500px;
    border-radius: 8px;
}
.real-text {
    flex: 1;
    padding: 20px;
}
.real-text h3 {
    color: #05AFF2;
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.avis-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}
.avis-card {
    background: #f0f0f0;
    padding: 20px;
    min-width: 250px;
    border-radius: 8px;
    text-align: center;
}
.avis-card img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 10px;
}

form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}
button {
    background: #05AFF2;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
}

footer {
    background: #05AFF2;
    color: white;
    padding: 40px 20px;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: none;
    margin: 0;
}

.footer-column {
    flex: 1 1 250px;
    text-align: center;
}

.footer-column h4 {
  text-align: center;
    margin-bottom: 25px;
    font-size: 1.2rem;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-icon {
  width: 30px;
  flex: 0 0 auto;
}

.footer-icon-social {
  width: 55px;
  transition: transform 0.3s;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-icon-social:hover {
    transform: scale(1.2);
}

.footer-map {
    width: 100%;
    border-radius: 5px;
    min-height: 200px;
}

.pre-footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.real-img img, .card, .gallery img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.real-img img:hover, .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.avis-large {
    max-width: 800px;
    margin: 40px auto;
    background: #f0f0f0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.avis-large .avis-image {
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}
.avis-large .avis-text {
    font-size: 18px;
    font-style: italic;
    color: #333;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: auto;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 15px 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.header-left {
    display: flex;
    align-items: center;
}
.header-left img {
    height: 80px;
    margin-right: 30px;
}
.header-left nav a {
    margin: 0 15px;
    font-weight: 500;
    color: #05AFF2;
    text-decoration: none;
}
.header-left nav a:hover {
    color: #8CBF3F;
}

.slider-container {
    position: relative;
    height: 90vh;
    overflow: hidden;
}
.slider {
    display: flex;
    transition: transform 1s ease-in-out;
}
.slide {
    min-width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
}
.slider-content {
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
}
.btn-main {
    display: inline-block;
    background: #05AFF2;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;

}
.btn-main:hover {
    cursor: pointer;
    background: #005f91;
}

.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.slider-controls span {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    color: #05AFF2;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.slider-controls span:hover {
    background: #05AFF2;
    color: white;
    transform: scale(1.1);
}

.realisation {
    display: flex;
    align-items: center;
    margin: 40px 0;
}
.realisation.reverse {
    flex-direction: row-reverse;
}
.real-img img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.real-text {
    flex: 1;
    padding: 20px;
}
.real-text h3 {
    color: #05AFF2;
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.avis-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}
.avis-card {
    background: #f0f0f0;
    padding: 20px;
    min-width: 250px;
    border-radius: 8px;
    text-align: center;
}
.avis-card img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 10px;
}

form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}
button {
    background: #05AFF2;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
}

.real-img img, .card, .gallery img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.real-img img:hover, .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.avis-large {
    max-width: 800px;
    margin: 40px auto;
    background: #f0f0f0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    position: relative;
}

.avis-large .avis-image {
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.avis-large .avis-text {
    font-size: 18px;
    font-style: italic;
    color: #333;
}

.avis-prev, .avis-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.avis-prev:hover, .avis-next:hover {
    background: black;
    color: white;
}

.avis-prev {
    left: 10px;
}

.avis-next {
    right: 10px;
}

.assoc-prev, .assoc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.assoc-prev:hover, .assoc-next:hover {
    background: black;
    color: white;
}

.assoc-prev {
    left: 10px;
}

.assoc-next {
    right: 10px;
}

.carte-maroc {
    width: 20%;
    height: auto;
    border-radius: 20%;
    object-fit: cover;
    display: block;
}

.video-banner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 580px;
    padding-top: 20px;
}

.video-banner video {
    max-width: 1000px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    display: block;
}


.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    color: #0077b6;
    margin-bottom: 15px;
}

.services-conclusion {
    margin-top: 30px;
    background-color: #f0f9ff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #224459;
}

.services-intro-adapted {
    margin-bottom: 30px;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #224459;
    background-color: #f0f9ff;
}

.services-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #05AFF2;
    margin-bottom: 20px;
}

.services-subtitle {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #05AFF2;
    margin-bottom: 20px;
}

.services-intro-adapted ul {
    text-align: left;
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.badge {
    background-color: #e0f7fa;
    border-radius: 20px;
    padding: 25px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.badge:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.badge-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.badge-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #224459;
}

.badge-list {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    font-size: 0.95rem;
    color: black;
}

.tool-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.tool {
    background-color: #e0f7fa;
    border-radius: 20px;
    padding: 25px;
    width: 250px;
    text-align: center;
}

.tool:hover {

}

.realisations-container {
    border: 0.5px solid #224459;
    border-radius: 15px;
    padding: 30px;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: #224459;
    margin-bottom: 25px;
}

.realisation-gallery {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.realisation-gallery .real-img {
    flex: 1 1 calc(25% - 15px);
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.realisation-gallery .real-img img {
    width: 300px;
    height: 300px;
    display: block;
    transition: transform 0.3s ease;
}

.realisation-gallery .real-img:hover img {
    transform: scale(1.1);
}

.realisation-gallery .real-img:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: #05AFF2;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s, background-color 0.2s;
}

#back-to-top:hover {
    background-color: #005f91;
    transform: translateY(-3px);
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-right: 15px;
  position: relative;
  right: 15px;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-left nav {
  display: flex;
  gap: 15px;
}

.contact-form {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #05AFF2;
    font-size: 1.8rem;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #05AFF2;
    box-shadow: 0 0 6px rgba(0, 123, 189, 0.4);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-main {
    display: block;
    width: 100%;
    padding: 12px;
    background: #05AFF2;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form .btn-main:hover {
    background: #005f91;
}

.lightbox {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.associates-slider-container {
  position: relative;
  perspective: 1000px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.associates-slider {
  display: flex;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.associate-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  width: 300px;
  margin: 0 10px;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.associate-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.associate-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.associate-role {
  font-size: 0.9em;
  color: #555;
}

.associates-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

.associates-slider-btn.left {
  left: -40px;
}

.associates-slider-btn.right {
  right: -40px;
}

.associate-card.hidden {
  opacity: 0.3;
  transform: scale(0.8) rotateY(30deg);
}

.associate-card.center {
  transform: scale(1) rotateY(0deg);
  opacity: 1;
}

.space-horizontal {
    display: inline-block !important;
    width: 100px !important;
}

#first-mob-title {
max-width: 900px;
position: relative;
left: 50%;
transform: translateX(-50%);
width: 120vw;
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
color: white;
padding: 10px 20px;
border-radius: 5px;
}

@media (max-width: 768px) {

  .space-horizontal {
      display: inline-block !important;
      width: 100px !important;
  }

  .slider-container .slider-content h1 {
      font-size: 0.9rem !important;
      max-width:110% !important;
      position: relative !important;
      left: 50%; transform: translateX(-50%) !important;
      width: 135vw !important;
      text-align: center !important;
  }

  .slider-content {
      position: absolute;
      top: 75%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: black;
  }

    html, body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    .services-title {
        text-align: center;
        font-size: 1.4rem;
        font-weight: 700;
        color: #05AFF2;
        margin-bottom: 20px;
    }

    .header-left {
      justify-content: space-between;
    }

    .burger {
      display: block;
      z-index: 999;
      color:#05AFF2;

    }

    .header-left nav {
      position: fixed;
      top: 0;
      left: -100%;
      height: 100vh;
      width: 200px;
      background: white;
      flex-direction: column;
      padding: 50px 20px;
      gap: 20px;
      transition: left 0.3s ease;
    }

    .header-left nav a {
      color: #05AFF2;
      text-decoration: none;
      font-size: 18px;
    }

    .header-left:active nav a {
      color: #8CBF3F;
      text-decoration: none;
      font-size: 18px;
    }

    .header-left nav.open {
      left: 0;
    }

    .logo {
    width: 550px;
    height: 150px;
    right: 175px;
    position: relative;
    }

    .slider-container .slider-content {
        padding: 20px;
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .slider-container .slider-content h1 {
        font-size: 1.6rem;
    }

    .slider-container .slider-content p {
        font-size: 1rem;
    }

    .btn-main {
        padding: 10px 25px;
        font-size: 1rem;
        width: 270px;
        top:0%;
        position: relative;;
    }

    .badge-container {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 90%;
        margin-bottom: 20px;
    }

    .badge-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .bubbles-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bubbles-container .bubble {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .rectangle {
        pointer-events: none;
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .realisation-gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }

    .real-img img {
        width: 100%;
        height: auto;
        border: none;
        display: block;
        margin: 0 auto;
        pointer-events: auto;
    }

    .video-banner video {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 10px;
    }

    .contact-form {
        width: 95%;
        padding: 10px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        width: 100%;
        font-size: 0.9rem;
        font-family: 'Poppins', sans-serif;
    }

    .avis-large {
        width: 95%;
        overflow: hidden;
    }

    .badge {
      pointer-events: none !important;
    }

    .video-banner {
      height: 300px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding-top: 20px;
    }

    .realisations-container{
      border: none !important;
    }

    #back-to-top {
        display: none !important;
    }
    .controls {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .tool-group {
      width: 50%;
      text-align: center;
    }

    .tool-group select {
      text-align: center;
      width: 20%;
      padding: 10px 40px 10px 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      outline: none;
      font-size: 1rem;
      background-color: #fff;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      appearance: none;
      box-sizing: border-box;
    }

    #preview {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .associates-slider {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
    }
    .associate-card {
      min-width: 80%;
      margin: 0 10px;
      flex: 0 0 auto;
      transform: none !important;
      opacity: 1 !important;
    }
    .associate-card.hidden,
    .associate-card.center {
      transform: none !important;
      opacity: 1 !important;
    }
    .associates-slider-container {
      justify-content: flex-start;
      padding: 0 10px;
    }


}
