/* Definition de la maquette */

:root {
    /* Color */
    --gris: #464746;
    --orange: #E98A15;
    --hover: #EE930A;
    /* effect */
    --bgColor: #EAEFF3;
    --filter: #303030;
    /* Police */
    --roboto: 'Roboto', sans-serif;
}

/* BODY */

body {
    background-color: white;
    position: relative;
    padding-top: 150px;
}


/* HEADER */

header {
    padding: 50px 68px;
    background-color: white;
    position: fixed;
    top: 0;
    z-index: 1000000;
    width: 100%;
}

header img {
    max-width: 195px;
}

header .menu > .row {
    justify-content: space-between;
    position: relative;
}

header .logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 0;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

header .icon-header a {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: var(--gris);
    padding-left: 20px;
    display: flex;
    align-items: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border: 1px solid transparent;
    padding: 10px;
}

header .icon-header a:hover {
    border: 1px solid var(--gris);

}

header .icon-header .col-auto {
    display: flex;
    align-items: center;
}

header li.nav-item {
    padding-right: 30px;
}

header a.nav-link {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: var(--gris);
    border-bottom: 2px solid transparent;
    padding: 0px 0px 10px 0px !important;
    margin-bottom: -12px;
}

header a.nav-link:last-child {
    padding-right: 0;
}

header a.nav-link:hover, header a.nav-link.active {
    border-bottom: 2px solid var(--gris);
}

header span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

header span::before {
    color: var(--gris);
    font-size: 25px;
}

/* header span:hover::before {
    color: ;
} */

/* FOOTER */

footer {
    padding: 50px 0px 45px;
}

footer .container > .row {
    display: flex;
    justify-content: space-between;
}

footer img {
    max-width: 195px;
}

footer h4 {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: var(--gris);
}

footer a.nav-link {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: var(--gris);
}

.subfooter {
    background-color: white;
    padding: 0;
    padding-bottom: 40px;
}

.subfooter a {
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    font-family: var(--roboto);
    color: #464746;
}

.subfooter .col-auto {
    position: relative;
}

.subfooter .col-auto:last-child, .subfooter .col-auto:nth-child(3) {
    position: initial;
}

.subfooter .col-auto::after {
    content: '|';
    color: var(--gris);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0px;
}

.subfooter .row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* TYPO */

h1 {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.03em;
    color: white;
}

h2 {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.03em;
    color: white;
}

h3 {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.03em;
    color: white;
}


p {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    color: white;
}


/* h6 {

} */


/* BUTTON */

.btn-prim {
    transition: 0.3s;
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.03em;
    padding: 15px 36px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 15px;
    color: white;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.btn-prim:hover {
    background-color: white;
    color: var(--orange);
}

/* deuxieme btn */

.btn-second {
    transition: 0.3s;
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.03em;
    padding: 13px 40px;
    border-radius: 20px;
    background-color: transparent;
    border: 2px solid var(--gris);
    color: var(--gris);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.btn-second:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: white;
}

/* ESPACEMENT SECTION */

.spacer1 {
    padding: 50px;
}

.spacer2 {
    padding: 65px;
}

.spacer3 {
    padding: 87.5px;
}

/* MOBILE HEADER */

header .mobile {
    position: absolute;
    height: 25px;
    width: 40px;
    padding: 0;
    margin-right: auto;
    left: 25px;
}

header .mobile span {
    background-color: #000000;
    height: 2px;
    position: absolute;
}

header .mobile span:nth-child(1) {
    top: 0;
    width: 100%;
}

header .mobile span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
}

header .mobile span:nth-child(3) {
    bottom: 0;
    width: 100%;
}

.mobile-on {
    display: none;
    position: fixed;
    left: -100%;
    top: 0;
    background-color: white;
    height: 100vh;
    z-index: 1000000;
    flex-direction: column;
}

header .mobile-on.active {
    display: flex;
    left: 0;
    padding: 0px 35px;
}

header .mobile-on.active a {
    color: var(--gris);
}

.icon-uni {
    color: #000;
    position: absolute;
    margin-top: 0;
    margin-left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--orange);
}

.icon-uni:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 3px;
    width: 21px;
    height: 2px;
    background-color: var(--orange);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.icon-uni:after {
    content: '';
    position: absolute;
    top: 12px;
    width: 21px;
    height: 2px;
    right: 2px;
    background-color: var(--orange);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.off.hiden {
    z-index: 0 !important;
}

.mobile-on.active .turn-on {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
}

.turn-on {
    position: absolute;
}

.mobile-on span::before {
    color: var(--orange);
}

.mobile-on > .row:nth-child(1) {
    display: flex;
    align-items: center;
    padding: 20px 0px;
    border-bottom: 5px solid var(--orange);
}

.mobile-on > .row:nth-child(1) > .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-on > .row li:nth-child(1) {
    margin-top: 40px;
}

.mobile-on > .row:nth-child(3) {
    margin-top: auto;
    margin-bottom: 50px;
}

.mobile-on > .row .icon-header .col-auto {
    padding-left: 0;
}

.mobile-on .icon-header .col-12 {
    margin-bottom: 12px;
    padding-left: 0;
}

.mobile-on > .row li {
    margin-top: 30px;
}

header .mobile-on .icon-header a.btn-second {
    background-color: white;
    color: var(--gris);
    padding: 11px;
    border: 1px solid var(--gris);
}

/* SPECIFIC CSS */

.btn-home {
    top: 237px;
    right: -300px;
    opacity: 0;
    width: auto;
    height: auto;
    position: fixed;
    z-index: 1000;
}

.btn-home.active > .row {
    padding: 33px 32px 33px 33px;
}

.btn-home > .row {
    padding: 16px 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: var(--orange);
    z-index: 100;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-home h2 {
    margin-bottom: 17px;
}

.btn-home .col-12 {
    display: flex;
    flex-direction: column;
}

.btn-home label {
    margin-bottom: 7px;
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
}

.btn-home input, .btn-home select {
    font-family: var(--roboto);
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.03em;
    color: #949494;
    margin-bottom: 30px;
    width: 100%;
    border: 0;
    padding: 9px 17px;
    background-color: white;
    border-radius: 11px;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -ms-border-radius: 11px;
    -o-border-radius: 11px;
    position: relative;
    appearance: none;
}

.btn-home .select select {
    margin-bottom: 0;
}

.btn-home .select::after {
    content: "\e901";
    font-family: 'icomoon';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 14px;
    height: 14px;
    color: var(--orange);
    font-size: 14px;
    pointer-events: none;
}

.btn-home .select {
    position: relative;
}

.btn-home button {
    margin-top: 20px;
    padding: 10px 30px;
}

#rappel button {
    margin-right: 30%;
}

.btn-home form {
    padding: 0;
}

.btn-home {
    padding: 0;
}

.btn-home .fleche {
    width: 41px;
    height: 41px;
    background-color: var(--gris);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: -11px;
    left: -11px;
    cursor: pointer;
}

.close-btn {
    cursor: pointer;
}

.close-btn, .btn-home form, .btn-home .fleche {
    display: none;
}

.close-btn.active, .btn-home form.active {
    display: block;
}

.btn-home .fleche.active {
    display: flex;
}

.close-btn span:before {
    font-size: 40px;
    color: white;
}

.btn-home.active > .row {
    padding: 33px 32px 33px 41px;
}

/* banner-content */

.banner {
    height: 500px;
    position: relative;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 0px 72px;
    display: flex;
}

.owl-index {
    padding: 0;
}

.owl-index img {
    width: 100%;
    object-fit: cover;
}

.owl-carousel .owl-stage-outer,
.owl-index img {
    border-radius: 25px;
}

.owl-index {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.banner .owl-dots {
    position: absolute;
    bottom: 10%;
    left: 18%;
}

.banner .owl-dot {
    background-color: transparent !important;
    width: 10px;
    height: 10px;
    border: 2px solid white !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 15px;
}

.banner .owl-dot.active {
    background-color: white !important;
}

.banner .filter {
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.banner-content {
    position: absolute;
    z-index: 1;
    top: 35%;
    left: 18%;
    max-width: 550px;
}

.owl-index .item {
    position: relative;
}

.banner > .row {
    margin: 0;
    /* display: flex; */
    width: 100%;
    position: relative;
}

.banner > .row > img {
    height: 100%;
    display: flex;
    object-fit: cover;
    width: 100%;
    padding: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}


/* background */

.bg {
    background-color: var(--gris);
}

.bg a {
    color: white;
}

/* intro */

.intro {
    margin-top: -160px;
    padding-top: 275px;
    padding-bottom: 108px;
}

.intro h1 {
    margin-bottom: 80px;
}

.intro .col-xl-4 > .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 12px;
}

.intro span::before {
    color: var(--orange);
    font-size: 60px;
}

/* devis */

.devis {
    background-color: var(--orange);
    padding: 65px 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.devis input, .devis select {
    border: none;
    height: 61px;
    padding: 0px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    width: 100%;
}

.devis select, .devis option {
    font-family: var(--roboto);
    font-style: italic;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: #949494;
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.devis input::placeholder {
    font-family: var(--roboto);
    font-style: italic;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: #949494;
}

.devis form > .row > .col-12:last-child {
    display: flex;
    align-items: flex-end;
}

.devis form > .row > .col-12:last-child button {
    height: 61px;
}

.devis h2 {
    margin-bottom: 10px;
}

.devis h1 {
    margin-bottom: 45px;
}

.devis select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.devis .select {
    position: relative;
}

.g-6, .gx-6 {
    --bs-gutter-x: 40px;
}

/*
.devis .select::after{
  content: "\e903";
  font-family: 'icomoon';
  position: absolute;
  bottom: 22px;
  right: 32px;
  width: 25px;
  height: 25px;
  color: var(--orange);
  font-size: 25px;
  pointer-events: none;
}
*/
/* services */

.service img {
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.service h1 {
    margin-bottom: 30px;
    color: var(--orange);
}

.service h2 {
    margin-bottom: 10px;
}

.service .col-xl-4 {
    padding-bottom: 50px;
}

.service {
    padding-bottom: 27px;
}

.temoignage {
    padding-bottom: 155px;
}

.temoignage h1 {
    margin-bottom: 45px;
}

.temoignage .owl-tem .item {
    position: relative;
    padding: 30px 22px;
    border-radius: 20px;
}

.temoignage .owl-tem .item h3 {
    margin-bottom: 15px;
}

.temoignage .owl-tem .item .row {
    z-index: 1;
}

.temoignage .owl-tem .item .filter {
    background-color: white;
    border-radius: 20px;
    position: absolute;
    opacity: 0.1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}


/* footer */

/* contact */

.contact {
    height: 100px;
    background: #E98A15;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 28px 26px;
    margin-top: -50px;
    display: flex;
    align-items: center;
}

.contact > .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.contact span::before {
    color: white;
    font-size: 30px;
}

.contact span.icon-pin::before {
    font-size: 40px;
}

.contact span.icon-mail::before {
    font-size: 25px;
}

.contact span.icon-tel::before {
    font-size: 39px;
}


.contact > .row > .col-xl-auto > .row {
    display: flex;
    align-items: center;
}

.contact h2 {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.03em;
}

.contact h3 {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}

.contact a {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: white;
}

/* footer */

.footer ul .nav-link {
    padding: 0;
}

footer p {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: var(--gris);
}

footer button {
    border: 1px solid var(--gris);
}

footer input {
    width: 100%;
    border: 2px solid var(--gris);
    padding: 10px 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

footer input::placeholder {
    font-family: var(--roboto);
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.03em;
}

.footer h4 {
    margin-bottom: 10px;
}

.footer img {
    margin-bottom: 20px;
}

footer a {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    color: var(--gris);
}

footer a:hover {
    color: currentColor;
}

footer form {
    margin-top: 30px;
}

/* page corps */

.corps > .row {
    background-color: var(--orange);
    padding: 85px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.corps {
    padding: 0px 85px;
    position: relative;
}

.corps p, .corps h1 {
    max-width: 660px;
}

.corps h1 {
    margin-bottom: 10px;
}

.metier {
    margin-top: -129px;
    padding: 175px 0px 100px;
}

.metier .col-xl-4 .filter {
    background: #FFFFFF;
    opacity: 0.1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.metier .col-xl-4 > .row, .metier .col-xl-4 > label > .row {
    position: relative;
    margin: 0;
    padding: 20px 20px 30px;
}

.metier .col-xl-4 > .row > .col-12, .metier .col-xl-4 > label > .row > .col-12 {
    z-index: 1;
}

.metier .col-xl-4 {
    padding-bottom: 50px;
}

.metier h2 {
    margin-top: 17px;
    margin-bottom: 15px;
}

.metier img {
    width: 100%;
    object-fit: cover;
    max-height: 150px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.metier.listable img {
    max-height: initial;
    object-fit: cover;
    height: 100%;
}

.banner.page {
    height: auto;
}

.owl-index .banner-content h1 {
    margin-bottom: 15px;
}

.banner-content h1 {
    text-align: left !important;
}

.banner.page .banner-content {
    top: 0;
    bottom: 0;
    margin: auto;
    left: 4.8%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner.page > .row {
    height: 258px;
}


/* page devis */

/* etape1+2 */

.formulaire-page .devis {
    background-color: var(--gris);
    position: relative;
}

.formulaire-page .devis .italic select {
    font-style: italic;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: #949494;
}

.devis .filter {
    background: #FFFFFF;
    opacity: 0.1;
    border-radius: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.devis > .row {
    margin: 0;
    z-index: 1;
}


form.formulaire-page {
    padding-top: 175px;
    /*min-height: 100vh;*/
    padding-bottom:100px;
    margin-top: -129px;
}

form.formulaire-page .container.validation {
    padding-bottom: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 55px;
}

.container.validation a {
    display: flex;
}

.formulaire-page .devis h2 {
    margin-bottom: 10px;
}


.formulaire-page .devis {
    padding: 50px 25px;
}

.formulaire-page .devis > .row {
    align-items: center;
    z-index: 1;
    position: relative;
}

.etape3, .etape4 {
    z-index: 1;
    position: relative;
}

.etape1 h2, .etape3 h2, .etape4 h2 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    margin-right: 20px;
}

.etape1 .d-flex,
.etape3 > .col-12:first-child,
.etape4 > .col-12:first-child {
    align-items: flex-end;
    margin-bottom: 10px;
}

.etape1 p,
.etape3 > .col-12:first-child p,
.etape4 > .col-12:first-child p {
    font-family: var(--roboto);
    font-style: italic;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: #949494;
}

/*
.formulaire-page .devis select:focus-within {
    background-color: var(--orange);
    color: white;
}

.devis .select:focus-within:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    bottom: 10px;
    transition: 0.5s;
    -webkit-transition: 0.8s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
*/

.selectable > span:after {
    content: "\e903";
    font-family: 'icomoon';
    position: absolute;
    bottom: 22px;
    right: 32px;
    width: 25px;
    height: 25px;
    color: var(--orange);
    font-size: 25px;
    pointer-events: none;
    transition: all ease 200ms;
}

.selectable > span.rotate180:after {
    transform: scaleY(-1);
    bottom: 10px;
}

.how-it-works img {
    max-height: 85px;
}

.formulaire-page .devis select {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    color: var(--gris);
}

.formulaire-page .devis select option:disabled {
    background-color: white;
}

.formulaire-page .devis select option {
    background-color: white;
    padding: 30px;
    font-family: var(--roboto);
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    color: var(--gris);
}

.container.validation .btn-second {
    border: 2px solid var(--orange);
    padding: 14px 36px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    color: white;
    background-color: var(--orange);
}

.container.validation .btn-second:disabled {
    opacity: 0.2;
}

.etape3.metier, .etape4.metier {
    padding-top: 50px;
    padding-bottom: 0;
}

.formulaire-page .etape3 .radio input,
.formulaire-page .etape4 .radio input {
    padding: 0;
    height: 20px;
    width: 20px;
    z-index: 0;
}

.formulaire-page .etape3 .radio .col-auto input,
.formulaire-page .etape4 .radio .col-auto input {
    position: relative;
    margin-right: 11px;
}

.formulaire-page .etape3 .radio input[type="radio"]::before,
.formulaire-page .etape4 .radio input[type="radio"]::before {
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    content: '';
    border-radius: 42px;
    background-color: white;
    height: 20px;
    width: 20px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    -ms-border-radius: 42px;
    -o-border-radius: 42px;
    cursor: pointer;
    z-index: 0;
}

.formulaire-page .etape3 .radio input[type="radio"]:checked::after,
.formulaire-page .etape4 .radio input[type="radio"]:checked::after {
    border: 2px solid var(--gris);
    border-radius: 42px;
    background-color: white;
    position: relative;
    height: 16px;
    width: 16px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    -ms-border-radius: 42px;
    -o-border-radius: 42px;
    cursor: pointer;
    z-index: 1;
    top: 0;
    left: 2px;
    bottom: 0;
    margin: auto;
    content: "";
    position: absolute
}

.etape3 .radio .col-auto,
.etape4 .radio .col-auto {
    display: flex;
    align-items: center;
}

.etape3 .radio label,
.etape4 .radio label {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-right: 60px;
}

.formulaire-page .etape3 .radio input[type="number"],
.formulaire-page .etape4 .radio input[type="number"] {
    border-bottom: 1px solid white;
    background-color: transparent;
    width: 50px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    font-family: var(--roboto);
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.03em;
    appearance: none;
    background: #fff;
    border-radius: 20px;
    padding: 5px 10px;
    height: auto;
    width: 80px;
}

.formulaire-page .radio {
    margin-top: 45px;
    display: flex;
    align-items: center;
}


.etape3 .radio .col-auto:last-child,
.etape4 .radio .col-auto:last-child {
    margin-left: auto;
}

.etape3 .radio button,
.etape4 .radio button {
    cursor: pointer;
}

.etape3.metier .col-xl-4,
.etape4.metier .col-xl-4 {
    position: relative;
}

.etape3.metier .col-xl-4 label,
.etape4.metier .col-xl-4 label {
    cursor: pointer;
}

.etape3.metier .col-xl-4 input[type="radio"],
.etape4.metier .col-xl-4 input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.etape3.metier .col-xl-4 input[type="radio"]:checked,
.etape4.metier .col-xl-4 input[type="radio"]:checked {
    border: 2px solid var(--orange);
}


.formulaire-page .end {
    margin-top: 50px;
}

.formulaire-page .end h2 {
    border-bottom: 2px solid white;
    padding-bottom: 3px;
    margin-bottom: 15px;
    color: white;
}

.end h4 {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    color: white;
}

.end h5 {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    color: white;
    border-right: 1px solid white;
    padding: 0px 30px;
}

.end h5:last-child {
    border-right: 0;
}

.end h5:first-child {
    padding-left: 0;
}

.end .recap {
    border-bottom: 1px solid white;
    padding-bottom: 15px;
}

.end h3 {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    color: white;
    margin-bottom: 9px;
}

.end .col-xl-10 > .row {
    margin: 0;
}

.end .infos .col-xl-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid white;
}

.formulaire-page .devis.end, .formulaire-page .devis.last {
    padding: 50px 40px;
}

.formulaire-page .devis.end .infos {
    padding: 15px 30px;
    background-color: #707070;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.formulaire-page .devis.end .infos {
    margin-bottom: 20px;
}

.formulaire-page .devis.end .infos > .row {
    display: flex;
    margin: 0;
}

.formulaire-page .devis.end .recap, .formulaire-page .devis.end .text {
    padding-left: 0;
    padding-right: 20px;
}

.formulaire-page .devis.end .text {
    padding-top: 15px;
}

.formulaire-page .devis.end .infos:last-child {
    margin-bottom: 0;
}

.end .aside .col-auto {
    align-items: center;
    justify-content: center;
    display: flex;
}

.end .aside .col-auto span::before {
    color: white;
    font-size: 20px;
}

.devis .icons span::before {
    color: white;
    font-size: 20px;
}

.devis .icons {
    display: flex;
    justify-content: center;
}

.devis.last {
    margin-top: 30px;
}

.devis .contact-form .col-xl-6,.devis .contact-form .col-xl-12,
.devis .contact-form .col-xl-6:nth-last-child(1), .devis .contact-form .col-xl-6:nth-last-child(2) {
    margin-top: 15px;
    margin-bottom: 15px;
}


@media screen and (min-width: 1400px) {
    .container {
        max-width: 1164px;
    }
}

/* menu mobile */
@media screen and (max-width: 1279px) {
    header .menu > .row {
        height: 25px;
    }

    header .mobile {
        left: 0;
    }

    header img {
        max-width: 160px;
    }
}

@media screen and (max-width: 767px) {
    header {
        padding: 43px 0px;
    }

    header .menu > .row {
        justify-content: flex-end;
    }

    .menu {
        padding: 0px 15px;
    }

    .banner {
        padding: 0px 15px;
    }

    .banner-content {
        max-width: 275px;
        top: 100px;
        left: 35px;
        padding: 0;
    }

    .banner-content h1 {
        margin-bottom: 15px;
    }

    .formulaire-page .devis.end .row .infos {
        margin-top: 40px;
    }

    .formulaire-page .devis.end .row .infos:first-child {
        margin-top: 0;
    }

    .devis .contact-form > .col-xl-6:nth-child(2) {
        margin-top: 30px;
    }

    body {
        padding-top: 110px;
    }

    .intro span.icon-picto-2::before {
        font-size: 35px;
    }

    .intro .col-3 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .intro .col-12 {
        padding: 0;
    }

    .intro .col-xl-4 > .row {
        padding: 0;
    }

    .devis {
        padding: 50px 20px;
        max-width: 93%
    }

    .service h2 {
        margin-top: 25px;
    }

    h2 {
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.03em;
    }

    p {
        font-style: normal;
        font-weight: normal;
        font-size: 13px;
        line-height: 20px;
    }

    .service .col-xl-4 {
        padding-bottom: 50px;
        padding: 0px 0px 50px;
    }

    .temoignage h1 {
        margin-bottom: 30px;
    }

    .temoignage .owl-tem .item {
        padding: 30px 17px;
    }

    .contact {
        height: auto;
        max-width: 93%;
        margin-top: -195px;
    }

    .contact h2 {
        margin-bottom: 20px;
    }

    .contact .col-xl-auto {
        margin-bottom: 36px;
    }

    .contact .col-xl-auto:last-child, .contact .col-xl-auto:first-child {
        margin-bottom: 0px;
    }

    .btn-prim {
        padding: 15px 50px;
    }

    .devis .col-12 {
        padding: 0;
    }

    .devis .select {
        margin-bottom: 20px;
    }

    .devis form > .row > .col-12:last-child {
        align-items: center;
        margin-top: 30px;
    }

    .temoignage {
        padding-bottom: 270px;
    }

    .owl-index .owl-stage, .owl-index .owl-item, .owl-index .owl-stage-outer, .owl-index .item, .owl-index img {
        height: 100%;
    }

    .owl-index .owl-item img {
        object-fit: cover;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }


    .btn-home > .row {
        padding: 18px;
    }

    footer h4 {
        margin-top: 30px;
    }

    footer > .container > .row > .col-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer ul {
        text-align: center;
    }

    .footer p {
        text-align: center;
    }

    footer form .col-12 {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .corps > .row {
        padding: 75px 35px;
    }

    .corps {
        padding: 0px 15px;
    }

    .metier .col-xl-4 > .row, .metier .col-xl-4 > label > .row {
        padding: 8px;
    }

    .metier {
        padding-bottom: 250px;
    }

    .etape3.metier .col-xl-4 {
        margin-bottom: 20px;
    }

    .banner.page .banner-content {
        top: 75px;
        bottom: 45px;
        margin: auto;
        left: 35px;
        right: 35px;
        height: 100%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        margin: auto;
        max-width: 85%;
    }

    .banner.page .banner-content h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .devis .select::after {
        right: 20px;
        font-size: 19px;
        bottom: 17px;
    }

    .formulaire-page .devis select {
        font-size: 13px;
    }

    .etape3 .radio label {
        margin-right: 0;
        font-size: 13px;
    }

    .formulaire-page .etape3 .radio input[type="number"] {
        width: 35px;
    }

    .etape3 .radio .col-auto:last-child {
        margin-right: auto;
        margin-top: 20px;
    }

    form.formulaire-page .container.validation {
        padding-bottom: 250px;
    }

    .formulaire-page .container.validation .row {
        justify-content: center;
    }

    .formulaire-page .container.validation .row .btn-prim {
        margin-bottom: 20px;
    }

    .formulaire-page .devis.end, .formulaire-page .devis.last, .formulaire-page .devis.end .infos {
        padding: 25px;
    }

    .formulaire-page .devis.end .recap, .formulaire-page .devis.end .text {
        align-items: center;
        padding-right: 0;
    }

    .end h5:last-child {
        display: none;
    }

    .end h5:nth-child(3) {
        border: 0;
        padding-right: 0;
    }

    .formulaire-page .devis.end .recap, .formulaire-page .devis.end .text {
        padding-bottom: 10px;
    }

    .end .infos .col-xl-2 {
        border: 0;
    }

    .end .infos .col-xl-2 {
        justify-content: flex-start;
    }


}

@media screen and (min-width: 768px) and (max-width: 1023px) {

    .service h2 {
        margin-top: 15px;
    }

    .devis .select {
        margin-bottom: 20px;
    }

    header {
        padding: 43px 0px;
    }

    .banner-content {
        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 0;
        left: 18%;
        margin: auto;
        max-width: 550px;
        height: fit-content;
        height: min-content;
    }

    .banner .owl-dots {
        left: 35px;
        bottom: 50px;
    }


    header .menu > .row {
        justify-content: flex-end;
    }


    .menu {
        padding: 0px 15px;
    }

    .banner {
        padding: 0px 15px;
    }

    .banner-content {
        max-width: 450px;
        top: 100px;
        left: 35px;
        padding: 0;
    }

    .banner-content h1 {
        margin-bottom: 15px;
    }

    body {
        padding-top: 110px;
    }

    .owl-index .owl-stage, .owl-index .owl-item, .owl-index .owl-stage-outer, .owl-index .item, .owl-index img {
        height: 100%;
    }

    .owl-index .owl-item img {
        object-fit: cover;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

    .devis form > .row > .col-12:last-child {
        margin-top: 20px;
    }

    .contact {
        height: auto;
        max-width: 93%;
        margin-top: -110px;
    }

    .contact h2 {
        margin-bottom: 20px;
    }

    .contact .col-xl-auto {
        margin-bottom: 36px;
    }

    .contact .col-xl-auto:last-child, .contact .col-xl-auto:first-child {
        margin-bottom: 0px;
    }

    footer h4 {
        margin-top: 30px;
    }

    .corps > .row {
        padding: 75px 35px;
    }

    .corps {
        padding: 0px 15px;
    }

    .banner.page .banner-content {
        align-items: flex-start;
    }

    .etape3 .radio .col-auto:last-child {
        margin-top: 20px;
    }

    form.formulaire-page .container.validation {
        padding-bottom: 200px;
    }

    .formulaire-page .devis.end .recap, .formulaire-page .devis.end .text {
        padding-right: 0;
    }

    .end h4 {
        font-size: 16px;
    }

    .formulaire-page .devis.end .infos {
        padding-right: 15px;
    }

    .formulaire-page .devis.end {
        padding-right: 20px;
    }

    .container.validation .row {
        justify-content: center;
    }

    .container.validation .col-auto {
        margin-bottom: 20px;
    }
}


@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .contact h2 {
        margin-bottom: 20px;
    }

    .devis .select {
        margin-bottom: 20px;
    }

    .service h2 {
        margin-top: 15px;
    }

    .banner-content {
        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 0;
        left: 18%;
        margin: auto;
        max-width: 550px;
        height: fit-content;
        height: min-content;
    }


    header .menu > .row {
        justify-content: flex-end;
    }

    .contact {
        padding: 30px 40px;
        height: auto;
    }

    .devis form > .row > .col-12:last-child {
        margin-top: 20px;
    }

    .owl-index .owl-stage, .owl-index .owl-item, .owl-index .owl-stage-outer, .owl-index .item, .owl-index img {
        height: 100%;
    }

    .owl-index .owl-item img {
        object-fit: cover;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

    footer h4 {
        margin-top: 30px;
    }

    .corps > .row {
        padding: 75px 35px;
    }


    .banner.page .banner-content {
        align-items: flex-start;
    }

}

.contact-page {
    background: #585958;
    border-radius: 25px;
}

.contact-page input,
.contact-page textarea {
    border-radius: 25px;
    padding: 20px;
}

.contact-page .form-group {
    text-align: left;
}

.contact-page label {
    font-family: var(--roboto);
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 38px;
    letter-spacing: 0.03em;
    color: white;
    padding-bottom: 10px;
    margin-top: 20px;
}

.btn-contact {
    background: #e98a15;
    font-size: 20px;
    color: white;
    padding: 5px 20px 10px 20px;
    border-radius: 10px;
}

.google-map iframe {
    border-radius: 25px;
}