.form-devis {
    background: #fff;
    padding: 0 0px;
    border-radius: 80px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
    margin-top: -80px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 40px;
}

.form-devis .title {
    color: #0082BF;
    font-family: "Titillium Web";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    flex: 0 0 180px;
    text-align: right;
}

.form-devis .title span {
    color: #5BB144;
}

.form-devis-content {
    flex: 1 1 auto;
}

.form-devis-content fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-devis-content fieldset .label {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    color: #C5C5C5;
    text-align: right;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.form-devis-content fieldset .label::before,
.form-devis-content fieldset .label::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    flex: 1 1 auto;
    background: #C5C5C5;
}

.form-devis-content fieldset .row .col-lg-6:first-child {
    border-right: 1px solid #C5C5C580;
}

.form-devis-content fieldset .list-btn {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.form-devis-content fieldset .list-btn .form-groupe input {
    display: none;
}

.form-devis-content fieldset .form-groupe label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form-devis-content fieldset .form-groupe label .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #005497;
    display: flex;
    margin: 0 auto 5px;
    align-items: center;
    justify-content: center;
}

.form-devis-content fieldset .form-groupe label .icon img {
    filter: contrast(1) brightness(1);
    transition: 0s;
}

.form-devis-content fieldset .form-groupe label:hover .icon img,
.form-devis-content fieldset .form-groupe input:checked+label .icon img {
    filter: contrast(0) brightness(100);
}

.form-devis-content fieldset .form-groupe input:checked+label .icon,
.form-devis-content fieldset .form-groupe label:hover .icon {
    border-color: #005497;
    background: #005497;
}

.form-devis-content fieldset .form-groupe label span {
    color: #777;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.form-devis .next-step {
    flex: 0 0 160px;
}

.form-devis .next-step .btn-form {
    background: #005497;
    width: 160px;
    height: 160px;
    border-radius: 0 80px 80px 0;
    color: #fff;
    font-family: "Titillium Web";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: 0.5s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #1F91C5;
}

.form-devis .next-step .btn-form:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    content: "";
    background: url(../images/bg-btn-devis.svg) no-repeat center center / 131px 141px;
    mix-blend-mode: multiply;
}

.form-devis .next-step .btn-form:focus,
.form-devis .next-step .btn-form:hover {
    background: #005497;
}