:root {
    --bg-color: #0C0C0C;
    --bg-color-alt: #1e1e1e;
    --main-color: #FFFAFA;
    --blur-bg-color: #96969626;
    --light-color: #ffffff48;
}

@font-face {
    font-family: JetBrains_Mono;
    src: url(../font/JetBrainsMono-VariableFont_wght.ttf) format("truetype");
}

body {
    background-color: var(--bg-color);
    font-family: 'JetBrains_Mono';
    color: var(--main-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

* {
    scroll-behavior: smooth;
}


.noise::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    opacity: 0.025;
    z-index: 10;
    pointer-events: none;
    background: url(../icon/noise.gif);
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    transition: width 0.2s, height 0.2s;
    transform-origin: center;
    top: 0px;
    left: 0px;
}

.cursor-point-clicked {
    width: 20px;
    height: 20px;
    top: -5px;
    left: -5px;
}

.cursor-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0px;
    left: 0px;
    border: 2px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-circle-clicked {
    width: 30px;
    height: 30px;
    top: -5px;
    left: -5px;
}


/* Style spécifique pour le survol des éléments cliquables */
.cursor-hover .cursor-circle {
    width: 55px;
    height: 55px;
    background-color: white;

    border-color: white;
    z-index: 99998 !important;
}

.cursor-hover .cursor-point {
    background-color: rgb(0, 0, 0) !important;
    z-index: 99999 !important;
}

.cursor-scroll-text {
    position: absolute;
    width: 100px;
    height: 100px;
    top: -28px;
    left: -28px;
    pointer-events: none;
    transform-origin: center;
    transition: opacity 0.1s ease;
}

.char-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    transform-origin: center;
    position: none;
}

.scroll-char {
    position: absolute;
    top: 0;
    font-size: 10px;
    color: white;
    text-align: center;
    transform-origin: center bottom;
    position: none;
}
.cursor-help-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 1000px;
    border: var(--main-color) solid 1px;
    background-color: var(--blur-bg-color);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    display: flex;
    align-items: center;
    padding-inline: 10px;
    z-index: 10000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

/* Masquer le curseur sur les éléments cliquables pour éviter d'avoir deux curseurs */
a,
button,
input,
textarea,
select,
[role="button"],
.logo,
.project,
.radio-container label,
.radio-container input {
    cursor: none;
}

/* Masquer le curseur par défaut sur tout le document */
html {
    cursor: none;
}

/*
.circle {
    pointer-events: none;
    transition: none;
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
    mix-blend-mode: screen;
    opacity: 0.8;
    filter: blur(1px);
}

.scaled {
    transform: scale(1.5);
}*/


::selection {
    background-color: var(--main-color);
    color: var(--bg-color);
}






header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: none;
}

header .nav {
    width: 700px;
    height: 85px;
    border-radius: 1000px;
    border: var(--main-color) solid 1px;
    background-color: var(--blur-bg-color);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    display: flex;
    align-items: center;
    padding-inline: 10px;
    pointer-events: auto;
}

header img {
    height: 50px;
    aspect-ratio: 1;
    margin: 20px;
}

header .logo-nav {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: calc(100% - 250px);
}

header .logo-nav .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 300;
}

header .logo-nav button {
    background-color: transparent;
    border: none;
    font-family: 'JetBrains_Mono';
    color: var(--main-color);
    letter-spacing: 0.2px;
    transition: all 0.3s ease-in-out;
}

header .logo-nav button:hover {
    letter-spacing: 1.5px;
}

header .logo-nav button svg {
    height: 20px;
    width: 20px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

header .project-nav {
    width: 250px;
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}
header .project-nav button{
    border-radius: 100px !important;
    height: calc(100% - 10px);
    transform: translateX(0) !important;
}


header i {
    width: 25px;
    height: 25px;
    margin-inline: 10px;
    font-size: 25px;
}







.first {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: calc(100vh - 190px);
    width: 100vw;
    margin-top: 150px;
}

.position-first {
    height: 10px;
    width: 10px;
    position: absolute;
    top: -1000px;
}

.first .title {
    font-size: 9.5vh;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-inline: 5px;
    text-align: center;
    position: relative;
    background: #FFFAFA;
    background: radial-gradient(circle farthest-corner at bottom center, #FFFAFA 0%, #adadad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.first .description {
    font-size: 3vh;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: center;
    margin-inline: 20px;
}

.first .big_shadow:not(.ios-shadow) {
    width: 60vw;
    min-width: 70vh !important;
    height: 70vh;
    min-height: 40vw;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60vh;
    z-index: 0 !important;
    border-radius: 50%;
    /* Utilisation du filtre SVG à la place de blur(1000px) */
    filter: url(#big_blur_filter) brightness(1.1);
    -webkit-filter: url(#big_blur_filter) brightness(1.1);
    will-change: opacity, transform;
}

.first .ios-shadow {
    width: 100vw;
    height: 60vh;
    background-color: var(--main-color);
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    bottom: -60vh;
    z-index: 0 !important;
    border-radius: 50%;
    /* Utilisation du filtre SVG à la place de blur(1000px) */
    filter: blur(100px) brightness(1.1);
    -webkit-filter: blur(100px) brightness(1.1);
    transform: translate3d(0, 0, 0);
    will-change: opacity, transform;
}

.first * {
    z-index: 1 !important;
}



.first .line {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: calc(9.5vh * 3.65);
    z-index: 1;
}

.first .cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    height: 40vh;
}

.project {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    align-items: center;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    border: var(--main-color) solid 1px;
    background: rgb(255, 250, 250);
    background: linear-gradient(180deg, rgba(255, 250, 250, 1) 0%, rgb(189, 189, 189) 100%);
    font-family: 'JetBrains_Mono';
    color: var(--bg-color);
    box-shadow: 0 78px 22px 0 transparent, 0 50px 20px 0 rgba(0, 0, 0, .01), 0 28px 17px 0 rgba(0, 0, 0, .05), 0 13px 13px 0 rgba(0, 0, 0, .09), 0 3px 7px 0 rgba(0, 0, 0, .1);
    transition: all 0.3s ease-in-out;
    max-height: 60px;
}
.button svg,
.button i,
.project svg,
.project i {
    height: 15px;
    width: 15px;
    transition: all 0.3s ease-in-out;
    position: relative;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
}
.button:hover svg,
.button:hover i,
.project:hover svg,
.project:hover i {
    transform: translateX(5px) translateY(-5px);
    filter: drop-shadow(-3px 5px 2px rgb(0 0 0 / 0.4));
}


.project span {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.project:hover span {
    font-weight: 700;
}


.project span::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--bg-color);
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.project:hover span::after {
    transform: scaleX(1);
    height: 2px;
}


.project:hover {
    transform: translateY(-5px);
}



.button {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    align-items: center;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    border: #b6b6b6 solid 1px;
    font-family: 'JetBrains_Mono';
    margin: 10px;
    background-color: var(--blur-bg-color);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    color: var(--main-color);
    box-shadow: 0 78px 22px 0 transparent, 0 50px 20px 0 rgba(0, 0, 0, .01), 0 28px 17px 0 rgba(0, 0, 0, .05), 0 13px 13px 0 rgba(0, 0, 0, .09), 0 3px 7px 0 rgba(0, 0, 0, .1);
    transition: all 0.3s ease-in-out;
}

.button:hover {
    transform: translateY(-5px);
    scale: 1.05;
}

.button span {
    transition: all 0.3s ease-in-out;
}

.button:hover span {
    font-weight: 600;
}







.second {
    width: calc(100% - 20px);
    height: 920px;
    background-color: var(--bg-color);
    border: var(--light-color) solid 1px;
    border-radius: 40px;
    z-index: 9 !important;
    position: relative;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 -10px 10px var(--blur-bg-color);
}

.second .title-second {
    font-size: 6vh;
    font-weight: 600;
    letter-spacing: 0.2px;
    position: absolute;
    top: 0px;
    left: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

.second .title-second i {
    font-size: 8vh;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin: 20px;
    background-color: var(--main-color);
    color: var(--bg-color);
    aspect-ratio: 1;
    border-radius: 20px;
    width: 10vh;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -10px;
    padding: 10px;
}

.separator {
    height: 25vh;
    width: 100%;
}

.project-section {
    position: relative;
    width: 100%;
    height: 100%;
}

.radio-container {
    --main-color-opacity: #ffffff1d;

    /* change this according inputs count */
    --total-radio: 4;

    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 0.5rem;
    left: 50px;
    width: 280px;
    top: 0px;
    z-index: 10;
}

.radio-container input {
    appearance: none;
}

.radio-container .glider-container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(27, 27, 27, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
    width: 1px;
}

.radio-container .glider-container .glider {
    position: relative;
    height: calc(100% / var(--total-radio));
    width: 100%;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0) 0%,
            var(--main-color) 50%,
            rgba(0, 0, 0, 0) 100%);
    transition: transform 0.5s cubic-bezier(0.37, 1.95, 0.66, 0.56);
}

.radio-container .glider-container .glider::before {
    content: "";
    position: absolute;
    height: 60%;
    width: 300%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--main-color);
    filter: blur(10px);
}

.radio-container .glider-container .glider::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg,
            var(--main-color-opacity) 0%,
            rgba(0, 0, 0, 0) 100%);
}

.radio-container label {
    cursor: pointer;
    padding: 1rem;
    position: relative;
    color: rgb(216, 216, 216);
    transition: all 0.3s ease-in-out;
}

.radio-container input:checked+label {
    color: var(--main-color);
}

.radio-container input:nth-of-type(1):checked~.glider-container .glider {
    transform: translateY(0);
}

.radio-container input:nth-of-type(2):checked~.glider-container .glider {
    transform: translateY(100%);
}

.radio-container input:nth-of-type(3):checked~.glider-container .glider {
    transform: translateY(200%);
}

.radio-container input:nth-of-type(4):checked~.glider-container .glider {
    transform: translateY(300%);
}

.radio-container input:nth-of-type(5):checked~.glider-container .glider {
    transform: translateY(400%);
}

.radio-container input:nth-of-type(6):checked~.glider-container .glider {
    transform: translateY(500%);
}

.radio-container input:nth-of-type(7):checked~.glider-container .glider {
    transform: translateY(600%);
}

.radio-container input:nth-of-type(8):checked~.glider-container .glider {
    transform: translateY(700%);
}

.radio-container input:nth-of-type(9):checked~.glider-container .glider {
    transform: translateY(800%);
}

.radio-container input:nth-of-type(10):checked~.glider-container .glider {
    transform: translateY(900%);
}

.project-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    top: 0px;
    left: calc(100% - 100px);
    width: calc(100% - 450px);
    transform: translateX(-100%);
    position: absolute;
}

.project-item {
    width: 100%;
    border-radius: 20px;
    display: none;
    transform: initial;
}

.project-item img {
    width: 70%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    border: var(--main-color) solid 2px;
    box-shadow: 0 0 10px 5px var(--blur-bg-color);
    transition: all 0.3s ease-in-out;
    filter: saturate(0);
}

.project-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px -1px var(--main-color);
    filter: saturate(1);
}

.tag-contener {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 20px;
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
}

.tag-contener span {
    background-color: var(--main-color);
    color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 1000px;
    transition: all 0.2s ease;
}

.tag-contener span:hover {
    scale: 1.1;
    margin-inline: 10px;
}

.tag-contener:hover span {
    filter: blur(2px);
    transition: all 0.2s ease;
}

.tag-contener:hover span:hover {
    filter: blur(0);
    opacity: 1;
    scale: 1.1;
}

.more-projects {
    position: absolute;
    bottom: 26vh;
    left: 10px;
}








.third {
    width: 100%;
    position: relative;
    top: 200px;
    left: 0;
    height: 700px;
    border-radius: 50px;
}

.position-third {
    height: 10px;
    width: 10px;
    position: absolute;
    top: -1000px;
}

.title-third {
    font-size: 6vh;
    font-weight: 600;
    letter-spacing: 0.2px;
    position: absolute;
    top: -20px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.title-third .text {
    position: absolute;
    top: -100px;
}

.title-third .text::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: var(--main-color);
    box-shadow: 0 5px 10px 0px var(--main-color);
}

.title-third i {
    font-size: 7vh;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin: 20px;
    background-color: var(--main-color);
    color: var(--bg-color);
    aspect-ratio: 1;
    border-radius: 20px;
    width: 10vh;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -10px;
    padding: 10px;
}

.third .separator {
    height: 200px;
}

.third .social-container .project svg {
    width: 30px;
    height: 30px;
}

.third .social-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 80%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.third .contact-container {
    display: flex;
    justify-content: center;
    justify-self: center;
    margin: 0px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.third .contact-container button{
    animation: scalvar 5s infinite;
}

.third .social-container svg{
    filter: invert(1);
}

.third .social-container .button{
    margin: 5px;
}

.light {
    width: 100%;
    position: relative;
    z-index: -1;
}

.light svg {
    width: 60vh;
    position: absolute;
    top: calc(30vh - 150px);
    left: 50%;
    transform: translateX(-50%);
}






footer {
    width: calc(100% - 300px);
    height: 380px;
    background-color: var(--bg-color-alt);
    border-inline: var(--main-color) solid 0.2px;
    border-top: var(--main-color) solid 0.2px;
    border-radius: 40px 40px 0 0;
    z-index: 9 !important;
    position: relative;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    box-shadow: 0 -10px 10px var(--blur-bg-color);
}

.infoot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: row;
    align-items: center;
    padding-inline: 20px;
    gap: 30px;
    flex-wrap: wrap;
    width: calc(100% - 60px);
    height: 100px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--blur-bg-color);
    border: var(--main-color) solid 0.2px;
    border-radius: 30px;
}

.infoot .buttons {
    display: flex;
    flex-direction: row;
    justify-self: right;
    align-items: center;
    gap: 20px;

}

.infoot .logo {
    width: 50px;
    height: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.infoot h2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.copyright {
    position: absolute;
    bottom: 0;
    left: 10px;
    font-size: 15px;
    color: var(--light-color);
}

.menue {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 50%;
    right: 0;
    bottom: 20px;
    transform: translateY(calc(-50% + 80px));
    position: absolute;
}

.menue .menue-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    height: calc(100% - 150px);
}

.menue h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--light-color);
    text-align: left;
    width: 100%;
}

.menue-item a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: var(--main-color);
    text-decoration: none;
    text-align: left;
    position: relative;
    transition: all 0.1s ease-in-out !important;
    width: 100%;
    padding: 10px;
    left: 0;
}

.menue-item a:hover {
    position: relative;
    left: 10px;
}

.menue-title {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--main-color);
    position: absolute;
    top: 150px;
    left: 30px;
}

/*1500*/
@media (max-width: 1500px) {
    footer .menue {
        transform: translateY(calc(-50% + 120px));
    }

    .copyright {
        font-size: 12px;
    }
}

@media (max-width: 1037px) {
    .infoot h2 {
        font-size: 1em;
    }

    footer .menue {
        scale: 0.8;
        transform: translateY(calc(-50% + 100px));
        right: 0;
    }

    .project-item img {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .infoot {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0px;
        height: 170px;
    }

    .infoot .buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -20px;
    }

    .infoot h2 {
        font-size: 1.5em;
    }

    footer {
        width: calc(100% - 100px);
        height: 410px;
    }

    footer .menue {
        scale: 0.8;
        transform: translateY(calc(-50% + 100px));
        width: 70%;
        right: 0;
    }

    footer .menue-title {
        top: 180px;
    }
}

@media (max-width: 980px) {
    header .nav {
        margin-inline: 50px;
    }
}

/* Styles pour le menu burger */
.burger {
    display: none;
    /* Masquer par défaut */
    font-size: 30px;
    background: none;
    border: none;
    color: var(--main-color);
    cursor: pointer;
    z-index: 10000;
    /* Assurez-vous qu'il est au-dessus des autres éléments */
}

/* Styles pour le menu déroulant */
.nav {
    display: flex;
    /* Affichage normal par défaut */
    flex-direction: row;
    /* Alignement horizontal */
}

@media (max-width: 800px) {
    .burger {
        display: block;
        pointer-events: auto;
        position: absolute;
        top: 10px;
        right: 10px;
        border: var(--main-color) solid 1px;
        background-color: var(--blur-bg-color);
        -webkit-backdrop-filter: blur(50px);
        backdrop-filter: blur(50px);
        border-radius: 100px;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header {
        width: 100%;
        overflow: hidden;
        height: 1000px;
    }

    .nav {
        display: none;
        scale: 0;
        /* Masquer la barre de navigation par défaut */
        flex-direction: column;
        /* Alignement vertical */
        position: absolute;
        top: 0px;
        right: -450px;
        z-index: 9999;
        gap: 20px;
        transition: all 0.3s ease-in-out;
        filter: blur(50px);
        margin: 0;
    }

    .nav * {
        scale: 0;
        transition: all 0.3s ease-in-out;
    }

    .nav .logo-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .nav.active {
        position: absolute;
        top: 20px;
        right: 0px;
        display: flex;
        scale: 1;
        width: 250px;
        height: auto;
        border-radius: 50px;
        padding: 20px;
        gap: 20px;
        filter: blur(0px);
    }

    .nav.active * {
        scale: 1;
        transition: all 0.3s ease-in-out;
    }

    .first {
        margin-top: 50px;
    }
}

@media (max-width: 850px) {
    .line {
        display: none;
    }
}

@media (max-width: 500px) {
    * {
        font-weight: 500 !important;
    }

    .first .title {
        font-weight: 500;
        font-size: 9vh;
        margin-top: 25px;
    }

    .first .description {
        font-weight: 400;
        font-size: 3vh;
        margin-top: -10px
    }

    .first {
        margin-top: -10px;
        height: calc(100vh - 10px);
    }

    .first .cta {
        flex-direction: column;
        gap: 10px;
        margin-top: -20px;
    }

    .radio-container {
        rotate: 90deg;
        position: absolute;
        top: -30px;
        right: -10px;
        width: 265px;
        border-right: var(--main-color) solid 1px;
    }

    .rotated-letter {
        display: inline-block;
        transform: rotate(-90deg);
        margin-inline: 3px;
        position: relative !important;
        bottom: 10px !important;
    }

    .rotate-text {
        display: flex;
        align-items: center;
    }

    .project-container {
        width: calc(100vw - 150px) !important;
        display: flex !important;
        justify-content: center !important;
        top: 300px;
    }

    .tag-contener {
        width: calc(120%);
        gap: 10px;
        margin: 0px;
    }

    .second {
        height: 1150px;
    }

    .title-second {
        top: 0px;
        left: 0px !important;
        margin: 0px;
        font-size: 4vh !important;
    }

    .title-second i {
        font-size: 5vh !important;
        width: 7vh !important;
        height: 7vh !important;
    }

    .third .title-third {
        font-size: 5vh !important;
        text-align: center;
        top: 80px;
    }

    .third .title-third span::after {
        display: none;
    }

    .third .title-third i {
        margin-top: 40px;
        font-size: 7vh !important;
    }

    .third .contact-container {
        display: flex !important;
        width: 100%;
        margin-inline: 0 !important;
    }

    .third {
        overflow: hidden;
        padding-bottom: 30px;
        padding-top: 100px;
        margin-top: -100px;
    }

    footer {
        width: calc(100vw - 20px);
        left: 50;
        transform: translateX(-50%);
        margin: 0;
        padding: 0;
        height: 500px;
        margin-top: 170px;
    }

    footer .infoot {
        font-size: 15px;
    }

    footer .menue {
        left: 0;
        padding: 0;
        margin: 0;
        top: 230px;
        width: 100%;
    }

    .social-container {
        display: flex;
        flex-direction: column !important;
    }

    .social-container .project {
        width: 90%;
        display: flex;
        justify-content: space-between;
    }

}

@media (max-width: 400px) {
    footer .infoot h2 {
        font-size: 1.3em;
    }
}

/* Animation de glissement depuis le bas */
@keyframes slideUp {
    0% {
        transform: translateY(100px);
        scale: 1;
        opacity: 1;
    }

    50% {
        transform: translateY(60px);
        opacity: 1;
        scale: 1.1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
        scale: 1;
    }
}

/* Animation de glissement depuis le bas */
@keyframes slideUpBigShadow {
    0% {
        transform: translateY(100px) translateX(-50%);
        scale: 1;
        opacity: 1;
    }

    50% {
        transform: translateY(60px) translateX(-50%);
        opacity: 1;
        scale: 1.1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
        scale: 1;
    }
}

.blur {
    filter: blur(5px);
    /* Ajustez la valeur du flou selon vos préférences */
    transition: filter 0.1s ease;
    /* Transition douce pour le flou */
}

@keyframes scalvar {
    0%{
        scale: 1.1;
    }
    25%{
        scale: 1.15;
    }
    50%{
        scale: 1.13;
    }
    75%{
        scale: 1.2;
    }
    100%{
        scale: 1.1;
    }
}