<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Portfolio page */
hr {
    margin-bottom: 25px;
}
.content-full-width {
    margin-top: -50px;
    margin-bottom: -32px;
    border-bottom: 5px solid #2b2e3a;
}
.portfolio-header {
    padding: 50px 0 30px 20px;
    background: #bf1b1b;
    text-align: center;
    border-top: 5px solid #9f0000;
}
.portfolio-header &gt; h1 {
    color: #ECEDEF;
    font-size: 34px;
}
.project {
    border-top: 5px solid #2b2e3a;
    overflow: hidden;
}

.project .subtitle {
    margin-top: -12px;
    margin-bottom: 30px;
    font-size: 0.85em;
}

.project-image {
    position: relative;
    width: 55%;
    height:100%;
}
.project-image-inner {
    position: absolute;
    width: 100%;
    height:100%;
    top:0px;
    left:0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
}
.image-dot-list-wrapper {
    position: absolute;
    display: inline-block;
    z-index: 20;
}
.image-dot-list {
    position: relative;
    list-style: none;
    left: -50%;
}
.image-active {
    opacity: 1;
}
.image-dot {
    display: inline;
    margin-left: 10px; 
}
.image-dot-inner {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: darkgrey;
    border-radius: 50%;
}
.image-dot-inner:hover {
    cursor: pointer;
}
.image-dot-active {
    background:#ECEDEF;
}
.image-dot-wrapper {
    width:100%;
}

.background-position-bottom {
    background-position: bottom;
}

.table {
    display: table;
	margin: 0 auto;
    background: red;
}
.project-text-wrapper {
    width: 45%;
    background:#4C5266;
}
.project-text-inner {
    display: none;
}
.text-active {
    display: block;
}
.project-text {
    margin: auto;
    color: white;
    max-width: 550px;
    padding: 80px 80px 80px 80px;
}
.project-text &gt; a {
    text-decoration: none;
}
.project-text a {
    color: white;
    text-decoration: underline;
}
.project-text &gt; h2 {}
.project-text &gt; h2 &gt; a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}
.project-text &gt; h2 &gt; a:hover { text-decoration: underline; }

.project-link { margin-top: 40px; }
.project-link a { text-decoration: none; }
.project-link a:hover { text-decoration: underline; }

@media (max-width: 1120px) {
    .project-text {
        font-size: 0.95rem;
    }
    .project-text &gt; h2 {
        font-size: 1.3rem;
    }
}
@media (max-width: 1050px) {
    .project-text {
        font-size: 0.9rem;
    }
    .project-text &gt; h2 {
        font-size: 1.1rem;
    }
}
</pre></body></html>