.banner_home {
    height: 100vh;
    position: relative;
    overflow: hidden
}

.banner_home>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.content {
    position: absolute;
    top: 44%;
    right: 14%;
    transform: translateY(-50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.content>h1 {
    color: #fff;
    text-align: center;
    font-size: 80px
}

.content>h1>span {
    color: var(--color-active)
}

.content_bottom>p {
    margin-top: 20px;
    font-size: 36px;
    color: #fff
}

.box_icon_banner {
    display: flex;
    gap: 20px;
    margin-top: 20px
}

.absolute {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: blink 3s infinite ease-in-out;
    z-index: 2
}

@keyframes blink {
    0% {
        opacity: .3
    }

    50% {
        opacity: .6
    }

    100% {
        opacity: .3
    }
}

.absolute_2 {
    position: absolute;
    bottom: -40%;
    right: -15%;
    opacity: 0;
    animation: blink 3s infinite ease-in-out;
    z-index: 2
}

.content_bottom {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center
}

.detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 36px
}

.content_bottom .detail>p {
    font-size: 36px
}

.content_bottom .detail>img {
    width: 100%
}

.media_home {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 20;
    width: 160px;
}

.media_controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(243, 244, 246, 1);
}

.play_pause_btn {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.play_pause_btn:hover {
    background-color: #4338ca;
}

.play_pause_btn:active {
    transform: scale(0.95);
}

.time_display {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4b5563;
    padding-right: 0.75rem;
    user-select: none;
}

@media (max-width:575px) {
    .absolute_2 {
        display: none
    }

    .content {
        right: -30px;
        width: 70%;
        top: 60%;
        padding: 0 1.25rem;
        transform: none
    }

    .content>h1 {
        font-size: 48px;
        width: 100%;
        text-align: right;
        margin-right: 50px
    }

    .detail {
        gap: 24px
    }

    .content_bottom .detail>img {
        width: 80%
    }

    .content_bottom .detail>p {
        font-size: 20px
    }

    .banner_home>img {
        width: 190%
    }

    .box_icon_banner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        place-items: center
    }
}