.about {
    padding: 70px 0 80px 0;
    background-color: #FAFAFA;
    width: 100%;
    box-sizing: border-box;
}

.about__title {
    color: #636B2F;
    margin-bottom: 35px;
}

.about__two-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__text-col {
    flex: 1;
    color: #777777;
    font-size: 18px;
    line-height: 28px;
}

.about__text {
    padding-left: 120px;
}

.about__img-col {
    position: relative;
    flex: 1;
}

.about__img-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 15px 15px 0px #636B2F;
}

.about__img-container img {
    width: 100%;
    display: block;
    height: 420px;
    object-fit: cover;
}

.team {
    text-align: center;
    padding-top: 70px;
    width: 100%;
    box-sizing: border-box;
}

.team__title {
    color: #636B2F;
    margin-bottom: 40px;
}

.team__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.team__item {
    flex: 0 0 33.333333%;
    text-align: center;
    align-self: stretch;
    min-height: 400px;
    position: relative;
    margin-bottom: 40px;
}

.team__name {
    font-size: 19px;
    line-height: 28px;
    margin-top: 20px;
    display: block;
    font-weight: 700;
}

.team__info {
    font-size: 16px;
    line-height: 24px;
    color: #777777;
    max-width: 310px;
    margin: 10px auto 0;
}

.team__mask {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: auto;
    border: 3px solid #EBCFA8;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.team__mask.team__mask--img1 {
    background: url('../images/about-us-page/lisa.png') no-repeat center center;
    background-size: cover;
}

.team__mask.team__mask--img2 {
    background: url('../images/about-us-page/paula.png') no-repeat center center;
    background-size: cover;
}

.team__mask.team__mask--img3 {
    background: url('../images/about-us-page/grace.png') no-repeat center center;
    background-size: cover;
}

.team__mask.team__mask--img4 {
    background: url('../images/about-us-page/ellie.png') no-repeat center center;
    background-size: cover;
}

.team__mask.team__mask--img5 {
    background: url('../images/about-us-page/imogen.png') no-repeat center center;
    background-size: cover;
}


@media screen and (max-width: 1024px) {

    .about {
        padding: 30px 0 50px 0;
    }

    .about__img-container img {
        height: 350px;
    }

    .about__text {
        padding: 0 20px 0 40px;
    }


}

@media screen and (max-width: 800px) {
    .about__two-col {
        flex-direction: column-reverse;
    }

    .about__img-container img {
        height: 280px;
    }

    .team__item {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 480px) {

    .about {
        padding: 40px 0 50px 0;
    }

    .about__title {
        margin-bottom: 20px;
    }

    .about__text-col {
        font-size: 16px;
        line-height: 26px;
    }

    .about__text {
        padding-left: 0;
    }

    .about__img-col {
        margin-top: 30px;
        margin-right: 10px;
    }

    .about__img-container {
        box-shadow: 8px 8px 0px #f1cdc1;
    }

    .about__img-container img {
        height: 265px;
    }



}