.block-request-quote {
    margin-bottom: 80px;
}.block-request-quote-container {
    padding-top: 79px;
    padding-bottom: 79px;
    border-radius: 8px;
    background-color: var(--color-pasquet-orange);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    z-index: 0;
}.block-request-quote-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000059;
}.block-request-quote-container.no-bg::after {
    display: none;
}.block-request-quote-title {
    margin-bottom: 30px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    z-index: 2;
}.block-request-quote-content {
    max-width: 636px;
    margin: 0 auto;
    padding: 35px 48px;
    border-radius: 16px;
    background-color: var(--color-very-light-grey, #F7F7F7);
    position: relative;
    z-index: 2;
}.block-request-quote-section-title {
    display: block;
    margin-bottom: 22px;
    font-size: var(--font-size-5, 25px);
    line-height: 140%;
}.block-request-quote-project {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    list-style-type: none;
    margin-bottom: 35px;
}.block-request-quote-project > li {
    position: relative;
    width: 50%;
    max-width: 227px;
}.block-request-quote-project input {
    width: 0px;
    height: 0px;
    position: absolute;
}.block-request-quote-project label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 19px 24px;
    text-align: center;
    font-weight: 600;
    line-height: 140%;
    cursor: pointer;
    border-radius: 8px;
    background-color: var(--color-white, #FFFFFF);
    height: 100%;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    transition: .3s;
}.block-request-quote-project label span {
    display: block;
    font-size: var(--fonts-size-body-xs);
    font-weight: 300;
    line-height: 140%;
}.block-request-quote-project label div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}.block-request-quote-project > li svg {
    width: 35px;
    height: 35px;
    margin-bottom: 16px;
    fill: var(--color-black);
}
.block-request-quote-project > li input:checked + label, .block-request-quote-project > li:hover label {
    background-color: var(--color-pasquet-orange, #F15931);
    color: var(--color-white, #FFFFFF);
}.block-request-quote-project > li input:checked + label svg, .block-request-quote-project > li:hover svg {
    fill: var(--color-white, #FFFFFF);
}

.block-request-quote-proprio {
    display: flex;
    align-items: center;
    gap: 32px;
}.block-request-quote-proprio .block-request-quote-section-title {
    margin-bottom: 0;
}.block-request-quote-proprio label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}.block-request-quote-proprio input {
    width: 24px;
    height: 24px;
    margin-bottom: 3px;
    accent-color: var(--color-pasquet-orange);
}

.block-request-quote button.btn {
    margin: 40px auto 0 auto;
    display: flex;
}

@media (max-width: 600px) {
    .block-request-quote-project {
        flex-wrap: wrap;
    }.block-request-quote-project > li {
        width: 100%;
        max-width: initial;
    }.block-request-quote-proprio {
        flex-wrap: wrap;
    }.block-request-quote-proprio .block-request-quote-section-title {
        width: 100%;
    }
}