#portal {
    min-height: 100vh;
    width: 100%;
    position: relative;
}

#portal_bg {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/keyvisual.jpg) no-repeat center center/cover;
    z-index: 1;
}

#portal .portal_block {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: radial-gradient(rgba(0, 0, 0, 0.3), #111 75%);
    padding: calc(10vw + 5rem) 0 5.5rem;
}

#portal .rows {
    height: 100%;
    align-items: end;
}

#portal_copy h1 {
    font-size: 0.9rem;
    margin: 0 0 1rem;
}

#portal_copy h2 {
    font-size: 1.1rem;
    margin: 0;
}

#portal_copy p {
    font-size: 1.75rem;
    font-family: 'barlowcondensed';
    margin: 0 0 0.5rem;
    line-height: 1.3;
    color: #d15a20;
}

#portal_copy h2,
#portal_copy p {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    line-height: 1;
}

#portal_footer {
    text-align: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    padding: 2rem 5vw;
    font-size: 0.75rem;
    font-family: 'barlowcondensed';
}

#portal_nav {}

#portal_nav ul {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    list-style: none;
    display: flex;
    margin: 0 0 2rem;
    padding: 0 0 2rem;
    justify-content: left;
}

#portal_nav ul li {
    margin-right: 3rem;
}

#portal_nav ul li a {
    display: block;
    font-family: 'barlowcondensed';
    font-weight: bold;
    font-size: 1.25rem;
}

#news {}

#news a {
    display: block;
    padding-right: 2rem;
    position: relative;
    font-size: 0.85rem;
}

#news a span {
    font-family: 'barlowcondensed';
    margin-right: 1rem;
    opacity: 0.9;
}

#footer {
    display: none;
}

@media screen and (max-width:768px) {
    #footer {
        display: block;
    }

    #portal_footer {
        display: none;
    }

    #portal .portal_block {
        position: relative;
        padding: 0;
        background: transparent;
    }

    #portal_copy {
        padding-top: calc(100vh - 10rem - 20vw);
        height: 100vh;
        background: linear-gradient(rgba(17, 17, 17, 0.9), rgba(0, 0, 0, 0.5), #111 85%);
    }

    #portal_nav ul {
        border: none;
        display: block;
        margin-bottom: 3rem;
    }

    #portal_nav ul li {
        margin: 0;
    }

    #portal_nav ul li a {
        padding: 2rem 2rem 2rem 3rem;
        background: url(../img/arrow.svg) no-repeat center left/1rem 1rem;
    }

    #news a {
        padding: 2rem;
        background: #222;
    }

    #news a span {
        display: block;
    }
}

/******/
#loading {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.loading-icon {
    width: 15rem;
    height: 15rem;
    position: relative;
}

.loading-icon svg {
    width: 100%;
    height: 100%;
}

.loading-icon-bg {
    display: block;
    width: 100%;
    height: 100%;
    clip-path: url(#icon-logo-mask);
    position: absolute;
    top: 0;
    left: 0;
}

.loading-icon-bg span {
    display: block;
    width: 100%;
    height: 100%;
    background: #333;
    position: absolute;
    bottom: 0;
    left: 0;
}