:root {
    --color_blanc: rgb(255, 255, 255);
    --color_noir: rgb(17, 17, 17);
    --color_texte: rgb(50, 50, 50);
    --color_blue: rgb(43, 77, 168);
    --color_border: rgb(67, 67, 67);
    --color_label: rgb(127, 127, 127);
    --color_input: rgb(238, 238, 238);
    --color_lightgrey: rgb(241, 241, 241);
    --color_mediumgrey: rgb(223, 223, 223);
    --font-title: 'Urbanist', sans-serif;
    --filter_blue: brightness(0) saturate(100%) invert(25%) sepia(22%) saturate(4736%) hue-rotate(208deg) brightness(96%) contrast(92%);
    --filter_noir: brightness(0) saturate(100%) invert(0%) sepia(25%) saturate(994%) hue-rotate(40deg) brightness(103%) contrast(87%);
    --filter_blanc: brightness(0) saturate(100%) invert(99%) sepia(2%) saturate(324%) hue-rotate(248deg) brightness(112%) contrast(75%);
    --padding_LR: 36px;
    --margin_section: 9vh;
    --navbar-height: 89px;
}

* {
    box-sizing: border-box;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
}

body.no-scroll {
    overflow: hidden;
}

body.default {
    background-color: var(--color_lightgrey);
}

body.page-404 {
    background-image: url("/themes/jvflex/assets/images/404 error.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

body.page-404 main {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color_blanc);
}

body.page-404 main h1 {
    font-size: 3rem;
    margin: 0;
    text-align: center;
}

body.page-404 main p {
    text-align: center;
    margin: 0;
    font-size: 5rem;
    font-style: normal;
    font-weight: 700;
}

main {
    margin: 68px var(--padding_LR);
}

section+section {
    margin-top: var(--margin_section);
}

section.full {
    margin: var(--margin_section) calc(-1 * var(--padding_LR)) 0;
}

section.full .page-title {
    margin: 34px 0;
}

iframe {
    max-width: 100%;
}

.jvflex {
    position: fixed;
    z-index: 9999;
    top: 70px;
    left: 16px;
}

.jvflex>a {
    border-radius: 24px;
    cursor: pointer;
    display: block;
    height: 48px;
    line-height: 48px;
    opacity: .9;
    position: absolute;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 48px;
    background: url("/themes/jvflex/assets/images/theme-preview.png"), #f8f6f5;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 30%);
}

.noteditable {
    pointer-events: none;
}

img {
    display: block;
    max-width: 100%;
}

.img_fit {
    object-fit: cover;
    object-position: center;
}

.btn-bleu,
.btn-container.bouton-bleu>a {
    appearance: none;
    background-color: var(--color_blue);
    text-decoration: none;
    border-radius: 5px;
    padding: 12px 34px;
    color: var(--color_lightgrey);
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 500;
    font-size: 1.1375rem;
    border: 1px solid var(--color_blue);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-bleu:hover,
.btn-container.bouton-bleu:hover>a, .btn-bleu.select:hover option{
    background-color: var(--color_lightgrey);
    color: var(--color_blue);
}

.btn-bleu.nowrap {
    white-space: nowrap;
}

.btn-bleu.select {
    padding: 8px 12px;
    text-transform: none;
    appearance: auto;
    accent-color: var(--color_lightgrey);
    text-align: left;
}
.btn-bleu.select:hover{
    background-color: var(--color_blue);
    color: var(--color_lightgrey);
}
.btn-bleu.select option {
    font-size: 1rem;
}
.btn-bleu.select::after {
    content:"lol";
}

.btn-bleu .picto-bleu {
    filter: var(--filter_blanc);
}

.btn-bleu:hover .picto-bleu {
    filter: unset;
}

.btn-container.center {
    display: flex;
    margin: 0;
    justify-content: center;
}

.btn-container.align {
    display: flex;
    align-items: center;
}

#scroll-top {
    appearance: none;
    border: none;
    width: 40px;
    height: 40px;
    background: rgba(43, 77, 168, 0.5);
    box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
    border-radius: 40px;
    position: fixed;
    bottom: 65px;
    right: 13.5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.avatar {
    border-radius: 100px;
}

#scroll-top>svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(270deg);
}

p {
    font-size: 1.1rem;
}

header.page {
    background: linear-gradient(93.57deg, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0.25) 25%), url(https://picsum.photos/1920/1080);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 65vh;
    position: relative;
    background-color: rgb(255 255 255 / 50%);
}

header #header-top {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height);
    padding: 15px 3vw;
    width: 80%;
    margin: 0 auto;
    gap: 3rem;
}

header.page .img-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: rgb(250, 250, 250);
}

header #logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

header #logo .logo-text {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 200;
    font-size: 1.5rem;
    color: var(--color_blue);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

header #searchbar {
    width: 100%;
}

header #searchbtn {
    display: none;
}

header #searchbar input {
    background-color: var(--color_input);
    border: 1px solid var(--color_border);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 12px 25px;
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 300;
    font-size: 1.0625rem;
}

header #searchbar input::placeholder {
    color: var(--color_noir);
    line-height: 1;
}

header #navbar {
    justify-self: center;
}

header #navbar ul {
    display: flex;
    padding: 0;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

header #navbar ul a.nav-link {
    color: var(--color_texte);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 300;
}

header #navbar ul a.nav-link:hover {
    color: var(--color_blue);
}

header #navbar ul a.nav-link.active {
    color: var(--color_blue);
    font-weight: 500;
}

header #navbar ul a.nav-link:hover img,
header #navbar ul a.nav-link.active img {
    filter: var(--filter_blue);
}

header #mobilebtn,
header#layout-header>#header-top>#mobilebtn>#burger-menu {
    display: none;
}

header #header-bottom {
    height: calc(100% - var(--navbar-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 5vw;
}

.page-accueil section#agence {
    padding: 35px 0 45px;
}

.page-agence header #header-bottom {
    align-items: flex-start;
}

.title-header {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 4rem;
    color: var(--color_blanc);
    margin: 0;
    text-align: center;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
}

.page-title {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 300;
    font-size: 2.5rem;
    text-align: center;
    margin: 34px calc(-1 * var(--padding_LR));
}

.page-title::before,
.page-title::after {
    content: "";
    background-color: var(--color_blue);
    width: 53vw;
    height: 1px;
    display: block;
}

.page-title::before {
    margin-bottom: 18px;
}

.page-title::after {
    content: "";
    margin-left: auto;
    margin-top: 18px;
}

header #header-bottom .subtitle {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 300;
    font-size: 2.25rem;
    color: var(--color_blanc);
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    text-align: center;
    margin: 0;
}

.bcg-grey {
    background-color: var(--color_lightgrey);
}

#agence #agence-grid {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5vw;
    padding: 0 var(--padding_LR);
}

#agence #agence-grid div {
    max-width: 265px;
    width: 100%;
}

#agence #agence-grid .agence-subtitle {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 1.875rem;
}

#agence #agence-grid .agence-subtitle::after {
    content: "";
    display: block;
    height: 1px;
    width: 73%;
    background-color: var(--color_blue);
}

#annonces-slider {
    padding: 15px var(--padding_LR);
}

#avis-slider {
    padding: 30px;
}

#avis_list {
    align-items: center;
}

#avis_list .avis_card {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 1.875rem 3rem;
    width: 515px;
}

#avis_list .avis_card .rate {
    display: flex;
}

#avis_list .avis_card .avis_identity {
    display: flex;
    gap: 13px;
}

#avis_list .avis_card .avis_author h3 {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 200;
    font-size: 1.5rem;
    color: var(--color_blue);
    margin: 0;
}

footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: space-between;
    padding: 40px 60px;
    background-color: var(--color_lightgrey);
    column-gap:0.25rem;
}

footer a, footer address, footer p {
    text-decoration: none;
    color: inherit;
    font-style: normal;
    font-size: 1rem;
}

footer .footer-infos {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--color_blue);
}

footer .footer-infos+.footer-infos {
    margin-top: 1.5625rem;
}

footer .footer-infos p {
    margin: 0;
}

footer .footer-logo .logo {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 200;
    font-size: 2.5rem;
    color: var(--color_blue);
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}
footer .footer-legals {
    text-align: right;
}
.card_home {
    width: 305px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    /* height: 410px; */
    overflow: hidden;
    background-color: var(--color_blanc);
    position: relative;
}

.card_home .type_bien {
    position: absolute;
    right: 10px;
    top: 10px;
    margin: 0;
    background: var(--color_blue);
    border-radius: 5px;
    color: var(--color_blanc);
    padding: 3px 11px;
}

.card_home>a {
    text-decoration: none;
    color: inherit;
}

.card_home:hover .home_infos .home_price {
    font-size: 1.25rem;
}

.card_home .img_house {
    width: 100%;
}

.card_home .home_infos {
    padding: 1rem 1.4375rem;
    border-radius: 5px;
}

.card_home .home_infos .home_title {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 1.75rem;
    margin: 0;
}

.card_home .home_infos .home_price {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 400;
    font-size: 0.9375rem;
    color: var(--color_blue);
    text-transform: uppercase;
    transition: font-size 0.5s;
    margin: 0;
}

.card_home .home_infos .home_caracteres {
    display: grid;
    grid-template-columns: 1.25fr 0.5fr;
    margin: 1rem 0;
}

.card_home .home_infos .home_caracteres div {
    display: flex;
    gap: 6px;
    align-items: center;
}

.card_home .home_infos .home_caracteres div:nth-child(2),
.card_home .home_infos .home_caracteres div:nth-child(4) {
    justify-self: flex-end;
}

.card_home .home_infos .home_caracteres p {
    margin: 0;
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color_blue);
    height: 34px;
    display: flex;
    align-items: center;
}

#typeFilter {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 0;
}

#typeFilter form {
    display: flex;
    align-items:center;
    gap:0.5rem;
}

#partialVentes {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(auto-fill, minmax(305px, 1fr));
    gap: 2rem;
}

.bien-unique img {
    border-radius: 5px;
}

.bien-unique main {
    margin: 132px 8vw;
}

.bien-unique .home_detail_title {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
}

.bien-unique .home_detail_carroussel,
.bien-unique .home_detail_caracteres {
    background-color: var(--color_blanc);
}

.bien-unique .home_detail_content {
    display: flex;
    gap: 5vw;
    margin-top: 38px;
}

.bien-unique .home_detail_description,
.bien-unique .home_detail_caracteres {
    width: 100%;
}

.bien-unique h2 {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 300;
    font-size: 2rem;
    margin: 0;
}

.bien-unique .home_detail_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.bien-unique .home_detail_carroussel {
    flex-direction: column;
    padding: 7vw;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.bien-unique .home_detail_description .home_price {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    color: var(--color_blue);
}

.bien-unique .home_detail_carroussel .carroussel-full {
    border: 10px solid var(--color_blanc);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.bien-unique .home_detail_caracteres {
    padding: 35px 45px;
    max-width: 580px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.bien-unique .home_detail_caracteres h2 {
    margin: 40px 0;
    text-align: center;
}

.bien-unique .home_detail_caracteres .criteres-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 35px 0;
}

.bien-unique .home_detail_caracteres .criteres-area .critere_title {
    display: flex;
    align-items: center;
}

.bien-unique .home_detail_caracteres .criteres-area .critere_title img {
    margin-right: 12px;
}

.bien-unique .home_detail_caracteres .criteres-area h3 {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    color: var(--color_blue);
    font-size: 1.25rem;
    margin: 0;
}

.bien-unique .home_detail_caracteres .criteres-area p {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 1.5625rem;
    margin: 0;
    margin-left: 28px;
}

.page-agence #agence_content img {
    border-radius: 5px;
    width: 100%;
}

.page-agence #agence_content,
.page-agence #nous-contacter_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 72px;
    justify-items: center;
}

.page-agence #experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    justify-items: center;
    gap: 2rem;
}

.page-agence #experts-grid .expert {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
}

.page-agence #experts-grid h3 {
    font-family: var(--font-title);
    color: var(--color_blue);
    font-style: normal;
    font-weight: 300;
    font-size: 1.6875rem;
    text-align: center;
    margin: 0;
}

.page-agence #experts-grid a {
    text-decoration: none;
    color: inherit;
}

.page-agence #experts-grid p {
    text-align: center;
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 300;
    font-size: 0.875rem;
    margin: 0;
}

.page-agence #experts-grid .experts-infos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact_form form {
    width: 100%;
    max-width: 485px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact_form form .form-block {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
    width: 100%;
}

.contact_form form .form-identity {
    display: flex;
    gap: 25px;
}

.contact_form form label,
.contact_form form .form-input {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--color_label);
    border-radius: 5px;
}

.contact_form form label {
    text-transform: uppercase;
}

.contact_form form .form-input {
    background-color: rgba(43, 77, 168, 0.1);
    border: 1px solid var(--color_blue);
    padding: 19px 20px;
    color: var(--color_label);
    resize: none;
}
.page-contact header #header-bottom {
    gap:0.75rem;
}

.page-contact header #header-bottom .title-header {
    text-align: left;
}

.page-contact header #header-bottom .contact-title {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.page-contact header #header-bottom .subtitle {
    font-style: normal;
    font-weight: 300;
    font-size: 1.875rem;
    text-decoration: none;
    color: var(--color_blanc);
}

.page-contact #contactez-nous .contact_form {
    display: flex;
    justify-content: center;
}

.page-contact #contactez-nous .contact_form form {
    max-width: 750px;
}

header .header-exclu {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 1.5rem;
}

header .exclu-title {
    color: var(--color_blanc);
    min-width: 450px;
    max-width: 550px;
}

header .exclu-title p {
    text-align: right;
    margin: 0;
}

header .exclu-title p.detail {
    font-weight: 400;
    font-size: 25px;
}

header .exclu-title p.detail.price,
header .btn-container.exclu {
    display: none;
}

header .infos-header {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color_blanc);
    backdrop-filter: blur(2px);
    border-radius: 5px;
    color: var(--color_blanc);
    width: 235px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

header .infos-header p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 2;
}

header .infos-header p.description {
    font-size: 0.9375rem;
    text-align: center;
    line-height: 1.25;
}

header .infos-header p.description::before {
    content: "« ";
}

header .infos-header p.description::after {
    content: " »";
}

header .infos-header p span {
    text-decoration: underline;
    font-weight: 700;
}

header .btn-container {
    text-align: center;
}

header .exclu-btn {
    background-color: rgba(217, 217, 217, 0.6);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    padding: 8px 26px;
    text-transform: uppercase;
    font-size: 10px;
    transition: background-color 0.25s;
}

header .exclu-btn:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.pagination {
    display: flex;
    list-style: none;
    gap: 15px;
    padding: 0;
    justify-content: center;
}

.pagination .page-link {
    text-decoration: none;
    color: inherit;
    user-select: none;
    font-weight: 400;
}

.pagination .page-item.active .page-link,
.pagination a:hover {
    color: var(--color_blue);
}


.bien-unique .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.bien-unique .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bien-unique .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.bien-unique .swiperVente {
    height: 80%;
    width: 100%;
}

.bien-unique .swiperVenteVignette {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.bien-unique .swiperVenteVignette .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.bien-unique .swiperVenteVignette .swiper-slide-thumb-active {
    opacity: 1;
}
.page-contact footer .footer-logo .btn-container {
    display: none;
}
@media all and (max-width:980px) {
    .bien-unique .home_detail_content {
        flex-direction: column;
    }

    .bien-unique .home_detail_caracteres {
        width: 100%;
        max-width: unset;
    }

    .bien-unique .home_detail_caracteres .criteres-area {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .bien-unique .home_detail_carroussel {
        height: 50vh;
    }
}
@media all and (max-width: 975px){
header #header-bottom .subtitle {
        font-size: 2rem;
    }

    header #header-top {
        width: 100%;
        background: unset;
        box-shadow: unset;
        padding: 15px var(--padding_LR);
        gap: 1.5rem;
    }

    header #logo .logo-text {
        color: var(--color_blanc);
    }

    header #searchbar input {
        background-color: var(--color_blanc);
        border: 1px solid var(--color_noir);
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        color: var(--color_noir);
    }

    header #navbar {
        display: none;
    }

    header #logo,
    header#layout-header>#header-top>#mobilebtn>#burger-menu {
        z-index: 999;
    }

    header #mobilebtn {
        display: flex;
        gap: 14px;
        align-items: center;
    }

    header #searchbar {
        display: none;
    }

    header #searchbar.active {
        display: block;
        position: absolute;
        top: var(--navbar-height);
        background-color: rgba(255, 255, 255, 0.85);
        left: 0;
        margin: 0 auto;
        padding: 1rem;
        z-index: 1;
    }

    header #searchbar.active form {
        width: calc(100% - 2 * var(--padding_LR));
        margin: 0 auto;
    }

    header #searchbtn {
        appearance: none;
        border: none;
        background: none;
        display: block;
        cursor: pointer;
    }

    header#layout-header>#header-top>#mobilebtn>#burger-menu {
        display: block;
        justify-self: flex-end;
        width: 2.25rem;
        height: 1.5rem;
        cursor: pointer;
        position: relative;
        appearance: none;
        border: none;
        background: none;
        box-sizing: border-box;
        padding: 0;
        flex-shrink: 0;
    }
.page-404 header#layout-header.default>#header-top>#mobilebtn>#searchbtn img {
    filter: var(--filter_blanc);
}
    header#layout-header.default>#header-top>#mobilebtn>#searchbtn img {
        filter: var(--filter_noir);
    }

    header#layout-header>#header-top>#mobilebtn>#burger-menu span{
        width: 100%;
        height: 4px;
        background-color: var(--color_blanc);
        display: block;
        transition: background-color 0.5s ease-in-out;
        border-radius: 20px;
    }

    header#layout-header.default>#header-top>#mobilebtn>#burger-menu span {
        background-color: var(--color_noir);
    }
    .page-404 header#layout-header>#header-top>#mobilebtn>#burger-menu span {
        background-color: var(--color_blanc);
    }
    header#layout-header>#header-top.open>#mobilebtn>#burger-menu span {
        background-color: var(--color_blue);
    }

    header#layout-header>#header-top>#mobilebtn>#burger-menu span:nth-child(1) {
        transform: translateY(-10px);
    }

    header#layout-header>#header-top>#mobilebtn>#burger-menu span:nth-child(3) {
        transform: translateY(10px);
    }

    header#layout-header>#header-top.open>#mobilebtn>#burger-menu span:nth-child(1),
    header#layout-header>#header-top.open>#mobilebtn>#burger-menu span:nth-child(3) {
        display: none;
    }

    header#layout-header>#header-top>nav>ul>li.nav-item>a.nav-link {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    header#layout-header.default>#header-top>#logo>.logo-text {
        color: var(--color_noir);
    }
.page-404 header#layout-header.default>#header-top>#logo>.logo-text {
    color: var(--color_blanc);
}
    header#layout-header>#header-top.open>#logo>.logo-text, .page-404 header#layout-header>#header-top.open>#logo>.logo-text {
        color: var(--color_blue);
    }

    header#layout-header>#header-top.open nav {
        transform: translateY(-100vh);
    }

    header#layout-header>#header-top.open nav {
        position: absolute;
        display: flex;
        top: 0;
        flex-direction: column;
        width: 100%;
        background-color: var(--color_blanc);
        left: 0;
        padding: var(--navbar-height) var(--padding_LR) 0;
        box-sizing: border-box;
        height: 100%;
        z-index: 998;
        transform: unset;
        transition: transform 0.75s;
    }

    header#layout-header>#header-top>nav>ul>li.nav-item>a.nav-link {
        font-size: 1.25rem;
    }

    header#layout-header>#header-top.open>nav>ul {
        height: 100%;
        flex-direction: column;
    }

    header.default #header-top #searchbar input,
    header.default #header-top #searchbar input::placeholder {
        color: var(--color_noir);
    }

    header.default #header-top #searchbar input {
        border-color: var(--color_noir);
    }

    /* .page-404 header.default #header-top #searchbar input,
    .page-404 header.default #header-top #searchbar input::placeholder {
        color: var(--color_blanc);
    }

    .page-404 header.default #header-top #searchbar input {
        border-color: var(--color_blanc);
    } */
/* 
    header #header-top #searchbar input::placeholder {
        color: var(--color_blanc);
    } */

    header #header-top.open #searchbar input {
        border-color: var(--color_blue);
    }

    header #header-top.open #searchbar input::placeholder {
        color: var(--color_blue);
    }

    header #navbar ul {
        gap: 2.5rem;
    }


}
@media all and (max-width:765px) {
    :root {
        --padding_LR: 24px;
        --swiper-navigation-size: 25px !important;
    }

    .title-header {
        font-size: 3rem;
    }
    .page-title {
        font-size: 2.25rem;
    }
    
    header .header-exclu {
        flex-direction: column;
    }

    header .exclu-title {
        min-width: unset;
    }

    header .exclu-title p {
        text-align: center;
    }

    header .exclu-title p.detail.price,
    header .btn-container.exclu {
        display: block;
    }

    header .exclu-btn {
        background-color: rgba(217, 217, 217, 0.95);
    }

    header .exclu-btn:hover {
        background-color: rgba(255, 255, 255, 0.9);
    }

    header .infos-header {
        display: none;
    }

    #avis_list .avis_card {
        width: 100%;
        /* overflow: overlay;
        max-height: 270px; */
    }

    #agence #agence-grid {
        grid-template-columns: 1fr;
    }

    #agence #agence-grid div {
        max-width: unset;
    }

    footer {
        display: flex;
        flex-direction: column;
        row-gap: 0.8rem;
    }

    footer .footer-logo {
        order: 1;
    }

    footer .footer-logo .btn-container {
        display: flex;
        justify-content: center;
    }

    footer .footer-contact {
        order: 2;
    }

    footer .footer-legals {
        order: 3;
        text-align: center;
    }

    footer .footer-infos {
        justify-content: center;
    }

    .page-agence #agence_content,
    .page-agence #nous-contacter_content {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }

    .page-agence .contact_form {
        width: 100%;
    }

    .contact_form form {
        margin: 0 auto;
        width: 90%;
    }

    .contact_form form .form-identity {
        flex-direction: column;
    }

    .bien-unique main {
        margin: 1rem var(--padding_LR);
    }

    .bien-unique .home_detail_header {
        flex-direction: column-reverse;
    }

    .bien-unique .home_detail_content {
        flex-direction: column;
    }

    .bien-unique .home_detail_caracteres {
        padding: 3vh 7vw;
    }

    .swiperVente {
        height: 100%;
    }

    .swiperVenteVignette {
        height: 12vh;
    }
}

@media all and (max-width: 376px) {
    .title-header {
        font-size: 2.75rem;
    }

    header #header-bottom .subtitle {
        font-size: 1.85rem;
    }

    #partialVentes,
    .page-agence #experts-grid {
        grid-template-columns: 1fr;
    }

    .card_home {
        width: 100%;
    }

    .bien-unique .home_detail_carroussel .swiperVente {
        height: 35vh;
    }

    .bien-unique .home_detail_carroussel .swiperVenteVignette {
        height: 10vh;
    }
}