.section-container .hashtags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.section-container .hashtags span {
    background-color: var(--quaternary-color);
    color: var(--tertiary-color);
    display: block;
    width: max-content;
    padding: 5px 8px;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 0.05);
}

h1 {
    margin: 20px 0 15px 0;
    text-wrap: balance;
}

#beforeAfter {
    padding: 10px;
    margin-top: 20px;
    background: var(--quaternary-color);
    box-shadow: var(--shadow);
}

#beforeAfter .disclosure {
    position: relative;
    aspect-ratio: 1.38 / 1;
    border: 3px solid var(--tertiary-color);
    width: 100%;
    height: 100%;
}

#beforeAfter .disclosure__img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#beforeAfter .disclosure__img {
    width: 100%;
    height: 100%;
}

#beforeAfter .disclosure__img-container--2 {
    clip-path: inset(0 50% 0 0);
}

#beforeAfter .disclosure__widget {
    position: absolute;
    top: 0;
    inline-size: 100%;
    block-size: 100%;
}

#beforeAfter .disclosure__line {
    inline-size: 3px;
    block-size: 100%;
    background-color: var(--tertiary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

#beforeAfter .disclosure__line-circle {
    inline-size: 50px;
    block-size: 50px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--tertiary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#beforeAfter .disclosure__line-circle-img {
    inline-size: 85%;
}

#beforeAfter .disclosure__range {
    inline-size: 100%;
    block-size: 100%;
    appearance: none;
    background: none;
    outline: none;
    cursor: pointer;
}

.content {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 30px;
}

.content .text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content .text strong {
    font-weight: 700;
}

.content .text em {
    font-style: italic;
}

.content .text ul {
    list-style-type: disc;
    padding-left: 15px;
}

#gallery {
    background: var(--quaternary-color);
    padding: 10px;
    box-shadow: var(--shadow);
}

#gallery a {
    width: 100%;
}

#gallery #chantierCaroussel img {
    height: 250px;
    width: 100%;
}

#gallery .f-thumbs.is-horizontal .f-thumbs__track {
    padding-bottom: 0;
}

#gallery img {
    border: 3px solid var(--tertiary-color);
}

#gallery .f-thumbs__slide__button,
#gallery .f-thumbs__slide__img {
    border-radius: 0;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        .section-container .hashtags span{
            font-size: 14px;
        }

        h1 {
            margin-bottom: 20px;
        }

        #beforeAfter {
            height: 400px;
            padding: 15px;
        }

        .content {
            margin-top: 40px;
            gap: 30px;
        }

        .content .text {
            gap: 15px;
        }

        #gallery {
            padding: 15px;
        }

        #gallery #chantierCaroussel img {
            height: 400px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            .hero {
                display: flex;
                gap: 60px;
                align-items: center;
            }

            .hero .title-container {
                width: 45%;
                height: max-content;
            }

            .section-container .hashtags span {
                font-size: 16px;
            }

            h1 {
                margin-top: 25px;
                margin-bottom: 30px;
            }

            #beforeAfter {
                width: 55%;
                margin: 0;
                height: 450px;
                padding: 20px;
            }

            .content {
                flex-direction: row;
                margin-top: 100px;
                gap: 60px;
                align-items: center;
            }

            .content .text {
                width: 55%;
                gap: 20px;
            }

            #gallery {
                height: max-content;
                width: 45%;
                padding: 20px;
            }

            #gallery #chantierCaroussel img {
                height: 450px;
            }
        }