/*------------------------------------------*/
/*	    Fonts
/*------------------------------------------*/
@font-face {
	font-family: 'Open Sans', sans-serif;
	src: url("../fonts/opensans/opensans-regular-webfont.woff") format("woff"), /* Modern Browsers */
	url("../fonts/opensans/opensans-regular-webfont.woff2") format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
}


@font-face {
  font-family: 'Roboto Bold';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Bold'), local('Roboto-Bold'), url("../fonts/roboto/Roboto-Bold.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lato-Black';
  font-style: normal;
  font-weight: 400;
  src: local('Lato-Black'), local('Lato-Black'), url("../fonts/lato/Lato-Black.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato'), local('Lato'), url("../fonts/lato/Lato-Regular.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  src: local('Anton'), local('Anton'), url("../fonts/anton/Anton-Regular.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'opensans-semibold';
  font-style: normal;
  font-weight: 400;
  src: local('opensans-semibold'), local('opensans-semibold'), url("../fonts/opensans/opensans-semibold.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}




/*------------------------------------------*/
/*	    General
/*------------------------------------------*/
/* General */
body {	
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
    line-height: 22.5px;
	font-weight: 300;
	color: #666;
}
strong, b {
	font-weight: 600;
}

img {
	max-width: 100%;
	height: auto;
}

ul, ol {
	list-style: none;
}
ul {
    padding: 0;
    margin: 0;
}
a {
    color: inherit;
	outline: 0;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
a:hover {
    color: #cd3333;
}
a, a:hover {
    text-decoration: none;
}
a, a:focus{
	outline: 0;
}
i {
	font-size: 1.1em;
}
h1, h2, h3, h4, h5, h6 {
	color: #333;
}
p strong {
	font-weight: 600;
}

.relative{
	position:relative;
}
.no-padding{
	margin:0 !important;
	padding:0 !important;
}



/*------------------------------------------*/
/*	    Rewrtie bootstrap
/*------------------------------------------*/

/* equal column */
@media(min-width:768px){
	.row-eq-height{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}

	.row-eq-height > [class*="col-"]{
		display: flex;
		flex-direction: column;
	}
}

/* thumbnail */
.thumbnail {
	border-width: 0;
	padding: 0;
	
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.thumbnail .caption{
	padding: 5px 15px;
}

/*------------------------------------------*/
/*	        Header
/*------------------------------------------*/
/* top-bar */
.top-bar {
    /* height: 60px; */
    /* line-height: 60px; */
    overflow: hidden;
    background: #332c2b;
    color: #fdd100;
    padding: 25px 0;
}
.contact-top {
	font-size: 20px;
	font-family: sans-serif;
}
.contact-top li {
	margin-right: 30px;
}
.social-icon > li {
	float: right;
}
.navbar-brand {
	margin-top:-60px;
	height: 80px;
	padding:0;
	margin-right:30px;
}
.navbar-brand img {
	height: 145px;
}
.navbar-right form {
	margin-top: 30px;
}

/*------------------------------------------*/
/*	                Navbar
/*------------------------------------------*/
.navbar{
	border-radius: 0 0 0;
	margin: 0;
}
.navbar-default{
	background: #fdd100;
	border:0px;
}

@media(min-width:768px){
	
	.navbar.fixed {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		width: 100%;
		border-bottom: 1px solid #eee;
	}
	.navbar-collapse{
		text-align: center;
	}
	.navbar-nav{
		display: block;
		float: none;
	}
	
	.navbar-nav > li{
		/* margin-left: 30px; */
	}
	.navbar-nav > li > a {
		text-transform: uppercase;
		color:#332c2b ;
		font-size: 16px;
		height: 100px;
		line-height: 70px;
		padding-right:20px;
		
	}
	.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
		font-weight: bold;
	}
	.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
		background: #332c2b;
		color: #fdd100;
		/* border : solid 1px #fdd100; */
	}
	.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
		background-color: rgba(255,255,255,0);
	}
	
	/* submenu */
	.navbar ul ul {
		display: none !important;
	}
	.navbar-nav li:hover > ul {
		display: block !important;
		moz-animation: fadeInDown .1s ease-out ;
		-webkit-animation: fadeInDown .1s ease-out ;
		animation:fadeInDown .1s ease-out ;
	}
	.navbar-nav ul{
		margin: 0;
		padding: 0;
		width: 200px;
		border: 1px solid rgba(0, 0, 0, 0.05);
		border-width: 2px 0 0 0;
		border-style: solid;
		border-color: #ddd;
		font-size: 13px;
		text-transform: capitalize;

		box-shadow: 0 0 0 ;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
	.navbar-nav > li > .dropdown-menu{ 
		left: 0;
		right: auto;
	}
	.navbar-nav > li > .dropdown-menu li{ border-bottom: 1px solid #eee; position: relative }
	.navbar-nav > li > .dropdown-menu li:last-child{ border-bottom: 0 }
	.navbar-nav > li > .dropdown-menu li,
	.navbar-nav > li > .dropdown-menu li a { color: #999; font-weight: 300 }
	.navbar-nav > li > .dropdown-menu a { padding: 10px 15px; position: relative }
	.navbar-nav > li > .dropdown-menu a:hover,
	.navbar-nav > li > .dropdown-menu > .active > a, 
	.navbar-nav > li > .dropdown-menu > .active > a:focus, 
	.navbar-nav > li > .dropdown-menu > .active > a:hover{ background-color: #fff;color: #000 !important;}
	
	/* sub submenu */
	.navbar-nav ul ul{	
		left: 200px !important;
		top: -1px;
		border-top: 0;
	}
	.navbar-default .navbar-nav > li > a {
		color: #332c2b;
		/* font-weight: bold;
		font-family: 'roboto-bold';  */
		font-family: 'Roboto Bold';
	}
	.navbar-form .input-group > .form-control {
		width: 100px;
	}
	.navbar-form  .btn-default {
		    background: #332c2b none repeat scroll 0 0;
			border-color: #333;
			color: #fdd100;
			margin-top: 0;
			padding: 7px 11px;
	}
	.navbar-form .input-group > .form-control {
		background: rgba(255, 255, 255, 0) none repeat scroll 0 0;
		border: 1px solid #333;
		color: #333;
		width: 100px;
	}
	.form-control::-webkit-input-placeholder { color: #333; }  /* WebKit, Blink, Edge */
	.form-control:-moz-placeholder { color: #333; }  /* Mozilla Firefox 4 to 18 */
	.form-control::-moz-placeholder { color: #333; }  /* Mozilla Firefox 19+ */
	.form-control:-ms-input-placeholder { color: #333; }  /* Internet Explorer 10-11 */
	.form-control::-ms-input-placeholder { color: #333; }

}
/*------------------------------------------*/
/*	        Slider
/*------------------------------------------*/
#slider{
	border-bottom: 0 solid #434a54;
	height: 550px;
}
.carousel-inner{height: 100%;}
.carousel-inner > .item{height: 100%;}
.carousel-indicators{
	bottom: 25%;
    left: 50px;
	
}
.carousel-indicators li{
	background:#fff !important;
	border-color:#fff !important;
	border-radius: 0;
}
.carousel-indicators .active
{
	background:#fbb03b;
	border-color:#fbb03b;
}
.carousel-progress{
	padding: 1px 0;
	position: absolute;
	bottom: 0;
	width: 100%;
}
.carousel-bar{
	height:3px;
	background:rgba(255, 255, 255, 0.7);
	display:block;
}
.carousel-control{
	box-shadow: none;
	border: 0;
	color: #ff;
	font-size: 15px;
	left: 0;
	opacity: 0.7;
	position: absolute;
	text-align: center;
	top: 71%;
	margin-top: -25px;
	width: 50px;
	height: 50px;
	line-height: 45px;
	z-index: 499;
}
.carousel-control.right {
	background-image: none;
	background-repeat: repeat-x;
	left: 100px;
	right: 0;
}
/* coresel control ya */
/* .carousel-control.left, .carousel-control.right {
	background-image: none;
}
.carousel-control.left{
	left: -100px;
}
.carousel-control.right{
	right: -100px;
}
#slider:hover .carousel-control.left{
	left: 20px
}
#slider:hover .carousel-control.right{
	right: 20px
} */
.caption-container {
	left: 40px;
	margin-left: 0;
	position: absolute;
	text-align: left;
	top: 120px;
	width: 60%;
}
.carousel-caption{
	left: 0;
	right: 0;
	top: 0;
	bottom: auto;
	padding: 0;
}
.carousel-caption h2{
	margin: 0;
}
 .carousel-caption p{
	font-size: 24px;
}

.carousel-caption h3 span {
    color: #fff;
    display: inline-block;
    font-size: 28px;
    text-transform: capitalize;
    width: 600px;
    margin-bottom: 30px;
}
.carousel-caption .info span{
    
    color: #fff;
    max-width:400px; 
   
}
.carousel-inner>.item>a>img, .carousel-inner>.item>img{
    line-height: 1;
 
}
.classpertama {
    top: 100px;
}
.classpertama .caption-container h1 {
    font-size: 168px;
}
.classpertama .caption-container p {
    font-size: 34px;
}
.classpertama .caption-container .selamatdatang{
	color:#006699;
	font-size: 24px;
}
.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
	display: block;
	height: 100%;
	width: 100%;
}
.head-line {
    padding: 10px 0 10px 0;
    background: #669966;
}
.head-line .textnya{
  	color:#fff;
  	overflow: hidden;
  	position: relative;
}
.head-line marquee{
	position: absolute;
	margin: 0 20px 0 10px;
}
.head-line .fa-bullhorn {
	border: 1px solid #fff;
	border-radius: 12px;
	padding: 3px;
	color: #669966;
	background: #fff;
}

.wrap-container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 0px;
	padding-right: 0px;   
}
.jajal:after,.jajal:before{display:table;content:" "}


.caption-container h3{
	font-family:Poppins-SemiBold;
	color:#fff;
	font-size:35px;
}
.caption-container p{
	font-family: Poppins-Regular;
	color:#ffffff;
	font-size: 14px;
}


.info {
  font-size: 18px !important;
}
@media (min-width: 768px) {

   .wrap-container {
      width: 768px;
    
    }
  
}
@media (min-width: 800px) {
   .wrap-container {
      width: 800px;
    
    }
  
}
@media (min-width: 980px) {
   .wrap-container {
      width: 980px;
    
    }
  
}
@media (min-width: 992px) {
.wrap-container {
 width: 1173px;

    }
  
}

@media (min-width: 1280px) {
.wrap-container {
	width: 1280px;

    }
  
}
@media (min-width: 1349px) {
.wrap-container {
	width: 1349px;

    }
  
}
.carousel-utama iframe {
   width: 100%;
	min-height: 650px;
	background-position: center;
	background-size: cover;
    position: relative;
}

@media(max-width:767px){
	.carousel-caption h2 span,.carousel-caption p span{
		width: 100%;
		text-align: center;
		display: block;
	}
.carousel-utama iframe{
    width: 100%;
    min-height: 350px;

  }
  .carousel-inner > .item{
  	max-height: 220px;
  }

}
@media(max-width:360px){
	.carousel-utama iframe{
		width: 100%;
		min-height: 220px;
	}
}
.carousel-caption p span{
	color: #336633;
	display: inline-block;
	font-size: 16px;
	
}
.carousel-caption h1{
	font-size:100px;
}
.carousel-caption p,.carousel-caption h1,.carousel-caption h2, .carousel-caption h3,.carousel-caption h4,.carousel-caption h5, .carousel-caption h6{
	color: #fdd100;
}
.carousel-caption h3 , .carousel-caption h1, .carousel-caption h2,{
  font-size: 35px;
}
.carousel-caption .btn-danger{
	border-color: #db3438;
	background: #db3438;
	background-color: rgb(0, 153, 153);
	/*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);*/
	color:#fff;
}

/*------------------------------------------*/
/*	        Section
/*------------------------------------------*/
section{
	margin: 70px 0 70px;
}
section.margin0{
	margin: 0;
}
.heading{
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	margin: 0 0 70px;
	margin-top: 20px;
	position: relative;
}
.heading::before {
	content: '';
	height: 3px;
	width: 50px;
	position: absolute;
	right: 50%;
	margin-right: -27px;
	bottom: -12px;
	display: block;
	background: #1a724b;
}
.heading.heading-light{color: #fff}
.heading.heading-light::before{background: #fff}


/*promo */
.promo{
	margin-top:0;
	margin-bottom:70px;
}

.promo-box {
	background: #ffff none repeat scroll 0 0;
	/* position: absolute;
	top: -140px; */
	margin-top: -122px;
	-webkit-box-shadow: -6px 6px 19px 7px rgba(13,13,15,0.21);
	-moz-box-shadow: -6px 6px 19px 7px rgba(13,13,15,0.21);
	box-shadow: -6px 6px 19px 7px rgba(13,13,15,0.21);
}
.promo-box .media-body{
	padding: 45px 20px;
}
.price {
	color: #fdd100;
	font-size: 35px;
}
.promo-box .media-right {
	height: 240px;
}


.up-promo {
  margin-bottom: 100px;
}

.product-text {
	border: 1px solid #ddd;
	overflow: hidden;
	padding: 20px;
	-webkit-box-shadow:-3px 4px 5px 6px rgb(229, 229, 229);
	-moz-box-shadow: -3px 4px 5px 6px rgb(229, 229, 229);
	box-shadow: -3px 4px 5px 6px rgb(229, 229, 229);
}
.product-price {
	color: #fdd100;
	font-size: 19px;
	font-family: "Lato-Black";
}
.list-inline.btn-product > li > a {
	background: #fdd100 none repeat scroll 0 0;
	color: #333;
	padding: 10px;
}
.promo-box img {
	height: 100%;
	object-fit: inherit;
	width: 140px;
}
.section-title {
  margin-bottom: 70px;
  font-family: anton;
}
.btn-product{
	margin-top:60px;
}

.product {
  margin-bottom: 30px;
}

/* distributor */
.map-box {
   /*  background: red none repeat scroll 0 0; */
    height: 310px;
	/* margin-right: 5px; */
	
}
.distributor-col {
  border-right: 15px solid #fff;
}

.distributor-col.last {
  border-right: 0 none;
}

.text-map {
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
	bottom: 0;
	color: #fdd100;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	text-align: center;
	width: 100%;
}


/*payment*/
.link-content {
	padding: 0 30px;
}

/*breacrum*/
.breadcrumb-section{
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 0;
	margin-top: 0;
	overflow: hidden;
	position: relative;
	background-image: url("../../images/site/paralax.jpg");
	height:180px;
}
.breadcrumb-section .section-title {
	color: #fdd100;
	margin-top: 35px;
	margin-bottom:10px;
	text-transform: uppercase;
}
.breadcrumb {
	background-color: rgba(255, 255, 255, 0);
	border-radius: 4px;
	color: #fff;
	list-style: outside none none;
	margin-bottom: 20px;
	padding: 8px 15px;
	text-align: center;
	text-transform: uppercase;
}
.breadcrumb > li + li::before {
	color: #fff;
	content: "/ ";
	padding: 0 5px;
	/* text-transform:uppercase; */
}
.breadcrumb > .active {
    color: #fff;
}
.opacyti {
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
	height: 100%;
}
.btn.btn-default.btn-lg.kontak-kami {
    margin-top: 20px;
    width: 200px;
}

/*detail product */
.content-detail .section-title {
	margin-bottom: 50px;
}
.det-price {
    background: #fdd100 none repeat scroll 0 0;
    color: #333;
    display: inline;
    font-size: 18px;
    font-weight: bold;
    padding: 13px;
	font-family:'roboto bold';
}
.btn-order-box .order-now {
    font-family: roboto bold;
}

.history {
    margin-top: 30px;
	font-family:sans-serif;
}


.media-body h4 {
  margin-bottom: 30px;
}


.btn-order {
	background: #332c2b none repeat scroll 0 0;
	border: medium solid #332c2b;
	color: #fdd100;
}
.modal-title.text-center {
    font-family: "opensans-semibold";
    font-size: 21px;
    text-transform: uppercase;
}
#order form {
    color: #333;
    font-family: opensans-semibold;
}
.modal {
	bottom: 0;
	display: none;
	left: 0;
	outline: 0 none;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: -19px;
	z-index: 1050;
}

/* footer menu */

.footer-menu {
	color: #333;
	font-size: 18px;
	/* font-weight: bold; */
	 font-family: 'roboto bold';
	background: #fdd100 none repeat scroll 0 0;
	line-height: 120px;
}

.footer-menu > li  a{
	padding: 50px 10px;
	
}


footer {
  background: #332c2b none repeat scroll 0 0;
  margin-top: -70px;
  padding: 20px 0;
}
.copy-right {
  color: #fdd100;
  font-family:'sans-serif';
}

.footer-menu a {
  text-transform: uppercase;
}


/**************** font ****************/
.media-heading,.text-map {
  font-family: 'lato';
}
.price {
  font-family: 'anton';
}

.media-body > p {
  font-family: 'Open Sans';
  margin-top:20px;
}
.product .product-title ,.title-kontak {
  font-family: 'opensans-semibold';
}


.icon {
	font-size: 30px;
	margin-bottom: 30px;
	color: #fdd100;
}
.info.title-kontak {
	color: #333;
	font-size: 14px !important;
}

#terimakasih .modal-header {
  border-bottom: medium none;
  padding: 20px;
}
#terimakasih.modal {
    top: 10%;
}
#terimakasih .alert.alert-success {
	margin-bottom: 0;
}


.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background-color: #fdd100;
  border-color: #fdd100;
  color: #fff;
  cursor: default;
  z-index: 3;
}
.pagination > li > a, .pagination > li > span {
  background-color: #fff;
  border: 1px solid #fdd100;
  color: #337ab7;
  float: left;
}
.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  border-color: #fdd100;
}

.btn.btn-default.btn-sm.btn-order.order-now {
	background: #333 none repeat scroll 0 0;
	border-color: #333;
	color: #fdd100;
}
.btn.btn-default.btn-sm.btn-order.order-now:hover,.btn.btn-default.btn-sm.btn-order.order-now:focus {
	background: #fdd100 none repeat scroll 0 0;
	border-color: #fdd100;
	color: #333;
}
/*------------------------------------------*/
/*			Thumbnail [aspect ratio]
/*------------------------------------------*/
.square {
    position: relative;
    width: 100%;
}
.square:before {
    content:     "";
    display:     block;
    padding-top: 100%;
}
.square .square-content {
    position: absolute;
    top:      0;
    left:     0;
    bottom:   0;
    right:    0;
}
.img-wrap{
	width: 100%;
	height: 100%;
	position: relative;
    overflow: hidden;
}
.img-wrap img{
	min-width:100%;
	min-height:100%;
	
	position: absolute;
    top: -10000px;
    bottom: -10000px;
    left: -10000px;
    right: -10000px;
    margin: auto;
}

.history ul, .history ol {
    list-style: outside none outside;
}

/* Other ratios - just apply the desired class to the "box" element */
.ratio2_1:before{
    padding-top: 50%;
}
.ratio1_2:before{
    padding-top: 200%;
}
.ratio4_3:before{
    padding-top: 75%;
}
.ratio3_4:before{
    padding-top: 124%;
}
.ratio16_9:before{
    padding-top: 56.25%;
}
.ratio2_1 .landscape, .ratio16_9 .landscape{max-height:inherit !important;max-width:100% !important;}
.ratio2_1 .potrait, .ratio16_9 .potrait{max-height:100% !important;max-width:inherit !important;}

.squared{max-width:100% !important;max-height:100% !important;}
.landscape{max-height:100% !important;max-width:inherit !important;}
.potrait{max-width:100% !important;max-height:inherit !important;}

.img-wrap.default{ background: #CDDC39; }


/*------------------------------------------*/
/*			Thumbnail hover animate
/*------------------------------------------*/

/***** Zoom *****/
.effect-zoom img{
	transition: all 0.5s ease 0s;
}
.effect-zoom:hover img{
	transform: scale(1.2);
	transition: all 0.5s ease 0s;
}

/***** Bubba *****/
figure.effect-bubba {
	text-align: center;
	cursor: pointer;
}
figure.effect-bubba img {
	opacity: 1;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}
figure.effect-bubba:hover img {
	opacity: 0.4;
}
figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
figure.effect-bubba figcaption::before {
/* 	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff; */
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}
figure.effect-bubba figcaption::after {
/* 	border-right: 1px solid #fff;
	border-left: 1px solid #fff; */
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}
figure.effect-bubba h2 {
	padding-top: 30%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
}
figure.effect-bubba p {
	padding: 20px 2.5em;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}
figure.effect-bubba .icon-view {
  color: #fff;
  display: block;
  font-size: 24px;
  height: 50px;
  left: 43%;
  line-height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 20%;
  transform: translate3d(0px, 20px, 0px);
  transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  z-index: 10;
}
figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-bubba:hover h2,
figure.effect-bubba:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
figure.effect-bubba:hover .icon-view {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}


/*------------------------------------------*/
/*			Animate
/*------------------------------------------*/
.animated{
	display:block;
	/*
	animation-duration: 3s;
	animation-delay: 2s;
	animation-iteration-count: infinite;
	*/
}
.animated.title{animation-delay: 0.5s;}
.animated.info{animation-delay: 1s;}
.animated.button{animation-delay: 1.5s;}


/*------------------------------------------*/
/*			Owl Carousel
/*------------------------------------------*/

/* Styling Owl Pagination*/
.owl-pagination {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 5px;
}
.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 16px;
	height: 16px;
	margin: 2px 4px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	border: 3px solid #444;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}
.touch-slider:hover .owl-controls .owl-page span {
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	border-color: #00b6e3;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
}

/* Custom Owl Pagination*/
.owl-container{
	position: relative;
}
.owl-container .owl-buttons [class*="owl-"]{
	position: absolute;
	top: 50%;
	font-size: 24px;
	z-index: 1000;
}
.owl-container .owl-buttons .owl-prev{
	left: 0;
}
.owl-container .owl-buttons .owl-next{
	right: 0;
}

/* Styling Owl navigation*/
.owl-buttons .owl-prev,
.owl-buttons .owl-next{
	font-size: 36px;
	height: 60px;
	line-height: 60px;
	margin-top: -30px;
	position: absolute;
	top: 50%;
}
.owl-buttons .owl-prev{left: 0;}
.owl-buttons .owl-next{right: 0;}







/* ======================================
Form 
========================================*/

/* btn */
.btn{
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.btn-default {
  background: #fdd100 none repeat scroll 0 0;
  border-color: #fdd100;
  color: #333;
  font-family: lato bold;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 30px;
}
.btn-default:hover,
.btn-default.focus, .btn-default:focus,
.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default.focus:active,
.btn-default:active:focus,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default.focus,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default:hover {
	background-color: #333;
	border-color: #333;
	color: #fdd100 ;
}

/* input */
.form-control {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.form-control:focus {
	box-shadow: none;
}
.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.control-group select, .control-group textarea, .control-group input[type="text"], .control-group input[type="password"], .control-group input[type="datetime"], .control-group input[type="datetime-local"], .control-group input[type="date"], .control-group input[type="month"], .control-group input[type="time"], .control-group input[type="week"], .control-group input[type="number"], .control-group input[type="email"], .control-group input[type="url"], .control-group input[type="search"], .control-group input[type="tel"], .control-group input[type="color"] {
	background: none repeat scroll 0 0 #FFFFFF;
}
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
	background-color: #FFFFFF;
	border-color: #01B5EA;
	color: #696969;
	box-shadow: none;
}
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
	background-color: #FFFFFF;
	border-color: #D5D5D5;
	border-width: 1px;
	color: #858585;
	box-shadow: none;
}
.checkbox label, .radio label {
	padding-left: 0;
	padding-right: 20px;
}
.checkbox-inline, .radio-inline {
	padding-left: 0;
}
.checkbox input[type=checkbox],.radio input[type=radio],.checkbox-inline input[type=checkbox],.radio-inline input[type=radio] { opacity: 0; }
input[type=checkbox]+.lbl,
input[type=radio]+.lbl {
	cursor: pointer;
	font-weight: normal;
	padding-left: 25px;
	padding-top: 5px;
	position: relative;
}
input[type=checkbox]:disabled+.lbl, input[type=radio]:disabled+.lbl { color: #bbb; cursor: not-allowed }
input[type=checkbox]+.lbl::before,
input[type=radio]+.lbl::before,
input[type=radio]+.lbl::after{
	position: absolute;
	display: block;
	left: 0;
	top: 3px;
}
input[type=checkbox]+.lbl::before,
input[type=radio]+.lbl::before{
    font-family: fontAwesome;
    content: "\a0";
    border: 1px solid #CCC;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	font-size: 12px;
    height: 16px;
    line-height: 14px;
    width: 16px;
	text-align: center;
}
input[type=checkbox]:checked+.lbl::before,
input[type=radio]:checked+.lbl::before {
    content: '\f00c';
    background-color: #fff;
    border-color: #adb8c0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1)
}
input[type=radio]+.lbl::before,
input[type=radio]:checked+.lbl::before {
    content: "";
	border-radius: 8px;
}
input[type=radio]:checked+.lbl::after {
    background: #00b6e3;
	border-radius: 8px;
	content: "";
	height: 10px;
	left: 3px;
	top: 6px;
	width: 10px;
}
input[type=checkbox]:disabled+.lbl::before,
input[type=radio]:disabled+.lbl::before,
input[type=checkbox][disabled]+.lbl::before,
input[type=radio][disabled]+.lbl::before,
input[type=checkbox].disabled+.lbl::before,
input[type=radio].disabled+.lbl::before {
    background-color: #DDD!important;
    border-color: #CCC!important;
    box-shadow: none!important;
    color: #BBB
}
input[type=checkbox]+.lbl::before,
input[type=radio]+.lbl::before{
    color: #00b6e3;
}
input[type=checkbox]:hover+.lbl::before,
input[type=radio]:hover+.lbl::before,
input[type=checkbox]+.lbl:hover::before,
input[type=radio]+.lbl:hover::before {
    border-color: #ffc107
}
.checkbox, .radio {
	margin-bottom: 15px;
}
.btn-spinner{
	font-size: 18px;
	border: 1px solid #ddd;
}


/*------------------------------------------*/
/*			Misc
/*------------------------------------------*/
.xhide{opacity:0}
.iconleft{margin-right:5px}
.iconright{margin-left:5px}
.no-border{border:none}
.no-shadow{box-shadow: 0 0 rgba(0,0,0,0)}
.circle{
	border: 1px solid #bbb;
	padding: 4px;
	
	webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
		-o-border-radius: 50%;
		   border-radius: 50%;
}
.list-item{
	margin-bottom: 30px;
}
.icon-sm{
	width: 25px;
}
.icon-lg{
	width: 60px;
	font-size: 48px;
}

/* sparator */
.sparator{
	background: #333;
	height: 1px;
}

/* typo */
.lowercse{text-transform: lowercse !important;}
.uppercase{text-transform: uppercase !important;}
.capitalize{text-transform: capitalize !important;}

/* color */
.white{color: #ffffff !important}
.red{color: #cd3333 !important}
.orange{color: #FF9800 !important}
.deep-orange{color: #f46e39 !important}
.purple{color: #c032bb !important}
.green{color: #37c770 !important}
.lime{color: #CDDC39 !important}
.lime-dark{color: #827717 !important}
.blue{color: #4993e6 !important}
.amber{color: #FFC107 !important}
.pink{color: #e91e63 !important}



@media(min-width:768px){}
@media(min-width:992px){}
@media(min-width:1200px){}


/*mobile*/
@media(max-width:767px){
	.navbar-default .navbar-toggle {
		border-color: #333;
	}
	.navbar-default .navbar-toggle .icon-bar {
		background-color: #333;
	}
	.navbar-default .navbar-nav > li > a {
		color: #333;
		font-weight: bold;
		text-transform: uppercase;
	}
	.contact-top {
	  font-size: 13px;
	}
	.contact-top li {
		margin-right: 0;
	}
}
@media (min-width: 320px) and  (max-width: 640px){
	
	
	.navbar-brand {
		height: 0;
		margin-top: 10px;
		padding: 0;
		margin-left:15px;
	}
	.navbar-brand img {
		height: 60px;
	}
	.navbar-nav {
		margin: 0;
	}
	.navbar-form {
		padding: 0 3px;
	}
	.btn-default {
		padding: 10px 20px;
	}
	#slider {
		height: 220px;
		overflow: hidden;
	}
	.promo-box {
		margin-top: 30px;
	}
	.distributor-col {
		border-right: 0;
	}
	.footer-menu {
		line-height: 60px;
	}
	.footer-menu > li a {
		padding: 20px;
	}
	.footer-menu > li {
		width: 100%;
	}
	.btn-product {
	  margin-top: 30px;
	}
	.distributor-col {
		border-bottom: 20px solid #fff;
	}
	.navbar-form  .navbar-default .navbar-collapse, .navbar-default .navbar-form {
	  background: #332c2b none repeat scroll 0 0;
	  border-color: #332c2b;
	  margin-bottom: 0;
	  padding: 10px;
	}
	.navbar-form .btn.btn-default {
	  padding: 7px 20px;
	}
	.promo-box img {
	  height: 100%;
	  object-fit: inherit;
	  width: 100%;
	}
	.media-right, .media > .pull-right {
	  padding-right: 10px;
	  padding-top: 10px;
	}
	figure.effect-bubba .icon-view {
		top:40%;
		left:45%;
	}
	.btn-product .btn.btn-default ,.bnt-promo,.btn.btn-default.btn-sm.btn-order.order-now {
	  width: 100%;
	}
	.img-responsive.hidden-sm.hidden-md.hidden-lg {
		height: 200px;
		object-fit: cover;
	}
	.detail-images.pages img {
		object-fit: cover;
	}
}


@media (min-width: 641px) and  (max-width: 980px) {
	.navbar-brand img {
		height: 80px;
	}
	.navbar-brand {
	  height: 0;
	  margin-right: 0;
	  margin-top: -51px;
	  padding: 0;
	}
	.navbar-nav > li > a {
	  font-size: 13px;
	  padding-right: 15px;
	  text-transform: uppercase;
	}
	.navbar-nav > li {
		margin-left: 0;
	}
	.contact-top li {
		margin-right: 0;
	}
	.promo-box .media-right {
		height: 160px;
		width: 100%;
	}
	/* .link-content {
		padding: 0 60px;
	}
	.link-content > img {
		  height: 100px;
		  width: 100%;
		} */
		.link-content {
		  text-align: center;
		}
	.promo-box img {
	  height: 100%;
	  object-fit: inherit;
	  padding-right: 11px;
	  width: 100%;
	}
}
@media (min-width: 768px) and  (max-width: 980px) {
	.contact-top {
		font-size: 14px;
	}
	ul.social-icon {
		padding-right: 40px;
	}
	.navbar-brand img {
		height: 60px;
	}
	.navbar-brand {
		margin-top: -33px;
	}
	.navbar-nav > li > a {
		padding-right: 5px;
  
	}
	.navbar-right {
		margin-right: 20px;
	}
	
}