.allcontent.show{
    display: block;
}
.allcontent{
    display: none;
}
/* header top carousel */
.swiper-container.SwiperDetails {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.swiper-slide.slideDetails {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide.slideDetails img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.custom-swiper-button-next,
.custom-swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 38px;
    height: 82px;
    z-index: 10;
    cursor: pointer;
    transform: translateY(-50%);
}
.custom-swiper-button-next {
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}
.custom-swiper-button-prev {
    left: 0;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 1;
    border-radius: 50%;
    position: relative;
}
.swiper-pagination-bullet-active {
    background: white;
    position: relative;
}
.swiper-pagination-bullet-active::after {
    content: '';
    width: 9px;
    height: 9px;
    background: var(--Green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* header top carousel */


/* brochur & prix */
.brochur_Container {
    width: var(--rn-width1);
    font-family: 'DaciaBlock';
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brochur_Container .carName{
    text-transform: uppercase;
}
.brochur_Container .carName .name{
    font-size: 24px;
    font-family: 'DaciaBlockExtendedBold';
    margin-bottom: 22px;
}
.brochur_Container .carName .brochureDownload {
    color: black;
    gap: 20px;
    display: flex;
}
.brochur_Container .prix {
    font-size: 23px;
    padding-left: 20px;
    position: relative;
    margin: 0;
}
.brochur_Container .prix::before {
    content: '';
    position: absolute;
    left: 0;
    top: 65%;
    transform: translateY(-50%);
    height: 65px;
    width: 1px;
    background-color: var(--Gray);
}
/* brochur & prix */

/* Design */
.desc {
    font-family: 'ReadMedium';
    font-size: 15px;
    width: 60%;
    margin: 20px auto;
    text-align: center;
}

.image-grid {
    justify-items: center;
    align-items: center;
    width: var(--rn-width1);
    margin: auto;
    position: relative;
    height: 642px;
}
.image-grid .image-item {
    position: absolute;
    overflow: hidden;
}
.image-grid .image-item img{
    width: 100%;
    transition: transform 0.3s ease 0s;
}
.image-grid .image-item:hover img{
    transform: scale3d(1.1, 1.1, 1.1);
}
.image-grid .image-item.first {
    top: 0px;
    left: 325px;
    width: 595px;
    z-index: 3;
}
.image-grid .image-item.second {
    top: 180px;
    left: 0px;
    width: 600px;
    z-index: 2;
}
.image-grid .image-item.third {
    top: 254px;
    right: 0px;
    width: 691px;
    z-index: 1;
}
/* Design */

/*  versions carousel  */
.version_container{
    width: var(--rn-width1);
    margin: auto;
    display: flex;
    padding: 50px 0;
    gap: 7%;
    align-items: center;
    justify-content: center;
}

.version_container .carAndVersions{
    width: 55%;
}
.version_container .carAndVersions .bigVersion{
    display: flex;
    align-items: center;
    justify-content: center;
}
.version_container .carAndVersions .bigVersion img{
    width: 100%;
}
.version_container .carAndVersions .smallVersions{
    display: flex;
    gap: 40px;
}
.version_container .carAndVersions .smallVersions .version {
    background-color: var(--LightGray);
    border: 1px solid var(--LightGray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease, transform 0.3s ease;
}
.version_container .carAndVersions .smallVersions .version.selected {
    background-color: transparent;
    border: 1px solid var(--Green);
}
.version_container .carAndVersions .smallVersions .version:hover {
    background-color: transparent;
    border: 1px solid var(--Green);
}
.version_container .carAndVersions .smallVersions .version:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.version_container .carAndVersions .smallVersions .version img{
    width: 100%;
}
.version_container .details{
    width: 32%;
}
.version_container .details .version{
    text-transform: uppercase;
    font-size: 12px;
    color: var(--Gray);
    font-family: 'DaciaBlockExtendedBold';
}
.version_container .details .carName{
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'DaciaBlockExtendedBold';
    margin: 10px 0;
}
.version_container .details .carprix{
    font-size: 24px;
    font-family: 'DaciaBlock';
    margin: 5px 0 20px 0;
}
.version_container .details .option{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    font-family: 'ReadMedium';
    font-size: 14px;
    margin: 8px 0;
    width: 80%;
}
.version_container .details .greenButton, .version_container .details .whiteButton{
    height: 40px;
    margin: 6px 0;
    font-family: 'DaciaBlock';
    font-size: 15px;
    width: 100%;
    cursor: pointer;
    border: 1px solid var(--Green);
}
.version_container .details .greenButton{
    background-color: var(--Green);
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.version_container .details .greenButton:hover{
    background-color: transparent;
    color: var(--Green);
}
.version_container .details .whiteButton{
    background-color: transparent;
    color: var(--Green);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.version_container .details .whiteButton:hover{
    background-color: var(--Green);
    color: white;
}

/*  versions carousel  */

/*  equipement / options */
.equipement-options {
    width: var(--rn-width1);
    margin: auto;
    display: flex;
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    font-family: 'DaciaBlock';
}
.type {
    height: 150px;
    width: 22%;
    box-sizing: border-box;
}
.equipement-options .details {
    display: none;
    width: 100%;
}
.equipement-options .details.active {
    display: block;
}
.equipement-options .type_btn {
    border-left: 2px solid transparent;
    border-right: 0px;
    border-bottom: 0px;
    border-top: 0px;
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    color: var(--hardGray);
    padding-left: 20px;
    height: 50px;
    margin: 8px 0px;
    font-family: 'DaciaBlock';
    text-align: left;
}
.equipement-options .type_btn.active {
    border-left: 2px solid var(--Green);
    color: var(--Green);
}
.equipement-options .text,
.equipement-EQIPEMENTS .text {
    margin: 10px 0 21px 0;
}
.lines {
    display: flex;
    text-align: left;
    justify-content: flex-start;
    gap: 10.5%;
    flex-direction: row;
    overflow-x: hidden;
    height: 390px;
}
.lines::-webkit-scrollbar,
.lines::-webkit-scrollbar {
    width: 2px;
    background-color: var(--LightGray);
}
.lines::-webkit-scrollbar-thumb {
    background-color: var(--Green);
    border-radius: 5px;
}
.col1,
.col2 {
    width: 41.5%;
    box-sizing: border-box;
    text-align: left;
}
.lines .col1 .line,
.lines .col2 .line {
    letter-spacing: 0.5px;
    padding: 0;
    margin: inherit;
    font-family: 'ReadMedium';
    font-size: 15px;
}
.lines .col1 .line::after,
.lines .col2 .line::after {
    content: "";
    background-color: var(--LightGray);
    height: 1px;
    width: 100%;
    display: block;
    margin: 10px 0 10px -17px;
}
/*  equipement / options  end*/

/*  Dimensions */
.dimensions_zone{
    width: var(--rn-width1);
    margin: auto;
    font-family: 'DaciaBlock';
    background-color: var(--Green);
    color: #fff;
    padding: 40px 0;
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dimensions_zone .title_zone .sous-top-title{
    color: #fff;
}
.dimensionsImgs{
    display: flex;
}
.dimensionsImgs .dimensions{
    display: flex;
}
.dimensionsImgs .dimensions img{
    width: 100%;
}
.brochure_zone{
    width: 100%;
    font-family: 'DaciaBlock';
    display: flex;
    justify-content: center;
    gap: 20px;
}
.brochure_zone a{
    color: white;
}
/*  Dimensions end */


/*  carousel modele */
.swiper-container.miniSwiper {
    width: var(--rn-width1);
    height: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.modele-list-button-next,
.modele-list-button-prev {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    transform: translateY(-50%);
}
.modele-list-button-prev {
    right: 0;
}
.modele-list-button-next {
    left: 0;
}
.modele-list-button-next svg {
    transform: rotate(180deg);
}
.swiper-slide.miniSlide {
    flex: 0 0 auto;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.swiper-slide.miniSlide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-wrapper.miniwWrapper {
    display: flex;
}
.swiper-slide.miniSlide .card {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: 100%;
}
.swiper-slide.miniSlide .card .modeleName{
    font-family: 'DaciaBlockExtendedBold';
    text-transform: uppercase;
    margin: 0;
    font-size: 20px;
}
.swiper-slide.miniSlide .card .modelePrix{
    font-family: 'DaciaBlock';
    margin: 0;
}
.swiper-slide.miniSlide .card .btnDecouvrez{
    color: black;
    width: 100%;
    font-family: 'DaciaBlock';
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}
/*  carousel modele end */

@media(max-width: 1225px){
    /*  brochur & prix  */
    .brochur_Container .prix {
        font-size: 19px;
    }
    .brochur_Container .carName .brochureDownload {
        font-size: 14px;
    }
    .brochur_Container .carName .name{
        font-size: 21px;
        margin-top: 18px;
    }
    /*  brochur & prix end  */


    /* Design */
    .desc {
        font-size: 12px;
        margin-top: 5px;
        width: 66%;
    }
    .image-grid .image-item.first {
        left: 200px;
        width: 430px;
    }
    .image-grid .image-item.second {
        top: 208px;
        width: 400px;
    }
    .image-grid .image-item.third {
        top: 210px;
        width: 490px;
    }
    .image-grid {
        height: 485px;
    }
    /* Design end */

    /*  versions carousel  */
    .version_container .details .version {
        font-size: 10px;
    }
    .version_container .details .carName {
        font-size: 16px;
    }
    .version_container .details .carprix {
        font-size: 16px;
    }
    .version_container .details .option {
        font-size: 12px;
    }
    .version_container .carAndVersions {
        width: 52%;
    }
    .version_container .carAndVersions .smallVersions {
        gap: 25px;
    }
    .version_container .details .greenButton, .version_container .details .whiteButton {
        height: 35px;
        margin: 2px 0;
        font-size: 13px;
    }
    /*  versions carousel  */

    /* equipements and option */
    .equipement-options .type_btn {
        font-size: 17px;
        height: 30px;
    }
    .lines .col1 .line, .lines .col2 .line {
        font-size: 13px;
    }
    .equipement-options .text, .equipement-EQIPEMENTS .text {
        margin: 13px 0 21px 0;
        font-size: 13px;
    }
    /* equipements and option end */

    /* modele carousel */
    .swiper-slide.miniSlide .card {
        width: 230px;
    }
    .swiper-slide.miniSlide .card .modeleName {
        font-size: 16px;
    }
    .swiper-slide.miniSlide .card .modelePrix {
        font-size: 13px;
    }
    .swiper-slide.miniSlide .card .btnDecouvrez {
        font-size: 14px;
    }
    /* modele carousel */
}

@media(max-width: 846px){
    /*  brochur & prix  */
    .brochur_Container .carName .name {
        font-size: 16px;
    }
    .brochur_Container .carName .brochureDownload {
        font-size: 12px;
    }
    .brochur_Container .prix {
        font-size: 16px;
    }
    /*  brochur & prix end */

    /* Design */
    .desc {
        width: 85%;
    }
    .image-grid .image-item.first {
        left: 170px;
        width: 376px;
    }
    .image-grid .image-item.second {
        top: 165px;
        width: 359px;
    }
    .image-grid .image-item.third {
        top: 181px;
        width: 415px;
    }
    .image-grid {
        height: 415px;
    }
    /* Design end */

    /*  versions carousel  */
    .version_container .details {
        width: 40%;
    }
    .version_container .carAndVersions {
        width: 65%;
    }
    .version_container {
        gap: 5%;
    }
    .version_container .details .option {
        font-size: 11px;
        margin: 6px 0;
    }
    .version_container .details .carprix {
        font-size: 15px;
    }
    .version_container .details .version {
        font-size: 9px;
    }
    .version_container .details .greenButton, .version_container .details .whiteButton {
        height: 32px;
        margin: 1px 0;
        font-size: 12px;
    }
    /*  versions carousel end */
    .equipement-options .type_btn {
        font-size: 13px;
        height: 30px;
    }
    /* modele carousel */
    .swiper-slide.miniSlide .card {
        width: 230px;
    }
    /* modele carousel end */
}

@media(max-width: 600px){
    /*  brochur & prix  */
    .brochur_Container {
        flex-direction: column;
    }
    .brochur_Container .carName .brochureDownload {
        font-size: 13px;
        margin: 10px 0;
    }
    .brochur_Container .carName .name {
        font-size: 22px;
    }
    .brochur_Container .prix::before {
        top: 16%;
        height: 1px;
        width: 100%;
    }
    .brochur_Container .prix {
        font-size: 20px;
        padding: 0;
    }
    /*  brochur & prix end */

    /* Design */
    .desc {
        font-size: 9px;
        width: 90%;
    }
    .image-grid .image-item.first {
        left: 100px;
        width: 274px;
    }
    .image-grid .image-item.second {
        top: 119px;
        width: 280px;
    }
    .image-grid .image-item.third {
        top: 145px;
        width: 311px;
    }
    .image-grid {
        height: 320px;
    }
    /* Design end */

    /*  versions carousel  */
    .version_container .carAndVersions .smallVersions {
        gap: 15px;
    }
    .version_container{
        flex-direction: column;
        padding: 15px 0;
    }
    .version_container .carAndVersions{
        width: 100%;
    }
    .version_container .details{
        width: 100%;
    }
    .version_container {
        gap: 25px;
    }
    .version_container .details .carName {
        font-size: 18px;
    }
    .version_container .details .carprix {
        font-size: 18px;
    }
    .version_container .details .option {
        font-size: 13px;
        margin: 7px 0;
    }
    .version_container .details .greenButton, .version_container .details .whiteButton {
        height: 40px;
        margin: 3px 0;
        font-size: 13px;
    }
    .version_container .details .options{
        margin-bottom: 14px;
    }
    /*  versions carousel end */

    /* equipements and option end */
    .equipement-options{
        flex-direction: column;
        gap: 10px;
    }
    .type {
        height: auto;
        width: 100%;
        display: flex;
        gap: 17px;
        flex-wrap: wrap;
    }
    .equipement-options .type_btn{
        margin: 0;
        padding: 0;
        font-size: 14px;
    }
    .equipement-options .type_btn.active {
        border-bottom: 2px solid var(--Green);
        border-left: 0;
    }
    .lines{
        flex-direction: column;
        gap: 0;
    }
    .col1, .col2{
        width: 100%;
    }
    /* equipements and option end */


    /*  Dimensions */
    .dimensions_zone{
        width: 100%;
        gap: 10px;
    }
    .dimensionsImgs {
        display: flex;
        flex-direction: column;
        width: 95%;
    }
    .dimensionsImgs .dimensions {
        justify-content: center;
    }
    .brochure_zone {
        font-size: 14px;
    }
    /*  Dimensions end */
}

@media(max-width: 430px){
    /* Design */
    .desc {
        font-size: 9px;
        width: 90%;
    }
    .image-grid .image-item.first {
        left: 55px;
        width: 250px;
    }
    .image-grid .image-item.second {
        top: 124px;
        width: 225px;
    }
    .image-grid .image-item.third {
        top: 187px;
        width: 258px;
    }
    .image-grid {
        height: 320px;
    }
    /* Design end */

    /*  versions carousel */
    .version_container .carAndVersions .smallVersions .version{
        padding: 6px 2px;
    }
    .version_container .details .carName {
        font-size: 17px;
    }
    /*  versions carousel end */
}
@media(max-width: 375px){
    /*  brochur & prix end */
    .brochur_Container .carName .name {
        font-size: 20px;
    }
    .brochur_Container .carName .brochureDownload {
        font-size: 11px;
        margin: 0px 0;
    }
    .brochur_Container .prix {
        font-size: 18px;
    }
    .brochur_Container .prix::before {
        width: 110%;
    }
    /*  brochur & prix end */

    /* Design */
    .image-grid .image-item.first {
        left: 40px;
        width: 240px;
    }
    /* Design end */
}
