.projects-list{
    width: 100%;
}
.project-block{
    padding: 45px 0 75px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    width: 100%;
}
.project-block:nth-child(odd){
    background: #f0f0f0;
}
.project-title{
    color: #292929;
    font-size: 30px;
    font-weight: 300;
    margin: 0 0 30px;
}
.project-title .bold{
    font-weight: 400;
}
.project-info{
    position: relative;
}
.project-info.for-mobile{
    display: none;
}
.project-img{
    max-width: 100%;
}
.project-hover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
}
.project-info:hover .project-hover{
    display: flex;
}
.project-hover .text{
    width: 80%;
    text-align: center;
    color: white;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}
.project-hover .project-link{
    margin: 30px auto 0;
    width: 235px;
    height: 40px;
    display: block;
    line-height: 40px;
    border-radius: 20px;
    font-weight: 400;
    font-size: 14px;
}
.project-page{
    max-width: 100%;
    width: 100%;
}
.project-page .image-block{
    /*height: 550px;*/
    height: auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.project-page .image-block img{
	width: 100%;
}
.project-page .hover-black{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-page .project-title{
    color: white;
    font-size: 36px;
    width: 50%;
    text-align: center;
    line-height: 65px;
}
.project-page .project-description{
    background: #f0f0f0;
    padding: 80px 0;
    text-align: center;
}
.project-page .text{
    color: #292929;
    font-weight: 300;
    font-size: 14px;
    width: 65%;
    margin: 0 auto;
    line-height: 23px;
}
.project-gallery{
    margin: 80px 0;
    display: flex;
    justify-content: center;
}
.project-gallery .gallery-item{
    max-width: 360px;
    height: 225px;
    width: auto !important;
}
.project-gallery .gallery-item img{
    max-width: 100%;
    max-height: 100%;
}

.project-gallery .bx-wrapper .bx-controls-direction a{
    width: 30px;
    height: 9px;
    background-image: url('../../img/arrow-black.png');
    background-repeat: no-repeat;
    display: inline-block;
    transform: rotate(0deg);
    position: relative;
}
.project-gallery .bx-wrapper a.bx-prev{
    transform: rotate(180deg);
    margin: 0 30px 0 0;
    left: 0;
}
.project-gallery .bx-controls-direction{
    text-align: center;
    margin: 25px 0 0;
}
.project-gallery .bx-wrapper .bx-next{
    right: 0
}

@media screen and (max-width: 680px) {
    .project-info.for-mobile{
        display: block;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .project-info:not(.for-mobile){
        display: none;
    }
    .project-title{
        font-size: 25px;
    }
    .project-block {
        padding: 25px 0 45px;
    }
    .project-page .image-block {
        height: auto;
    }
    .project-page .project-title{
        font-size: 32px;
        line-height: 40px;
    }
    .project-hover{
        display: flex;
        height: auto;
        padding: 20px 0;
        box-sizing: border-box;
        position: relative;
    }
    .project-hover .text{
        display: flex;
        font-size: 17px;
        flex-direction: column;
        justify-content: space-around;
    }
    .project-hover .text .project-desc{
        line-height: 23px;
    }
}
@media screen and (max-width: 470px) {
    .project-page .project-title{
        margin: 0;
        font-size: 20px;
        line-height: 25px;
    }
    .project-page .project-description{
        padding: 20px 0;
    }
    .project-gallery{
        margin: 30px 0;
    }
}
@media screen and (max-width: 430px) {
    .project-title{
        font-size: 20px;
        line-height: 23px;
        margin: 0 0 15px;
    }
}