.videos{
	width: 1300px;
	height: 731px;
	border: 3px solid #ccc;
	margin: 20px auto 20px auto;
	overflow: hidden;
}

video
{
	display: block;
	width: 100%;
	height: auto;
}

/*Banners*/
#banners{
	position: relative;
	width: 100vw;
	height: calc(100vw * 0.5);
	background-color: #ccc;
	overflow: hidden;
}

/*Parallax*/
.info{
	position: relative;
	width: 100%;
	height: 600px;
}

.bg-parallax{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 600px;
	overflow: hidden;
	z-index: 1;
}

.ft-parallax{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	width: 100%;
	height: 600px;
	z-index: 2;
}

/*Card 2*/
.card2-container{
	width: 1000px;
	height: 500px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

.card2{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 1000px;
	height: 500px;
	background-color: #fff;
}

.card2-spacer{
	width: 20%;
	height: 5px;
	background-color: #000;
	margin: 0 0 20px 0;
}

.card2-image{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 400px;
	height: 500px;
}

.card2-image img{
	display: block;
	width: 300px;
	height: auto;
}

.card2-content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 600px;
	height: 500px;
}

.card2-content-header{
	width: 80%;;
	text-align: left;
	margin: 0 0 20px 0;
}

.card2-content-text{
	width: 90%;
	text-align: justify;
	font-size: 18px;
	margin: 0 0 20px 0;
}

.card2-btn{
	display: block;
	width: 60%;
	border: 0;
	border-radius: 5px;
	color: #fff;
	background-color: #6c757d;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	padding: 7px;
	margin: 0 0 0 0;
	filter: brightness(100%);
	transition: all 0.2s ease-in-out;
}

.card2-btn:hover{
	color: #fff;
	filter: brightness(130%);
	transition: all 0.2s ease-in-out;
}

.text-justify{
	text-align: justify;
}

@media only screen and (max-width: 1100px){

	.info{
		width: 100%;
		height: 600px;
	}
	
	.bg-parallax{
		width: 100%;
		height: 100%;
	}
	
	.ft-parallax{
		width: 100%;
		height: 100%;
	}

	.card2-container{
		width: 90%;
		height: 500px;
	}

	.card2{
		display: block;
		width: 100%;
		height: 500px;
	}

	.card2-spacer{
		margin: 0 auto 10px auto;
	}

	.card2-image{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 25%;
		overflow: hidden;
	}

	.card2-image img{
		display: block;
		width: auto;
		height: 80%;
	}

	.card2-content{
		width: 100%;
		height: 75%;
	}

	.card2-content-header{
		margin: 0 auto 10px auto;
		text-align: center;
	}

	.card2-content-text{
		margin: 0 auto 10px auto;
		text-align: center;
	}

	.card2-btn{
		margin: 0 auto 0 auto;
	}

}

/*Product Thumb*/
.product-thumb{
	width: 350px;
	cursor: pointer;
}

/*Map*/
.map{
	width: 800px;
	height: 400px;
}

@media only screen and (max-width: 1100px){

	.map{
		width: 400px;
		height: 400px;
	}

	.product-thumb{
		width: 90%;
		margin-bottom: 10px;
	}
	
}