body {
    border: 0;
    font-size: 16px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    word-wrap: break-word;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Firefox < 16 */

@-moz-keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Internet Explorer */

@-ms-keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Opera < 12.1 */

@-o-keyframes fade-in {
    from {
        opacity: 0;
    }
}

* {
    outline: none;
    text-decoration: none;
}

.main {
    display: flex;
}

.left {
    background-color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    width: 64%;
}

.left-content {
    -webkit-animation: fade-in 1s;
    -moz-animation: fade-in 1s;
    -ms-animation: fade-in 1s;
    -o-animation: fade-in 1s;
    animation: fade-in 1s;
    margin: 0 auto;
    width: 78%;
}

#name {
    /*color: #aadcbe;*/
    font-family: 'Oswald';
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.elevator {
    color: #303234;
    font-size: 28px;
    font-weight: 400;
    line-height: 42px;
}

.work {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 98%;
}

.info {
    width: 28%;
    min-width: 190px;
}

.caption {
    color: #303234;
    font-size: 14px;
    font-family: 'Libre Franklin', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 22px;
    margin: 0;
}

.label {
    width: 98%;
    border-bottom: 1px solid #909296;
    line-height: 0em;
    margin: 42px 0 0;
    font-family: "Oswald", 'Roboto Condensed', 'Arial Condensed', Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
}

.label span {
    background: #fff;
    padding-right: 4px
}

.label:first-child {
    margin-top: 0;
}

.right {
    align-items: center;
    background-image: linear-gradient(to top, #c1dfc4 0%, #deecdd 100%);
    display: flex;
    width: 36%;
}

.right-content {
    margin: 0 auto;
}

.slide {
    display: none;
}

.info a {
    color: #202224;
}

.about p {
    font-size: 24px;
    line-height: 36px;
}

#name a,
.label a {
    color: #000204;
}

#name a:hover,
.label a:hover {
    border-bottom: 2px solid #000204;
}

.elevator a,
.caption a {
    color: #909294;
    transition: .24s cubic-bezier(.2, .3, .24, 1);
}

.elevator a:hover,
.caption a:hover {
    color: #000204;
}

.right img {
    /*display: block;*/
    object-fit: cover;
    width: 100%;
    height: 100vh;
    /*max-width: 36%;*/
}

@media only screen and (min-width: 920px) {
    .elevator {
        margin: 72px 0;
    }
    .left {
        align-items: center;
        align-content: center;
    }
}

@media only screen and (max-width: 920px) {
    .left {
        width: 100%;
    }
    .left-content {
        margin-top: 72px;
        padding: 0 16px;
    }
    .right {
        display: none;
    }
    .elevator {
        margin: 56px 0;
    }
    .work {
        justify-content: flex-start;
    }
    .info {
        width: 100%;
        margin-bottom: 36px;
    }
    .label {
        margin: 20px 0;
    }
}

@media only screen and (min-width: 1100px) {
    .left-content {
        max-width: 860px;
        min-width: 640px;
    }
}

@media (min-width: 920px) and (max-width: 1100px) {
    .left {
        width: 90%;
    }
    .left-content {
        padding: 0 16px;
    }
    .right {
        width: 10%;
    }
    .right-content {
        display: none;
    }
}