html {
    overflow-y: scroll;
}

body {
  font-family: 'DM Sans' !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

  .header-bg {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 670px;
    overflow-x: hidden;
    background-size: cover;
    background-position: left bottom;
    margin-top: -66px;
  }
  
  /* Versions v1 et v2 partagent le même clip-path */
  .header-bg--v1,
  .header-bg--v2 {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 220px), 0% 100%);
  }
  
  @media (max-width: 991.98px) {
    .header-bg--v1,
    .header-bg--v2 {
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0% 100%);
    }
  }
  
  @media (max-width: 575.98px) {
    .header-bg--v1,
    .header-bg--v2 {
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0% 100%);
    }
  }
  
  /* Image spécifique pour v1 */
  .header-bg--v1 {
    background-image: url('../images/BackgroundHero.png');
  }
  
  /* Image spécifique pour v2 */
  .header-bg--v2 {
    background-image: url('../images/BackgroundHero.png');
  }
  
  /* Version full screen */
  .header-bg--full-screen {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-image: url('../images/BackgroundHero.png');
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  
  @media (max-width: 1199.98px) {
    .header-bg--full-screen {
      background-position: center center;
    }
  }
  
  @media (max-width: 575.98px) {
    .header-bg--full-screen {
      display: none;
    }
  }
  
  /* Hauteur plus courte */
  .header-bg--short {
    height: 690px;
  }
  
  @media (max-width: 767.98px) {
    .header-bg--short {
      height: 809px;
    }
  }
  
  hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: 0.25;
  }
  
  h6, h5, h4, h3, h2, h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
  }
  
  h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
  @media (min-width: 1200px) {
    h1 {
      font-size: 2.5rem;
    }
  }
  
  h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
  @media (min-width: 1200px) {
    h2 {
      font-size: 2rem;
    }
  }
  
  h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
  @media (min-width: 1200px) {
    h3 {
      font-size: 1.75rem;
    }
  }
  
  h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
  @media (min-width: 1200px) {
    h4 {
      font-size: 1.5rem;
    }
  }
  
  h5 {
    font-size: 1.25rem;
  }
  
  h6 {
    font-size: 1rem;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  abbr[title] {
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
  }
  
  address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
  }
  
  ol,
  ul {
    padding-left: 2rem;
  }
  
  ol,
  ul,
  dl {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  ol ol,
  ul ul,
  ol ul,
  ul ol {
    margin-bottom: 0;
  }
  
  dt {
    font-weight: 700;
  }
  
  dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
  }
  
  blockquote {
    margin: 0 0 1rem;
  }
  
  b,
  strong {
    font-weight: bolder;
  }
  
  small {
    font-size: 0.875em;
  }
  
  mark {
    padding: 0.1875em;
    background-color: var(--bs-highlight-bg);
  }
  
  sub,
  sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  a {
    color: var(--bs-link-color);
    text-decoration: underline;
  }
  a:hover {
    color: var(--bs-link-hover-color);
  }
  
  a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
  }
  
  pre,
  code,
  kbd,
  samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
  }
  
  pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
  }
  pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
  }
  
  code {
    font-size: 0.875em;
    color: var(--bs-code-color);
    word-wrap: break-word;
  }
  a > code {
    color: inherit;
  }
  
  kbd {
    padding: 0.1875rem 0.375rem;
    font-size: 0.875em;
    color: var(--bs-body-bg);
    background-color: var(--bs-body-color);
    border-radius: 0.25rem;
  }
  kbd kbd {
    padding: 0;
    font-size: 1em;
  }
  
  figure {
    margin: 0 0 1rem;
  }
  
  img,
  svg {
    vertical-align: middle;
  }
  
  table {
    caption-side: bottom;
    border-collapse: collapse;
  }
  
  caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #6c757d;
    text-align: left;
  }
  
  th {
    text-align: inherit;
    text-align: -webkit-match-parent;
  }
  
  thead,
  tbody,
  tfoot,
  tr,
  td,
  th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
  }
  
  label {
    display: inline-block;
  }
  
  button {
    border-radius: 0;
  }
  
  button:focus:not(:focus-visible) {
    outline: 0;
  }
  
  input,
  button,
  select,
  optgroup,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  button,
  select {
    text-transform: none;
  }
  
  [role=button] {
    cursor: pointer;
  }
  
  select {
    word-wrap: normal;
  }
  select:disabled {
    opacity: 1;
  }
  
  [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
    display: none !important;
  }
  
  button,
  [type=button],
  [type=reset],
  [type=submit] {
    -webkit-appearance: button;
  }
  button:not(:disabled),
  [type=button]:not(:disabled),
  [type=reset]:not(:disabled),
  [type=submit]:not(:disabled) {
    cursor: pointer;
  }
  
  ::-moz-focus-inner {
    padding: 0;
    border-style: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
  }
  
  legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
  }
  @media (min-width: 1200px) {
    legend {
      font-size: 1.5rem;
    }
  }
  legend + * {
    clear: left;
  }
  
  ::-webkit-datetime-edit-fields-wrapper,
  ::-webkit-datetime-edit-text,
  ::-webkit-datetime-edit-minute,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-year-field {
    padding: 0;
  }
  
  ::-webkit-inner-spin-button {
    height: auto;
  }
  
  [type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
  }
  
  /* rtl:raw:
  [type="tel"],
  [type="url"],
  [type="email"],
  [type="number"] {
    direction: ltr;
  }
  */
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  ::-webkit-color-swatch-wrapper {
    padding: 0;
  }
  
  ::file-selector-button {
    font: inherit;
    -webkit-appearance: button;
  }
  
  output {
    display: inline-block;
  }
  
  iframe {
    border: 0;
  }
  
  summary {
    display: list-item;
    cursor: pointer;
  }
  
  progress {
    vertical-align: baseline;
  }
  
  [hidden] {
    display: none !important;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    overflow-x: hidden;
  }
  
  .unhide-x {
    overflow-x: unset;
  }
  
  body {
    padding: 0;
    margin: 0 auto;
    color: #68718b;
    font-family: "DMSans Regular";
    overflow-x: hidden;
  }
  
  h1,
  h2,
  h3,
  h4,
  p {
    margin: 0;
  }
  
  h1 {
    font-size: 3.75rem;
    font-family: "DMSans Bold";
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  @media (max-width: 575.98px) {
    h1 {
      font-size: 2.5rem;
      line-height: 1.1;
    }
  }
  
  h2 {
    font-size: 3rem;
    font-family: "DMSans Bold";
    letter-spacing: -0.03em;
    line-height: 1.05;
  }
  @media (max-width: 575.98px) {
    h2 {
      font-size: 2rem;
      line-height: 1;
    }
  }
  
  h3 {
    font-size: 2rem;
    font-family: "DMSans Bold";
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  @media (max-width: 575.98px) {
    h3 {
      font-size: 1.5rem;
      line-height: 1.1;
    }
  }
  
  h4 {
    font-size: 1.5rem;
    font-family: "DMSans Bold";
    letter-spacing: -0.03em;
    line-height: 1.05;
  }
  @media (max-width: 575.98px) {
    h4 {
      font-size: 1.25rem;
      line-height: 1.1;
    }
  }
  
  a {
    text-decoration: none;
  }
  
  .pattern,
  .ornament {
    pointer-events: none;
  }
  
  .text-xl-bold {
    font-family: "DMSans Bold";
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
  
  .text-xl-medium {
    font-family: "DMSans Medium";
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
  
  .text-xl-regular {
    font-family: "DMSans Regular";
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
  
  .text-l-bold {
    font-family: "DMSans Bold";
    font-size: 1.125rem;
    line-height: 1.35;
  }
  
  .text-l-regular {
    font-family: "DMSans Regular";
    font-size: 1.125rem;
    line-height: 1.35;
  }
  
  .text-m-bold {
    font-family: "DMSans Bold";
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .text-m-medium {
    font-family: "DMSans Medium";
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .text-m-regular {
    font-family: "DMSans Regular";
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .text-s-bold {
    font-family: "DMSans Bold";
    font-size: 0.875rem;
    line-height: 1.4;
  }
  
  .text-s-medium {
    font-family: "DMSans Medium";
    font-size: 0.875rem;
    line-height: 1.4;
  }
  
  .text-s-regular {
    font-family: "DMSans Regular";
    font-size: 0.875rem;
    line-height: 1.4;
  }
  
  .text-xs-bold {
    font-family: "DMSans Bold";
    font-size: 0.75rem;
    line-height: auto;
  }
  
  .text-xs-regular {
    font-family: "DMSans Regular";
    font-size: 0.75rem;
    line-height: auto;
  }
  
  @keyframes slideToRight {
    from {
      transform: translateX(-100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slideToLeft {
    from {
      transform: translateX(100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slideToTop {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes continousUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100%);
    }
  }
  .home--logo {
    position: relative;
    padding: 80px 0px;
  }
  @media (max-width: 1199.98px) {
    .home--logo {
      padding: 40px 0px;
    }
  }
  .home__logo {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
    flex-wrap: wrap;
  }
  @media (max-width: 767.98px) {
    .home__logo {
      gap: 15px;
    }
    .home__logo img:last-child {
      display: none;
    }
  }
  @media (max-width: 575.98px) {
    .home__logo {
      justify-content: center;
      align-items: center;
      grid-column-gap: 15px;
      grid-row-gap: 20px;
    }
  }
  @media (max-width: 375.98px) {
    .home__logo {
      gap: 0px;
    }
    .home__logo img {
      transform: scale(0.6);
      margin: 0px -20px;
    }
  }
  @media (max-width: 319.98px) {
    .home__logo img {
      margin: 0px -27px;
    }
  }
  .home__btn-3 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
  }
  .home--why-growtech {
    position: relative;
    width: 100%;
    padding: 80px 0px;
  }
  @media (max-width: 1199.98px) {
    .home--why-growtech {
      padding: 80px 20px;
    }
  }
  .home--why-growtech h2 {
    max-width: 576px;
    color: #14358a;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .home__content-why {
    position: relative;
    height: 597px;
    display: flex;
    margin-top: 83px;
    gap: 30px;
  }
  @media (max-width: 1199.98px) {
    .home__content-why {
      margin-top: 23px;
      justify-content: center;
      align-items: center;
    }
  }
  @media (max-width: 991.98px) {
    .home__content-why {
      height: 100%;
    }
  }
  @media (max-width: 767.98px) {
    .home__content-why {
      flex-direction: column;
      gap: 64px;
    }
  }
  .home--feature {
    position: relative;
    width: 100%;
    padding: 80px 0px;
  }
  .home--feature h2 {
    max-width: 733px;
    color: #14358a;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 991.98px) {
    .home--feature {
      padding: 80px 20px;
    }
  }
  .home__feature {
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 406px;
    width: 100%;
  }
  @media (max-width: 991.98px) {
    .home__feature {
      flex-direction: column-reverse;
      gap: 50px;
      height: auto;
    }
  }
  @media (max-width: 991.98px) {
    .home__feature:nth-child(2) {
      flex-direction: column;
    }
  }
  
  .home__feature__detail {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 45%;
    padding-top: 20px;
  }
  .btn--feature{
    margin-top: 2.5rem !important;
    width: 153.12290954589844;
    height: 64.12290954589844;
    border-radius: 10.03px;
    gap: 4.01px;
    padding: 20.06px;
    top: 15px;
    background: #F19100;
    width:40%;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 16.8px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFF
  }
  
  .btn--feature:hover{
    background: #999999;
    color: #FFFF
  }
  .home__feature__illustration--v3 img{
    margin-top: -8.5rem !important;
    width: 733.6px;
    height: 713.0px;
  }
  .mega-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 100vw; /* prend toute la largeur de la fenêtre */
    z-index: 999;
    border-top: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
    transition: all 0.3s ease;
  }
  
  .mega-menu.show {
    display: block;
  }
  
  .js-megamenu.d-none {
   display: none !important;
  }
  
  .mega-menu-arrow {
    position: absolute;
    top: -10px; /* juste au-dessus du menu */
    width: 0;
    height: 0;
    left: 43%; /* par défaut centré */
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff; /* couleur du fond du menu */
    z-index: 1000;
  }
  
@media screen and (min-width: 991px) and (max-width: 1800px) {
  .navbar__links {
    gap: 0px !important;
  }
}

  @media (max-width: 1199.98px) {
    .home__feature__detail {
      padding-top: 0px;
    }
  }
  @media (max-width: 991.98px) {
    .home__feature__detail {
      width: 100%;
      justify-content: center;
      align-items: center;
      text-align: center;
      width: 452.3857727050781px;
      height: 347.20001220703125px;
      gap: 25.2px;
  
    }
  }
  .home__feature__detail .icon-large {
    margin-bottom: 24px;
  }
  .home__feature__detail__gap {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: center;
  }
  @media (max-width: 991.98px) {
    .home__feature__detail__gap {
      width: 100%;
      justify-content: center;
      align-items: center;
      text-align: center;
      flex-direction: column;
    }
  }
  .home__feature__detail__gap .icon-large {
    margin-bottom: 0px;
  }
  .home__feature__detail h2 {
    margin-top: -41px;
    color: #ffffff;
    max-width: 329px;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 38.4px;
    line-height: 111%;
    letter-spacing: -6%;
    color: #FFFF;
    margin-bottom: 10px;
  }
  
  
  @media (max-width: 991.98px) {
    .home__feature__detail h2 {
      margin-top: 0px;
    }
  }
  .home__feature__detail h3 {
    color: #006fba;
    text-transform: capitalize;
  }
  .home__feature__detail p.text-m-regular {
    color: #68718b;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16.8px;
    line-height: 140%;
    letter-spacing: 0%;
  
  }
  .home__feature__detail p.text-m-regular.text {
    color: #CDD0D8;
    margin-top: 14px;
    max-width: 492px;
  }
  .home__feature__detail__btn {
    margin-top: 48px;
    width: -moz-max-content;
    width: max-content;
  }
  .home__feature__illustration {
    position: relative;
    height: 100%;
    width: 45%;
  }
  @media (max-width: 991.98px) {
    .home__feature__illustration {
      width: 100%;
      height: 300px;
    }
  }
  .home__feature__illustration img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .home__container-feature {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 90px;
    padding-top: 64px;
  }
  @media (max-width: 1199.98px) {
    .home__container-feature {
      gap: 48px;
    }
  }
  .home--integrations {
    position: relative;
    width: 100%;
  }
  .home--integrations__bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(84deg, #1b45b4, #1c2792);
    -webkit-clip-path: polygon(0 220px, 100% 0, 100% calc(100% - 220px), 0% 100%);
            clip-path: polygon(0 220px, 100% 0, 100% calc(100% - 220px), 0% 100%);
  }
  @media (max-width: 991.98px) {
    .home--integrations__bg {
      -webkit-clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0% 100%);
              clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0% 100%);
    }
  }
  @media (max-width: 575.98px) {
    .home--integrations__bg {
      -webkit-clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0% 100%);
              clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0% 100%);
    }
  }
  .home--integrations .pattern {
    position: absolute;
    background-image: url("{$WEB_ROOT}/templates/{$template}/home-v2-ornament-integrations.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1760px;
    aspect-ratio: 1.68/1;
    top: 0;
    left: -209px;
  }
  .home__integrations {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-top: 250px;
    padding-right: 0px;
    padding-bottom: 150px;
    padding-left: 0px;
  }
  @media (max-width: 1199.98px) {
    .home__integrations {
      /*padding-top: 100px;*/
      padding-bottom: 50px;
    }
  }
  .home__integrations__white {
    color: #ffffff;
    text-align: center;
  }
  .home__integrations__blue {
    color: #14358a;
    text-align: center;
  }
  @media (max-width: 575.98px) {
    .home__integrations__blue {
      margin-left: 20px;
      margin-right: 20px;
    }
  }
  .home__integrations__sosmed {
    position: relative;
    display: flex;
    margin-top: 64px;
  }
  .home__integrations__sosmed--v3 {
    position: relative;
    display: flex;
  }
  @media (max-width: 991.98px) {
    .home__integrations__sosmed--v3 {
      flex-direction: column-reverse;
    }
  }
  @media (max-width: 575.98px) {
    .home__integrations__sosmed--v3 {
      padding: 0px 20px;
    }
  }
  @media (max-width: 991.98px) {
    .home__integrations__sosmed {
      flex-direction: column;
    }
  }
  @media (max-width: 575.98px) {
    .home__integrations__sosmed {
      padding: 0px 20px;
    }
  }
  .home__integrations__sosmed .gap {
    gap: 7px;
  }
  @media (max-width: 1199.98px) {
    .home__integrations__sosmed .gap {
      gap: 40px;
    }
  }
  @media (max-width: 991.98px) {
    .home__integrations__sosmed .gap-warp {
      flex-wrap: wrap;
      gap: 40px;
    }
  }
  .home--article {
    position: relative;
    width: 100%;
    padding: 5rem 0;
  }
  @media (max-width: 767.98px) {
    .home--article {
      padding: 4rem 0;
    }
  }
  @media (max-width: 575.98px) {
    .home--article {
      padding-inline: 1.25rem;
    }
  }
  .home__article {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .home__article__blue {
    color: #14358a;
    text-align: center;
    max-width: 770px;
    align-self: center;
  }
  .home__article__sosmed {
    position: relative;
    display: flex;
    margin-top: 64px;
  }
  .home__article__sosmed--v3 {
    position: relative;
    display: flex;
  }
  @media (max-width: 991.98px) {
    .home__article__sosmed--v3 {
      flex-direction: column-reverse;
    }
  }
  @media (max-width: 575.98px) {
    .home__article__sosmed--v3 {
      padding: 0px 20px;
    }
  }
  @media (max-width: 991.98px) {
    .home__article__sosmed {
      flex-direction: column;
    }
  }
  @media (max-width: 575.98px) {
    .home__article__sosmed {
      padding: 0px 20px;
    }
  }
  .home__article__sosmed .gap {
    gap: 7px;
  }
  @media (max-width: 1199.98px) {
    .home__article__sosmed .gap {
      gap: 40px;
    }
  }
  @media (max-width: 991.98px) {
    .home__article__sosmed .gap-warp {
      flex-wrap: wrap;
      gap: 40px;
    }
  }
  .home__article .home__content-why--article1 {
    position: relative;
    display: flex;
    margin-top: 64px;
    gap: 24px;
  }
  @media (max-width: 991.98px) {
    .home__article .home__content-why--article1 {
      flex-direction: column;
      height: 100%;
    }
  }
  
  .home__content-why__details {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0.5;
    gap: 64px;
  }
  
  @media (max-width: 991.98px) {
    .home__content-why__details__detail {
      display: flex;
      text-align: center;
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
  }
  .home__content-why__details__detail h4 {
    max-width: 200px;
    color: #006fba;
    margin-top: 24px;
    text-transform: capitalize;
  }
  .home__content-why__details__detail p.text-m-regular {
    max-width: 230px;
    color: #68718b;
    margin-top: 10px;
  }
  .home__content-why__details__detail--article {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  @media (max-width: 575.98px) {
    .home__content-why__details__detail--article {
      padding: 0px 20px;
    }
  }
  
  .home__content-why__details--article {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0.5;
    gap: 24px;
  }
  
  .home--v1 {
    position: relative;
    width: 100%;
    padding-bottom: 40px;
  }
  @media (max-width: 1199.98px) {
    .home--v1 {
      padding: 0px 20px;
    }
  }
  .home__title {
    position: relative;
    display: flex;
    padding-top: 100px;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
  .home__title h2 {
    font-family: DM Sans;
    font-weight: 600;
    font-size: 60px;
    line-height: 105%;
    letter-spacing: -3%;
    text-align: center;
    color: #ffffff;
    max-width: 1040px;
    margin-bottom: 15px;
  }
  .home__title p {
   font-family: DM Sans;
   max-width: 1040px;
    color: #e6e8ec;
    margin-top: 20px;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 15px;
  }
  .home__button {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 44px;
  }
  @media (max-width: 575.98px) {
    .home__button {
      flex-direction: column;
      width: 100%;
    }
    .home__button .btn {
      width: 100%;
    }
  }
  .home__button .btn {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    transition: 0.2s;
  }
  .home__ilustration {
    position: relative;
    margin: auto;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home__ilustration img {
    max-width: 92.3636363636%;
    height: auto;
    box-shadow: 16px 32px 74px rgba(126, 138, 253, 0.08);
  }
  .home__content-why--article {
    position: relative;
    height: 597px;
    display: flex;
    margin-top: 64px;
    gap: 24px;
  }
  @media (max-width: 991.98px) {
    .home__content-why--article {
      flex-direction: column;
      height: 100%;
    }
  }
  .home__content-why__details--about {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0.5;
    gap: 24px;
  }
  @media (max-width: 991.98px) {
    .home__content-why__details__detail--about {
      display: flex;
      text-align: center;
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
  }
  .home__content-why__details__detail--about h4 {
    color: #006fba;
    margin-top: 24px;
    text-transform: capitalize;
  }
  .home__content-why__details__detail--about p.text-m-regular {
    color: #68718b;
    margin-top: 10px;
  }
  .home__content-why__details__detail--about-1 {
    text-align: center;
  }
  .home__content-why__details__detail--about-1 .icon-large {
    margin: auto;
  }
  .home__content-why__details__detail--about-1 h4 {
    color: #022943;
    margin: auto;
    margin-top: 24px;
    text-transform: capitalize;
  }
  .home__content-why__details__detail--about-1 p.text-m-regular {
    color: #68718b;
    margin: auto;
    margin-top: 10px;
    max-width: 287px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .home__content-why__illustration {
    position: relative;
    flex: 1;
    height: 100%;
  }
  @media (max-width: 991.98px) {
    .home__content-why__illustration {
      display: none;
    }
  }
  .home__content-why__illustration img {
    position: absolute;
    height: 120%;
    width: 120%;
    top: -90px;
    left: -50px;
  }
  .home__btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  @media (max-width: 1199.98px) {
    .home__btn {
      display: none;
    }
  }
  .home__btn--about {
    margin-left: auto;
    margin-right: auto;
    margin-top: -24px;
  }
  @media (max-width: 575.98px) {
    .home__btn--about {
      width: 100%;
    }
  }
  .home__btn-2 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  
  .m-b-4 {
    margin-bottom: -210px;
  }
  @media (max-width: 991.98px) {
    .m-b-4 {
      margin-bottom: -180px;
    }
  }
  @media (max-width: 767.98px) {
    .m-b-4 {
      margin-bottom: -160px;
    }
  }
  .navbar {
    transition: all 0.3s ease-in-out;
    width: 831;
  height: 22;
  gap: 30px;
  
  }
  
    .domain-box-wrapper{
      left: -30px;
      position: relative;
    }
    
      
  .domain-box {
    background: #1224aa; /* bleu foncé */
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    max-width: 1132px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 1165px;
    height: 500px;
    gap: 64px;
    border-radius: 20px;
    border-width: 3px;
    padding: 48px;
    border: 3px solid #FFFFFF
  
  }
  
  .domain-box p{
    font-family: DM Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 10px;
  
  }
  
  .domain-box h3{
    font-family: DM Sans;
    font-weight: 700;
    font-size: 30px;
    line-height: 105%;
    letter-spacing: -3%;
    text-align: center;
  
  }
  
  .domain-box {
    margin-top: 5px;
    flex-direction: column;
    align-items: center;     /* horizontal */
    height: 100%; /* s'assurer qu'elle prend la hauteur disponible */
    text-align: center;
  }
  
  .domain-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: -20px;
  }
  .domain-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .domain-box .input-wrapper {
    position: relative;
    width: 100%;
    max-width: 628px;
  }
  
  .domain-box input[type="text"] {
    width: 100%;
    height: 70px;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 8px 180px 8px 28px; 
    font-size: 16px;
    box-sizing: border-box;
    margin-top: 15px;
  }
  
  .domain-box button[type="submit"] {
    position: absolute;
    top: 57%;
    right: 8px;
    transform: translateY(-50%);
    height: 54px;
    width: 155px;
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 16px;
    border: none;
    background-color: #f19100;
    color: white;
    z-index: 10;
    white-space: nowrap;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
  
  }
  
  .domain-box button[type="submit"]:hover {
    background-color: #0056b3;
  }
  
  
  
    .custom-domain-wrapper {
      position: relative;
      width: 100%;
      max-width: 628px;
      margin-top: -46px;
    }
  
    .custom-domain-input {
      width: 100%;
      height: 70px;
      border-radius: 10px;
      border: 1px solid #ccc;
      padding: 8px 170px 8px 28px; /* la droite laisse de l'espace pour le bouton */
      font-size: 16px;
    }
  
    .custom-domain-button {
      position: absolute;
      top: 50%;
      right: 8px;
      transform: translateY(-50%);
      height: 54px;
      width: 155px;
      border-radius: 10px;
      padding: 16px 32px;
      font-size: 16px;
      border: none;
      color: white;
      z-index: 10;
      white-space: nowrap;
    }
  
    .custom-domain-wrapper {
      position: relative;
      width: 100%; /* Prend toute la largeur disponible */
      max-width: 628px;
      margin-top: -40px !important;
    }
  
  .custom-domain-input {
    width: 100%;
    height: 70px;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 8px 190px 8px 28px; /* padding-right ajusté pour libérer l'espace du bouton */
    font-size: 16px;
    box-sizing: border-box;
  }
    
  .domain-form{
    text-align: center;
  }
  
  .btn-orange {
    background-color: #f19100;
    color: white;
    border: none;
  
    font-family: 'DM Sans', sans-serif;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
  
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
  
  
  }
  
  .domain-search {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  
  .domain-box input ::placeholder{
    width: 437;
    height: 22;
    gap: 8px;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
  }
  
  .domain-actions .btn.active {
    background-color: #f19100;
    color: white;
    border: none;
  }
  
  .domain-offers {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 1100px;
    height: 60px;
  
    justify-content: space-between;
  
  }
  
  .domain-item {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    width: 100px;
    height: 76px;
    gap: 10px;
  
  }
  
  .domain-item h4 {
  
    font-size: 34px;
    color: #03133D !important;
    margin-bottom: 8px;
  
    font-family: DM Sans;
    font-weight: 700;
    font-size: 40px;
    line-height: 105%;
    letter-spacing: -3%;
  
  }
  
  .domain-item p {
    font-size: 16px;
    color: #0070f3;
    font-weight: bold;
    width: 118px;
    height: 24px;
    gap: 8px;

  
  }
  
  .hosting-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0px 20px 40px;
  }
  
  .hosting-header h2 {
    font-family: 'DM Sans';
    font-weight: 100px;
    font-size: 48px;
    line-height: 105%;
    letter-spacing: -0.03em; /* -3% */
    color: #000D4A;
    margin-bottom: 20px;
    text-align: center;
  
  }
  
  .hosting-header p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #5A5A5A;
    margin: 0 auto;
  }
  .hero {
    display: flex;
    align-items: center;     /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    text-align: center;
    min-height: 80vh;         /* Ajuste selon la hauteur souhaitée */
    padding: 2rem;
  }
  
  .hero-content {
    max-width: 800px;
  }
  
  .js-dropdown-box {
    display: none;
    position: absolute;
    z-index: 999;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 1rem;
  }
  
  .js-dropdown-box.active {
    display: block;
  }
  
  /* style carouss */
  .dots-wrapper {
    display: flex;
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
    cursor: pointer;
  }
  
  .dot.active {
    background: #333;
  }
  
  .custom-carousel-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  
  .testimonials.pattern {
    position: absolute;
    z-index: -1;
    width: 2578px;
    height: 848.5px;
    background-image: url("../images/license-pattern.svg");
    background-size: contain;
    background-position: center;
    top: -14.3125rem;
    left: -21.0625rem;
  }
  .testimonials.container {
    max-width: 625px;
    display: flex;
    flex-direction: column;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
  @media (max-width: 767.98px) {
    .testimonials.container {
      padding: 4rem 0;
    }
  }
  @media (max-width: 575.98px) {
    .testimonials.container {
      padding-inline: 1.25rem;
    }
  }
  .testimonials.container h1, .testimonials.container .h1 {
    color: #14358a;
    margin-bottom: 0;
  }
  @media (min-width: 992px) {
    .testimonials.container h1, .testimonials.container .h1 {
      font-size: 3.75rem;
    }
  }
  .custom--shadow{
    box-shadow: 8px 16px 52px 0px #7E8AFD14;
  }
  div.carousel-item:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1){
    box-shadow: 8px 16px 52px 0px #7E8AFD14;
  }
  .card-body--type-5 {
    background-color: #fff;
    line-height: 110%;
    letter-spacing: -0.03em; /* équivalent de -3% */
    padding: 1.5rem;
  }
  
  .card-body--type-5 h5{
    color: #14358a;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
  }
  
  .ero-contact{
    background: #EDF1FC4D;
  }
  
  .ero-contact h3{
    color: #03133D;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 32px;
    line-height: 105%;
    letter-spacing: -3%;
  }
  
  .ero-contact2{
    width: 550px;
  height: 679px;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 64px;
  }
  
  .ero-contact2 h3{
    color: #03133D;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 32px;
    line-height: 105%;
    letter-spacing: -3%;
    color: #03133D;
  }
  .ero-contact2 h5{
    font-family: DM Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 110.00000000000001%;
    letter-spacing: -3%;
    color: #03133D;
  
  
  }
  .ero-contact2 p{
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
  }
  
  .ero-btn-orange{
    width: 422;
    height: 54;
    gap: 4px;
    border-radius: 10px;
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px;
    background-color: #F19100;
    border-color: #F19100;
    color: white;
  
  }
  .ero-btn-orange:hover {
    background-color: #d87f00;
    border-color: #d87f00;
  }
  .metier-icon{
    width: 64px;
  height: 64px;
  gap: 10px;
  border-radius: 10px;
  padding-top: 13px;
  padding-right: 12px;
  padding-bottom: 13px;
  padding-left: 12px;
  background: linear-gradient(52.37deg, #0097FE -5.7%, #14358A 94.69%);
  color: #FFFFFF;
  
  
  
  }
  .service-bloc{
    width: 315px;
    height: 300px;
    top: 293px;
    left: 660px;
    gap: 8px;
    border-radius: 10px;
    padding: 32px;
    background: #FFFFFF;
    box-shadow: 8px 16px 52px 0px #7E8AFD14;
  
  }
  
  .service-bloc p{
    font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  width: 256px;
  height: 88px;
  
  }
  .metiers-title,.advantage-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 105%;
    letter-spacing: -3%;
    color: #14358A;
  }
  
  .metiers-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #444;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 6.5rem !important
  }
  
  .service-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #006FBA;
  }
  
  .service-desc {
    font-size: 16px;
    color: #666;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    width: 256px;

  }
  
  .btn--primary {
    background-color: #F19100;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
  
  .btn--primary:hover {
    background-color: #d87f00;
  }
  .dots-wrapper {
    display: flex;
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
    cursor: pointer;
  }
  
  .dot.active {
    background: #1C2792;
  
  }
  
  .custom-carousel-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-carrousel{
    background: #F19100;
    color: #ffffff;
    width: 35%;
  }
  .card--article-type-5 {
  min-height: 380px; /* plus haute */
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .btn-inactive {
    background-color: #999999 !important;
    color: #ffffff !important;
    border-color: #999999 !important;
    pointer-events: none;
    opacity: 0.8;
  }
  
  .card--article-type-5 .card-img-top {
  height: 220px;
  object-fit: cover;
  }
  
  .card-body--type-5 {
  padding: 1.5rem;
  }
  
  .card-title--type-5 {
  font-size: 1.25rem;
  font-weight: 600;
  }
  
  .astuce-box{
    width: 1100px;
  height: 100px;
  justify-content: space-between;
  
  }
  .astuce-title{
    width: 650px;
  height: 100px;
  color: #14358A;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 105%;
  letter-spacing: -3%;
  }
  
  .astuces-btn{
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  gap: 4px;
  background: #F19100;
  width: 225;
  height: 54px;
  border-radius: 10px;
  gap: 4px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  
  color: #FFFFFF;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  margin-left: 205px;
  
  
  }
  .partner-scroller {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .partner-track {
    display: flex;
    width: max-content;
    transition: transform 20s linear;
  text-align: center;
  }
  
  .partner-scroller:hover .partner-track {
    transform: translateX(-50%);
  }
  
  .partner-item {
    flex: 0 0 auto;
    margin: 0 30px;
  }
  
  .partner-item img {
    height: 100px;
    object-fit: contain;
    transition: filter 0.3s;
  }
  
  .partner-item img:hover {
    filter: grayscale(0%);
  }
  
  
  .partner-title{
  font-family: DM Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 105%;
  letter-spacing: -3%;
  text-align: center;
  color: #14358A;
  
  }
  @keyframes scroll-left {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
  }
  .card-title--type-7{
    font-family: DM Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 110.00000000000001%;
    letter-spacing: -3%;
    color: #323232;
  }
  .home-v2-article-section{
    margin-bottom: 175px;
  }
  
  .contact-section .container{
    box-shadow: 16px 32px 74px 0px #7E8AFD14;
  
  }
  .card-body--type-5{
    box-shadow: 16px 32px 74px 0px #7E8AFD14;
  
  }
  
  .icon--bs{
    color:#1C2792;
  ;
  }
  a{
    color: #006FBA;
  }
  
  .shadow-custom {
    box-shadow: 8px 16px 52px 0px #7E8AFD14;
  }
  .advance--title{
    width: 275px;
    gap: 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 110.00000000000001%;
    letter-spacing: -3%;
    color: #006FBA;
  }
  
  .contact-us--title{
    font-family: DM Sans;
  font-weight: 700;
  font-size: 32px;
  line-height: 105%;
  letter-spacing: -3%;
  
  }
  .input-group .form-control {
    border-top-right-radius: 10;
    border-bottom-right-radius: 10;
  }
  
  .input-group .btn {
    border-top-left-radius: 10;
    border-bottom-left-radius: 10;
  }
  .ero-result--header{
    margin-top: 100px;
  }
  .benefit-block{
    width: 538px;
    height: 202px;
    gap: 24px;
    border-radius: 10px;

  }
  .userBenefits-title{
    width: 1100px;
    height: 50px;
    margin-top: -80px;
    left: 269px;
    color: #FFFFFF;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 48px;
    line-height: 105%;
    letter-spacing: -3%;
    text-align: center;
    margin-bottom: 18px;
    
  }
  .userBenefits-item--title{
    font-family: DM Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 110.00000000000001%;
    letter-spacing: -3%;
    color: #006FBA;    
  }
  .userBenefits-item--desc{
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #68718B;    
  }

  .Pricing-title{
    font-family: DM Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 105%;
  letter-spacing: -3%;
  text-align: center;
  color: #14358A;
  }

  .Pricing-bloc{
  top: 2527px;
  left: 167px;
  text-align: center;

  }
  .pricing-item {
    width: 400px;
    /*top: 92px;*/
    left: 1px;
    gap: 48px;
    border-radius: 10px;
    padding: 32px;
    background: #FFFFFF;
    box-shadow: 16px 32px 74px 0px #7E8AFD14;
    border: #000;

  }

  .card-title{
    font-family: DM Sans;
  font-weight: 700;
  font-size: 32px;
  line-height: 105%;
  letter-spacing: -3%;
  color: #006FBA;
  }
  .princing-btn{
    width: 316px;
    height: 54px;
    gap: 4px;
    border-width: 1px;
    border-radius: 5px;
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px;

    background: #F19100;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;

  }
  .card-price{
    font-family: DM Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 110.00000000000001%;
    letter-spacing: -3%;
    color: #03133D;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
.list-unstyled{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
  .offer-features li{
    font-family: DM Sans;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #03133D;
    margin-bottom: 8px;
  }

  .use-case--box{
    margin-top: 11.5rem !important;
    padding-right: 13rem !important;
    padding-left: 13rem !important;

  }

  .use-case--box .home__article{
    margin-bottom: 46px !important;
  }

  .use-case--img{
    width: 399px;
    height: 196px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .use-case--title{
    font-family: DM Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 110.00000000000001%;
    letter-spacing: -3%;
    color: #006FBA;
  }
  .btn-tarification, .btn-use-case{
    width: 221px;
    height: 54px;
    border-radius: 10px;
    gap: 4px;
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px;

  }
.btn-use-case{
  border: 1px solid #FFFFFF;
  color: #FFFFFF;


}

  .btn-tarification{
    background: #F19100;
    color: #FFFFFF;

  }

  .about-hero-image-wrap {
		top: 398.6px !important;
		left: 198px;

	}

	.about-hero-image-wrap img {
		border-radius: 10px;
	}

  .shimmer {
    position: relative;
    overflow: hidden;
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    /*background-repeat: no-repeat;*/
    background-size: 800px 104px;
    animation: shimmer 1.2s infinite linear;
    min-height: 50px;
    border-radius: 10px;
}

@keyframes shimmer {
    0% {
        background-position: -800px 0;
    }
    100% {
        background-position: 800px 0;
    }
}


.cart-summary-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.offer-title{
  font-family: DM Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 105%;
  letter-spacing: -3%;
  color: #14358A;
  margin-top: 80px;
}
.offer-header p{
  font-family: DM Sans;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  letter-spacing: 0%;
  color: #000000;
}

.header-section{
  position: relative;
  left: 66px;

}

.header-section p{
  font-family: DM Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: 0%;
}

.header-section h2{
  font-family: DM Sans;
  font-weight: 700;
  font-size: 50px;
  line-height: 105%;
  letter-spacing: -3%;
}

.logo-section {
  position: relative;
  left: 108px;
  top: 3px;
}

.btn--metiers{
  width: 197px;
height: 55px;
top: 2267px;
left: 340px;
gap: 4px;
border-radius: 10px;
padding: 20px;
background: #F19100;
color: #FFFFFF;

font-family: DM Sans;
font-weight: 700;
font-size: 16px;
line-height: 140%;
letter-spacing: 0%;

}
.footer__links__pages__title{
  font-family: DM Sans;
font-weight: 700;
font-size: 20.19px;
line-height: 135%;
letter-spacing: 0%;

}
.footer__links__pages__links{
  width: 233px;

}
.text-header{
  margin-top: 50px;
  font-family: DM Sans;
font-weight: 700;
font-size: 63px !important;
line-height: 110.00000000000001%;
letter-spacing: -3%;
text-align: center;
color: #FFFFFF !important;
}
.c4a-label{
  font-family: DM Sans !important;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 140%;
letter-spacing: 0%;
color: #000 !important;
}
.custom-select{
  height: 46px;
  gap: 8px;
  border-radius: 10px !important;
  border-width: 1px !important;
  padding: 10px 24px;

}
.irs-single{
  background: #F19100 !important;
  padding: 3px 5px !important;
}
.irs-single ::after{
  border-top-color: #F19100 !important;
}
.irs-bar-edge{
  background: #F19100 !important;
}
.irs-bar{
  background: #F19100 !important;
}
#order-standard_cart .order-summary h2 {
  background-color: #fff !important;
}

#order-standard_cart .order-summary h2 {
  margin: 0;

  padding: 10px;

  color: #1B45B4 !important;

  text-align: left !important;
  font-family: DM Sans !important;
  font-weight: 700 !important;
  font-size: 32px !important;
  line-height: 110.00000000000001% !important;
  letter-spacing: -3%;
  

}
.total-due-today{
  font-family: DM Sans !important;
font-weight: 700 !important;
font-size: 18px !important;
line-height: 105% !important;
letter-spacing: -3%;
text-align: right;

}
.amt{
  margin-top: 12px !important;
  font-family: DM Sans !important;
font-weight: 700 !important;
font-size: 23px !important;
line-height: 105% !important;
letter-spacing: -3% !important;
color: #1C2792 !important;

}
#btnCompleteProductConfig, .btn-submit{
height: 54px !important;
gap: 4px;
border-radius: 10px;
padding-top: 16px;
padding-right: 32px;
padding-bottom: 16px;
padding-left: 32px;
background: #F19100;
border-color: #F19100 !important;

}
.form-label{
  font-family: DM Sans;
font-weight: 700;
font-size: 16.8px;
line-height: 140%;
letter-spacing: 0%;
color: #03133D;
}
.reset-content{
  margin-top: 10rem !important;
}
.reset-title{
  font-family: DM Sans;
font-weight: 700;
font-size: 33.6px;
line-height: 105%;
letter-spacing: -3%;
color: #03133D;
}
.reset-card{
width: 483px !important;
border-radius: 10.5px;
padding-top: 50.4px;
padding-bottom: 50.4px;

}

/* register */
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FEF9F0;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}
.inputForm{
  
  height: 56px;
  border-radius: 10px;
  gap: 8px;
  border-width: 1px;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  

}
.step-label {
  color: #03133D;
  white-space: nowrap;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;

}
.landing{
  margin-top: 10rem !important;
}

.step-circle.active {
  background-color: #f19100;
  color: white;
  border: 2px solid white;
}

#registration {
  position: relative;
  margin-top: 122px !important;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 8px 16px 52px 0px #7E8AFD14;
  

}
.card-result{
  border-radius: 10px;
  box-shadow: 8px 16px 52px 0px #7E8AFD14 !important;
  
  
      }
.field {
  width: 517;
  height: 58.79999542236328px;
  gap: 8.4px;
  border-radius: 10.5px;
  border-width: 1.05px;
  padding-top: 16.8px;
  padding-right: 25.2px;
  padding-bottom: 16.8px;
  padding-left: 25.2px;

}

.form-header {
  font-family: DM Sans;
  font-weight: 700;
  font-size: 33.6px;
  line-height: 110.00000000000001%;
  letter-spacing: -3%;
  color: #231F20;
}

.btn-navigate-form-step, .btn-submit, .btn-generate{
width: 398.9999694824219px;
height: 57.599998474121094px;
gap: 4.2px;
border-radius: 10.5px;
padding-top: 16.8px;
padding-right: 33.6px;
padding-bottom: 16.8px;
padding-left: 33.6px;
font-family: DM Sans;
font-weight: 700;
font-size: 16.8px;
line-height: 140%;
letter-spacing: 0%;
background-color: #f19100;
color: #fff;
}

.form-stepper-completed .step-circle {
background-color: #28a745; 
color: white;
border: 2px solid white;
}

.stepped-process-item {
position: relative;
}

.stepped-process-item:not(:last-child)::after {
content: "";
position: absolute;
top: 50%;
right: 21px;
transform: translateY(-50%);
width: 17%;
height: 2px;
background-color: #201616;
z-index: 0;
}

.step-circle {
z-index: 1;
position: relative;
}
.btn-previous{
width: 247.00001525878906px;
height: 57.599998474121094px;
gap: 4.2px;
border-radius: 10.5px;
padding-top: 16.8px;
padding-right: 33.6px;
padding-bottom: 16.8px;
padding-left: 33.6px;
background: #FEF9F0;
font-family: DM Sans;
font-weight: 700;
font-size: 16.8px;
line-height: 140%;
letter-spacing: 0%;
color: #090909;

}
#registration {
height: auto !important;
overflow: visible !important;
display: block !important;
}
/*div.row:nth-child(4) > div:nth-child(1){
display: flex !important;
}
button.btn-sm:nth-child(1){
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;

}*/



.tech-desc{
  font-family: DM Sans;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #CDD0D8; 
}

  /*# sourceMappingURL=home-v1.css.map*/


/* AGNES Cedric */

.btn-secondary {
    background-color: #1C2792 !important;
}

.text-primary {
    color: #F19100 !important;
}

.text-secondary {
    color: #1C2792 !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #F19100;
  --bs-btn-border-color: #F19100;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #F19100;
  --bs-btn-hover-border-color: #F19100;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #F19100;
  --bs-btn-active-border-color: #F19100;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #F19100;
  --bs-btn-disabled-border-color: #F19100;
}

.btn-outline-primary {
  --bs-btn-color: #F19100;
  --bs-btn-border-color: #F19100;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #F19100;
  --bs-btn-hover-border-color: #F19100;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #F19100;
  --bs-btn-active-border-color: #F19100;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #F19100;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #F19100;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #1C2792;
  --bs-btn-border-color: #1C2792;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1C2792;
  --bs-btn-hover-border-color: #1C2792;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1C2792;
  --bs-btn-active-border-color: #1C2792;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #1C2792;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #1C2792;
  --bs-gradient: none;
}

.btn-dim-danger {
  background: #FFE2E2;
}

.btn-dim-primary {
  background: #ffb13ba6;
}

#order-standard_cart .order-summary {
  margin: 0 0 20px 0 !important;
  margin-top: 0px !important;
  padding: 0 !important;
  background-color: #fff !important;
  border-bottom: 0px !important;
  border-radius: 4px !important;
}

#order-standard_cart .order-summary .subtotal {
  border-bottom: none !important;
}

#order-standard_cart .summary-container {
  background-color: #fff !important;
}

#order-standard_cart .view-cart-items {
  border-bottom: none !important;
}

#order-standard_cart .empty-cart {
  text-align: left !important;
  margin: 0 !important;
  line-height: 1em !important;
}

#order-standard_cart .empty-cart .btn {
  margin: 0 !important;
  padding: 0 !important;
  background-color: inherit !important;
  border: 0 !important;
}

.border-secondary {
  border-color: #1C2792 !important;
}

#order-standard_cart .domain-checker-available {
  color: #000 !important;
}

.login-form {
  width: 483px;
  height: 653px;
  left: 514.5px;
  gap: 42px;
  border-radius: 10.5px;
  padding-right: 42px;
  padding-bottom: 50.4px;
  padding-left: 42px;
  background: #FFFFFF;

}

.items__label {
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16.8px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #03133D;

}

.form__header h3 {
  margin-top: 33px;
  margin-bottom: 33px;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 33.6px;
  line-height: 105%;
  letter-spacing: -3%;
  color: #03133D;

}

.items__checkbox {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14.7px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #68718B;

}

.link {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14.7px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: right;
  color: #ef8c03;

}

.btn-google-connect{
  width: 399px;
  height: 56.70000076293945px;
  border-radius: 10.5px;
  border-width: 1.05px;
  padding-top: 16.8px;
  padding-right: 33.6px;
  padding-bottom: 16.8px;
  padding-left: 33.6px;
  background: #FFFFFF;
  border: 1.05px solid #E6E8EC
}

.hero-btn--primary {
  width: 361px;
  height: 54px;
  gap: 4px;
  border-radius: 10px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  background: #F19100;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.hero-btn--secondary {
  width: 171px;
  height: 54px;
  gap: 4px;
  border-radius: 10px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  background: #F3F3F3;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #202020;

}

.dns-content {
  text-align: center;
  width: 617px;
  top: 473px;
  left: 448px;

  font-family: DM Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -3%;
  text-align: center;
  color: #7E7E7E;
}
input[type="radio"]:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

input[type="radio"]:checked {
  background-color: initial;
  border-color: initial;
  box-shadow: none;
}

#dnsOptions input[type="radio"]:checked {
  background-color: #f97316;
  border-color: #f97316;
}

input[type="radio"]:checked+label {
  color: #f97316;
  font-weight: 600;
}

.form-check:has(input[type="radio"]:checked) label {
  color: #f97316;
  font-weight: 600;
}

#dnsContentCustom label {
  text-align: left;
  display: block;
}

.dnsInput {
  width: 437px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid #ced4da;
  padding: 16px 24px;
  box-sizing: border-box;
}

.remove-dns {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #FFE2E2;

}

.add-dns {
  width: 107px;
  height: 54px;
  top: 31px;
  left: 510px;
  gap: 4px;
  border-radius: 10px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  background: #F19100;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.dnsFields {
  left: 25px !important;
}

.hero__desc h3 {
  font-family: DM Sans;
  font-weight: 700;
  font-size: 28px;
  line-height: 110.00000000000001%;
  letter-spacing: -3%;
  text-align: center;
  color: #231F20;
}
.configure-domain-content{
  margin-top: 136px !important;
}
.cart-side-modal {
  position: fixed;
  top: 0;
  right: -805px;
  width: 805.11px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 1050;
  display: flex;
  flex-direction: column;
}

.cart-side-modal.open {
  right: 0;
}



.cart-header,
.cart-footer {
  flex-shrink: 0;
  border: none;
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  border-radius: 10px;
}

.btn-flush {
  width: 375px;
  height: 54px;
  border-radius: 10px;
  gap: 4px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  background: #F3F3F3;

  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #202020;

}

.btn-next {
  width: 375px;
  height: 54px;
  border-radius: 10px;
  gap: 4px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  background: #F19100;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;

  color: #FFFFFF;

}

.cart-header h5 {
  font-family: DM Sans;
  font-weight: 700;
  font-size: 32px;
  line-height: 110.00000000000001%;
  letter-spacing: -3%;
  color: #090909;

}

.btn-delete {
  width: 53px;
  height: 53px;
  left: 672px;
  border-radius: 10px;
  background: #FFE2E2;

}

.cart-price {
  width: 124px;
  height: 24px;
  top: 15px;
  left: 528px;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 22px;
  line-height: 110.00000000000001%;
  letter-spacing: -3%;
  text-align: right;
  color: #14358A;
}

.cart-item {
  border: 1px solid #C7CCFF;
  border-radius: 20px;
}

.cart-item--a strong {
  top: 14px;
  font-family: DM Sans;
  font-weight: 500;
  font-size: 24px;
  line-height: 110.00000000000001%;
  letter-spacing: -3%;
  color: var(--Miscellaneous-Floating-Tab---Text-Unselected, #090909);
}

.cart-item--renew {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 110.00000000000001%;
  letter-spacing: -3%;

  color: #090909;
}

.cart-item--cycle label {
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #090909 !important;
}

.cart-summary {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  /* margin-top: 40px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.hero__desc {
  width: 1228px;
  top: 313px;
  left: 142px;
  border-radius: 10px;
  box-shadow: 8px 16px 52px 0px #7E8AFD14;

}

.hero__desc {
  transition: height 0.4s ease;
  overflow: hidden;
}

.header-lined h1 {
  font-family: DM Sans;
  font-weight: 700;
  font-size: 63px;
  line-height: 110.00000000000001%;
  letter-spacing: -3%;
  text-align: center;
  color: #FFFFFF;
}

.hero-btn--primary {
  width: 361px;
  height: 54px;
  gap: 4px;
  border-radius: 10px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  background: #F19100;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.hero-btn--secondary {
  width: 171px;
  height: 54px;
  gap: 4px;
  border-radius: 10px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  background: #F3F3F3;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #202020;

}

.dns-content {
  text-align: center;
  width: 617px;
  top: 473px;
  left: 448px;

  font-family: DM Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -3%;
  text-align: center;
  color: #7E7E7E;
}

input[type="radio"]:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

input[type="radio"]:checked {
  background-color: initial;
  border-color: initial;
  box-shadow: none;
}

#dnsOptions input[type="radio"]:checked {
  background-color: #f97316;
  border-color: #f97316;
}

input[type="radio"]:checked+label {
  color: #f97316;
  font-weight: 600;
}

.form-check:has(input[type="radio"]:checked) label {
  color: #f97316;
  font-weight: 600;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #F19100 !important;
  border-color: #F19100 !important;
}

.bg-primary {
  background-color: #F19100 !important;
  border-color: #F19100 !important;
}


.card-img-c {
    width: 132px;
    height: 138px;
    top: 32px;
    left: 32px;
/* style page pourquoi nous choisi */
}


 .about-hero-text {
  color: #ffffff;
  max-width: 745px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: flex-start;
}
@media (max-width: 767.98px) {
   .about-hero-text {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
 .about-hero-text__sub-heading {
  max-width: 462px;
}
@media (max-width: 767.98px) {
   .hero .container .about-hero-text__sub-heading {
    width: 100%;
  }
}
 .about-hero-image__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
 .about-hero-image__img--2 {
  width: 100%;
  aspect-ratio: 1.78/1;
}
.value {
  position: relative;
}
 .value .container {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 767.98px) {
   .value .container {
    padding: 4rem 0;
  }
}
@media (max-width: 575.98px) {
   .value .container {
    padding-inline: 1.25rem;
    gap: 3.5rem;
  }
}


 .value .container .about-value-wrap {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
 .value .container .about-value-wrap .about-value-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 48px;
}
@media (max-width: 991.98px) {
   .value .container .about-value-wrap .about-value-list {
    flex-direction: column-reverse;
    text-align: center;
  }
   .value .container .about-value-wrap .about-value-list:nth-child(2) {
    flex-direction: column;
  }
}
 .value .container .about-value-wrap .about-value-list .about-value-list-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  width: 46%;
}
@media (max-width: 991.98px) {
   .value .container .about-value-wrap .about-value-list .about-value-list-text-container {
    width: 100%;
    align-items: center;
  }
}
 .value .container .about-value-wrap .about-value-list .about-value-list-text-container .about-value-list-text {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 767.98px) {
   .value .container .about-value-wrap .about-value-list .about-value-list-text-container .about-value-list-text .about-value-list__para {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container {
  position: relative;
  width: 54%;
}
@media (max-width: 991.98px) {
   .value .container .about-value-wrap .about-value-list .about-value-list-image-container {
    width: 100%;
  }
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-img--1 img,  .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-img--3 img {
  width: 84%;
  aspect-ratio: 1.25/1;
  box-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  border-radius: 10px;
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-img--2 img {
  width: 78.3%;
  aspect-ratio: 1.09/1;
  box-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  border-radius: 10px;
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-img--3 {
  position: relative;
  box-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  width: 500px;
  aspect-ratio: 1.25/1;
}
@media (max-width: 991.98px) {
   .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-img--3 {
    width: 100%;
  }
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-img--3 img {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 991.98px) {
   .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-img--3 img {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img {
  position: absolute;
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--1 {
  box-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  right: 0;
  bottom: 30px;
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--1 img {
  width: 396px;
  aspect-ratio: 5.21/1;
}
@media (max-width: 575.98px) {
   .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--1 img {
    width: 222px;
  }
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  right: 0;
  bottom: 20px;
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--2 img {
  width: 274px;
  aspect-ratio: 3.61/1;
  box-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
}
@media (max-width: 575.98px) {
   .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--2 img {
    width: 154px;
  }
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--3 {
  box-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  left: 0;
  bottom: 35px;
}
@media (max-width: 575.98px) {
   .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--3 {
    left: -2px;
  }
}
 .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--3 img {
  width: 292px;
  aspect-ratio: 1.32/1;
}
@media (max-width: 575.98px) {
   .value .container .about-value-wrap .about-value-list .about-value-list-image-container .about-value-list-float-img--3 img {
    width: 164px;
    
  }
}
 .value .container .about-value-wrap .about-value-list__title {
  color: #006fba;

}
/* Style de base pour tous les écrans */
.tech-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* Taille spécifique sur petit écran (mobile) */
@media (max-width: 576px) {
  .home__feature__illustration--v3 img{
    max-width: 86% !important;
    height: 50% !important;
    margin-bottom: 118px !important;
  }
}

/* Taille moyenne (tablette) */
@media (min-width: 577px) and (max-width: 991px) {
  .home__feature__illustration--v3 img{
    max-width: 60%;
  }
}

/* Grand écran (desktop) */
@media (min-width: 992px) {
  .home__feature__illustration--v3 img{
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .footer__links {
    margin-top: 51px !important;
  }
}

@media (max-width: 991.98px) {
  .footer__sosmed {
     margin-top: 84px;

  }
}

.btn--primary-white{
  background-color: #ffffff;
  color: #0c0d1d;
  border: 1px solid #0c0e1b;
}
  
.navbar.scrolled {
  width: 100%;
  height: 90px;
  gap: 70px;
  padding: 20px 185px;
  border-bottom: 1px solid #ccc;
  background-color: #3b45d2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #fffff;
}

/*.navbar.scrolled .btn--secondary-white {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}*/

.navbar .btn :hover {
  background-color: #f09000;
  color: #fbfbfb;
  border: 1px solid #f09000;
}

.logo {
  display: none;
  transition: opacity 0.3s ease;
}

.logo-white {
  display: inline-block;
}

.navbar.scrolled .logo-white {
  display: none;
}

.navbar.scrolled .logo-colored {
  display: inline-block;
}
.navbar__links__link {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

.mobile-navbar.scrolled {
  background-color: #3b45d2 !important; 
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-navbar {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.banner-blue-bg {
  background: linear-gradient(to bottom, #0a6dd7, #0700bb); 
  height: 90px;
}

.btn-default {
  background-color: #bbbbbb24 !important;
}

.table > thead >tr {
    background-color: #f0f0f0 !important;
}


@media (max-width: 1280px) {
    .dataTables_length, .dataTables_info{
        display: none !important;
    }
    .dataTables_paginate{
        margin-bottom: 20px !important;
    }
    .dataTables_filter{
        position: relative!important;
    }
    
    .dataTables_filter > label{
        float: left;
    }
    .dataTables_filter > label > input{
        width: 334px !important;
        margin-bottom: 0.625rem!important;
        margin-left: 0 !important;
    }
    #tableListServers_length > label{
        position: relative!important;
        top: 41px !important;
        left: -40px !important;
        margin-top: 5px !important;
    }
    .on-overview{
        visibility:visible
    }
    body > main > div > div > div.col-md-6.mx-2.col-sm-12.align-self-center{
        left: -38px;
    position: relative;
    margin-bottom: 0;
    }
    body > main > div > div > div.col-md-6.mx-2.col-sm-12.align-self-center > div{
        margin-top: -18px !important;
    }
    body > main > div > div > div.col-md-6.mx-2.col-sm-12.align-self-center{
        top: -10px !important;
    }
    .table{
        width: 954px !important;
    }
  }

#tableServicesList_paginate {
  text-align: right;
}
.dataTables_length{
  display: none;
}
.table-container{
  padding: 1rem !important;
  box-shadow: 8px 16px 52px 0px #7E8AFD14;
}

@media (max-width: 768px) {
  .home__title {
    flex-direction: column;
    text-align: center;
  }

  .logo-section {
    margin-top: 1rem;
  }
}

@media (max-width: 1654px) {
  .navbar__title img {
    width: 150px !important;
  }

  .navbar__sign .btn {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem !important;
  }
}

@media (max-width: 1199px) {
  .navbar__title img {
    width: 130px !important;
  }

  .navbar__sign .btn {
    padding: 0.3rem 0.5rem !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 1654px) {
  .navbar__title img {
    width: 150px !important;
  }

  .navbar__links a,
  .navbar .nav-link {
    font-size: 0.95rem !important;
    padding: 0.5rem 0.75rem !important;
  }

  .navbar__sign .btn {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem !important;
  }
}

@media (max-width: 1610px) {
  .navbar__title img {
    width: 130px !important;
  }

  .navbar__links a,
  .navbar .nav-link {
    font-size: 0.85rem !important;
    padding: 0.4rem 0.6rem !important;
  }

  .navbar__sign .btn {
    padding: 0.3rem 0.5rem !important;
    font-size: 0.8rem !important;
  }
}

.list-group-item.active {
  background-color: #ff8504 !important;
  border-color: #ff8504 !important;
  border-radius: 0?375rem !important;
}
