.page-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
  
@media (max-width: 1200px) {
    .page-wrapper {
        padding: 0 15px;
    }
}

body {
    padding-top: 0!important;
}

@media (min-width: 1200px) {
    .desktop-hide {
        display: none !important;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        border-bottom: 1px solid transparent;
        padding: 30px 0;
        transition: all 0.3s;
    }

    .header > .page-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header--admin {
        top: 32px;
    }

    .header--sticky {
        padding: 15px 0;
        background-color: #252c56;
        border-color: #6878D6;
        transition: all 0.3s;
    }

    .header__logo {
        cursor: default;
    }
    .header__logo img {
        max-width: 200px;
    }

    .header__nav {
        margin-left: auto;
        margin-right: 15px;
    }

    .header__nav ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .header__nav ul li {
        margin: 0 10px;
        position: relative;
        display: flex;
        align-items: center;
    }
    .header__nav ul li i {
        margin-left: 5px;
        transition: all .3s;
        color: white;
    }

    .header__nav ul li a {
        color: white;
        /* text-transform: uppercase; */
    }
    .header__nav ul li a:hover {
        color: #6878D6;
    }

    .header__nav ul li ul {
        position: absolute;
        background-color: white;
        top: 45px;
        left: 0;
        visibility: hidden;
        opacity: 0;
        padding: 10px;
        border-radius: 0 0 15px 15px;
        transition: all .3s;
    }

    .header__nav ul li:hover ul {
        visibility: visible;
        opacity: 1;
        transition: all .3s;
    }

    .header__nav ul li ul li a {
        color: black;
    }

    .header__nav ul li:hover i {
        color: #6878D6;
        transition: all .3s;
        transform: rotate(180deg);
    }

    .header__btn {
        color: white;
        background-color: #6878D6;
        text-decoration: none;
        padding: 7px 25px;
        font-size: 16px;
        border: 1px solid #6878D6;
        border-radius: 10px;
        display: inline-block;
    }
    .header__btn:hover {
        background-color: #33408a;
        color: white;
        border-color: #33408a;
    }
}
@media (max-width: 1199px) {

    html {
        margin-top: 0!important;
    }

    #wpadminbar {
        display: none!important;
    }

    .mobile-hide {
        display: none !important;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99;
        border-bottom: 1px solid transparent;
        transition: all 0.3s;
        padding: 15px 0;
    }
    /* .header--admin {
        top: 120px;
    } */
    /* .header--admin .header__nav {
        top: 120px !important;
    } */
    .header--sticky {
        border-color: #6878D6;
        background-color: #252c56;
        transition: all 0.3s;
    }

    .header > .page-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header__logo a {
        display: block;
    }
    .header__logo img {
        max-width: 160px;
    }

    .header-icon {
        margin: 0 10px;
        color: white;
        font-size: 22px;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        background-color: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        z-index: 999;
        transition: all 0.3s;
    }
    .header__nav ul {
        width: 280px;
        background-color: #171C22;
        border-left: 1px solid #6878D6;
        padding: 30px;
        padding-top: 100px;
        list-style: none;
        display: flex;
        flex-direction: column;
        height: 100%;
        transform: translateX(100%);
        transition: all 0.3s;
        color: white;
    }
    .header__nav ul li i {
        display: none;
    }
    .header__nav ul li ul {
        padding: 0;
        margin: 0;
        border: none;
        width: auto;
        height: auto;
        transform: none;
    }

    .header__nav ul li a {
        padding: 10px;
        width: 100%;
        display: inline-block;
        text-align: center;
        color: #fff;
    }
    .header__nav.opened {
        visibility: visible;
        opacity: 1;
        transition: all 0.3s;
    }
    .header__nav.opened ul {
        transform: translateX(0%);
        transition: all 0.3s;
    }
    .header .nav-close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border: none;
        color: #6878D6;
        z-index: 999;
    }
    .header .nav-open {
        background-color: transparent;
        border: none;
        font-size: 26px;
        color: #fff;
        padding: 0;
    }
}

body.elementor-editor-active .header {
    display: none!important;
}