@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Poppins:400,500,600,700");

/*
font-family: 'Roboto', sans-serif;
font-family: 'Poppins', sans-serif;
 */

html, body { width: 100%; height: 100%; margin:0; }

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}

p {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 300;
}

small { font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 400; }

a {
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		  -o-transition: all 0.2s;
		 -ms-transition: all 0.2s;
			  transition: all 0.2s;
}
a:hover, a:focus { text-decoration: none; }
a:focus { outline: none !important; }

li {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.66667;
	font-weight: 300;
}

label {
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 12px;
}



/* FOOTER
============================================================================================================================== */

.footer { background-color: #26313c; }
.footer h5, .footer p { color: #FFF; }


/* OTHERS
============================================================================================================================== */

.chairImg_bg {
	float: left;
	padding: 0 30px 30px 20px;
	width: 400px;
	height: 440px;
	margin: 0 auto;
}

.custBtn {
	pointer-events: auto;
	cursor: pointer;
	background: #e7e7e7;
	border: none;
	padding: 1.5rem 3rem;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	position: relative;
	display: inline-block;
}

.custBtn::before, .custBtn::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.custBtn-main {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	padding: 1rem 1.5rem;
	border: 1px solid #000;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
}

.custBtn-main span { display: block; position: relative; }
.custBtn-main > span { overflow: hidden; }
.custBtn-main > span > span { overflow: hidden; mix-blend-mode: difference; }
.custBtn-main:hover > span > span { animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s; }

@keyframes MoveUpInitial { to { transform: translate3d(0,-105%,0); } }
@keyframes MoveUpEnd {
	from { transform: translate3d(0,100%,0); }
	to { transform: translate3d(0,0,0); }
}

.custBtn-main::before {
	content: '';
	background: #000;
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
	transform-origin: 100% 50%;
}

.custBtn-main:hover::before { transform: scale3d(0,1,1); transform-origin: 0% 50%; }

.custBtn-block { width: 100%; }
