body, html {
    scroll-behavior: smooth;
    background: #DCE1E8;
}

/* SECTION BANNIERE */

.section-banner .content-top {
    padding-top: 17.88541vw;
    background-color: var(--color-blue-pme);
}
.section-banner .banner-construct {
    padding-left: 2.65625vw;
    padding-right: 2.65625vw;
    position: absolute;
    top: 10vw;
    color: white;
    width: 100%;
    height: 11.208vw;
}   
.section-banner .banner-construct .img-background {
    background-image: url('/images/background.jfif');
    /* background-image: url('/images/background.png'); */
    background-position: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1.0416666vw;
    position: relative;
    overflow: hidden;
    display: flex;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-banner .banner-construct .img-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(107deg, #153864f5, #0b274aba), linear-gradient(45deg, #1538645c, #ffffff00); */
    background: linear-gradient(0deg, #001c40d9, #00214ade), linear-gradient(0deg, rgb(0 0 0 / 73%), rgb(255 255 255 / 0%));
    border-radius: 1.0416666vw;
    z-index: 1;
}
.section-banner .banner-construct .img-background h1 {
    position: relative;
    z-index: 2;
    font-size: 3.64583vw;
    line-height: 4.4442vw;
    font-weight: 900;
    text-wrap: nowrap;
}

/* SECTION CONTENT CUSTOM */

.section-padding {
    margin-left: 2.65625vw;
    margin-right: 2.65625vw;
    margin-top: 5vw;
    margin-bottom: 4vw;
    background: white;
    padding: 3.22916vw 2.91666vw 3.22916vw 2.91666vw;
    border-radius: 1.0416666vw;
}

.section-padding img {
    width: 38vw;
}

.section-padding .one-card {
    display: flex;
    flex-direction: column;
    gap: 0vw;
    padding: 0vw;
    border-radius: 10px;
    margin-bottom: 2vw;
    box-shadow: none;
    padding-bottom: 2vw;
    cursor: pointer;
    border-bottom: 1px solid #d1d5db;
    transition: all .5s ease-in-out;
}
.section-padding .one-card:hover {
    box-shadow: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
    transition: all .5s ease-in-out;
}

.section-padding .one-card .head-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #15386436;
    padding: 2vw;
    border-radius: 10px 10px 0 0;
}
.section-padding .one-card span.title{
    font-size: 2vw;
    line-height: 2vw;
    color: #153864;
    font-weight: 700;
}
.section-padding .one-card a.icondesc{
    font-size: 2.5vw;
    color: #153864;
    transition: all .5s ease-in-out;
}
.section-padding .one-card a.icondesc:hover {
    color: white;
    transition: all .5s ease-in-out;
}

.section-padding .one-card .details {
    padding: 0 2vw;
    font-size: 1vw;
    margin-bottom: 0vw;
    /* display: none; */
    max-height: 0;
    margin-top: 0vw;
    overflow: hidden;
    transition: margin-top 0.5s ease-in-out, max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}
.section-padding .one-card .details.actif {
    display: block;
    margin-top: 2vw;
    max-height: 500px; /* Ajustez selon la taille du contenu */
    opacity: 1;
}

.section-padding .one-card .details-first {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding:0vw 2vw 0vw;
    margin-top: 2vw;
}
.section-padding .one-card p.shortdescr{
    font-size: 1.5vw;
    line-height: 2vw;
}
.section-padding .one-card .btn-action {
    width: fit-content;
    padding: 1vw;
    border-radius: 5px;
    background: #f1ce45;
    color: #153864;
    font-weight: 700;
    font-size: 1vw;
    text-transform: uppercase;
    outline: none;
    border: none;
    cursor: pointer;
}

/*===================== RESPONSIVE OF HEADER__WEBSITE ===========================*/


@media (max-width:768px) {
    .section-padding {
        margin-top: 10vw;
    }
    .section-padding img {
        width: 60vw;
    }
}