.heroes {
    margin-top: 80px;
    margin-bottom: 110px;
    position: relative;
    background: url("../inc/heroes/assets/hero_bg.png") right no-repeat;
}

.heroes:after {
    content: 'Герои';
    text-transform: uppercase;
    line-height: 0;
    color: #f4f4f4;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 15vw;
    z-index: -1;
}

.heroes > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heroes__title {
    font-size: 48px;
    color: #0087b5;
    text-align: center;
    font-weight: 400;
}

.heroes__icon-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.heroes__control-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.heroes__control {
    border-radius: 30px;
    background-color: #f0f0f0;
    border: 1px solid #d0d0d0;
    width: 13%;
    padding: 15px 30px;
    cursor: pointer;
    white-space: nowrap;
}

.heroes__control.active {
    background-color: #0087b5;
    color: #fff;
    font-weight: 600;
    border: 1px solid #0087b5;
}

.heroes__box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 20px;
}

.hero {
    width: calc(100% / 4 - 30px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-style: italic;
}

.hero .hero__avatar {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    border: 1px solid #eee;
}

.hero__avatar img {
    width: 100%;
    object-fit: scale-down;
    border-radius: 50%;
    transform: scale(2);
}

.hero__name {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #04759c;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
}

.hero__rank {
    font-size: 16px;
    color: #bababa;
}

.hero__load-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    border-radius: 29px;
    padding: 10px 15px;
    font-weight: bold;
    text-align: center;
    background-color: #0087b5;
    margin: 30px 0;
    width: 30%;
    cursor: pointer;
}

@media screen and (max-width: 1600px){
    .hero {
        width: calc(100%/4 - 30px);
    }
}

@media screen and (max-width: 900px) {
    .hero__load-btn {
        width: 100%;
    }

    .hero {
        width: 150px;
    }

    .hero .hero__avatar {
        width: 100%;
        height: 150px;
        padding-top: 50px;
    }

    .hero__avatar img {
        width: 100%;
    }

    .heroes:after {
        content: '';
    }

    .heroes__control-box {
        width: 100%;
    }

    .heroes__control {
        width: 50%;
    }

    .heroes  {
        margin-top: 0;
    }
}

.heroes__box {
    width: 100%;
}