@font-face {
    font-family: 'Saira';
    src: url('./fonts/Saira-VariableFont.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body,
input,
button,
textarea,
select {
    margin: 0;
    font-family: 'Saira', Arial, sans-serif;
}

section.homeheader {
    overflow: hidden;
    background: #180E1D;
    margin: 0 !important;
    max-width: 100% !important;
    position: relative;
    width: 100%;
}

section.homeheader .homeheader__background > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.homeheader .homeheader__background__circle {
    position: absolute;
    width: 332px;
    height: 332px;
    border-radius: 332px;
    background: var(--Charte-Couleurs-primaires-Turquoise, #00FFE4);
    filter: blur(150px);
    z-index: 3;
    transform: translateZ(0);
}

@-moz-document url-prefix() {
    section.homeheader .homeheader__background__circle {
        width: 400px;
        height: 400px;
        border-radius: 400px;
        background: var(--Charte-Couleurs-primaires-Turquoise, #00FFE4);
        opacity: 0.22;
    }
}

section.homeheader .homeheader__background__circle.circle-1 {
    top: 10%;
    right: 0;
    transform: translate(30%, -50%);
    animation: levitate-1 40s ease-in-out infinite;
    animation-delay: 0s;
}

section.homeheader .homeheader__background__circle.circle-2 {
    top: 50%;
    left: 50px;
    transform: translate(-50%, -50%);
    animation: levitate-2 45s ease-in-out infinite;
    animation-delay: -12s;
}

section.homeheader .homeheader__background__circle.circle-3 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    animation: levitate-3 42s ease-in-out infinite;
    animation-delay: -20s;
}

section.homeheader .homeheader__background__gradient {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, rgba(24, 14, 29, 0.80) 0%, rgba(46, 38, 217, 0.80) 100%);
    z-index: 1;
}

section.homeheader .container {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding-inline: 20px;
    position: relative;
    z-index: 4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

section.homeheader .homeheader__content__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-bottom: 56px;
}

section.homeheader .homeheader__content__logo {
    position: static;
    inset: auto;
    width: auto;
    height: 72px;
    object-fit: contain;
}

section.homeheader .homeheader__content__logo__separator {
    display: block;
    width: 1px;
    height: 88px;
    background: rgba(255, 255, 255, 0.65);
}

section.homeheader .container .homeheader__title,
section.homeheader .container .homeheader__content {
    overflow: hidden;
    opacity: 1;
    /* .text-ready { opacity: 1; } */
}

section.homeheader .container .homeheader__title {
    font-size: var(--theme-font-h1);
    color: #fff;
    text-align: center;
    margin-bottom: 0;


    /* Desktop/Titres/H1 */
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 107.143% */

}

section.homeheader .container .homeheader__title .text-reveal-wrapper {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

section.homeheader .container .homeheader__title .text-reveal-wrapper.is-visible {
    transform: translateY(0);
    opacity: 1;
}

section.homeheader .container .homeheader__content {
    font-size: var(--theme-font-paragraph-large);
    color: #fff;
    text-align: center;
    margin-top: 20px;

    text-align: center;

    /* Desktop/Paragraphes/Gros-paragraphes */
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;


}

section.homeheader .container .homeheader__content .text-reveal-wrapper {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

section.homeheader .container .homeheader__content .text-reveal-wrapper.is-visible {
    transform: translateY(0);
    opacity: 1;
}

section.homeheader .homeheader__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #10e7d7;
    color: #0f1f3b;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    color: #26192D;
    text-align: center;

    /* Desktop/Autres/Bouton */
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

section.homeheader .homeheader__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(16, 231, 215, 0.35);
}

section.homeheader .homeheader__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* Disable all animations in admin mode */
section.homeheader.admin .homeheader__background__circle {
    animation: none !important;
}

section.homeheader.admin .homeheader__title,
section.homeheader.admin .homeheader__content {
    opacity: 1 !important;
}

section.homeheader.admin .homeheader__title .text-reveal-wrapper,
section.homeheader.admin .homeheader__content .text-reveal-wrapper {
    transform: translateY(0) !important;
    opacity: 1 !important;
    transition: none !important;
}

section.homeheader .homeheader__content strong {
    display: block;
    margin-top: 24px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}