#homepage {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 20px;
    padding: 0px 15px;
    scroll-snap-type: y mandatory;
}

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

#homepage .left {
  width: 100%;
  grid-column: span 4;
  z-index: 1;
    position: relative;
}

#homepage .sticky {
    position: sticky;
    top: 0px;
    min-height: 100vh;
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 800px) {
    #homepage .sticky {
        min-height: auto;
    }
}

.intro h1, .intro h2 {
    display: inline;
    widows: 3;
}

.intro h1 {
    text-transform: uppercase;
}

.read_more {
    grid-gap: 20px;
    padding-top: 20px;
    display: none;
}

.project {
    scroll-snap-align: start;
}

@media screen and (max-width: 800px) {
    .read_more {
        grid-template-columns: repeat(1, 1fr);
    }
}

body.more-open .read_more {
    display: grid;
}

.read_more h3 {
    /*text-transform: uppercase;*/
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-bottom: 10px;
    font-weight: normal;
}

.read_more p {
    
}
.links {
    margin-top: auto;
    padding-top: 25px;
}

.links ul {
    margin: 0;
    padding: 0;
}

.links a {
    text-decoration: none;
    color: inherit;
}

.links li {
    list-style: none;
}

.links li .hover {
    display: none;
}

.links li:hover .hover {
    display: inline;
}
.links li:hover .base {
    display: none;
}

#homepage .right {
    padding: 15px 0px;
    width: 100%; 
    grid-column: span 8;
    z-index: 1;
    position: relative;

}

.swiper-container {
    width: 100%;
    position: relative;
    border: 1px solid;
}
@media screen and (max-width: 800px) {
    .swiper-container {
        border-left: 0px;
        border-right: 0px;
    }
}

.swiper-slide {
    width: 100% !important;
    background: black;
}

.prev {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
    cursor: w-resize;
}
.next {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
    cursor: e-resize;
}
.right ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 15px;
    width: 100%;
    
}

.right li {
    list-style: none;
    line-height: 0px;
     width: 100%;
     color: #888;
}

.slideshow {
    overflow: hidden;
    display: block;
    width: 100%;
}

@media screen and (max-width: 800px) {
    .slideshow {
        width: calc(100% +  30px);
        margin-left: -15px;
    }
}
.slideshow img, .slideshow video, .slideshow picture {
    width: 100% !important;
    height: auto !important;
    display: block;
}

.slideshow .caption {
    line-height: 1.4em;
    margin-top: 5px;
    color: #eee;
    display: flex;
    justify-content: space-between;
    
}

@media screen and (max-width: 800px) {
    .slideshow .caption {
       padding: 0px 15px;
    }
}