.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 7;
    // box-shadow: 0 10px 35px -3px rgba(0,0,0,0.1);
    // background-color: #fff;
    height: auto;
    padding: 8px 0;
    .header_wrapper{
        // border: 1px solid #c3c3c3ce;
        display: flex;
        align-items: center; 
        justify-content: space-between;
        margin: 0 auto;
        .header_logo{
            img{
                max-height: 75px;
                width: auto;
                object-fit: contain;
            }
        }
        .header_content{
            display: flex;
            align-items: center;
            ul{
                padding-right: 30px;
                li{
                    display: inline-block;
                    padding-left: 20px;
                    a{
                        font-size: 15px;
                        font-weight: 400;
                        color: #eeeeee;
                        text-transform: uppercase;
                        cursor: pointer;
                        &:hover{
                            color: $secondaryColor;
                        }
                    }
                }
            }
            .profile_avatar{
                height: 42px;
                width: 42px;
                background-color: red;
                border-radius: 50%;
                color: $whiteColor;
                font-size: 15px;
                font-weight: 500;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
                font-family: "Inter", sans-serif;
                border: 2px solid #fff;
                img{
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }
            }
            .login_btn{
                font-size: 15px;
                font-weight: 500;
                color: $whiteColor;
                background-color: $secondaryColor;
                border-radius: 35px;
                padding: 6px 30px;
                cursor: pointer;
                margin-left: 12px;
            }
        }
    }
}

.header_2{
    width: 100%;
    z-index: 2;
    box-shadow: 0 10px 35px -3px rgba(0,0,0,0.1);
    background-color: $primaryColor;
    height: auto;
    padding: 8px 0;
    .header_wrapper{
        // border: 1px solid #c3c3c3ce;
        display: flex;
        align-items: center; 
        justify-content: space-between;
        margin: 0 auto;
        .header_logo{
            img{
                max-height: 60px;
                width: auto;
                object-fit: contain;
            }
        }
        .header_content{
            display: flex;
            align-items: center;
            ul{
                padding-right: 30px;
                li{
                    display: inline-block;
                    padding-left: 20px;
                    a{
                        font-size: 15px;
                        font-weight: 400;
                        color: #eeeeee;
                        text-transform: uppercase;
                        cursor: pointer;
                        &:hover{
                            color: $secondaryColor;
                        }
                    }
                }
            }
            .login_btn{
                font-size: 15px;
                font-weight: 500;
                color: $whiteColor;
                background-color: $secondaryColor;
                border-radius: 35px;
                padding: 6px 30px;
                cursor: pointer;
            }
        }
    }
}

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: headerMove .9s;
    margin-top: 10px;
    z-index: 3;
  }

  @keyframes headerMove{
    0% {
        top: -50px;
    }
    100% {
        top: 0px;
    }
  }