/*Projects*/

.projects-list{
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax(240px, 1fr) );
    grid-gap: 20px;
}

.project {
    background: white;
    padding: .4em;
    border-radius: 6px;
    box-shadow: 0px 10px 35px 0px rgba(56, 71, 109, 0.075);
    border: 1px dashed #dedede;
    cursor: pointer;
}

.project-image {
    position: relative;
    background-color: rgb(236, 236, 236);
    width: 100%;
    height: 160px;
    border-radius: 6px 6px 0 0;
    transition: .5s;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
}

.project-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 4px;
    transition: .3s background;
}

.project-wrapper:before{
    content: '';
    background: url(/wp-content/themes/portfolio_new/assets/img/eye.svg);
}


.project-image:hover .project-wrapper{
     background: #00000059;
}

.project-cat {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 600;
    color: #00B2FF;
    padding: 10px 7px 0;
    font-size: 10px;
}

.project-year {
    color: gray;
    font-weight: 400;
    font-size: 11px;
}

.project-title {
    font-weight: 600;
    color: rgb(7, 20, 55);
    padding: 7px;
    font-size: 16px;
    line-height: 1.5;
}

/*Experience*/

.timeline .timeline-line{
    left: 30px;
}

.timeline .timeline-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px dashed #E4E6EF;
    background: white;
}

.timeline .timeline-icon img{
    width: 60%;
    height: 60%;
}