/* Underline stable */
.underline-stable {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    color: #F28123;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: normal;
    font-size: 15px;
}
.underline-stable::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: currentColor;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

/* Footer general styles */
.footer-area {
    background-color: #222;
    color: #ccc;
    padding: 40px 0;
    direction: var(--dir);
    text-align: var(--text-align);
    font-family: var(--font-family);
}

.footer-box h2.widget-title {
    margin-bottom: 20px;
    color: #F28123;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: var(--padding-left);
    padding-right: var(--padding-right);
    direction: var(--dir);
}

.footer-box ul li::before {
    content: "<";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    direction: ltr;
    font-weight: bold;
    color: #F28123;
    user-select: none;
    left: var(--arrow-left);
    right: var(--arrow-right);
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-box ul li a:hover {
    text-decoration: underline;
    color: #F28123;
}

.copyright {
    background-color: #111;
    color: #777;
    padding: 15px 0;
    font-size: 14px;
    direction: var(--dir);
    text-align: center;
    font-family: var(--font-family);
}

.copyright a {
    color: #F28123;
    text-decoration: none;
}
