.header-component{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(90%,930px);
    margin: 10.5px auto;
    background: #fff;
    overflow-x: hidden;
    
    .logo{
        cursor: pointer;
        width: 45px;
        height: 30px;
    }

    .right-side-menus{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 45px;
        color: #003DA6;
        font-size: 12px;
        font-weight: 700;
        line-height: 13.8px;

        .tab-menu{
            cursor: pointer;
            display: block;
        }

        .cta-button{
            background-color: #003DA6;
            border: none;
            border-radius: 7.5px;
            padding: 10px 30px;
            width: fit-content;
            color: #FFFFFF;
            font-weight: 700;
            font-size: 12px;
        }

        .menu-button{
            height: max(18px, 4vw);
            display: none;
        }

        @media only screen and (max-width: 768px){
            .tab-menu{
                display: none;
            }

            .menu-button{
                display: block;
            }   
        }
    }
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    width: 150px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 60px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;

    .close-button {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
    }

    .tab-menu{
            cursor: pointer;
            display: block;
            color: #003DA6;
            font-size: 12px;
            font-weight: 700;
            line-height: 13.8px;
        }

        .cta-button{
            background-color: #003DA6;
            border: none;
            border-radius: 7.5px;
            padding: 10px 30px;
            width: fit-content;
            color: #FFFFFF;
            font-weight: 700;
            font-size: 12px;
        }


}

@media only screen and (min-width: 768px) {
    .mobile-sidebar {
        display: none !important;
        text-align: left;
        align-items: start;
        justify-content: start;
    }
}

.mobile-sidebar.active {
    padding-left: 30px;
    display: flex;
    text-align: left;
    align-items: start;
    justify-content: start;
    right: 0;
}