.about-team{
    text-align: center;
}

.about-team__description{
    width: 55%;
    margin: 0 auto;
    line-height: 1.7;
}

.team__container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
    padding-bottom: 100px;
}

.team{
    padding-top: 0;
}
.team__associate{
    width: 260px;
    margin-top: 40px;
}


.associate__photo{
    /*background: #444;*/
}

.associate__photo img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.associate__name,
.associate__position,
.associate__text{
    text-align: center;
    line-height: 19px;
}

.associate__item-info{
    margin-top: 10px;
}

.associate__item-info .associate__name{
    font-size: 18px;
}
.associate__position{
    color: #727272;
    font-size: 14px;
}
.associate__text{
    font-size: 14px;
}


@media screen and (max-width: 1150px){
    .team__container{  
        justify-content: space-around;
    }

    .about-team__description{
        width: 70%;
    }
    .team__associate:nth-child(3){
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px){
    .about-team__description{
        width: 85%;
    }
}

@media screen and (max-width: 580px){
    .about-team__description{
        width: 100%;
    }
    .team__associate:nth-child(2){
        margin-top: 40px;
    }
}




