:root {
  --primary-color: #0047ab;
  --secondary-color: #add8e6;
  --accent-color: #708090;
  --background-light: #ffefd5;
  --pure-white: #ffffff;
}

.site-mobile-menu-close {
  display: block;
  position: relative;
  height: 30px;
  width: 30px;
  z-index: 99;
  cursor: pointer;
  top: -20px; }
  .site-mobile-menu-close > span {
    cursor: pointer;
    display: block;
    position: absolute;
    height: 30px;
    width: 30px; }
    .site-mobile-menu-close > span:before, .site-mobile-menu-close > span:after {
      position: absolute;
      content: "";
      width: 2px;
      height: 30px;
      background: #000000; }
    .site-mobile-menu-close > span:before {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .site-mobile-menu-close > span:after {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }

.site-nav {
  border-bottom: 1px solid #f7f7f7;
  padding-top: 20px;
  padding-bottom: 20px;
}
  .site-nav h1 {
    margin: 0;
    padding: 0;
    font-size: 1.7rem;
  }
    .site-nav h1 img {
      width: auto;
      height: 1.7rem;
    }
      .site-nav .site-navigation .site-menu {
        margin-bottom: 0;
      }
      .site-nav .site-navigation .site-menu > li {
        display: inline-block;
        position: relative; 
      }
      .site-nav .site-navigation .site-menu > li > a {
        font-size: 16px;
        padding: 10px 15px;
        color: #000000;
        display: inline-block;
        text-decoration: none !important;
        position: relative; 
        overflow: hidden; 
      }
      
      .site-nav .site-navigation .site-menu > li > a .tab-border {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 100%; 
        background: var(--primary-color);
        transform: scaleX(0); 
        transform-origin: left center; 
        transition: transform 0.4s ease-out; 
      }
      
      .site-nav .site-navigation .site-menu > li > a:hover .tab-border {
        transform: scaleX(1); 
      }

      .site-nav .site-navigation .site-menu > li > a:not(:hover) .tab-border {
        transform: scaleX(0); 
        transition: transform 0.3s ease-out; 
      }
      
      
      .site-nav .site-navigation .site-menu > li.cta-button > a .tab-border {
        display: none; 
      }
      
      .site-nav .site-navigation .site-menu > li.cta-button {
        margin-left: 30px; }
        .site-nav .site-navigation .site-menu > li.cta-button a {
          padding: 7px 20px;
          border-radius: 30px;
          background: var(--primary-color);
          color: #ffffff;
          border: 2px solid transparent; }
          .site-nav .site-navigation .site-menu > li.cta-button a:hover {
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color); }
      .site-nav .site-navigation .site-menu > li.active a {
        color: var(--primary-color); }
        .site-nav .site-navigation .site-menu .dropdown> li.active a {
          color: var(--primary-color); }
    .site-nav .site-navigation .site-menu .has-children {
      position: relative; }
      .site-nav .site-navigation .site-menu .has-children > a {
        position: relative;
        padding-right: 20px; }
        .site-nav .site-navigation .site-menu .has-children > a:before {
          position: absolute;
          content: "\e313";
          font-size: 16px;
          top: 50%;
          right: 0;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          font-family: 'icomoon'; }
      .site-nav .site-navigation .site-menu .has-children .dropdown {
        visibility: hidden;
        opacity: 0;
        top: 100%;
        z-index: 999;
        position: absolute;
        text-align: left;
        -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        margin-top: 20px;
        margin-left: 0px;
        background: #ffffff;
        -webkit-transition: 0.2s 0s;
        -o-transition: 0.2s 0s;
        transition: 0.2s 0s; }
        .site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top {
          position: absolute; }
          .site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
            display: none;
            bottom: 100%;
            left: 20%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none; }
          .site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
            display: none;
            border-color: rgba(136, 183, 213, 0);
            border-bottom-color: #ffffff;
            border-width: 10px;
            margin-left: -10px; }
        .site-nav .site-navigation .site-menu .has-children .dropdown a {
          font-size: 14px;
          text-transform: none;
          letter-spacing: normal;
          -webkit-transition: 0s all;
          -o-transition: 0s all;
          transition: 0s all;
          color: #000000; }
        .site-nav .site-navigation .site-menu .has-children .dropdown .active {
          color: var(--primary-color) !important; }
        .site-nav .site-navigation .site-menu .has-children .dropdown > li {
          list-style: none;
          padding: 0;
          margin: 0;
          min-width: 210px; }
          .site-nav .site-navigation .site-menu .has-children .dropdown > li > a {
            padding: 5px 20px;
            display: block; }
            .site-nav .site-navigation .site-menu .has-children .dropdown > li > a:hover {
              color: var(--primary-color); }
          .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
            content: "\e315";
            right: 20px; }
          .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
            left: 100%;
            top: 0; }
            .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown li a:hover, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > ul li a:hover {
              color: var(--primary-color); }
          .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
            color: var(--primary-color); }
      .site-nav .site-navigation .site-menu .has-children:hover > a, .site-nav .site-navigation .site-menu .has-children:focus > a, .site-nav .site-navigation .site-menu .has-children:active > a {
        color: var(--primary-color); }
      .site-nav .site-navigation .site-menu .has-children:hover, .site-nav .site-navigation .site-menu .has-children:focus, .site-nav .site-navigation .site-menu .has-children:active {
        cursor: pointer; }
        .site-nav .site-navigation .site-menu .has-children:hover > .dropdown, .site-nav .site-navigation .site-menu .has-children:focus > .dropdown, .site-nav .site-navigation .site-menu .has-children:active > .dropdown {
          -webkit-transition-delay: 0s;
          -o-transition-delay: 0s;
          transition-delay: 0s;
          margin-top: 0px;
          visibility: visible;
          opacity: 1; }

@media (max-width:767.98px) {
  .site-nav h1 img {
    width: 1.2rem; /* Augmentez le pourcentage si nécessaire sur les petits écrans */
  }

  h1 a {
    font-size: 1.2rem; /* Ajustez la taille de la police pour les petits écrans */
  }
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #ffffff;
  height: calc(100vh);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1); }
  .offcanvas-menu .site-mobile-menu {
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }
  .site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px; }
    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
      float: right;
      margin-top: 8px; }
      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
        font-size: 30px;
        display: inline-block;
        padding-left: 10px;
        padding-right: 0px;
        line-height: 1;
        cursor: pointer;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
      float: left;
      margin-top: 10px;
      margin-left: 0px; }
      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
        display: inline-block;
        text-transform: uppercase; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
          max-width: 70px; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
          text-decoration: none; }
  .site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 0 20px 20px 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px; }
  .site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative; }
    .site-mobile-menu .site-nav-wrap a {
      padding: 5px 20px;
      display: block;
      position: relative; }
      .site-mobile-menu .site-nav-wrap a:hover {
        color: var(--primary-color); }
    .site-mobile-menu .site-nav-wrap li {
      position: relative;
      display: block; }
      .site-mobile-menu .site-nav-wrap li.active > a {
        color: var(--primary-color); }
    .site-mobile-menu .site-nav-wrap .arrow-collapse {
      position: absolute;
      right: 0px;
      top: 0px;
      z-index: 20;
      width: 36px;
      height: 36px;
      text-align: center;
      cursor: pointer;
      border-radius: 50%;
      border: 1px solid #f8f9fa; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
        font-size: 16px;
        z-index: 20;
        font-family: "icomoon";
        content: "\e313";
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-180deg);
        -ms-transform: translate(-50%, -50%) rotate(-180deg);
        transform: translate(-50%, -50%) rotate(-180deg);
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .site-mobile-menu .site-nav-wrap > li {
      display: block;
      position: relative;
      float: left;
      width: 100%; }
      .site-mobile-menu .site-nav-wrap > li > a {
        padding-left: 20px;
        font-size: 16px; }
      .site-mobile-menu .site-nav-wrap > li > ul {
        padding: 0;
        margin: 0;
        list-style: none; }
        .site-mobile-menu .site-nav-wrap > li > ul > li {
          display: block; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > a {
            padding-left: 40px;
            font-size: 16px; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
            padding: 0;
            margin: 0; }
            .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
              display: block; }
              .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
                font-size: 16px;
                padding-left: 60px; }

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%; }
  .sticky-wrapper .site-navbar {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .sticky-wrapper .site-navbar .site-menu-toggle {
    color: #000000; }
  .sticky-wrapper .site-navbar .site-logo a {
    color: #000000; }
  .sticky-wrapper .site-navbar .site-menu > li > a {
    color: rgba(0, 0, 0, 0.8) !important; }
    .sticky-wrapper .site-navbar .site-menu > li > a:hover, .sticky-wrapper .site-navbar .site-menu > li > a.active {
      color: #000000 !important; }
  .sticky-wrapper.is-sticky .burger:before, .sticky-wrapper.is-sticky .burger span, .sticky-wrapper.is-sticky .burger:after {
    background: #000000;
    -webkit-transition: .0s all ease;
    -o-transition: .0s all ease;
    transition: .0s all ease; }
  .sticky-wrapper.is-sticky .site-navbar {
    background: #000000;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1); }
    .sticky-wrapper.is-sticky .site-navbar .site-logo a {
      color: #000000 !important; }
    .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
      color: #000000 !important; }
      .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover, .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
        color: var(--primary-color) !important; }
    .sticky-wrapper.is-sticky .site-navbar .site-menu > li.active a {
      color: var(--primary-color) !important; }
  .sticky-wrapper .shrink {
    padding-top: 0px !important;
    padding-bottom: 0px !important; }

.gradient-primary, .news-entry h2 a, .news-entry h2 a > span {
  background: #000000; }

.container {
  max-width: 1200px; }

html {
  overflow-x: hidden; 
  scroll-behavior: smooth;
  }

body {
  background: #ffffff;
  line-height: 1.7;
  color: #878787;
  font-weight: 400;
  font-size: 16px;
  font-family: "DM Sans", sans-serif; }
  body:before {
    content: "";
    position: fixed;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  body.offcanvas-menu:before {
    opacity: 1;
    visibility: visible; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #000000; }
  a:hover {
    color: #000000;
    text-decoration: none; }

.text-black {
  color: #000000 !important; }

.text-primary {
  color: var(--primary-color) !important; }

.site-hero {
  padding: 0 0 7rem 0;
  position: relative;
  background: var(--primary-color);
  color:white; }
  .site-hero h1 {
    font-size: 48px;
    color: white;}

.scroll-down > a {
  padding: 10px;
  display: inline-block; }

.scroll-down .scroll-caption {
  margin-right: 10px; }

.scroll-down .scroll-icon {
  padding-left: 65px;
  font-size: 20px;
  position: relative; }
  .scroll-down .scroll-icon:before {
    position: absolute;
    left: 0;
    height: 2px;
    width: 50px;
    top: 13px;
    content: "";
    background: #e8e8e8; }

.btn {
  border-radius: 0;
  padding: 8px 30px;
  font-size: 16px;
  border-radius: 30px;
  border: 2px solid transparent; }
  .btn.btn-primary {
    background: var(--primary-color); }
  .btn.btn-outline-primary {
    border-width: 2px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color); }
    .btn.btn-outline-primary:hover {
      background: var(--primary-color);
      color: #ffffff; }
  .btn.btn-primary-hover-outline {
    background: var(--primary-color);
    color: #ffffff; }
    .btn.btn-primary-hover-outline:hover {
      border: 2px solid var(--primary-color);
      background: transparent;
      color: var(--primary-color); }
  .btn.btn-secondary {
    background: white; }
  .btn.btn-outline-secondary {
    border-width: 2px;
    border: 2px solid white;
    background-color: transparent;
    color: var(--primary-color); }
    .btn.btn-outline-secondary:hover {
      background: white;
      color: var(--primary-color); }
  .btn.btn-secondary-hover-outline {
    background: white;
    border: 2px solid white;
    color: var(--primary-color); }
    .btn.btn-secondary-hover-outline:hover {
      border: 2px solid white;
      background: transparent;
      color: white }  
  .btn.btn-blank {
    background: white; }
  .btn.btn-outline-blank {
    border-width: 2px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color); }
    .btn.btn-outline-blank:hover {
      background: var(--primary-color);
      color: white; }
  .btn.btn-blank-hover-outline {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color); }
    .btn.btn-blank-hover-outline:hover {
      border: 2px solid var(--primary-color);
      background: var(--primary-color);
      color: white }

.section-grey {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f5f5f5; }
  @media (max-width: 991.98px) {
    .section-grey .img-wrap .img {
      margin-top: 0; } }

.custom-block {
  margin-bottom: 50px; }

.block {
  background: #ffffff;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media (max-width: 767.98px) {
    .block {
      padding-top: 0; } }

.block-2 {
  padding-top: 70px;
  padding-bottom: 70px; }

.block-3 {
  padding-top: 50px; }

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  line-height: 1;
  color: #000000; }

.section-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: #6c757d; }

.lead {
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px; }
  .lead.lg {
    font-size: 20px;
    line-height: 1.5; }

.question .number {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #000000; }

.question h3 {
  font-size: 16px;
  color: #3f3f3f; }
  .question h3 > .emphasize {
    display: block; }

.images-overlap {
  position: relative;
  max-width: 470px; }
  .images-overlap:after {
    content: "";
    display: table;
    clear: both; }
  .images-overlap .img-1 {
    float: left;
    width: 100%;
    margin-top: 0%;
    margin-right: -100%;
    position: relative; }
  .images-overlap .img-2 {
    float: right;
    width: 60%;
    padding-top: 70%;
    position: relative;
    bottom: -20%;
    right: -15%;
    margin-bottom: -100%; }
    @media (max-width: 767.98px) {
      .images-overlap .img-2 {
        right: 0; } }

.services-section {
  padding: 90px 0 70px 0; }
  .services-section .img-wrap {
    margin-top: -200px;
    position: relative; }
    .services-section .img-wrap .bg {
      position: absolute;
      background: #efefef;
      top: 50%;
      left: -20%;
      height: 180px;
      z-index: -1;
      width: 120%; }
    .services-section .img-wrap .year-wrap {
      position: absolute;
      bottom: 16%;
      max-width: 290px;
      border: 2px solid #000000;
      padding: 40px;
      left: -60%; }
      .services-section .img-wrap .year-wrap .year {
        display: block;
        font-size: 2rem;
        color: #000000; }
    .services-section .img-wrap img {
      max-width: 240px; }

.news-section .title-wrap {
  padding: 70px 0 150px 0; }
  @media (max-width: 991.98px) {
    .news-section .title-wrap {
      padding-bottom: 50px; } }

.news-entries {
  padding-bottom: 70px;
  position: relative; }

.post-entry .thumb {
  margin-bottom: 20px; }
  .post-entry .thumb img {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .post-entry .thumb:hover img {
    opacity: .8; }

.post-entry .meta {
  font-size: 12px;
  margin-bottom: 20px; }
  .post-entry .meta .cat {
    text-transform: uppercase;
    font-weight: bold; }
  .post-entry .meta .date {
    color: #9e9e9e; }

.post-entry .post-content {
  padding-left: 30px;
  padding-right: 30px; }
  .post-entry .post-content h3 {
    font-size: 18px;
    line-height: 1.2; }

.news-entry {
  position: relative;
  background: #ffffff;
  margin-top: -110px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  .news-entry:hover, .news-entry:focus {
    -webkit-box-shadow: 0 15px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px 0px rgba(0, 0, 0, 0.1);
    margin-top: -120px; }
  .news-entry .date {
    margin-bottom: 10px; }
    .news-entry .date span {
      font-size: 14px;
      color: #b3b3b3; }
  .news-entry h2 {
    line-height: 1.3;
    margin: 0 0 30px 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400; }
    .news-entry h2 a {
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
      .news-entry h2 a > span {
        display: block;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; }
  .news-entry p {
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px; }
  .news-entry .readmore {
    color: #000000; }

.author .pic {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  margin-right: 20px; }

.author .author-name {
  line-height: 1.3; }
  .author .author-name strong {
    color: #000000;
    font-weight: bold; }

.site-section {
  padding: 70px 0; }
  .site-section.bg-gray {
    background: #f5f5f5; }

.pricing-table {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 7px; }
  .pricing-table .price-wrap sup {
    position: relative;
    top: -20px;
    font-size: 20px; }
  .pricing-table .price-wrap .price {
    font-size: 50px; }
  .pricing-table .price-wrap .per {
    color: #9e9e9e; }
  .pricing-table ul {
    margin-bottom: 30px; }
    .pricing-table ul li {
      margin-bottom: 10px; }
    .pricing-table ul .exclude {
      text-decoration: line-through; }

.testimonial-section {
  position: relative;
  padding-bottom: 100px; }
  .testimonial-section:before {
    content: "";
    position: absolute;
    width: 50%;
    top: 0;
    bottom: 0;
    background: #f5f5f5; }

.inner-page-title {
  font-size: 44px;
  color: #000000;
  margin-bottom: 30px; }
  @media (max-width: 991.98px) {
    .inner-page-title {
      font-size: 30px; } }

.subtitle {
  max-width: 350px; }

.footer {
  background: black;
  color:white;
  padding: 70px 0;
  font-size: 14px; }
  .footer a {
    color: white; }
    .footer a:hover {
      color: #ccc; }
  .footer .copyright {
    margin-top: 20px;
    font-size: 12px;
    position: relative;
    padding-top: 20px; }
    .footer .copyright:before {
      content: "";
      position: absolute;
      left: 15px;
      right: 15px;
      top: 0;
      height: 1px;
      background: rgba(0, 0, 0, 0.1); }
      .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: block;
        text-align: left;
        width: fit-content;
      }
      .footer-menu li {
        padding: 5px 0; 
      }    
      @media (max-width: 768px) { 
        .footer-menu {
        margin: 0; 
        padding-left: 15px; }
      }
.widget {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Assure une répartition verticale */
  height: 100%; /* Pleine hauteur pour alignement vertical */
}
.widget .widget-heading {
  font-size: 15px;
  color: #000000;
  margin-bottom: 20px; }

.widget ul li {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5; }
  .widget ul li a {
    color: white; }
    .widget ul li a:hover {
      text-decoration: none;
      color: var(--primary-color); }

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0 auto; /* Centre les icônes dans la colonne */
  display: flex;
  justify-content: flex-end; /* Alignement à droite des icônes */
  align-items: center;
  width: fit-content; /* Assure que la largeur de .social-icons est celle de son contenu */
}

.social-icons li {
  margin-left: 10px;
}

.social-icons li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  background-color: white;
  margin: 5px; 
  transition: background-color 0.3s, color 0.3s; 
}

.social-icons li a span {
  color: black; 
  font-size: 24px;
  transition: color 0.3s;
}

.social-icons li a:hover {
  background-color: var(--primary-color);
}

.social-icons li a:hover span {
  color: white; 
}



.form-control {
  border: 2px solid #ccc;
  background: none;
  height: 42px; }
  .form-control:active, .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--primary-color); }
    .form-control::placeholder {
      color: #bfc0c0;
      opacity: 1; 
    }

input[type="password"] {
  font-size: 24px; }

.custom-select {
  border: 2px solid #ccc;
  height: 42px; }
  .custom-select:active, .custom-select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--primary-color); }

.gutter-1 {
  margin-right: -4px;
  margin-left: -4px; }
  @media (max-width: 991.98px) {
    .gutter-1 {
      margin-left: -4px;
      margin-right: -4px; } }
  .gutter-1 > .col,
  .gutter-1 > [class*="col-"] {
    padding-right: 4px;
    padding-left: 4px; }
    @media (max-width: 991.98px) {
      .gutter-1 > .col,
      .gutter-1 > [class*="col-"] {
        padding-right: 4px;
        padding-left: 4px; } }

.count-numbers .number {
  font-size: 1.8rem;
  color: #000000;
  position: relative;
  display: block;
  padding-bottom: 7px;
  margin-bottom: 10px; }
  .count-numbers .number:after {
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--primary-color); }

.footer-subscribe form {
  position: relative !important; }

.footer-subscribe .form-control {
  font-size: 14px;
  height: 42px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: none;
  color: #000000;
  padding-right: 40px; }
  .footer-subscribe .form-control:focus {
    border-color: #000000; }
  .footer-subscribe .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3); }
  .footer-subscribe .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.3); }
  .footer-subscribe .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.3); }
  .footer-subscribe .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.3); }

.footer-subscribe .btn-link {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  background-color: none;
  border-color: none;
  position: absolute;
  line-height: 0;
  color: #000000;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg); }
  .footer-subscribe .btn-link:hover, .footer-subscribe .btn-link:focus, .footer-subscribe .btn-link:active {
    text-decoration: none; }

.services [class^="flaticon-"] {
  color: var(--primary-color); }

.services [class^="bi"] {
  color: var(--primary-color); }

.services .services-icon span {
  font-size: 4rem; }

.services h3 {
  font-size: 17px;
  font-weight: 400;
  color: #000000; }

.services p {
  font-size: 14px; }

.benefit [class^="flaticon-"] {
  color: var(--primary-color); }

.benefit [class^="bi"] {
  color: var(--primary-color); }

.benefit .benefit-icon span {
  font-size: 4rem; }

.benefit h3 {
  font-size: 24px;
  font-weight: 400;
  color: #000000; }

.benefit p {
  font-size: 17px; }

/* Burger */
.burger {
  width: 28px;
  height: 32px;
  cursor: pointer;
  position: relative; }

.burger:before, .burger span, .burger:after {
  width: 100%;
  height: 2px;
  display: block;
  background: #000;
  border-radius: 2px;
  position: absolute;
  opacity: 1; }

.burger:before, .burger:after {
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  content: ""; }

.burger:before {
  top: 4px; }

.burger span {
  top: 15px; }

.burger:after {
  top: 26px; }

/* Hover */
.burger:hover:before {
  top: 7px; }

.burger:hover:after {
  top: 23px; }

/* Click */
.burger.active span {
  opacity: 0; }

.burger.active:before, .burger.active:after {
  top: 40%; }

.burger.active:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
  /*for IE*/ }

.burger.active:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
  /*for IE*/ }

.burger:focus {
  outline: none; }

.spinner-border {
  color: var(--primary-color); }

/*PRELOADING------------ */
#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.service.no-shadow.link {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.service .service-icon {
  font-size: 24px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  position: relative;
  color: var(--primary-color);
  background-color: #f5f5f5; }
  .service .service-icon > span {
    display: flex;         /* Utiliser Flexbox */
    align-items: center;   /* Centrer verticalement */
    justify-content: center; /* Centrer horizontalement */
  }

.service .service-contents h3 {
  font-size: 16px;
  color: #000000; }

.service.horizontal .service-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  margin-right: 30px;
  width: 40px;
  height: 40px;
  font-size: 20px; }

.service.link {
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 7px; }
  .service.link .service-contents {
    color: #939393; }
    .service.link .service-contents *:last-child {
      margin-bottom: 0; }
  .service.link:hover, .service.link.active {
    background: #f5f5f5;
    -webkit-box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.05); }
    .service.link:hover .service-icon, .service.link.active .service-icon {
      background-color: #f8f9fa;
      color: #000000; }
  .service.link.active {
    position: relative;
    overflow: hidden; }
    .service.link.active .service-icon {
      color: #ffffff;
      background-color: var(--primary-color); }

.owl-single {
  position: relative; }
  .owl-single .number {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    line-height: 50px;
    text-align: center;
    display: inline-block;
    position: absolute;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 12px;
    -webkit-box-shadow: 0 10px 20px -5px rgba(52, 191, 73, 0.4);
    box-shadow: 0 10px 20px -5px rgba(52, 191, 73, 0.4); }
  .owl-single.no-dots .owl-dots {
    display: none; }

.img-shadow {
  -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2); }

/*--------- Start Portfolio Area -------------*/
.portfolio-area .primary-btn {
  color: #ffffff;
  background-color: var(--primary-color);
  margin-left: auto;
  margin-right: auto; }

.portfolio-area .filters {
  text-align: center; }

.portfolio-area .filters ul {
  padding: 0; }

.portfolio-area .filters ul li {
  list-style: none;
  display: inline-block;
  padding: 18px 15px;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  color: #000000;
  font-size: 12px;
  font-weight: 500; }
  @media (max-width: 736px) {
    .portfolio-area .filters ul li {
      padding: 6px 6px; } }

.portfolio-area .filters ul li:after {
  content: "";
  display: block;
  width: calc(0% - 60px);
  position: absolute;
  height: 2px;
  background: #333;
  -webkit-transition: width 350ms ease-out;
  -o-transition: width 350ms ease-out;
  transition: width 350ms ease-out; }

.portfolio-area .filters ul li:hover:after {
  width: calc(100% - 60px);
  -webkit-transition: width 350ms ease-out;
  -o-transition: width 350ms ease-out;
  transition: width 350ms ease-out; }

.portfolio-area .filters ul li.active {
  color: var(--primary-color); }

.portfolio-area .filters-content {
  margin-top: 50px; }

.portfolio-area .filters-content .show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  transition: all 350ms; }

.portfolio-area .filters-content .hide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  transition: all 350ms; }

.portfolio-area .filters-content .item {
  text-align: center;
  cursor: pointer;
  margin-bottom: 30px; }

.portfolio-area .filters-content .item img {
  border-radius: 10px; }

.portfolio-area .filters-content .p-inner {
  padding: 20px 0px;
  text-align: center; }

.portfolio-area .filters-content .item .p-inner .cat {
  font-size: 13px; }

.portfolio-area .filters-content .item img {
  width: 100%; }

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.middle {
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center; }

.isotope-card:hover .middle {
  opacity: 1; }

.text {
  color: white;
  font-size: 25px;
  padding: 16px 32px; }

.isotope-card {
  border-radius: 5px;
  overflow: hidden; }
  .isotope-card > a {
    overflow: hidden;
    position: relative;
    display: block; }
    .isotope-card > a:before {
      position: absolute;
      content: "";
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      height: 100%;
      z-index: 2;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease;
      background: rgba(0, 0, 0, 0.7); }
    .isotope-card > a img {
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease;
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
    .isotope-card > a:hover:before {
      visibility: visible;
      opacity: 1; }
    .isotope-card > a:hover img {
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }
    .isotope-card > a:hover .contents {
      z-index: 3;
      opacity: 1;
      visibility: visible; }
      .isotope-card > a:hover .contents h3 {
        color: #ffffff; }
  .isotope-card .contents {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }

.thumb .overlay-bg {
  opacity: 0;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .thumb .overlay-bg {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }

.filters {
  text-align: center; }
  .filters ul {
    padding: 0;
    margin: 0 0 30px 0; }
    .filters ul li {
      display: inline-block;
      cursor: pointer;
      padding: 20px;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
      .filters ul li:hover {
        color: var(--primary-color); }
      .filters ul li.active {
        color: var(--primary-color); }

.isotope-card {
  margin-bottom: 30px;
  display: block; }
  .isotope-card .relative {
    margin-bottom: 20px; }
  .isotope-card .contents h3 {
    color: #ffffff;
    font-size: 18px; }
  .isotope-card .contents .cat {
    color: #b3b3b3; }

.custom-breadcrumb {
  background: none;
  padding: 0; }

.team h3 {
  font-size: 20px; }

.team .pic {
  margin-bottom: 30px; }
  .team .pic img {
    border-radius: 4px; }

.team .position {
  display: block;
  margin-bottom: 20px;
  font-size: 14px; }

.slider-team-wrap .owl-dots {
  position: absolute;
  margin-top: 30px; }

.slider-team-wrap .slider-nav a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  background: var(--primary-color);
  border-radius: 4px;
  position: relative;
  top: 0;
  -webkit-transition: .2s all ease;
  -o-transition: .2s all ease;
  transition: .2s all ease; }
  .slider-team-wrap .slider-nav a span {
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .slider-team-wrap .slider-nav a:hover {
    background: #ffffff;
    top: -2px; }
    .slider-team-wrap .slider-nav a:hover span {
      color: var(--primary-color); }

.owl-3-slider .owl-nav {
  display: none; }

.more {
  position: relative;
  padding-right: 30px;
  display: inline-block; }
  .more span {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 12px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    color: #ffffff;
    line-height: 1.6;
    text-align: center;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .more:hover {
    color: #ffffff; }
    .more:hover span {
      background: var(--primary-color); }
  .more.dark {
    color: #000000; }
    .more.dark > span {
      color: #000000; }
    .more.dark:hover {
      color: var(--primary-color); }
      .more.dark:hover span {
        color: #ffffff;
        background: var(--primary-color); }

.custom-accordion .accordion-item {
  background-color: #f9f9f9;
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden; }
  .custom-accordion .accordion-item .btn-link {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-decoration: none;
    text-align: left;
    color: #999;
    border: none;
    padding-left: 40px;
    border-radius: 0;
    position: relative;
    background: #ffffff; }
    .custom-accordion .accordion-item .btn-link:before {
      font-family: 'icomoon';
      content: "\f196";
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 15px; }
    .custom-accordion .accordion-item .btn-link[aria-expanded="true"] {
      font-weight: 700;
      color: var(--primary-color); }
      .custom-accordion .accordion-item .btn-link[aria-expanded="true"]:before {
        font-family: 'icomoon';
        content: "\f147";
        position: absolute;
        color: var(--primary-color);
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
  .custom-accordion .accordion-item.active {
    z-index: 2; }
    .custom-accordion .accordion-item.active .btn-link {
      color: var(--primary-color);
      -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1); }
  .custom-accordion .accordion-item .accordion-body {
    padding: 20px 20px 20px 20px;
    color: #888; }

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px; }
  .control .caption {
    position: relative;
    top: -3px;
    font-size: 16px; }

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px; }

.control--radio .control__indicator {
  border-radius: 50%; }

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc; }

.control input:checked ~ .control__indicator {
  background: var(--primary-color); }

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #41cb56; }

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none; }

.control__indicator:after {
  font-family: 'icomoon';
  content: '\e5ca';
  position: absolute;
  display: none;
  font-size: 14px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }

.control input:checked ~ .control__indicator:after {
  display: block;
  color: #fff; }

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b; }

.control--checkbox input:disabled:checked ~ .control__indicator {
  background-color: var(--primary-color);
  opacity: .2; }

.gal-item {
  display: block;
  margin-bottom: 8px; }
  .gal-item img {
    border-radius: 4px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 1; }
  .gal-item:hover img {
    opacity: .5; }


.video-wrap {
  position: relative; }
  .video-wrap .play-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    .video-wrap .play-wrap > span {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .video-wrap:hover .play-wrap {
    width: 60px;
    height: 60px; }

.owl-single.dots-absolute .owl-dots {
  bottom: 40px; }
  .owl-single.dots-absolute .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.5); }

.owl-single .owl-dots {
  text-align: center;
  position: absolute;
  width: 100%; }
  .owl-single .owl-dots .owl-dot {
    display: inline-block;
    margin: 5px; }
    .owl-single .owl-dots .owl-dot span {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.2); }
    .owl-single .owl-dots .owl-dot.active span {
      background: var(--primary-color); }

.testimonial {
  max-width: 100%;
  text-align: center;
  margin-bottom: 30px; 
  }
  .testimonial .name {
    font-size: 18px;
    color: #000000; }
  .testimonial .poste {
    font-size: 14px;
    color: var(--accent-color); }
  .testimonial .img-wrap img {
    margin: 0 auto;
    width: 70px;
    border-radius: 50%; }

.list-check li {
  display: block;
  padding-left: 30px;
  position: relative; }
  .list-check li:before {
    content: "\e5ca";
    font-family: 'icomoon';
    position: absolute;
    top: -.3rem;
    font-size: 20px;
    left: 0; }

.list-check.primary li:before {
  color: var(--primary-color); }

.faq-section .input-group .form-control{
  height: 38px; 
  padding: 6px 12px; 
  box-sizing: border-box; 
}

.faq-section .input-group .form-control::placeholder {
  font-size: 14px; 
}

.faq-section .input-group .form-control {
  border: 1px solid #ced4da; 
}

.category-text {
  color: #757575;
  font-size: 0.8em;
}

.card {
  transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
  transform-origin: center; /* Ensure scaling centers on the card */
  border-color: #F2F2F2;}
  .card:hover {
    transform: scale(1.03);
    
  }
  .card .tag {
    display: inline-block;
    margin: 10px 5px 5px 5px;
    padding: 5px 10px;
    background-color: #f2f2f2;
    color: #333;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;}


.card-img-top {
  height: 180px;
  width: 100%; /* Ensure the image takes the full width */
  object-fit: contain; /* Change to 'contain' to ensure the full image is visible */
  background-color: #f7f7f7; /* Optional: Add a background color to fill the space around the image */
}


.card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;}

.card-title a {
  color: #333; 
  text-decoration: none; 
}

.card-title a:hover {
  text-decoration: underline; 
}

.card-text .text-muted {
  font-size: 0.9em; }

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

.article-header .reading-time {
  background-color: #eeeeee;
  color: #333;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.8em;
}

.article-title {
  font-size: 3rem; 
  color: #333;
  font-weight: 900; 
  margin-bottom: 10px;
  line-height: 1.2;
}

.article-description {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.author-image {
  border-radius: 50%;
  margin-right: 10px;
  width: 50px; /* Adjust size as needed */
  height: 50px;
}

.author-details {
  text-align: left;
}

.author-name {
  display: block;
  color: #000;
}

.reading-time,
.publish-date {
  font-size: 0.9rem;
  color: #757575;
}


/* Appliquer Source Serif 4 pour le contenu principal */
.article-content {
  max-width: 800px;
  margin: auto;
  padding: 20px; /* Ajoute un peu d'espace autour du contenu */
  line-height: 1.8; /* Augmente l'espacement des lignes pour une meilleure lisibilité */
  color: #000000;
}

/* Styles pour les titres */
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: 'DM Sans', sans-serif;
  color: #333;
  font-weight: 700; 
  line-height: 1.4;
  margin-bottom: 20px; /* Ajoute plus d'espace en dessous des titres */
}

.article-content h2 {
  font-size: 2.25em; /* Augmentez la taille pour plus d'impact visuel */
  margin-top: 40px;
}

.article-content h3 {
  font-size: 2em; /* Taille des h3 */
  margin-top: 35px;
}

.article-content h4 {
  font-size: 1.75em; /* Taille des h4 */
  margin-top: 30px;
}

.article-content h5 {
  font-size: 1.5em; /* Taille des h5 */
  margin-top: 25px;
}

.article-content h6 {
  font-size: 1.25em; /* Taille des h6 */
  margin-top: 20px;
}

.article-content p {
  font-weight: 400;
  font-size: 1.125em; /* Taille du texte ajustée */
  line-height: 1.8; /* Espacement des lignes plus grand */
  color: #242424; 
  margin-bottom: 25px; /* Plus d'espace en bas de chaque paragraphe */
}

/* Styles pour les listes */
.article-content ul,
.article-content ol {
  font-size: 1.125em;
  line-height: 1.8;
  color: #242424;
  margin-bottom: 25px;
  padding-left: 40px; /* Plus d'espace pour les listes */
}

.article-content ul li,
.article-content ol li {
  margin-bottom: 10px; /* Espace entre les éléments de liste */
}

.article-content strong {
  font-weight: bold; /* Mise en gras pour les textes forts */
}

/* Styles pour les images */
.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto; /* Centre l'image avec de l'espace autour */
}

.article-content figure {
  margin: 0;
}

.featured-image {
  margin: 0 auto 40px auto; /* Centre l'image et ajoute de l'espace en dessous */
  text-align: center; /* Centre le contenu à l'intérieur de la figure */
  max-width: 800px;
}

.featured-image img {
  width: 100%;
  height: auto; /* Assure que l'image est responsive */
  border-radius: 10px; /* Ajoute des coins arrondis à l'image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Ajoute une légère ombre pour un effet de profondeur */
}

.featured-image figcaption {
  font-size: 0.875em; /* Taille de police pour la légende */
  color: #888; /* Couleur de texte pour la légende */
  text-align: center; /* Centre le texte de la légende */
  margin-top: 10px; /* Espace au-dessus de la légende */
}

/* Style pour l'auteur et les articles connexes */
.article-footer {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #eaeaea;
  max-width: 800px;
  margin: auto;
}

.author-info {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
}

.author-bio h3 {
  font-family: 'DM Sans', sans-serif;
  color: #000;
  font-size: 1.5em;
}

.related-articles h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.75em;
  line-height: 1.2;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
}

.wp-element-button {
    padding: 7px 20px;
    font-family: 'DM Sans', sans-serif;
    border-radius: 30px;
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border: 2px solid transparent;
    margin-top: 20px;
    margin-bottom: 20px; }
    .wp-element-button:hover {
      border: 2px solid var(--primary-color) !important;
      background: transparent !important;
      color: var(--primary-color) !important; }


.profile-image-wrapper {
  position: relative;
  text-align: center;
  margin:20px;}
  .profile-image-wrapper h2{
    color: black
  }


.profile-image-wrapper .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 50%; /* Si vous voulez une image ronde */
  margin-bottom: 1rem;
}

.about-photo {
  max-width: 100%;
  text-align: right;
  margin-bottom: 30px; 
  }
  .about-photo .name {
    font-size: 18px;
    color: #000000; }
  .about-photo .poste {
    font-size: 14px;
    color: var(--accent-color); }
  

.horizontal-timeline .items {
  border-top: 3px solid #dee2e6;}
  .horizontal-timeline .items .items-list {
  display: block;
  position: relative;
  text-align: center;
  padding-top: 70px;
  margin-right: 0;}
  .horizontal-timeline .items .items-list:before {
  content: "";
  position: absolute;
  height: 36px;
  border-right: 2px dashed #dee2e6;
  top: 0;}
  .horizontal-timeline .items .items-list .event-date {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  width: 75px;
  margin: 0 auto;
  font-size: 0.9rem;
  padding-top: 8px;
  color: var(--accent-color);}

.horizontal-timeline [class^="bi"] {
  color: var(--primary-color); 
  font-size: xx-large;}

@media (min-width: 1140px) {
  .horizontal-timeline .items .items-list {
    display: inline-block;
    vertical-align: top;
    width: 24%;
    padding-top: 45px;
  }

  .horizontal-timeline .items .items-list .event-date {
    top: -40px;
  }}

  .privacy-popup {
    display: none;
    position: fixed;
    right: 20px;
    bottom: -300px; /* Start off screen */
    width: 350px; 
    height: 250px; 
    background: rgba(255, 255, 255, 0.932); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #000;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1000;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: bottom 0.5s ease-in-out; /* Animation for sliding in and out */
  }
  
  @media (max-width: 768px) {
    .privacy-popup {
      width: 90%;
      max-width: 300px;
    }      
  }
  
  .privacy-popup .close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    font-size: 24px;
  }
  .privacy-popup h3 {
    font-weight: 700;
  }
  

.link:hover {
  text-decoration: underline;
  color:var(--primary-color);
}

.header {
  display: flex;
  flex-direction: column;
  position:relative;
  text-align:left;
  justify-content: space-between;
  background: linear-gradient(60deg, var(--primary-color) 0%,var(--primary-color) 100%);
  color:white;
  min-height: 95vh;}
  .header h1 {
    font-size: 48px;
    color: white;}

.inner-header {
  flex: 1; /* Utilise l'espace disponible */
  width: 100%;
  padding: 0;
  margin-top: 20px;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: left;
}

.waves {
  width: 100%;
  height: auto; /* Hauteur automatique basée sur le contenu */
  min-height: 100px;
  max-height: 150px;
  margin-top: 20px;
}


/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .header {
    min-height: 80vh;}

  .waves {
    height:40px;
    min-height:40px;
  }
  
  .header h1 {
    font-size:38px;
  }
}



.circle {
  --circle-size: 40px;
  position: fixed;
  height: var(--circle-size);
  width: var(--circle-size);
  border: 1px solid white;
  border-radius: 100%;
  top: calc(var(--circle-size) / 2 * -1);
  left: calc(var(--circle-size) / 2 * -1);
  pointer-events: none;
}

.text-and-image {
  position: relative; 
  text-align: center; 
  padding-top: 100px; 
}


.handwritten-image {
  position: absolute; 
  top: 0; 
  right: 0; 
  width: auto;
  max-width: 150px; 
  height: auto;
}

.text-container p {
  margin: 0;
  padding: 0 50px; 
}



