.superhero {
    position: relative;
}

.superhero_extraimage {
    position: absolute;
    bottom: 0;
    left: 10%;
}

.superhero_contentblockbackground {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 34px 50px 34px 40px;
}

.superhero_contentblock {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
}

.superhero_badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 120px 120px 0;
    border-color: transparent #ed1c23 transparent transparent;
}
.superhero_badgecontent
{
    width:170px;
    height:120px;
    transform:rotate(45deg) translateX(-18px);
    transform-origin:center ;
}
.superhero__badgediscount {
    position:absolute;
    top:17px;
    width: 100%;
    text-align: center;
    font-size: 32px;
    color: white;
    font-weight: bold;
}

.superhero__badgedeadline {
    position:absolute;
    top:56px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: white;
    font-weight: normal;
}
.superhero_badge::before,
.superhero_badge::after
{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 0 10px;
    border-color: transparent transparent transparent #b81015;
    content:"";
    position:absolute;
}
.superhero_badge::before
{
    top: 120px;
    left: 120px;
    transform: translateX(-100%) translateY(-100%);
}
.superhero_badge::after
{
    top: 0;
    left: 0;
}
@media (max-width: 1200px) { 
    .superhero_contentblock
    {
        right:10%;
    }
    .superhero_extraimage
    {
        left: 5%;
    }
}
@media (max-width: 992px) { 
    .superhero_contentblock
    {
        right:5%;
    }
    .superhero_extraimage
    {
        left: 0;
    }
}

@media (max-width: 768px) { 
    .superhero_contentblock
    {
        right:20px;
        max-width: 74vw;
    }
    .superhero_extraimage
    {
        left: 0;
        transform: translateX(-30%) scale(0.7);
        transform-origin: bottom left;
    }
    .superhero_contentblockbackground
    {
        padding: 34px 40px 14px 25px;
    }
    .superhero_contentblockbackground .bluebg_text
    {
        font-size: 32px;
        padding: 5px;
        white-space: nowrap;
        line-height: 1;
    }
}