.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: 100%;
	height: 900px;
	background-color: #ccc;
	overflow: hidden;
}

/*Branding 1*/
.branding-type1
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1300px;
	height: 600px;
	margin: 60px auto 0px auto;
	z-index: 1;
}

.branding-type1 .product
{
	position: relative;
	width: 600px;
	height: 600px;
	border: 3px solid #DDD;
	overflow: hidden;
}

.branding-type1 .product img
{
	position: relative;
	display: block;
	width: 100%;
	z-index: 1;
}

.branding-type1 .product div
{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 190px;
	height: 50px;
	border: 1px solid #DDD;
	color: #DDD;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
	background-color: rgba(200,200,200,0.5);
	cursor: pointer;
	z-index: 2;
	transition: background-color 0.5s ease-in-out;
}

.branding-type1 .product div:hover
{
	background-color: rgba(125,125,125,0.75);
}

.branding-type1 .product:nth-child(1) div
{
	right: 40px;
	bottom: 50px;
}

.branding-type1 .product:nth-child(2) div
{
	left: 40px;
	bottom: 50px;
}

/*Branding 2*/
.branding-type2
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1300px;
	height: 600px;
	margin: 60px auto 0px auto;
	z-index: 1;
}

.branding-type2 .product
{
	position: relative;
	width: 1300px;
	height: 600px;
	border: 3px solid #DDD;
	overflow: hidden;
}

.branding-type2 .product img
{
	position: relative;
	display: block;
	width: 100%;
	z-index: 1;
}

.branding-type2 .product div
{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 190px;
	height: 50px;
	left: 555px;
	bottom: 40px;
	border: 1px solid #DDD;
	color: #DDD;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
	background-color: rgba(200,200,200,0.5);
	cursor: pointer;
	z-index: 2;
	transition: background-color 0.5s ease-in-out;
}

.branding-type2 .product div:hover
{
	background-color: rgba(125,125,125,0.75);
}

/*Brandign 3*/
.branding-type3
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1300px;
	height: 600px;
	margin: 60px auto 0px auto;
	z-index: 1;
}

.branding-type3 .product
{
	position: relative;
	width: 600px;
	height: 600px;
	border: 3px solid #DDD;
	overflow: hidden;
}

.branding-type3 .product img
{
	position: relative;
	display: block;
	width: 100%;
	z-index: 1;
}

.branding-type3 .product div
{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 190px;
	height: 50px;
	border: 1px solid #DDD;
	color: #DDD;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
	background-color: rgba(200,200,200,0.5);
	cursor: pointer;
	z-index: 2;
	transition: background-color 0.5s ease-in-out;
}

.branding-type3 .product div:hover
{
	background-color: rgba(125,125,125,0.75);
}

.branding-type3 .product:nth-child(1) div
{
	right: 40px;
	bottom: 50px;
}

.branding-type3 .product:nth-child(2) div
{
	left: 40px;
	bottom: 50px;
}

/*Slider Products*/
.productsSlider{
	display: block;
	margin: 20px auto 20px auto;
	width: 1300px;
}

.productsSlider .productsHeader{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 30px;
	margin: 0 auto 0 auto;
	border-radius: 5px;
	border: 1px solid #000;
	box-shadow: 0 0 3px rgba(0,0,0,0.35);
}

.productsSlider .productsHeader span{
	display: block;
	width: 100%;
	text-align: center;
}

.productsSlider .slider{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1300px;
	height: 250px;
	margin-top: 20px;
}

.productsSlider .slider .btnSliderBack,
.productsSlider .slider .btnSliderForward
{
	display: flex;
	width: 40px;;
	height: 100%;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.productsSlider .slider .btnSliderBack i,
.productsSlider .slider .btnSliderForward i
{
	font-size: 35px;
}


.productsSlider .slider .itemsContainer{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1220px;
	height: 100%;
}

.productsSlider .slider .itemsContainer .btnProduct{
	width: 250px;
	height: 250px;
	border: 2px solid #ccc;
	overflow: hidden;
	cursor: pointer;
	filter: brightness(100%);
	transition: filter 0.5s ease-in-out;
}

.productsSlider .slider .itemsContainer .btnProduct:hover{
	filter: brightness(130%);
	transition: filter 0.5s ease-in-out;
}

.productsSlider .slider .itemsContainer .btnProduct img{
	display:  block;
	width: 100%;
}