:root {
    --purple: rgb(123, 31, 162);
    --violet: rgb(103, 58, 183);
    --pink: rgb(244, 143, 177);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/*---------------------------------------------/
****************** Acceuil *********************
/---------------------------------------------*/

.banner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    background: #fff;
    transition: 0.5s;
}

.banner.night {
    background: #333;
}

.banner::before {
    content: '';
    position: absolute;
    left: 30%;
    top: 12%;
    width: 150px;
    height: 150px;
    background: url(images/dotted.png);
    background-size: cover;
    animation: animateColor 10s linear infinite;
    transition-delay: -5s;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logoContainer img {
    top: 1em;
    left: 2em;
    width: 10em;
    height: 10em;
    background-repeat: no-repeat;
    background-position: left bottom;
    position: absolute;
}

header ul {
    display: flex;
    gap: 40px;
}

header ul li {
    list-style: none;
    z-index: 10;
}

header ul li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2em;
    color: #333;
    transition: 0.5s;
}

a.menuButton {
    scale: 0.9;
    position: relative;
    padding: 20px 20px;
    color: #333;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1.2em;
    border: 2px solid transparent;
    transition: 0.5s;
}

a.menuButton:hover {
    border: 2px solid #333;
}

a.menuButton::before {
    content: '';
    position: absolute;
    inset: 0 8px;
    border-left: 2px solid #333;
    border-right: 2px solid #333;
    transition: 1s;
}

a.menuButton::after {
    content: '';
    position: absolute;
    inset: 8px 0;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    transition: 1s;
}

a.menuButton:hover::before {
    inset: 0 8px;
    transform: rotateY(180deg);
}

a.menuButton:hover::after {
    inset: 8px 0;
    transform: rotateX(180deg);
}

.content {
    padding-top: 10em;
    z-index: 20;
}

.content h3 {
    font-size: 2em;
    color: #333;
    font-weight: 200;
    transition: 0.5s;
    padding-left: 2.7em;
}

.content h2 {
    font-size: clamp(3.5em, 3.5vw, 6em);
    color: #333;
    font-weight: 700;
    transition: 0.5s;
    padding-left: 1.4em;
    max-width: 1100px;
}

.content p {
    font-size: clamp(1.8em, 1.8vw, 3.5em);
    font-weight: 400;
    color: #666;
    margin: 10px 0;
    transition: 0.5s;
    padding-left: 2.5em;
    max-width: 750px;
}

/* //////////////////////////// */
/* MODE TEXT MAGIC + TYPE TEXT */
/* ////////////////////////// */

.content h2 span span {
    color: #e91e63;
}

h2>.magic {
    display: inline-block;
    position: relative;
}

h2>.magic>.magic-star {
    --size: clamp(20px, 1.5vw, 30px);

    animation: scale 700ms ease forwards;
    display: block;
    height: var(--size);
    left: var(--star-left);
    position: absolute;
    top: var(--star-top);
    width: var(--size);
}

h2>.magic>.magic-star>svg {
    animation: rotate 1000ms linear infinite;
    display: block;
    opacity: 0.7;
}

h2>.magic>.magic-star>svg>path {
    fill: var(--violet);
}

h2>.magic>.magic-text {
    animation: background-pan 3s linear infinite;
    background: linear-gradient(to right,
            var(--purple),
            var(--violet),
            var(--pink),
            var(--purple));
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

@keyframes background-pan {
    from {
        background-position: 0% center;
    }

    to {
        background-position: -200% center;
    }
}

@keyframes scale {

    from,
    to {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(180deg);
    }
}

p>.magic {
    display: inline-block;
    position: relative;
}

p>.magic>.magic-star {
    --size: clamp(20px, 1.5vw, 30px);

    animation: scale 700ms ease forwards;
    display: block;
    height: var(--size);
    left: var(--star-left);
    position: absolute;
    top: var(--star-top);
    width: var(--size);
}

p>.magic>.magic-star>svg {
    animation: rotate 1000ms linear infinite;
    display: block;
    opacity: 0.7;
}

p>.magic>.magic-star>svg>path {
    fill: var(--violet);
}

p>.magic>.magic-text {
    animation: background-pan 3s linear infinite;
    background: linear-gradient(to right,
            var(--purple),
            var(--violet),
            var(--pink),
            var(--purple));
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

@keyframes background-pan {
    from {
        background-position: 0% center;
    }

    to {
        background-position: -200% center;
    }
}

@keyframes scale {

    from,
    to {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(180deg);
    }
}

.content .contentButtonContact {
    padding-left: 4em;
}

.content button {
    position: relative;
    background: #2196f3;
    color: #fff;
    border: none;
    outline: none;
    padding: 15px 15px;
    margin-top: 15px;
    font-size: 1.25em;
    letter-spacing: 0.05em;
    margin-left: 2em;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s;
}

.content button.chat {
    background: transparent;
    color: #333;
}

.content button.chat ion-icon {
    position: relative;
    top: 5px;
    color: #e91e63;
    font-size: 1.5em;
}

.nightTheme .darkModeButton {
    position: fixed;
    scale: 0.6;
    bottom: 1em;
    right: 1em;
    padding: 1em;
    margin-left: 20px;
    z-index: 20;
    width: 60px;
    height: 60px;
    background: url(images/brightness-contrast.svg);
    border-radius: 50%;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
    font-size: 2em;
    opacity: 0.7;
    overflow: visible;
}

.nightTheme {
    background: transparent;
}

.nightTheme.night {
    background: #333;
    position: sticky;
    top: 0;
}

.nightTheme .darkModeButton {
    z-index: 30;
}

.banner.night header .logoContainer .logoWhite {
    visibility: hidden;
}

.banner.night header .logo,
.banner.night .content h2,
.banner.night .content h3,
.banner.night .content p,
.banner.night .content button.chat,
.banner.night header ul li a {
    color: #fff;
}

.banner.night a.menuButton {
    scale: 0.9;
    position: relative;
    padding: 20px 20px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1.2em;
    border: 2px solid transparent;
    transition: 0.5s;
}

.banner.night a.menuButton:hover {
    border: 2px solid #fff;
}

.banner.night a.menuButton::before {
    content: '';
    position: absolute;
    inset: 0 8px;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: 1s;
}

.banner.night a.menuButton::after {
    content: '';
    position: absolute;
    inset: 8px 0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: 1s;
}

.banner.night a.menuButton:hover::before {
    inset: 0 8px;
    transform: rotateY(180deg);
}

.banner.night a.menuButton:hover::after {
    inset: 8px 0;
    transform: rotateX(180deg);
}

.colors {
    position: absolute;
    right: 3em;
    width: 91%;
    height: 91%;
    max-width: 1100px;
    animation: animateColor 8s ease-in-out infinite;
    margin-top: -380px;
}

@keyframes animateColor {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(50px);
    }
}

.men {
    position: absolute;
    right: 5em;
    top: 5em;
    width: auto;
    height: auto;
    max-height: 100vh;
    animation: animateMen 8s ease-in-out infinite;
}

@keyframes animateMen {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-50px);
    }
}

label,
#toggle {
    display: none;
}

@media (max-width: 480px) {
    .content {
        margin-top: 45px;
    }

    .banner {
        min-height: 50vh;
    }

    .content h3 {
        margin-left: -2em;
        margin-top: 6em;
        font-size: clamp(1.3em, 1.3vw, 2.7em);
    }

    .content h2 {
        font-size: clamp(1.7em, 1.7vw, 3.5em);
    }

    .content p {
        font-size: clamp(1.3em, 1.3vw, 2.2em);
        padding-left: 15%;
        margin-right: 15%;
    }

    .content button {
        margin-left: 1em;
    }

    .banner::before {
        width: 6em;
        height: 6em;
        margin-left: 5em;
    }

    .colors {
        width: 60%;
        height: 45%;
        margin-top: -220px;
        /* top: -5em; */
        right: -0.5em;
    }

    .men {
        width: 47%;
        height: 35%;
        top: 7.5em;
        right: -0.5em;
    }

    .menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        text-align: center;
        padding: 20px;
    }

    .menu li {
        margin-bottom: 10px;
    }

    .menu a {
        color: #000;
        font-weight: bold;
    }

    .banner.night header nav label {
        color: #fff;
    }


    .banner.night header nav .menu .menuButton {
        background-color: #333;
    }

    /* input#toggle .radioBurger {
        visibility: hidden;
    } */

    label {
        display: flex;
        cursor: pointer;
    }



    .banner.night header nav #toggle:checked+.menu {
        background-color: #333;
        opacity: 0.8;
    }

    #toggle:checked+.menu {
        display: flex;
        flex-direction: column;
        z-index: 80;
        background-color: #fff;
        opacity: 0.8;
    }
}

@media (min-width: 1100px) {
    .menuButton {
        display: none;
    }
}

@media (max-width: 1100px) {
    .menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        text-align: center;
        padding: 20px;
    }

    .menu li {
        margin-bottom: 10px;
    }

    .menu a {
        color: #000;
        font-weight: bold;
    }

    .banner.night header nav label {
        color: #fff;
    }


    .banner.night header nav .menu .menuButton {
        background-color: #333;
    }

    input#toggle.radioBurger {
        visibility: hidden;
      }


    label {
        display: flex;
        cursor: pointer;
    }

    .banner.night header nav #toggle:checked+.menu {
        background-color: #333;
        opacity: 0.8;
    }

    #toggle:checked+.menu {
        display: flex;
        flex-direction: column;
        z-index: 80;
        background-color: #fff;
        opacity: 0.8;
    }
}

@media (min-width: 1920px) {
    .banner::before {
        width: 200px;
        height: 200px;
    }

    .colors {
        max-width: 1100px;
    }

    header .logoContainer img {
        width: 300px;
        height: 300px;
    }
}


@media (min-width: 2300px) {
    .banner::before {
        width: 250px;
        height: 250px;
    }

    .colors {
        max-width: 1200px;
        margin-top: -600px;
    }

    header .logoContainer img {
        width: 400px;
        height: 400px;
    }

    .content p {
        max-width: 1000px;
    }

    .content button {
        padding: 25px 25px;
        font-size: 1.8em;
        margin-left: 8em;
    }
}


/*---------------------------------------------/
****************** Profil *********************
/---------------------------------------------*/

.profil {
    background: #fff;
    background-image: url(images/bgProfil.png);
    background-size: cover;
    padding-bottom: 4em;
    padding-top: 1em;
    box-sizing: content-box;
    top: 0;
    position: relative;
    z-index: 1;
}

.profilWrapper {
    padding-right: 5em;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    top: 1em;
    position: relative;
    z-index: 1;
}


.scanContainer {
    position: relative;
    background-image: url(images/background-scan.png);
    opacity: 0.95;
    background-size: 85%;
    background-repeat: no-repeat;
}

.scan {
    position: relative;
    top: 8em;
    left: 1em;
    transform: scale(0.45, 0.45);
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: faceColorLoop 2s linear infinite;
    z-index: 30;
    width: 75%;
}


@keyframes faceColorLoop {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.scan .face {
    position: relative;
    bottom: 2em;
    width: 500px;
    height: 500px;
    background: url(images/face-detection-blue.png);
}

.scan .face::before {
    content: '';
    position: absolute;
    bottom: 2em;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/face-detection-grey2.png);
    background-size: 500px;
    animation: animate 4s ease-in-out infinite;
}

@keyframes animate {

    0%,
    100% {
        height: 0%;
    }

    50% {
        height: 100%;
    }
}

.scan .face::after {
    content: '';
    position: absolute;
    bottom: 2em;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: #38f1f1;
    border-radius: 8px;
    filter: drop-shadow(0 0 20px #38f1f1) drop-shadow(0 0 60px #38f1f1);
    animation: animate_line 4s ease-in-out infinite;
}

@keyframes animate_line {

    0%,
    100% {
        top: 0%
    }

    50% {
        top: 100%;
    }
}

.scan h3 {
    text-transform: uppercase;
    color: #38f1f1;
    font-size: 2em;
    margin-bottom: 1em;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 20px #38f1f1) drop-shadow(0 0 60px #38f1f1);
    animation: animate_text 0.5s steps(1) infinite;
}

@keyframes animate_text {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.scan .face .dots {
    position: absolute;
    inset: 0;
}

.scan .face .dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: url(images/face-line.png);
    background-size: 500px;
    animation: face_lines 4s ease-in-out infinite;
}

@keyframes face_lines {

    0%,
    25%,
    100% {
        height: 0%;
    }

    50% {
        height: 100%;
    }
}

.scan .face .dots::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: url(images/face-point.png);
    background-size: 500px;
    animation: face_points 4s ease-in-out infinite;
}

@keyframes face_points {

    0%,
    100% {
        height: 0%;
    }

    50% {
        height: 100%;
    }
}

.title {
    display: flex;
    height: 35%;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 2em;
}

.title h2 {
    text-transform: uppercase;
    cursor: context-menu;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    background: linear-gradient(to bottom, #000, #000 60%, #fff 60%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-repeat: no-repeat;
    transition: background 0.2s ease-out;
    white-space: nowrap;
}

.title span {
    position: relative;
}

.title span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background: #e91e63;
    bottom: 9px;
    transition: all 0.2s ease-out;
}

.title h2:hover {
    background-position: 0 11px;
}

.title span:hover:before {
    transform: translateY(10px)
}

.profil .profilWrapper .aboutText {
    display: flex;
    justify-content: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    word-wrap: break-word;
    overflow: hidden;
}

.profil .citation {
    display: inline-block;
    position: relative;
    transform: scale(0.9);
    padding-top: 0.5em;
}

.profil .citation .textCitation {
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 2em;
    top: 30%;
    font-style: italic;
    font-size: 1.5em;
    width: 70%;
    color: #333;
}

/* NIGHT MODE */
.profil.night {
    background: #333;
    background-image: url(images/bgProfil.png);
    background-size: cover;
}

.profil.night .profilWrapper .aboutText p {
    color: #f2ebeb;
}

.profil.night .profilWrapper .aboutText .title h2 {
    text-transform: uppercase;
    cursor: context-menu;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    background: linear-gradient(to bottom, #fff 60%, #fff, #333 60%, #333);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-repeat: no-repeat;
    transition: background 0.2s ease-out;
    white-space: nowrap;
}

.profil.night .profilWrapper .aboutText .title span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background: #e91e63;
    bottom: 9px;
    transition: all 0.2s ease-out;
}

.profil.night .profilWrapper .aboutText .title h2:hover {
    background-position: 0 9px;
}

.profil.night .profilWrapper .aboutText .title span:hover:before {
    transform: translateY(10px)
}

.profil.night .citation {
    display: inline-block;
    position: relative;
    transform: scale(0.9);
}

.profil.night .citation .textCitation {
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 2em;
    top: 30%;
    font-style: italic;
    font-size: 1.5em;
    width: 70%;
}

@media (max-width: 1920px) {

    .scan {
        top: 14em;
        transform: scale(0.5, 0.55);
        margin-left: 7px;
        margin-top: 14px;
    }

    .scanContainer {
        height: 900px;
    }

    .title {
        margin-top: 4em;
        height: auto;
    }

    .profil .profilWrapper .aboutText {
        margin-left: -100px;
        margin-right: 40px;
    }

}

@media (max-width: 1200px) {

    .scan {
        margin-top: -10em;
    }

    .scanContainer {
        margin: 0 auto;
        width: 110%;
    }
}

@media (max-width: 900px) {
    .profilWrapper {
        grid-template-columns: 1fr;
    }

    .scan {
        margin-top: -1em;
        margin-left: 1.5em;
    }

    .scanContainer {
        margin: 0 auto;
        width: 120%;
        padding-right: 4em;
        padding-bottom: 10em;
    }
}

@media (max-width: 786px) {
    .profilWrapper {
        grid-template-columns: 1fr;
    }

    .scan {
        margin-top: -1em;
        margin-left: 1.5em;
    }

    .scanContainer {
        margin: 0 auto;
        width: 140%;
    }

    .profil .profilWrapper .aboutText {
        padding-left: 0;
        padding-right: 0;
    }

    .profil .profilWrapper .aboutText p {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 20em;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .profil.night {
        background: #333;
        background-size: cover;
        background-image: url(images/bgProfil.png);
        background-size: 100% 700px;
    }

    .profil {
        min-height: 100vh;
        background: #fff;
        background-size: cover;
        background-image: url(images/bgProfil.png);
        background-size: 100% 700px;
    }

    .scanContainer {
        width: 70%;
    }

    .scan {
        margin-top: -14.5em;
        margin-left: 2em;
        transform: scale(0.30, 0.35);
        width: 70%;

    }

    .scanContainer {
        margin: -20px auto;
        width: 100%;
        margin-left: -1.4em;
        height: 470px;
        /* padding-bottom: 5em; */
    }

    .title {
        display: flex;
        height: 45%;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 2em;
        margin-left: 2%;
    }

    .title h2 {
        text-transform: uppercase;
        cursor: context-menu;
        position: relative;
        display: inline-block;
        font-size: 2.2rem;
        background: linear-gradient(to bottom, #000, #000 55%, #fff 50%, #fff 100%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-repeat: no-repeat;
        transition: background 0.2s ease-out;
        white-space: nowrap;
    }

    .title span {
        position: relative;
    }

    .title span:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 12px;
        background: #e91e63;
        bottom: 8px;
        transition: all 0.2s ease-out;
    }

    .title h2:hover {
        background-position: 0 12px;

    }

    .title span:hover:before {
        transform: translateY(11px)
    }

    .profil.night .profilWrapper .aboutText .title h2 {
        text-transform: uppercase;
        cursor: context-menu;
        position: relative;
        display: inline-block;
        font-size: 2.2rem;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-repeat: no-repeat;
        transition: background 0.2s ease-out;
        white-space: nowrap;
    }

    .profil.night .profilWrapper .aboutText .title span:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 12px;
        background: #e91e63;
        bottom: 8px;
        transition: all 0.2s ease-out;
    }

    .profil.night .profilWrapper .aboutText .title h2:hover {
        background-position: 0 12px;

    }

    .profil.night .profilWrapper .aboutText .title span:hover:before {
        transform: translateY(11px)
    }

    .profil .profilWrapper .aboutText {
        margin-left: 0;
        margin-right: 0;
    }

    .profil .profilWrapper .aboutText {
        padding: 0 5%;
        box-sizing: border-box;
    }

    .profil .profilWrapper .aboutText p {
        display: block !important;
        text-align: left;
        line-height: 1.6;
        /* font-size: 1rem; */
        word-break: normal;
        white-space: normal;
    }

    .profil .profilWrapper .aboutText p strong {
        display: inline;
        font-weight: 700;
    }

    .profil .citation img {
        width: 70%;
        margin-left: -1.2em
    }

    .profil .citation .textCitation {
        position: absolute;
        text-align: center;
        margin: 0 auto;
        left: 0;
        /* right: 2em; */
        top: 30%;
        font-style: italic;
        font-size: 1.1em;
        width: 40%;
        color: #333;
    }

    .profil .citation .textCitation p {
        margin-right: 0;
        margin-left: -45%;
        margin-top: -0.8em;
        max-width: 270px;
    }

    .profil.night .citation img {
        width: 70%;
        margin-left: -1.2em
    }

    .profil.night .citation .textCitation {
        top: 30%;
        font-size: 1.1em;
        width: 40%;
    }

    .profil.night .citation .textCitation p {
        margin-right: 0;
        margin-left: -45%;
        margin-top: -0.8em;
        max-width: 270px;
    }
}

@media (min-width: 1920px) {
    .scanContainer {
        height: 900px;
    }

    .title {
        height: 12%;
        padding-left: 4.5em;
        transform: scale(1.2);
    }

    .scan {
        top: 15em;
        left: 2em;
        transform: scale(0.52, 0.52);
        width: 73%;
    }

    .citation {
        margin-top: 4em;
    }
}

@media (min-width: 2300px) {
    .scanContainer {
        height: 1200px;
        margin-top: -10em;
    }

    .scan {
        top: 27em;
        left: 11em;
        transform: scale(0.65, 0.65);
        width: 55%;
    }

    .title {
        transform: scale(1.2);
        padding-left: 6em;
    }

    .aboutTextContainer {
        font-size: 1.4em;
        padding-right: 2em;
    }

    .profil .citation .textCitation {
        font-size: 1.3em;
        margin-top: -1em;
        margin-right: 1em;
    }

    .profil.night .citation .textCitation {
        font-size: 1.3em;
        margin-top: -1em;
        margin-right: 1em;
    }

    .profil.night {
        background: #333;
        background-size: cover;
        background-image: url(images/bgProfil.png);
        background-size: 100% 2100px;
    }

    .profil {
        background: #fff;
        background-size: cover;
        background-image: url(images/bgProfil.png);
        background-size: 100% 2100px;
    }

    .citation {
        margin-left: 5em;
    }

    .profil .profilWrapper .aboutText {
        margin-left: -100px;
    }
}

/*---------------------------------------------/
*************** Service Card ******************
/-------------------------------------------*/
.serviceCard.night .title h2 {
    text-transform: uppercase;
    cursor: context-menu;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    background: linear-gradient(to bottom, #fff 60%, #fff, #333 60%, #333);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-repeat: no-repeat;
    transition: background 0.2s ease-out;
    white-space: nowrap;
}

.serviceCard.night .title span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background: #e91e63;
    bottom: 9px;
    transition: all 0.2s ease-out;
}

.serviceCard.night .title h2:hover {
    background-position: 0 9px;
}

.serviceCard.night .title span:hover:before {
    transform: translateY(10px)
}

.serviceCard.night {
    background: #333;
    background-image: url(images/bgService.png);
    background-size: cover;
}

.serviceCard {
    min-height: 100vh;
    background: #fff;
    padding-top: 3em;
    background-size: cover;
    background-image: url(images/bgService.png);
    background-size: cover;
    padding-bottom: 50px
}

.serviceCard .title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 5em;
}

.serviceCard .contentService {
    display: flex;
    flex-direction: column;
}

.serviceCard .contentService .containerCardBox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.serviceCard .contentService .containerCardBox .conceptionService {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}

.serviceCard .contentService .containerCardBox .developmentService {
    display: grid;
    grid-template-columns: 6fr 2fr;
}

.serviceCard .titleService .title span h2 {
    align-items: flex-start;
}

.serviceCard .title span h2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}


.serviceCard .contentService .containerCardBox .devService {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}

.serviceCard .contentService .devService .textDev {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.serviceCard .contentService .devService .textDev .itemDev {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 6em;
    padding-top: 2em;
}

.serviceCard .contentService .devService .textDev .itemDev .devItem1 ion-icon {
    position: relative;
    top: 7px;
    right: 4px;
    font-size: 1.5em;
    color: #fc2e73;
}

.serviceCard .contentService .devService .textDev .itemDev .devItem2 ion-icon {
    position: relative;
    top: 7px;
    right: 4px;
    font-size: 1.5em;
    color: #fc2e73;
}

.containerCardBox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 100px 0;
    gap: 90px;
    z-index: 1;
}

.containerCardBox .carbx {
    position: relative;
    width: 300px;
    height: 350px;
    background: #ededed;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 4px;
    border-color: var(--clr);
}

.containerCardBox .carbx::before {
    content: '';
    position: absolute;
    inset: -18px 50px;
    border-top: 4px solid var(--clr);
    border-bottom: 4px solid var(--clr);
    z-index: -1;
    transform: skewY(15deg);
    transition: 0.5s ease-in-out;
    border-radius: 20%;
}

.containerCardBox .carbx:hover::before {
    transform: skewY(0deg);
    inset: -15px 45px;
}

.containerCardBox .carbx:hover::after {
    transform: skewY(0deg);
    inset: -10px 40px;
}

.containerCardBox .carbx::after {
    content: '';
    position: absolute;
    inset: 60px -10px;
    border-left: 4px solid var(--clr);
    border-right: 4px solid var(--clr);
    z-index: -1;
    transform: skew(15deg);
    transition: 0.5s ease-in-out;
    border-radius: 15%;

}

.containerCardBox .carbx:hover::after {
    transform: skew(0deg);
    inset: 40px -18px;
}

.containerCardBox .carbx .contentCardBx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6%;
}

.containerCardBox .carbx .contentCardBx .iconCardBx {
    color: var(--clr);
    border-radius: 20px;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 0 4px #ededed, 0 0 0 6px var(--clr);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    background: #ededed;
    transition: 0.5s ease-in-out;
}

.containerCardBox .carbx:hover .contentCardBx .iconCardBx {
    background: var(--clr);
    color: #fff;
    box-shadow: 0 0 0 4px #fff, 0 0 0 300px var(--clr);
}

.containerCardBox .carbx .contentCardBx .textCardBx h3 {
    font-size: 1.5em;
    color: #333;
    font-weight: 500;
    transition: 0.5s ease-in-out;
    padding-bottom: 0.2em;
}

.containerCardBox .carbx:hover .contentCardBx .textCardBx h3 {
    color: #fff;
}

.containerCardBox .carbx .contentCardBx .textCardBx p {
    padding-bottom: 0.2em;
    padding-top: 0.2em;
}

.containerCardBox .carbx:hover .contentCardBx .textCardBx p {
    color: #fff;
}

.containerCardBox .devService .carbx .contentCardBx .textCardBx p {
    padding-bottom: 0.2em;
}

.containerCardBox .carbx .contentCardBx .textCardBx a {
    position: relative;
    background: var(--clr);
    color: #ededed;
    padding: 8px 15px;
    display: inline-block;
    text-decoration: none;
    border-radius: 20px;
    font-size: 3em;
    margin-top: 10px;
    transition: 0.5s ease-in-out;
    pointer-events: none;
}

.containerCardBox .carbx:hover .contentCardBx .textCardBx a {
    background: #fff;
    color: var(--clr);
}

.containerCardBox .carbx {
    position: relative;
    width: 300px;
    height: 350px;
    background: #ededed;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 4px;
    border-color: var(--clr);
}

.containerCardBox .carbx::before {
    content: '';
    position: absolute;
    inset: -18px 50px;
    border-top: 4px solid var(--clr);
    border-bottom: 4px solid var(--clr);
    z-index: -1;
    transform: skewY(15deg);
    transition: 0.5s ease-in-out;
    border-radius: 20%;
}

.containerCardBox .carbx:hover::before {
    transform: skewY(0deg);
    inset: -15px 45px;
}

.containerCardBox .carbx:hover::after {
    transform: skewY(0deg);
    inset: -10px 40px;
}

.containerCardBox .carbx::after {
    content: '';
    position: absolute;
    inset: 60px -10px;
    border-left: 4px solid var(--clr);
    border-right: 4px solid var(--clr);
    z-index: -1;
    transform: skew(15deg);
    transition: 0.5s ease-in-out;
    border-radius: 15%;
}

.containerCardBox .carbx:hover::after {
    transform: skew(0deg);
    inset: 40px -18px;
}

.containerCardBox .carbx .contentCardBx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6%;
}

.containerCardBox .carbx .contentCardBx .iconCardBx {
    color: var(--clr);
    border-radius: 20px;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 0 4px #ededed, 0 0 0 6px var(--clr);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    background: #ededed;
    transition: 0.5s ease-in-out;
}

.containerCardBox .carbx:hover .contentCardBx .iconCardBx {
    background: var(--clr);
    color: #fff;
    box-shadow: 0 0 0 4px #fff, 0 0 0 300px var(--clr);
}

.containerCardBox .carbx .contentCardBx .textCardBx h3 {
    font-size: 1.5em;
    color: #333;
    font-weight: 500;
    transition: 0.5s ease-in-out;
    padding-bottom: 0.2em;
}

.containerCardBox .carbx:hover .contentCardBx .textCardBx h3 {
    color: #fff;
}

.containerCardBox .carbx .contentCardBx .textCardBx p {
    padding-bottom: 0.2em;
    padding-top: 0.2em;
}

.containerCardBox .carbx:hover .contentCardBx .textCardBx p {
    color: #fff;
}

.containerCardBox .devService .carbx .contentCardBx .textCardBx p {
    padding-bottom: 0.2em;
}

.containerCardBox .carbx .contentCardBx .textCardBx a {
    position: relative;
    background: var(--clr);
    color: #ededed;
    padding: 8px 15px;
    display: inline-block;
    text-decoration: none;
    border-radius: 20px;
    font-size: 3em;
    margin-top: 10px;
    transition: 0.5s ease-in-out;
    pointer-events: none;
}

.containerCardBox .carbx:hover .contentCardBx .textCardBx a {
    background: #fff;
    color: var(--clr);
}


.serviceCard .contentService .textConception .textConceptionContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.serviceCard .contentService .textConception .textConceptionContainer .itemConception {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 6em;
    padding-top: 2em;
    padding-right: 5em;
}

.serviceCard .contentService .textConception .textConceptionContainer .itemConception .item1 ion-icon {
    position: relative;
    top: 7px;
    right: 4px;
    font-size: 1.5em;
    color: #fc2e73;
}

.serviceCard .contentService .textConception .textConceptionContainer .itemConception .item2 ion-icon {
    position: relative;
    top: 7px;
    right: 4px;
    font-size: 1.5em;
    color: #fc2e73;
}

.serviceCard.night .contentService .textDev {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.serviceCard.night .contentService .textConception .textConceptionContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.serviceCard.night .contentService .textConception .textConceptionContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.serviceCard.night .contentService .containerCardBox .carbx {
    background: #2e2e2e;
}

.serviceCard.night .contentService .containerCardBox .carbx .contentCardBx .iconCardBx {
    color: var(--clr);
    box-shadow: 0 0 0 4px #333, 0 0 0 6px var(--clr);
    background: #333;
}

.serviceCard.night .contentService .containerCardBox .carbx:hover .contentCardBx .iconCardBx {
    background: var(--clr);
    color: #333;
    box-shadow: 0 0 0 4px #333, 0 0 0 300px var(--clr);
}

.serviceCard.night .contentService .containerCardBox .carbx .contentCardBx .textCardBx h3 {
    color: #fff;
}

.serviceCard.night .contentService .containerCardBox .carbx:hover .contentCardBx .textCardBx h3 {
    color: #333;
}

.serviceCard.night .contentService .containerCardBox .carbx .contentCardBx .textCardBx p {
    color: #bbafaf;
    transition: 0.5s ease-in-out;
}

.serviceCard.night .contentService .containerCardBox .carbx:hover .contentCardBx .textCardBx p {
    color: #333;
}

.serviceCard.night .contentService .containerCardBox .carbx .contentCardBx .textCardBx a {
    background: var(--clr);
    color: #333;
}

.serviceCard.night .contentService .containerCardBox .carbx:hover .contentCardBx .textCardBx a {
    background: #333;
    color: var(--clr);
}


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

    .serviceCard .contentService .containerCardBox,
    .serviceCard .contentService .containerCardBox .conceptionService,
    .serviceCard .contentService .containerCardBox .devService,
    .serviceCard .contentService .textConception .textConceptionContainer,
    .serviceCard .contentService .devService .textDev .itemDev {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .serviceCard .contentService .containerCardBox .devService {
        flex-direction: column-reverse;
    }

    .serviceCard .contentService .containerCardBox .cardbx {
        order: -1;
    }
}


@media (max-width: 480px) {

    .serviceCard.night {
        background: #333;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 562px;
    }

    .serviceCard {
        min-height: 100vh;
        background: #fff;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 562px;
        margin-bottom: -50px;
    }

    .conceptionService {
        margin-top: -6em;
        margin-bottom: -2.2em;
    }

    .serviceCard.night .title h2 {
        text-transform: uppercase;
        cursor: context-menu;
        position: relative;
        display: inline-block;
        font-size: 2.2rem;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-repeat: no-repeat;
        transition: background 0.2s ease-out;
        white-space: nowrap;
    }

    .serviceCard.night .title span:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 12px;
        background: #e91e63;
        bottom: 8px;
        transition: all 0.2s ease-out;
    }

    .serviceCard.night .title h2:hover {
        background-position: 0 12px;
    }

    .serviceCard.night .title span:hover:before {
        transform: translateY(11px)
    }

    .serviceCard .title {
        padding-left: 7em;
    }

    .containerCardBox {
        transform: scale(0.8);
        padding: 0 !important;
    }

    .serviceCard .contentService .containerCardBox .conceptionService .textConception {
        padding-right: 0 !important;
    }

    .serviceCard .contentService .containerCardBox .conceptionService .textConception .textConceptionContainer {
        padding-top: 5em;
        text-align: left;
        font-size: 1.2em;
    }

    .serviceCard .contentService .containerCardBox .conceptionService .textConception .textConceptionContainer .itemConception {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: start;
        padding-left: 20%;
    }


    .serviceCard .contentService .containerCardBox .devService {
        margin-top: -5em;
    }

    .serviceCard .contentService .devService .textDev {
        padding-left: 0 !important;
        font-size: 1.2em;
        text-align: left;
        margin-top: 4em;
    }

    .serviceCard .contentService .devService .textDev .itemDev {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: start;
        padding-left: 5%;
    }
}

@media (min-width: 1920px) {
    .serviceCard .title {
        padding-left: 15em;
        transform: scale(1.2);
    }

    .serviceCard.night {
        background: #333;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 1900px;
    }

    .serviceCard {
        min-height: 100vh;
        background: #fff;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 1900px;
    }

    .serviceCard .contentService .containerCardBox {
        margin-right: 10em;
    }
}

@media (min-width: 2300px) {
    .serviceCard .title {
        padding-left: 20em;
        transform: scale(1.2);
    }

    .containerCardBox {
        transform: scale(1.3);
    }

    .serviceCard .contentService .containerCardBox .conceptionService {
        padding-top: 4.5em;
        padding-left: 10em;
    }

    .serviceCard .contentService .textConception .textConceptionContainer {
        width: 70%;
        font-size: 1.1em;
    }

    .serviceCard .contentService .devService .textDev {
        width: 70%;
        font-size: 1.1em;
        margin-left: 250px;
    }

    .serviceCard .contentService .containerCardBox .devService {
        padding-top: 5em;
        padding-right: 10em;
    }

    .serviceCard {
        padding-bottom: 5em;
    }

    .serviceCard.night {
        background: #333;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 2200px;
    }

    .serviceCard {
        min-height: 100vh;
        background: #fff;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 2200px;
    }
}


/*/--------------------------------------------/
****************** Skills *********************
/-------------------------------------------*/
.skills.night {
    background: #333;
    background-image: url(images/bgSkills.png);
    background-size: cover;
}

.skills.night .title h2 {
    text-transform: uppercase;
    cursor: context-menu;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    background: linear-gradient(to bottom, #fff 60%, #fff, #333 60%, #333);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-repeat: no-repeat;
    transition: background 0.2s ease-out;
    white-space: nowrap;
}

.skills.night .title span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background: #e91e63;
    bottom: 9px;
    transition: all 0.2s ease-out;
}

.skills.night .title h2:hover {
    background-position: 0 9px;
}

.skills.night .title span:hover:before {
    transform: translateY(10px)
}

.skills {
    height: auto;
    background: #fff;
    padding-top: 2em;
    background-image: url(images/bgSkills.png);
    background-size: cover;
    z-index: 30;
    overflow: hidden;
}

.skills .title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 5em;
}

.inlineSkills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-left: 200px;
    column-gap: 50px;
}

.card {
    position: relative;
    margin-right: 70px;
    margin-top: 5em;
    width: 230px;
    height: 230px;
    border-radius: 20px;
    display: flex;
    flex-shrink: 1;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.card:hover {
    width: 600px;
    transition-delay: 0.5s;
}

.card .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card .circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #191919;
    border: 8px solid var(--clr);
    filter: drop-shadow(0 0 8px var(--clr)) drop-shadow(0 0 8px var(--clr));
    transition: 0.5s, background 0.5s;
    transition-delay: 0.75s, 1s;
}

.card:hover .circle::before {
    transition-delay: 0.5s;
    width: 70%;
    height: 70%;
    border-radius: 20px;
    background: var(--clr);
}

.card .circle .logoDocker {
    position: relative;
    margin-right: 20%;
    bottom: 14%;
    width: 120px;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.card:hover .circle .logoDocker {
    transform: scale(0);
    transition-delay: 0s;
}

.card .dockerImg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(315deg);
    height: 250px;
    transition: 0.5s ease-in-out;
}

.card:hover .dockerImg {
    transition-delay: 0.75s;
    top: 25%;
    left: 76%;
    height: 200px;
    transform: translate(-50%, -50%) scale(1) rotate(15deg);
}

.card .techCardContent {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 50%;
    padding-left: 2em;
    padding-bottom: 6em;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
}

.card:hover .techCardContent {
    transition-delay: 0.75s;
    opacity: 1;
    visibility: visible;
    left: -10px;
    margin-top: 3em;
}

.card .techCardContent h2 {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 2.5em;
}

.card .techCardContent p {
    color: #fff;
    font-weight: 500;
}

.card .techCardContent h2:before {
    content: '';
    position: absolute;
    left: -5px;
    width: 55px;
    height: 2.5px;
    background: #e91e63;
}

@media screen and (max-width: 768px) {
    .skills .title {
        padding-left: 5em;
    }

    .inlineSkills {
        margin-left: 200px;
    }
}

@media screen and (max-width: 1080px) {
    .skills .title {
        padding-left: 5em;
    }

    .inlineSkills {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-left: 200px;
        column-gap: 50px;
    }
}

@media screen and (max-width: 767px) {
    .skills {
        overflow: hidden;
    }

    .skills .title {
        padding-left: 2em;
        text-align: center;
    }

    .inlineSkills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
        gap: 1em;
    }

    .card {
        width: calc(50% - 0.5em);
        margin: 1em 0.25em;
    }

    .card:hover {
        width: calc(100% - 1em);
    }

    .card .circle::before {
        width: 70%;
        height: 70%;
    }

    .card .circle .logoDocker {
        margin-right: 10%;
    }

    .card .dockerImg {
        top: 30%;
        left: 50%;
        height: 150px;
    }

    .card .techCardContent {
        width: 100%;
        padding-left: 0.5em;
        padding-bottom: 3em;
    }

    .card .techCardContent h2 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 480px) {
    .skills.night {
        background: #333;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 705px;
    }

    .skills {
        min-height: 100vh;
        background: #fff;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 705px;
    }

    .skills .title {
        padding-left: 3.5em;
    }


    .skills.night .title h2 {
        text-transform: uppercase;
        cursor: context-menu;
        position: relative;
        display: inline-block;
        font-size: 2.2rem;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-repeat: no-repeat;
        transition: background 0.2s ease-out;
        white-space: nowrap;
    }

    .skills.night .title span:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 12px;
        background: #e91e63;
        bottom: 8px;
        transition: all 0.2s ease-out;
    }

    .skills.night .title h2:hover {
        background-position: 0 12px;
    }

    .skills.night .title span:hover:before {
        transform: translateY(11px)
    }


    .skills {
        overflow: hidden;
    }

    .inlineSkills {
        overflow: hidden;
        padding-top: 2em;
    }

    .card {
        width: 100%;
    }

    .card:hover {
        width: 100%;
    }

    .card .circle {
        width: 60%;
        margin-left: 25%;
    }

    .card .circle .logoDocker {
        margin-right: 22%;
        margin-bottom: 0.3em;
    }

    .card:hover {
        transition-delay: 0.5s;
        overflow: visible;
    }

    .card:hover .circle::before {
        transition-delay: 0.5s;
        width: 15em;
        margin-left: -2.7em;
        border-radius: 20px;
        background: var(--clr);
    }

    .card .techCardContent {
        width: 80%;
        padding-bottom: 6.5em;
        padding-left: 3em;
    }


    .card:hover .dockerImg {
        transition-delay: 0.75s;
        top: 25%;
        left: 76%;
        height: 65%;
        transform: translate(-50%, -50%) scale(1) rotate(15deg);
    }

    .card:hover #logoDocker {
        width: 50%;
        height: 50%;
    }

    .card #textDocker {
        width: 80%;
        padding-bottom: 5em;
        padding-left: 3em;
    }
}

@media (min-width: 1915px) {
    .skills .title {
        padding-left: 15em;
        transform: scale(1.2);
    }

    .skills.night {
        background: #333;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 1450px;
    }

    .skills {
        min-height: 100vh;
        background: #fff;
        background-size: cover;
        background-image: url(images/bgService.png);
        background-size: 100% 1450px;
    }
}

@media (min-width: 2300px) {
    .skills.night {
        background-size: 100% 1380px;
    }

    .skills {
        background-size: 100% 1380px;
    }

    .skills .title {
        padding-left: 20em;
        transform: scale(1.2);
    }

    .inlineSkills {
        margin-left: 350px;
    }
}



/*/--------------------------------------------/
****************** Contact *********************
/--------------------------------------------*/

.contactForm.night {
    background: #333;
    background-image: url(images/bgProfil.png);
    background-size: cover;
    position: relative;
    z-index: 1;
}

.contactForm.night .title h2 {
    text-transform: uppercase;
    cursor: context-menu;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    background: linear-gradient(to bottom, #fff 60%, #fff, #333 60%, #333);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-repeat: no-repeat;
    transition: background 0.2s ease-out;
    white-space: nowrap;
}

.contactForm.night .title span::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background: #e91e63;
    bottom: 9px;
    transition: all 0.2s ease-out;
}

.contactForm.night .title h2:hover {
    background-position: 0 9px;
}

.contactForm.night .title span:hover:before {
    transform: translateY(10px)
}

.contactForm.night .title p {
    color: #f2ebeb;
}

.contactForm.night .containerForm .container i {
    position: absolute;
    inset: 0;
    border: 2px solid #fff;
    transition: 0.5s;
    z-index: 30;
}

.contactForm.night .container:hover i {
    border: 6px solid var(--clr);
    filter: drop-shadow(0 0 20px var(--clr));
}

.contactForm.night .container .form h2 {
    font-size: 2em;
    color: #fff;
}

.contactForm.night .container .form .inputBox input {
    border: 2px solid #fff;
    color: #fff;
    z-index: 50;
}

.contactForm.night .container .form .inputBox input::placeholder,
.contactForm.night .container .form .inputBox textarea::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.contactForm.night .container .form .inputBox textarea {
    position: relative;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 40px;
    font-size: 1em;
    color: #fff;
    box-shadow: none;
    outline: none;
    z-index: 50;
}

.contactForm.night .container .form .inputBox input[type="submit"] {
    background: linear-gradient(45deg, #ff357a, #fff172);
    width: 30%;
    margin-left: 65%;
    border: none;
    cursor: pointer;
    font-size: 1em;
    color: #333;
    z-index: 50;
}

.contactForm.night .container .form .output_message {
    color: #fff
}

.contactForm .title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 5em;
    padding-top: 3em;
    padding-bottom: 3em;
}

.contactForm .title p {
    padding-top: 1.2em;
}

.contactForm {
    min-height: 100vh;
    background-image: url(images/bgProfil.png);
    background-size: cover;
    overflow: hidden;
    padding-bottom: 3em;
    position: relative;
    z-index: 5;
}

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

.contactForm .container {
    position: relative;
    width: 650px;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.contactForm .container i {
    position: absolute;
    inset: 0;
    border: 2px solid #333;
    transition: 0.5s;
}

.contactForm .container i:nth-child(1) {
    border-radius: 70% 30% 63% 37% / 42% 63% 37% 58%;
    animation: animateCircle 6s linear infinite;
}

.contactForm .container i:nth-child(2) {
    border-radius: 51% 49% 37% 63% / 52% 36% 64% 48%;
    animation: animateCircle 4s linear infinite;
}

.contactForm .container i:nth-child(3) {
    border-radius: 41% 59% 39% 61% / 40% 63% 37% 60%;
    animation: animateCircle 9s reverse infinite;
}

@keyframes animateCircle {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 360deg;
    }
}

.contactForm .container:hover i {
    border: 6px solid var(--clr);
    filter: drop-shadow(0 0 20px var(--clr));
}

.contactForm .container .form {
    position: absolute;
    width: 450px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.contactForm .container .form h2 {
    font-size: 2em;
    color: #333;
}

.contactForm .container .form .inputBox {
    position: relative;
    width: 100%;
}

.contactForm .container .form .inputBox input {
    position: relative;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 40px;
    font-size: 1em;
    color: #333;
    box-shadow: none;
    outline: none;
}

.contactForm .container .form .inputBox textarea {
    position: relative;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 40px;
    font-size: 1em;
    color: #333;
    box-shadow: none;
    outline: none;
}

.contactForm .container .form .inputBox textarea::-webkit-scrollbar {
    width: 5px;
}

.contactForm .container .form .inputBox input::placeholder,
.contactForm .container .form .inputBox textarea::placeholder {
    color: rgba(24, 23, 23, 0.75);
}

.contactForm .container .form .inputBox input[type="submit"] {
    background: linear-gradient(45deg, #ff357a, #fff172);
    width: 30%;
    margin-left: 65%;
    border: none;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
}

textarea:invalid {
    border: 2px dashed red;
}

.container .form .links {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.container .form .links a {
    color: #37be3c;
    text-decoration: none;
}

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

    .contactForm.night .title h2 {
        text-transform: uppercase;
        cursor: context-menu;
        position: relative;
        display: inline-block;
        font-size: 2.2rem;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-repeat: no-repeat;
        transition: background 0.2s ease-out;
        white-space: nowrap;
    }

    .contactForm.night .title span:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 12px;
        background: #e91e63;
        bottom: 8px;
        transition: all 0.2s ease-out;
    }

    .contactForm.night .title h2:hover {
        background-position: 0 12px;
    }

    .contactForm.night .title span:hover:before {
        transform: translateY(11px)
    }

    .contactForm .title {
        margin-bottom: -5em;
    }

    .skillsContainer {
        margin-bottom: -50px;
    }

    .contactForm .title p {
        font-size: 1em;
        text-align: left;
        margin-left: -3em;
        width: 100%;
    }

    .containerForm {
        transform: scale(0.6);
    }

    .containerForm .container i {
        transform: scale(1.55);
        height: 53%;
    }

    .contactForm .container .form .inputBox #contact-submit {
        margin-left: 40%;
    }

    .containerForm .container .form {
        width: 100%;
        padding-bottom: 16em;
        margin-bottom: 0;
    }
}

@media (min-width: 1920px) {
    .contactForm .title {
        padding-left: 15em;
        padding-top: 6em;
        transform: scale(1.2);
    }

    @media (min-width: 2300px) {
        .contactForm .title {
            padding-left: 20em;
            transform: scale(1.2);
        }
    }
}


/*/--------------------------------------------/
****************** Footer *********************
/--------------------------------------------*/

.containerFooter.night {
    background: #333;
    position: relative;
}

.containerFooter.night .footer {
    z-index: 1;
    --footer-background: #fff;
    display: grid;
    position: relative;
    grid-area: footer;
    min-height: 12rem;
    background: #fff;
}

.containerFooter.night .footer .footerSection {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.containerFooter.night .footer .footerSection .container h2 {
    color: #333;
}

.containerFooter.night .infoPerso .info li span:nth-child(1) {
    color: #333;
    font-size: 20px;
    margin-right: 10px;
    text-decoration: none;
}

.containerFooter {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-areas: "main" "footer";
    overflow-x: hidden;
    background: #fff;
    min-height: 60vh;
    margin-top: -100px;
    position: relative;
}

.containerFooter .footer {
    z-index: 1;
    --footer-background: #333;
    display: grid;
    position: relative;
    grid-area: footer;
    min-height: 12rem;
    background: #333;
}

.containerFooter .footer .bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1rem;
    background: var(--footer-background);
    filter: url("#blob");
}

.containerFooter .footer .bubbles .bubble {
    position: absolute;
    left: var(--position, 50%);
    background: var(--footer-background);
    border-radius: 100%;
    -webkit-animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
    animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
    transform: translate(-50%, 100%);
}

.containerFooter .footer .footerSection {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #333;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.containerFooter .footer .footerSection .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

.containerFooter .footer .footerSection .container .section {
    margin-right: 30px;
}

.containerFooter .footer .footerSection .container h2 {
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

.containerFooter .footer .footerSection .container h2:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #e91e63;
}

.containerFooter .footer .footerSection p {
    color: #999;
}

.sci {
    margin-top: 20px;
    display: flex;
}

.sci li {
    list-style: none;
}

.sci li a {
    display: inline-block;
    width: 54px;
    height: 54px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
}

.sci li a:hover {
    background: #e91e63;
}

.sci li a img {
    transform: scale(0.42);
}

.links {
    position: relative;
    width: 25%;
}

.links ul li {
    list-style: none;
}

.links ul li a {
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.links ul li a:hover {
    color: #fff;
}

.infoPerso {
    width: calc(35% - 60px);
    margin-right: 0 !important;
}

.infoPerso .info li {
    display: flex;
    margin-bottom: 16px;
}

.infoPerso .info li span:nth-child(1) {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.infoPerso .info li span {
    color: #999;
}

.infoPerso .info li a {
    color: #999;
    text-decoration: none;
}

.infoPerso .info li a:hover {
    color: #fff;
}

.containerFooter.night .infoPerso li a:hover {
    color: #333;
    text-decoration: none;
}

@media (max-width: 990px) {
    footer {
        padding: 40px;
    }

    footer .container {
        flex-direction: column;
    }

    footer .container .section {
        margin-right: 0;
        margin-bottom: 40px;
    }

    footer .container .section.about,
    .links,
    .infoPerso {
        width: 100%;
    }
}

/* Styles pour mobile phone */
@media screen and (max-width: 480px) {
    .containerFooter {
        overflow: visible;
    }

    .containerFooter.night {
        position: relative;
        z-index: 5;
    }

    .containerFooter .footer .footerSection .container {
        width: 18em;
    }

    .containerFooter .footer .footerSection .container h2 {
        padding-top: 1em;
    }

    .containerFooter .footer .footerSection {
        padding: 0 0 0 5em;
    }

    .containerFooter .footer .footerSection p {
        width: 15em;
    }

    .containerFooter .footer .bubbles {
        width: 73%;
        margin-left: 2.5em;
    }

    .containerFooter.night .footer .footerSection .container {
        width: 18em;
    }

    .containerFooter.night .footer .footerSection .container h2 {
        padding-top: 1em;
    }

    .containerFooter.night .footer .footerSection {
        padding: 0 0 0 5em;
    }

    .containerFooter.night .footer .footerSection p {
        width: 15em;
    }

    .containerFooter.night .footer .bubbles {
        margin-left: 1em;
    }
}

@media (min-width: 1920px) {
    .containerFooter {
        background: none;
        min-height: 60vh;
        margin-top: -300px;
        position: relative;
    }

    .containerFooter.night {
        min-height: 60vh;
        margin-top: -300px;
        position: relative;
    }
}

@media (min-width: 2300px) {
    .containerFooter {
        background: none;
        min-height: 60vh;
        margin-top: -750px;
    }

    .containerFooter.night {
        background: none;
        min-height: 60vh;
        margin-top: -750px;
        z-index: 5;
    }

    .contactForm .container {
        transform: scale(1.2);
    }
}

@-webkit-keyframes bubble-size {

    0%,
    75% {
        width: var(--size, 4rem);
        height: var(--size, 4rem);
    }

    100% {
        width: 0rem;
        height: 0rem;
    }
}

@keyframes bubble-size {

    0%,
    75% {
        width: var(--size, 4rem);
        height: var(--size, 4rem);
    }

    100% {
        width: 0rem;
        height: 0rem;
    }
}

@-webkit-keyframes bubble-move {
    0% {
        bottom: -4rem;
    }

    100% {
        bottom: var(--distance, 10rem);
    }
}

@keyframes bubble-move {
    0% {
        bottom: -4rem;
    }

    100% {
        bottom: var(--distance, 10rem);
    }
}


/*---------------------------------------------/
*************** Projet Section ******************
/-------------------------------------------*/
.projetSection.night .title h2 {
    text-transform: uppercase;
    cursor: context-menu;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    background: linear-gradient(to bottom, #fff 60%, #fff, #333 60%, #333);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-repeat: no-repeat;
    transition: background 0.2s ease-out;
    white-space: nowrap;
    /* margin-left: 30px !important; */
}

.projetSection.night .title span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background: #e91e63;
    bottom: 9px;
    transition: all 0.2s ease-out;
}

.projetSection.night .title h2:hover {
    background-position: 0 9px;
}

.projetSection.night .title span:hover:before {
    transform: translateY(10px)
}

.projetSection.night {
    background: #333;
    background-image: url(images/bgProfil.png);
    background-size: cover;
    color: #fff;
}

.projetSection {
    min-height: 100vh;
    background: #fff;
    padding-top: 3em;
    background-size: cover;
    background-image: url(images/bgProfil.png);
    background-size: cover;
}

.projetSection .title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 5em;
}

.textIntroProjet {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 5em;
    margin-bottom: 2em;
}


.carousel-pro-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 3em;
}

.carousel-pro-track {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
}

.carousel-pro-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 40px;
    min-height: 420px;
}

.carousel-pro-content {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
}

.carousel-pro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 20px 0 0 20px;
    min-height: 100%;
}

.carousel-pro-text {
    flex: 1.2;
    padding: 40px;
    color: #333;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-pro-text h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.carousel-pro-text p {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
}

.carousel-pro-techstack {
    background: rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.carousel-pro-techstack u {
    font-weight: 600;
}

.tech-row {
    margin-bottom: 8px;
    white-space: normal;
}

.carousel-pro-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 15px 20px;
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.carousel-pro-btn:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-pro-btn-prev {
    left: 10px;
}

.carousel-pro-btn-next {
    right: 10px;
}

.tech-item {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
    margin-top: 5px;
}

.tech-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.carousel-pro-logo {
    margin-bottom: 20px;
    max-width: 220px;
}

.carousel-pro-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

.carousel-pro-logo {
    margin: 0 auto 20px auto;
    text-align: center;
}

.carousel-pro-duration {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #333;
    opacity: 0.85;
}

.duration-icon {
    width: 25px;
    height: 25px;
    margin-right: 8px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.carousel-pro-link {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #333;
    opacity: 0.9;
}

.carousel-pro-link a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.carousel-pro-link a:hover {
    color: #005bb5;
    text-decoration: underline;
}


@media (max-width: 480px) {
    .projetSection .title  {
        padding-left: 7em;
    }

    .textIntroProjet {
        display: flex;
        justify-content: center;
        padding: 0 25px;
    }

    .textIntroProjet p {
        text-align: left;
        max-width: 100%;
    }

    .projetSection.night .title h2 {
        text-transform: uppercase;
        cursor: context-menu;
        position: relative;
        display: inline-block;
        font-size: 2.2rem;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-repeat: no-repeat;
        transition: background 0.2s ease-out;
        white-space: nowrap;
    }

    .projetSection.night .title span:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 12px;
        background: #e91e63;
        bottom: 8px;
        transition: all 0.2s ease-out;
    }

    .projetSection.night .title h2:hover {
        background-position: 0 12px;
    }

    .projetSection.night .title span:hover:before {
        transform: translateY(11px)
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 7px;
    }

    .carousel-pro-container {
        padding: 0 10px;
    }

    .carousel-pro-slide {
        padding: 20px 10px;
        min-height: 100vh;
        box-sizing: border-box;
    }

    .carousel-pro-content {
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
        border-radius: 20px;
    }

    .carousel-pro-image,
    .carousel-pro-text {
        border-radius: 20px 20px 0 0;
    }

    .carousel-pro-image {
        height: 200px;
        min-height: unset;
    }

    .carousel-pro-text {
        border-radius: 0 0 20px 20px;
        padding: 20px;
        max-height: none;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .carousel-pro-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .carousel-pro-techstack {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .tech-item {
        margin-right: 8px;
        margin-top: 3px;
    }

    .tech-icon {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

    .carousel-pro-duration,
    .carousel-pro-link {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .carousel-pro-btn {
        font-size: 1.5rem;
        padding: 10px 14px;
    }
}


@media (min-width: 1920px) {
    .projetSection .title {
        padding-left: 14em;
    }
    
    .carousel-pro-text p {
        font-size: 1.2rem;
        line-height: 1.8;
    }

    .carousel-pro-techstack {
        font-size: 1rem;
    }

    .carousel-pro-duration,
    .carousel-pro-link {
        font-size: 1rem;
    }

    .carousel-pro-text h2 {
        font-size: 2.4rem;
    }

    .tech-icon {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
}



@media (min-width: 2300px) {
    .projetSection .title {
        padding-left: 20em;
        transform: scale(1.2);
    }

    .projetSection .textIntroProjet {
        padding-left: 8em;
        font-size: 1.4em;
    }
}



/* MENU BURGER  */
@media (max-width: 480px) {
    .menu a {
        margin: -5px 0;
    }
}