.title-8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
}

.title-8 .category__title {
    font-size: 92px;
    color: var(--secondary-color);
    font-family: var(--custom-font) !important;
    position: relative;
    margin-bottom: 0;
    line-height: 1.2;
}

.title-8 .category__title a {
    color: inherit;
    font-family: inherit;
    line-height: 1.2;
}

.title-8 .view__more {
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 16px;
    color: #111;
    font-weight: 500;
    font-family: var(--quicksand-font);
    transition: all 300ms ease-in-out;
}

.title-8 .view__more::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--theme-color);
    left: -30px;
}

.title-8 .view__more:hover {
    color: var(--theme-color);
}

.title-8 .view__more svg {
    font-size: 16px;
    display: flex;
}

@media (max-width: 1440px) {
    .title-8 .category__title {
        font-size: 72px;
    }
}

@media (max-width: 992px) {
    .title-8 .category__title {
        font-size: 52px;
    }
}

@media (max-width: 575px) {
    .title-8 .category__title {
        font-size: 42px;
    }
}