.mv {
    width: 100%;
    height: 100lvh;
    overflow: hidden;
}

.mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-overlay {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100lvh;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.mv-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    display: none;
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
}

.mv-text.active {
    display: flex;
    animation: mv-text-slideIn 1s ease forwards;
}

.mv-text.transition-out {
    display: flex;
    animation: mv-text-slideOut .8s ease forwards;
}

.mv-text .larger {
    font-size: 24px;
    font-weight: bold;
}

.mv-scroll {
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    overflow: hidden;
}

.mv-scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
    animation: mv-scroll-text 2.5s ease infinite;
}

.mv-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    animation: mv-arrow 2.5s ease infinite;
}

.mv-arrow::before {
    content: '';
    position: absolute;
    transform: rotate(45deg);
    top: -5px;
    left: calc(50% - 2px);
    height: 40px;
    border-left: 2px solid #fff;
}

@keyframes mv-scroll-text {
    0% { transform: translate(-50%, -50%) scale(.8); opacity: 1; }
    30% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
    60%, 90% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(.8); opacity: 1; }
}

@keyframes mv-arrow {
    0% { transform: translateX(-50%) translateY(-220%) rotate(-45deg); }
    30% { transform: translateX(-50%) translateY(-50%) rotate(-45deg); }
    50%, 100% { transform: translateX(-50%) translateY(120%) rotate(-45deg); }
}

.mv-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-image:nth-child(odd) {
    animation: hero 2.4s cubic-bezier(0,.7,0,1) forwards;
}

.mv-image:nth-child(even) {
    animation: hero-reverse 2.4s cubic-bezier(0,.7,0,1) forwards;
}

.mv-image.active {
    display: block;
}

@keyframes hero {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(3deg); }
}

@keyframes hero-reverse {
    0% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes mv-text-slideIn {
    0% { transform: translateY(-50px) rotate3d(1, 0, 0, 90deg); opacity: 0; }
    100% { transform: translateY(0) rotate3d(1, 0, 0, 0); opacity: 1; }
}

@keyframes mv-text-slideOut {
    0% { transform: translateY(0) rotate3d(1, 0, 0, 0); opacity: 1; }
    100% { transform: translateY(50px) rotate3d(1, 0, 0, -90deg); opacity: 0; }
}

.profile-section {
    position: relative;
    margin: 60px auto;
    width: 80%;
    border: 2px solid #8cc63f;
    border-radius: 20px;
    padding: 20px 40px;
}

.profile-section h2 {
    position: absolute;
    background-color: #ffffff;
    padding: 0 20px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.profile-icon {
    position: relative;
}

.profile-icon img {
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    object-fit: cover;
    transition: .3s;
}

.profile-icon img:hover {
    cursor: none;
    filter: brightness(.33);
}

#profile-icon-cursor {
    pointer-events: none;
    transition: transform .3s;
}

.profile-icon img:hover + #profile-icon-cursor {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: brightness(4);
}

#profile-icon-cursor.large {
    transform: scale(2);
}

.profile-text {
    margin-left: 20px;
}

.profile-text p {
    margin: 5px 0;
}

.profile-hashtag {
    display: inline-block;
    background-color: #e5f5d0;
    line-height: 1.5;
    font-size: 14px;
    padding: 1px 5px;
    border-radius: 5px;
    margin: 3px 5px 3px 0;
}

.profile-hashtag:last-child {
    margin-right: 0;
}

.profile-links {
    margin-top: 10px;
    padding: 10px 0 20px 0;
    border-bottom: 1px solid #8cc63f;
}

.profile-links li {
    display: inline-block;
    margin: 5px 10px 5px 0;
}

.profile-links a {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: #444 !important;
    background-color: #bfe4ff;
    padding: 4px 8px;
    border-radius: 5px;
    transition: .2s;
}

.profile-links a:hover {
    background-color: #8cc63f;
}

@media screen and (max-width: 767px) {
    .profile-section {
        width: 90%;
        margin: 60px auto 0;
        padding: 10px 20px;
    }

    .profile-section .flex {
        flex-direction: column;
    }

    .profile-icon {
        position: relative;
        text-align: center;
        width: 100%;
        margin-top: 20px;
    }

    .profile-icon img {
        width: 40vw;
        height: 40vw;
        border-radius: 50%;
        object-fit: cover;
    }

    .profile-icon img:hover {
        cursor: default;
        filter: brightness(1);
    }

    #profile-icon-cursor {
        display: none;
    }

    .profile-icon img:hover + #profile-icon-cursor {
        display: none;
    }

    .profile-text {
        margin-left: 0;
    }

    .profile-text p {
        margin: 5px 0;
    }
}