/* ==========================
   HEADER
========================== */

.rlp-header {
    width: 100%;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 100;
}

.rlp-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
}

.rlp-header-inner {
    height: 82px;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    column-gap: 40px;
}

/* ==========================
   LOGO
========================== */

.rlp-logo {
    display: flex;
    align-items: center;
}

.rlp-logo img {
    max-height: 80px;
    width: auto;
    transition: .3s ease;
}

.rlp-logo img:hover {
    transform: scale(1.03);
}

/* ==========================
   NAVIGATION
========================== */

.rlp-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rlp-menu li {
    list-style: none;
}

.rlp-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .4px;
    transition: color .25s ease;
    position: relative;
}

.rlp-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width .25s ease;
}

.rlp-menu a:hover {
    color: #d4af37;
}

.rlp-menu a:hover::after {
    width: 100%;
}

/* ==========================
   ACTIONS
========================== */

.rlp-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.rlp-action {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: .25s ease;
}

.rlp-action:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.rlp-action svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

/* ==========================
   MOBILE BUTTON
========================== */

.rlp-mobile-toggle {
    display: none;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {

    .rlp-header-inner {
        grid-template-columns: 1fr auto auto;
        height: 72px;
    }

    .rlp-navigation {
        display: none;
    }

    .rlp-mobile-toggle {
        display: flex;
        margin-left: 20px;
    }

}