                /* Portfolio */


.allHouses {
    display: flex;
    flex-direction: column;
    width: 1000px;
    margin: 0 auto;
}

.house {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    width: 100%;
    
    -webkit-animation: fadein 1.75s;
}
.topHouse {margin-top: 0;}

.houseTitle {
    display: flex;
    align-items: center;
    width: 1000px;
    height: 75px;
    margin: 0 auto;
    
    -webkit-animation: fadein 2.5s;
}

.houseTitle h1 {
    font-family:  'Lato', sans-serif;
    font-weight: 300;
    font-size: 25px;
    color: #999;
}

.slideshow {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    height: 500px;
    width: 1000px;
    overflow: hidden;
    margin: 0 auto;
}

.slideshow img {
    width: 100%;
    height: auto;
}

.mySlides {
    width: 1000px;
    height: auto;
}

.buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 1000px;
    height: 100%;
    z-index: 10;
}

.button {
    border: none;
    outline: none;
    cursor: pointer;
    
    background-color: transparent;
    width: 50%;
    height: 100%;
    
    font-family: 'Lato', sans-serif;
    font-weight: lighter;
    font-size: 60px;
    color: rgba(225, 225, 225, .6);
}

.slideshowNav {
    display: flex;
    flex-direction: row;

    overflow-x: auto;
    overflow-y: hidden;

    height: 100px;
    width: 1000px;
    margin: 20px auto 0 auto;
}

.slideshowNav img {
    display: flex;
    width: 200px;
    height: auto;
    cursor: pointer;
}

#buttonLeft {text-align: left; padding-left: 50px;}
#buttonRight {text-align: right; padding-right: 50px;}






@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 1100px) {
    #vertical {display: none;}
    .buttons {right: 0;}
    .houseTitle h1 {margin-left: 20px;}
    .allHouses {
        width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    .house, .houseTitle, .slideshow, .buttons, .mySlides, .slideshowNav {width: 100vw;}
    .slideshow {height: 50vw;}
    .button {font-size: 35px;}
    .allHouses {margin: 0 0 20px 0;}
    .slideshowNav img {width: 20vw};

}

@media only screen and (max-width: 768px) {
    .slideshowNav {display: none;}
}