html {
	height: 100%;
}
body{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	height: 100%;
	padding: 0;
	margin: 0;
}
a, a:hover, a:visited, a:active, a:focus {
	text-decoration: none;
	color: orange;
	transition: all .3s;
}
img {
	max-width: 100%;
}
nav {
	height: 90px;
}
.nav-link {
	text-transform: uppercase;
}
.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	line-height: 40px;
}
.navbar-light .navbar-nav .nav-link {
	line-height: 40px;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {

}
.navbar-nav .nav-item::after {
	content:"";
	display: block;
	width: 0;
	height: 3px;
	background: transparent;
	margin: auto;
	position: relative;
	top: -6px;
	transition: all .3s;
}
.navbar-nav .nav-item.active::after, .navbar-nav .nav-item:hover::after  {
	content:"";
	display: block;
	width: 30px;
	height: 3px;
	background: orange;
	margin: auto;
	position: relative;
	top: -6px
}
.navbar-expand-lg .navbar-nav .nav-link {
	padding: 0 20px;
	font-weight: bold;
}
.nav-cto {
	margin-left: 20px;
}
.nav-cto li a {
	background: orange;
}
.dropdown:hover .dropdown-menu {
	display: block !important;
}
.dropdown-menu {
	top: 37px;
}
.dropdown-item {
	color: orange;
}
.dropdown-item.active, .dropdown-item:active {
	background: orange !important;
}
.btn-primary {
	background: orange;
	border-radius: 0;
	color: #fff !important;
	border: none;
	text-transform: uppercase;
	padding: 15px 50px;
	font-weight: bold;
}
.btn-primary:hover, .btn-primary:active {
	background: #ec9900
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	background: #ec9900;
}
.btn-primary.focus, .btn-primary:focus {
	box-shadow: none !important;
}
.home .hero {
	height: 100vh;
	padding: 0;
	margin: -90px 0 0 0;
	background: url(../images/2.jpg);
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.inner-page .hero {
	height: 90px;
	padding: 0;
	margin-top: -90px;
	background: #5D4037;
}

.overlay {
	background: rgba(0,0,0,0.25);
	width: 100%;
	height: 100%;
}
.hero .logo {
	max-width: 300px;
}
.hero .container {
	color: #fff;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.hero h1 {
	font-size: 55px;
	font-weight: bold;
}
.mobile-menu, #mobile-menu-show {
	display: none;
}

@media (max-width:992px) {
	.hero h1 {
		font-size: 24px;
		margin-bottom: 50px;
	}
	.hero .logo {
		max-width: 200px;
		margin-bottom: 50px;
	}
	.nav-menu {
		display: none;
	}
	.btn-cto {
		padding: 15px 30px !important;
	}
	#mobile-menu-show {
		display: block;
		color: #fff;
		font-size: 18px;
	}
	.mobile-menu {
		color: #fff;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: rgba(0,0,0,0.9);
		height: 100vh;
		z-index: 9;
	}
	.mobile-menu ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.mobile-menu ul li {
		padding: 20px;
	}
	.mobile-menu .logo {
		padding: 20px;
	}
	#mobile-menu-close {
		position: absolute;
		top: 25px;
		right: 25px;
		font-size: 20px;
	}
}
.hero a {
	color: #fff;
	
	border: none;
}
.heroArrow {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 24px;
	cursor: pointer;
}
.bounce{
  animation: animationFrames linear 2s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: animationFrames linear 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animationFrames linear 2s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: animationFrames linear 2s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: animationFrames linear 2s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes animationFrames{
  0% {
    transform:  translate(-12px,0px)  ;
  }
  50% {
    transform:  translate(-12px,-25px)  ;
  }
  100% {
    transform:  translate(-12px,0px)  ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    -moz-transform:  translate(-12px,0px)  ;
  }
  50% {
    -moz-transform:  translate(-12px,-25px)  ;
  }
  100% {
    -moz-transform:  translate(-12px,0px)  ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    -webkit-transform:  translate(-12px,0px)  ;
  }
  50% {
    -webkit-transform:  translate(-12px,-25px)  ;
  }
  100% {
    -webkit-transform:  translate(-12px,0px)  ;
  }
}

@-o-keyframes animationFrames {
  0% {
    -o-transform:  translate(-12px,0px)  ;
  }
  50% {
    -o-transform:  translate(-12px,-25px)  ;
  }
  100% {
    -o-transform:  translate(-12px,0px)  ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    -ms-transform:  translate(-12px,0px)  ;
  }
  50% {
    -ms-transform:  translate(-12px,-25px)  ;
  }
  100% {
    -ms-transform:  translate(-12px,0px)  ;
  }
}

.flip{
  animation: flipFrames linear 10s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: flipFrames linear 10s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: flipFrames linear 10s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: flipFrames linear 10s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: flipFrames linear 10s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes flipFrames{
  0% {
    transform:  rotateY(0deg);
  }
  50% {
    transform:  rotateY(180deg);
  }
  100% {
    transform:  rotateY(360deg);
  }
}

@-moz-keyframes flipFrames{
  0% {
    -moz-transform:  rotateY(0deg);
  }
  50% {
    -moz-transform:  rotateY(180deg);
  }
  100% {
    -moz-transform:  rotateY(360deg);
  }
}

@-webkit-keyframes flipFrames {
  0% {
    -webkit-transform:  rotateY(0deg);
  }
  50% {
    -webkit-transform:  rotateY(180deg);
  }
  100% {
    -webkit-transform:  rotateY(360deg);
  }
}

@-o-keyframes flipFrames {
  0% {
    -o-transform:  rotateY(0deg);
  }
  50% {
    -o-transform:  rotateY(180deg);
  }
  100% {
    -o-transform:  rotateY(360deg);
  }
}

@-ms-keyframes flipFrames {
  0% {
    -ms-transform:  rotateY(0deg);
  }
  50% {
    -ms-transform:  rotateY(180deg);
  }
  100% {
    -ms-transform:  rotateY(360deg);
  }
}
.white {
	background: #fff;
}
.grey {
	background: #f4f4f4;
}
.section {
	padding: 60px 0 60px 0;
}
.title {
	text-align: center;
	text-transform: uppercase
}
.showonmobile {
	display: none;
}
@media (max-width: 991px) {
	.hideonmobile {
		display: none;
	}
	.showonmobile {
		display: block;
	}
}
.features .hideonmobile .feature {
	position: relative;
	padding: 20px 0;
	height: 120px;
}
.features .feature.left h4 {
	text-transform: uppercase;
	text-align: right;
	margin-right: 50px;
}
.features .showonmobile .feature {
	margin-bottom: 40px;
}
.features .showonmobile .feature h4 {
	text-transform: uppercase;
}
.features .feature.left p {
	text-align: right;
	margin-right: 50px;
}
.features .feature.left img {
	position: absolute;
	top: 20px;
	right: -20px;
	width: 64px;
	transition: all .3s;
}
.features .feature.left:hover img {
	right: -30px;
}
.features .feature.right h4 {
	text-transform: uppercase;
	text-align: left;
	margin-left: 50px;
}
.features .feature.right p {
	text-align: left;
	margin-left: 50px;
}
.features .feature.right img {
	position: absolute;
	top: 20px;
	left: -20px;
	width: 64px;
	transition: all .3s;
}
.features .feature.right:hover img {
	left: -30px;
}
.btn-allfeatures {
	width: 100%;
	text-align: center;
	padding: 40px 0;
}
.sm_hr {
	width: 50px;
	height: 3px;
	background: orange;
	display: inline-block;
	margin-bottom: 60px;
	transition: all .3s;
}
.title:hover .sm_hr {
	width: 65px;
}
.spacer {
	height: 30px;
	width: 100%;
}
.values {
	background: url(../images/about2.jpg) center center no-repeat;
	background-size: cover;
	color: #fff;
	position: relative;
	background-attachment: fixed;
	text-align: center;
}
.values p {
	font-size: 24px;
}
.values i {
	font-size: 40px;
	margin-bottom: 20px;
}

@media (min-width:570px) {
	.values {
		height: 200px;
	}
	.values .container {
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}
}
.cto {
	height: 300px;
	background: url(../images/2.jpg) center no-repeat;
	background-size: cover;
	color: #fff;
	position: relative;
	background-attachment: fixed;
}
.cto .btn-transparent {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	text-transform: uppercase;
	width: 100%;
	text-align: center;
}
.btn-cto {
	background: rgba(255,255,255,0.1);
	border-radius: 0;
	color: #fff !important;
	text-transform: uppercase;
	padding: 15px 50px;
	font-weight: bold;
	font-size: 36px;
	border: 0;
	box-sizing: border-box;
	box-shadow: inset 0 0 0 3px #fff;
	position: relative;
}

.btn-cto:not(:disabled):not(.disabled).active, .btn-cto:not(:disabled):not(.disabled):active, .show>.btn-cto.dropdown-toggle {
	background: rgba(255,255,255,0.3);
}
.btn-cto.focus, .btn-cto:focus {
	box-shadow: none !important;
}
.btn-cto::before, .btn-cto::after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.draw {
  transition: color 0.25s;
}
.draw::before, .draw::after {
  border: 3px solid transparent;
  width: 0;
  height: 0;
}
.draw::before {
  top: 0;
  left: 0;
}
.draw::after {
  bottom: 0;
  right: 0;
}
.draw:hover {
  color: orange;
}
.draw:hover::before, .draw:hover::after {
  width: 100%;
  height: 100%;
}
.draw:hover::before {
  border-top-color: orange;
  border-right-color: orange;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.draw:hover::after {
  border-bottom-color: orange;
  border-left-color: orange;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

.meet:hover {
  color: #fff;
}
.meet::after {
  top: 0;
  left: 0;
}
.meet:hover::before {
  border-top-color: orange;
  border-right-color: orange;
}
.meet:hover::after {
  border-bottom-color: orange;
  border-left-color: orange;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}
.whyus ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.whyus ul li i {
	border: solid 2px brown;
	color: brown;
	padding: 5px;
	margin-right: 10px;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	text-align: center;
	transition: all .3s;
}
.whyus ul li {
	line-height: 30px;
	margin-bottom: 10px;
}
.whyus ul li:hover i {
	color: #fff;
	background: brown;
}
.products .product {
	text-transform: uppercase;
}
.products .product img {
	padding-bottom: 20px;
	transition: all .3s;
}
.products .product:hover img {
	transform: scale(1.02);
}
.images {
	padding-top: 60px;
	background: #fff;
}
.images img {
	max-width: 100%;
	transition: all .3s;
}
.images img:hover {
	transform: scale(1.05);
}
.nopadding {
	padding: 0 !important;
	margin: 0 !important;
}
.overflowhidden {
	overflow: hidden;
}
.address i {
	float: left;
	width: 21px;
	height: 21px;
	line-height: 21px;
	text-align: center;
	margin-right: 10px;
	transition: all .3s;
}
.address:hover i {
	color: orange;
}
.address p {
	margin-left: 31px;
}
.address ul {
	list-style: none;
	padding: 0
}
.address span {
	font-weight: bold;
	padding: 10px 0;
	display: block;
}
.address ul li a i, .address a {
	color: #999 !important;
}
.address ul li a:hover i, .address a:hover {
	color: orange !important;
}

/* animation */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } 
}

form label {
	display: block;
}

textarea {
	resize: vertical;
	min-height: 150px;
}
form .row {
	padding: 0 0 10px 0;
}
#loading, #qresult {
	display: none;
}
form input, form textarea, form select {
	width: 100%;
	border: solid 1px #ccc;;
	background: #fafafa;
	padding: 10px;
	outline: none !important;
	transition: all .3s;
}
form input:focus, form input:hover, form textarea:hover, form textarea:focus, form select:hover, form select:focus {
	border-color: orange;
}
footer {
	background: #272727;
	color: #fff;
	position: relative;
	padding-top: 40px;
	text-align: left;
}
footer ul {
	list-style: none;
	padding: 0;
}
footer ul li, footer ul li a {
	color: #999 !important;
}
footer ul li a:hover {
	color: orange !important;
}
footer .title {
	text-transform: uppercase;
	text-align: left;
}
footer .copyrights {
	background: #222;
	height: 45px;
	line-height: 45px;
	width: 100%;
	margin-top: 20px;
}
footer .copyrights .container {
	position: relative;
}
footer .social {
	list-style: none;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
}
footer .social li {
	float: left;
	height: 25px;
	width: 25px;
	line-height: 25px;
	text-align: center;
	background: rgba(255,255,255,0.3);
	border-radius: 50%;
	margin: 10px;
}
footer .social li a {
	color: #fff;
}