html,body {
    -webkit-font-smoothing: antialiased;
}

* {
    margin: 0;
}

.fullscreen {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.eco_row {
    display: inline-flex;
    flex-direction: row;
    animation-name: loop-banner;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 25s
}

.eco_bubble {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0.8vh;
    padding: 2vh 2vh;
    border-radius: 10vh;
    letter-spacing: -0.3px;
    white-space: nowrap;
    background: rgb(52 52 52)
}
.eco_bubble_pic {
    height: 8vh;
    border-radius: 10vh;
}

.eco_bubble_text {
    color: white;
    font-weight: 400;
    font-family: Iter, sans-serif;
    margin: 1vh;
    padding-left: 2vh;
    padding-right: 1vh;
    font-size: 6vh;
}

@keyframes loop-banner {
    from { transform: translate3D(0, 0, 0); }
    to { transform: translate3D(-60%, 0, 0); }
}

.gradient_text {
    background: -webkit-linear-gradient(#FB0965, #F8AB0E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark_bg {
    background: #262626;
}

.bg_red_gradient_1 {
    background: linear-gradient(180deg, #F7A012 0%, #FA2A53 100%);
}

.text_red_gradient_1 {
    background: linear-gradient(270deg, #F7A012 0%, #FA2A53 100%);
    background: -webkit-linear-gradient(270deg, #F7A012 0%, #FA2A53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scr_w_s_logo {
    position: absolute;
    top: 2vh;
    width: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
}


.scr_w_font_large {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 900;
    /* or 100% */
    text-align: center;
    letter-spacing: -0.2px;

    color: #FFFFFF;

    font-size: 6vw;
    line-height: 6vw;
}

.scr_w_font_small {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 4vw;
    margin-top: 5vh;
    text-align: center;
    letter-spacing: -0.2px;
    color: #FFFFFF;
}