h3.home-slider {
    position: relative;
    color: var(--black);
    padding: 0.5rem 40px 0.5rem 0;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
    transition: all ease 0.5s;
}

h3.home-slider:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 15px;
    height: 15px;
    background-image: url('/static/images/link-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.wrap-content {
    margin: 2em 0;
    opacity: 0.2;
    transition: all ease 0.5s;
}

.wrap-content.home-slider-1.hello, .wrap-content.home-slider-2.hello, .wrap-content.home-slider-3.hello {
    opacity: 1;
}

.wrap-content.home-slider-1.hello h3.home-slider, .wrap-content.home-slider-2.hello h3.home-slider, .wrap-content.home-slider-3.hello h3.home-slider {
    color: var(--gold);
}