.banner-vl {
    background-image:var(--banner-bg-mobile);
    background-size:contain;
    background-repeat: no-repeat;
    aspect-ratio: 375/563;
    width:100%;
    display:flex;
    align-items: center;
    overflow: hidden;
}

.banner-vl .wrapper {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    position: relative;
    width:100%;
    height:100%;
}

.banner-vl .text {
    position:relative;
    z-index:2;
    padding-top:50px;
    background-image:var(--banner-text-bg);
    background-size:contain;
    background-repeat: no-repeat;
    aspect-ratio: 614/561;
    width:95%;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    color: #FFF;
    text-align: center;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-vl .text .welcome {
    margin-top:5px;
    aspect-ratio:452/125;
    width:70%;
}

.banner-vl .text  .up-to {
    aspect-ratio:343/106;
    width:50%;
}

.banner-vl .text  .extra {
    aspect-ratio:163/43;
    width:28%;

}

.banner-vl .text .plus {
    text-shadow: 2px 0 0 #290356;
    font-size: 16px;
    line-height: 25px; /* 156.25% */
}

.banner-vl .text .first-time {
    text-shadow: 2px 0 0 #290356;
    font-size: 10px;
    line-height: 14px; /* 140% */
    padding-bottom:10px;
    padding-top:10px;
}

.banner-vl .char {
    position: absolute;
    z-index:1;
    aspect-ratio: 716/718;
    right:-18%;
    top:40px;
    width:113%;
}

.banner-vl .text .btn {
    position: relative;
    border-radius: 100px;
    background: linear-gradient(99deg, #FFE563 12.07%, #FFD60A 93.97%);
    box-shadow: 0 0 50px 0 #FFD70C;
    display: inline-flex;
    padding: 3% 8%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #4A0791;
    text-align: center;
    font-family: Montserrat;
    font-size: 16.8px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    text-decoration: none;
    white-space: nowrap;    
}

.banner-vl .text .no-purchase {
    color: #FFF;
    text-align: center;
    text-shadow: 0 2px 15px #550202;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.583px; /* 258.333% */
}

@media (min-width:768px) {
    .banner-vl {
        background-image:var(--banner-bg-desktop);
        aspect-ratio: 1440/785;
        overflow: initial;
        align-items:flex-start;
    }
     .banner-vl .wrapper {
        flex-direction: row;
     }
    .banner-vl .char {
        position: relative;
        top:initial;
        right:initial;
        width:50%;
        bottom:initial;
        align-self: flex-end;
        margin-bottom: -25px;
    }
    .banner-vl .text .first-time br {
        display:none;
    }
    .banner-vl .text {
        width:60%;
        align-self: flex-end;
    }
}

@media (min-width:1024px) {

    .banner-vl .text {
        align-self: center;
    }
    
}
@media (min-width:1200px) {
    .banner-vl {
        justify-content: center;
        background-size:cover;
        aspect-ratio: unset;
    }
    .banner-vl .wrapper {
        max-width:1440px;
    }
    .banner-vl .text {
        width:37%;
    }
    .banner-vl .text .plus {
        font-size:32px;
        line-height:1.2em;
    }    
    .banner-vl .text .welcome {
        margin-top:7%;
        width: 74%;
    }

    .banner-vl .text .first-time {
        padding-top: 10px;
        padding-bottom: 24px;
    }
    .banner-vl .text .btn {
        font-size:24px;
        width:339px;
    }
    .banner-vl .text .no-purchase {
        font-size:20px;
    }
}

@media (min-width:1440px) {
    .banner-vl {
        height:848px;
    }

    .banner-vl .text {
        width:40%;
    }      
}