.about-page{
    width: 100%;
}
.img-about{
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.img-about.second{
    background-image: url('../../img/news.png');
}
.img-about .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-about .text{
    width: 80%;
    text-align: center;
    color: white;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}
.img-about.first .text{
    font-size: 36px;
    line-height: 50px;
}
.img-about.first .text .bold,
.img-about.first .text b{
    font-size: 48px;
    font-weight: 400;
}
.description{
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}
.description.team-list{
    width: 100%;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}
.description.grey-bg{
    background: #f0f0f0;
}

#content .team-list .team-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;
}
#content .team-list .team-item:last-child{
    margin: 0 0 30px 0;
}
#content .team-list .team-item .team-img{
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: all .5s;
}
#content .team-list .team-item .team-img:hover{
    -webkit-filter: none; /* Safari 6.0 - 9.0 */
    filter: none;
}
#content .team-list .team-item .team-img img{
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#content .team-list .team-item:hover{
    border-bottom: solid 1px #00cde1;
    box-shadow: 0 2px 2px rgba(84, 84, 84, 0.5);
}
#content .team-list .team-info{
    width: 100%;
    box-sizing: border-box;
    padding: 35px 25px 0;
    flex-grow: 2;
}
#content .team-list .team-name{
    color: #292929;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#content .team-list .team-desc{
    color: #292929;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 35px;
    font-weight: 300;
    width: auto;
}
#content .team-list .team-position{
    color: #9e9e9f;
    font-size: 12px;
    padding: 0 25px 25px;
    width: auto;
}

#content .description .middle{
    flex-direction: row;
    justify-content: space-between;
}
#content .description .image{
    width: 560px;
    overflow: hidden;
}
#content .description .image img{
    width: 100%;
}
#content .description .text,
#content .description p{
    width: 480px;
    color: #292929;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}
#content .description .text .bold,
#content .description .text b{
    font-weight: 400;
}
.img-about.second .text{
    font-size: 16px;
}
.img-about.second .text .about-link{
    color: #00cde1;
}
#content .description.full-text .middle{
    display: block;
}
#content .description.full-text .middle p{
    width: 100%;
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 300;
}
#content .description.full-text .middle p.big{
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 35px;
}

@media screen and (max-width: 1100px){
    #content .description .image,
    #content .description .text,
    #content .description > p{
        width: 45%;
    }
    #content .description p{
        width: 100%;
    }
}
@media screen and (max-width: 720px) {
    .description.team-list{
        display: block;
    }
    #content .team-list .team-item,
    #content .team-list .team-item:last-child{
        width: 50%;
        margin: 0 auto 30px;
    }
    #content .team-list .team-item .team-img{
        -webkit-filter: none; /* Safari 6.0 - 9.0 */
        filter: none;
    }
}
@media screen and (max-width: 680px) {
    .img-about{
        height: 300px;
    }
    .img-about.first .text {
        font-size: 23px;
        line-height: 32px;
    }
    .img-about.first .text .bold, .img-about.first .text b{
        font-size: 24px;
    }
    .description{
        padding: 40px 0;
    }
}
@media screen and (max-width: 620px) {
    #content .team-list .team-item, #content .team-list .team-item:last-child {
        width: 100%;
    }
}
@media screen and (max-width: 430px) {
    #content .description .middle{
        flex-direction: column;
    }
    #content .description .image, #content .description .text, #content .description p{
        width: 100%;
        margin: 0 0 20px;
    }
    #content .description .image{
        height: 200px;
        text-align: center;
    }
    #content .description .image img{
        width: auto;
        max-height: 100%;
        max-width: 100%;
    }
}