nav {
    display: flex;
    align-items: center;
    /* margin-top: 1rem; */
    /* height: 60px; */
    padding: 18px 0px;
}

.logo .mobile,
.toggler,
.toggler-close {
    display: none;
}

.logo img {
    width: 10rem;
}
 nav {
    display: flex !important;
    align-items: center; 
 }
.cate-name {
    margin-left: 4rem;
    margin-right: 0rem;
}
.container-fluid{
    padding: 0 !important;
}
.nav-links {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links button {
    background-color: transparent;
    border: transparent;
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    color: #202b50;
    font-style: normal;
    font-weight: 400;
}

.nav-links button:hover {
    background: -webkit-linear-gradient(180deg, #45B9D5, #81CA73);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media screen and (max-width: 1024px) {
    nav .logo {
        margin: 0;
        position: absolute;
        left: 50%;
        top: 0%;
        transform: translate(-50%, 10%);
        padding: 10px;
    }
    .nav-links {
        width: 50%;
        margin: 0 !important;
    }
    .social-media-icon,
    .logo .pc {
        display: none;
    }
    .header {
        height: 60px;
        margin: 0;
        /* padding: 0px 1rem; */
        background: #F9FAFF;
        box-shadow: 0px 3px 6px rgba(199, 208, 255, 0.1);
    }
    .header nav{
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        left: 0px;
        top: 0px;
    }
    .nav-links {
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
        height: fit-content;
        padding: 4rem 0px 2.5rem 0px !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 2.5rem;
        border-radius: 30px 0% 0% 30px;
        z-index: 2;
        display: none;
        transition: display 0.2s ease;
        background: #F9FAFF;
        box-shadow: -3px 3px 6px rgba(32, 43, 80, 0.03);
        border-radius: 0px 0px 0px 30px;
    }
    .cate-name {
        margin: 0 !important;
    }
    .nav-links li {
        opacity: 0;
    }
    .nav-links button {
        color: #202b50;
        z-index: 1;
    }
    .nav-links button:hover::after {
        left: -50%;
        width: 200%;
        height: 400%;
        z-index: -1;
        position: absolute;
        top: -150%;
        border-radius: 10px;
    }
    .logo .mobile {
        width: 100%;
    }
    .toggler,
    .logo .mobile {
        display: block;
        cursor: pointer;
    }
    .toggler {
        position: absolute;
    transition: all 0.5s ease;
    right: 15px;
    top: 20px;
    }
    .toggler-close {
        display: none;
        position: absolute;
        right: 15px;
        z-index: 2;
        transition: all 0.5s ease;
        top: 20px;
        z-index: 101;
    }
}

.nav-active {
    display: flex;
    animation: nav_in 0.3s ease-in;
    z-index: 100;
}

@keyframes nav_links_fade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes nav_in {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}
/* 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    border-radius: 10px;
    background-color: transparent;
}

body::-webkit-scrollbar {
    width: 2px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    background-color: #202b50;
} */
.container{
    max-width: 1200px;
}