@charset "utf-8";
/* CSS Document */
@import url('font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
body{ 
  margin: 0px;
  font-family: 'Open Sans', sans-serif;
  /*font-family: 'Montserrat', sans-serif;*/
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{ display:block;}
a,a:focus,{color:#333; text-decoration:none}
a:link{outline: 0;}
img{ 
  border:0px; 
  overflow: hidden;
}
.clr{ 
  clear:both;
}
.fLeft{ 
  float: left;
}
.fRight{ 
  float:right;
}
.imgResponsive{ 
  width: 100%;
}
.margin-bottom0{
  margin-bottom: 0px !important;
}
.margin-bottom30{
  margin-bottom: 30px !important;
}
.margin-top90{
  margin-top: 90px !important;
}
.margin-top160{
  margin-top: 160px !important;
}
#main{
  width: 100%;
}

header{
  width: 100%;
  padding: 10px 25px;
  position: fixed;
  background-color: #fff;
  top: 0px;
  left: 0px;
  z-index: 99;
  -webkit-box-shadow: 0 0 15px 1px rgba(0,0,0,0.07);
  box-shadow: 0 0 15px 1px rgba(0,0,0,0.07);
}
.header-inner{
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.header-inner .menuBtn{
  color: #e6e7e8;
}
.header-inner .menuLine,
.header-inner .menuLine1,
.header-inner .menuLine2{
  background-color: #e6e7e8;
}
.logo{
  width: 155px;
  height: 70px;
}
.homeBanner{
  width: 100%;
}
.homeBanner .carousel .item {
  height: 100vh;
  min-height: 300px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.homeBanner .carousel-caption h3{
  font-size: 30px;
  color: #fff;
  margin:0px;
  line-height: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  position: relative;
  text-shadow: 1px 1px 3px #000;
}
.homeBanner .carousel-caption h3 span{
  display: inline-block;
  position: relative;
}
.homeBanner .carousel-caption h3 b{
  width: 150px;
  height: 1px;
  background-color: rgba(216,216,216, 0.3);
  display: inline-block;
  vertical-align: middle;
}
.homeBanner .carousel-caption h3 span:before,
.homeBanner .carousel-caption h3 span:after{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(216,216,216, 0.3);
  position: absolute;
  bottom: 15px;
}
.homeBanner .carousel-caption h3 span:before{
  left: 0px;
  margin-left: -170px;
}
.homeBanner .carousel-caption h3 span:after{
  right: 0px;
  margin-right: -170px;
}
/*start menu css*/
.banner-menu {
  -webkit-transform: translate3d(0%,0,0);
  transform: translate3d(0%,0,0);
  position: relative;
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-height: 100vh;
}
.banner-menu .scroll-content{
  padding-top: 10em;
  padding-bottom: 10em;
  padding-left: 100px;
}
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(90deg, #330210 0%, #330210 50%, #ffffff 50%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #330210), color-stop(50%, #330210), color-stop(50%, #ffffff), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(90deg, #330210 0%, #330210 50%, #ffffff 50%, #ffffff 100%);
  background: -o-linear-gradient(90deg, #330210 0%, #330210 50%, #ffffff 50%, #ffffff 100%);
  background: -ms-linear-gradient(90deg, #330210 0%, #330210 50%, #ffffff 50%, #ffffff 100%);
  background: linear-gradient(90deg, #330210 0%, #330210 50%, #ffffff 50%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#330210', endColorstr='#ffffff', GradientType=1 );
  z-index: 9999;
}
.overlay .overlay-close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 40px;
  top: 30px;
  overflow: hidden;
  border: none;
  background: url(../images/cross.png) no-repeat center center;
  text-indent: 200%;
  color: transparent;
  outline: none;
  z-index: 100;
}
#trigger-overlay{
  cursor: pointer;
}
.overlay nav {
  position: relative;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
}
.overlay ul li {
  display: block;
  margin-bottom: 5px;
}
.overlay ul li a {
  font-size: 1.875em;
  display: block;
  color: #a7a9ac;
  font-weight: 600;
  position: relative;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.overlay ul li a:after{
  content: "";
  position: absolute;
  left: -28px;
  width: 20px;
  height: 2px;
  background-color: #a7a9ac;
  top: 51%;
}
.overlay ul li a:hover,
.overlay ul li a:focus {
  color: #330210;
  text-decoration: none;
}
.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a.active:after{
  content: "";
  position: absolute;
  left: -28px;
  width: 20px;
  height: 2px;
  background-color: #330210;
  top: 51%;
}
.overlay ul li a.active{
  color: #330210;
}
.overlay-door {
  visibility: hidden;
  width: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width 0.5s 0.3s, visibility 0s 0.8s;
  transition: width 0.5s 0.3s, visibility 0s 0.8s;
}
.overlay-door.open {
  visibility: visible;
  width: 100%;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}

.overlay-door nav,
.overlay-door .overlay-close {
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.5s;
  transition: opacity 0.3s 0.5s;
}
.overlay-door.open nav,
.overlay-door.open .overlay-close {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.overlay-door.close nav,
.overlay-door.close .overlay-close {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.menuBtn{
  float: right;
  padding-right: 36px;
  position: relative;
  line-height: 22px;
  color: #808285;
  font-size: 16px;
  margin-top: 22px;
}
.menuLine,
.menuLine1,
.menuLine2{
  width: 22px;
  height: 1px;
  background-color: #808285;
  top: 50%;
  right: 0px;
  position: absolute;
}
.menuLine1{
  top: 5px;
  right: 0px;
}
.menuLine2{
  top: 17px;
  right: 0px;
}
/*end menu css*/
.banner-logo{
  padding-top: 10px;
  padding-left: 25px;
}
.banner-about{
  padding: 5em 20px 10em 20px;
}
.banner-about p{
  text-align: center;
  color: #d1d3d4;
  font-size: 22px;
}
.banner-footer{
  text-align: center;
  color: #a7a9ac;
  font-size: 14px;
}
.banner-social-media{
  width: 82px;
  height: 24px;
  margin: 0 auto 20px auto;
}
.fIcon, .yIcon{
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #a7a9ac;
  text-align: center;
  color: #191919;
  float: left;
  font-size: 12px;
  margin-right: 5px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.yIcon{
  margin-right: 0px;
}
.fIcon:hover,
.yIcon:hover{
  background-color: #fff;
}

.overlay-door .banner-logo,
.overlay-door .banner-about p,
.overlay-door .banner-footer {
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.5s;
  transition: opacity 0.3s 0.5s;
}
.overlay-door.open .banner-logo,
.overlay-door.open .banner-about p,
.overlay-door.open .banner-footer {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.overlay-door.close .banner-logo,
.overlay-door.close .banner-about p,
.overlay-door.close .banner-footer {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.main-content{
  width: 100%;
  padding: 50px 0;
}
.main-content h2{
  color: #a7a9ac;
  font-size: 4.375em;
  text-align: center;
  font-weight: 600;
  margin: 0 0 30px 0;
}
.aboutText,
.aboutText1{
  width: 100%;
  max-width: 800px;
  margin:auto;
  text-align: center;
  font-size: 1.125em;
  color: #808285;
  letter-spacing: 0.08em;
}
.aboutText1{
  color: #333;
}
.product-heading{
  width: 100%;
  background-color: #f8f8f8;
  padding: 30px 0;
}

.product-heading h3{
  text-align: center;
  margin:0px;
  font-weight: 700;
  font-size: 34px;
  color: #808285;
}
.product-heading-search{
  width: 100%;
  max-width: 860px;
  margin: auto;
}
.product-content{
  width: 100%;
  padding: 30px 25px;
}

.product-box{
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.product-box h3{
  font-weight: bold;
  margin:0 0 5px 0;
}
.product-box p{
  font-size: 15px;
  margin:0px;
}
.product-overlay{
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: 0px;
  top: 0px;
  display: table-cell;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.product-box:hover .product-overlay{
  opacity: 1;
  background-color: rgba(0,0,0, 0.7);
}
.product-text{
  padding: 15px 50px;
  line-height: 1.2;
  text-align: left;
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  top: 50%;
  -webkit-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
.product-overlay-icon{
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -20px;
  margin-left: -20px;
  font-size: 24px;
}
.product-box1{
  margin-bottom: 12px !important;
}
.top-heading{
  text-align: center;
  font-size: 16px;
  letter-spacing: .08em;
  color: #808285;
  line-height: 30px;
  padding-top: 20px;
}
.top-heading a{
  color: #330210;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.top-heading a:hover,
.top-heading a:focus{
  color: #808285;
  text-decoration: none;
}
.top-heading span{
  width: 18px;
  height: 1px;
  background-color: #808285;
  display: inline-block;
  vertical-align: middle;
}


.faq-bg{
  width: 100%;
}
.faq-bg .panel-body{
  background-color: #f8f8f8;
  padding: 30px 0;
}
.faq-bg .panel-body p{
  font-size: 18px;
  margin:0px;
}
.faq-bg .panel-group .panel-heading+.panel-collapse>.list-group, .faq-bg .panel-group .panel-heading+.panel-collapse>.panel-body{
  border-top: none;
}
.faq-bg .panel-group .panel {
  border-radius: 0;
  box-shadow: none;
  border-color: #EEEEEE;
  border:none;
  border-bottom: 1px solid #f8f8f8;
}

.faq-bg .panel-default > .panel-heading {
  padding: 0;
  border-radius: 0;
  color: #808285;
  background-color: #fff;
  border-color: #EEEEEE;  
}

.faq-bg .panel-title {  
  font-size: 14px;
  border:none;
}

.faq-bg .panel-title > a {
  display: block;
  font-size: 26px;
  padding: 30px 0px;
  line-height: 30px;
  text-decoration: none;
  color: #808285;
}

.faq-bg .panel-title > a:hover,
.faq-bg .panel-title > a:focus{
  color: #0b1e2d;
}

.more-less {
  float: right;
  color: #808285;
  font-size: 16px;
  line-height: 30px;
}

.faq-bg .panel-default > .panel-heading + .faq-bg .panel-collapse > .panel-body {
  border-top-color: #EEEEEE;
}

.banner-inner {
  width: 100%;
  padding: 120px 0;
  background-color: #efefef;
  background-image: url(../images/banner-inner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 90px;
}

.banner-inner1 {
  width: 100%;
  padding: 120px 0;
  background-color: #efefef;
  background-image: url(../images/banner-inner-infused.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 90px;
}

.banner-inner2 {
  width: 100%;
  padding: 120px 0;
  background-color: #efefef;
  background-image: url(../images/banner-inner-company.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 90px;
}

.banner-inner h2,
.banner-inner1 h2,
.banner-inner2 h2 {
  text-align: center;
  font-size: 44px;
  color: #fff;
  margin: 0px;
  line-height: 60px;
  font-weight: 300;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 1);
}

.contact-bg{
  width: 100%;
  padding: 0 25px;
}
.contact-bg .form-control{
  height: 44px;
  border-color: #ddd;
  -webkit-box-shadow:none;
  box-shadow:none;
}
.contact-bg textarea.form-control{
  height: auto;
}
.contact-bg .form-control:focus{
  border-color: #330210;
}
.contact-col{
  width: 100%;
  font-weight: bold;
}
.contact-col a{
  color: #333;
}
.contact-col a:hover,
.contact-col a:focus{
  color: #330210;
  text-decoration: none;
}
.contact-col i{
  display: block;
  font-size: 20px;
  margin: 0 auto 15px auto;
  width: 36px;
  height: 36px;
  background-color: #330210;
  color: #fff;
  border-radius: 50%;
  line-height: 36px;
}

.contact-map{
  width: 100%;
  border-top:1px solid #ccc;
  border-bottom:1px solid #ccc;
  margin: 0;
}
.contact-map-google{
  position: relative;
  padding-bottom: 30%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.contact-map-google iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contactBtn{
  background-color: #330210;
  border:1px solid #330210;
  color: #fff;
  font-size: 16px;
}
.contactBtn:hover,
.contactBtn:focus{
  background-color: #191919;
  border:1px solid #191919;
  color: #fff;
}

.category-tab{
  width: 100%;
  background-color: #191919;
  border-top: 1px solid #999;
}

.category-li,
.category-li ul{
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.category-li li{
  display: inline-block;
  list-style: none;
  font-size: 18px;
  font-weight: bold;
}
.category-li li span{
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.category-li li a{
  color: #fff;
  display: block;
  padding: 15px 30px;
}
.category-li li a:hover,
.category-li li a:focus{
  background-color: #330210;
  text-decoration: none;
  color: #ffd700;
}
.category-li li a.active{
  background-color: #330210;
  color: #ffd700;
}


.world-map-bg{
  width: 100%;
  padding: 40px 0;
  background-color: #efefef;
}

.aboutheading{
  text-align: center;
  font-size: 44px !important;
  margin: 0 0 15px 0 !important;
}

.aboutheading1{
  text-align: center;
  font-size: 20px;
  margin: 0 0 30px 0;
}

.company-content{
  width: 100%;
  padding: 0 100px;
  text-align: center;
}

.company-content p{
  font-size: 16px;
  margin-bottom: 20px;
}

.collection-search{
  width: 100%;
  background-color: #f8f8f8;
  padding: 15px 25px;
  position: fixed;
  top: 90px;
  z-index: 999;
}

.collection-search-inner{
  width: 100%;
  max-width: 860px;
  margin:auto;
}

.collection-search .form-control{
  border: 1px solid #eee;
  background-color: #eee;
  -webkit-box-shadow:none;
  box-shadow:none;
  color: #999;
  font-weight: 600;
  height: 40px;
}

.collection-main{
  width: 100%;
  padding: 0 25px;
}

.collection-main a{
  color: #808285;
}
.collection-main a:hover,
.collection-main a:focus{
  color: #808285;
  text-decoration: none;
}


.collectionCol{
  width: 20% !important;
}
.collectionheading{
  text-align: center;
  font-size: 15px;
  margin: 15px 0 40px 0 !important;
  font-weight: 600 !important;
}

.collection-img{
  width: 100%;
  position: relative;
}

.card{
  width: 100%;
  padding: 0 21px;
}
.card .nav-tabs {
  border: none;
  background-color: #f1f1f1;
  padding: 10px 6px;
}
.card .nav-tabs>li>a{
  margin: 0 4px;
  border-radius: 0px;
  padding: 7px;
  background-color: #fff;
}
.card .nav-tabs > li.active > a,
.card .nav-tabs > li.active > a:focus, 
.card .nav-tabs > li.active > a:hover {
  border: 2px solid #e4ab3f;
  background-color: #e4ab3f;
}
.card .nav-tabs > li{
  width: 20%;
}
.card .nav-tabs > li > a {
  border: 2px solid #ddd;
  color: #666;
}
.card .nav-tabs > li.active > a,
.card .nav-tabs > li > a:hover {
  border: 2px solid #e4ab3f;
  color: #e4ab3f !important;
  background-color: #e4ab3f;
}

.card .tab-pane {
  padding: 0px 0;
}
.card .tab-content{
  padding:0px 4px;
}
.infused-row{
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.infused-col{
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.infused-li{
  margin:0px;
  padding: 0px;
}

hr.style-one {
  border: 0;
  height: 2px;
  background-color: #eeeeee;
  margin: 0px;
}

.mainMap{
  width: 750px; margin:auto;
}
.productFlex{
  display:flex;
  flex-flow: row wrap;
  align-content: space-between;
}

.column {
  display: none;
}

.show {
  display: block;
}

.btnFilter {
  border: 1px solid #ddd;
  outline: none;
  padding: 7px 15px;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 15px;
}

.btnFilter:hover {
  background-color: #ddd;
}

.btnFilter.active {
  background-color: #666;
  color: white;
}

footer{
  width: 100%;
  padding: 50px 25px;
  background-color: #191919;
}
.footer-logo{
  margin-bottom: 20px;
}
.social-media,
.social-media ul{
  margin:0px;
  padding: 0px;
}

.social-media li{
  list-style: none;
  float: left;
  margin-right: 5px;
}
.social-media li:last-child{
  margin-right: 0px;
}
.social-media li a{
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #a7a9ac;
  text-align: center;
  color: #191919;
  font-size: 12px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.social-media li a:hover,
.social-media li a:focus{
  background-color: #fff;
}
.copyright{
  text-align: center;
  color: #a7a9ac;
  font-size: 13px;
}
.copyright p{
  margin:0px;
}
.design{
  text-align: right;
  color: #a7a9ac;
  font-size: 13px;
}
.design a{
  color: #a7a9ac;
}
.design a:hover,
.design a:focus{
  color: #fff;
  text-decoration: none;
}
.footer-bottom{
  width: 100%;
  background-color: #330210;
  min-height: 58px;
}

.fixed-footer{
  width: 100%;
  background-color: #330210;
  min-height: 58px;
  padding: 15px 0;
  line-height: 28px;
  color: #fff;
  text-align: center;
  transition: background-color .5s,-webkit-transform .5s;
  transition: transform .5s,background-color .5s;
  transition: transform .5s,background-color .5s,-webkit-transform .5s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}

.affix{
  position: fixed;
  bottom: 0px;
  left: 0px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fixed-li,
.fixed-li ul{
  margin:0px;
  padding: 0px;
}

.fixed-li li{
  list-style: none;
  display: inline-block;
  margin: 0 30px;
  position: relative;
  font-size: 15px;
}
.fixed-li li:before,
.fixed-li li:after{
  content: "";
  width: 12px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
}
.fixed-li li:before{
  left: -18px;
}
.fixed-li li:after{
  right: -18px;
}
.fixed-li li a{
  color: #fff;
  text-decoration: none;
}
.fixed-li li a:hover,
.fixed-li li a:focus{
  color: #a7a9ac;
  text-decoration: none;
}




.board{
  width: 100%;
  padding: 0 25px;
  margin: 0px auto;
  background: #fff;
}
.board .nav-tabs {
  position: relative;
  margin: 40px auto;
  margin-bottom: 0;
  box-sizing: border-box;
  border:none;
}
.board .tab-pane{
  margin-top: 20px;
}
.board .liner{
  height: 1px;
  background: #efefef;
  position: absolute;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 19px;
}
.board .nav-tabs > li.active > a, .board .nav-tabs > li.active > a:hover, .board .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  border: 0;
  border-bottom-color: transparent;
  text-align: center;
  background-color: transparent;
}
.board span.round-tabs{
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  display: block;
  background: #ccc;
  z-index: 999;
  margin: 0 auto 6px auto;
  text-align: center;
}
.board li.active span.round-tabs{
  background: #22c222 !important;
}

.board .nav-tabs > li.active > a span.round-tabs{
  background: #fafafa;
}
.board .nav-tabs > li {
  width: 20%;
  text-align: center;
  font-weight: bold;
}

.board .nav-tabs > li a{
  color: #333;
  border:none;
}
.board .nav-tabs > li a:hover{
  background: transparent;
  border:none;
}
