/********************** HEADER **********************/

.caroussel {
    width: 100%;
    height: calc(100vh - 100px);
    background: no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.carousel2 {
    background-image: url(../Assets/img/carousel2.jpg);
}

.carousel3 {
    background-image: url(../Assets/img/carousel3.jpg);
}

.btnCaroussel {
    position: absolute;
    top: calc(50% - 45px);
    width: 70px;
    height: 70px;
    border: none;
    color: var(--color2);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
}

.right {
    right: -10px;
}

.left {
    left: 10px;
}

.btnCaroussel>i {
    font-size: 70px;
    color: var(--color4);

}

.contCaroussel {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color4);
}

.contCaroussel>div {
    width: 70%;
    margin-right: auto;
    font-weight: lighter;
}

.contCaroussel>div>p {
    font-size: 20px;
    color: var(--color4);
}

.showMore {
    padding: 10px 20px;
    margin-top: 30px;
    color: var(--color3);
    border: solid 2px var(--color3);
    font-size: 18px;
}

.chooseCarou {
    position: absolute;
    bottom: 10px;
    left: calc(50% - 40px);
    display: flex;
}

.indexCaroussel {
    width: 30px;
    height: 6px;
    background-color: var(--color3);
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
}

/*************************** MAIN ***************************/
/********************* OFFRE DE SERVICE *********************/

.titleOffer {
    font-size: 35px;
}

.descriptionOffer {
    font-size: 24px;
    color: #B3B3B3;
    font-style: oblique;
}

.important {
    font-size: 18px;
}

/********************** SOLUTIONS **********************/

.solutionSection {
    display: flex;
    align-items: stretch;
}

.solutionArticle {
    width: 50%;
    display: flex;
    margin: 20px 0;
    padding: 10px;
    position: relative;
}

.solutionArticle>i {
    position: absolute;
    top: 10px;
    left: 10px;
    border: solid 3px var(--color3);
    background-color: var(--color2);
    color: var(--color3);
    border-radius: 10px;
    padding: 10px;
    font-size: 35px;
}

.solutionArticle>div {
    margin-left: 60px;
    padding-left: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/********************** EXPERTISE **********************/

.expertiseBackground {
    background: url(../Assets/img/expertise.jpg);
    background-size: cover;
    background-position: center;
    min-height: 99vh;
    position: relative;
}

.expertiseSection {
    color: var(--color3);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.expertiseBlocA {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertiseBlocA>hr {
    margin: 15px 0 25px 0;
}

.expertiseBlocA>span {
    padding: 10px 5%;
}

.expertiseBlocB {
    display: flex;
    justify-content: space-between;
}

.expertiseBlocB>article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 30%;
}

.expertiseBlocB>article :nth-child(-n+3) {
    padding: 5px 0;
}

.expertiseBlocB>article>img {
    width: 20%;
}

/********************** RESPONSIVE **********************/

@media (max-width: 969px) {

    .titleOffer {
        font-size: 32px;
    }
}

@media (max-width: 809px) {

    .contCaroussel>div {
        width: 80%;
    }

    .titleOffer {
        font-size: 30px;
    }

    .descriptionOffer {
        font-size: 22px;
    }

    .articleSection>article>p {
        text-align: justify;
    }
}

@media (max-width: 770px) {

    .contCaroussel>div {
        width: 90%;
    }

    .solutionSection {
        align-items: center;
        flex-direction: column;
    }

    .solutionArticle {
        width: 75%;
    }

    .solutionArticle>img {
        width: 20%;
    }

    .solutionArticle>div {
        margin-left: 20%;
    }

    .expertiseBackground {
        min-height: 135vh;
    }

    .expertiseBlocB {
        justify-content: center;
        flex-wrap: wrap;
    }

    .expertiseBlocB>article {
        width: 40%;
    }
}

@media (max-width: 605px) {

    .contCaroussel>div {
        width: 100%;
    }

    .titleOffer {
        font-size: 26px;
    }

    .descriptionOffer {
        font-size: 20px;
    }

    .important {
        font-size: 16px;
    }
}

@media (max-width: 513px) {

    .titleOffer {
        font-size: 22px;
    }

    .descriptionOffer {
        font-size: 19px;
    }

    .expertiseBackground {
        min-height: 155vh;
    }

    .expertiseBlocB {
        flex-direction: column;
        align-items: center;
    }

    .expertiseBlocB>article {
        width: 60%;
    }
}

@media (max-width: 443px) {

    .expertiseBackground {
        min-height: 175vh;
    }
}