body {
    margin: 0;
    padding: 0;
    font-family: "Heebo", sans-serif;
    font-weight: 400;
    color: #424242;
     color: rgba(51, 51, 51, .6);
    font-size: 14px;
    letter-spacing: .5px;
    line-height: 1.5;
    width: 100%;
}
h1{
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    font-weight: 400;
    color: #5d556e;  
    margin: 0 0 30px;
}
img {
    max-width: 100%;
    height: auto;
}
p{
    margin: 0 0 1.5em;
}
.text-uppercase{
    text-transform: uppercase;
}
.text-center{
    text-align: center;
}
.logo{
    text-align: center;
    margin: 0 0 30px;
}
.has-figure {
    margin-bottom: 30px;
    overflow: hidden;
}
.has-figure img {
    width: 100%;
    display: block;
}  
.has-content .content {
    padding: 30px;
    max-width: 620px;
    margin: 0 auto;
}
.slides {
    position: relative;
}
.slides .slide {
    min-width: 100%;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: white;
    background-color: #333;
}
.slides .slide:not(:first-child){
    position: absolute;
    top: 0;
    left: 0;
}
.slides .slide.fade {
    opacity: 0;
    transition: opacity 1s;
}

.slides .slide.fade-in {
    opacity: 1;
}
@media (min-width: 768px){
    .row {
        display: flex;
    }
    
    .col50 {
        flex-basis: 50%;
    }
    .has-figure, .slides{
        height: 100vh;
        margin: 0;
    }
    .has-figure img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }    
    .has-content {
        align-items: center;
        display: flex;
    }
    
    .has-content .content {
        padding:60px;
    }


}