header .navbar {
  background-color: #284D9A !important;
}

/* SECTION DES ARTICLES  */

.articles {
  padding: 2vw 8.928vw 0vw 8.928vw;
  width: 100%;
}

.articles .list-articles {
  flex-wrap: wrap;
  gap: 2.6vw 0;
  justify-content: space-between;
}

/* .medecins .list-medecins i.one-medecins {
    background: transparent;
    box-shadow: none;
} */
.articles .list-articles .one-article {
  border-radius: var(--p-size) var(--p-size) 0 var(--p-size);
  padding: 0 0 1.87vw 0;
  width: 26.041vw;
  background: white;
  box-shadow: 0px 2px 26.041vw 0px #0000000D;
  border: 1px solid #FFF;
  transition: all .5s ease-in-out;
}

.articles .list-articles .one-article:hover {
  transition: all .5s ease-in-out;
  border: 1px solid #56A1BF;
}

.articles .list-articles .one-article .image {
  display: block;
  width: auto;
  height: 14.06vw;
  position: relative;
  overflow: hidden;
  border-radius: var(--p-size);
  margin-bottom: 0.83vw;
}

.articles .list-articles .one-article .image img {
  width: 100%;
  height: 100%;
  border-radius: var(--p-size);
  object-fit: cover;
  transition: all .5s ease-in-out;
  transform: scale(1);
}

.articles .list-articles .one-article:hover .image img {
  transition: all .5s ease-in-out;
  transform: scale(1.1);
}


.articles .list-articles .one-article .title {
  font-family: var(--font-name);
  font-weight: 600;
  font-size: 1.093vw;
  line-height: normal;
  color: #1C3568;
  transition: all .5s ease-in-out;
}

.articles .list-articles .one-article:hover .title {
  color: #56A1BF;
  transition: all .5s ease-in-out;
}

.articles .list-articles .one-article .description {
  font-family: var(--font-name);
  font-weight: 300;
  color: #000;
  font-size: 0.885vw;
  line-height: normal;
  transition: all .5s ease-in-out;
}

.articles .list-articles .one-article:hover .description {
  color: #284D9A;
  transition: all .5s ease-in-out;
}

.articles .list-articles .one-article .bottom-content {
  align-self: end;
  margin-right: 1.5401vw;
  color: #284D9A;
}

.articles .list-articles .one-article .bottom-content .text-action {
  font-family: var(--font-name);
  font-weight: 600;
  font-size: 1.093vw;
  line-height: normal;
}

.articles .list-articles .one-article .bottom-content .icon {
  color: #56A1BF;
  width: 2.98vw;
  font-size: 2vw;
  transition: all .5s ease-in-out;
}

/* SECTION DU DETAILS DES ARTICLES  */

.list-modules {
  margin-top: 0 !important;
  width: fit-content;
}

.details-article {
  gap: 3.125vw;
  width: 100%;
  margin-top: 5vw;
  margin-bottom: 3vw;
}

.details-article .banner-article {
  height: 22.864vw;
  width: 100%;
  display: block;
}

.details-article .banner-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-article .banner-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000073;
}

.details-article .banner-article .title {
  font-family: var(--font-name);
  font-weight: 800;
  font-size: 3.75vw;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
  position: absolute;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  bottom: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  color: #FFF;
}

.details-article .text-details-articles {
  /* display: block; */
  padding: 0vw 8.928vw 0vw 8.928vw;
  width: 100%;
  gap: 1.92vw;
}

.details-article .text-details-articles .content-details-left {
  width: 55.468vw;
}

.details-article .text-details-articles .content-details-left .title {
  font-family: var(--font-name);
  font-weight: 800;
  font-size: var(--p-size);
  color: #56A1BF;
  line-height: 1.95vw;
  margin-bottom: 1vw;
}

.details-article .text-details-articles .content-details-left h2 {
  font-family: var(--font-name);
  font-weight: 800;
  font-size: 2.43vw;
  line-height: normal;
  color: #56A1BF;
  margin-bottom: 1vw;
  margin-top: 1vw;
}

.details-article .text-details-articles .content-details-left span {
  font-family: var(--font-name);
  font-weight: 400;
  font-size: var(--p-size);
  line-height: 2.083vw;
  text-align: justify;
  color: #000;
}

.list-social-network-footer {
  display: flex;
  gap: 2vw;
  justify-content: center;
}
.list-social-network-footer a {
  font-size: 3vw;
}
.list-social-network-footer a i {
  box-shadow: none;
}

/*===================== RESPONSIVE OF SECTION SERVICE ===========================*/

@media (max-width: 768px) {
  .mobile-header.scrolled {
    background-color: #284D9A !important;
    /* background-color: #284D9A;  */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  }

  .articles {
    padding: 6vw 5vw 0vw 5vw;
  }

  .articles .list-articles {
    display: flex;
    flex-direction: column;
    gap: 6vw;
    align-items: center;
  }

  .articles .list-articles .one-article {
    width: 100%;
    padding: 0 0 5vw 0;
    border-radius: 4vw 4vw 0 4vw;
    box-shadow: 0px 2px 10vw rgba(0, 0, 0, 0.05);
  }

  .articles .list-articles .one-article .image {
    height: 45vw;
    margin-bottom: 4vw;
    border-radius: 4vw;
  }

  .articles .list-articles .one-article .description {
    font-size: 3.8vw;
    text-align: center;
    margin: 0 4vw 2vw;
  }

  .articles .list-articles .one-article .bottom-content {
    margin-right: 0;
    display: flex;
    justify-content: center;
    gap: 2vw;
    font-size: 4vw;
  }

  .articles .list-articles .one-article .bottom-content .icon {
    font-size: 6vw;
    width: auto;
  }

  .details-article {
    flex-direction: column;
    gap: 6vw;
    margin-top: 6vw;
    margin-bottom: 6vw;
  }

  .details-article .banner-article {
    height: 50vw;
  }

  .details-article .banner-article .title {
    font-size: 6vw;
    padding: 0 5vw;
    text-align: center;
  }

  .text-details-articles {
    display: flex;
    flex-direction: column;
    padding: 0 8.928vw;
    gap: 2.13541vw;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .text-details-articles .content-details-left,
  .text-details-articles>*:not(.content-details-left) {
    width: 100%;
  }


  .text-details-articles>*:not(.content-details-left) {
    margin-top: 6vw;
  }

  .articles {
    padding: 23vw 5vw 3vw 5vw;
  }

  .articles .list-articles {
    display: flex;
    flex-direction: column;
    gap: 6vw;
    align-items: center;
    width: 100%;
  }

  .articles .list-articles .one-article {
    width: 100%;
    padding: 0 0 5vw 0;
    border-radius: 4vw 4vw 0 4vw;
    box-shadow: 0 8px 20px rgba(40, 77, 154, 0.15);
    background: white;
    border: none;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
  }

  .articles .list-articles .one-article:hover {
    box-shadow: 0 12px 30px rgba(86, 161, 191, 0.35);
    border: 1px solid #56A1BF;
  }

  .articles .list-articles .one-article .image {
    height: 45vw;
    margin-bottom: 4vw;
    border-radius: 4vw;
    overflow: hidden;
    position: relative;
  }

  .articles .list-articles .one-article .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4vw;
    transition: transform 0.5s ease-in-out;
  }

  .articles .list-articles .one-article:hover .image img {
    transform: scale(1.1);
  }

  .articles .list-articles .one-article .title {
    font-size: 4.5vw;
    font-weight: 700;
    text-align: left;
    line-height: 6vw;
    margin: 0;
    padding: 2vw 4vw 3vw 4vw;
  }

  .articles .list-articles .one-article:hover .title {
    color: #56A1BF;
  }

  .articles .list-articles .one-article .description {
    font-size: 3.8vw;
    font-weight: 300;
    color: #000;

    text-align: left;
    line-height: 6vw;
    margin: 0;
    padding: 2vw 4vw 3vw 4vw;
  }

  .articles .list-articles .one-article:hover .description {
    color: #284D9A;
  }

  .articles .list-articles .one-article .bottom-content {
    margin-right: 10px;
    display: flex;
    justify-content: center;
    gap: 1vw;
    font-size: 4vw;
    color: #284D9A;
    align-items: center;
  }

  .articles .list-articles .one-article .bottom-content .text-action {
    font-family: var(--font-name);
    font-weight: 600;
    font-size: 4vw;
  }

  .articles .list-articles .one-article .bottom-content .icon {
    font-size: 6vw;
    width: auto;
    color: #56A1BF;
    transition: color 0.5s ease;
  }

  /* DETAILS ARTICLE */
  .details-article {
    flex-direction: column;
    gap: 6vw;
    margin: 21vw 0 0vw;
    width: 100%;
  }

  .details-article .banner-article {
    height: 50vw;
    width: 100%;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .details-article .banner-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  .details-article .banner-article::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 0;
  }


  .details-article .text-details-articles {
    padding: 0 5vw;
    width: 100%;
    gap: 4vw;
    display: flex;
    flex-direction: column;
  }

  .details-article .text-details-articles .content-details-left {
    width: 100%;
  }

  .details-article .text-details-articles .content-details-left .title {
    font-family: var(--font-name);
    font-weight: 800;
    font-size: 5vw;
    color: #56A1BF;
    line-height: 1.2;
    margin-bottom: 1vw;
  }

  .details-article .text-details-articles .content-details-left h2 {
    font-family: var(--font-name);
    font-weight: 800;
    font-size: 5vw;
    color: #56A1BF;
    margin: 1vw 0;
  }

  .details-article .text-details-articles .content-details-left span {
    font-family: var(--font-name);
    font-weight: 400;
    font-size: 4vw;
    line-height: 1.4;
    color: #000;
    text-align: justify;
  }
}