.passions-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-black);
}

.passions-titles {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 500vw;
    height: 100vh;
    display: flex;
    will-change: transform;
}

.passion-title {
    position: relative;
    width: 100vw;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.passion-title h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-size: 6vw;
    font-weight: 500;
    font-style: italic;
    color: var(--color-text);
    will-change: transform;
    text-align: center;
}

.passion-title h3.title-1 {
    color: var(--color-primary);
}

.passion-title h3.title-2 {
    color: var(--color-secondary);
}

.passion-title h3.title-3 {
    color: var(--color-text);
}

.passions-images {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250vw;
    height: 250vh;
    transform-style: preserve-3d;
    perspective: 2000px;
    z-index: -1;
}

.passions-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.passion-card {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 2em;
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
}