
.pageContact{
    padding-top: 40px;
}

/* --------------------------- SECTION 1 --------------------------- */

.pageContact .section1{
    margin-bottom: 45px;
    display: flex;
    justify-content: space-between;
    gap: 16px 64px;
}

.pageContact .section1 .titre{
    font-size: 52px;
    line-height: 60px;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    width: 50%;
}

.pageContact .section1 .paragraphe{
    width: 50%;
}

@media (max-width: 1600px) {
    .pageContact .section1 .titre{
        font-size: 42px;
        line-height: 50px;
    }
    .pageContact .section1 .paragraphe{
        width: 50%;
    }
}

@media (max-width: 1300px) {
    .pageContact .section1{
        gap: 16px 60px;
    }
}

@media (max-width: 992px) {
    .pageContact .section1{
        flex-direction: column;
    }
    .pageContact .section1 .titre{
        width: 100%;
        font-size: 30px;
        line-height: 35px;
    }
    .pageContact .section1 .paragraphe{
        width: 100%;
    }
}

/* --------------------------- SECTION 2 --------------------------- */

.pageContact .section2{
    display: flex;
    gap: 30px 100px;
    padding-bottom: 180px;
}

.pageContact .section2 .left,
.pageContact .section2 .right{
    width: 50%;
}

.pageContact .section2 h2{
    font-size: 42px;
    line-height: 50px;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.pageContact .section2 img{
    aspect-ratio: 650/910;
    display: block;
    border-radius: 24px;
}

@media (max-width: 1300px) {
    .pageContact .section2{
        gap: 90px;
    }
}

@media (max-width: 992px) {
    .pageContact .section2{
        flex-direction: column;
        padding-bottom: 140px;
    }
    .pageContact .section2 h2{
        font-size: 30px;
        line-height: 35px;
    }
    .pageContact .section2 .right{
        display: none;
    }
    .pageContact .section2 .left,
    .pageContact .section2 .right{
        width: 100%;
    }
}

/* --------------------------- SECTION 3 --------------------------- */

.pageContact .section3{
    display: flex;
    gap: 32px 140px;
    padding-bottom: 180px;
}

.pageContact .section3  h2{
    font-size: 52px;
    line-height: 60px;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pageContact .section3 .left{
    width: 35%;
}

.pageContact .section3 .right{
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pageContact .section3 .question{
    background-color: var(--primary);
    border-radius: 8px;
}

.pageContact .section3 .question summary{
    padding: 38px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: #fff;
    font-size: 24px;
    line-height: 28px;
}

.pageContact .section3 .question summary::marker{
    content: "";
    display: none;
}

.pageContact .section3 .question summary::after{
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg id='Groupe_3677' data-name='Groupe 3677' transform='translate(-1570.5 -2368)'%3E%3Crect id='Rectangle_217' data-name='Rectangle 217' width='3' height='24' transform='translate(1581 2368)' fill='%23fff'/%3E%3Crect id='Rectangle_218' data-name='Rectangle 218' width='3' height='24' transform='translate(1594.5 2378.5) rotate(90)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.pageContact .section3 .question[open] summary::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='3' viewBox='0 0 24 3'%3E%3Crect id='Rectangle_218' data-name='Rectangle 218' width='3' height='24' transform='translate(24) rotate(90)' fill='%23fff'/%3E%3C/svg%3E%0A");
}

.pageContact .section3 .question .paragraphe{
    padding: 0px 30px 38px 30px;
}

.pageContact .section3 .question .paragraphe,
.pageContact .section3 .question .paragraphe *{
    color: #fff;
}

@media (max-width: 1600px) {
    .pageContact .section3{
        gap: 32px 100px;
    }
    .pageContact .section3 .left{
        width: 40%;
    }
    .pageContact .section3 .right{
        width: 60%;
    }
    .pageContact .section3  h2{
        font-size: 42px;
        line-height: 50px;
    }
    .pageContact .section3 .question summary{
        padding: 30px;
        font-size: 22px;
        line-height: 26px;
    }
    .pageContact .section3 .question .paragraphe{
        padding: 0px 30px 30px 30px;
    }
}

@media (max-width: 992px) {
    .pageContact .section3{
        flex-direction: column;
        padding-bottom: 110px;
    }
    .pageContact .section3  h2{
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 16px;
    }
    .pageContact .section3 .left,
    .pageContact .section3 .right{
        width: 100%;
    }
    .pageContact .section3 .question summary{
        padding: 20px;
        font-size: 18px;
        line-height: 22px;
    }
    .pageContact .section3 .question .paragraphe{
        padding: 0px 20px 20px 20px;
    }
    .pageContact .section3 .question summary::after{
        width: 19px;
        height: 19px;
        min-width: 19px;
    }
}