/******************** A Propos ***************************/

/* 
.swiper,
.swiper-wrapper,
.swiper-slide {
    height: 50vh;
} */

h1 {
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 600;
}

@media (max-width: 1096px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 10px;
  }

  .underline {
    display: none;
  }

  /* .swiper, */
  /* .swiper-wrapper,
  .swiper-slide {
    height: 60vh;
  } */
  h1 {
    font-size: 40px;
    /* Ajustement pour mobile */
  }

  h1 span {
    display: inline;
  }

  p {
    font-size: 16px;
    /* Ajustement pour mobile */
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    /* Encore plus petit sur téléphone */
  }

  p {
    font-size: 14px;
    /* Réduction du texte */
    margin: 0 0 30px;
  }
}

/* Sur petits écrans (mobile portrait) */
@media (max-width: 480px) {
  .hero-content {
    gap: 20px;
    padding: 0 px;
    width: 100%;
  }

  h1 {
    font-size: 24px;
    /* Taille encore plus petite sur très petit écran */
  }

  h1 span {
    display: inline;
  }

  p {
    font-size: 12px;
    margin: 0 0 20px;
  }

  .buttons .btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .text-content {
    width: 100%;
    text-align: center;
  }
}

/****************** section 1 ****************************/

#section1 {
  height: 400px;
  width: 100%;
  position: relative;

  background-image: url("../images/about/about.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.small_underline {
  height: 5px;
  width: 200px;
  background: var(--clr-orange);
  margin-bottom: 5px;
  /* Secondary color */
}

.second-underline {
  height: 5px;
  width: 20px;
  background: var(--clr-orange);
  margin-bottom: 5px;
  /* Secondary color */
}

.blue_underline {
  height: 5px;
  width: 20px;
  background: var(--clr-blue-2);
  margin-bottom: 5px;
  /* Secondary color */
}

#section1>div:nth-child(2) {
  display: flex;
  color: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 10;
  position: relative;
  text-align: center;
}

#section1>div:nth-child(2)>p {
  font-weight: bold;
  font-size: 0.8rem;
}

#section1>div:nth-child(2)>div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: bold;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/****************** end section 1 ****************************/

/****************** section 2 ****************************/

#section2 {
  display: grid;
  grid-template-columns: 40% 60%;
  height: auto;
  background-image: url("../images/about/globej\ 1.png");
  background-repeat: no-repeat;
  padding-bottom: 50px;

  /* background-color: aqua; */
}

#section2>div:nth-child(1) {
  width: 100%;
  height: 100%;
}

.image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  place-items: center;
  justify-content: center;
  text-align: justify;
}

.po {
  font-weight: 300;
  font-family: var(--primary);
}

#section2>div:nth-child(1)>img {
  object-fit: cover;
  display: flex;
  height: 100%;
  width: 78%;
  margin: auto;
  align-items: center;
  justify-content: center;
}

#section2>div:nth-child(2) {
  padding-top: 30px;
  width: 100%;
  height: fit-content;
}

#section2>div:nth-child(2)>h1 {
  font-size: 40px;
  background: var(--clr-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 500;
  padding-bottom: 20px;
}

.line-combo {
  display: flex;
  gap: 5px;
  margin-top: -40px;
  margin-bottom: 30px;
}

#section2>div:nth-child(2)>div:nth-child(3) {
  width: 80%;
}

#section2>div:nth-child(2)>div:nth-child(3)>p {
  word-spacing: 5px;
  max-width: 1200px;
  text-align: justify;
  font-size: 18px;
  font-weight: 400;

  line-height: 1.6;
}

#section2>div:nth-child(2)>div:nth-child(3)>div>button {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 1024px) {
  #section2 {
    grid-template-columns: 1fr;
  }

  #section2>div:nth-child(1) {
    display: none;
  }

  #section2>div:nth-child(2) {
    grid-column: 1;
    justify-items: center;
    text-align: center;
  }

  #section2>div:nth-child(2)>div:nth-child(3) {
    width: 80%;
  }

  .buttons {
    display: flex;
    justify-content: center;
  }
}

/****************** end section 2 ****************************/

/******************  section 3 ****************************/

#section3 {
  padding-top: 50px;
  height: auto;
  /* background-color: aquamarine; */
}

#section3 h1 {
  text-align: center;
  font-size: 40px;
  background: var(--clr-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 500;
  padding-bottom: 20px;
}

#section3 h1+p {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding-bottom: 30px;

  font-size: 18px;
  font-weight: 400;

  line-height: 1.6;

  text-align: center;
}

.container {
  margin-top: 100px;
  background-image: url(../images/about/Background2.png);
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.parent {
  width: 90%;
  height: 100%;
  /* background-color: #C77F05; */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
}

.parent .box {
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 6px 0px rgba(199, 127, 5, 1);
  -moz-box-shadow: 0px 5px 6px 0px rgba(199, 127, 5, 1);
  box-shadow: 0px 5px 6px 0px rgba(199, 127, 5, 1);
  border: none;
  position: relative;
  padding: 10px;
  min-height: 160px;
}

.div1 {
  grid-column: span 1 / span 1;
  grid-row: span 2 / span 2;
  grid-row-start: 1;

  /* background-color: white; */
}

.div2 {
  grid-column: span 1 / span 1;
  grid-row: span 2 / span 2;

  grid-column-start: 1;
  grid-row-start: 4;
}

.div3 {
  grid-column: span 1 / span 1;
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 3;
}

.div4 {
  grid-column: span 1 / span 1;
  grid-row: span 2 / span 2;

  grid-column-start: 5;
  grid-row-start: 1;
}

.div5 {
  grid-column: span 1 / span 1;
  grid-row: span 2 / span 2;

  grid-column-start: 5;
  grid-row-start: 4;
}

.icon {
  height: 80px;
  width: 80px;
  background-color: #c77f05;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  border: 4px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  object-fit: cover;
}

.icon+div {
  text-align: center;
  margin-top: 45px;
}

.icon+div h4 {
  color: #c77f05;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--ff-tertiary);
}

.paragraph {
  width: 90%;

  margin: 10px auto;
  font-size: 0.9rem;
  line-height: 1.9;
  font-weight: 500;
}

@media (max-width: 1024px) {

  #section3 h1,
  #section3 h1+p {
    padding: 0 20px;
  }

  #section3 h1 {
    font-size: 32px;
  }

  #section3 p {
    font-size: 16px;
  }

  .container {
    height: fit-content;
    margin-bottom: 50px;
  }

  .parent {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    align-content: center;
    gap: 80px;
  }

  .parent .box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 5px 6px 0px rgba(199, 127, 5, 1);
    border: none;
    position: relative;
    padding: 5px 8px;
    height: auto;
  }

  /* Remove all manual grid placement */
  .div1,
  .div2,
  .div3,
  .div4,
  .div5 {
    grid-column: auto;
    grid-row: auto;
  }

  .div5 {
    grid-column: 1 / span 2;
    justify-self: center;
    width: 50%;
  }

  .icon {
    left: 30%;
    transform: translateX(50%);
  }

  .paragraph {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  #section3 h1 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .parent {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 50px;
  }

  .parent .box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 5px 6px 0px rgba(199, 127, 5, 1);
    border: none;
    position: relative;
    padding: 5px 8px;
    height: auto;
  }

  .div1,
  .div2,
  .div3,
  .div4,
  .div5 {
    grid-column: auto;
    grid-row: auto;
  }

  .div5 {
    width: 100%;
  }

  .icon {
    transform: translateX(50%);
  }
}

/****************** end section 3 ****************************/

/******************  section 4 ****************************/
#section4 {
  padding-top: 50px;

  padding: 50px 18px 150px;

  background-color: #f5f5f5;
}

#section4 h1 {
  font-size: 40px;
  background: var(--clr-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 500;
  padding-bottom: 20px;
  text-align: center;
}

#section4 h1+p {
  max-width: 1500px;
  margin: 0 auto 50px;
  padding-bottom: 30px;

  font-size: 18px;
  font-weight: 400;

  line-height: 1.6;

  text-align: center;
}

.team-carousel-container {
  width: 90%;
  margin: 0 auto;
  height: auto;
  position: relative;
}

.team-carousel {
  padding-bottom: 50px;
  padding-top: 150px;
  margin-top: 0px;
}

.team-card {
    background: white;
    border-radius: 5px;
    padding: 24px 15px 10px;
    text-align: center;
    -webkit-box-shadow: 0px 5px 6px 0px rgba(199, 127, 5, 1);
    -moz-box-shadow: 0px 5px 6px 0px rgba(199, 127, 5, 1);
    box-shadow: 0px 5px 6px 0px rgba(199, 127, 5, 1);
    border: 1px solid rgba(199, 127, 5, 1);
    border-top: none;
      height: 420px;
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10rem;
    justify-self: center;
    font-family: var(--ff-primary);
    text-transform: capitalize;
}
.team-card p {
  text-align: justify;
}

.image-wrapper {
  position: absolute;
  top: -150px;
  width: 120px;
  height: 120px;
  margin-top: -80px;
  z-index: 10;
  /* Ensure wrapper is above outer rings */
}


/* Image styling */
.image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 4;
}

/* Ripple rings */
.ring {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
      transparent 60%,
      /* inner transparent center */
      #c89a4b 70%,
      #c77f05 85%,
      transparent 100%
      /* outer transparent edge */
    );
}

/* First ring: closest and most intense */
.ring-1 {
  top: -8px;
  left: -8px;
  width: 136px;
  height: 136px;
  background-color: #c89a4b;
  opacity: 1;
  z-index: 3;
}

/* Second ring: still strong, just slightly lighter */
.ring-2 {
  top: -16px;
  left: -16px;
  width: 152px;
  height: 152px;
  background-color: #c89a4b;

  opacity: 0.75;
  /* previously 0.5 */
  z-index: 2;
}

/* Third ring: visible, but subtle fade */
.ring-3 {
  top: -24px;
  left: -24px;
  width: 168px;
  height: 168px;
  background-color: #c89a4b;

  opacity: 0.5;
  /* previously 0.25 */
  z-index: 1;
}

.team-card div {
  margin-top: 100px;
  font-family: var(--ff-primary);
}

.team-card h2 {
  font-family: var(--ff-primary);
}

.team-card h3 {
  color: #c17f16;
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0;
  font-family: var(--ff-primary);
}

.team-card p {
  color: rgb(32, 32, 32);
  font-size: 0.875rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* Limite à 4 lignes */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--ff-primary);
}

.carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 30%;
  margin: auto;
  margin-top: -8rem;
  /* Changed to negative value to pull it up */
  position: relative;
  /* Allows z-index to work */
  z-index: 10;
  /* Ensures it stays above other elements */
}


.team-card .cv {
          margin-top: 20px;
     
     display: flex;
     
     justify-content: end;
  
}

.team-card a {
  
   color: #c17f16;
      background-color: none;
        border: none;
        border-radius: 20px;
        font-size: 14px;
           border: 1px solid #c17f16;
              padding: 8px 16px;
              transition: all 0.3s ease-in-out;
   
    }
    .team-card a:hover {
   background-color: #a66d12;
   color: white;
    }


.nav-btn {
  background: #c17f16;
  color: white;
  border: none;
  padding: 7px 13px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.nav-btn:hover {
  background: #a66d12;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.pagination .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 2px solid #c17f16;
  border-radius: 6px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #c17f16;
  font-weight: 600;
}
@media (max-width: 1400px) {
    .team-card{
        width: 94%;
    }
}

@media (max-width: 1024px) {
  #section4>h1 {
    font-size: 32px;
  }

  #section4 h1+p {
    font-size: 16px;
  }

  .carousel-navigation {
    width: 50%;
    margin-top: -3rem;
  }

    .team-card h2 {
        font-size: 18px ;
    }

  .team-card h3 {
    font-size: 16px;
  }



  .team-card {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .carousel-navigation {
    width: 80%;
    margin-top: -8rem;
  }

  #section4>h1 {
    font-size: 26px;
  }

  .pagination {
    display: none;
  }

   .team-card {
    height: 440px;
  }

}


 
.pagination .swiper-pagination-bullet {
  width: fit-content;
  height: fit-content;
  padding: 5px 10px;
  background: transparent;
  border: 2px solid #c17f16;
  /* orange border */
  border-radius: 6px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #c17f16;
  font-weight: 600;
}

/* .pagination .swiper-pagination-bullet-active {
    background: #c17f16;
    opacity: 1;
    border-color: #c17f16;
    color: white;
} */

/* 
@media (prefers-color-scheme: dark) {
    .team-card {
        background: #2d2d2f;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .team-card h3 {
        color: #e6a449;
    }

    .team-card p {
        color: #999;
    }

    .nav-btn {
        background: #e6a449;
    }

    .nav-btn:hover {
        background: #c17f16;
    }


/****************** end section 4 ****************************/

/******************  section 5 ****************************/

.heros {
  background-image: url("../images/Background2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero-contents h3 {
  font-size: 36px;
  max-width: 1300px;
  line-height: 1.6;

  font-weight: 500;
  /* text-transform: ; */

  margin: 0 auto 60px;
  font-family: var(--ff-tertiary);
  text-align: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.overlays {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-contents .buttons {
  justify-content: center;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1024px) {
  .hero-contents h3 {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .hero-contents h3 {
    font-size: 28px;
    font-weight: 500;
  }
}

/****************** end section 5 ****************************/

/******************  section 6 ****************************/

/******************* PARTENAIRES   *********************/

.partenaires {
  padding: 60px 20px;
  text-align: center;

  background-color: #fff;
}

.partenaires-title {
  font-size: 40px;
  background: var(--clr-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 500;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.partenaires-subtitle {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding-bottom: 30px;

  font-size: 18px;
  font-weight: 400;

  line-height: 1.6;

  text-align: center;
}

.carousel-container {
  width: 100%;
  max-width: 1500px;
  overflow: hidden;
  position: relative;
  padding: 50px 0;
  background: white;

  border-radius: 10px;
  margin: 0 auto;
  cursor: grab;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-out;
  gap: 40px;
  padding: 0 20px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.carousel-item {
  min-width: 244px;
  height: 244px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.3s ease;

  box-shadow: 0px 4px 4px 0px #00000040;
}

.carousel-item:hover {
  transform: scale(1.05);
}

.carousel-item img {
  width: 60%;
  height: 60%;
  object-fit: cover;
  transition: filter 0.3s ease;
  pointer-events: none;
}

.carousel-item:hover img {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .carousel-container {
    max-width: 100%;
    padding: 10px 0;
  }

  .carousel-item {
    min-width: 150px;
    height: 75px;
  }

  .partenaires-title {
    font-size: 28px;
  }

  .partenaires-subtitle {
    font-size: 15px;
  }

  .carousel-item img {
    width: 80%;
    height: 80%;
  }
}

/****************** end section 6 ****************************/
.why {
  padding: 60px 20px;
  text-align: center;

  background-color: #fff;
}

.why-container {
  display: grid;
  max-width: 1500px;
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
  justify-content: center;
  padding: 20px;
  margin: 0 auto;
}

.why-title {
  font-size: 40px;
  background: var(--clr-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 500;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.why-subtitle {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding-bottom: 30px;

  font-size: 18px;
  font-weight: 400;

  line-height: 1.6;

  text-align: center;
}

.why-card {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px #c77f05;

  padding: 20px;

  text-align: left;
  border: 1px solid #eee;
}

.why-icon {
  background: var(--clr-orange);
  width: 100px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-bottom: 20px;
}

.why-icon img {
  width: 60px;
  height: 60px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #c77f05;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: var(--ff-primary);
  line-height: 1.6;
}

.why-card p {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
  width: 80%;
}

@media (max-width: 992px) {
  .why-container {
    max-width: 100%;

    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .carousel-item {
    min-width: 150px;
    height: 75px;
  }

  .why-title {
    font-size: 28px;
  }

  .why-subtitle {
    font-size: 15px;
  }

  /* .why-icon {
        width: 90px;
        height: 64px;
    }

    .why-icon img {
        width: 80%;
        height: 80%;
    } */

  .why-card h3 {
    font-size: 18px;
    font-weight: 500;
  }

  .why-card p {
    font-size: 14px;

    font-weight: 400;
    text-align: left;
    width: 90%;
  }
}

@media (max-width: 700px) {
  .why-container {
    max-width: 500px;

    grid-template-columns: repeat(1, 1fr);
  }
}

/****************** cocerne ficia ****************************/

.section-5 {
  padding: 60px 20px;

  background-color: #fff;
}

.section-5-title {
  font-size: 40px;
  background: var(--clr-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 500;
  padding-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.section-5-subtitle {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding-bottom: 30px;

  font-size: 18px;
  font-weight: 400;

  line-height: 1.6;

  text-align: center;
  height: 100%;
}

.section5-container {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  /* background-image: url('../images/about/globej\ 1.png'); */
  background-repeat: no-repeat;
  padding-bottom: 50px;
  padding: 20px 80px;
  gap: 40px;

  background-color: white;
}

.image-containers {
  width: 100%;
  height: 100%;

  text-align: justify;
}

.cadre {
  background: var(--clr-orange);
  width: 90%;
  height: 640px;
  border-radius: 10px;
}

.cadre img {
  width: 100%;
  height: 640px;
  border-radius: 10px;
  object-fit: cover;
  transform: translate(10px, 10px);
}

.infos {
  width: 100%;
}

.info-pneus {
  margin: 20px auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  background-color: #eeeeee;
  cursor: pointer;
  gap: 15px;
}

.info-header h5 {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--ff-primary);
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.info-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease-out;
}

.info-content.active {
  max-height: 500px;
  /* Ajuster selon le contenu */
  padding: 15px;
}

.info-content p {
  margin: 8px 0;
  line-height: 1.5;
  font-size: 15px;
}

.rotate {
  transform: rotate(90deg);
}

@media (max-width: 1100px) {
  .cadre {
    display: none;
  }

  .section5-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 40px;
  }
}

@media (max-width: 768px) {
  .section5-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
  }

  .info-header h5 {
    font-size: 15px;
  }

  .section-5-title {
    font-size: 28px;
  }

  .section-5-subtitle {
    font-size: 15px;
  }

  /* .section-5-icon {
        width: 90px;
        height: 64px;
    }

    .section-5-icon img {
        width: 80%;
        height: 80%;
    } */
}

@media (max-width: 700px) {
  .section-5-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/**************** SECTION CONTEXT ***************/

#context {
  height: 700px;
  background-image: url(../images/slider03.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 70px;
}

.cont-und {
  height: 5px;
  width: 500px;
  background: var(--clr-orange);
  margin-bottom: 5px;
  /* Secondary color */
}

#context div {}

.count-und {
  width: 60%;
}

#context h1 {
  font-size: 48px;
  width: 70%;

  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 600;
}

#context p {
  margin-top: 50px;
  color: white;
  line-height: 35px;
  font-size: 17px;
  text-align: justify;
  width: 60%;
}

@media (max-width: 1024px) {
  #context {
    height: auto;
    padding: 60px 30px;
  }

  #context>div {
    width: 100%;
  }

  #context h1 {
    text-align: center;
    width: 100%;
    font-size: 30px;
  }

  #context p {
    color: white;
    width: 100%;
    font-size: 15px;
  }

  .cont-und {
    width: 50%;
    margin: auto;
  }
}

#strategie {
  padding: 50px 20px;
  height: auto;
}

#strategie h1 {
  text-align: center;
  font-size: 40px;
  background: var(--clr-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  padding-bottom: 20px;
}

#strategie h1+p {
  max-width: 1200px;
  margin: 0 auto 50px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.strategie-container {
  margin: 0 auto;
  width: 90%;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.strat-card {
  height: 450px;
  width: 85%;
  background-color: white;
  border: 1px solid rgba(199, 127, 5, 1);
  box-shadow: 0px 5px 6px 0px rgba(199, 127, 5, 1);
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.strat-card img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  display: block;
}

.strat-bar-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to right, #c89a4b, #c77f05);
  border-radius: 5px;
  width: 80%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  /* Optional: Horizontal padding */
}


.strat-bar {
  position: relative;
}

.strat-bar p {
  color: white;
  font-size: 14px;
  margin: 0;
}

.strat-bar .num3 {
  top: -55px;
}

.strat-bar .num2 {
  top: -65px;
}

.strat-bar .num1 {
  top: -65px;
}

.strat-bar .num5 {
  top: -55px;
}

.strat-bar .num4 {
  top: -55px;
}

.strat-bar .num3 {
  top: -55px;
}

.strat-bar span {
  padding: 10px 14px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #c89a4b;
  color: #c17f16;
  position: absolute;
  top: -70px;

  left: 50%;
  transform: translateX(-50%);
}





.strat-text {
  padding: 50px 10px 30px;
  margin-top: auto;
}

.strat-text p {
  font-size: 12px;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .strategie-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .strat-text {
    padding: 90px 10px 30px;
  }

  .strat-bar-container {
    top: calc(60% - 50px);
  }
}


@media (max-width: 1024px) {
  #strategie h1 {
    font-size: 32px;
  }

  #strategie h1+p {
    font-size: 16px;
  }

  .strat-bar-container {

    padding: 40px 20px;

  }

  .strat-text {
    padding: 20px 10px 30px;

  }


  .strat-bar span {

    top: -60px;

  }




}

@media (max-width: 768px) {
  #strategie h1 {
    font-size: 26px;
  }

  .strat-bar p {
    font-size: 13px;
  }

  .strat-bar span {
    padding: 12px 15px;
    top: -50px;
  }

  .strat-bar-container {
    padding: 25px 20px;
  }

  .strat-text {
    padding: 80px 10px 20px;
  }
}

@media (max-width: 724px) {
  .strategie-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }




  .strat-card {
    width: 90%;
  }
}