#Header .header, #Header .header-plain {
	height: auto;
	width: 100%;
	background-color: var(--primary-color);
	color: #fff;
	z-index: 500;
	display: block;
	position: relative;
	top: 0;
}
#Header .header-plain {
	background-color: #162F44;
}
#Header .header-content {
	font-family: var(--header-font);
	font-size: 35px;
	color: #fff;
	opacity: 1;
	font-weight: 600;
	padding-left: 1%;
	text-align: left;
	/* width: 70%; */
	width: 100%;
	display: flex;
	padding-top: 35px;
	/* padding-bottom: 15px; */
}

#Header .header-content#vid-issuer {
	height: 9%;
}

#Header .header-content a{
	font-size: 35px;
	color: #fff;
	font-weight: 600;
	padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
	text-decoration: none;
	margin-left: 15px;
}

.img-logo {
	height: 50px;
	margin-right: 10px;
	margin-top: -15px;
}

.logo-text {
	font-size: 24px;
	color: white;
}

.logo-split {
	border-right: thin solid white;
	height: 100%;
	margin-left: 10px;
}

.img-uni {
	position: relative;
	top: 6px;
	height: 40px;
	margin-left: 10px;
}

#img-gunet {
	margin-left: auto;
	position: relative;
	top: -20;
}

.header-border {
	width: 100%;
	height: 4px;
	background: linear-gradient(358.5deg, var(--secondary-light-color) .09%, var(--primary-color));
}

.header-subtitle {
  font-family: var(--header-font);
  font-weight: 600;
  font-size: 14px;
	margin-left: 2%;
	margin-bottom: 0;
}

/* Ribbon css */

.ribbon {
	width: 150px;
	/* height: 106px; */
	height: 100%;
	height: -moz-available; /* WebKit-based browsers will ignore this. */
	height: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
	height: fill-available;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	pointer-events: none;
}

.ribbonText {
	position: absolute;
	display: block;
	width: 225px;
	padding: 15px 0;
	background-color: var(--secondary-color);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	color: #fff;
	font: 700 18px/1 "Lato", sans-serif;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	text-align: center;
	left: -15px;
	top: 20px;
	transform: rotate(45deg);
}

/* Language Switch css */

.language-switch {
	position: absolute;
  color: #fff;
  z-index: 3;
  width: 150px;
  text-align: right;
  top: 50px;
  right: 20px;
	margin-right: 50px;
	font-size: 13.333px;
}

.language-switch button {
	border: none;
	background-color: transparent;
	color: #fff;
	/* font-weight: bold; */
	border-bottom: 2px solid transparent;
	cursor: pointer;
	padding: 0 5px;
	padding-bottom: 3px;
	margin: 0 8px;
	outline: none;
	z-index: 3;
}

.language-switch.mobile {
	display: none;
}

.language-switch button:hover {
	color: var(--secondary-light-color);
	border-bottom: 2px solid var(--secondary-light-color);
	transition: all 0.3s;
}

.language-switch button.active {
	border-bottom: 2px solid var(--secondary-light-color);
	color: var(--secondary-light-color);
}