.projects-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding-top: 40px;
    padding-bottom: 40px;
}

.project-type{
    padding-top: 10px;
    padding-bottom: 10px;
}

.project-type:nth-child(odd){
    border-right: 1px solid;
    padding-right: 4rem;
}

.project-type:last-child{
    border-color: transparent;
}

.projects-heading{
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 2rem;

}

.projects-image {
    margin-top:40px;
}

.projects-image img {
    width:100%;
}

.project-type h4{
font-weight: bold;
text-transform: uppercase;
margin:0;
}

.projects-type-link {
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    margin: 0px 20px;
    margin-top: 2em;
}

@media screen and (max-width: 1024px) {
    .projects-type {
        grid-template-columns: 1fr;
        padding-bottom:0px;
    }
    .project-type:nth-child(odd){
        border-right: none;
        padding-right: 0;
    }
    .project-type{
        border-right: 0px solid;
        padding-right: 0rem;
        border-bottom: 1px solid;
        padding-bottom: 2rem;
    }    
    .projects-image img{
        height: auto;
    }
}
