.back {
    display: flex;
    align-items: center;

    padding-top: 73px;
    padding-bottom: 48px;
}

.back__link {
    position: relative;

    padding-left: 21px;

    color: #007bfb;
    font-size: 10px;
    font-weight: 700;

    transition: color 0.25s;
}

.back__link:hover {
    color: #0c4782;

    transition: color 0.25s;
}

.back__link::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    font-family: 'Material Design Icons';
    font-size: 18px;
    font-weight: 300;

    transition: left 0.25s, color 0.25s;
}

.back__link:hover::before {
    left: -3px;

    transition: left 0.25s, color 0.25s;
}

.back__path {
    padding-left: 30px;

    color: #a7abb7;
    font-size: 10px;
}

.back__name-link {
    color: #007bfb;
    text-decoration: underline;

    transition: color 0.25s;
}

.back__name-link:hover {
    color: #0c4782;

    transition: color 0.25s;
}

@media (max-width: 768px) {
    .back {
        padding-top: 42px;
        padding-bottom: 30px;
    }

    .back__path {
        padding-left: 10px;
    }
}
