/*--------------------------------------------------------------------*/
/*Main Settings*/
*
{
	padding: 0;
	margin: 0;
}
body
{
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	background: white;
	margin: 0 auto;
}
p
{
	font-size: large;
}

/*--------------------------------------------------------------------*/
/*Webpage settings*/
.webpage
{
	width: 1080px;
	margin: 0 auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*--------------------------------------------------------------------*/
/* Menubar*/
.menu-bar
{
	position: relative;
	background: black;
	text-align: center;
	opacity: 0.8; /*black --> #333*/
	z-index: 100;
	font-size: 14px;
}
.menu-bar ul
{
	display: inline-flex;
	list-style: none;
	color: white;
}
.menu-bar ul li
{
	width: 118px;
	margin: 9px;
	padding: 9px;
}
.menu-bar ul li a
{
	text-decoration: none;
	color: white;
}
.active, .menu-bar ul li:hover
{
	background: orange;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	transition: all 0.5s;
}
.menu-bar .fas
{
	margin-right: 2px;
}
.menu-bar .fa-angle-down
{
	margin-right: 0px;
	margin-left: 2px;
}
.menu-bar ul li:hover .fa-angle-down
{
	transform: rotate(180deg);
}
.sub-menu-1
{
	display: none;
}
.menu-bar ul li:hover .sub-menu-1
{
	display: block;
	position: absolute;
	background: black;
	margin-top: 10px;
	margin-left: -15px;
}
.menu-bar ul li:hover .sub-menu-1 ul
{
	display: block;
	margin: 10px;
}
.menu-bar ul li:hover .sub-menu-1 ul li
{
	width: 117px;
	padding: 12px;
	border-bottom: 1px dotted #fff;
	background: transparent;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: left;
	opacity:0; /* 0 for animation! */
}
.menu-bar ul li:hover .sub-menu-1 ul li:hover
{
	color: orange;
}
.menu-bar ul li:hover .sub-menu-1 ul li:last-child
{
	border-bottom: none;
}
.fa-angle-right
{
	float: right;
}
.menu-bar ul li:hover .sub-menu-1 ul li:nth-child(1)
{
	animation: animate 0.25s ease-in-out forwards;
	animation-delay: 0s;
}
.menu-bar ul li:hover .sub-menu-1 ul li:nth-child(2)
{
	animation: animate 0.25s ease-in-out forwards;
	animation-delay: 0.25s;
	display: block;
	position: relative;
	background: black;
}
.menu-bar ul li:hover .sub-menu-1 ul li:nth-child(3)
{
	animation: animate 0.25s ease-in-out forwards;
	animation-delay: 0.5s;
}
@keyframes animate
{
	0%
	{
		opacity: 0;
		transform: rotateX(-90deg);
	}
	50%
	{
		transform: rotateX(20deg);
	}
	100%
	{
		opacity: 1;
		transform: rotateX(0deg);
	}
}
.sub-menu-2
{
	display: none;
}
.hover-me:hover .sub-menu-2
{
	animation: loadsub2 0.5s forwards;
	display: block;
	position: absolute;
	opacity: 0.95;
	background: black;
	margin-top: -34px;
	margin-left: 130px;
}
@keyframes loadsub2
{
	0%
	{
		transform: translateX(-15px);
	}
	100%
	{
		opacity: 1;
		transform: translateX(0px);
	}
}
.sub-menu-1 ul li:hover .sub-menu-2 ul li
{
	width: 180px;
	opacity: 1;
	transform: none !important;
	animation: none !important;
}
.sub-menu-1 ul li:hover .sub-menu-2 ul li a:hover
{
	color: orange;
}

/*--------------------------------------------------------------------*/
/*SlideFrame in js-image-slider.css*/

/*--------------------------------------------------------------------*/
/*General Content*/
.content
{
	line-height: 1.6;
	margin: 50px;
	margin-top: 20px;
}
.content a
{
	color: orange;
	text-decoration: none;
}
.content a:hover, .content a:active
{
	color: orange;
	text-decoration: underline;
	text-decoration-style: dotted;
}
.content ul
{
	margin-bottom: 20px;
}
.content li
{
	font-size: large;
	text-align: left;
	margin-left: 120px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.content p
{
	margin-top: 10px;
	margin-bottom: 20px;
}
.content h1
{
	margin-bottom: 20px;
	text-shadow: 1px -1px 2px #333;
}
.content h2
{
	margin-top: 40px;
	margin-bottom: 20px;
}
.content h3
{
	margin-top: 30px;
	margin-bottom: 10px;
}
.content img
{
	margin-top: 10px;
	margin-bottom: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.content video
{
	margin-top: 10px;
	margin-bottom: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*--------------------------------------------------------------------*/
/*Content for index.html*/
/*Cards*/
.cardsarea
{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: top;
	margin: 0 50px 50px 50px;
	height: 490px;
	transition: 0.5s;
}
.cardsarea .card
{
	position: relative;
	margin: 10px;
	text-align: left;
}
.cardsarea .card .face
{
	position: relative;
	transition: 0.5s;
	width: 300px;
	height: 400px;
}
.cardsarea .card .face.imgsub
{
	position: relative;
	background: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 1;
}
.cardsarea .card1 .face.imgsub
{
	transform: translateY(80px);
}
.cardsarea .card2 .face.imgsub
{
	transform: translateY(80px);
}
.cardsarea .card3 .face.imgsub
{
	transform: translateY(80px);
}
.cardsarea .card:hover .face.imgsub
{
	background: orange;
	transform: translateY(0);
}
.cardsarea .card .face.imgsub .cardcontent
{
	opacity: 0.5;
	transition: 0.5s;
}
.cardsarea .card .face.imgsub .cardcontent .fas
{
	color: white;
}
.cardsarea .card .face.imgsub .cardcontent h3
{
	color: white;
	margin-top: 50px;
	padding: 0px;
	font-size: 1.5em;
}
.cardsarea .card:hover .face.imgsub .cardcontent
{
	opacity: 1;
}
.cardsarea .card .face.text
{
	position: relative;
	background: white;
	display: flex;
	padding: 10px;
	box-sizing: border-box;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.cardsarea .card1 .face.text
{
	height: 310px;
	transform: translateY(-230px);
}
.cardsarea .card2 .face.text
{
	height: 290px;
	transform: translateY(-210px);
}
.cardsarea .card3 .face.text
{
	height: 220px;
	transform: translateY(-140px);
}
.cardsarea .card:hover .face.text, .cardsarea .card:active .face.text
{
	transform: translateY(0);
}
.cardsarea .card .face.text .cardcontent p
{
	margin: 10px;
	line-height: 1.6;
}
.cardsarea .card .face.text .cardcontent a
{
	color:orange;
	text-decoration: none;
}
.cardsarea .card .face.text .cardcontent a:hover, .cardsarea .card .face.text .cardcontent a:active
{
	color:orange;
	text-decoration: underline;
	text-decoration-style: dotted;
}
.cardsarea:hover, .cardsarea:active
{
	margin: 0 50px 250px 50px;
	transition: 0.5s;
}

/*Skills*/
.skills-section
{
	position: relative;
}
.inner-width
{
	width: 100%;
	max-width: 1080px;
	margin: auto;
	overflow: hidden;
}
.skills-title
{
	text-align: center;
	color: #333;
	text-transform: uppercase;
}
.border
{
	width: 160px;
	height: 2px;
	background: orange;
	margin: 20px auto;
}
.skills-container
{
	margin-top: 40px;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.skills-box
{
	width: 31%;
	padding: 10px;
	text-align: center;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.skills-icon
{
	display: inline-block;
	width: 70px;
	height: 70px;
	border: 3px solid orange;
	color: orange;
	transform: rotate(45deg);
	margin-bottom: 30px;
	margin-top: 16px;
	transition: 0.3s linear;
}
.skills-icon i
{
	line-height: 70px;
	transform: rotate(-45deg);
	font-size: 26px;
}
.skills-title
{
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.skills-desc
{
	width: 100%;
	color: white;
	transform: translateY(-20px);
}
.skills-desc p
{
}
.skills-desc ul li
{
	margin-left: 70px;
	padding: 0;
}
.skills-box:hover .skills-icon
{
	background: orange;
	color: white;
	transform: rotate(180deg);
}
.skills-box:hover .skills-icon i
{
	transform: rotate(-180deg);
}
.skills-box:hover .skills-desc
{
	color: #333;
	transform: translateY(0);
	transition: 0.5s;
}

/*Horizontal Carousel*/
.post-slider
{

}
.post-wrapper-news, .post-wrapper-projects
{
	width: 84%;
	height: 360px;
	margin: 0px auto;
	overflow: hidden;
}
.post
{
	width: 300px;
	height: 350px;
	margin: 0 10px;
	display: inline-block;
	-webkit-tap-highlight-color: transparent;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 1rem 1rem 1rem -1rem #a0a0a033;
}
.post img
{
	margin-bottom: 10px;
	padding: 0;
	box-shadow: none;
}
.slider-image
{
	width: 100%;
	/*height: 200px;*/
	float: top;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.post-info
{
	min-height: 80px;
	text-align: left;
}
.post-info a
{
	color: #333;
	font-size: 16px;
	display:inline-block;
	margin-bottom: 10px;
}
.post-info a:hover
{
	text-decoration: none;
}
.next-news, .next-project
{
	float: right;
	margin-top: 150px;
	font-size: 3em;
	color: #333;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.prev-news, .prev-project
{
	float: left;
	margin-top: 150px;
	font-size: 3em;
	color: #333;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.prev-news:hover, .prev-news:focus, .next-news:hover, .next-news:focus, .prev-project:hover, .prev-project:focus, .next-project:hover, .next-project:focus
{
	color: orange;
	-webkit-tap-highlight-color: transparent;
}

/*--------------------------------------------------------------------*/
/*Content for Projects*/
.projects .content p
{
	margin-top: 10px;
	margin-bottom: 10px;
}
.noimgshadow .content img
{
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	margin-top: 0;
	margin-bottom: 20px;
}

.content .btn
{
	width: 300px;
	height: 200px;
	position: relative;
	margin-left: 340px;
	background-color: black;
	opacity: 0.8;
	line-height: 100px;
	font-size: 100px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.content .btn i
{
	color: white;
	margin-top: 50px;
}
.content .btn:hover
{
	background: orange;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	transition: all 0.5s;
}

/*--------------------------------------------------------------------*/
/*Content for Workstation.html*/

/*--------------------------------------------------------------------*/
/*Content for Competition*/

/*--------------------------------------------------------------------*/
/*Content for About.html*/
.abouttext
{
	width:535px;
	float:left;
	text-align:left;
	margin-left:20px;
}
.aboutimg
{
	float:right;
	margin-right:20px;
}
.aboutmotto
{
	clear: both;
	margin-bottom: 50px;
}
.button
{
	position: relative;
	margin-left: 390px;
}
.button a
{
	display: block;
	height: 50px;
	width: 200px;
	background: orange;

	/*TYPE*/
	color: white;
	font: 13px/50px Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

	-webkit-box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);

	background: -moz-linear-gradient(top, orange 0%, #D78F00 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,orange), color-stop(100%,#D78F00)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, orange 0%,#D78F00 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, orange 0%,#D78F00 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, orange 0%,#D78F00 100%); /* IE10+ */
	background: linear-gradient(top, orange 0%,#D78F00 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#D78F00',GradientType=0 ); /* IE6-9 */
}
.button p
{
	background: black;
	opacity: 0.8;
	display: block;
	height: 40px;
	width: 180px;
	margin: -50px 0 0 10px;

	/*TYPE*/
	text-align: center;
	font: 12px/45px Arial, Helvetica, sans-serif;
	color: #fff;

	/*POSITION*/
	position: absolute;
	z-index: -1;

	/*CSS3*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);

	/*Transition*/
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.button:hover .top
{
  margin: -80px 0 0 10px;
  line-height: 35px;
}
.button:hover .bottom
{
  margin: -10px 0 0 10px;
}
/*Adjust Gradient*/
.button a:hover
{
	color: white;
	text-decoration: none;

	background: orange; /* Old browsers */
	background: -moz-linear-gradient(top,  orange 36%, #D78F00 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(36%,orange), color-stop(100%,#D78F00)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  orange 36%,#D78F00 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  orange 36%,#D78F00 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  orange 36%,#D78F00 100%); /* IE10+ */
	background: linear-gradient(top,  orange 36%,#D78F00 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#009ec3',GradientType=0 ); /* IE6-9 */
}
/*Pulls in Wings*/
.button:active .bottom
{
	margin: -20px 0 0 10px;
}
.button:active .top
{
	margin: -70px 0 0 10px;
}

/*--------------------------------------------------------------------*/
/*Content for Contact.html*/
.social-menu
{
	position: relative;
}
.social-menu ul
{
	position: absolute;
	left: 50%;
	margin-top: 50px;
	margin-bottom: 50px;
	transform: translate(-50%, -50%);
	display: flex;
}
.social-menu ul li
{
	list-style: none;
	margin: 0 30px;
}
.social-menu ul li .fab
{
	font-size: 30px;
	line-height: 60px;
	transition: 0.6s;
	color: orange;
}
.social-menu ul li a
{
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background-color: #fff;
	text-align: center;
	transition: 0.6s;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.social-menu ul li a:hover
{
	transform: translate(0, -10px);
}
.social-menu ul li a:hover .fab
{
	color: white;
}
.social-menu ul li:nth-child(1) a:hover
{
	background-color: #3b5999;
}
.social-menu ul li:nth-child(2) a:hover
{
	background-color: #25D366;
}
.social-menu ul li:nth-child(3) a:hover
{
	background-color: #0077B5;
}
.social-menu ul li:nth-child(4) a:hover
{
	background-color: #FFFC00;
}
.social-menu ul li:nth-child(5) a:hover
{
	background-color: #00AFF0;
}
.contactform
{
	margin-top: 150px;
}

/*--------------------------------------------------------------------*/
/*Content for Downloads.html*/
/*Accordion*/
.accordion
{
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}
.accordion-item
{
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
	color: #333;
}
.item-header
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.title
{
	text-align: left;
	margin-left: 50px;
}
.icon
{
	width: 24px;
	height: 24px;
	border: 2px solid #333;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	line-height: 25px;
	margin-right: 50px;
	margin-top: 20px;
}
.downloadlist
{
	text-align: left;
	margin: 0px 20px 20px 50px;
	max-height: 0;
	overflow: hidden;
	transition: 0.5s;
}
.downloadlist p
{
	margin-bottom: 10px;
}
.downloadlist p a
{
	margin-right: 10px;
}
.accordion-item:hover .icon
{
	background-color: orange;
	transition: 0.5s;
	-webkit-tap-highlight-color: transparent;
}
.accordion-item.active .downloadlist
{
	max-height: 1000px;
	transition: 2s;
	-webkit-tap-highlight-color: transparent;
}
.accordion-item.active
{
	background-color: white;
	-webkit-tap-highlight-color: transparent;
}
/*Content for JLCPCB.html*/
.jlcpcb
{
	line-height: 1.6;
}
.jlcpcb h1
{
	text-align: center;
}
.jlcpcb h2
{
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: left;
}
.jlcpcb li
{
	margin-left: 40px;
}
.jlcpcb p
{
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: left;
}

/*Content for Impressum.html*/
.impressum
{
	height: 9000px;
	text-align: left;
	line-height: 1.6;
}
.impressum h1
{
	text-align: center;
}
.impressum .impressumformat
{
	margin-top: 10px;
	margin-bottom: 10px;
}
.impressum li
{
	margin-left: 40px;
}
.impressum p
{
	margin-top: 10px;
	margin-bottom: 10px;
}

/*--------------------------------------------------------------------*/
/*Footer*/
.footer
{
	margin-top: 100px;
	font-size: 14px;
	font-weight: bold;
	background: black;
	text-align: center;
	opacity: 0.8;
	z-index: 100;
}
.footer ul
{
	display: inline-flex;
	list-style: none;
	color: white;
}
.footer ul li
{
	width: 160px;
	margin: 10px;
	padding: 10px;
}
.footer ul li a
{
	text-decoration: none;
	color: white;
}
.footer ul li:hover
{
	background: orange;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	transition: all 0.5s;
}
.footer .far, .footer .fas
{
	margin-right: 8px;
}

/*--------------------------------------------------------------------*/
/* Responsive Web Design*/
@media screen and (max-width:1079px)
{
	.skills-box
	{
		width: 31%;
	}
}

/*Tablet*/
@media screen and (max-width:640px)
{
	.skills-box
	{
		width: 45%;
	}
}

/*Smartphone*/
@media screen and (max-width:320px)
{
	.skills-box
	{
		width: 50%;
	}
}
