@font-face {
    font-family: 'Hairline';
    src: url('/assets/Fonts/HurmeGeometricSans1\ Hairline.otf');
}

@font-face {
    font-family: 'Light';
    src: url('/assets/Fonts/HurmeGeometricSans1\ Light.otf');
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

.services-content {
    background-color: #F2F2E9;
}

.section-base {
    background-color: #F2F2F9;
    padding-inline: 150px;
}

.text-small-semibold {
    color: #181A3A;
    font-size: 12px;
    font-weight: 600;
    font-family: 'SemiBold';
}

.section-text {
    padding-inline: 150px;
    padding-top: 100px;
}

.audit-services {
    padding-inline: 150px;
    padding-top: 100px;
    /* padding-bottom: 200px; */
}

.section-1-services {
    margin-top: 100px;
    width: 100%;
}

.section-top-right {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #3F7FBE;
}

.carousel-indicators li {
    width: 15px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: blue;
}

.element-service-active {
    width: 7px;
    background-color: #A250A1;
}

@keyframes fadeEffect-1 {
    from {opacity: 0.5;}
    to {opacity: 1;}
}

@keyframes fadeEffect-2 {
    from {opacity: 0;}
    to {opacity: 1;}
}

.service-content {
    animation: fadeEffect-2 1s;
}

.service-banner-content {
    animation: fadeEffect-1 1s;
}

/* .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #3F7FBE;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
} */

.element-service {
    background-color: #181A3A;
    width: 100%;
    border-bottom: 0.1px solid rgba(144, 144, 144, 0.1);
}


.section-top-services {
    background-image: url("/assets/images/services-images/section-1-bg.png");
    display: flex;
    padding-inline: 150px;
    background-size: cover, auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    justify-content: space-between;
}

.section-3-services {
    background-color: #ECECEC;
    padding-left: 100px;
}

.section-3-services-left {
    padding-top: 90px;
    padding-bottom: 90px;
}

.tech-leaders-text {
    opacity: 1;
    color: rgba(97, 97, 97, 1);
    font-family: "Light";
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.navy-box {
    background-color: #212241;
    padding-top: 30px;
    padding-bottom: 50px;
    padding-inline: 50px;
    margin-bottom: -70px;
}

.section-4-services {
    padding-inline: 50px;
    padding-top: 200px;
}

.detail-service {
    background-color: #212241;
    display: flex;
    align-items: center;
}

.service .col-lg-7 {
    padding-inline: 0px;
    height: 100%;
}

.custom-bullets {
    list-style: none; /* Retire les puces par défaut */
    padding-left: 20px; /* Pour laisser de la place à la puce */
  }
  
.custom-bullets li::before {
    content: '■'; /* Utilise un carré comme puce */
    color: #D8D8D8; /* Couleur grise pour la puce */
    font-size: 10px; /* Taille du carré */
    display: flex;
    align-items: center;
    width: 20px; /* Espace réservé pour la puce */
    margin-left: -20px; /* Ajustement de l'espace à gauche */
  }

  .custom-bullets li {
    display: flex;
  }

.custom-bullets p {
    font-size: 11px;
    margin-bottom: 5px;
}

.step {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid #3F7FBE;
    border-radius: 50%;
}

.step .text-regular-dark {
    color: #3F7FBE;
}

.arrow-right {
    width: 0; 
    height: 0; 
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 50px solid blue;
}

.text-important {
    font-family: 'Bold';
    font-size: 15px;
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: start; /* Aligne les éléments avec un espace entre eux */
    flex-wrap: wrap; /* Permet aux éléments de passer à la ligne si l'espace est limité */
}

.item {
    /* width: 30%;  */
    box-sizing: border-box;
    text-align: start;
}

@media (max-width: 768px) {
    .item {
        width: 50%; /* Sur les petits écrans, chaque élément prend la largeur entière */
    }
}
  

@media (max-width : 767.98px) {
    .section-top-services {
        padding-inline: 25px;
        display: block;
    }

    .section-base {
        padding-inline: 10px;
    }

    .section-text {
        padding-inline: 15px;
        padding-top: 50px;
    }

    .audit-services {
        padding-inline: 15px;
        padding-top: 50px;
        padding-bottom: 0px;
    }

    .section-3-services {
        padding-inline: 25px;
    }

    .section-3-services-left {
        padding-top: 30px;
    }

    .section-4-services {
        padding-inline: 25px;
        padding-top: 150px;
    }

    .navy-box {
        background-color: #212241;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-inline: 25px;
        margin-bottom: -70px;
    }

    /* .service-links img {
        width: 20px;
    } */
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .section-top-services {
        padding-inline: 50px;
        display: block;
    }

    .section-top-right {
        padding-top: 40px;
        padding-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-base {
        padding-inline: 10px;
    }

    .section-text {
        padding-inline: 25px;
        padding-top: 75px;
    }

    .audit-services {
        padding-inline: 25px;
        padding-top: 75px;
    }

    .section-3-services {
        padding-inline: 25px;
    }

    .section-3-services-left {
        padding-top: 75px;
    }

    .section-4-services {
        padding-inline: 25px;
        padding-top: 150px;
    }

    .navy-box {
        background-color: #212241;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-inline: 25px;
        margin-bottom: -70px;
    }
}

@media (min-width: 1999.98px) {
    .audit-services, .section-text, .section-top-services {
        padding-inline: 15%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .audit-services {
        padding-inline: 25px;
        padding-top: 100px;
        padding-bottom: 200px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .audit-services {
        padding-inline: 100px;
        padding-top: 100px;
        /* padding-bottom: 200px; */
    }
}