.site-header {
    background: #fff;
    padding: 16px 0;
    position: fixed;
    z-index: 99999;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.25);
}

.site-header .inner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-header .inner-content .site-logo img {
    width: 200px;
    height: 86px;
}

.site-header .inner-content .site-menu ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.site-header .inner-content .site-menu ul li {
    padding: 0 20px;
}

.site-header .inner-content .site-menu ul li a {
    color: #3c3c3c;
    font-size: 16px;
    font-weight: 700;
    transition: 0.5s;
}

.site-header .inner-content .site-menu ul li a:hover {
    color: #5ca9fb;
}

.site-header .inner-content .site-menu ul li a.active {
    color: #5ca9fb;
}

.site-header .inner-content .site-menu ul li:last-child a:hover {
    color: unset;
}

.site-header .inner-content .site-menu .login-btn a {
    font-family: "Lato", sans-serif;
    text-transform: capitalize;
    background-color: #5ca9fb !important;
    background-image: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%) !important;
    color: rgb(255, 255, 255);
    border-radius: 10px;
    width: 80px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

@media (max-width:1024px) {
    .site-header {
        padding: 20px 0;
        background: #FFFFFF;
        position: fixed;
    }

    .menu-toggle span {
        width: 30px;
        height: 2px;
        background: #ff9000;
        margin-bottom: 6px;
        transition: all .4s ease;
        display: block;
        position: relative;
        transform-origin: 0 0;
        border-radius: 2px;
        z-index: 999;
    }

    .menu-toggle span:last-child {
        margin-bottom: 0px;
    }

    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(-8px, -2px);

    }

    .menu-toggle.active span:nth-child(2) {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: unset;
    }

    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(-9px);
    }

    .site-menu {
        left: -100%;
        position: fixed;
        background: #b4b4b4;
        width: 100% !important;
        top: 0;
        height: 100vh;
        padding: 120px 0 20px;
        z-index: 99;
        transition: all .5s linear;
        top: 0;
    }

    .site-menu.active {
        left: 0;
    }

    .site-header .inner-content .site-logo img {
        width: 160px;
        position: relative;
        z-index: 999;
    }

    .site-header .inner-content .site-menu ul {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 0px;
    }

    .site-header .inner-content .site-menu ul li {
        margin: 0 0 16px;
        width: 100%;
    }

    .site-header .inner-content .site-menu ul li:last-child {
        margin: 0;
    }
}