@charset "utf-8";
/* CSS Document */
.container-nav-scroll{
	z-index: 1 !important;
}
.bg-header{
	background: #c2cde7cc;
}
.about{
	width: 100%;
	height: auto;
	padding: 10rem 0;
}
.container-about{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	height: auto;
}
.cell-left{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: column;
	width: 100%;
	height: auto;
	text-align: center;
}
.cell-left h2,p{
	padding: 0.5rem 1rem;
	color: #333;
}
.cell-right{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: column;
	width: 100%;
	height: auto;
	text-align: center;
	margin-top: 3rem;
}
.cell-top{
	width: 100%;
	height: auto;
	padding-bottom: 3rem;
}
.cell-top h2,p{
	padding: 0.5rem;
	color: #333;
}
.cell-bottom{
	width: 100%;
	height: auto;
}
.cell-bottom h2,p{
	padding: 0.5rem;
	color: #333;
}
.cell-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;
	padding: 1rem;
}
.cell-img img{
	max-width: 100%;
}

button{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	padding: 0.6rem;
	background: #d21215;
	color: #f8f8f8;
	cursor: pointer;
	border-radius:10px;
	position: relative;
	transition: all .6s cubic-bezier(.68,-0.55,.27,1.55);
	margin: 0 auto;
	margin-top: 1rem;
}
.set-button{
	position: absolute;
	left: 95px;
	width: 20px;
	height: 20px;
	background: #c2cde7;
	-webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	transform: rotate(90deg) translateY(190%);
	border-radius: 5px;
	opacity: 0;
	transition: all .5s cubic-bezier(.68,-0.55,.27,1.55);
}
button:hover{
	background: #720002;
}












