body, div, button {
    font-family: "Roboto", sans-serif;
}
body {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
}
.header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Home Logo */
.header .homeLogo {
	position: absolute;
	left: 0;
	margin-left: 15px;
	display: flex;
}
.header .homeLogo .largeLogo { display: block; }
.header .homeLogo .smallLogo { display: none; }
.header .homeLogo a {
	display: inline-block;
}

/* Tools */
.header .tools {
	position: absolute;
	right: 0;
	margin-right: 15px;
	z-index: 1001;
	-webkit-transform : translateZ(12px);
	height: 100%;
	display: flex;
	align-items: center;
	color: #00555d;
	fill: #00555d;
	gap: 5px;
	
}

/* Suchfeld */
.header .tools #searchField {
	display: block;
}

.header .tools #searchField .form-inline {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	margin-right: 10px;
}

.header .tools #searchField input {
	margin: 0;
}

.header .tools #searchField .searchButton {
	padding: 5px;
}

.header .tools #searchField .searchButton:hover {
	background-color: transparent;
}

.header .tools #searchField svg {
	width: 20px;
	height: 20px;
	fill: inherit;
	margin: 4px 6px 0 0;
}

.header .tools #searchLink {
	display: none;
}

.header .tools #searchLink a {
	display: flex;
}
.header .tools #searchLink svg {
	width: 20px;
	height: 20px;
	fill: inherit;
	margin: 4px 6px 0 0;
}



/* Partner-Login */
.header .tools #partnerLogin {
}

.header .tools #partnerLogin a {
	display: flex;
}

.header .tools #partnerLogin svg {
	width: 24px;
	height: 24px;
	fill: inherit;
}


/* languageDropdown */
#languageDropdown {
	position: relative;
	flex: 0 0 auto;
	padding: 5px;
	cursor: pointer;
}

#languageDropdown .head {
	display: flex;
align-items: center;
}

#languageDropdown .head svg {
	width: 20px;
	height: 20px;
	fill: inherit;
}

#languageDropdown .body {
	position: absolute;
	top: 100%;
	right: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	transition: 200ms;
	background-color: inherit;
}

#languageDropdown .body a {
	display: block;
	padding: 5px;
	text-decoration: none;
	color: #006069;
}

#languageDropdown .body a:hover {
	background-color: #00555d;
	border-color: #00555d;
	color: white;
	fill: white;
}


#languageDropdown:hover .body {
	height: auto;
}

#languageDropdown:hover {
	background-color: #d2e0e5;
}
/* \\ languageDropdown */





/* Sprachumschalter */
.header .tools .language {
	margin-top: 12.5px;
}
.header .tools .language a {
	color: #006069;
	text-decoration: none;
	height: 100%;
	display: flex;
	align-items: center;
}
.header .tools .language svg {
	height: 20px;
}
.header .tools ul li.lang-item-sel { 
	list-style: none; 
}
.header .tools .language ul {
	position: relative;
	width: 60px;
	padding: 0;
}
.header .tools .language ul li { 
	padding: 0px 0px 0px 10px; 
}
.header .tools .language ul:hover li { 
	background-color: #ECEFF1; 
}
.header .tools .language ul:hover li:hover { 
	background-color: #d9e4e9; 
} 
.header .tools .language ul li:hover.lang-item-unsel a { 
	color: #006069; 
}
.header .tools .language ul li.lang-item-sel { 
	height: 35px; 
	line-height: 35px;
}
.header .tools .language ul li.lang-item-unsel { 
	display: none; 
	height: 35px; 
	line-height: 35px;
	background-color: #ECEFF1;
}
.header .tools .language ul li a img {
	margin: 0px 5px 0px 0px;
	vertical-align: middle;
	border-radius: 25px;
}
.header .tools .language ul li.lang-item-unsel a { 
	padding: 10px 0px 0px 0px; 
	color: #5A5A5A;
}


/* Main Menue */
.menuWide {
    position: relative;
    width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.header button {
    padding: 10px 20px;
    border: 0px solid;
    border-radius: 5px;
    background-color: white;
    color: #696969;
    fill: #696969;
    font-size: 16px;
    font-weight: bold;
    transition: 200ms;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.header button > svg {
    height: 20px;
    translate: 8px;
    transition: 200ms;
}
.header button:hover {
    background-color: #d2e0e5;
    color: #00555d;
    fill: #00555d;
}
.header button[active] {
    background-color: #00555d;
    border-color: #00555d;
    color: white;
    fill: white;
}
.header button[active] > svg {
    transform: rotateX(180deg);
}
.menuPanel {
    position: absolute;
    width: 100%;
    min-height: 200px;
    top: 60px;
    z-index: 10;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 0 10px #0006;
    border-radius: 10px;
    transition: 500ms;
	background-color: white;
}
.menuPanel .cols {
    display: flex;
    padding: 20px;
    gap: 10px;
}
.menuPanel .cell {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menuPanel .cell > div {
    min-height: 100px;
}
.menuPanel .menuFooter {
    height: auto;
    padding: 0;
    border-radius: 0;
    background-color: #d2e0e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menuPanel .menuFooter .logo {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    background-color: #1da88d;
}
.menuPanel .menuFooter button {
    margin: 0 20px;
    padding: 15px 30px;
    color: white;
    background-color: #008086;
    border: 3px solid #008086;
    border-radius: 10px;
}
.menuPanel .menuFooter button:hover {
    background-color: transparent;
    color: #008086;
}
.menuLevel2 {
    display: flex;
    flex-direction: column;
    font-size: 15px;
}
.menuLevel2 > * {
    display: flex;
    flex-direction: column;
    /* text-decoration: none; */
    border-radius: 10px;
    color: #696969;
    fill: #696969;
    padding: 10px;
    gap: 10px;
    transition: 200ms;
}
.menuLevel2 > a:hover {
    background-color: #d2e0e5;
    color: #00555d;
    fill: #00555d;
    text-decoration: none;
}
.menuLevel2 > a > * {
    margin: 0;
}
.menuLevel2 h2 {
    font-size: 16px;
    color: #00555d;
    font-weight: bold;
}
.menuLevel2 h3 {
    font-size: 14px;
    font-weight: bold;
    color: #777;
}
.menuLevel2 .menueItemDescription {
	color: #777;
	font-size: 13.5px;
	/*margin-bottom: 20px; */
}
.menuFooter h2 {
    font-size: 16px;
    color: #00555d;
    margin-top: 15px;
}
.menuFooter p {
    font-size: 14px;
}
.menuFooter .teaser {
    margin-left: 25px;
    margin-right: 25px;
}

/* Hamburger */
.menuNarrow {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
}

.menuNarrow button.hamburger,
.menuNarrow button.closeMenu {
	position: absolute;
	right: 15px;
	width: 44px;
	height: 37px;
	flex: 0 0 auto;
	border: 1px solid #dddddd;
	border-radius: 5px;
	background-color: white;
	color: #696969;
	fill: #696969;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 200ms;
	padding: 0px;
}

.menuNarrow button.hamburger > svg {
	height: 26px;
	transition: 200ms;
	translate: 0px;
}

.menuNarrow button.hamburger:hover {
	background-color: #D2E0E5;
	color: #00555d;
	fill: #00555d;
}

.menuNarrow button.closeMenu {
	border: none;
	z-index: 5;
}

.menuNarrow button.closeMenu > svg {
	height: 26px;
}

.menuNarrow .menuPanel {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: 200ms ease-out;
	opacity: 0;
	translate: 100%;
	background-color: transparent;
}

.menuNarrow .menuPanel.visible {
	translate: 0;
	opacity: 1;
}

.menuNarrow .menuSearch {
	flex: 0 0 auto;
	margin-top: 60px;
	padding: 0px 15px;
	width: 100%;
	background-color: white;
	box-sizing: border-box;
	position: relative;
}

.menuNarrow .menuSearch > input {
	/*background-color: yellow;*/
	width: 100%;
	height: 44px;
	padding-left: 10px;
	padding-right: 40px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

.menuNarrow .menuSearch > input:focus {
	outline: none;
}

.menuNarrow .menuSearch > input:focus-visible {
	border-color: #00555d;
}

.menuNarrow .menuSearch > svg {
	position: absolute;
	right: 15px;
	height: 20px;
	top: 50%;
	translate: -50% -50%;
	fill: #ddd;
}

.menuNarrow .menuBody {
	flex: 0 1 100%;
	padding: 10px 15px;
	background-color: white;
	overflow: auto;
}

.menuNarrow .menuItem {
	display: flex;
	flex-direction: column;
}

.menuNarrow .menuItem .menuItemHead {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #00555d;
	fill: #00555d;
	padding: 10px;
	border-radius: 5px;
	font-size: 18px;
	cursor: pointer;
	transition: 200ms;
}

.menuNarrow .menuItem .menuItemHead > svg {
	width: 22px;
	transition: 200ms;
}

.menuNarrow .menuItem .menuItemHead:hover {
	background-color: #D2E0E5;
}

.menuNarrow .menuItem .menuItemContent {
	display: flex;
	flex-direction: column;
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: 200ms;
}

.menuNarrow .menuItem[active] .menuItemHead {
	background-color: #00555d;
	color: white;
	fill: white;
}

.menuNarrow .menuItem[active] .menuItemHead > svg {
	transform: rotateX(180deg);
}

.menuNarrow .languageSelect {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: #00555d;
	fill: #00555d;
	padding-top: 10px;
	border-radius: 5px;
	font-size: 18px;
	transition: 200ms;
}

.menuNarrow .languageSelect .flag {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-right: 5px;
}

.menuNarrow .languageSelect .flag .color {
	flex: 1 1 100%;
}

.menuNarrow .languageSelect button {
	padding: 5px;
	border: none;
	background-color: transparent;
	display: flex;
	align-items: center;
	font-size: 18px;
	color: #00555d;
	fill: #00555d;
}

.menuNarrow .languageSelect button svg {
	width: 22px;
	transition: 200ms;
}
/* // Hamburger */

/*@media (max-width: 1399px) {
	 .homeLogo { display: none; } 
	.language { display: none; }
}*/

@media (min-width: 1000px) {
	.menuNarrow { display: none; }
	.header .tools { right: 0; }
}

@media (max-width: 999px) {
	.menuWide { display: none; }
	.header .tools { right: 50px; }
}

/* Suche */
@media screen and (min-width: 1780px) {
	.header .tools #searchField { display: block; }
	.header .tools #searchLink { display: none; }
}
@media screen and (max-width: 1779px) {
	.header .tools #searchField { display: none; }
	.header .tools #searchLink { display: block; }
}
@media screen and (max-width: 999px) {
	.header .tools #searchField { display: none; }
	.header .tools #searchLink { display: none; }
}

/* Logo */
@media screen and (min-width: 1400px) { /* Logo mit Fisch */
	.header .homeLogo .largeLogo	{ display: block; }
	.header .homeLogo .mediumLogo 	{ display: none; }
	.header .homeLogo .midsmallLogo	{ display: none; }
	.header .homeLogo .smallLogo	{ display: none; }
}
@media screen and (max-width: 1399px) { /* Logo ohne Fisch */
	.header .homeLogo .largeLogo	{ display: none; }
	.header .homeLogo .mediumLogo 	{ display: block; }
	.header .homeLogo .midsmallLogo	{ display: none; }
	.header .homeLogo .smallLogo  	{ display: none; }
}
@media screen and (max-width: 1249px) { /* Logo verkleinert */
	.header .homeLogo .largeLogo  	{ display: none; }
	.header .homeLogo .mediumLogo 	{ display: none; }
	.header .homeLogo .midsmallLogo	{ display: block; }
	.header .homeLogo .smallLogo  	{ display: none; }
}
@media screen and (max-width: 999px) { /* Logo mit Fisch */
	.header .homeLogo .largeLogo  	{ display: block; }
	.header .homeLogo .mediumLogo 	{ display: none; }
	.header .homeLogo .midsmallLogo	{ display: none; }
	.header .homeLogo .smallLogo  	{ display: none; }
}
@media screen and (max-width: 499px) { /* Logo ohne Fisch */
	.header .homeLogo .largeLogo  	{ display: none; }
	.header .homeLogo .mediumLogo 	{ display: block; }
	.header .homeLogo .midsmallLogo	{ display: none; }
	.header .homeLogo .smallLogo  	{ display: none; }
}
@media screen and (max-width: 449px) { /* Logo verkleinert */
	.header .homeLogo .largeLogo  	{ display: none; }
	.header .homeLogo .mediumLogo 	{ display: none; }
	.header .homeLogo .midsmallLogo	{ display: block; }
	.header .homeLogo .smallLogo  	{ display: none; }
}
@media screen and (max-width: 299px) { /* Fisch */
	.header .homeLogo .largeLogo  	{ display: none; }
	.header .homeLogo .mediumLogo 	{ display: none; }
	.header .homeLogo .midsmallLogo	{ display: none; }
	.header .homeLogo .smallLogo  	{ display: block; }
}

.content {
    position: absolute;
    top: 70px;
    bottom: 160px;
    width: 100%;
    overflow: auto;
    background: lightgray;
    background-image: url(https://www.innovaphone.com/images/video-conference-slider-homepage-1536x600px.webp);
    background-size: cover;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 160px;
}

/*phoneNumber */

.icon-phone-text-container {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #006068; /* Base color */
	bottom: -6px;
	position: relative;
	transition: color 0.3s ease;
	margin-right: 15px;
}

.icon-phone-text-container svg {
	width: 21px;
	bottom: 4px;
	position: relative;
}

.icon-phone-text-container:hover {
    color: #f59b10;
}

.icon-phone-text-container:hover #phone-number-text a {
    color: #f59b10;
    transition: transform 0.3s ease;
}


.icon-phone-text-container:hover svg {
  transform: scale(1.1); /* Slightly increase the size */
}

#phone-number-text a{
	color: #006068;
}

@media (max-width: 1440px) {
	#phone-number-text {
		display: none;
	}
}
@media (max-width: 1070px) {
	 .icon-phone-text-container {
		display: none;
	}
}
/* // phoneNumber */

