#fullscreenBg {

}

#fullscreenBg .slick-item {
    position: relative;
    height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

#fullscreenBg .slick-item .textBox {
    position: absolute;
    right: 20px;
    bottom: 50px;
    font-size: 24px;
    color: #FFF;
    text-align: right;
    text-shadow: 0 0 3px #ccc;
    letter-spacing: 1.2px;
    font-weight: 100;
}

#fullscreenBg .slick-item .textBox span {
    font-size: 32px;
}

#fullscreenBg .slick-item .fog-bg {
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

#copyright {
    font-size: 8px;
    position: absolute;
    color: var(--grey);
    bottom: 4px;
    right: 20px;
    letter-spacing: 2.5px;
    z-index: 1;
}

@media (max-width: 767px) {
    #fullscreenBg .slick-item .textBox {
        left: 15px;
        bottom: 50px;
        font-size: 18px;
        text-align: left;
        text-shadow: 0 0 2px #ccc;
    }
    #fullscreenBg .slick-item .textBox span {
        font-size: 18px;
    }
}