
.sub-text{
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray);
}

.about-wrapper h3{
    font-size: 28px;
    color: var(--color-site-3);
    font-weight: 600;
    text-transform: capitalize;

}
.about-wrapper h6{
    font-size: 18px;
    color: var(--color-site-3);
    line-height: 30px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
 p, .content-agence ul li{
    font-size: 16px;
    color: var(--color-gray);
    font-weight: 600;
    line-height: 30px;
     position: relative;
     z-index: 1;
}
.content-agence b{
    font-weight: 800 !important;
}
.about-wrapper img{
    clip-path: inset(0 0 0 0);
}
.img_top_animation {
    animation: top-animation 3000ms forwards cubic-bezier(0.40, 0.98, 0.52, 0.99);
    opacity: 0;
}

@keyframes top-animation {
    0% {
        clip-path: inset(100% 0 0 0); /* caché par le haut */
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0); /* totalement visible */
        opacity: 1;
    }
}



.item-info h4 , .item-info h6{
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-family) !important;
    color: var(--color-site-3);
}



 .item-info-text{
    font-size: 16px;
    color: var(--color-gray);
    font-weight: 500;
    font-family: var(--font-family) !important;
}

 .name-agence{
    font-size: 26px;
    font-weight: 600;
    color: var(--color-site-3);
    font-family: var(--font-family) !important;
    margin-bottom: 16px;

}

.bg {
    background-color: var(--bg-section);
}

.services-HB .card, .A-QSN .card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services-HB .card::before, .A-QSN .card::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--color-bg);
    border-radius: 500px 500px 0 0;
    transition: all 0.4s ease-in-out;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: 1;
}

.services-HB .card:hover::before, .A-QSN .card:hover::before {
    top: 0;
    border-radius: 0;
    opacity: 1;
}

.img-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin: 0 auto 0 auto;
    /*border: 2px solid var(--color-site-1);*/
    background: linear-gradient(175deg, rgb(255 181 29 / 0%) 0%, rgb(255 200 60 / 8%) 50%, #ffd10000 100%);

}

.card:hover .img-icon {

    background: var(--color-white)
}

.card:hover {
    border: 1px solid rgb(47, 113, 133) ;
}

.about-wrapper.fonction h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-site-3);
    text-transform: capitalize;
}

#file-upload-button, input[type=file]:focus{
    height: 55px;
    outline: none !important;
}

/*****  */
.work-avatar{

    display: flex;
    align-items: center;

    font-size: 30px;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-site-1);
    position: relative;
    background: transparent;
}


/* setp1 */
.card-step .icon-step{
    position: relative;
    display: inline-block;
    height: 120px;
    width: 120px;
    line-height: 133px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--color-site-1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.card-step .icon-step:hover{
    background-color: var(--color-site-3);
}
.card-step .icon-step:hover svg g g path{
    fill: var(--color-white)
}

.card-step .step-number{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-site-2);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.card-step .icon-step:hover .step-number{
    background-color: var(--color-site-1);
    color: var(--color-white);
    top: 90px;
    left: 80px;
    -webkit-transform: scale(-1) rotate(-180deg);
    transform: scale(-1) rotate(-180deg);
}
.card-step h5{
    color: var(--color-site-3);
    font-size: 15px;
}

