<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&amp;family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&amp;display=swap');  
section{
    position: relative;
}
/* --------------------------------------- V-ROLL CONTAINER --------------------------------------- */
.v-roll-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.v-roll-content-title{
    color:white;
    text-align: center;
    font-family: 'Poppins',sans-serif;
    font-size: 66.392px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.328px;
}
/* --------------------------------------- V-ROLL CONTENT WRAPPER --------------------------------------- */
.v-roll-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 var(--container-space);
    position: relative;
}
/* -------------------------------------------- content text -------------------------------------------- */
.v-roll-content{
    width: 100%;
    height: 75px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.v-roll-sub-text {
    color: white;
    text-align: center;
    font-family: 'Poppins',sans-serif;
    font-style: normal;   
    font-size: 54.097px;
    font-weight: 700;
    line-height: normal;
    /*letter-spacing: -4.328px;*/
}
.v-roll-text-track{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.v-roll-text{
    color: white;
    text-align: center;
    font-family: 'Poppins',sans-serif;
    font-style: normal;
    /* margin: 5px auto ; */
    padding: 4px 20px 4px 0;
    font-size: 54.097px;
    font-weight: 700;
    line-height: normal;
    /*letter-spacing: -4.328px;*/
}
/* -------------------------------------------- KEYFRAMES -------------------------------------------- */
@keyframes downup {
    0%{
        transform: translateY(0);
    }
    50% {
        transform: translateY(50%)
    }
    100% {
        transform: translateY(0)
    }

}

/* -------------------------------------------- RESPONSIVE -------------------------------------------- */

@media (min-width: 1441px) {
}
@media (min-width: 1800px) {
    .v-roll-container{
        justify-content: center;
    }

}
@media (max-width: 1280px) {}

@media (max-width: 1200px) {}

/* IPAD PRO */
@media (max-width: 1024px) {
    .v-roll-content-wrapper{
        margin: unset;
    }
}

@media (max-width: 992px) {
        
}

@media (max-width:820px){
    .v-roll-content-title{
        font-size: 50px;
    }

    .v-roll-sub-text{
        font-size: 26px;
        width: 50%;

    }

    .v-roll-text{
        font-size: 36px;
    }

    
}

/* IPAD */
@media (max-width: 768px) {
    .v-roll-text-wrapper {
        width: 50%;
        overflow: hidden;
        display: flex;
        justify-content: flex-start;
    }
    .v-roll-text{
        font-size: 27px;        
    
        padding: 0;
    }

    .v-roll-sub-text{
        font-size: 23px;
    }

    .v-roll-content{
        height: 46px;
    }
}

/* MOBILE */
@media (max-width: 576px) {  
    .v-roll-content{
       flex-direction: column;
       gap: 0;
       height: 100px;
    }  
    .v-roll-content-title{
        font-size: 33.392px;
    }
    .v-roll-sub-text, .v-roll-text {
        font-size: 31.097px;
        letter-spacing: -1.328px;
    }
    .v-roll-text-wrapper{
        justify-content: center;
        width: 100%;
    }
    .v-roll-text-track{
        align-items: center;
    }

    .v-roll-sub-text{
        width: 100%;
    }
}

@media (max-width: 376px) {    

}

/* border for wireframe */

/* .v-roll-container, .v-roll-text-wrapper{
    border: 0.5px dashed black;
} */
</pre></body></html>