
.pageDemandeDeDevis h1{
    margin-block: 16px 32px;
}

.pageDemandeDeDevis section{
    display: flex;
    gap: 30px 120px;
}

.pageDemandeDeDevis section .columnLeft,
.pageDemandeDeDevis section .columnRight{
    width: 50%;
}

.pageDemandeDeDevis section .columnRight .infos{
    background-color: var(--color-primary);
    padding: 30px;
    border-radius: 24px;
    margin-bottom: 64px;
}

.pageDemandeDeDevis section .columnRight .infos a,
.pageDemandeDeDevis section .columnRight .infos a p{
    color: var(--color-tertiary);
    font-size: 16px;
    line-height: 1.4em;
}

.pageDemandeDeDevis section .columnRight .infos .siteName{
    font-size: 20px;
    line-height: normal;
    color: var(--color-white);
    margin-bottom: 16px;
    font-weight: 500;
}

.pageDemandeDeDevis section .columnRight iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 24px;
}

@media (max-width: 1300px) {
    .pageDemandeDeDevis section{
        gap: 30px 70px;
    }
    .pageDemandeDeDevis section .columnRight .infos{
        margin-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .pageDemandeDeDevis h1{
        margin-block: 16px 28px;
    }
    .pageDemandeDeDevis section{
        flex-direction: column;
    }
    .pageDemandeDeDevis section .columnLeft,
    .pageDemandeDeDevis section .columnRight{
        width: 100%;
    }
}