.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: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 0.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 (max-width:575px) {
    .absolute_2 {
        display: none;
    }

    .content {
        right: -25px;
        width: 85%;
        top: 65%;
        padding: 0 1.25rem;
        transform: none;
    }

    .content>h1 {
        font-size: 58px;
        width: 100%;
        text-align: right;
        margin-right: 96px;
    }
    .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;
    }

}
