.block-page-project-list {
    display: flex;
    flex-direction: column;
}
/*.block-page-content {*/
/*    background-color: #F6F6F6;*/
/*}*/


.project-list-filter {
    height: 200px;
    margin: 50px 100px 0 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.project-list-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.project-list-filter-title {
    font-family: Title;
    font-size: 35px;
    margin: 10px;
}

.project-list-filter-content {
    margin: 10px 0;
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
}

.slick-list,
.draggable {
    width: 50% !important;
}

.year-filer-item:focus {
    outline: none;
}


.year-filer-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100px !important;
    color: white;
    background-color: #1f2a44;
    font-size: 20px;
    font-family: Arial;
    padding: 5px 10px;
    border-radius: 3px;
    margin: 10px 15px;
    transition: background-color 0.3s;
}

.selected {
    background-color: #AF272F;
}

.year-filer-item:hover {
    background-color: #AF272F;
}

.project {
    background-color: #F6F6F6;
    display: flex;
    margin: 20px;
    flex-direction: column;
}

.project-placeholder {
    width: 400px;
    height: 250px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.project-content {
    width: 360px;
    padding: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.project-content-title {
    font-family: Title;
    font-weight: bold;
    color: #1f2a44;
    font-size: 35px;
    margin-bottom: 10px;
}

.project-content-info {
    font-family: Title;
    min-height: 65px;
    font-size: 15px;
}

.project-content-info-address {
    width: 300px;
    margin: 5px 0;
}

.project-content-info-date {
    margin: 5px 0;
}

.project-link {
    display: block;
    width: fit-content;
    font-family: Arial;
    color: white;
    background-color: #1f2a44;
    padding: 10px 15px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.project-link:hover {
    background-color: #AF272F;
}


@media only screen and (max-width: 1000px) and (min-width: 1px) {

    .block-page-wrap {
        flex-direction: column;
    }

    .project-list-filter {
        margin: 50px 10px;
    }

    .project-list-wrap {
        margin: 0;
    }

    .project {
        margin: 10px 0;
    }
    /*.slick-list, .draggable {*/
    /*    width: 80% !important;*/
    /*}*/
    .project-content {
        width: 100%;
    }

    .project-placeholder {
        width: 350px;
        height: 200px;
    }
}