.brand {}
    .brand__primary {}
    .brand__secondary {
        display: block;
    }

.profile-pic {
    width: 14.5rem;
    height: 14.5rem;
    margin-bottom: 4.5rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
    border-radius: 50%;
}

.header-main-container {}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 9rem 2.4rem;
    background: #356078;
    color: #fff;
}
    .header .profile-pic {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
        margin-left: auto;
        margin-right: auto;
    }
    .header .brand {}

.site-main {
    background: #fff;
    padding: 2.4rem;
}

.o-responsive-media {
    position: relative;
}
    .o-responsive-media > div {
        display: block !important;
    }
    .o-responsive-media > *:not(div:first-child) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.projects-list {
    margin-top: calc(-2.4rem * 3);
    margin-bottom: 2.4rem;
}
    .projects-list__project {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 2.4rem;
    }
        .projects-list__project__title {
        }
            .projects-list__project__title a:hover,
            .projects-list__project__title a:focus {
                color: black;
                text-decoration: none;
            }
        .projects-list__project__summary {
            margin: 0;
        }
        .projects-list__project__preview {
            -webkit-box-ordinal-group: 0;
                -ms-flex-order: -1;
                    order: -1;
            margin-bottom: 2.4rem;
            position: relative;
        }
            .projects-list__project__preview .o-responsive-media {
                overflow: hidden;
            }
            .projects-list__project__preview img {
                -webkit-transition: -webkit-transform .2s ease-in-out;
                transition: -webkit-transform .2s ease-in-out;
                transition: transform .2s ease-in-out;
                transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
            }
            .projects-list__project__preview a:hover img,
            .projects-list__project__preview a:focus img {
                -webkit-transform: scale(1.1);
                        transform: scale(1.1);
            }

@media screen and (min-width: 56.25em) {
    .header-main-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        height: 100vh;
    }
        .header-main-container > .header {
            padding: calc(2.4rem * 3);
            -ms-flex-preferred-size: 35%;
                flex-basis: 35%;
            max-width: 35rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
        }
        .header-main-container > .site-main {
            padding: calc(2.4rem * 3);
            -ms-flex-preferred-size: 65%;
                flex-basis: 65%;
            -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                    flex-grow: 1;
            height: 100vh;
            overflow: auto;
        }

    .projects-list {
        margin: 0;
    }
        .projects-list__project {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            margin-bottom: calc(2.4rem * 3);
            margin-left: calc(2.4rem * -1.5);
            margin-right: calc(2.4rem * -1.5);
        }
            .projects-list__project__preview,
            .projects-list__project__info {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
                -webkit-box-pack: center;
                    -ms-flex-pack: center;
                        justify-content: center;
                -ms-flex-preferred-size: 50%;
                    flex-basis: 50%;
                margin: 0;
                padding: 0 calc((2.4rem * 1.5) / 2);
            }
        .projects-list__project:nth-child(even) {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
                -ms-flex-direction: row-reverse;
                    flex-direction: row-reverse;
        }
}
/*# sourceMappingURL=index.css.map */