_project_lead.scss 1.12 KB
.project-lead{
    width: 100%;
    display: flex;
    min-height: 12.5rem;
    background-color: #F0F0F0;
    color: #000;
    flex-direction: row;
    border-radius: 0.625rem;
    margin:2.5rem 0rem;
    padding: 1.25rem;
    overflow: hidden;
    @media screen and (max-width: 56.25rem) {
        flex-direction: column;
        border-radius: 1.25rem;
    }
    .image{
        display: flex;
        flex-wrap: wrap;
        img{
            height: 12.5rem;
        }

    }

    .content{
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 1.25rem;
        @media screen and (max-width: 56.25rem) {
            width: 100%;
            padding-left: 0rem;
            padding-top: 1.25rem;
        }
        h2{
            font-size: 1.5625rem;
            line-height: 1.875rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            @media screen and (max-width: 56.25rem) {
                font-size: 1.5rem;
            }
        }
        p{
            font-size: 1rem;
            line-height: 1.25rem;
        }
    } 

}