.top-title{
    margin-top: 0;
    margin-bottom: 30px;
    font-family: "Yanone Kaffeesatz",sans-serif;
    color: var(--accent-title);
    line-height: 1;
    font-size: 96px;
    text-transform: uppercase;
    font-weight: 700;
}
h1{
    font-size: 75px;
}
.team__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.team__item, .team__item:first-child{
    width: 100%;
}
@media (max-width: 1200px) {
    .top-title {
        font-size: 70px;
    }
    h1{
        font-size: 47px;
    }
    .team__list{
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 1000px) {
    .team__list{
        gap: 20px;
    }
}

@media (max-width: 760px) {
    .top-title {
        font-size: 56px;
    }
    .team__list{
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}
/*@media (min-width: 1200px) {*/
/*    .team__item, .team__item:first-child{*/
/*        width: 31.5%;*/
/*        margin-top: 40px;*/
/*        margin-right: 40px;*/
/*    }*/
/*}*/