/* CSS Bloc Texte bouton slider */ 
.texte_bouton_slider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pad-l);
    gap: var(--gap-l);
    margin-top: -5px;
}

.texte_bouton_slider .container {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-m);
}

.texte_bouton_slider .content {
    width: 40%;
    position: relative;
}
/* CSS Swiper */
.texte_bouton_slider .swiper {
    width: 100%;
    height: 100%;
    max-height: 800px;
}

.texte_bouton_slider .swiper-wrapper {
    aspect-ratio: 1/1;
    min-height: 300px;
}

.texte_bouton_slider .swiper-slide {
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 18px;
    object-fit: cover;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}


.texte_bouton_slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, -30px);
}

.texte_bouton_slider .swiper-pagination-bullet {
    background-color: var(--first-color);
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,30px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,5px));
    border-radius: 0;
}

/* CSS Option elements decoratifs */
.texte_bouton_slider .image_haut_gauche {
    position: absolute;
    top: 10%;
    left: -15%;
    rotate: 32deg;
    max-width: 400px;
    object-fit: contain;
    z-index: -1;
}

.texte_bouton_slider .image_haut_droit {
    position: absolute;
    top: -3%;
    right: -13%;
    rotate: -15deg;
    max-width: 400px;
    object-fit: contain;
    z-index: -1;
}

.texte_bouton_slider .image_bas_gauche {
    position: absolute;
    bottom: 1%;
    left: -7%;
    rotate: 190deg;
    max-width: 400px;
    object-fit: contain;
    z-index: -1;
}

.texte_bouton_slider .image_bas_droit {
    position: absolute;
    bottom: 13%;
    right: -6%;
    rotate: 73deg;
    max-width: 400px;
    object-fit: contain;
    z-index: -1;
}


/* CSS Options */
.texte_bouton_slider.beige {
    background-color:var(--third-color);
}

.texte_bouton_slider.marron {
    background-color:var(--first-color);
}

.texte_bouton_slider.marron p {
    color:var(--second-color);
}

.texte_bouton_slider.marron_clair {
    background-color:var(----fourth-color);
}

/* Responsive*/
@media (max-width:850px) {
    .texte_bouton_slider {
      padding: var(--pad-mobile) var(--pad-mobile) 50px;
      flex-direction: column;
    }
    .texte_bouton_slider .bottom_right_bull, .texte_bouton_slider .bottom_left_bull, .texte_bouton_slider .top_right_bull, .texte_bouton_slider .top_left_bull {
        display: none;
    }
    .texte_bouton_slider .content, .texte_bouton_slider .container {
        width: 100%;
    }
}
