/** DEVIS */

.navDesktop ul li:nth-child(5) a {
    font-weight: 500;
    color: #0055a4;
}

.intro {
    height: 300px;
    display: flex;
}

.intro figure {
    flex-basis: 100%;
}

.intro figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.steps_devis {
    position: relative;
    overflow: hidden;
    height: 1120px;
}

.step_devis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.step_devis:not(.step_devis_1) {
    display: none;
}

.step_content {
    background-color: #f5f5f5;
    padding: 15px;
    text-align: center;
}

.step_content .num_etape {
    font-size: 40px;
    font-weight: 900;
}

.step_content h2 {
    font-size: 20px;
}

.step_content .precisions {
    text-align: center;
    font-style: italic;
}

.step_content .step_options {
    margin-top: 30px;
}

.step_content .step_option {
    position: relative;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.16);
    padding: 25px;
    text-align: center;
    background-color: white;
    margin: 0 0 20px 0;
    transition: all 0.5s ease;
}

.step_content .step_option:hover, .step_content .step_option.actif {
    background-color: #032d3d;
    color: white;
}

.step_content .step_option figure img {
    background-color: #e41b12;
    width: 80px;
    padding: 15px;
    border-radius: 50%;
}  

.step_content .step_option h3 {
    font-size: 18px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-transform: unset;
    text-align: center;
    margin-bottom: 0;
    margin-top: 25px;
}

.step_content .step_texte h3 {
    margin-top: 0;
}

.step_content .step_option .cover {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.step_content .step_option .field {
    display: flex;
    flex-direction: column;
}

.step_content .step_option .field:not(:last-child) {
    margin-bottom: 20px;
}

.step_content .step_option .field label {
    text-align: left;
    font-weight: 500;
}

.step_content .step_option input {
    padding: 10px;
    width: 100%;
    border: 0;
    border-bottom: 1px solid  #ccc;
    font-family: "Montserrat", sans-serif;
}



.step_content .boutons {
    justify-content: center;
    margin-bottom: 15px;
}

@media (min-width: 768px){
    .steps_devis {
        height: 700px;
    }

    .step_content .step_options {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .step_content .step_option {
        flex-basis: calc(50% - 20px);
        margin: 0 10px 20px;
    }
}

@media (min-width: 992px){
    .step_content .step_option {
        flex-basis: calc(25% - 20px);
    }

    .steps_devis {
        height: 500px;
    }
}