.contactPage {
    padding: 35px 90px;
    box-sizing: border-box;
}

.contactPage h1 {
    color: var(--primary);
    font-size: 90px;

    line-height: 75px;
    margin-block: 50px;
}

.contactPage .left {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 45%;
}

.contactPage .contactElement {
    color: white;
    width: 100%;
    background: var(--primary);
    padding: 40px 22px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    position: relative;
    margin-bottom: 20px;
    clip-path: border-box;
}

.contactPage .contactElement::before {

    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(81deg, transparent 10%, var(--primary));
    z-index: 2;
}

.contactPage .contactElement .mentions {

    height: 158px;
    max-height: 158px;

    object-fit: contain;
    position: absolute;
    left: 0;
    top: -14px;
}

.contactPage .contactElement #mentions2 {

    height: 192px;
    max-height: 200px;
}

.contactPage .contactElement span {
    z-index: 5;
    font-size: 25px;
}

.contactPage .right {
    height: 100%;
    width: 40vw;
    background: var(--primary);
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    animation: appearFromRight 1s ease-in-out;
}

@keyframes appearFromRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}
.contactPage #contactElement1 {
    animation: appearFadeInElement1 4s ease-in-out;
}

@keyframes appearFadeInElement1 {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }
    25% {
        opacity: 0;
        transform: translateX(-20%);
    }
    50% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
.contactPage #contactElement2 {
    animation: appearFadeInElement2 4s ease-in-out;
}

@keyframes appearFadeInElement2 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
        transform: translateX(-20%);
    }
    75% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 1;
    }
}
.contactPage #contactElement3 {
    animation: appearFadeInElement3 4s ease-in-out;
}

@keyframes appearFadeInElement3 {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 0;
        transform: translateX(-20%);
    }

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


.contactPage .right::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    height: 130%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background: white;
    transform: translate(-50%, -12%);
}




/*===================BEFORE=============*/ 