﻿body {
}

.about__bio{
    font-size: 20px;
    line-height: 1.6;
    font-weight: bold;
    width: 80%;
    padding-bottom: 30px;
}

.about__newsletter{
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.about__newsletter-form form{
    margin: auto;
}

.about__newsletter-blurb{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.homepage {
    background-color: #F4F4F4;
    color: black;
}

.dark .homepage {
    background: #02010a;
    color: white;
}

.homepage__hero {
    display: flex;
    color: black;
}

.dark .homepage__hero{
    color: white;
}

.homepage__hero-image {
    overflow: hidden;
    width: 30%;
}

    .homepage__hero-image img {
        height: 650px;
        max-width: unset;
        margin-left: -160px;
        margin-top: -60px;
        filter: contrast(2);
    }

.homepage__hero-title-wrapper {
    width: 60%;
    padding: 80px 0px;
    padding-bottom: 0px;
    padding-left: 5%;
}

.homepage__hero-title-name {
    font-size: 44px;
    font-weight: bold;
    line-height: .9;
}

.homepage__hero-jobs {
    font-size: 20px;
    line-height: 1.4;
    color: black;
}

.homepage__hero-job {
    display: flex;
    align-items: center;
}

.homepage__hero-btns {
    margin-top: 40px;
}

.homepage__hero-btn {
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 30px;
    transition: .5s all;
    opacity: .7;
}

    .homepage__hero-btn:hover {
        opacity: 1;
    }

.homepage__hero-role-icon {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #76C875;
    display: inline-block;
}

.homepage__social {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

    .homepage__social img {
        height: 24px;
        margin-right: 20px;
        cursor: pointer;
    }

.homepage__worked-with {
    padding: 30px;
    text-align: center;
    color: black;
    background-color: #EBEBEB;
}

.dark .homepage__worked-with{
    background: #111;
    color: white;
}

.homepage__worked-with-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

    .homepage__worked-with-logos img {
        height: 30px;
        margin: 0px 20px;
        filter: grayscale(10);
        opacity: .3;
        transition: .5s all;
    }

.dark .homepage__worked-with-logos img {
    opacity: 1;
    filter: grayscale(0);
}

.homepage__worked-with-logos img:hover {
            height: 30px;
            margin: 0px 20px;
            filter: grayscale(0);
            opacity: 1;
        }

.homepage__paragraph {
    padding: 30px 10%;
    font-size: 20px;
    font-weight: 400;
}

    .homepage__paragraph p {
        padding: 40px;
        margin: 20px auto;
        background: white;
        box-shadow: 2px 2px 9px #ccc;
        border-radius: 10px;
    }

.dark .homepage__paragraph p{
    background: #222;
    color: white;
    box-shadow: none;
}

.homepage h2 {
    font-size: 30px;
    font-weight: bold;
}

.homepage__padding {
    padding: 30px 10%;
}

.homepage__active-projects {
}

.homepage__active-project {
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 10px;
    margin: 20px 0px;
    overflow: hidden;
    border: solid 1px #ccc;
    box-shadow: 2px 2px 9px #ddd;
}

.dark .homepage__active-project{
    background: #111;
    color: white;
    box-shadow: none;
}

.homepage__active-project-text {
    width: 50%;
    padding: 40px;
}

.homepage__active-project-title {
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
}

.dark .homepage__active-project-title{
    color: white;
}

.homepage__active-project-description {
    font-weight: bold;
    font-size: 20px;
    line-height: 2;
}

.homepage__active-project-image {
    width: 50%;
    padding-left: 50px;
    padding: 40px;
}

    .homepage__active-project-image img {
        max-width: 100%;
        height: auto;
        box-shadow: 2px 2px 9px #ccc;
        border-radius: 10px;
    }

.dark .homepage__active-project-image img {
    box-shadow: none;
}

.homepage__articles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.homepage__article {
    background-color: white;
    border-radius: 10px;
    margin: 10px 0px;
    width: 30%;
    margin: 1%;
    min-height: 150px;
    border: solid 1px #ccc;
    box-shadow: 4px 4px 9px #ddd;
    border-radius: 15px;
    overflow: hidden;
}

.homepage__article-title {
    font-size: 24px;
    font-weight: bold;
    padding: 0px 15px;
}

.homepage__article-date {
    font-size: 12px;
    font-weight: 500;
}

.homepage__article-blurb {
    margin-top: 10px;
    font-size: 16px;
    padding: 0px 15px;
}

.homepage__skill-cards {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.homepage__skill-card {
    background-color: white;
    border-radius: 15px;
    text-align: center;
    padding: 30px;
    margin: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: .5s all;
    border: solid 1px #ccc;
    box-shadow: 4px 4px 9px #ddd;
}

.dark .homepage__skill-card {
    background: #02010a;
    color: white;
    box-shadow: none;
}

.dark .homepage__skill-card.grey{
    background: #444;
}

    .homepage__skill-card:hover {
        box-shadow: 4px 4px 9px #ddd;
    }

.homepage__skill-card-icon {
}

    .homepage__skill-card-icon img {
        height: 50px;
    }

.homepage__skill-card-label {
    width: 100px;
}

.homepage__skill-card-label--large {
    font-size: 40px;
    font-weight: bold;
}


.homepage .link {
    color: #494E83;
    text-decoration: underline;
}

.homepage__active-project-title--highlight {
    color: #494E83;
}

.homepage__contact {
    position: fixed;
    bottom: -200px;
    left: 0px;
    height: 120px;
    padding: 40px;
    width: 100%;
    transition: .5s all;
    background-color: white;
    color: black;
    box-shadow: 4px 4px 9px #555;
}

    .homepage__contact.show {
        bottom: 0px;
        opacity: 1;
    }

.homepage__contact-close {
    position: absolute;
    top: 10px;
    right: 30px;
    cursor: pointer;
}

    .homepage__contact-close img {
        height: 30px;
        width: 30px;
    }

@media screen and (max-width: 890px) {

    .homepage__hero {
        display: flex;
        color: black;
        flex-direction: column;
        /* background-image: url('/images/neon1.png'); */
    }

    .homepage__hero-image {
        width: 100%;
        overflow: hidden;
    }

        .homepage__hero-image img {
            width: 100%;
            height: unset;
            max-width: unset;
            margin-left: -160px;
            margin-top: -60px;
            margin: 10px;
        }

    .homepage__hero-title-wrapper {
        width: 100%;
        padding: 40px;
    }

    .homepage__active-project {
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 10px;
        margin: 20px 0px;
        overflow: hidden;
        border: solid 1px #ccc;
        box-shadow: 2px 2px 9px #ddd;
    }

    .homepage__active-project-text {
        width: 100%;
        padding: 40px;
    }

    .homepage__active-project-title {
        color: #000;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.1;
    }

    .homepage__active-project-image {
        width: 100%;
        padding-left: 50px;
    }

    .homepage__articles {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .homepage__article {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        margin: 10px 0px;
        width: 90%;
        margin: 1% auto;
        min-height: 150px;
        border: solid 1px #ccc;
        box-shadow: 4px 4px 9px #ddd;
    }
}