/* @import url(https://fonts.googleapis.com/css?family=Rye);

* {
    box-sizing: border-box;
}

body {
    background: #eee;
}

.banner {
    position: absolute;
    left: 50%;

    display: block;
    margin: 100px -200px;
    width: 400px;
    height: 35px;
    border: 1px solid #8a1;
    text-align: center;
    color: #fff;
    background: #9b2;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15) inset,
        0 6px 10px rgba(0, 0, 0, .15);


    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.banner::before,
.banner::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: -70px;
    top: 16px;
    display: block;
    width: 40px;
    height: 0px;
    border: 16px solid #9b2;
    border-right: 20px solid #791;
    border-bottom-color: #94b81e;
    border-left-color: transparent;
    transform: rotate(-5deg);
    box-sizing: initial;
}

.banner::after {
    left: auto;
    right: -70px;
    border-left: 20px solid #791;
    border-right: 30px solid transparent;
    transform: rotate(5deg);
} */



/* //////////////////////////////////////// */

.ribbon {
    padding: 5px 10px;
    height: max-content;
    background: #bd0cb1;
    /* clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%); */
    /* font-family: "font_condensed"; */
    font-family: 'BentonSans';
    text-transform: uppercase;
    color: #dddeda;
    letter-spacing: 0.1em;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    /* max-width: 40vw; */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.subscribeNow {
    letter-spacing: 0px;
    margin-left: 5px;
    color: #e3ff00;
    transition: .2s;
}

.subscribeNow:hover {
    color: #e3ff00;
    text-decoration: none;
    transition: .2s;
    opacity: 0.8;
}


@media (max-width:1000px) {
    .ribbon {
        /* max-width: 60vw; */
        font-size: 12px;
    }
}

@media (max-width:650px) {
    .ribbon {
        /* max-width: 75vw; */
        font-size: 10px;
    }
}

@media (max-width:320px) {
    .ribbon {
        font-size: 8px;
        font-weight: bold;
    }
}