body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
}

@font-face {
    font-family: "Geologica";
    src: url("/fonts/Geologica.woff2");
}
@font-face {
    font-family: "Geologica-Light";
    src: url("/fonts/Geologica-Light.ttf");
}
/* off screen menu */
.off-screen-menu {
    background-color: #2570FB;
    padding: 20px;
    width: 100vw;
    max-width: 100vw;
    position: fixed;
    top: 0;
    left: -2200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
    transition: 0.3s ease;
}
.off-screen-menu ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.off-screen-menu ul a {
    font-family: "Geologica";
    margin: 0;
    font-size: 24px;
    text-decoration: none;
    color: white;
}

.off-screen-menu.active {
    left: 0;
}

/* ham menu */
.ham-menu {
    z-index: 3;
    height: 50px;
    width: 40px;
    position: relative;
}

.desktop_nav {
    display: none;
}

.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #FBFBFB;
    border-radius: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}

.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}

.ham-menu.active span {
    background-color: white;
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.logo-text {
    width: 100%;
}

/* end off screen menu */
header {
    z-index: 2;
    background-color: #2570FB;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}
header h2 {
    color: white;
    font-family: "Geologica";
    margin: 0;
    font-size: 28px;
}

.desktop_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    gap: 20px;
}

@media screen and (min-width: 768px) {
    .ham-menu {
        display: none;
    }
    header {
        justify-content: space-between;
        gap: 16px;
    }
    .desktop_nav {
        display: block;
        width: 700px;
        padding: 0;
    }
    .desktop_nav ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
        flex-direction: row;
        justify-content: space-between;
        display: flex;
        gap: 3px;
    }
    .desktop_nav ul a {
        text-align: center;
        font-family: "Geologica";
        margin: 0;
        font-size: 16px;
        text-decoration: none;
        color: white;
    }
}
@media screen and (min-width: 1000px) {
    .desktop_nav ul a {
        font-size: 21px;
    }
}
.form_container {
    padding: 15px;
    height: fit-content;
}
.form_container h3 {
    margin: 10px;
    font-size: 24px;
    font-family: "Geologica";
    color: #940B72;
}

hr {
    background-color: #940B72;
    width: 80%;
    height: 2px;
    margin-left: 0;
}

.progressbar {
    margin: 2vw;
}
.progressbar .info_bulle {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}
.progressbar .info_bulle p {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap !important;
    width: max-content;
    overflow: visible;
}
.progressbar .progressbar_bar_elements {
    display: flex;
    align-items: center;
    width: 100%;
}
.progressbar .progressbar_bar_elements .one,
.progressbar .progressbar_bar_elements .two,
.progressbar .progressbar_bar_elements .three {
    margin: 0;
    width: 40px;
    margin-left: 3.5%;
    margin-right: 3.5%;
    border-radius: 100%;
    aspect-ratio: 1/1;
    background-color: #CDCDCD;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Geologica-Light";
    color: #FBFBFB;
}
.progressbar .progressbar_bar_elements .one {
    background-color: #2570FB;
}
.progressbar .progressbar_bar_elements .progress_one .blue_bar {
    height: 5px;
    border-radius: 10px;
    width: 50%;
    background-color: #2570FB;
}
.progressbar .progressbar_bar_elements .progress_one,
.progressbar .progressbar_bar_elements .progress_two {
    height: 5px;
    width: 28%;
    border-radius: 10px;
    background-color: #CDCDCD;
    margin-top: 38px;
}

.nomprenom {
    display: flex;
    justify-content: space-between;
}
.nomprenom .nom, .nomprenom .prenom {
    width: 49%;
}

.nom,
.prenom,
.email,
.telephone {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
.nom label,
.prenom label,
.email label,
.telephone label {
    font-family: "Geologica-Light";
    font-size: 24px;
    color: #2570FB;
}
.nom input,
.prenom input,
.email input,
.telephone input {
    font-family: "Geologica-Light";
    font-size: 18px;
    border-radius: 10px;
    height: 46px;
    border: 1px solid #5AADF1;
}
.nom input::placeholder,
.prenom input::placeholder,
.email input::placeholder,
.telephone input::placeholder {
    font-family: "Geologica-Light";
    font-size: 18px;
}

form a {
    font-family: "Geologica-Light";
    font-size: 18px;
    color: #2570FB;
    text-decoration: none;
}

.form_illus {
    display: none;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.progressbar_two {
    margin: 20px;
}
.progressbar_two .info_bulle {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}
.progressbar_two .info_bulle p {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap !important;
    width: max-content;
    overflow: visible;
}
.progressbar_two .progressbar_bar_elements {
    display: flex;
    align-items: center;
}
.progressbar_two .progressbar_bar_elements .one,
.progressbar_two .progressbar_bar_elements .two,
.progressbar_two .progressbar_bar_elements .three {
    margin: 0;
    width: 40px;
    border-radius: 100%;
    aspect-ratio: 1/1;
    background-color: #CDCDCD;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Geologica-Light";
    color: #FBFBFB;
}
.progressbar_two .progressbar_bar_elements .one, .progressbar_two .progressbar_bar_elements .two {
    background-color: #2570FB;
}
.progressbar_two .progressbar_bar_elements .progress_one .blue_bar {
    height: 5px;
    border-radius: 10px;
    width: 100%;
    background-color: #2570FB;
}
.progressbar_two .progressbar_bar_elements .progress_two .blue_bar_two {
    height: 5px;
    border-radius: 10px;
    width: 50%;
    background-color: #2570FB;
}
.progressbar_two .progressbar_bar_elements .progress_one,
.progressbar_two .progressbar_bar_elements .progress_two {
    height: 5px;
    width: 30%;
    border-radius: 10px;
    background-color: #CDCDCD;
    margin-top: 38px;
}

.type_titre {
    font-family: "Geologica-Light";
    font-size: 24px;
    color: #2570FB;
    text-align: center;
    margin: 20px;
}

.type_demande {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.type_demande .urgenc, .type_demande .rendezvou, .type_demande .devi {
    padding: 5px;
    width: 212px;
    height: 90px;
    border-radius: 10px;
}
.type_demande .urgenc h3, .type_demande .rendezvou h3, .type_demande .devi h3 {
    font-family: "Geologica-Light";
    font-size: 24px;
    color: #FBFBFB;
    font-weight: 100;
    text-align: center;
}
.type_demande .urgenc input, .type_demande .rendezvou input, .type_demande .devi input {
    display: none;
}
.type_demande .urgenc p, .type_demande .rendezvou p, .type_demande .devi p {
    text-align: center;
    margin: 0;
    font-family: "Geologica-Light";
    font-size: 16px;
    color: #FBFBFB;
}
.type_demande .urgenc {
    background-color: #D579B0;
}
.type_demande .rendezvou {
    background-color: #4F4BC6;
}
.type_demande .devi {
    background-color: #2570FB;
}

label.presta:has(input[type=radio]:checked) {
    outline: 3px solid #4F4BC6;
    background-color: #e6f0ff;
    box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.25);
}
label.presta:has(input[type=radio]:checked) p {
    color: #4F4BC6;
}

label.rendezvou:has(input[type=radio]:checked) {
    outline: 3px solid #4F4BC6;
    background-color: #e6f0ff;
    box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.25);
}
label.rendezvou:has(input[type=radio]:checked) h3, label.rendezvou:has(input[type=radio]:checked) p {
    color: #4F4BC6;
}

label.devi:has(input[type=radio]:checked) {
    outline: 3px solid #2570FB;
    background-color: #e6f0ff;
    box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.25);
}
label.devi:has(input[type=radio]:checked) h3, label.devi:has(input[type=radio]:checked) p {
    color: #2570FB;
}

label.urgenc:has(input[type=radio]:checked) {
    outline: 3px solid #D579B0;
    background-color: #e6f0ff;
}
label.urgenc:has(input[type=radio]:checked) h3, label.urgenc:has(input[type=radio]:checked) p {
    color: #D579B0;
}

.type_prestation {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.type_prestation .presta {
    background-color: #4F4BC6;
    width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-top: 12px;
}
.type_prestation .presta input {
    display: none;
}
.type_prestation .presta p {
    margin: 0;
    font-family: "Geologica-Light";
    font-size: 16px;
    color: #FBFBFB;
}
.type_prestation h3 {
    font-family: "Geologica-Light";
    font-size: 32px;
    color: #2570FB;
    margin: 10px;
}

.form_lieu .adresse, .form_lieu .postal, .form_lieu .ville, .form_lieu .complement {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
.form_lieu .adresse label, .form_lieu .postal label, .form_lieu .ville label, .form_lieu .complement label {
    font-family: "Geologica-Light";
    font-size: 24px;
    color: #2570FB;
}
.form_lieu .adresse input, .form_lieu .postal input, .form_lieu .ville input, .form_lieu .complement input {
    font-family: "Geologica-Light";
    font-size: 18px;
    border-radius: 10px;
    height: 46px;
    border: 1px solid #5AADF1;
}
.form_lieu .adresse input::placeholder, .form_lieu .postal input::placeholder, .form_lieu .ville input::placeholder, .form_lieu .complement input::placeholder {
    font-family: "Geologica-Light";
    font-size: 18px;
}

.progressbar_three {
    margin: 20px;
}

#info_text{
    font-family: "Geologica-Light";
}

.message h2{
    font-family: "Geologica-Light";
}
.message input{
        border: 1px solid #2570FB;
        border-radius: 12px;
}

.progressbar_three .info_bulle {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}
.progressbar_three .info_bulle p {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap !important;
    width: max-content;
    overflow: visible;
}
.progressbar_three .progressbar_bar_elements {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.progressbar_three .progressbar_bar_elements .one,
.progressbar_three .progressbar_bar_elements .two,
.progressbar_three .progressbar_bar_elements .three {
    margin: 0;
    width: 40px;
    border-radius: 100%;
    aspect-ratio: 1/1;
    background-color: #CDCDCD;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Geologica-Light";
    color: #FBFBFB;
    background-color: #2570FB;
}
.progressbar_three .progressbar_bar_elements .blue_bar, .progressbar_three .progressbar_bar_elements .blue_bar_two {
    height: 5px;
    border-radius: 10px;
    width: 100%;
    background-color: #2570FB;
}
.progressbar_three .progressbar_bar_elements .progress_one,
.progressbar_three .progressbar_bar_elements .progress_two {
    height: 5px;
    width: 30%;
    border-radius: 10px;
    background-color: #CDCDCD;
    margin-top: 38px;
}

.prev-next {
    display: flex;
    justify-content: space-between;
    margin: 15px;
}
.prev-next button {
    padding: 10px 14px 10px;
    background-color: #2570FB;
    font-family: "Geologica-Light";
    font-size: 16px;
    outline: none;
    border: none;
    border-radius: 12px;
    color: white;
}

.form-control {
    border: 1px solid #5AADF1;
    margin-top: 50px;
    margin-bottom: 50px;
}

.label-form {
    font-family: "Geologica-Light";
    font-size: 24px;
    color: #2570FB;
}

.form_confirmation {
    transition: 0.3s ease;
    z-index: 99;
    position: fixed;
    top: -70px;
    left: 10px;
    display: flex;
    gap: 12px;
    padding: 10px 14px 10px;
    background-color: rgb(33, 140, 33);
    justify-content: center;
    width: fit-content;
    align-items: center;
    border-radius: 12px;
}
.form_confirmation p {
    margin: 0;
}

.poped-up {
    transition: 0.3s ease;
    z-index: 99;
    position: fixed;
    top: 110px;
    left: 10px;
    display: flex;
    gap: 12px;
    padding: 10px 14px 10px;
    background-color: rgb(33, 140, 33);
    justify-content: center;
    width: fit-content;
    align-items: center;
    border-radius: 12px;
}
.poped-up p {
    margin: 0;
}

@media (min-width: 768px) {
    .form_container {
        padding: 3% 6% 3% 6%;
    }
}
@media (min-width: 1024px) {
    main {
        display: flex;
        justify-content: space-between;
    }
    .form_container {
        width: 100%;
    }
    .form_illus {
        display: block;
        width: 500px;
        background-image: url("/images/form_img.jpg");
        background-position-y: center;
        background-position-x: center;
    }
    body {
        height: 100vh;
    }
    form {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
}
footer {
    width: 100%;
    display: flex;
    gap: 12px;
    flex-direction: column;
    background-color: #2570FB;
    color: #FBFBFB;
}
footer h2 {
    font-family: "Geologica";
    text-align: center;
}
footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}
footer ul li a {
    font-family: "Geologica-Light";
    color: #FBFBFB;
    text-decoration: none;
}

.pages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reseaux ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    footer {
        flex-direction: row;
        justify-content: space-around;
        padding: 20px 0;
        position: absolute;
    }
}

/*# sourceMappingURL=styles.css.map */
