@charset "UTF-8";
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BANNER ACCEPT COOKIES */

.cookie-banner {
    position: fixed;
    z-index: 1;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #ffffff;
    background-color: #1f8498;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.ban {
    font-size: 12px;
    padding-bottom: 10px;
}

.cookie-buttons {
    margin-top: 20px;
}

#acceptBtn,
#refuseBtn {
    padding: 5px 15px;
    margin-right: 10px;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
}
#acceptBtn {
    background-color: black;
}

#refuseBtn {
    background-color: black;
}

#acceptBtn:hover {
    background-color: #4caf50;
}

#refuseBtn:hover {
    background-color: red;
}

/* /BANNER ACCEPT COOKIES */

#container-hmf {
    scroll-behavior: smooth;
}

#container-hmf {
    background-color: black;
    font-size: 1.1em;
}

.h1 h1 {
    font-size: 2em;
    color: white;
}

h2 {
    color: white;
    margin-bottom: 40px;
}

.span-dgc {
    color: #31d2f2;
    text-shadow: 0px 0px 10px #31d2f2;
}

input[type="checkbox"] {
    visibility: hidden;
}

.btnCustom {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-weight: bold;
    border: 3px solid aqua;
    text-decoration: none;
    padding: 10px 30px;
    z-index: 999;
    transition: 0.7s ease;
}
.btnCustom::before {
    background-color: rgb(255, 255, 255);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 110%;
    height: 0;
    z-index: -1;
    transition: 0.7s ease;
}

.btnCustom .details-btn.square_1 {
    top: -1px;
    left: 10px;
    border-radius: 0px 0px 50% 50%;
}
.btnCustom .details-btn square_2 {
    bottom: -1px;
    right: 10px;
    border-radius: 50% 50% 0px 0px;
}
.btnCustom:hover {
    border-color: white;
    color: black;
}
.btnCustom:hover .details-btn {
    background-color: black;
}
.btnCustom:hover .details-btn.square_1 {
    left: 40%;
}
.btnCustom:hover .details-btn.square_2 {
    right: 70%;
}
.btnCustom:hover::before {
    background-color: aqua;
    height: 450%;
}

@media screen and (max-width: 457px) {
    h1 {
        margin-bottom: 20px;
    }
}

/* popup partage */

.modal {
    margin-top: 50px;
}

.modal-title {
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
}

.close {
    background: #000;
    color: yellow;
    border: none;
    font-size: 30px;
}
.partage-border {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    text-decoration: none;
    color: #62b5e5;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 16px;
    transition: font-size 0.3s;
    letter-spacing: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-right: 20px;
}

.partage-border i {
    margin-right: 5px; /* Ajout d'un espace entre l'icône et le titre */
}

.partage-border:hover {
    font-size: 18px;
}

.partage-border:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.partage-border span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #0c002b, yellow);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.partage-border span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #0c002b, yellow);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.partage-border span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #0c002b, yellow);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.partage-border span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, #0c002b, yellow);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

@media screen and (max-width: 400px) {
    .modal {
        margin-top: 200px;
    }

    .modal-title {
        font-size: 25px;
        text-align: center;
    }

    .partage-border {
        font-size: 13px;
        width: 100%; /* Ajout d'une largeur de 100% pour occuper toute la largeur disponible */
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* /popup partage */

#header-home {
    position: fixed;
    background-color: #070d16;
    color: white;
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10;
    padding: 3px;
    width: 100vw;
    max-height: 60px;
}
#header-home #logo {
    font-size: 2em;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.656);
}
#header-home #navbar {
    display: flex;
    gap: 28px;
}
#header-home #navbar a {
    font: bold 0.8em normal Arial, sans-serif;
    color: white;
    text-decoration: none;
    transition: 0.4s;
}
#header-home #navbar a:hover,
#header-home #navbar a.active {
    color: #31d2f2;
}

#header-home #hamburguer {
    display: none;
}
#header-home .container-fluid {
    position: relative;
    z-index: 999;
    padding: 0;
}
#header-home .container-fluid #offcanvasNavbar {
    background-color: transparent;
    color: white;
    width: 100vw;
    backdrop-filter: blur(8px);
}
#header-home .container-fluid #offcanvasNavbar .offcanvas-body .itens_menu {
    display: block;
    border-width: 2px;
    font-size: 1.1em;
    margin: 10px 0px;
    text-align: center;
}
#header-home #btn-barNav {
    font-size: 0.8em;
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
    border-width: 2px;
    box-shadow: 3px 3px 3px black;
}

@media screen and (max-width: 900px) {
    #header-home {
        justify-content: space-evenly;
    }
    #header-home #logo {
        font-size: 1.7em;
    }
    #header-home #navbar {
        gap: 20;
    }
    #header-home #navbar a {
        font-size: 0.8em;
    }
    #header-home #btn-barNav {
        display: none;
    }
}
@media screen and (max-width: 750px) {
    #header-home {
        padding: 10px;
    }
}
@media screen and (max-width: 650px) {
    #header-home {
        justify-content: left;
    }
    #header-home #logo {
        padding-left: 20px;
    }
    #header-home #navbar {
        display: none;
    }
    #header-home #hamburguer {
        display: inline-block;
    }
    #header-home #hamburguer #menu {
        position: absolute;
        top: 10px;
        right: 10%;
        z-index: 9999;
        padding: 5px;
    }
    #header-home #hamburguer #menu .tracos {
        background-color: #31d2f2;
        margin: 5px 0px;
        transition: 0.1s;
        width: 40px;
        height: 5px;
    }
    #header-home input[type="checkbox"]:checked ~ label #hamburguer #itens {
        position: fixed;
        right: 0;
        top: 0;
        background-color: rgba(222, 220, 220, 0.876);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        transition: transform 2s, height 2s;
    }
    #header-home input[type="checkbox"]:checked ~ label #hamburguer #menu {
        position: absolute;
        top: 10px;
    }
    #header-home
        input[type="checkbox"]:checked
        ~ #hamburguer
        label
        #menu
        #traco-1 {
        position: absolute;
        top: 10px;
        transform: rotate(45deg);
        transition: 0.7s;
    }
    #header-home
        input[type="checkbox"]:checked
        ~ #hamburguer
        label
        #menu
        #traco-2 {
        transform: translateX(-100px);
        visibility: hidden;
        transition: 0.1s;
    }
    #header-home
        input[type="checkbox"]:checked
        ~ #hamburguer
        label
        #menu
        #traco-3 {
        position: absolute;
        top: 10px;
        transform: rotate(-45deg);
        transition: 0.7s;
    }
}
#scroll {
    width: 100vw;
}
#scroll #progress-bar {
    background: linear-gradient(#0c002b, yellow);
    box-shadow: 0px 0px 20px 0px white;
    height: 3px;
    width: 0%;
    position: fixed;
    top: 55px;
    z-index: 11;
}

@keyframes img-flutuante {
    0% {
        transform: translateY(25px);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(25px);
    }
}
#a-propos {
    display: flex;
    align-items: center;
    font-size: 1.15em;
    font-weight: bold;
    background: rgb(13,24,41);
    background: linear-gradient(180deg, rgba(13,24,41,1) 0%, rgba(0,0,0,1) 100%);
    color: aqua;
    max-width: 100vw;
    min-height: 100vh;
    padding-top: 70px;
}
#a-propos #div-animation-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: justify;
    flex-wrap: wrap;
}
#a-propos #div-animation-header #btn-more-aboutMe {
    display: none;
}
#a-propos #sm-left {
    text-align: center;
    padding: 30px 0px;
}
#a-propos #sm-left #img-flutuante {
    animation-name: img-flutuante;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    padding: 25px;
    border: 1.5px solid transparent;
    max-width: 500px;
}
#a-propos #sm-direct {
    flex: 0 1 700px;
    padding: 10px 10px 10px 10px;
}
#a-propos #sm-direct #text {
    display: inline;
    font-family: "Ubuntu", sans-serif;
}
#a-propos #sm-direct .icone_quote {
    width: 15px;
}
#a-propos #sm-direct .icone_quote#quote-2 {
    transform: rotate(150deg);
}

@media screen and (max-width: 1100px) {
    #a-propos #div-animation-header {
        justify-content: center;
    }
    #a-propos #sm-direct {
        padding: 10px 30px 20px 30px;
    }
}
@media screen and (max-width: 700px) {
    #a-propos #div-animation-header {
        text-align: left;
    }
    #a-propos #div-animation-header #label-more-aboutMe {
        display: block;
    }
    #a-propos #sm-left #img-flutuante {
        max-width: 300px;
    }
    #a-propos #div-animation-header #label-more-aboutMe #btn-more-aboutMe {
        margin: 15px 0px;
        display: block;
        width: 92vw;
        padding: 10px -30px 10px 0px;
    }
    #a-propos #more-aboutMe:checked ~ #sm-direct #disposable-text-2 {
        display: inline;
    }
    #a-propos #disposable-text-2 {
        display: none;
    }
}
@media screen and (max-width: 457px) {
    #a-propos #disposable-text-1 {
        display: none;
    }
    #a-propos #more-aboutMe:checked ~ #sm-direct #disposable-text-1 {
        display: inline;
    }
}


/* text-animation */
#anim-border {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
}

.txt {
    text-align: center;
    position: relative;
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 60px;
    letter-spacing: 4px;
    overflow: hidden;
    background: linear-gradient(90deg, #000, #fff, #000);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 4s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
    0% {
        background-position: -600%;
    }
    100% {
        background-position: 600%;
    }
}

.txt2 {
    font-size: 25px;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    margin-bottom: 80px;
}

.ball {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ball ul li {
    width: 25px;
    height: 25px;
    margin: 0 15px;
    list-style-type: none;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, #e5f403);
    float: left;
    animation: ballEffect 3s alternate infinite;
}

@keyframes ballEffect {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(60px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
        background: linear-gradient(45deg, transparent, #e5f403);
        box-shadow: rgba(167, 167, 157, 0.556) 0px 54px 55px,
            rgba(255, 255, 255, 0.12) 0px -12px 30px,
            rgb(255, 255, 255) 0px 4px 6px,
            rgba(255, 255, 255, 0.17) 0px 12px 13px,
            rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }
}

#ball_1 {
    animation-delay: 0.1s;
    background: linear-gradient(45deg, transparent, #e5f403);
}
#ball_2 {
    animation-delay: 0.3s;
}
#ball_3 {
    animation-delay: 0.6s;
}
#ball_4 {
    animation-delay: 0.9s;
}
#ball_5 {
    animation-delay: 1.2s;
}
#ball_6 {
    animation-delay: 1.5s;
}

@media screen and (max-width: 920px) {

    #anim-border {
        font-size: 30px;
    }

    .txt {
        font-size: 30px;
    }
    .txt2 {
        font-size: 20px;
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .ball ul li {
        width: 20px;
        height: 20px;
        margin: 0 10px;
    }
}

@media screen and (max-width: 400px) {
    .txt2 {
        margin-top: 32px;
        font-size: 16px;
    }
}

/* ball text  */

.moove {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ball_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    width: 100%;
    height: 300px;
}
.ball_moove {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, #62b5e5);
    left: 15%;
    top: 0px;
    animation: movement 5s linear infinite, squashing 3s linear infinite;
}

@keyframes movement {
    10% {
        top: 155px;
        opacity: 1;

        animation-timing-function: ease-out;
    }
    30%,
    50%,
    70%,
    90% {
        top: 155px;
        animation-timing-function: ease-out;
        opacity: 1;
    }
    20%,
    40%,
    60%,
    80% {
        top: 110px;
        box-shadow: rgba(255, 255, 255, 0.992) 0px 2px 4px 0px,
            rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
        animation-timing-function: ease-in;
        opacity: 1;
    }
    100% {
        top: 120px;
        left: 75%;
        opacity: 0; /* End with full transparency */
        animation-timing-function: ease;
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 920px) {
    @keyframes movement {
        10% {
            top: 140px;
            animation-timing-function: ease-out;
        }
        30%,
        50%,
        70%,
        90% {
            top: 140px;
            animation-timing-function: ease-out;
        }
        20%,
        40%,
        60%,
        80% {
            top: 90px;
            box-shadow: rgba(255, 255, 255, 0.992) 0px 2px 4px 0px,
                rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
            animation-timing-function: ease-in;
        }
        100% {
            top: 90px;
            left: 90%;
            opacity: 0; /* End with full transparency */
            animation-timing-function: ease;
            transform: rotate(360deg);
        }
    }
}
/* /ball text  */

footer#contact {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 200px;
    background: rgb(13, 24, 41);
    background: linear-gradient(
        0deg,
        rgba(13, 24, 41, 1) 0%,
        rgba(0, 0, 0, 1) 100%
    );
    color: white;
    min-height: 100vh;
}
footer#contact #animation-text-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
footer#contact #animation-text-contacts .btnCustom {
    padding: 10px;
}
footer#contact #animation-text-contacts .btnCustom::before {
    width: 200%;
    height: 0;
}
footer#contact #animation-text-contacts .btnCustom:hover::before {
    background-color: aqua;
    height: 450%;
    width: 200%;
}
footer#contact #animation-text-contacts .footer-cards {
    max-width: 200px;
    margin: 10px;
}

/* BTN MENTIONS LEGALES*/
#openModal {
    font-size: 14px;
    background: transparent;
    color: rgba(255, 255, 255, 0.653);
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-weight: bold;
    border: none;
    text-decoration: none;
    padding: 10px 30px;
    z-index: 999;
    transition: 0.4s ease;
}
#openModal:hover {
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 0, 0.715)
}

/* MENTIONS LEGALES */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffffdb;
}

.modal-content {
    background-color: black;
    margin: 10% auto;
    padding: 50px;
    border: 1px solid #888;
    width: 80%;
    cursor: pointer;
}

.close-modal {
    color: #ffffff;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #62b5e5;
    cursor: pointer;
}

.title_principal {
    margin-left: auto;
    margin-right: auto;
    color: #62b5e5;
    font-size: 35px;
    margin-bottom: 50px;
    position: relative;
}

.title_principal::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px; /* Ajustez la valeur selon l'écart souhaité */
    left: 0;
    width: 100%;
    height: 1px; /* Ajustez la hauteur du soulignement */
    background-color: #ffffff; /* Couleur du soulignement */
}

h6 {
    font-size: 20px;
    color: #62b5e5;
    margin-top: 30px;
    margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
    #modal.modal {
        margin-top: 60px;
    }
    #openModal:hover {
        border: none;
        border-radius: 8px;
        color: rgba(255, 255, 0, 0.715)
    }

    .title_principal {
        text-align: center;
    }
}
/*# sourceMappingURL=style.css.map */



