body {
    padding: 0;
    margin: 0;
	background-color: #fff;
	overflow-x: hidden;
}

img.fullbackground {
	display: none;
}

header {
    /* box-shadow: inset 0 -1px 5px rgba(0, 0, 0, 0.08); */
	height: auto  !important;
	padding: 20px 0  !important;
	box-shadow: 0 4px 4px rgba(0, 0, 0, .1)  !important;
	max-width: 100%  !important;
	position: relative  !important;
	z-index: 99  !important;
}

header .container {
	width: auto !important;
    margin: 0 auto  !important;
    padding: 15px  !important;
    display: flex  !important;
    justify-content: space-between  !important;
    align-items: center  !important;
	height: auto  !important;
	max-width: 1600px  !important;
}

.logo-novi img {
    max-width: 100%;
    height: auto;
}

header nav {
	margin: 0;
	max-width: unset;
	min-width: unset;
	width: auto;
}

header nav > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    column-gap: 60px;
	float: none;
	width: auto;
}

header nav ul li>a:link, header nav ul li>a:visited, ul.mobile-nav li>a:link, ul.mobile-nav li>a:visited {
    color: #005ca9;
    display: inline-block;
        font-family: 'StoneSansITCStd-Medium';
    font-size: 15px;
    font-style: normal;
    height: auto;
    line-height: 1.4;
    padding: 0 10px;
    text-decoration: none;
}

header nav ul li:hover>a {
	color: #002f57;
}

header nav ul li:hover::after {
	filter: brightness(0) invert(0);
}

nav ul li a {
    display: inline-block;
    color: #005ca9;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

.submenu_trigger {
    position: relative;
	margin-right: 15px;
}

.submenu_trigger::after {
    content: "";
    display: inline-block;
    position: absolute;
	top: -1px;
	right: -15px;
	left: auto;
    width: 20px;
    height: 20px;
    margin-left: 0;
    background-image: url('../img/chevron-down.svg');
    /* background-size: contain; */
    background-repeat: no-repeat;
    /* background-position: center; */
    /* vertical-align: middle; */
    background-size: 20px 20px;
    transition: all 0.2s ease;
}

.submenu_trigger.active::after {
    content: "";
    display: inline-block;
    position: absolute;
	top: -1px;
    width: 20px;
    height: 20px;
    margin-left: 0;
    background-image: url('../img/chevron-up.svg');
    /* background-size: contain; */
    background-repeat: no-repeat;
    /* background-position: center; */
    /* vertical-align: middle; */
    background-size: 20px 20px;
    transition: all 0.2s ease;
}

.u_submenu {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
    background: #fff;
    padding: 15px;
    position: absolute;
    top: 40px;
    right: 0;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.u_submenu.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.u_submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
	width: 100%;
}

.u_submenu ul li {
	margin: 8px 0;
	display: block;
}

.u_submenu ul li a {
    font-size: 16px;
    padding: 5px 0;
}