.featured-cutout
{
    height: 11px;
    width: 45%;
    background-color: #f2aa03;
    top: 0;
    right: 0;
    position: absolute;
    -webkit-transform: skew(60deg) translateX(20px);
    transform: skew(60deg) translateX(20px);
}

.featured-content-container
{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.featured-content
{
    position: relative;
    z-index: 10;
}

.featured-content-background
{
    background: linear-gradient(180deg,rgba(41,42,47,0) 63.43%,rgba(236,181,81,.7) 137.71%,rgba(240,171,46,.7) 0),#161819;
}

.featured-content-logo
{
    margin-top: -25px;
    pointer-events: none!important;
}

.featured-content-icon
{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2!important;
    pointer-events: none!important;
}

.featured-content-text
{
    animation: featuredSlideshow 50s linear infinite;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    font-size: 300px;
    display: flex;
    transition: .3s;
    align-items: center;
    white-space: nowrap;
    -webkit-text-stroke: 2px rgba(240,171,46,.1);
    color: transparent;
    opacity: 0;
}

.featured-content-cutout-left
{
    z-index: 5;
    background-color: #1c1d22;
    border-right: 2px solid #f2aa03;
    border: 2px solid #f2aa03;
    border-right-width: 3px;
    border-left: 0;
    border-top: 0;
    -webkit-transform: skew(-45deg);
    transform: skew(-45deg);
    padding: 40px 0 1px 70px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: -50px;
    display: flex;
}

.featured-content-cutout-right
{
    z-index: 5;
    background-color: #1c1d22;
    border-left: 2px solid #f2aa04;
    border: 2px solid #f2aa04;
    border-left-width: 3px;
    border-right: 0;
    border-bottom: 0;
    -webkit-transform: skew(-45deg);
    transform: skew(-45deg);
    padding: 40px 0 1px 70px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    right: -50px;
    display: flex;
}

@keyframes featuredSlideshow
{
    1%
    {
        opacity: 1;
    }
    100%
    {
        transform: translateX(-200%);
    }
}
