header {
    background: #fff;
}

header nav {
    background: var(--li-purple);
    color: #fff;
}

header nav ul {
    display: flex;
    justify-content: center;
}

header nav ul li {
    padding: 0;
    margin: 0;
}

header nav ul li:before {
    display: none;
}

header nav ul li a {
    color: #fff;
    padding: 1rem 2rem;
    display: block;
}

header nav ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6.5rem;
}

.header-top [class*="header-"] {
    display: flex;
    align-items: center;
}

.header-top a {
    display: flex;
    align-items: center;
}

.header-top .site-logo.fixed {
    position: fixed;
    top: 0;
    left: 8.33333%;
    height: 56px;
    z-index: 9999;
    transition: none;
    animation-name: fadeIn;
    animation-duration: 0.5s;
}

.header-right {
    justify-content: space-between;
}

.header-right a:not(.btn) {
    color: var(--li-purple);
    margin-right: 1rem;
}

.header-right img {
    max-height: 1.5rem;
    margin-right: .5rem;
}

.header-right .btn.fixed {
    position: fixed;
    top: 8px;
    right: 8.33333%;
    z-index: 9999;
    margin: 0;
    transition: none;
    animation-name: fadeIn;
    animation-duration: 0.5s;
    background: #fff;
    color: var(--li-purple);
}

.header-right .btn.fixed::after {
    display: none;
}

.btn-search {
    border: none;
    background: 0 0;
    font-weight: 300;
    margin-right: 1rem;
    color: var(--li-purple);
    display: flex;
    align-items: center;
}

.btn-search i {
    font-size: 1.5rem;
    margin-right: .5rem;
}

.search-form {
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.search-form .btn-search {
    border: 1px solid var(--li-purple);
    border-radius: 2rem;
    padding: .5rem 1rem;
    background: var(--li-purple);
    color: #fff;
    margin-right: 0;
    min-width: 10rem;
    justify-content: center;
}

.search-form input[type="text"] {
    margin-bottom: 0;
    margin-right: 5rem;
    margin-left: 5rem;
}

.search-form .close-search {
    border: none;
    background: transparent;
    font-size: 1.5rem;
}

.search-area {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    background: #fff;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

header .latest-events {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 2rem;
}

header .latest-events span {
    margin-right: .5rem;
    font-weight: 700;
    color: var(--li-purple);
}

header .latest-events a {
    color: #373737;
    display: inline-block;
}

@media(max-width: 1499px) {
    .header-top .site-logo.fixed {
        left: 15px;
    }
    .header-right .btn.fixed {
        right: 15px;
    }
}

@media(max-width: 1199px) {
    .header-top .site-logo.fixed img {
        height: 2.5rem;
    }
    .header-right .btn.fixed {
        right: 15px;
        min-width: unset;
        padding: .5rem 1rem;
    }

    header .sticky nav ul li a {
        padding: 1rem;
        font-size: .9rem;
    }
}

@media (max-width: 991px) {
    .header-right {
        position: absolute;
        top: 6rem;
        z-index: 9999;
        right: 15px;
    }
    .header-top .site-logo.fixed {
        left: 5rem;
    }
    .header-right a:not(.btn) {
        color: #fff;
    }
    .header-right .btn.fixed {
        margin: 0;
        padding: .5rem 1rem;
        min-width: auto;
    }
    .header-right .btn:after {
        display: none;
    }
    .header-right .btn.fixed {
        animation: unset;
    }
    header .latest-events {
        padding: 0 0 0 2rem;
    }
    .btn-search {
        color: #fff;
    }
}

@media(max-width: 767px) { 
    header .latest-events {
        display: block;
        font-size: .8rem;
    }
}

@media(max-width: 575px) {
    .header-top .header-center {
        display: none;
    }
    .header-right {
        top: 7.5rem;
    }
    .header-right .btn {
        position: absolute;
        right: 0;
        top: -5.5rem;
        margin: 0;
    }
    .btn-search {
        display: none;
    }
}