.news-list{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}
.news-list .middle{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.news-list .news-item{
    width: 360px;
    background: white;
    margin: 0 20px 30px 0px;
    border: solid 1px #f0f0f0;
    box-sizing: border-box;
    align-items: flex-start;
    flex-direction: column;
    display: flex;
}
.news-list .news-item:hover{
    border-bottom: solid 1px #00cde1;
    box-shadow: 0 2px 2px rgba(84, 84, 84, 0.5);
}
.news-list .news-img{
    width: 100%;
}
.news-list .news-info{
    width: 100%;
    box-sizing: border-box;
    padding: 35px 25px 0;
    flex-grow: 2;
}
.news-list .news-title{
    color: #292929;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.news-list .news-desc{
    color: #292929;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 35px;
    font-weight: 300;
}
.news-list .news-date{
    color: #9e9e9f;
    font-size: 12px;
    padding: 0 25px 25px;
}
#content .news-list .middle{
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
/***/
.load-more{
    display: block;
    margin: 60px auto;
    text-decoration: none;
    font-size: 14px;
    color: #00cde1;
    text-transform: uppercase;
    width: 160px;
    height: 30px;
    border: solid 1px #00cde1;
    text-align: center;
    line-height: 30px;
    border-radius: 20px;
}

.news-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news-item .title-image{
    height: 550px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.news-item .title-image img{
    width: 100%;
    height: auto;
}
.news-item .title-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-item .title-overlay h1{
    color: white;
    font-size: 36px;
    font-weight: 300;
}
.news-item .news-description{
    margin: 65px 0 45px;
    font-size: 14px;
    font-weight: 300;
    color: #292929;
    line-height: 24px;
}
.news-item .news-description p:not(:last-child){
    margin: 0 0 20px;
}
.news-item .news-gallery{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 0 140px;
}
.news-item .news-gallery .gallery-item{
    max-width: 360px;
    height: 220px;
    overflow: hidden;
    width: auto !important;
}

.news-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;
}
.news-gallery .bx-wrapper a.bx-prev{
    transform: rotate(180deg);
    margin: 0 30px 0 0;
    left: 0;
}
.news-gallery .bx-controls-direction{
    text-align: center;
    margin: 25px 0 0;
}
.news-gallery .bx-wrapper .bx-next{
    right: 0
}

@media screen and (max-width: 760px) {
    #content .news-list .middle{
        margin: 0 auto;
    }
    .news-list .news-item{
        width: 100%;
    }
}