.mainContent {
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: opacity 2s ease-out;
}
.logoPart {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
div#leadImg { /* x3.7 */
    bottom: 50%;
    left: 50%;
    mask-image: url("images/lead_mask.svg");
    mask-repeat: no-repeat;
    mask-size: 110%;
}
div#xImg {
    bottom: 50%;
    left: 50%;
}
div#recruiterImg { /* x7.4 */
    top: 50%;
    left: 50%;
}

@keyframes leadAnimation {
    0% {
        mask-position: 1105%;
    }
    33% {
        transform: translate(-10%, 50%);
        height: 15vw;
        width: 55.5vw;
        mask-position: 1105%;
        filter: blur(10px);
    }
    62.5% {
        mask-position: 0%;
        filter: blur(0px);
    }
    66% {
        transform: translate(-65%, 50%);
        height: 10vw;
        width: 37vw;
    }
    100% {
        transform: translate(-65%, -15%);
        height: 5vw;
        width: 18.5vw;
    }
}
.animatedLead {
    animation: leadAnimation 2s forwards;
}

@keyframes xAnimation {
    0% {
        transform: translate(-50%, 50%);
        height: 25vw;
        width: 25vw;
        opacity: 0;
        filter: blur(10px);
    }
    33% {
        transform: translate(-50%, 50%);
        height: 15vw;
        width: 15vw;
        opacity: 1;
        filter: blur(0px);
    }
    66% {
        transform: translate(130%, 50%);
        height: 10vw;
        width: 10vw;
    }
    100% {
        transform: translate(130%, -15%);
        height: 5vw;
        width: 5vw;
    }
}
@keyframes XBreathing {
    0% {
        filter: drop-shadow(0 0 0px rgba(11, 138, 216, 1));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(11, 138, 216, 1));
    }
    100% {
        filter: drop-shadow(0 0 0px rgba(11, 138, 216, 1));
    }
}
.animatedX {
    animation: xAnimation 2s forwards, XBreathing 2s infinite 2s;
}

@keyframes recruiterAnimation {
    0% {
        opacity: 0;
    }
    66% {
        transform: translate(-50%, -50%);
        height: 2.5vw;
        width: 18.5vw;
    }
    75% {
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        transform: translate(-50%, 15%);
        height: 5vw;
        width: 37.5vw;
        opacity: 1;
        filter: blur(0px);
    }
}
.animatedRecruiter {
    animation: recruiterAnimation 2s forwards;
}
