.name {
    font-family: 'Montserrat-Medium';
    font-size: clamp(16px, 2.86vw, 32px);
    color: #929292;
    letter-spacing: 0.12rem;
    opacity: 0;
    transition: opacity 4.25s ease, transform 4.25s ease;
}

.name.show {
    opacity: 1;
}

.title {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 1;
}

.role {
    position: relative;
    display: flex;
    font-size: clamp(56px, 10vw, 112px);
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.plus {
    color: #929292;
}

.dynamic-role-container {
    position: relative;
    display: inline-block;
}

.dynamic-role {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: opacity 0.5s ease;
    white-space: nowrap;
}

.wipe,
.primary-wipe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #00c3ff;
    z-index: 2;
    animation: none;
    pointer-events: none;
}

@keyframes wipe-in-out {
  0% { width: 0%; left: 0%; }
  40% { width: 100%; left: 0%; }
  60% { width: 100%; left: 0%; }
  100% { width: 0%; left: 100%; }
}