.bg-enter {
    background: url(../img/entervisual.jpg) center/cover no-repeat;
}
.entervisual {
    max-width: 640px;
    padding: 1rem;
    margin: 0 auto;
}
.entervisual img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.entervisual + ul {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 5rem;
}
.entervisual + ul li {
    width: 8rem;
}
.entervisual + ul li .btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: rgba(231, 123, 140, .5);
    overflow:hidden;
    border-radius: 0.5rem;
}
.entervisual + ul li .btn a {
    color: white;
    text-decoration: none;
}
.entervisual + ul li .btn a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 500%;
    content: "";
    transition: all 0.5s ease-in-out;
    transform: translateX(-110%) translateY(-10%) rotate(45deg);
    background: #ff8cc7;
    opacity: 0.2;
}
.entervisual + ul li .btn a:hover:before {
    transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

@media screen and (min-width: 769px) {
    .entervisual + ul li {
        font-size: 2rem;
        width: 16rem;
    }
}
