
.presentation {
	display: flex;
	align-items:center;
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	box-shadow: 0 0 10px rgba(8, 0, 114, 0.274); 
	margin: 0;
	padding: 7rem 0rem 100px 200px;	
}
.introduction {
	flex: 2;
}
.intro-text ul{
	font-size: smaller;
	font-weight: 300;
	margin-bottom: 1rem;
}
.productMarka span{
	font-weight: 700;
    font-size: 1.8rem;
	color: var(--backgroundMenu);
}

.cta {
	padding: 20px 0px 0px 0px;
}

.addBtn {
	background: #fafddf;
	width: 150px;
	height: 50px;
	cursor: pointer;
	font-size: 2rem;
	font-weight: 500;
	border: none;
	color: rgb(42, 100, 0);
	margin: 10px 0px 0px 10px;
	border: 1px solid rgba(138, 146, 255, 0.644);
	box-shadow: 0 0 3px rgba(8, 0, 114, 0.274);    
}
/* 
.cover {
	flex: 2;
	display: flex;
	justify-content: center;
	align-content: center;
	height: 60vh;
}
.cover img {
	height:40vh;
	margin-top: 5rem;
	filter: drop-shadow(0px 5px 3px rgb(200, 200, 200));
	animation: drop 0.7s ease;
} */
.cover {
	position: relative;
	display: flex;
	margin-top: 5rem;
	margin-right: 200px;
	width: 60vb;
	height: 45vh;
  }

  .cover img {
	filter: drop-shadow(0px 5px 3px rgb(200, 200, 200));
	position: absolute;
	width: 100%;
  }
  .cover img:nth-child(1) {	
	animation: a1 0.7s ease;
	transform: translate(-10px, 50px);
  }
  .cover img:nth-child(2) {
	transform: translate(0px, 0px);
  }
  .cover img:nth-child(3) {
	animation: a3 0.7s ease;
	transform: translate(10px, -30px);	
  }
  .cover img:nth-child(4) {
	animation: a4 0.6s ease-in;
	transform: translate(25px, -90px);	
  }
  	@keyframes a1 {
		0%{
			transform: translate(0px, 0px);
			 
		}
		100%{
				transform: translate(-10px, 50px);
		}
	}
	@keyframes a3 {
		0%{
			transform: translate(0px, 0px);
			 
		}
		100%{
				transform: translate(10px, -30px);
		}
	}	
	@keyframes a4 {
		0%{
			transform: translate(0px, 0px);
			 
		}
		100%{
				transform: translate(25px, -90px);
		}
	}
  
  
.title {
	color: rgb(16, 0, 105);
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.titleInstruction{
	display: flex;
	padding: 20px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	justify-content: space-around;
	color: var(--backgroundMenu);
}
#instruction {
	display: flex;
	width: 95%;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	font-weight: 520;
	font-size: 1.6rem;
	line-height: 1.5;	
	align-items: center;
	margin-top: 20px;	
}
#instruction div {
	width: 340px;
	height: 400px;
	background-color: white;
	padding: 5px;
	margin: 5px;
	margin-top: 10px;
	border: 1px solid rgba(255, 199, 161, 0.644);
	box-shadow: 0 0 10px rgba(8, 0, 114, 0.274);   
	display: flex;
	align-items: center;
	justify-content: center; 
	flex-direction: row;
	flex-wrap: wrap;
}
#instruction img {
	height: 300px;
	width: auto;
}

@media screen and (max-width: 1400px) {
	.presentation {
		padding-left: 50px;			
	}
	.cover {
		margin-right: 50px;
		height: 40vb;
		width: 35vh;
	}
}


@media screen and (max-width: 800px) {
	.presentation {
		flex-direction: column;
		font-size: 1.7rem;
		font-weight: 600;
		line-height: 1.3;
		margin: 0;
		padding: 3rem 2rem 2rem 1rem;			
	}
	.introduction {
		margin-top: 5vh;
		text-align: center;
	}
	.cta {
		padding: 0px 0px 0px 0px;
	}
	.cover {
		padding-top: 0.5rem;
		padding-bottom: 30rem;
		margin-right: 0px;
		height: 26vb;
		width: 23vh;
	}
}



