﻿body {
}


.homepage {
    background-color: #F4F4F4;
    color: black;
    font-family: 'Poppins';
}

.homepage h2{
    margin: 0px;
    padding: 0px;
}

.homepage__hero {
    display: flex;
    color: black;
    border-bottom: solid 1px #ccc;
    font-family: 'Poppins';
    background: white;
    padding: 5%;
}

    .homepage .highlight {
        color: #E8AD17;
    }

.homepage__hero-image {
    width: 45%;
    overflow: hidden;
    padding: 0% 2%;
}

    .homepage__hero-image img {
        width: 100%;
    }

.homepage__hero-title-wrapper {
    width: 65%;
    padding: 100px 0px;
    padding-bottom: 0px;
    padding-left: 5%;
    max-width: 700px;
}

.homepage__hero-subtitle {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    font-family: 'Poppins';
}

.homepage__hero-title-name {
    font-weight: bold;
    color: #000;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1;
}

.homepage__note-on-web-forms {
    margin: 15px;
    font-size: 14px;
}

.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__hero-languages{

}

.homepage__hero-languages img{
    height:24px;
    margin:10px 0px;
}

.homepage__hero-newsletter{
    display: flex;
    align-items: center;
}

.homepage__hero-newsletter > *{
}

    .homepage__hero-newsletter input{
        padding: 15px;
        outline: none;
        border: solid 1px #ccc;
        background: white;
        border-radius: 5px;
        margin-right: 20px;
        width: 70%;
    }

    .homepage__hero-newsletter .btn {
        background: #E8AD17;
        color: black;
        font-weight: 800;
        border-radius: 30px;
        padding: 10px 30px;
    }

.homepage__hero-newsletter-label{
    font-weight: 600;
    color: red;
    font-size: 14px;
}

.homepage__hero-newsletter-label--success {
    font-weight: 600;
    color: #08b11d;
    font-size: 14px;
}

.homepage__articles-on-top {
    margin-top: 40px;
}

.homepage__articles-on-top{
    margin-top: 40px;
    display: flex;
    padding: 0px 10%;
}

.homepage__latest-article{
    width: 50%;
    background: white;
    border: solid 1px #ccc;
    padding: 10px;
    border-radius: 10px;
}

.homepage__latest-article-thumbnail{

}

.homepage__latest-article-thumbnail img{
    width:100%;
}

.homepage__latest-article-title {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    transition: .5s all;
}

    .homepage__latest-article-title:hover {
        color: #E8AD17;
    }

.homepage__latest-article-date{
    font-size: 14px;
    font-weight: 600;
    padding: 20px 0px;
}

.homepage__trending{
    width: 50%;
    padding-left: 60px;
}

.homepage__trending-list-item{
    background-color: white;
    padding: 10px;
    border: solid 1px #ccc;
    margin: 10px 0px;
    border-radius: 10px;
    display: flex;
}

.homepage__trending-list-item-thumbnail{
    width: 20%;
}

    .homepage__trending-list-item-thumbnail img {
        width: 100%;
        border-radius: 10px;
        filter: saturate(2);
    }

    .homepage__trending-title-wrapper{
        width: 60%;
    }

    .homepage__trending-list-item-title {
        color: #000;
        font-size: 17px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3;
        transition: .5s all;
    }

    .homepage__trending-list-item-title:hover {
        color: #E8AD17;
    }

.homepage__trending-list-item-date{
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

.homepage__featured {
    padding: 2% 10%;
    margin-top: 40px;
}
.homepage__featured-list{
    display: flex;
}

    .homepage__featured-list-item{
        width: 30%;
        margin:1%;
        background: white;
        padding: 10px;
        border:solid 1px #ccc;
        border-radius: 10px;
    }

.homepage__featured-list-item-title {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 138.889% */
    padding: 10px 20px;
    transition: .5s all;
}

.homepage__featured-list-item-title a{
    color: black;
    transition: .5s all;
}

    .homepage__featured-list-item-title a:hover {
        color: #E8AD17;
    }

.homepage__latest{
    padding: 2% 10%;
}

.homepage__latest-items{
    display: flex;
    flex-wrap: wrap;
}

.homepage__latest-item{
    width: 30%;
    margin: 1%;
    background: white;
    border: solid 1px #ccc;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s all;
    transform: scale(.95);
}

.homepage__latest-item:hover{
    transform: scale(1);
}

.homepage__latest-item-title {
    color: #000;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px; /* 138.889% */
    padding: 10px 20px;
}

.homepage__latest-item-title a{
    color: #222;
    transition: .5s all;
}

    .homepage__latest-item-title a:hover {
        color: #E8AD17;
        color: var(--primary-color);
        transition: .5s all;
    }


.homepage__latest-item-date{
    font-size: 14px;
    font-weight:normal;
    padding: 10px 20px;
    padding-bottom: 20px;
}

.homepage__latest-item-thumbnail{
    max-height: 175px;
    overflow: hidden;
}

    .homepage__latest-item-thumbnail img {
        width: 100%;
        filter: saturate(2);
    }

.homepage__latest-item-blurb{
    padding: 0px 20px;
    padding-bottom: 20px;
    font-size: 14px;
}

.homepage__job{
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.homepage__job-name-wrapper{

}

.homepage__job-name{
    font-size: 24px;
    font-weight: bold;
}

.homepage__job-title{
    font-size: 20px;
    font-weight: bold;
    color: #aaa;
}

.homepage__time-to-read{
    font-size: 12px;
    font-weight: 400;
}






@media screen and (max-width: 890px) {
    .homepage__hero {
        display: flex;
        color: black;
        flex-direction: column;
        /* background-image: url('/images/neon1.png'); */
    }

    .homepage__hero-title-name{
        font-size: 2rem;
    }

    .homepage__scratch img{
        max-width: 100%;
    }

    .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;
    }

    .homepage__articles-on-top {
        margin-top: 40px;
        display: flex;
        padding: 0px 10%;
        flex-direction: column;
    }

    .homepage__latest-article{
        width: 100%;
    }

    .homepage__trending{
        width: 100%;
        padding-left: 0px;
        margin-top: 40px;
    }

    .homepage__latest{
        flex-direction: column;
    }
    
    .homepage__latest-item{
        width: 100%;
    }

    .homepage__featured-list {
        display: flex;
        flex-direction: column;
    }

    .homepage__featured-list-item {
        width: 100%;
        margin-bottom: 20px;
        background: white;
        padding: 10px;
        border: solid 1px #ccc;
        border-radius: 10px;
    }

    .homepage__latest-item-thumbnail{
        max-height: 100%;
    }
}