:root {
    --theme-color: #bf930f;
    --body-bg: #0c2830;
    --tertiary-color: #1c4c5a;
    --body-color: #d8dbdc;
}

body {
    margin: 0;
    font-size: 16px;
    background: var(--body-bg);
    overflow-x: hidden;
}

/* ======================
HEADER TOP
====================== */

.header-top {
    background: var(--body-bg);
    border-bottom: 1px solid var(--tertiary-color);
    padding: 10px 0;
}

.header-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-links li {
    display: inline-block;
    position: relative;
    color: var(--body-color);
    font-size: 14px;
}

.header-links li:not(:last-child) {
    margin-right: 30px;
}

.header-links li:not(:last-child):after {
    content: "";
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    right: -15px;
    top: 6px;
}

.header-links a {
    color: var(--body-color);
    text-decoration: none;
}

.header-links a:hover {
    color: var(--theme-color);
}

.header-links i {
    color: var(--theme-color);
    margin-right: 6px;
}

/* ======================
MENU
====================== */

.menu-area {
    background: var(--body-bg);
    border-bottom: 1px solid var(--tertiary-color);
}

.header-main-menu ul {
    margin: 0;
    padding: 0;
}

.header-main-menu li {
    display: inline-block;
    list-style: none;
    margin: 0 18px;
}

.header-main-menu a {
    color: #d8dbdc;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

.header-main-menu > ul > li > a {
    padding: 35px 0;
    display: block;
}

.header-main-menu > ul > li > a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--theme-color);
    transition: 0.3s;
}

.header-main-menu > ul > li > a:hover {
    color: var(--theme-color);
}

.header-main-menu > ul > li > a:hover:before {
    width: 100%;
}

/* ======================
LOGO
====================== */

.header-logo {
    padding: 20px 20px 45px;
    margin-top: -60px;
}

.header-logo img {
    width: auto;
    max-width: 160px;
}

/* ======================
BUTTONS
====================== */

.header-button {
    display: flex;
    align-items: center;
}

.th-btn2 {
    padding: 15px 24px;
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
}

.mobile-toggle-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 8px;
    background: var(--theme-color);
    color: #fff;
    font-size: 22px;
}

/* ======================
CUSTOM OFFCANVAS
====================== */

.mobile-menu-wrapper {
    position: fixed;
    left: -320px;
    top: 0;
    width: 300px;
    height: 100%;
    background: #112e2e;
    z-index: 99999;
    transition: 0.4s;
}

.mobile-menu-wrapper.show {
    left: 0;
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li a {
    display: block;
    padding: 16px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-menu li a:hover {
    padding-left: 25px;
    color: var(--theme-color);
}

.logo {
    background: url(https://html.themehour.net/rotal/demo/assets/img/logo-shape.png);
    background-repeat: no-repeat;
    padding: 20px 8px 44px;
    margin-top: -63px;
}


/* ======================
RESPONSIVE
====================== */

@media (max-width: 1199px) {
    .header-main-menu {
        display: none;
    }

    .header-logo {
        background: none;
        margin-top: 0;
        padding: 15px 0;
    }

    .th-btn2 {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .header-logo img {
        width: 130px;
    }
}
