
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
}

.cc-background-slider-image {
    display: none;
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.shadow {
    position: fixed;
    width: 34%;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.1), transparent 75%);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    z-index: -1;
}

.welcome-area {
    background: white;
    width: 33.33%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-family: Arial, sans-serif;
}

.title {
    font-size: 26px;
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #777;
    width: 65%;
}

.info {
    font-size: 18px;
    margin-bottom: 5em;
    opacity: 0.75;
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
}

@media (max-width: 768px) {

    .content {
        align-items: flex-start;
    }

    .welcome-area {
        width: 100%;
        height: 33.33%;
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
        justify-content: inherit;
    }

    .shadow {
        width: 100%;
        height: 34%;
        background: linear-gradient(to top, rgba(0,0,0,0.1), transparent 70%);
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    }

    .title {
        margin-bottom: 0.1em;
        padding-bottom: 0.1em;
        width: 100%;
    }

    .info {
        margin-bottom: 1em;
    }

    .copyright {
        width: 50%;
    }
    
}