@charset "utf-8";
@font-face {
  font-family: 'Satoshi-Regular';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2'),
       url('fonts/Satoshi-Regular.woff') format('woff'),
       url('fonts/Satoshi-Regular.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Satoshi-Regular';
}
html{
	scroll-behavior: smooth;
}
body{
	background: #080808;
	color: #1f1f1f;
}
body span{
	color: #7aa8da;
}	

#header{
	width: 100%;
	height: 100vh;
	background: url("images/Background.jpg.png") no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	
	
}
.hide-robot{
		display:none;
		}
.container{
	padding: 10px 10%;
}
.text{
	color: #333333;	
}
.flex-box{
	margin-top: 50px;
	margin-right: 55%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: nowrap;
	border: solid 5px rgba(255,255,255,1.00); 
	border-radius: 15px;	
}
.flex-box ul{
	list-style: none;
	margin: 10px 0;
	color: #333333;
	 
}
.flex-box ul li{
	color: #1f1f1f;
	text-decoration: none;
	font-size: 18px;
	position: relative;
}
.times-left {
	flex-basis: 33%;
	margin-left: 6%;
}
.times-middle{
	flex-basis: 33%
}
.times-right{
	flex-basis: 33%;
}
nav{
	display: flex;
	align-items:center;
	justify-content: space-between;
	padding-left: 10%;
	padding-right: 10%;	
	background: #E2E2E2;
}
nav ul li{
	display: inline-block;
	list-style: none;
	margin: 10px 20px;
}
nav ul li a{
	color: #1f1f1f;
	text-decoration: none;
	font-size: 18px;
	position: relative;
}
nav ul li a::after{
	content: '';
	width: 0;
	height: 3px;
	background: #7aa8da;
	position: absolute;
	left: 0;
	bottom: -6px;
	transition: 0.5s;
}
nav ul li a:hover::after{
	width: 100%;
}
.header-text {
	margin-top: 20%;
	font-size: 30px;
	
}
.header-text p{
	margin-right: 55%;
	margin-top: 20px;
	font-size: 20px;
	text-align: center;
	font-size: 30px;
}
.header-text h1{
	font-size: 60px;
	margin-top: 20px
}
.header-text h1 span{
	color: #7aa8da;
}
/*--Slider--*/
.slider{
	height: 200px;
	margin-bottom: -50px;
	position: relative;
	width: 100%;
	display: grid;
	place-items: center;
	background: rgba(242,242,242,1.00);
	overflow: hidden;	
}
.slider-track{
	display: flex;
	width: calc(250px * 12);
	animation: scroll 20s linear infinite;
}
@keyframes scroll{
	0% {
		transform: translateX(0);
	}
	100%{
		transform: translateX(calc(-250px * 6));
	}
}
.slide{
	height: 200px;
	width: 500px;
	display: flex;
	align-items: center;
	padding: 15px;
	perspective: 100px;
}
.slide p{
		font-size: 25px;
		width: 100%;
		text-align: center;
		transition: transform 1s;
		color: #ff004f;
}
.slide img{
	width: 100%;
	transition: transform 1s;
}
.slide img:hover{
 	transform: translateZ(20px);	
}
/*--Shadows--*/

.slider::before,
.slider::after {
	background: linear-gradient(to right, rgba(242,242,242,1) 0%, rgba(242,242,242,0) 100%);
	content: '';
	height: 100%;
	position: absolute;
	width: 15%;
	z-index: 2;
}
.slider::before{
	left: 0;
	top: 0;	
}
.slider::after{
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

/*---------Über Uns----------- */
#about{
	padding: 50px 0;
	color: #ababab;
	background: #f2f2f2;
	
}
.row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;	
}
.about-col-1{
	flex-basis: 35%;
}
.about-col-1 img{
	width: 100%;
	border-radius: 15px;
}
.about-col-2{
	flex-basis: 60%;
}
.about-col-2 p{
		margin-top: 20px;
		font-size: 20px;
		line-height: 150%;
		color: #333333;
}
.sub-title{
	font-size: 60px;
	font-weight: 600;
	color: #1f1f1f;
	margin-bottom: 20px;
	text-align: center;
}
.tab-titles{
	display: flex;
	margin: 20px 0 40px;
	color: #333333;
}
.tab-links{
	margin-right: 50px;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
}
.tab-links::after{
	content: '';
	width: 0;
	height: 3px;
	background: #7aa8da;
	position: absolute;
	left: 0;
	bottom: -8px;
	transition: 0.5s;
}
.tab-links.active-link:after{
	width: 50%;
}
.tab-contents ul li{
	list-style: none;
	margin: 10px 0;
	color: #333333;
	
}
.points ul li {
	list-style:circle;
	margin-top: 3px;
	margin-left: 20px;;
	color: #f1f1f1;
	text-align: left;
}
.tab-contents ul li span{
	color: #7aa8da;
	font-size: 14px;
}
.tab-contents{
	display: none;
}
.tab-contents.active-tab{
	display: block;
}
/*---------Unser Angebot----------- */
#services{
	padding: 30px 0;
	background: #f2f2f2;
	
}
.leistungen{
	margin-left: 25%;
	width: 50%;
	text-align: center;
	line-height: 150%;
	
}
.services-list{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 40px;
	margin-top: 50px;
	color: #fff;
}
.services-list div{
	background: #262626;
	padding: 40px;
	font-size: 15px;
	font-weight: 300;
	border-radius: 15px;
	transition: background 0.5s, trabsform 0.5s;
}
.services-list div i{
	font-size: 50px;
	margin-bottom: 20px;
}
.services-list div h2{
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 15px;
}
.services-list div a{
	text-decoration: none;
	color: #fff;
	font-size: 12px;
	margin-top: 20px;
	display: inline-block;
}
.services-list div:hover{
	background: #7aa8da;
	transform: translateY(-10px);
	
}
.services-list span{
	color: #ff004f;
}
/*---------Unsere Referenzen----------- */
#kompetenzen{
	padding: 50px 0;
	background: #f2f2f2;
	
}
.work-list{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 40px;
	margin-top: 50px;
}
.work{
	border-radius: 25px;
	position: relative;
	overflow: hidden;
	color: #fff;
}
.work img{
	width: 100%;
	border-radius: 15px;
	display: flex;
	transition: transform 0.5s;
}
.layer{
	width: 100%;
	height: 0;
	background: linear-gradient(rgba(0,0,0,0.6), #000);
	border-radius: 15px;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;	
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	font-size: 14px;
	transition: height 0.5s;
}
.layer h3{
	font-weight: 600;
	margin-bottom: 5px;
}
.layer a{
	margin-top: 20px;
	color: #f1f1f1;
	text-decoration: none;
	font-size: 12px;
	line-height: 60px;
	
	width: 60px;
	height: 60px;
	text-align: center;
}
.work:hover img{
	transform: scale(1.1);
	
}
.work:hover .layer{
	height: 100%;
}
.btn{
	display: block;
	margin: 50px auto;
	width: fit-content;
	border: 1px solid #f2f2f2;
	padding: 14px 50px;
	border-radius: 10px;
	text-decoration: none;
	color: #3F33333;
	background: #E2E2E2;
	transition: background 0.5s;
}
.btn:hover{
	background: #7aa8da;
}
/*---------E-Check----------- */
#team{
	padding: 50px;
	background: #f2f2f2;
}
.team-right {
	margin-top: 20px;
	flex-basis: 50%;
	
}
.team-right img{
	border-radius: 15px;
	margin-left: 50%;
}
.team-right p {
	margin-left: 50%;
	
}
.team-left{
	flex-basis: 50%;
}
.team-left p{
	margin-top: 20px;
	font-size: 20px;
	line-height: 150%;

	
}
#termine{
	padding: 50px;
	background: #f2f2f2;
}
.termine-left{
	flex-basis: 50%;
}
.termine-left p{
	margin-top: 20px;
	font-size: 20px;
	line-height: 150%;
	
}
.termine-right {
	margin-top: 20px;
}
.termine-right img{
	width: 100%;
}
/*---------Kontakt----------- */
#contact{
	background: #f2f2f2;
	padding: 50px;
}
.nohoney{
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -10;
}

.contact-left{
	flex-basis: 35%;
	
}
.contact-left a{
	text-decoration: none;
	color: #333333; 
}
.contact-left a:hover{
	color: #7aa8da;
	transform: translateY(-5px);
	}
.contact-right{
	flex-basis: 60%;
}
.contact-left p{
	margin-top: 30px;
	
}
.contact-left p i{
	color: #7aa8da;
	margin-right: 15px;
	font-size: 25px;
}
.rechtliches{
	margin-top: 30px;
}
.rechtliches a{
	text-decoration: none;
	font-size: 14px;
	margin-right: 15px;
	color: #ababab;
	display: inline-block;
	transition: transform 0.5s;
}
.rechtliches p{
	font-size: 18px;
	margin-bottom: 10px;
}
.rechtliches a:hover{
	color: #7aa8da;
	transform: translateY(-5px);
}

.btn.btn2{
	display:inline-block;
	background: #7aa8da;
}
.contact-right form{
	width: 100%;

}
form input, form textarea{
	width: 100%;
	border: 0;
	outline: solid 5px;
	background: #E2E2E2;
	padding: 15px;
	margin: 15px 0;
	color: #fff;
	font-size: 18px;
	border-radius: 15px;
}
form .btn2{
	padding: 14px 60px;
	font-size: 18px;
	margin-top: 20px;
	cursor: pointer;
	
}
#checkbox{
	height: 20px;
	outline: none;
}
.check-col-1{
	flex-basis: 10%;
}
.check-col-2{
	flex-basis: 90%;
}
.check-col-2 a{
	color: #7aa8da;
	text-decoration: none;
	
}

@keyframes buttons{
	0%{
		transform: scale(0.1);
	}
	50%{
		transform: scale(0.5);
	}
	100%{
		transform: scale(1);
	}
}
	
.copyright{
	width: 100%;
	text-align: center;
	padding: 25px 0;
	background: #E2E2E2;
	font-weight: 300;
}
.copyright a{
	text-decoration: none;
	color: #333333; 
}
.copyright a:hover{
	color: #7aa8da;
	transform: translateY(-5px);
	}

#impressum{
	padding: 80px 0;
	color: #333333;
	background: #f2f2f2;
	font-size: 20px;
	line-height: 150%;
}

.spacesmall{
	height: 15px;
	background: linear-gradient(rgba(0,0,0,0.1), #434040);
}
.fairness-col-1{
	margin-top: 20px;
}
.fairness-col-1 img{
	width: 100px;	
}
.fairness-col-1 p{
	font-size: 18px;
	color: #333333;
	margin-top: 50px;
}
.fairness-col-1 a{
	text-decoration: none;
	margin-right: 15px;
	font-size: 18px;
	color: #333333;
	display: inline-block;
	transition: transform 0.5s;
}

.fairness-col-1 a:hover{
	color: #7aa8da;
	transform:  translateY(-5px);
}
#datenschutz{
	padding: 80px 0;
	color: #333333;
	background: #F2F2F2;
	
}
.links{
	margin-top: 20px;
}
.links p{
	margin-top: 20px;
	font-size: 15px;
	line-height: 150%;
}
.links a{
	text-decoration: none;
	font-size: 15px;
	color: #000;
	display: inline-block;
	transition: transform 0.5s;
	margin-left: 20px;
}
.links a:hover{
	color: #7aa8da;
	transform:  translateY(-5px);
}
.left{
	margin: 10px 30px;
	font-size: 20px;
	line-height: 150%;
}
.gotopbtn{
	position: fixed;
	width: 50px;
	height: 50px;
	background: #7aa8da;
	bottom: 150px;
	right: 50px;
	
	text-decoration: none;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	opacity: 0.75
	
}
/*---------Responsive----------- */
nav .fa-solid{
	display: none;
}



@media only screen and (max-width : 1500px ){
		#header{
		height: 100vh;
	}
	.header-text{
		margin-top: 20%;
		font-size: 16px;
		
	}
	.header-text h1{
		font-size: 40px;
	}
	nav .fa-solid{
		display: flex;
		font-size: 25px;
	}
	nav ul{
		background: #7aa8da;
		position: fixed;
		top:0 ;
		right: -200px;
		width: 200px;
		height: 100vh;
		padding-top: 50px;
		z-index: 2;
		transition: right 0.5s;
	}
	nav ul li{
		display: block;
		margin: 25px;
	}
	nav ul .fa-solid{
		position: absolute;
		top: 25px;
		left: 25px;
		cursor: pointer;
	}
	
	.termine-left{
		text-align: center;
		flex-basis: 100%;
	}
	.termine-right{
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-top: 50px;
	}
	.termine-right img{
		width: 300px;
	}
	.about-col-1{
		text-align: center;
		flex-basis: 100%;
	}
	.about-col-1 img{
		width: 400px;
	}
	.about-col-2{
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-top: 50px;
	}
	.about-col-2 p{
		text-align: center;
	}
}

@media only screen and (max-width : 800px ){
	#header{
		height: 100vh;
		background: url("images/phone-background.png") no-repeat center;
		background-size: cover;
		background-position: center;
		position: relative;
	}
	
	.header-text{
		font-size: 12px;
		background: #f2f2f2;
		border-radius: 5%;
		text-align: left;
		margin-top: 30vh;
		width: 100%;
		
		
	}
	.header-text h1{
		font-size: 30px;
		margin-left: 10%;
	}
	.header-text p{
		font-size: 20px;
		margin-left: 30%;
	}
	
	.flex-box{
	margin-top: 50px;
	margin-right: 0%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: nowrap;
	border: solid 5px rgba(255,255,255,1.00); 
	border-radius: 15px;	
	font-size: 10px;
	}
	
	.times-left ul li{
		font-size: 15px;
	}
	.times-middle ul li{
		font-size: 15px;
	}
	.times-right ul li{
		font-size: 15px;
	}
	nav .fa-solid{
		display: block;
		font-size: 25px;
	}
	nav ul{
		background: #7aa8da;
		position: fixed;
		top:0 ;
		right: -200px;
		width: 200px;
		height: 100vh;
		padding-top: 50px;
		z-index: 2;
		transition: right 0.5s;
	}
	nav ul li{
		display: block;
		margin: 25px;
	}
	nav ul .fa-solid{
		position: absolute;
		top: 25px;
		left: 25px;
		cursor: pointer;
	}
	.sub-title{
		font-size: 30px;
	}
	.about-col-1, about-col-2{
		flex-basis: 100%;
	}
	.about-col-1{
		margin-bottom: 30px;
	}
	.about-col-1 img{
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.about-col-2 p{
		font-size: 15px;
		text-align: center;
	}
	.tab-links{
		font-size: 16px;
		margin-right: 10px;
	}
	.contact-left{
		flex-basis: 100%;
	}
	.contact-right{
		flex-basis: 100%;
	}
	.fairness-col-1 img{
		width: 100px;
	}
	.termine-left, termine-right{
		flex-basis: 100%;
	}
	.termine-left{
		text-align: left;
	}
	.termine-left p{
		font-size: 15px;
	}
	.termine-right{
		margin-top: 50px;
	}
	.termine-right img{
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.gotopbtn{
		display: none;
	}
	#impressum{
	padding: 50px 0;
	color: #333333;
	background: #f2f2f2;
	}
	.left{
	margin: 10px 30px;
	font-size: 15px;
	line-height: 150%;
	}
	.links p{
	margin: 10px 30px;
	font-size: 15px;
	line-height: 150%;
	}
	.work img{
	width: 200%;
		
	}
	.layer p {
		font-size: 10px;
	}
	.layer ul li{
		font-size: 10px;
	}
	.team-right {
	margin-top: 20px;
	flex-basis: 100%;
	
    }
    .team-right img{
        border-radius: 15px;
        width: 100%;
        margin-left: 0%;
    }
	.team-right p{
		margin-left: 0%;
		text-align: center;
	}
    .team-left p{
        margin-top: 20px;
        font-size: 15px;
        line-height: 150%;
        text-align: center

      }
	.team-left{
		flex-basis: 100%;
	}
}