
.pageMetiers{
    padding-top: 24px;
}

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

.pageMetiers .section1{
    display: flex;
    gap: 24px 100px;
    margin-bottom: 200px;
    padding-top: 80px;
}

.pageMetiers .section1 .left,
.pageMetiers .section1 .right{
    width: 50%;
}

.pageMetiers .section1 .right img{
    width: 100%;
    height: auto;
    aspect-ratio: 710/670;
    border-radius: 24px;
}

.pageMetiers .section1 .left h1{
    font-size: 52px;
    line-height: 60px;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

.pageMetiers .section1 .liens{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pageMetiers .section1 .liens .lien{
    width: fit-content;
    padding: 9px 30px;
    border: solid 1px var(--secondary);
    border-radius: 20px;
    cursor: pointer;
}

.pageMetiers .section1 .liens .lien a{
    font-size: 16px;
    line-height: 22px;
    color: var(--secondary);
}

@media (max-width: 1500px){
    .pageMetiers .section1 .left h1{
        font-size: 42px;
        line-height: 50px;
    }
    .pageMetiers .section1 .liens{
        gap: 23px;
    }
}

@media (min-width: 993px){
    .pageMetiers .section1 .liens .lien:hover{
        background-color: var(--secondary);
    }
    .pageMetiers .section1 .liens .lien:hover a{
        color: #fff;
    }
}

@media (max-width: 992px){
    .pageMetiers .section1{
        flex-direction: column;
        padding-top: 24px;
        margin-bottom: 130px;
    }
    .pageMetiers .section1 .left,
    .pageMetiers .section1 .right{
        width: 100%;
    }
    .pageMetiers .section1 .left h1{
        font-size: 30px;
        line-height: 35px;
    }
    .pageMetiers .section1 .right img{
        border-radius: 12px;
    }
    .pageMetiers .section1 .liens{
        margin-top: 24px;
    }
    .pageMetiers .section1 .liens .lien a{
        font-size: 15px;
    }
}