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

.krs-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 9999;
}

@media (min-width: 768px) {

    .krs-header {
        position: sticky;
        top: 0;
    }

}

.krs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: .5vw 15vw;
    box-sizing: border-box;
}

@media (max-width: 767px) {

    .krs-header-inner {
        padding: 2vw;
    }

}

.krs-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.krs-logo img {
    display: block;
    width: auto;
    max-width: 220px;
    height: auto;
}

/* =========================
   NAVIGATION
========================= */

.krs-nav {
    display: flex;
    align-items: center;
}

.krs-menu {
    display: flex;
    align-items: center;
    gap: 32px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.krs-menu li {
    position: relative;
}

.krs-menu a {
    display: block;

    text-decoration: none;

    color: #111111;
    font-size: 16px;
    font-weight: 600;

    transition: opacity .2s ease;
}

.krs-menu a:hover {
    opacity: .7;
}

/* =========================
   DROPDOWN
========================= */

.krs-submenu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    margin: 0;
    padding: 12px 0;

    background: #ffffff;
    border: 1px solid #e5e5e5;

    list-style: none;

    opacity: 0;
    visibility: hidden;

    transition: all .2s ease;
}

.krs-account-dropdown:hover .krs-submenu {
    opacity: 1;
    visibility: visible;
}

.krs-submenu li {
    width: 100%;
}

.krs-submenu a {
    padding: 10px 16px;
    white-space: nowrap;
}

.krs-submenu a:hover {
    background: #f5f5f5;
}

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

.krs-menu-toggle {
    display: none;

    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;

    color: #111111;
    font-size: 34px;
    line-height: 1;

    cursor: pointer;
}

@media (max-width: 767px) {

    .krs-menu-toggle {
        display: block;
    }

    .krs-nav {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        background: #ffffff;
        border-top: 1px solid #e5e5e5;
    }

    .krs-nav.active {
        display: block;
    }

    .krs-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;

        padding: 20px;
    }

    .krs-menu li {
        width: 100%;
    }

    .krs-menu a {
        width: 100%;
        padding: 14px 0;
    }

    .krs-submenu {
        position: static;

        min-width: 100%;

        padding-left: 16px;

        border: 0;

        opacity: 1;
        visibility: visible;

        display: block;
    }

}

/* =========================
   CONTENT WRAPPER
========================= */

.site-wrapper {
    width: 100%;
    min-height: calc(100vh - 120px);
}

.site-content {
    width: 100%;
}

/* =========================
   FOOTER
========================= */

.krs-footer {
    background: #000000;
    padding: 20px;
}

.krs-footer-inner {
    text-align: center;

    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}