/* =========================================================
   HEADER
========================================================= */

/* =========================================================
   HEADER
========================================================= */

.rs-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 94px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e9e6f1;
    box-shadow: 0 3px 18px rgba(22, 25, 31, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rs-header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.rs-logo img {
    width: 170px;
    height: auto;
}

.rs-navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.rs-navigation > a {
    position: relative;
    color: #202229;
    font-size: 15px;
    font-weight: 600;
    transition: color .2s ease;
}

.rs-navigation > a:not(.rs-login)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--rs-purple);
    transition: width .2s ease;
}

.rs-navigation > a:hover {
    color: var(--rs-purple);
}

.rs-navigation > a:hover::after {
    width: 100%;
}

.rs-navigation .rs-login {
    color: #fff;
    padding: 15px 28px;
    border-radius: 30px;
    background: linear-gradient(90deg, #043069, #043069);
    box-shadow: 0 10px 25px rgba(143, 47, 236, .20);
}

.rs-navigation .rs-login:hover {
    color: #fff;
    transform: translateY(-1px);
}

.rs-mobile-toggle {
    display: none;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 8px;
    background: var(--rs-blue);
    cursor: pointer;
}

.rs-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}
.rs-mobile-toggle {
    position: relative;
}

.rs-mobile-toggle span {
    transition: transform .25s ease, opacity .2s ease;
}

/* When menu is open */
.rs-mobile-toggle.rs-toggle-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.rs-mobile-toggle.rs-toggle-open span:nth-child(2) {
    opacity: 0;
}

.rs-mobile-toggle.rs-toggle-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.rs-navigation > a.rs-active {
    color: var(--rs-purple);
}

.rs-navigation > a.rs-active::after {
    width: 100%;
}