@import url("fonts/fonts.css");

html
{
	/* font-size: calc(12px + 4 * (100vw - 480px) / 990); */
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	color: #333333;
}

html, body
{
	margin: 0;
	background-color: #FFF;
}

body
{
	/* START Make sure the footer always stays at the bottom of the page, even on small pages */
	min-height: 100vh; /* Fallback for browsers that don't support dvh */
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	/* END Make sure the footer always stays at the bottom of the page, even on small pages */
	font-size: 1.125rem;
}

h1, h2, h3, h4, h5, h6
{
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	font-family: "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
	font-size: 1.5em;
	font-weight: 500;
	line-height: 1.3em;
	color: #061c3d;
}

h1, h2
{
	font-family: "Montserrat", sans-serif;
}

h1
{
	margin-bottom: 0;
	padding-bottom: 0.5em;
	font-size: 2.1em;
	color: white;
	text-transform: uppercase;
}

h2
{
	font-family: "Montserrat", sans-serif;
}

h3, h4, h5, h6
{
	font-size: 1.2em;
}

h4, h5, h6
{
	margin-top: 0.5em;
	margin-bottom: 0em;
}

p
{
	margin: 0.2em 0 1em 0;
}

a
{
	text-decoration: none;
	color: #23B25C;
}

a:link, a:visited
{
	color: #23B25C;
}

a:hover, a:active
{
	color: #005f9e;
	text-decoration: underline;
}
a[href^="mailto:"], a[href^="tel:"], a.webmeeting
{
	text-decoration: none;
}

a:before
{
	/* Look up icons on https://fontawesome.com/v5/search?s=solid */
	font-family: "Font Awesome 5 Solid";
	margin-right: 0.5em;
}

a[href^="mailto:"]:before
{
	content: "\2709";
	content: "\f0e0";
}

a[href^="tel:"]:before
{
	content: "\260e";
	content: "\f095";
}

a.link-internal:before
{
	content: "\f0c1";
}

a.link-external:before
{
	content: "\f360";
}

a.html:before
{
	content: "\f1c9";
	color: gray;
}

a.pdf:before
{
	content: "\f1c1";
	color: #C40809;
}

a.mpg:before,
a.mpeg:before,
a.mov:before,
a.m4v:before,
a.avi:before
{
	content: "\f008";
	color: #00207D;
}

a.folder:before
{
	content: "\f07c";
	margin: 0 0.5em 0 0;
}

a.webmeeting:before
{
	content: "\1F517";
}

img
{
	display: block; /* Remove extra padding around image if used within anchor tags */
	margin: 0;
	border: 0 none;
}

ul
{
	list-style-type: disc;
}

ul li
{
	margin: 0 0 0.2em 20px; /* margin between single item blocks */
	padding: 0; /* padding of single item blocks */
}

.banner
{
	background-color: #1A2853;
	background-image: url("images/Home_hero3.jpeg");
	background-size: cover;
}

.banner::after
{
	content: "";
	display: block;
	position: relative;
	background-image: url("images/brand-color-bars.svg");
	background-repeat: no-repeat;
	background-clip: content-box;
	background-position: right 20vw bottom;
	height: 2rem;
	bottom: -1rem
}

.container_header
{
    /* The display attribute "table" enables beautiful rendering: The width of
    the <div> will be kept as small as defined, which means text will be wrapped
    to that defined width. However sub-objects, which cannot be wrapped, e.g.
    images, videos, etc. will cause the <div> to expand to the with of the
    contained object.*/
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
}

.container
{
    /* The display attribute "table" enables beautiful rendering: The width of
    the <div> will be kept as small as defined, which means text will be wrapped
    to that defined width. However sub-objects, which cannot be wrapped, e.g.
    images, videos, etc. will cause the <div> to expand to the with of the
    contained object.*/
	max-width: 960px;
	margin: 0 auto;
	padding: 0 30px;
}

.header
{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding: 45px 30px;
}

.main
{
	margin: 2.5rem 0 2.5rem 0;
}

/* ################ START definition of the responsive design in standard (smartphone) mode ################# */
.header ul
{
	display: flex;
	align-items: flex-end;
	z-index: 2;
	margin: 0;
	/* padding within ul defines top and bottom margin around navigation items */
	padding: 0;
	list-style-type: none;
	border-bottom: 1px #061c3d solid;
	box-shadow: 0px 10px 10px #989898;
}

/* Define specific list style for top level navigation menu */
.header ul
{
	display: none;
	position: absolute;
	top: 170px;
	left: 0;
	width: 100%;
}

.header ul.visible
{
	display: block;
}

.header ul li
{
	background-color: white;
}

.header ul > li
{
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	border-top: 1px #061c3d solid;
}

.header ul li a
{
	display: block;
	margin: 0;
	/* padding within li defines left and right margin around navigation items */
	padding: 0.65em 45px;
	font-family: "Montserrat", sans-serif;
	font-size: 1.8rem;
	font-weight: 550;
	line-height: 1.5em;
	color: #23B25C;
	/* color: red; */
	text-decoration: none;
}

.header > ul > li:hover
{
	background-color: #23B25C;
	transition: all 0.2s ease-out;
}

.header > ul > li:hover a
{
	color: white;
}

/* Define (initially hidden) hidden sub menus */
.header ul > li ul
{
	display: none;
	position: absolute;
	z-index: 1;
	top: 4.5em;
}

/* Make sub menus dynamically visible based on hover status of parent */
.header ul > li:hover ul
{
	display: block;
	background-color: #23B25C;;
	/* background-color: cyan; */
}
.header ul > li:hover ul > li
{
	background-color: #23B25C;
}

.header ul > li > ul > li
{
	white-space: normal;
	/* background-color: cyan; */
}

.header ul > li > ul > li:hover
{
	color: rgb(21, 35, 61);
	background-color: #23B25C;
	/* background-color: green; */
}

.header ul > li > ul > li a
{
	color: white;
	font-size: 1.5rem;
}

.header ul > li > ul > li a:hover
{
	color: rgb(21, 35, 61);
}
/* ################ END definition of the responsive design in standard (smartphone) mode ################# */

#menu_internal
{
	display: none;
}

.icon-menu
{
	font-family: "copenhagen-icons";
	font-size: 2.5rem;
	line-height: 1rem;
	padding: 0;
	color: white;
}

.icon-menu::before
{
	content: "\2630";
}

.footer
{
	/* To make sure the footer always stays at the bottom of the page, even on small pages set margin-top to auto */
	margin: auto 0 0 0;
	padding: 0 0 20px 0;
	background-color: #1A2853;
	background-image: linear-gradient(to right, #277cb4, #15233d);
	color: #fff;
	font-size: 1rem;
	line-height: 1.7em;
}

.footer-menu
{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: space-between;
	/* padding within ul defines top and bottom margin around navigation items */
	margin: 0;
	padding: 10px 0 0 0;
	list-style-type: none;
	border-top: 1px #4f689b solid;
}

.footer-menu li
{
	display: inline-block;
	margin: 5px 0;
	padding: 0;
}

.footer-menu li a
{
	color: #fff;
	text-decoration: none;
}

.footer-menu li a:hover
{
	text-decoration: underline;
	opacity: 0.75;
}

.social-menu
{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	margin: 0;
	/* padding within ul defines top and bottom margin around navigation items */
	padding: 20px 0 10px 0;
	list-style-type: none;
	font-size: 2rem;
}

.social-menu li
{
	display: inline-block;
	margin: 0;
	padding: 0.5rem 0 0.5rem 1.5rem;
}

.social-menu li a
{
	color: #fff;
	text-decoration: none;
}

.social-menu li a:hover
{
	text-decoration: none;
	opacity: 0.75;
}

/* ############# Definition of styles used for nested lists showing file structures ############ */
.folder-structure
{
    list-style: none;
    padding: 0px;
}

/* ################ START overwrites for definition of the responsive design in normal desktop mode ################# */
@media (min-width: 768px)
{
	.banner::after
	{
		background-position: right 30vw bottom;
	}
	.header ul,
	.header ul.visible
	{
		position: relative;
		top: 0;
		width: auto;
		display: flex;
		margin: 0 0 0 30px;
		flex-wrap: wrap;
		box-shadow: none;
		border: 0 none;
	}
	.header ul > li
	{
		display: inline-block;
		background-color: transparent;
		/* background-color: yellow; */
		border: 0 none;
	}
	/* Text definition of links in desktop view */
	.header ul > li a
	{
		margin: 0;
		font-size: 1.25rem;
	}
	/* Text definition of top level links in desktop view */
	.header ul li a
	{
		padding: 0.65em 1.5em;
		line-height: 1em;
		color: white;
		/* color: violet; */
	}
	/* Define (initially hidden) sub menus */
	.header ul > li ul
	{
		width: 16em;
		right: -1rem;
		left: auto;
		top: 2.5em;
		background-color: #23B25C;
	}
	.header ul > li > ul > li
	{
		display: block;
		border-top: 0 none;
	}
	.header ul > li > ul > li:hover
	{
		background-color: transparent;
	}
	.header ul > li > ul > li a
	{
		color: white;
		font-size: 1rem;
	}
	.header ul > li > ul > li a:hover
	{
		color: rgb(21, 35, 61);
	}
	.icon-menu
	{
		display: none;
	}
}
/* ################ END overwrites for definition of the responsive design in normal desktop mode ################# */

.message
{
	text-align: left;
	background-color: #EDEDED;
	padding: 40px 20px;
}

.alert
{
	color: #CE1126;
}

.layout, table.layout, table.layout td, table.layout th
{
	margin: 1.5em 0 0 0;
	padding: 0;
	border-width: 0;
	border-style: none;
}

/* general class for table itself */
table
{
	margin: 1.5em 0 0em 0;
	padding: 0;
	border-collapse: collapse;
	border-color: #969696;
	border-style: none;
	border-width: 0;
}

/* column headers */
table th, table td.h1
{
	padding: 5px;
	border: 1px #CCCCCC solid;
	vertical-align: bottom;
	text-align: left;
	font-weight: bold;
	color: #333333;
	background-color: #E2E0E1;
	background-image: url("./images/rtn_background_h1.gif");
	background-repeat: repeat-x;
	background-position: center bottom;

}

/* standard table content */
table td
{
	padding: 2px 5px;
	border: 1px #CCCCCC solid;
	vertical-align: top;
}

table td.h2
{
	background-color: #CDCDCD;
}

table td.highlight_left
{
	padding: 0 40px 0 0;
}

table td.highlight_right
{
	padding: 0 20px;
	background-color: #EBEBEB;
}

.mail.mail-header
{
	background-color: #EBEBEB;
	border-bottom: 0 none;
}

.mail-header table
{
	margin: 0;
	padding: 0;
	border-collapse: collapse;
}

.mail-header table th,
.mail-header table td
{
	padding: 0.1em 0.5em 0.5em 0;
	border: 0 none;
	background: none;
	vertical-align: top;
}

pre,
code,
.mail
{
	border-color: #CCC;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	background-color: #f8f8f8;
}

pre,
.mail
{
	padding: 10px;
}

code
{
	padding: 1px 0.5em;
	white-space: nowrap;
}

pre,
code
{
	font-size: 0.8em;
}

pre b, pre span, .mark
{
	color: #0C609C;
}

.english
{
	margin-top: -0.7em;
	padding-top: 0;
	font-style: italic;
	color: #666666;
}

/* ################################## start specific styles for FAQ ############################ */

ol.faq
{
	padding-left: 2em;
}

ol.faq>li
{
	margin-top: 30px;
	font-weight: bold;
	font-size: 130%;
	color: #061c3d;
}

ol.faq>li>ul
{
	margin-left: 10px;
	list-style-type: none;
	font-weight: normal;
	font-size: 10pt;
	color: #333333;
}

ol.faq>li>ul li:before
{
	margin-left: -20px;
	margin-right: 5px;
}

ol.faq>li>ul li:nth-of-type(1)
{
	color: #333333;
}

/* First list element is the Germen question */
ol.faq>li>ul li:nth-of-type(1):before
{
	content: 'Q:';
}

/* Second list element is the German answer */
ol.faq>li>ul li:nth-of-type(2):before
{
	content: 'A:';
}

/* Third list element is the English question */
ol.faq>li>ul li:nth-of-type(3)
{
	margin-top: 1em;
	font-style: italic;
	color: #666666;
}

ol.faq>li>ul li:nth-of-type(3):before
{
	content: 'Q:';
}

/* Fourth list element is the English answer */
ol.faq>li>ul li:nth-of-type(4)
{
	font-style: italic;
	color: #666666;
}

ol.faq>li>ul li:nth-of-type(4):before
{
	content: 'A:';
}

/* ################################## end specific styles for FAQ ############################ */

/* ################################## specific styles for inputform tables ############################ */

/* general class for table itself */
.inputform
{
	margin-bottom: 5px;
	padding: 0;
}

.inputform td
{
	background-color: transparent;
	border: 0 none;
}

/* data headers */
.inputform td.title
{
	padding: 3px 10px 2px 10px;
	border-bottom: 2px #a9c2d6 solid;
	vertical-align: middle;
	font-weight: bold;
	text-transform: uppercase;
}

/* use class "label_left" for labels to the left of input forms */
.inputform td.input
{
	padding: 7px 20px 2px 0px;
	text-align: left;
	vertical-align: top;
}

/* use class "input" for inputs to the right of labels */
.inputform td.label
{
	padding: 7px 10px 0px 10px;
	font-weight: bold;
	text-align: right;
	vertical-align: top;
}

.inputform td.input input,
.inputform td.input select,
.inputform td.input textarea
{
	margin-top: -3px;
	position: relative; /* Fix for IE: Otherwise the objects were cropped on top if an additional layout table was used to align the object */
}

.inputform td textarea
{
	margin-bottom: 10px;
}

.inputform td.input input[type=checkbox]
{
	margin-top: 1px;
}

.inputform td.input div.fieldalign
{
	float: left;
	margin-top: 1px;
}

/* class for <iframe> object if it sticks inside a inputform table */
.inputform .input iframe
{
	background-color: #F3F4F4;
	border: #a9c2d6 1px solid;
	padding: 0;
	width: 500px;
	height: 400px;
	margin-bottom: 10px;

}

.inputform td.submit
{
	padding: 10px 20px;
	text-align: right;
}

.movie_stage
{
	width: 1280px;
	height: 720px;
	color: #3F3F3F;
	text-align: center;
	vertical-align: middle;
	line-height: 720px;
	font-size: 20pt;
	background-color: #1C1C1C;
	background-image: linear-gradient(0deg, #000, #3B3B3B);
}

/* Classes for Meeting Clock */
#m_clock
{
	text-align: center;
}

#m_clock .inputform td.input
{
	white-space: nowrap;
}

#time_clock
{
	font-size: 3.5rem;
	line-height: 1.3em;
	color: #999;
}

#cost
{
	font-size: 9rem;
	line-height: 1.3em;
	color: #333;
}

.errorClock
{
	color: #ff0000;
}

.light {
	color: #BFBFBF;
}
