.footer__bots {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 50px;
}

.footer__bots-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;
    text-decoration: none;
    color: #1c1c1c;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s ease;
}

.footer__bots-link:hover {
    opacity: 0.6;
}

.footer__bots-link span {
    display: block;
    position: relative;
    padding-right: 12px;
    border-right: 1px solid #1c1c1c;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #1c1c1c;
}

.hero__inner img {
    width: 600px;
}

@media(max-width: 768px) {
    .footer__bots-link {
        flex-direction: column;
        align-items: start;
        gap: 6px;
    }
    
    .footer__bots-link span {
        padding-right: 0;
        border-right: none;
    }
}