.hero-slider {
    background: var(--color-grey);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.section--header {
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section--header .section__header {
    background: var(--color-blue);
    border-radius: 20px;
    z-index: 100;
    padding: 45px 60px;
    display: inline-block;
}

.section--header .section__header .section__title {
    color: var(--color-white);
    margin: 0;
    font-size: clamp(24px, 3vw, 48px);
    line-height: 1.3;
    padding: 0;
}

.section--header .section__header .section__title::after {
    display: none;
}

.section--header .section__header .section__description {
    color: var(--color-white);
    margin: 0;
    line-height: 1.3;
    padding: 0;
    font-size: clamp(16px, 2.5vw, 25px);
}
@media (max-width: 1080px){
    .section--header {
        margin: 34px 0 40px 0;
    }
}
@media (max-width: 750px){
    .section--header .section__header {
        width: calc(100% - 20px);
        padding: 45px 15px;
        text-align: center;
    }
}
/* Section Savoir-faire */
.section--about {
    margin: 0;
}

.section--about .container {
    width: 100%;
    max-width: 1474px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 16px;
}

.section--about .section__column {
    width: calc(50% - 50px);
}

.section--about .section__column:nth-child(1) {
    padding: 200px 0 280px 0;
}

.section--about .section__column:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.section--about .section__title {
    width: 100%;
    text-align: left;
    font-size: clamp(16px, 2vw, 32px);
    line-height: 1.3;
    margin: 0 0 23px 0;
    padding: 0;
    text-transform: initial;
}

.section--about .section__title::after {
    display: none;
}

.section--about .section__description {
    width: 100%;
    text-align: left;
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.3;
}

.section--about .section__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.section--about .section__image img {
    max-width: 100%;
    max-height:100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 1080px) {
    .section--about .section__column {
        width: 100%;
    }

    .section--about .section__column:nth-child(1) {
        padding: 0 0 100px 0;
    }

    .section--about .section__column:nth-child(2) {
        height: 400px;
        justify-content: center;
    }
}

/* Section solutions */
.section--solutions {
    overflow: hidden;
    margin: 40px 0 80px 0;
}

.section--solutions .container {
    display: flex;
    justify-content: space-between;
}

.section--solutions .section__column:nth-child(1) {
    width: 35%;
}

.section--solutions .section__column:nth-child(2) {
    width: 63%;
    background: rgba(241, 239, 238, 1);
}

.section--solutions .section__column:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(241, 239, 238, 1);
}

.section--solutions .section__title {
    width: 100%;
    text-align: left;
    margin: 100Px 0 0 0;
}

.section--solutions .section__title::after {
    left: 0;
}

.section--solutions .section__introduction {
    width: 100%;
    text-align: left;
}

.section--solutions .grid--solutions {
    display: flex;
    overflow-x: hidden;
    margin: 154px 0 0 0;
}

.section--solutions .card--solution {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: calc((100% / 3) - 0px);
}

.section--solutions .card--solution .card__icon {
    height: 140px;
    width: 100%;
}

.section--solutions .card--solution .card__icon svg {
    max-width: 80px;
    max-height: 80px;
}

.section--solutions .card--solution .card__title {
    width: 100%;
    text-align: left;
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.3;
}

.section--solutions .card--solution .card__subtitle {
    width: 100%;
    text-align: left;
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.3;
    font-style: italic;
}

.section--solutions .card--solution .card__text {
    width: 100%;
    text-align: left;
    margin-top: 17px;
    font-size: clamp(13px, 2vw, 15px);
}

.section--solutions .dots {
    margin: 80px 0 65px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
    padding: 0 37px;
}

.section--solutions .dots .dot {
    width: 18px;
    height: 18px;
    background: rgba(128, 128, 128, 1);
    border-radius: 50%;
    transition: linear .15s;
}

.section--solutions .dots .dot.active {
    background: var(--color-sky);
}

.section--solutions .dots .dot:not(.active):hover {
    cursor: pointer;
    background: var(--color-blue);
}

.section--solutions .section__footer {
    margin: 80px 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:20px;
    padding-left:20px;
}
.section--solutions .btn--dots {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: var(--color-white);
    border-radius: 50%;
    border:none;
    z-index: 100;
    cursor:pointer;
    transition: linear .15s;
}
.section--solutions .btn--dots svg *{
    transition: linear .15s;
}
.section--solutions .btn--dots:hover {
    background:var(--color-blue);
}
.section--solutions .btn--dots:hover svg *{
    fill:var(--color-white);
}
.section--solutions .btn--dots svg {
    width: 60px;
}
.section--solutions .btn--dots.btn-dots--previous{

}
.section--solutions .btn--dots.btn-dots--previous svg{
    transform-origin: center center;
    transform: rotate(180deg);
}
@media (max-width: 1080px) {
    .section--solutions .container {
        flex-direction: column;
    }

    .section--solutions .section__column:nth-child(1) {
        width: 100%;
        margin-bottom: 20px;
    }

    .section--solutions .section__column:nth-child(2) {
        width: 100%;
        position: relative;
    }

    .section--solutions .section__column:nth-child(2)::before {
        left: -20vw;
        width: 140vw;
    }
}

@media (max-width: 1200px) {
    .section--solutions .card--solution {
        width: calc((100% / 2) - 0px);
    }
}
@media (max-width: 1080px) {
    .section--solutions .card--solution {
        width: calc((100% / 3) - 0px);
    }
}
@media (max-width: 900px) {
    .section--solutions .card--solution {
        width: calc((100% / 2) - 0px);
    }
}

@media (max-width: 767px) {
    .section--solutions .grid--solutions{
        margin:80px 0 0 0;
    }
    .section--solutions  .card--solution {
        width: 100%;
    }
    .section--solutions .section__footer {
        margin:50px 0 30px 0;
    }
}

/* Section methode */
.section--methode {
    margin-bottom: 107px;
}

.section--methode .section__title {
    width: 100%;
    text-align: center;
}

.section--methode .section__introduction {
    width: 100%;
    max-width: 1592px;
    margin: 0 auto;
    text-align: center;
}

.section--methode .section__footer {
    margin: 53px 0 0 0;
}

.section--methode .section__footer .btn {
    width: 100%;
    max-width: 580px;
    background: var(--color-blue);
    margin: 0 auto;
}

.section--methode .grid--methodes {
    width: 100%;
    max-width: 1780px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 78px auto 0 auto;
    gap: 32px 0;
}


.section--methode .grid--methodes .card--methode {
    width: calc(100% / 4 - 10px);
    padding: 0;
    color:var(--color-black);
    text-decoration: none;
}

.section--methode .grid--methodes a.card--methode:hover .card__title{
    color:var(--color-red);
}
.section--methode .grid--methodes .card__image {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    background: var(--color-sky);
    border-radius: 20px;
    overflow: hidden;
}

.section--methode .grid--methodes .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.section--methode .grid--methodes .card__content {
    margin: 12px 0 0 0;
    padding-right: 35px;
}

.section--methode .grid--methodes .card__title {
    width: 100%;
    text-align: left;
    font-size: clamp(16px, 2.5vw, 25px);
    line-height: 1.3;
    color: var(--color-blue);
    text-decoration: underline;
    transition: linear .15s;
}


.section--methode .grid--methodes .card__description {
    width: 100%;
    text-align: left;
    margin: 25px 0 0 0;
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.3;
}

.section--methode .grid--methodes .btn {
    background: var(--color-blue);
    width: 100%;
    max-width: 427px;
}
.section--methode .section__footer .btn:hover{
    background:var(--color-red);
}
@media (max-width: 1080px) {
    .section--methode .grid--methodes .card--methode {
        width: calc(100% / 2 - 10px);
    }
}

@media (max-width: 750px) {
    .section--methode .grid--methodes .card--methode {
        width: 100%;
    }
}

/* Section realisations */
.section--realisations .section__title {
    width: 100%;
    text-align: center;
    font-size: clamp(18px, 2.8vw, 32px);
    text-transform: initial;
    margin: 0 0 16px 0;
    padding: 0;
}

.section--realisations .section__title::after {
    display: none;
}

.section--realisations .section__description {
    width: 100%;
    text-align: center;
    font-size: clamp(14px, 2vw, 20px);
    max-width: 930px;
    margin: 0 auto;
}

.section--realisations .grid--realisations {
    width: 100%;
    max-width: 1474px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 69px auto 0 auto;
    gap: 32px 0;
}

.section--realisations .card--realisation {
    width: calc(100% / 2 - 10px);
    padding: 0;
}

.section--realisations .card--realisation .card__image {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    background: rgba(241, 239, 238, 1);
    border-radius: 20px;
    overflow: hidden;
}

.section--realisations .card--realisation .card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.section--realisations .card--realisation .card__content {
    margin: 25px 0 0 0;
    padding-right: 35px;
}

.section--realisations .card--realisation .card__title {
    width: 100%;
    text-align: left;
    font-size: clamp(16px, 2.5vw, 25px);
    line-height: 1.3;
    color: var(--color-blue);
}

.section--realisations .card--realisation .card__description {
    width: 100%;
    text-align: left;
    margin: 10px 0 25px 0;
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.3;
}

.section--realisations .card--realisation .btn {
    background: var(--color-blue);
    width: 100%;
    max-width: 427px;
}
.section--realisations .card--realisation .btn:hover{
    background:var(--color-red);
}
@media (max-width: 1080px) {
    .section--realisations .card--realisation {
        width: 100%;
    }
    .section--realisations .card--realisation .card__content {
        padding-right: 0;
    }
}

/** Block CTA - Contact **/
.cta--contact {
    width: 100%;
    margin: 0 auto;
    padding: 61px 5% 50px 5%;
    background: #6AC5D1;
}

.cta--contact .cta__title {
    font-size: clamp(20px, 3.5vw, 40px);
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    font-family: "Libre Bodoni", serif;
}

.cta--contact .cta__text {
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.3;
    text-align: center;
    margin: 9px 0 0 0;
}

.cta--contact .btn {
    background: var(--color-red);
}

.cta--contact .btn:hover {
    background: var(--color-white)!important;
    color: var(--color-red);
}
