.intro-img{
    background-image: url(../img/projects/intro.jpg)
}


.project-search-wrapper{
    padding-bottom: 40px !important;
}
.projects{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.project-item{
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 40px;
    border-radius: 10px;
    transition: 250ms all !important;
    cursor: pointer;
    position: relative;
}
.project-item:hover{
    border: 1px solid black !important;
}
.project-item-top{
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    line-height: 1;
    padding-bottom: 20px;
    border-bottom: 2px solid #ccc;
}
.project-item-top h2{
    margin: 0;
    transition: 250ms all !important;
    font-weight: 400 !important;
    align-self: end;
}
.project-item:hover h2{
    margin-left: 5px
}
.project-item-content{
    padding-top: 20px;
    display: flex;
    align-items: center;
    column-gap: 30px;
    row-gap: 10px;
}
.project-logo{
    max-width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-link{
    margin-left: auto;
}