@charset "utf-8";
/*-------------------------Cabeçalho da pagina-----------------*/
.pre-load{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	position: fixed;
	background: linear-gradient(20deg, #bc0003,#1e0708);
	z-index: 99;
	perspective: 2000px;
}
.container-pre-load{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	background: #f9f9f9;
	box-shadow: 2px 3px 6px 5px #000;
	transform-style:flat;
	animation: one 1s cubic-bezier(.65,.05,.36,1) infinite alternate;
	z-index: 10;
}
@keyframes one{
	0%{
		transform: translateX(-70%);
	}
	100%{
		transform: translateX(70%);
	}
}
.container-pre-load-two{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: #560000;
	box-shadow: 3px 3px 4px 2px #000;
	transform-style:flat;
	animation: two 1s cubic-bezier(.65,.05,.36,1) infinite alternate;
}
.container-pre-load-two img{
	max-width: 80%;
}
@keyframes two{
	0%{
		transform: translateX(30%) rotate(15deg);
	}
	100%{
		transform: translateX(-30%) rotate(-15deg);
		
	}
}
#text{
	margin-top: 1rem;
	animation: text 1s  cubic-bezier(.65,.05,.36,1) infinite alternate;
	z-index: 1;
}
@keyframes text{
	0%{
		transform: scale(0.9);
	}
	100%{
		transform: scale(1);
		
	}
}
body{
	height: 100%;
	overflow-x: hidden !important;
}
.header{
	width: 100%;
	height: auto;
	background: #bc0003;
}
.container-header{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	width: 100%;
	height: auto;
}
.logo{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 25%;
	height: auto;
}
.logo img{
	max-width: 100%;
}
nav{
	width: 65%;
	height: auto;
}
#menu-ul{
	display: none;
}
nav ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	padding: 0.8rem;
}
nav ul a{
	width: 100%;
}
nav ul li{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;	
	justify-content: center;
	align-items: center;
	padding: 0.5rem 1rem;
	color: #f8f8f8;
	transition: all .4s cubic-bezier(.65,.05,.36,1);
	position: relative;
	z-index: 1;
}
nav ul li:hover{
	color: #560000;
	cursor: pointer;
}
.bg-li{
	transform: translateX(-100%);
	transition: all .4s cubic-bezier(.65,.05,.36,1);
	z-index: -1;
	height: 0;
	transform-origin: center;
}
nav ul li:hover .bg-li{
	transform: translateX(0%);
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-clip-path: polygon(22.76% -7.7%, 78.76% 17.27%, 100% 0px, 100% 100%, 0px 100%, 5.50% 51.29%, 0px 0px);
	clip-path: polygon(22.76% -7.7%, 78.76% 17.27%, 100% 0px, 100% 100%, 0px 100%, 5.50% 51.29%, 0px 0px);
	background: #f8f8f8;
}
/*-------------------------------clip menu---------------------------*/
.clip-menu{
	width: 100%;
	height: 130px;
	position: absolute;
	background: #bc0003;
	-webkit-clip-path: polygon(0px 0px, 30.53% -3px, 0px 55.85%);
	clip-path: polygon(0px 0px, 30.53% -3px, 0px 25.85%);
	z-index: 1;
}
.clip-menu-two{
	width: 100%;
	height: 130px;
	position: absolute;
	background: #8d0b0d;
	-webkit-clip-path: polygon(0px 0px, 30.53% -3px, 0px 55.85%);
	clip-path: polygon(0px 0px, 30.53% -3px, 0px 55.85%);
	z-index: -1;
}
/*---------------------------card produtos---------------------*/
.products{
	width: 100%;
	height: auto;
}
.products h1{
	font-size: 2.5rem;
	width: 100%;
	color:#560000;
	text-align: center;
	margin: 0 auto;
	margin-top: 6rem;
	margin-bottom: 5rem;
}
.card-scanner{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row-reverse;
	width: 100%;
	height: auto;
	border:1px solid #0102;
	border-radius: 5px;
	padding-bottom: 2.8rem;
	padding-top: 3rem;
	margin-bottom: 10rem;
	position: relative;
}
.card-img{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
}
.card-text{
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.card-img img{
	max-width: 100%;
}
.card-scanner h2{
	padding: 0.7rem 1.2rem;
	padding-top: 0;
	color: #8d0b0d;
}
.card-scanner .card-img{
	justify-content: flex-end;
}
.card-scanner p{
	padding: 1.5rem 1.2rem;
	padding-top: 2.5rem;
	color: #464644cc;
}
.clip-top-card{
	width: 100%;
	height: 60px;
	top: 0;
	left: 0;
	position: absolute;
	background: #bc0003;
	-webkit-clip-path: polygon(0px 0px, 100% 0px, 52.00% 33.67%);
	clip-path:polygon(0px 0px, 100% 0px, 52.00% 33.67%);
	/*alternate*/
	/*clip-path:polygon(0px 0px, 100% 0px, 13.63% 55.34%);*/
	
}
.clip-top-card-dois{
	width: 100%;
	height: 60px;
	top: 0;
	left: 0;
	position: absolute;
	background: #8d0b0d;
	-webkit-clip-path: polygon(0px 0px, 100% 0px, 52.00% 17.67%);
	clip-path: polygon(0px 0px, 100% 0px, 52.00% 17.67%);
	/*alternate*/
	/*clip-path:polygon(0px 0px, 100% 0px, 15.63% 30.34%);*/
}
.clip-bottom{
	width: 100%;
	height: 60px;
	bottom: 0;
	left: 0;
	position: absolute;
	background: #bc0003;
	-webkit-clip-path: polygon(50.05% 55.67%, 100% 100%, 0% 100%);
	clip-path: polygon(50.05% 55.67%, 100% 100%, 0% 100%);
	/*alternate*/
	/*clip-path: polygon(82.91% 45.67%, 100% 100%, 0% 100%);*/
}
.clip-bottom-dois{
	width: 100%;
	height: 30px;
	bottom: 0;
	left: 0;
	position: absolute;
	background: #8d0b0d;
	-webkit-clip-path: polygon(50.05% 55.67%, 100% 100%, 0% 100%);
	clip-path: polygon(50.05% 55.67%, 100% 100%, 0% 100%);
	/*alternate*/
	/*clip-path: polygon(0% 31px, 99.45% 31px, 81.43% 47.01%);*/
}
.card-scanner-bottom{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row-reverse;
	width: 100%;
	height: auto;
	border:1px solid #0102;
	border-radius: 5px;
	padding-bottom: 2.8rem;
	padding: 4rem;
	margin-bottom: 10rem;
	position: relative;
}
.card-scanner-bottom .card-img {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
}
.card-scanner-bottom .card-img img{
	max-width: 100%;
}
.card-scanner-bottom h2{
	padding: 0.7rem 1.2rem;
	padding-top: 0;
	color: #8d0b0d;
}
.card-scanner-bottom .card-img{
	justify-content: flex-end;
}
.card-scanner-bottom p{
	padding: 1.5rem 1.2rem;
	padding-top: 2.5rem;
	color: #464644cc;
}
/*-----------------------------------section footer*--------*/
.footer{
	width: 100%;
	height: auto;
	position: relative;
	padding-top: 2rem;
	margin-top: 10rem;
	border:1px solid red;
	background: #bc0003;
}
.container-clip-footer{
	width: 100%;
	height: 5px;
	position: absolute;
	top: 0;
	background: #bc0003;
}
.clip-footer{
	width: 100%;
	height: 90px;
	position: absolute;
	top:-80px;
	background:#bc0003 ;
	-webkit-clip-path: polygon(100.00% 3.33%, 100% 100%, 873px 90%);
	clip-path:polygon(100.00% 3.33%, 100% 100%, 65% 90%);
}
.clip-footer-two{
	width: 100%;
	height: 90px;
	position: absolute;
	background: #8d0b0d;
	-webkit-clip-path: polygon(100% 3.33%, 99.78% 51.11%, 873px 90%);
	clip-path:polygon(100% 3.33%, 99.78% 51.11%, 65% 90%);
}
.container-footer {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	height: auto;
}
.secao{
	width: calc(100% / 2);
	height: auto;
}
.footer-img > img{
	width: 240px;
}
.local{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-flow: row;
	color: #f8f8f8;
}
.social{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: #f8f8f8;
	font-size: 3.5rem;
}
.social a{
	color: #f8f8f8;
}
/*---------------------------div to top*/
.to-top{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	position: fixed;
	bottom: 140px;
	right: 25px;
	border-radius: 10px;
	background: #bc0003;
	cursor: pointer;
	border:1px solid #f8f8f8;
}
.to-top i{
	font-size: 1.5rem;
}
/* section-caseboard */
.caseboard-container{
	width: 100%;
	height: auto;
}
.container-caseboard{
	display: flex;
	justify-content: center;
	flex-flow: column;
	align-items: center;
	width: 100%;
	height: auto;
}
.container-img{
	width: 50%;
	height: auto;
}
.container-img img{
	width: 100%;
}
.container-caseboard h1{
	font-size:1.8rem; 
	margin-bottom: 1.3rem;
}
.container-caseboard p{
	color: #4d4d4d;
	text-align: center;
