@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;900&display=swap');
 
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Orbitron', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	
}

h2 {
	color: white;
	font-family: 'Orbitron', sans-serif;
	font-size: .6rem;
	margin-top: 5px;
	line-height: 1rem;
	font-weight: 300;
	letter-spacing: .1rem;
	font-weight: bold;
	line-height: 3rem;
}


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: .05rem;
	font-family: 'Montserrat', sans-serif;
}
.section-title {
	font-size: 4rem;
	font-weight: bold;
	color: black;
	margin-bottom: 50px;
	text-transform: uppercase;
	line-height: 35px;
	letter-spacing: .2rem;
	text-align: center;
}
.section-title span {
	font-weight: 300;
}

.cta {
	display: inline-block;
	padding: 10px 20px;
	color: white;
	background-color: transparent;
	border: 2px solid rgb(153, 255, 0);
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	margin-top: 20px;
	transition: .3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	background-color: rgb(153, 255, 0);
	color: black;
}












/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
	
}
#header .header {
	min-height: 7vh;
	opacity: 0;
	/*background-color: rgba(31, 30, 30, 0.24);*/
	transition: .3s ease background-color;
	animation: hero 1s ease forwards;
	animation-delay: 0.3s;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1200px;
	padding: 0 50px;
}


#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: .5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: .2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 0 10px;
	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: rgba(240, 248, 255, 0.025);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: .3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: rgb(153, 255, 0);
}
#header .hamburger {
	height: 50px;
	width: 50px;
	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(.8);
	margin-right: 20px;
}
#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::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: .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 */

/* Hero Section */
#hero {
	background-image: url(./img/Mullewapp_BG.jpg);
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
	opacity: 0%;
	clip-path: polygon(100% 0, 100% 85%, 31% 100%, 0 93%, 0 0);
	transition: .3s ease;
	transition-property: opacity;
	animation: hero 1s ease forwards;
	animation-delay: 0.3s;
}
#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: .40;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#hero h2 {
	display: block;
	padding: 20px 0;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal 1s ease forwards;
	animation-delay: 5s;
	text-transform: uppercase;
	line-height: 2px;
	font-family: 'Orbitron', sans-serif;
	
}

#hero h1 {
	display: block;
	width: fit-content;
	font-size: 2rem;
	position: relative;
	color: transparent;
	animation: text_reveal 1s ease forwards;
	animation-delay: .5s;
	text-transform: uppercase;
	font-family: 'Orbitron', sans-serif;
	
	
}



#hero h1:nth-child(1) {
	animation-delay: .5s;
}
#hero h2:nth-child(2) {
	animation-delay: 2s;
}
#hero h2:nth-child(3) {
	animation-delay: 2.7s;
}
#hero h2:nth-child(4) {
	animation-delay: 3.5s;
}


#hero h2 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color:rgb(153, 255, 0);
	animation: text_reveal_box 1s ease;
	animation-delay: 2s;
}

#hero h2 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color:rgb(153, 255, 0);
	animation: text_reveal_box 1s ease;
	animation-delay: 2s;
}
#hero h1:nth-child(1) span {
	animation-delay: .7s;
}
#hero h2:nth-child(2) span {
	animation-delay: 1.7s;
}
#hero h2:nth-child(3) span {
	animation-delay: 2.4s;
}
#hero h2:nth-child(4) span {
	animation-delay: 3.2s;
}


#hero .cta{
	opacity: 0;
	animation: herobtn .5s ease forwards;
	animation-delay: 4s;
}




/* End Hero Section */

/* Services Section */
#services .services {
	flex-direction: column;
	text-align: center;
	max-width: 1600px;
	margin: 0 auto;
	padding: 100px 0;
	
}
#services .service-top {
	max-width: 75%;
	margin: 0 auto;
	padding: 12px;
	
}

#services .service-headline{
	width: 300px;
	height: 50px;
	background-color:rgb(153, 255, 0);
	text-align: left;
	padding: 20px;
	margin-top: 0px;
	clip-path: polygon(3% 2%, 93% 7%, 100% 95%, 2% 97%);

}

#services .benefits-headline h3{
	color: black;
	margin-top: 100px;
	font-size: 3rem;
}



#services .service-top h3{
	font-size: 2.1rem;
	text-align: center;
	color:black;
	line-height: .8rem;
	
}

#services .service-top p{
	font-size: 1.8rem;
	text-align: left;
}

#services .service-items {
	max-width: 600px;	
}





#services .service-item {
	width: 70%;
	text-align: center;
	padding: 30px;
	margin: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: rgb(46, 46, 46);
	clip-path: polygon(0 3%, 100% 0, 94% 100%, 5% 96%);
	min-width: 350px;
	
}

#services .service-item .skill-wrapper{
	text-align: left;
	padding:15px;
}


#services .service-item:nth-child(1){
	clip-path: polygon(0 3%, 100% 0, 94% 100%, 5% 96%);
}

#services .service-item:nth-child(2){
	clip-path: polygon(3% 2%, 96% 0, 100% 100%, 2% 97%);
}


#services .service-item:nth-child(3){
	clip-path: polygon(0 3%, 100% 0, 94% 100%, 5% 96%);
}

#services .service-item h2{
	color: white;
	font-size: 2rem;
}


#services .service-item p{
	text-align: left;
	font-weight: 500;
	font-size: 1.5rem;
	color: white;
}

#services .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}


/* End Services Section */







/* Start Showreel Section */


#showreel .showreel{
    flex-direction: column;
	max-width: 90%;
	margin: 0 auto;
	padding: 100px 0;
	padding-bottom: 150px;

}

#showreel .frame{

	background-image: linear-gradient(60deg, #0f0f0f 0%, #2b2b2b 100%);
	clip-path: polygon(0 0, 100% 0, 97% 96%, 2% 100%); 
	padding-top: 50px;
	padding-bottom: 50px;
}


#showreel .wrapper{
	
	margin: 0 auto;
	width: 90%;
	position: relative;
	padding-bottom: 48.38%;
	clip-path: polygon( 0 5%, 100% 0, 97% 96%, 2% 100%); 
	
}



#showreel .wrapper iframe{
	position: absolute;
	top: 0;
	left: 0;
	right: 0px;
	bottom: 0px;
	width:100%;
	height:100%;
	
}



#showreel .showreel-info{
	margin: 0 auto;
	width: 90%;
	position: relative;
	height:150px;
	text-align: center;
}



#showreel .showreel-info p{
	color: white;
	padding: 30px 30px;
	font-size: 1.4rem;
	line-height: 3rem;
	font-weight: 400;
	text-align: left;
	
}







/* End Showreel Section */





/* Projects section */
#projects .projects {
	
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
#projects .projects-header h1 {
	margin-bottom: 50px;
}
#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	
}
#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #0f0f0f 0%, #2b2b2b 100%);
	color: white;
    clip-path: polygon(0 0, 98% 3%, 96% 96%, 0 100%);
}
#projects .project-info h3 {
	font-size: 4rem;
	font-weight: 500;
	color: white;
	

}
#projects .project-info h2 {
	font-size: 2rem;
	font-weight: 500;
	margin-top: 10px;
	padding-top: 10px;
}
#projects .project-info p {
	font-size: 1.3rem;
	color: white;
}
#projects .project-img {
	flex-basis: 50%;
	height: 500px;
	overflow: hidden;
	position: relative;
	clip-path: polygon(1% 3%, 100% 0, 95% 100%, 4% 97%);
}



#projects .project-info .cta{
	color: white;
	font-size: 1.5rem;
	padding: 8px 15px;
	
}
#projects .projects-info .cta:hover{
	color: black;
}

#projects .project-info a {
	font-size: 1.5rem;
	color: rgb(153, 255, 0);
	font-weight: 600;
}
/* End Projects section */

/* About Section */
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}


#about .col-left {
	width: 250px;
	height: 360px;

}
#about .col-right {
	width: 100%;
}
#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: left;
	padding-left: 5%;
	padding-right: 7%;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#about .col-left .about-img {
	height: 400px;
	width: 400px;
	position: relative;
	clip-path: polygon(0 0, 97% 6%, 100% 93%, 0 100%);
}

/* End About Section */








/* contact Section */
#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
}
#contact .contact-items {
	width: 400px;
}
#contact .contact-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;
	background-color: rgb(153, 255, 0);
	clip-path: polygon(0 3%, 100% 0, 94% 100%, 5% 96%);
}

#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}
#contact .contact-info h2 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
	color: black;
}
#contact .contact-info h3 {
	font-size: 1.4rem;
	line-height: 2.2rem;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
}
/*End contact Section */


	/* cardtest  */

/*#projectcards .projectcards{
	
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	background-color: rgb(28, 30, 31);
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

#projectcards .card{
    position: relative;
    max-width: 300px;
    height: 215px;
    background: #fff;
    margin: 30px 10px;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	transition: 0.3s cubic-bezier(0.3,0,0,1.3);
	
}

#projectcards .card:hover{
	height: 550px;
}

#projectcards .card .imgBx{
	position: relative;
	width: 260px;
	height: 260px;
	top: -60px;
	left: 5px;
	z-index: 1;
}

#projectcards .card .imgBx img{
	max-width: 100%;
	transition: .3s ease transform;
		
}

#projectcards .card .imgBx .noah img{
    clip-path: polygon(0 15%,100% 0,75% 90%,0 100%);
}

#projectcards .card .imgBx .niko img{
    clip-path: polygon(0 10%,90% 6%,75% 90%,0 80%);
}

#projectcards .card .content{
	position: relative;
	margin-top: -20px;
	padding: 10px 15px;
	text-align: left;
	color: #111;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s cubic-bezier(0.3,0,0,1.3);
	overflow: hidden;
	
}

#projectcards .card:hover .content{
	visibility: visible;
	opacity: 1;
	margin-top: -40px;
	transition-delay: 0.2s;
}


#projectcards  .card .content .cta{
	padding: 5px 15px;
	font-size: 1.5rem;
	margin-top: 20px;
	color: black;
}
*/
	

/* end of cardtest  */

















/* Footer */
#footer {
	background-color: rgb(17, 17, 17);
}
#footer .footer {
	min-height: 180px;
	flex-direction: column;
	padding-top: 10px;
	padding-bottom: 10px;
}

#footer .brand{
	position: center;
	width: 142px;
	height: 26px;
	margin-bottom: 10px;
	margin-top: 10px;
	
}
#footer h2 {
	color: white;
	font-weight: 300;
	font-size: 1.5rem;
	letter-spacing: .1rem;
	margin-top: 10px;
	margin-bottom: 10px;

}
#footer .social-icon {
	display: flex;
	margin-bottom: 0px;
}
#footer .social-item {
	height: 35px;
	width: 35px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: .3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}

#footer .impressum {
	margin-top: 12px;

}

#footer .impressum:hover a{
	color:rgb(153, 255, 0);

}
#footer .impressum a{
	color: white;
	font-family: "Montserrat", sans-serif;
	font-size: 1.5rem;
}
#footer p {
	color: white;
	font-size: 1rem;
	margin-bottom: 20px;
}
/* End Footer */



/* Impressum */

#impressum .impressum{
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;

}
#impressum .headline{
    padding-left: 15%;
	padding-right: 15%;
	padding-top: 50px;
	padding-bottom: 30px;

}

#impressum .text{
	padding-left: 15%;
	padding-right: 15%;
	padding-top: 10px;

}

#impressum .headline h4{
	font-size: 2.2rem;
	font-family: "Orbitron",sans-serif;

}

#impressum .headline p{
	font-size: 2rem;
	font-weight: 400;
	
}

/* End Impressum */


















/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes herobtn {
	0% {
		opacity: 0%;
	}
	100% {
		opacity: 100%;
	}
}
@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:rgb(153, 255, 0);
		font-weight: 500;
	}
}

@keyframes hero {
	0% {
		opacity: 0%;
	}
	100% {
		opacity: 100%;
	}
}

/* End Keyframes */



















/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 1.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 5rem;
	}

	/* Hero */
	#hero h2 {
		font-size: 6rem;
		line-height: 10px;
	}

	#hero h1 {
		font-size: 2rem;
	}
	/* End Hero */

	/* Services Section */
	#services .service-bottom .service-item {
		flex-basis: 50%;
		margin: 20px;
	}
	/* End Services Section */




	/* Start Showreel Section */


	#showreel .showreel{
		max-width: 80%;
	}

	#showreel .frame{
		width: 100%;
	}

	/* End Showreel Section */



	/* Project */
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
		
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	
	/* End Project */





	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}


	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}


	#about .col-left .about-img {
		height: 300px;
		width: 300px;
	}	
	/* End About */







	/* contact  */
	#contact .contact {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;

	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	/* End contact  */
}
/* 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: auto;
		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 a:after {
		display: none;
	}
	/* End header */

	#hero h1{
		margin-top: 20px;
		font-size: 2rem;

	}

	#hero h2{
		margin-top: 8px;
		font-size: 6rem;

	}

	/* Start Showreel Section */


	#showreel .showreel{
		max-width: 70%;
	}
	#showreel .frame{
		width: 100%;
	}
	
	/* End Showreel Section */



	#services .service-top {
		max-width: 45%;
	}

	#services .service-bottom .service-item {
		flex-basis: 10%;
		margin: 10px;
	}
}
/* End  Media Query For Desktop */
