.cdt-masked-wallpaper {
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
}

.cdt-masked-wallpaper-bg,
.cdt-masked-wallpaper-fg {
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cdt-masked-wallpaper-bg {
    background-color: var(--black-color);
}

.cdt-masked-wallpaper-bg-img,
.cdt-masked-wallpaper-fg-img{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.cdt-masked-wallpaper-fg-img{
    background-position: center center;
}

.cdt-masked-wallpaper-fg-img {
    mask-repeat: no-repeat;
    mask-origin: 0 0;
    mask-size: 700px 700px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-origin: 0 0;
    -webkit-mask-size: 700px 700px;
    opacity: 0;
    transition: opacity .2s ease-out;
    z-index: 10;
}

.cdt-masked-wallpaper-content {
    display: flex;
    min-height: calc(100vh - 100px);
    width: 100%;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 20;
}

.cdt-masked-wallpaper-inner {
    width: 1000px;
    max-width: 100%;
    color: var(--white-color);
    padding: 80px 70px 100px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.cdt-masked-wallpaper-inner > *{
    position: relative;
    color: inherit;
}

.cdt-masked-wallpaper:after {
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100vw;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0) 50%);*/
}

.cdt-masked-wallpaper-inner a{
    color: var(--red-color);
    text-decoration: none;
    font-weight: 600;
}

.cdt-masked-wallpaper-inner>*:first-child {
    margin-top: 0;
}

/* Content Animation */




/* Responsive Smartphone */
@media only screen and (max-width: 809px){

    .cdt-masked-wallpaper-content{
        min-height: calc(100vh - 60px);
    }

    .cdt-masked-wallpaper-inner{
        padding: 80px 20px;
    }

    .cdt-masked-wallpaper-fg-img {
        display: none;
    }
}