/* Adjust the size of the logo */
.preload-me {
    max-width: 250px;
    max-height: 100px;
}

.custom-logo {
    max-height: 100px;
    max-width: 250px;
}

/* Adjust the branding container to reduce the logo's left margin or padding */
.branding {
    padding-left: 0px !important; /* Removes padding on the left if it exists */
    margin-left: 0px !important; /* Removes margin on the left if it exists */
}

/* Optional: Adjust the flex settings if needed */
.header-bar .branding {
    flex: 0 1 auto; /* This makes the logo's container flexible in size */
}

/* Ensure the logo and the menu items align correctly */
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wpb_menu_nav > li > ul {
  text-align: left;
  left: 0;
  right: auto;
}
.main-nav li ul {
  left: 0;
  text-align: left;
}
.sub-nav {
  left: 0;
  position: absolute; /* Hvis ikke allerede defineret */
}