.header{
    padding: 6px 0 1px;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 55;
}
.navbarWrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navLinks{
    display: flex;
    align-items: center;
    gap: 38px;
}
.navLinks a{
    color: #000;
    font-size: 14px;
    line-height: 16.94px;
}
.navLinks a:hover{
    opacity: .8;
}
.navDropdown{
    position: relative;
    padding-right: 18px;
}
.navDropdown::after{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 7px solid #1B1A2E;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.navbarCTA{
    padding: 8px 17px;
    font-size: 14px;
    line-height: 16.94px;
    color: #fff;
    border-radius: 5px;
    background: #07407B;
}
.navbarCTA:hover{
    background: #0a4d93;
}
@media (max-width:575px) {
    .navLinks{
        display: none;
    }
    .navbarWrapper img{
        max-width: 55px;
    }
}