.factory {
    background: var(--bleu-nuit);
    position: relative;
}

.factory::before {
    content: "";
    pointer-events: none;
    height: 80%;
    width: 80%;
    opacity: 0.1;
    background: white;
    border-radius: 100%;
    position: absolute;
    left: 10%;
    top: 10%;
    filter: blur(125px);
    animation-name: opacity;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.factory--arrows {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .factory--arrows {
        display: none;
    }
}

.factory--arrows button {
    height: 24px;
    width: 24px;
    background: white;
}

.factory--arrows .left {
    -webkit-mask: url("../images//icon-arrow-left.svg") no-repeat center;
    mask: url("../images//icon-arrow-left.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.factory--arrows .right {
    -webkit-mask: url("../images//icon-arrow-right.svg") no-repeat center;
    mask: url("../images//icon-arrow-right.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.factory--container {
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .factory--container {
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
    }
}

.factory--title {
    max-width: 1280px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 16px 0;
}

@media screen and (min-width: 992px) {
    .factory--title {
        text-align: left;
        flex-direction: row;
        gap: clamp(16px, 13.2vw, 190px);
        padding: 56px 16px 0;
    }
}

@media screen and (min-width: 1312px) {
    .factory--title {
        padding: 56px 0 0;
    }
}

.factory--title div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 992px) {
    .factory--title div {
        gap: 24px;
        max-width: 840px;
    }
}

.factory--title .uptitle {
    color: #E0F8FF;
    text-wrap: balance;
}

.factory--title h2,
.factory--title p:not(.uptitle) {
    color: white;
}

.factory--wrapper {
    position: relative;
}

@media screen and (max-width: 767px) {
    .factory--wrapper {
        width: 200vw;
    }
}

@media screen and (max-width: 767px) {
    .factory--inner {
        padding-top: 32px;
        padding-inline: 16px;
        padding-bottom: 32px;
    }
}

@media screen and (max-width: 767px) {
    .factory .overflow-control {
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .factory .overflow-control::-webkit-scrollbar {
        display: none;
    }
}

.factory img {
    position: absolute;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    /* opacity: .2; */
    z-index: 0;
}

.factory .factory-svg {
    position: relative;
    z-index: 1;
}

.factory .inner {
    color: white;
    position: absolute;
    top: 32px;
    left: 24px;
    padding: 24px 32px;
    border-radius: 16px;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
    max-width: clamp(300px, 34.72vw, 500px);
    text-align: center;
    display: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@media screen and (max-width: 767px) {
    .factory .inner {
        position: relative;
        top: auto;
        left: auto;
        max-width: unset;
    }
}

.factory .inner.active {
    display: flex;
    z-index: 9;
    transition: all 0.3s ease;
}

.factory .inner h4 {
    color: white;
}

.factory .inner div {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.factory .inner div a:hover {
    border-color: white;
}

.factory .inner span {
    width: 12px;
    height: 12px;
    display: block;
    -webkit-mask: url("../images//close.svg") no-repeat center;
    mask: url("../images//close.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: white;
    position: absolute;
    right: 14px;
    top: 14px;
    cursor: pointer;
}

.factory .runner {
    stroke-linecap: round;
    will-change: stroke-dashoffset;
    stroke: rgb(146, 206, 239);
    stroke-width: 10;
    /* stroke-width: 20; */
    filter: blur(2px);
    /* -webkit-filter: blur(10px);
  filter: blur(10px); */
    transition: all 0.4s ease;
}

.factory .zones {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.factory .zone {
    fill: white;
    /* ou une couleur de base */
    transition: opacity 0.2s 0.1s ease;
    cursor: pointer;
    opacity: 0;
}

.factory .zone:hover {
    opacity: 0.6;
}

.echo-dot {
    fill: white;
    pointer-events: none;
    r: 24;
}

@media screen and (min-width: 992px) {
    .echo-dot {
        r: 12;
    }
}

.echo-ring {
    fill: none;
    stroke: white;
    stroke-width: 2;
    pointer-events: none;
    r: 24;
    animation: echo 2s ease-out infinite;
    transform-origin: center;
}

@media screen and (min-width: 992px) {
    .echo-ring {
        r: 12;
        animation: echo-desk 2s ease-out infinite;
    }
}

@keyframes echo {
    0% {
        r: 24;
        opacity: 0.8;
    }

    70% {
        r: 48;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes echo-desk {
    0% {
        r: 12;
        opacity: 0.8;
    }

    70% {
        r: 30;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacity {
    from {
        opacity: 0.1;
    }

    25% {
        opacity: 0.12;
    }

    50% {
        opacity: 0.09;
    }

    75% {
        opacity: 0.2;
    }

    to {
        opacity: 0.11;
    }
}

/*# sourceMappingURL=style.css.map */



/* SCROLL DÉFILANT */
.scrolling-txt {
    overflow: hidden;
}

.scrolling-txt.has-bg {
    background: var(--bleu-nuit);
}

.scrolling-txt--container {
    white-space: nowrap;
    position: relative;
}

.scrolling-txt .marquee {
    font-size: 0;
    white-space: nowrap;
}

.scrolling-txt span {
    display: inline-block;
    line-height: 100%;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 40px;
    font-family: var(--borna);
    background: linear-gradient(90deg, #009CDE 0.1%, #0057B8 99.88%);
    background: linear-gradient(90deg, #9FD3FF 2.58%, #3EA2F7 99.87%);
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 992px) {
    .scrolling-txt span {
        font-size: 4.5rem;
    }
}

/*# sourceMappingURL=style.css.map */