.hf-heading-wrapper .container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.hf-heading-wrapper .hf-heading {
    padding-left: 5px;
}

.hf-heading-wrapper.lighttext,
.hf-heading-wrapper.lighttext .hf-heading {
    color: #fff;
}

.hf-heading-wrapper.darktext,
.hf-heading-wrapper.darktext .hf-heading {
    color: #000;
}

.hf-heading-wrapper .hf-heading-support {
    flex-basis: 50%;
}

.hf-heading-wrapper .hf-heading-support .link-button-white,
.hf-heading-wrapper .hf-heading-support .link-button-black,
.hf-heading-wrapper .hf-heading-support .link-button-transparent {
    transition: color .6s;
}

.hf-heading-wrapper .hf-heading-support .link-button-white:hover,
.hf-heading-wrapper .hf-heading-support .link-button-white:hover {
    color: rgba(0, 0, 0, 0.6);
}

.hf-heading-wrapper .hf-heading-support .link-button-black:hover {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .hf-heading-wrapper .container {
        flex-direction: column;
    }

    .hf-heading-wrapper .hf-heading-support {
        flex-basis: 100%;
    }
}