.teams {
    position: relative;
    z-index: 9;
}

.teams-gradient{
    position: absolute;
    width: 760px;
    height: 760px;
    bottom: -350px;
    right: -20%;
    z-index: 0;
}

.teams .form{
    margin: 0 auto;
    z-index: 1;
}

.teams__people{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 50px 0 0;
}

.teams__item{
    position: absolute;
    max-width: 100px;
    text-align: center;
    font-size: var(--font--small);
}

.teams__position{
    opacity: .3;
}

.teams__img{
    border: 3px solid var(--color--white);
    overflow: hidden;
    -webkit-box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    margin: 5px auto;
}

.teams__img img{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.teams__img._min{
    width: 86px;
    height: 86px;
    border-radius: 30px;
}

.teams__img._medium{
    width: 102px;
    height: 102px;
    border-radius: 36px;
}


.teams__item:first-child{
    top: 170px;
    left: 0;
}

.teams__item:nth-child(2){
    top: 40px;
    left: 150px;
}

.teams__item:nth-child(3){
    left: 150px;
    top: 280px;
}

.teams__item:nth-child(4){
    top: 170px;
    left: 290px;
}


@media screen and (max-width: 1024px){
    .teams__people{
        height: 370px;
        max-width: 445px;
        margin: 0 auto;
    }

    .teams .form {
        margin: 60px auto -20px;
    }

    .teams__item:first-child {
        top: 130px;
        left: 0;
    }

    .teams__item:nth-child(3) {
        left: calc(50% - 48px);
        top: 240px;
    }

    .teams__item:nth-child(2) {
        left: calc(50% - 52px);
        top: 40px;
    }

    .teams__item:nth-child(4) {
        right: 0;
        left: auto;
        top: 130px;
    }
}

@media screen and (max-width: 560px){
    .teams__people{
        max-width: 335px;
    }

    .teams__item{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 96px;
        font-size: 12px;
    }

    .teams__img._big {
        width: 96px;
        height: 96px;
        border-radius: 36px;
    }

    .teams__item:nth-child(1) .teams__img, .teams__item:nth-child(3) .teams__img, .teams__item:nth-child(4) .teams__img {
        width: 80px;
        height: 80px;
        border-radius: 32px;
    }

    .teams__item:nth-child(3) {
        top: 240px;
        left: calc(50% - 48px);
    }

    .teams__item:nth-child(2) {
        top: 0;
        left: calc(50% - 40px);
    }

}

@media screen and (max-width: 375px){

}