
/* montserrat-300 - latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 300;
	src: local(''),
		 url('./fonts/montserrat-v24-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('./fonts/montserrat-v24-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* montserrat-regular - latin */
  @font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: local(''),
		 url('./fonts/montserrat-v24-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('./fonts/montserrat-v24-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* montserrat-700 - latin */
  @font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	src: local(''),
		 url('./fonts/montserrat-v24-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		 url('./fonts/montserrat-v24-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }


:root {
	--main-color: rgb(215, 215, 215);
}


* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
body {
	width: 100vw;
}
a {
	text-decoration: none;
	color: white;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}

.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: var(--main-color);
}

.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
	padding-left: 32px;
}
.brand h1 span {
	color: var(--main-color);
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	transition: 0.3s ease background-color;
}

#header .header .nav-bar {
	display: flex;
	align-items: center;
	width: 90vw;
}


#header .header .nav-bar .logo-nav {
	max-width: 30px;
}

#header .header .nav-bar .logo-name a h1 {
	font-size: large;
	text-transform: uppercase;

}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: black;
	width: 100vw;
	height: 100vh;
	left: 150%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}

#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: gray;
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}

#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* End Header section */

/* home Section */
#home {
	background-size: cover;
	background-color: var(--main-color);
	background-position: top center;
	position: relative;
	z-index: 1;
}
#home::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0.7;
	z-index: -1;
}
#home .home{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	gap: 20px;
}
#home .home .logo {
	max-width: 80px;
}

#home .home h1 {
	display: block;
	text-transform: uppercase;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#home h1:nth-child(1) {
	animation-delay: 1s;
}
#home h1:nth-child(2) {
	animation-delay: 2s;
}
#home h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#home h1 span {
	position: absolute;
	color: transparent;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color:var(--main-color);
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}

#home h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#home h1:nth-child(2) span {
	animation-delay: 1.5s;
}

#home img {
	animation-delay: 0.5s;
}

/* End home Section */



/* About Section */
#ueber_mich .ueber_mich {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 15px 20px;
}
#ueber_mich .col-right {
	width: 250px;
	height: 360px;
}
#ueber_mich .col-left {
	width: 100%;
}
#ueber_mich .col-left h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#ueber_mich .col-left p {
	margin-bottom: 20px;
}
#ueber_mich .col-left .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#ueber_mich .col-right .ueber_mich-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
	padding: 50px;
}

#ueber_mich table {
	text-align: center;
	font-size: 14px;
	font-weight: 300;
}

#ueber_mich table th {
	text-align: center;
}

#ueber_mich table td {
	padding-bottom: 0.4em;
	text-align: start;
}

/* End ueber_mich Section */

/* meine_leistungs Section */

#meine_leistungen .meine_leistungen {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 20px;

}
#meine_leistungen .meine_leistung-top {
	max-width: 500px;
	margin: 0 auto;
}
#meine_leistungen .meine_leistung-bottom {
	align-items: center;
	justify-content: center;
}

#meine_leistungen .meine_leistung-bottom .icon {
	justify-items: center;
	margin: 30px;
}

#meine_leistungen .meine_leistung-bottom .icon img {
	height: 100px;
	width: 100px;
}

#meine_leistungen .meine_leistung-list h2{
	text-align: center;
}


#meine_leistungen .meine_leistung-list p {
	text-align: center;
}

#meine_leistungen .meine_leistung-list ul {
	font-size: 14px;
	font-weight: 300;
	list-style-type: circle;
	padding: 0 20px;
	margin-top: 5px;
	text-align: left;
}

#meine_leistungen .meine_leistung-list ul > li > ul > li{
	list-style-type: disc;
	margin-left: 10px;
	line-height: 25px;
}

#meine_leistungen .meine_leistung-list li {
	flex-direction: column;
	text-align: left;
	max-width: 1500px;
	margin: 0 auto;
	line-height: 25px ;
}

/* End meine_leistungen Section */


/* Philosophie section */

#philosophie .philosophie {
	flex-direction: column;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
	min-height: auto;
}

#philosophie .philosophie-top {
	max-width: 500px;
	margin: 0 auto;
}

#philosophie .philosophie-bottom {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 15px 0;
}
/* End philosophie Section */


/* contact Section */
#kontakt .kontakt {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
	padding: 100px 20px;
}
#kontakt .kontakt-items {
	/* max-width: 400px; */
	width: 100%;
}
#kontakt .kontakt-item {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
#kontakt .kontakt-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#kontakt .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}

#kontakt .bx-icon {
font-size: 50px;
color: var(--main-color);
}

#kontakt .kontakt-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
	text-transform: uppercase;
}
#kontakt .kontakt-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}

#kontakt .kontakt .kontakt-item {
	display: block;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color);
	color: white;
}

#kontakt .kontakt .kontakt-item .kontakt-info {
	text-align: center;
	padding: 0;
}

#kontakt .bx-icon {
	color: rgb(31, 30, 30);
}

#kontakt .section-title {
	color: var(--main-color);
}

/*End contact Section */



/* Impressum section */

#impressum .impressum {
	flex-direction: column;
	font-size: medium;
	text-align: center;	
	line-height: normal;
	max-width: auto;
	margin: 0 auto;
	padding: 100px 20px;
	min-height: auto;
}

#impressum .impressum-top {
	max-width: 500px;
	margin: 0 auto;
}

#impressum .impressum-bottom {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 15px 0;
}

#impressum .impressum-item {
	background-color: var(--main-color);
	padding: 40px;
	margin: 30px 10px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}

#impressum .impressum-item p {
	color: white;
	font-size: medium;
}
#impressum .impressum-item ul {
    text-align: center;
    list-style-position: inside;
	font-weight: 300;
	line-height: 2.5rem;
}

#impressum .impressum-item ul li{
	color: white;
	font-size: medium;
}

#impressum .philosophie-top .datenschutz {
	font-size: x-large;
}


/* End Impressum Section */

/* Footer */
#footer {
	background-color:var(--main-color);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 500;
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}

#footer .footer-links {
	list-style: none;
	display: flex;
	gap: 20px;
	font-size: small;
}

#footer p {
	color: white;
	font-size: 1.3rem;
}

#footer h1 {
	padding-left: 0;
}
/* End Footer */

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: var(--main-color);
		font-weight: 500;
	}
}
/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	h1.section-title {
		font-size: 6rem;
	}

	/* ueber_mich */
	#home h1 {
		font-size: 7rem;
	}
	/* End home*/

	/* meine_leistungen Section */
	#meine_leistungen .meine_leistung-bottom .meine_leistung-item {
		flex-basis: 45%;
		margin: 2.5%;
	}

	/* End meine_leistungen Section */

	/* About */
	#ueber_mich .ueber_mich {
		flex-direction: row;
	}
	#ueber_mich .col-right {
		width: 532px;
		height: 932px;
		padding-left: 60px;
		justify-content: center;
	}
	#ueber_mich .ueber_mich .col-right .ueber_mich-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid var(--main-color);
	}
	#ueber_mich .col-left {
		text-align: left;
		padding: 30px;
	}
	#ueber_mich .col-left h1 {
		text-align: left;
	}

	#ueber_mich .ueber_mich {
		padding: 100px 20px;
	}

	#ueber_mich .col-left h2 {
		text-align: left;
	}
	
	#ueber_mich table {
		width: inherit;
	}
	/* End About */


	/* meine leistungen section */


	/* end meine leistungen */

	/* kontakt  */
	#kontakt .kontakt {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#kontakt .kontakt-items {
		width: 100%;
		display: flex;
		gap: 15px;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#kontakt .kontakt-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#kontakt .kontakt-item .icon {
		height: 100px;
		width: 100px;
	}
	#kontakt .kontakt-item .icon img {
		object-fit: contain;
	}
	#kontakt .kontakt-item .kontakt-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	/* End contact  */

	#impressum .philosophie-top .datenschutz {
		font-size: 6rem;
	}
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;

	}
	#header .nav-list ul li a {
		font-size: 1.7rem;
	}

	#header .nav-list ul li a:hover {
		border-bottom: 1px solid white;
	}

	#header .nav-list ul a:after {
		display: none;
	}

	#header .header .nav-bar .logo-name a h1{
		font-size:x-large;
	}


	#header .nav-bar {
		max-width: 80%;
	}
	/* End header */

	/* ueber_mich section */
	#ueber_mich .ueber_mich {
		padding: 100px 20px;
	}

	#ueber_mich .col-left h2 {
		text-align: left;
	}

	#ueber_mich table {
		width: inherit;
	}

	/* end ueber_mich */

	/* meine_leistungen*/

	#meine_leistungen .meine_leistung-bottom .meine_leistung-item {
		flex-basis: 22%;
		margin: 1.5%;
	}

	#meine_leistungen .meine_leistung-list {
		gap: 10%;
	}

	#meine_leistungen .meine_leistungen {
		padding: 100px 20px;
	}

	#meine_leistungen .meine_leistung {
		display: flex;
		margin: 60px;
	}

	#meine_leistungen .meine_leistung-bottom .icon {
		margin-top: 0;
	}

	#meine_leistungen .meine_leistung-list h2{
		text-align: left;
	}

	#meine_leistungen .meine_leistung-list p {
		text-align: left;
	}

	/* ende meine_leistungen*/

	/* philosophie*/
	#philosophie .philosophie {
		min-height: 100vh;
		padding: 100px 20px;
	}
	/* ende philosophie*/


	/* kontakt section */
	#kontakt .kontakt {
		padding: 100px 20px;
	}

	#kontakt .kontakt .kontakt-items {
		gap: 40px;
    	margin-top: 40px;
	}
	/* ende kontakt */

/* impressum section  */
	#impressum .impressum {
	padding: 100px 20px;

	}

	#impressum .philosophie-top .datenschutz {
		font-size: 6rem;
	}
/* end impressum */
	
}


@media only screen and (min-width: 1400px) {
	#header .nav-bar {
		justify-content: space-around;
	}

	#header .header .nav-bar .logo-name a h1 {
		font-size: xx-large;
	}

	#header .nav-list ul li a {
		font-size: 1.7rem;
	}

	#impressum .philosophie-top .datenschutz {
		font-size: 6rem;
	}

}
/* End  Media Query For Desktop */
