.biography__contacts-block_mob {
    display: none;
}

.biography__select {
    display: none;
}

.main-title {
    font-size: 40px;
    margin-bottom: 50px;
}

.biography__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.biography__info {
    font-weight: 700;
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 50px;
}

.biography__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.biography__tab-button {
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--grey7);
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 15px 20px;
}

@media (any-hover: hover) {
    .biography__tab-button:hover {
        color: var(--white);
        background-color: var(--dark-grey);
    }
}

.biography__tab-button:active {
    color: var(--white);
    background-color: var(--dark-grey);
}

.biography__tab-button.active {
    color: var(--white);
    background-color: var(--dark-grey);
}

.biography__about {
    display: flex;
    flex-direction: column;
    gap: 15px;

    font-size: 18px;
    max-width: 700px;
}

.biography__contacts-block_desk {
    max-width: 320px;
}

.biography__img-wrap {
    max-width: 320px;
    width: 100%;
    margin-bottom: 26px;
}

.biography__contacts-title {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 50px;
}

.biography__links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.biography__text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.biography__text a {
    color: inherit;
    transition: all 0.3s ease;
}

@media (any-hover: hover) {
    .biography__text a:hover {
        color: var(--grey4);
    }
}

.biography__text a:active {
    color: var(--grey4);
}

.biography__icon-wrap {
    max-width: 20px;
    width: 100%;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .biography__contacts-block_desk {
        display: none;
    }

    .biography__contacts-block_mob {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 26px;
        margin-bottom: 40px;
    }

    .biography__img-wrap {
        margin-bottom: 0;
    }

    .biography__about,
    .biography__info {
        max-width: unset;
    }
}

@media (max-width: 890px) {
    .biography__header {
        display: none;
    }

    .biography__select {
        display: block;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .biography__info,
    .biography__contacts-title {
        margin-bottom: 30px;
    }

    .biography__about {
        font-size: 16px;
    }

    .biography__img-wrap {
        max-width: unset;
    }
}
