.devis-section{
    padding:100px 0;
}

.devis-card{

    background:white;

    border-radius:30px;

    padding:50px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.form-control{

    height:60px;

    border-radius:15px;

    border:1px solid #e5e7eb;
}

textarea.form-control{

    height:auto;
}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;
}

.service-option{

    position:relative;

    cursor:pointer;
}

.service-option input{

    display:none;
}

.service-option span{

    display:block;

    padding:18px;

    border-radius:18px;

    border:2px solid #e5e7eb;

    font-weight:600;

    transition:.3s;
}

.service-option input:checked + span{

    background:#eaf8ff;

    border-color:#2DC7FF;

    color:#0095D9;
}

.btn-devis{

    margin-top:40px;

    border:none;

    background:
    linear-gradient(
        135deg,
        #2DC7FF,
        #0095D9
    );

    color:white;

    padding:18px 35px;

    border-radius:60px;

    font-weight:700;
}

.devis-sidebar{

    position:sticky;

    top:120px;

    background:#071B34;

    color:white;

    padding:40px;

    border-radius:30px;
}

.devis-sidebar ul{

    list-style:none;

    padding:0;
}

.devis-sidebar li{

    margin-bottom:18px;
}