#banner
{
    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 100%;
    min-height: 600px;

    text-align: center;

    color: white;
}
#banner *
{
    cursor: grab;
    user-select: none;
}
.bannerNoGrab {
    min-height: 360px !important;
}
.bannerNoGrab * 
{
    cursor: initial !important;
    user-select: initial !important;
}

#banner .items
{
    position: absolute;

    display: flex;
    float: left;

    height: 100%;
}
#banner .items .item
{
    position: relative;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;

    width: 100%;
    height: 100%;
}
#banner .items .item .blackBox
{
    position: absolute;

    display: inline-block;

    width: 100%;
    height: 100%;

    opacity: .75;
    background-color: var(--black);
    left: 0;
}
#banner .items .item .content
{
    position: absolute;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    justify-content: center;
    align-items: center;
}
#banner .items .item .content p
{
    text-transform: uppercase;
}
#banner .items .item .content p a {
    color: #00ffe7;
    cursor: pointer;
}
#banner .items .item .content p:first-child
{
    font-family: HouschkaRounded;
    font-size: 23px;
    margin-bottom: 15px;

    letter-spacing: 1.5px;

    color: var(--red);
}
#banner .items .item .content p:last-child
{
    font-size: 65px;
    font-weight: bold;

    letter-spacing: 4px;
}
.bannerBig .items .item .content p:last-child
{
    font-size: 33px !important;
    letter-spacing: 2px !important;
}

#banner .points
{
    position: absolute;
    bottom: 15px;
    left: 50%;

    transform: translateX(-50%);
}

#banner .points .point
{
    display: inline-block;

    width: 10px;
    height: 10px;
    padding: 10px;
}
#banner .points .point .fill
{
    display: inline-block;

    width: 100%;
    height: 100%;

    border-radius: 100%;
    background-color: white;
}
#banner .points .point:hover .fill
{
    background-color: var(--red);
}
#banner .points .point,
#banner .points .point .fill
{
    cursor: pointer;
}
