/*---Common Css--*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
html {
}
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	width: 100%;
	position: relative;
	background-size: 100% 100%;
	background-size: cover;
	height: auto;
	background: #FFFFFF;
}
body a {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	text-decoration: none;
}
body a:hover {
	text-decoration: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Viga', sans-serif;
	padding: 0;
	margin: 0;
	line-height: none;
}
span {
	font-family: 'Viga', sans-serif;
	color: #009748;
}
p {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	text-align: justify;
	color: #000;
}
a {
	font-family: 'Viga', sans-serif;
	text-decoration: none;
	color: #09F;
	outline: none;
}
a:hover {
	text-decoration: none;
	color: #00F;
	outline: none;
}
ul, ol {
	list-style: none;
	font-family: 'Viga', sans-serif;
}
*, *:after, *:before {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-rendering: optimizeLegibility;
}
img {
	width: 100%;
	height: 100%;
	border: 0
}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}
input {
	line-height: normal;
}
textarea {
	overflow: auto;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td, th {
	padding: 0;
}
.container {
	padding-top: 0;
	padding-bottom: 0;
	margin: 0 auto;
	width: 100%;
	/*overflow: hidden;*/
	padding-left: 15px;
	padding-right: 15px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}
.row {
	margin-left: -15px;
	margin-right: -15px;
}
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after, .container:after {
	clear: both;
}
.paddingallign {
	padding-left: 0;
	padding-right: 0;
}
.paddingleft {
	padding-left: 0;
}
.paddingright {
	padding-right: 0;
}
.textcenter {
	text-align: center;
}
.textleft {
	text-align: left;
}
.textright {
	text-align: right;
}
.floatright {
	float: right;
}
.floatleft {
	float: left;
}
::selection {
	background: #009748;
	color: #231f20;
}
::-moz-selection {
 background:#009748;
 color:#231f20;
 text-shadow:none
}
::-webkit-selection {
 background:#009748;
 color:#231f20;
 text-shadow:none
}
/*---Common Css End--*/
/*--Header Starts--*/
header {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
.logo {
	float: left;
}
.logoimg {
	width: 100%;
	max-width: 200px;
	padding: 10px 0 5px;
}
a.resToggle {
	display: none;
}
.navbar {
	float: right;
	display: block;
}
.navbar ul {
	margin: 0;
	padding: 0px 0px;
	display: block;
}
.navbar ul li {
	display: inline-block;
	margin: 0px;
	padding: 0px;
	position: relative;
	z-index: 100;
}
.navbar ul li a {
	display: block;
	color: #009748;
	font-size: 1em;
	padding: 30px 15px;
	line-height: 27px;
	font-weight: 100;
	text-transform: uppercase;
	transition: 0.3s ease;
	height: 100%;
	position: relative;
	letter-spacing:1px;
}
.navbar ul li a:hover {
	background: #009748;
	color: #fff;
}
.navbar ul li a.activenavlink {
	background: #009748;
	color: #fff;
}
/*--Dropdown--*/

.navbar ul .sub-menu {
	visibility: hidden;
	opacity: 0;
	margin: 10px 0 0;
	padding: 0;
	position: absolute;
	left: 0px;
	background: #009748;
	z-index: 99;
	transform: translate(0, 20px);
	transition: all 0.2s ease-out;
}
.navbar ul li:hover>.sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0);
}
.navbar ul .sub-menu:after {
	bottom: 100%;
	left: 20%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #009748;
	border-width: 6px;
}
.navbar ul .sub-menu li {
	display: block;
	float: none;
	background: none;
	margin: 0;
	padding: 0;
	width: 100%;
	min-width: 200px;
}
.navbar ul .sub-menu li a {
	font-size: 12px;
	font-weight: normal;
	display: block;
	padding: 15px;
	color: #fff;
}
.navbar ul .sub-menu li a:hover, .navbar ul .sub-menu li:hover>a {
	background: #231f20;
	color: #009748;
}
.navbar ul .sub-menu li a.activenavlink {
	background: #231f20;
	color: #009748;
}
/*--Header End--*/
/*--Fixed Header--*/
.fixed-header {
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 100%;
	background: #fff;
	-webkit-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.38);
	-moz-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.38);
	box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.38);
	z-index: 5;
	overflow: visible;
	animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
 0% {
 transform: translateY(-40px);
}
 100% {
 transform: translateY(0px);
}
}
/*--Fixed header End--*/
/*--Slider--*/
.tp-banner-container {
	width: 100%;
	position: relative;
	padding: 0;
	margin: 0;
	z-index: 1;
	background: #000;
	overflow: hidden;
}
.tp-banner {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.tp-banner-fullscreen-container {
	width: 100%;
	position: relative;
	padding: 0;
	overflow: hidden;
}
/*--Slider End--*/
/*--Home About--*/
.homeAbout {
	margin: 0;
	width: 100%;
	height: auto;
	padding: 40px 0px;
	overflow: hidden;
}
.homeAboutLeft {
	clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
	height: 500px;
}
.homeaboutbg {
	width: 100%;
	height: 100%;
}
.homeAboutRight {
	width: 100%;
	height: 500px;
	margin: 0;
	padding: 2em 2em;
	overflow: hidden;
}
.homeAboutRight h1 {
	color: #231f20;
	font-size: 3em;
	text-transform: capitalize;
	letter-spacing: 1px;
	text-align: center;
}
.homeAboutRight h1:before {
	content: '';
	background: #009748;
	height: 5px;
	width: 10%;
	position: absolute;
	bottom: 0%;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.homeAboutRight h1 span {
	color: #009748;
	font-size: 1.2em;
}
.homeAboutRight p {
	padding-top: 2%;
	margin-bottom: 2%;
	font-size: 1.1em;
	text-align: justify;
	line-height: 1.5;
}
.readmore {
	float: right;
	text-align: center;
	position: relative;
	display: block;
	margin: 2em 0 0;
	background: #009748;
	padding: 15px;
	font-size: 0.9em;
	color: #231f20;
	width: 100%;
	max-width: 200px;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
	transition: all 300ms ease-in-out;
}
.readmore:hover {
	color: #009748;
	background: #231f20;
}
/*--Home About End--*/
/*--Home Banner Middle--*/
.homebannerM {
	background: url(../img/homebannerbg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	min-height: 500px;
	position: relative;
	overflow: hidden;
	height: auto;
}
.homebannerCaption {
	margin: 10% auto 5%;
	padding: 0 3%;
}
.homebannerCaption h2 {
	font-size: 3em;
	font-weight: 800;
	line-height: 1.5em;
	font-family: 'Oleo Script', cursive;
	color: #00FFFF;
	text-decoration: none;
	background-color: transparent;
	border-width: 0px;
	border-color: rgb(255, 214, 88);
	border-style: none;
	text-transform: capitalize;
	letter-spacing: 1px;
	text-shadow: 2px 2px 2px rgb(12, 12, 12);
	text-align: center;
}
.homebannerCaption h2 span.subhead {
	color: #fff;
	font-size: 1em;
	display: block;
	margin-top: 2%;
}
/*--Home Banner Middle End--*/
/*--Featered PRoduct--*/
.featuredProductSection {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 30px 0px;
}
.homeMainHead h1 {
	color: #231f20;
	font-size: 3em;
	text-transform: capitalize;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: .5em;
}
.homeMainHead h1:before {
	content: '';
	background: #009748;
	height: 5px;
	width: 10%;
	position: absolute;
	bottom: 0%;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.homeMainHead h1 span {
	color: #009748;
	font-size: 1.2em;
}
.newarrivalimg {
	width: 100%;
	max-width: 250px;
	height: auto;
	margin: 0 auto 20px;
	position: relative;
	background: #009748;
	padding: 5px;
	border-radius: 5px;
}
/*--Featured Prouct--*/
/*--Footer Section--*/
.footertop {
	/*background: #141415;*/
	background: #231f20;
	width: 100%;
	height: auto;
	padding: 40px 0px;
	overflow: hidden;
}
.foottopDiv {
	margin-bottom: 15px;
}
.foottopDiv h3 {
	display: block;
	color: #fff;
	font-size: 1.3em;
	position: relative;
	padding-bottom: .5em;
	margin-bottom: .5em;
}
.foottopDiv h3:before {
	content: '';
	background: #009748;
	height: 3px;
	width: 50%;
	position: absolute;
	bottom: 0%;
	left: 0;
}
.navfooter {
}
.navfooter ul {
	margin: 0;
	padding: 0px 0px;
}
.navfooter ul li {
	display: block;
	margin: 0px;
	padding: 0px;
}
.navfooter ul li a {
	display: block;
	color: #fff;
	font-size: 1em;
	padding: 5px;
	font-weight: normal;
	text-transform: capitalize;
	transition: 0.3s ease;
	height: 100%;
}
.navfooter ul li a:hover {
	color: #009748;
}
.socialicons {
	text-align: left;
	margin-top: 3em;
}
.socialicons .icon {
	background: #fff;
	display: inline-block;
	color: #009748;
	font-size: 1em;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
	margin: 6px 5px 8px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.socialicons .icon:hover {
	background: #009748;
	color: #fff;
}
.foottopDiv .addressfooter {
	padding-top: 10px;
}
.foottopDiv .addressfooter li {
	list-style-type: none;
	margin-bottom: 1em;
	letter-spacing: 1px;
	line-height: 1.5em;
	color: #fff;
}
.foottopDiv .addressfooter li p {
	list-style-type: none;
	margin-bottom: 1em;
	letter-spacing: 1px;
	line-height: 1.5em;
	color: #fff;
	font-weight: bold;
}
footer {
	background: #0f0f10;
	padding: 15px;
}
footer p {
	font-size: 1em;
	color: #fff;
	text-align: center;
	margin: 0 auto 0;
	letter-spacing: 1px;
	line-height: 1.5em;
}
footer p a {
	color: #009748;
}
footer p a:hover {
	color: #fff;
}
/*--Footer Section --*/
/*--Back To Top Css--*/
.back-to-top:hover {
	color: #009748;
	background: #231f20;
	text-decoration: none;
}
.back-to-top {
	display: none;
	position: fixed;
	bottom: 2.2rem;
	right: 1rem;
	width: 50px;
	height: 50px;
	line-height: 2.8rem;
	font-size: 1.5rem;
	color: #fff;
	background: #009748;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	text-decoration: none;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	z-index: 10;
}
/*--Back To Top Css End--*/
/*---INNER PAGE CSS---*/
.bannerArea {
	background-size: cover;
	position: relative;
	width: 100%;
	height: auto;
}
.bannerArea:after {
	content: '';
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	/*	background: rgba(0,0,0,0.2);*/
	background: rgba(0,151,72,0.5);
}
.bannerimg {
	width: 100%;
	height: 100%;
}
.bannerHead {
	top: 40%;
	z-index: 3;
	position: absolute;
	text-align: center;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.bannerHead h1 {
	display: block;
	text-align: center;
	font-size: 3.5em;
	font-weight: bold;
	/*color: #ed1c24;*/
	color: #fff;
	text-transform: capitalize
}
.breadcrumbS {
	width: 100%;
	height: auto;
	background: #009748;
	padding: 10px;
	overflow: hidden;
}
.breadcrumbul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.breadcrumbul li {
	display: inline-block;
	margin: 0px;
	padding: 0px 5px;
	color: #fff;
	font-size: 1.3em;
}
.breadcrumbul li a {
	color: #231f20;
}
.breadcrumbul li a:hover {
	color: #fff;
}
/*--Contact Form--*/
.contactSection {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 40px 0px;
}
.contactform {
	margin: 0;
	padding: 15px 0px 15px 0px;
	overflow: hidden;
}
.form-group {
	margin-bottom: 55px;
}
.form-group:last-of-type {
	margin-bottom: 0px;
}
.form-control {
	display: block;
	width: 100%;
	height: auto;
	padding: 15px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #009748;
	background: rgba(0,151,72,0.2);
	border: none;
	border: 2px solid #ccc;
	border-radius: none;
	font-family: 'Viga', sans-serif;
}
.form-control:focus {
	border-color: #009748;
	outline: 0;/*-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6)*/
}
.form-control::-moz-placeholder {
color:#009748;
opacity:1;
}
.form-control:-ms-input-placeholder {
color:#009748;
}
.form-control::-webkit-input-placeholder {
color:#009748;
}
input[type=search] {
	-webkit-appearance: none
}
textarea {
	resize: none;
}
textarea.form-control {
	height: 272px;
}
.margincenter {
	text-align: center;
}
.btnSubmit {
	font-family: 'Viga', sans-serif;
	display: inline-block;
	padding: 10px 25px;
	margin: 55px auto 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: none;
	background-color: #009748;
	color: #fff;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
.btnSubmit:hover {
	background-color: #231f20;
	color: #fff;
}
.contactInfo {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 40px 0px;
}
.contactinfoDiv {
	background: #009748;
	padding: 5px;
	height: 180px;
	text-align: center;
	-webkit-box-shadow: 4px 9px 35px -12px rgba(0,0,0,0.75);
	-moz-box-shadow: 4px 9px 35px -12px rgba(0,0,0,0.75);
	box-shadow: 4px 9px 35px -12px rgba(0,0,0,0.75);
}
.contactdivtop {
	padding-top: 10%;
}
.contactinfoDiv i {
	color: #fff;
	text-align: center;
	font-size: 2.5em;
	margin: 0 auto;
	margin-bottom: 15px;
}
.contactinfoDiv h4 {
	color: #231f20;
	text-align: center;
	font-size: 1em;
	letter-spacing: 1px;
}
.contactinfoDiv p {
	color: #231f20;
	text-align: center;
	font-size: 1em;
	letter-spacing: 1px;
	font-weight: bold;
}
/*--Contact Form End--*/
/*--About Page--*/
.aboutPage {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 40px 0px;
}
.aboutPage p {
	padding-top: .5em;
	margin-bottom: 2%;
	font-size: 1.1em;
	text-align: justify;
	line-height: 1.5;
}
/*--About Page End--*/
/*--Product Page--*/
.productSection {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 40px 0px;
}
.productSection h2 {
	color: #231f20;
	font-size: 3em;
	text-transform: capitalize;
	letter-spacing: 1px;
	text-align: left;
	margin-bottom: .5em;
}
.productSection h2:before {
	content: '';
	background: #009748;
	height: 5px;
	width: 10%;
	position: absolute;
	bottom: 0%;
	left: 0;
}
.productSection h2 span {
	color: #009748;
	font-size: 1.2em;
}
.productSection p {
	margin-bottom: 2%;
	font-size: 1.1em;
	text-align: justify;
	line-height: 1.5;
}
.productList {
	margin-bottom: 30px;
}
.sliderImg {
	border: 1px solid #009748;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.proTitle {
	padding: 20px 5px;
	text-align: center;
}
.proTitle h3 {
	height: 70px;
	color: #009748;
	font-size: 1.3em;
	text-transform: capitalize;
	letter-spacing: 1px;
}
/*--Modal Css End--*/
/*--Product Page End--*/
/*--Marquee  Css--*/
.mar {
	padding: 20px 0px;
	background: #231f20;
	color: #FFF;
}
.mar h2 {
	color: #009748;
}

/*--Marquee  Css End--*/
/*--Gallery Page--*/
.galleryPage
{
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 40px 0px;
}
.galimg
{
	width:100%;
	max-width:300px;
	margin:0 auto;
	margin-bottom:40px;
	border: 3px solid #009748;
	-webkit-box-shadow: 0px 0px 14px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0px 0px 14px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 0px 0px 14px 0px rgba(50, 50, 50, 0.75);
}
.galimg:hover
{
	box-shadow: 0 8px 6px -6px black;
}
/*--Gallery Page End--*/
/*-------------------------------------MOBILE VERSIONS---------------------------------------------*/
/*--Media Query--*/
@media only screen and (max-width: 990px) {
.textcenter {
	text-align: center;
}
.textleft {
	text-align: center;
}
.textright {
	text-align: center;
}
.floatright {
	float: none;
}
.floatleft {
	float: none;
}
.paddingmobile {
	padding-left: 0;
	padding-right: 0;
}
/*--Mobile Navigation--*/
a.resToggle {
	display: inline-block;
	float: right;
	padding: 2px 10px 2px;
	background: #009748;
	font-size: 2em;
	color: #fff;
	margin-bottom: 10px;
	margin-top: 25px;
	margin-right: 0px;
	border-radius: 4px;
}
a.resToggle:hover {
	background: #231f20;
	color: #fff;
}
.navbar {
	display: none;
	width: 100%;
	height: auto;
	line-height: 0;
	padding: 0px 0px 0px 0px;
	text-align: left
}
.navbar.activenav {
	display: block;
}
.navbar ul {
	margin-top: 0;
}
.navbar ul li {
	display: block;
	border-bottom: 1px solid #231f20;
}
.navbar ul li a {
	text-align: center;
}
.navbar {
	margin-top: 10px;
	border-top: 3px solid #231f20;
}
/*--DropDown--*/
.navbar ul .sub-menu {
	visibility: hidden;
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	transform: initial;
}
.navbar ul li:hover>.sub-menu {
	visibility: visible;
	opacity: 1;
	position: relative;
	transform: initial;
}
/*--Home About--*/
.homeAboutLeft {
	/*clip-path: polygon(0% 0%, 0% 100%,100% 0%, 0% 100%);*/
	clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
	height: auto;
}
.homeAboutRight {
	height: auto;
}
.contactinfoDiv {
	height: auto;
}
.contactdivtop {
	padding-top: 5px;
}
.mar {
	display:none;
}
}

@media (min-width:480px) and (max-width: 990px) {
}

@media only screen and (min-width: 991px) {
.container {
	max-width: 1200px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
	float: left;
}
.col-1 {
	width: 8.33333333%;
}
.col-2 {
	width: 16.66666667%;
}
.col-3 {
	width: 25%;
}
.col-4 {
	width: 33.33333333%;
}
.col-5 {
	width: 41.66666667%;
}
.col-6 {
	width: 50%;
}
.col-7 {
	width: 58.33333333%;
}
.col-8 {
	width: 66.66666667%;
}
.col-9 {
	width: 75%;
}
.col-10 {
	width: 83.33333333%;
}
.col-11 {
	width: 91.66666667%;
}
.col-12 {
	width: 100%;
}
}

@media (min-width: 991px) and (max-width: 1000px) {
}

@media (min-width: 991px) and (max-width: 1200px) {
}

@media (min-width: 500px) and (max-width: 990px) {
}

@media(max-width:1080px) {
}

@media screen and (max-width:800px) {
}

@media(max-width:736px) {
}

@media screen and (max-width:600px) {
.bannerHead h1 {
	font-size: 3em;
}
.bannerHead {
	top: 25%;
}
}

@media screen and (max-width:480px) {
.bannerHead {
	top: 5%;
}
}

@media screen and (max-width:360px) {
.bannerHead h1 {
	font-size: 2em;
}
.bannerHead {
	top: 5%;
}
}

@media screen and (max-width:300px) {
}
/*--Animation Css--*/
.animatable {
	visibility: hidden;
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-ms-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused;
}
.animated {
	visibility: visible;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-ms-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-ms-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
}
/*--Fade Dowm--*/
.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
 0% {
 opacity: 0;
 -webkit-transform: translateY(-100%);
 transform:translateY(-20px)
}
100% {
 opacity: 1;
 -webkit-transform: translateY(0);
 transform:translateY(0px)
}
}
 @-moz-keyframes fadeInDown {
 0% {
 opacity: 0;
 -moz-transform: translateY(-100%);
 transform:translateY(-20px)
}
 100% {
 opacity: 1;
 -moz-transform: translateY(0);
 transform:translateY(0px)
}
}
 @-o-keyframes fadeInDown {
 0% {
 opacity: 0;
 -o-transform: translateY(-100%);
 transform:translateY(-20px)
}
 100% {
 opacity: 1;
 -o-transform: translateY(0);
 transform:translateY(0px)
}
}
 @keyframes fadeInDown {
 0% {
 opacity: 0;
 transform: translateY(-100%);
}
 100% {
 opacity: 1;
 transform: translateY(0);
}
}
/*--Animation  FadeInUp--*/
.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUp {
 0% {
 opacity: 0;
 -webkit-transform: translateY(100%);
 transform:translateY(-20px)
}
100% {
 opacity: 1;
 -webkit-transform: translateY(0);
 transform:translateY(0)
}
}
 @-moz-keyframes fadeInUp {
 0% {
 opacity: 0;
 -moz-transform: translateY(100%);
 transform:translateY(-20px)
}
 100% {
 opacity: 1;
 -moz-transform: translateY(0);
 transform:translateY(0)
}
}
 @-o-keyframes fadeInUp {
 0% {
 opacity: 0;
 -o-transform: translateY(100%);
 transform:translateY(-20px)
}
 100% {
 opacity: 1;
 -o-transform: translateY(0);
 transform:translateY(0px)
}
}
 @keyframes fadeInUp {
 0% {
 opacity: 0;
 transform: translateY(100%);
}
 100% {
 opacity: 1;
 transform: translateY(0);
}
}
/*--Animation Slide In--*/
.animated.slideInLeft {
	-webkit-animation-name: slideInLeft;
	-moz-animation-name: slideInLeft;
	-o-animation-name: slideInLeft;
	animation-name: slideInLeft;
}
 @-webkit-keyframes slideInLeft {
 0% {
 -webkit-transform: translateX(-100%);
 transform: translateX(-100%);
 visibility: visible;
}
 100% {
 -webkit-transform: translateX(0);
 transform: translateX(0);
}
}
 @keyframes slideInLeft {
 0% {
 -webkit-transform: translateX(-100%);
 transform: translateX(-100%);
 visibility: visible;
}
 100% {
 -webkit-transform: translateX(0);
 transform: translateX(0);
}
}
/*--Animation Slide In Right--*/
.slideInRight {
	-webkit-animation-name: slideInRight;
	-moz-animation-name: slideInRight;
	-o-animation-name: slideInRight;
	animation-name: slideInRight;
}
 @-webkit-keyframes slideInRight {
 0% {
 -webkit-transform: translateX(100%);
 transform: translateX(100%);
}
 100% {
 -webkit-transform: translateX(0);
 transform: translateX(0);
 visibility: visible;
}
}
 @keyframes slideInRight {
 0% {
 -webkit-transform: translateX(100%);
 transform: translateX(100%);
}
 100% {
 -webkit-transform: translateX(0);
 transform: translateX(0);
 visibility: visible;
}
}
/*--Animation Zoom In--*/
.animated.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
 @-webkit-keyframes zoomIn {
 0% {
 opacity: 0;
 -webkit-transform: scale3d(.3, .3, .3);
 transform: scale3d(.3, .3, .3);
}
 50% {
 opacity: 1;
}
}
 @keyframes zoomIn {
 0% {
 opacity: 0;
 -webkit-transform: scale3d(.3, .3, .3);
 transform: scale3d(.3, .3, .3);
}
 50% {
 opacity: 1;
}
}
/*--Animation Fade In--*/
.animated.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
 @-webkit-keyframes fadeIn {
 0% {
 opacity: 0;
}
 25% {
 opacity: 0.4;
}
 75% {
 opacity: 0.8;
}
 100% {
 opacity: 1;
}
}
 @-moz-keyframes fadeIn {
 0% {
 opacity: 0;
}
 25% {
 opacity: 0.4;
}
 75% {
 opacity: 0.8;
}
 100% {
 opacity: 1;
}
}
 @-o-keyframes fadeIn {
 0% {
 opacity: 0;
}
 25% {
 opacity: 0.4;
}
 75% {
 opacity: 0.8;
}
 100% {
 opacity: 1;
}
}
 @keyframes fadeIn {
 0% {
 opacity: 0;
}
 25% {
 opacity: 0.4;
}
 75% {
 opacity: 0.8;
}
 100% {
 opacity: 1;
}
}
/*--Animation FlipLeft--*/
.animated.flipLeft {
	-webkit-animation-name: flipLeft;
	-moz-animation-name: flipLeft;
	-o-animation-name: flipLeft;
	animation-name: flipLeft;
}
 @-webkit-keyframes flipLeft {
 0% {
 opacity: 0;
 -webkit-transform:perspective(2500px) rotateY(-100deg);
 transform: perspective(2500px) rotateY(-100deg)
}
 100% {
 -webkit-transform:perspective(2500px) rotateY(0);
 transform: perspective(2500px) rotateY(0)
}
}
 @keyframes flipLeft {
 0% {
 transform: perspective(2500px) rotateY(-100deg)
}
 100% {
 transform: perspective(2500px) rotateY(0)
}
}
/*--Animation FlipRight--*/
.animated.flipRight {
	-webkit-animation-name: flipRight;
	-moz-animation-name: flipRight;
	-o-animation-name: flipRight;
	animation-name: flipRight;
}
 @-webkit-keyframes flipRight {
 0% {
 opacity: 0;
 -webkit-transform:perspective(2500px) rotateY(100deg);
 transform: perspective(2500px) rotateY(-100deg)
}
 100% {
 -webkit-transform:perspective(2500px) rotateY(0);
 transform: perspective(2500px) rotateY(0)
}
}
 @keyframes flipRight {
 0% {
 transform: perspective(2500px) rotateY(100deg)
}
 100% {
 transform: perspective(2500px) rotateY(0)
}
}
.animated.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	-moz-animation-name: fadeInLeft;
	-o-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
 @-webkit-keyframes fadeInLeft {
 0% {
 opacity: 0;
 -webkit-transform: translateX(-200px);
 transform:translateX(-200px);
}
 100% {
 opacity: 1;
 -webkit-transform: none;
 transform: none;
}
}
 @keyframes fadeInLeft {
 0% {
 opacity: 0;
 -webkit-transform: translateX(-200px);
 transform: translateX(-200px);
}
 100% {
 opacity: 1;
 -webkit-transform: none;
 transform: none;
}
}
