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

.about__title {
    color: #0B342F;
    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 #0B342F;
}

.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: #0B342F;
    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 #0B342F;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

.team__mask.team__mask--img12 {
    background: url('../images/about-us-page/team/summer.png') no-repeat center center;
    background-size: cover;
}
.team__mask.team__mask--img13 {
    background: url('../images/about-us-page/team/klaudia.png') no-repeat center center;
    background-size: cover;
}

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

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

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

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

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

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

.team__mask.team__mask--img20 {
    background: url('../images/about-us-page/team/luke.png') no-repeat center center;
    background-size: cover;
}
.team__mask.team__mask--img21 {
    background: url('../images/about-us-page/team/iri\ .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 #0B342F;
    }

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



}