/*  --------------------  GLOBAL  --------------------  */
.display-7 {
    font-size: calc(1rem + 1.5vw);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-7 {
        font-size: 2.0rem;
    }
}

.display-8 {
    font-size: calc(0.9rem + 1.5vw);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-8 {
        font-size: 1.850rem;
    }
}

.h-200 {
    height: 200px;
}

/*  --------------------  END GLOBAL  --------------------  */



/*# sourceMappingURL=custom.css.map */
.portfolio-wrapper:hover span {
    border-bottom: 1px solid var(--bs-border-color);
}


.hero-2, .blog-single-image {
    padding-top: 190px;
}

.section-padding-xxl {
    padding-top: 70px;
    padding-bottom: 70px;
}

h2 {
    font-size: 5.4rem;
}

.gallery-image-wrapper.overlay {
    position: initial;
    --bs-overlay-height: 55%;
    --bs-overlay-bg: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.75) 60%);
}

.header-bg-1 {
    --bs-header-bg: rgba(255, 255, 255, 1);
}

/*  --------------------  SLIDER  --------------------  */
.hero-heading {
    color: #ffffff;
}

.carousel-captions .stroke-heading svg {
    stroke: #ffffff;
}

.carousel-indicators .indecators-description {
    color: #ffffff;
}

.carousel-indicators .active {
    --bs-indecators-item-color: #ffffff;
}

.carousel-indicators .indecators-item {
    --bs-stroke-rgb: 255, 255, 255;
    --bs-stroke-opacity: 1;
    --bs-stroke-width: 2px;
    -webkit-text-stroke: var(--bs-stroke-width) rgba(var(--bs-stroke-rgb), var(--bs-stroke-opacity));
    color: var(--bs-indecators-item-color, transparent);
}

.animate-fill.primary::after {
    --bs-animate-fill-box-color: #ffffff;
}
/*  --------------------  END SLIDER  --------------------  */


/*  --------------------  MENU  --------------------  */
.description {
    font-size: 12px;
    display: none; /* Masqué par défaut */
}

.dropdown-item:hover .description {
    display: inline; /* Affiche la description sur le survol */
}

.dropdown .dropdown-item {
    display: inline-block;
}

.active-custom {
    background-color: #8E5E42FF;
    color: white;
}
/*  --------------------  END MENU  --------------------  */


/*  --------------------  FOOTER  --------------------  */

.footer-address a {
    margin-bottom: 5px;
    display: block;
}
/*  --------------------  END FOOTER  --------------------  */


/*  --------------------  REALISATIONS  --------------------  */
.team-details {
    --bs-team-details-width: calc(100% - 62px);
}

.feedback-wrapper {
     background-image: url('/assets/images/ecrivez-nous.jpg');
 }
/*  --------------------  END REALISATION  --------------------  */


/*  --------------------  MASONRY  --------------------  */
.masonry {
    column-count: 4; /* Nombre de colonnes */
    column-gap: 1rem; /* Espacement entre les colonnes */
}

.masonry-item {
    margin-bottom: 1rem; /* Espacement entre les blocs */
    break-inside: avoid; /* Empêche les coupures des éléments */
}

/* Exemple de style pour les images */
.masonry-item img {
    width: 100%; /* Images adaptées au conteneur */
    display: block;
    border-radius: 8px; /* Coins arrondis */
}

/* Media queries pour ajuster le nombre de colonnes sur différents écrans */
@media (max-width: 992px) {
    .masonry {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry {
        column-count: 1;
    }
}
/*  --------------------  END MASONRY  --------------------  */



.popup-offre {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.popup-offre.active {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
}

.popup-content img {
    width: 100%;
    height: auto;
    display: block;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.close-popup:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 767.98px){
    .display-h1-home {
        font-size: 50px;
    }
}

@media (max-width: 991.98px){
    .feedback-content .feedback-title {
        font-size: 40px;
    }

    .section-padding-xxl {
        padding-bottom: 0px;
    }

}

