
/*--------------------------------------------------------*/
/* TABLE OF CONTENTS: */
/*--------------------------------------------------------*/
/* 01 - FONTS */
/* 02 - LOADER */
/* 03 - RESET STYLES */
/* 04 - GLOBAL SETTINGS */
/* 05 - OVERLAY-MENU */
/* 06 - HEADER */
/* 07 - FOOTER */
/* 08 - INDEX */
/* 09 - SHOP */
/* 10 - #SHOP */
/* 11 - DETAIL */
/* 12 - CHECKOUT*/

/*-------------------------------------------------------------------------------------------------------------------------------*/

@import url('404.css');

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 01 - FONTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.class{	font-family:"robotoregular","Hiragino Sans GB",Helvetica,Arial,Tahoma,'Microsoft Yahei',黑体;}
.shop .detail-item .description .info, .quick-view-popup .info, .instagram article a, .price, .btn-1, .btn-2{font-family:;}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - LOADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
#loader-wrapper{position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: white; z-index: 500;}

.loader {
    position: absolute;
    top: 50%; margin-top: -50px;
    left: 50%; margin-left: -50px;
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #222; /* Green */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - RESET STYLES */
/*-------------------------------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;}
i{font-style: italic;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}
body *{-webkit-text-size-adjust:none;}
.clear{clear:both; overflow: hidden; height:0px; font-size:0px; display: block;}
input:focus, select:focus, textarea:focus, button:focus {outline: none;}
input, textarea, select{-webkit-appearance: none;border-radius: 0;}
input[type='number'] {
    -moz-appearance: textfield;
}
a:link, a:visited, a:active, a:hover{cursor: pointer; text-decoration: none; outline: none;}
body{font-family:"robotoregular","Hiragino Sans GB",'Open Sans',Helvetica,Arial,Tahoma,'Microsoft Yahei',黑体 !important;
font-weight: normal; font-size: 15px; line-height: 26px; color: #989898;}
ul{list-style-type: none;}
html, body { scroll-behavior:smooth;} /* 页面平滑滚动 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - GLOBAL SETTINGS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.is-mobile{display: none;}
@media (max-width: 1199px) {
    .is-mobile{display: block;}
}

#content{overflow-x: hidden;}

@media (max-width: 767px) {
  div.text-center.grey-dark{float: left;}
}
/*table*/
.table-view{height: 100%; width: 100%; display: table;}
.row-view{display: table-row;}
.cell-view{display: table-cell; vertical-align: middle; height: inherit;}

.height-min{min-height: 100vh; height: 100%;}
@media (max-width: 1199px) {
  .height-min{min-height: 1px; height: 100%;}
}

/*flex*/
.flex{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%; height: 100%; min-height: inherit;
}
.flex-in{display: inline-block; width: 100%;}
.flex-item-1{order: 1;}
.flex-item-2{order: 2;}
.flex-eq-h{display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-align: stretch; -webkit-align-items: stretch; -webkit-box-align: stretch; align-items: stretch; width: 100%; height: 100%; min-height: inherit;}
@media (min-width: 992px) {
  .flex-md{display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center; align-items: center; width: 100%; height: 100%; min-height: inherit;}
}
@media (min-width: 768px) {
  .flex-sm{display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center; align-items: center; width: 100%; height: 100%; min-height: inherit;}
}
@media (max-width: 991px) {
  .flex-eq-h{display: block;}
}
/*flex*/


/*inputs*/
.input-wrapper{display: inline-block; position: relative; margin: 0; height: 100%; width: 100%;}
.input-wrapper .input-style{position: relative; display: block; float: left; width: 100%; height: 40px; margin-right: 0; margin-bottom: 10px; overflow: hidden;}
.input-wrapper .input-style input{width: 100%; height: 100%; padding: 0 15px; color: #222; background-color: transparent; border: 1px solid #e3e3e3;}
.input-wrapper .input-style label{position: absolute; left: 15px; top: 6px; cursor: text; font-size: 13px; line-height: 16px; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out; transition-delay: 250ms; -moz-transition-delay: 250ms; -webkit-transition-delay: 250ms; -ms-transition-delay: 250ms;}
.input-wrapper .input-style.focus label{top: 6px; opacity: 0; transition-delay: 0ms; -moz-transition-delay: 0ms; -webkit-transition-delay: 0ms; -ms-transition-delay: 0ms;}

.input-wrapper .input-style.half{width: calc(50% - 5px); margin-right: 10px;}
.input-wrapper .input-style.half.half-right{margin-right: 0;}
.input-wrapper .input-style.third{width: calc(33.33% - 7px); margin-right: 10px;}
.input-wrapper .input-style.third.third-right{margin-right: 0;}
@media (max-width: 1199px) {
  .input-wrapper .input-style.third{width: 100%;}
}
@media (max-width: 767px) {
  .input-wrapper .input-style.half{width: 100%;}
}
/*inputs*/

  /*sumoselect*/
.shop .SumoSelect{position: relative; display: inline-block; height: 40px; width: 100%; font-size: 13px; line-height: 30px; vertical-align: top; text-align: left; margin-bottom: 10px;}
.shop .SumoSelect > .CaptionCont{border-radius: 0; border: 1px solid #e3e3e3;}
.shop .SumoSelect > .optWrapper{border-radius: 0;}
.shop .SumoSelect.open > .optWrapper{top: 40px;}
.shop .SumoSelect > .optWrapper > .options{border-radius: 0;}
.shop .SelectBox{display: block; height: 40px; padding: 5px 15px;}
.shop .SumoSelect:focus > .CaptionCont,
.shop .SumoSelect:hover > .CaptionCont,
.shop .SumoSelect.open > .CaptionCont{box-shadow: none; border-color: #222; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
.shop .SumoSelect > .CaptionCont > label > i{background-image: url(../image/down.png);}
.shop .SumoSelect > .optWrapper > .options  li.opt{padding: 3px 6px;}
.shop .SumoSelect > .optWrapper > .options  li.opt:hover{background-color: #222; color: #fff; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
.shop .SumoSelect > .optWrapper > .options > li.opt:first-child,
.shop .SumoSelect > .optWrapper > .options > li.opt:last-child{border-radius: 0;}
.shop .SumoSelect > .CaptionCont > span.placeholder{font-style: normal; color: #989898;}

.shop .SumoSelect.sumo_sortby{width: 270px;}
.shop .SumoSelect.sumo_show{width: 110px;}
.shop .SumoSelect.sumo_country{width: calc(33.33% - 7px); margin-right: 10px; margin-bottom: 10px; float: left;}
.shop .SumoSelect.sumo_city{width: calc(33.33% - 7px); margin-right: 0; margin-bottom: 10px; float: left;}

.select-date{width: 67.2%; position: relative; float: left; padding-left: 120px;}
.select-date > span{position: absolute; left: 0; top: 0; font-size: 12px; line-height: 40px; color: #222;}
.select-date .SumoSelect{width: calc(50% - 10px); margin-right: 10px; float: left;}
@media (min-width: 992px) and (max-width: 1199px) {
  .shop .inline-wrapper .SumoSelect:first-child{width: 250px;}
  .shop .inline-wrapper .SumoSelect:last-child{width: 110px;}
}
@media (max-width: 991px) {
  .shop .SumoSelect{width: 100%;}
  .select-date{width: 100%;}
}
@media (max-width: 767px) {
  .shop .SumoSelect{display: block; width: 100%; margin-bottom: 15px; float: left;}
}

/*radiobutton*/
.radio{position: relative; display: inline-block; cursor: pointer; min-width: 20px; min-height: 20px;}
.radio .text{position: relative; font-size: 16px; line-height: 20px; padding-left: 35px; display: block; text-transform: uppercase; color: #222;}
.radio .text span{color: #7a7a7a; padding-left: 15px;}
.radio input{opacity: 0;}
.radio input:checked+.text{color: #222;}
.radio input:checked+.text span{color: #222;}
.radio .text:before{content: ""; position: absolute; left: 3px; top: 3px; width: 14px; height: 14px; border-radius: 50%; -webkit-border-radius: 50%; background-color: transparent;}
.radio input:checked+.text:before{background-color: #222;}
.radio .text:after{content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border: 1px #222 solid; border-radius: 10px; -webkit-border-radius: 10px;}
.radio input:checked+.text:after{content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border: 1px #222 solid; border-radius: 10px; -webkit-border-radius: 10px;}

.radio-item{display: block; float: left; width: calc(50% - 10px); margin-right: 20px; margin-bottom: 10px;}
.radio-item.right{margin-right: 0;}
.radio-item p{padding-left: 35px;}
@media (max-width: 767px) {
  .radio-item{width: 100%;}
}
/*radiobutton*/


/*form styles*/
/*form styles*/


/*buttons*/
.btn-wrap{position: relative; display: inline-block;}
.btn-1{position: relative; float: left; padding: 7px 15px 7px 15px; background:#fff; color: #222; font-size: 12px; line-height: 24px; font-weight: bold; text-transform: uppercase; cursor: pointer;}
.btn-1 span{z-index: 2; position: relative; color: #222; cursor: pointer;}
.btn-1:before{content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: #222; opacity: 0; -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0);}
.btn-1.border{border: 1px solid #222;}
.btn-2{position: relative; float: left; padding: 7px 15px 7px 15px; background:#222; color: #fff; font-size: 12px; line-height: 24px; font-weight: bold; text-transform: uppercase; cursor: pointer;}
.btn-2 span{z-index: 2; position: relative; color: #fff; cursor: pointer;}
.btn-2:before{content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: #fff; opacity: 0; -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0);}


@media (min-width: 1200px) {
    .btn-1:hover span{color: #fff;}
    .btn-2:hover span{color: #222;}
    .btn-1:hover:before{opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1);}
    .btn-2:hover:before{opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1);}
}
/*buttons*/


/*typography*/
.h1,.h2,.h3,.h4,.h5,.h6,.h7,.h8,.h9,.h10{font-family: 'robotolight'; color: #222; font-weight: 900; text-transform: uppercase; margin: 0;}
.h1{font-size: 60px; line-height: 60px; color: #fff;}
.h2{font-size: 34px; line-height: 48px; padding-top: 40px;}
/*.h2:before{content: ""; position: absolute; width: 1px; height: 50px; top: 0; left: 50%; background-color: #222;}*/
.h2 span{position: absolute; width: 1px; height: 50px; top: -8px; left: 50%; background-color: #222;}
.h3{font-size: 24px; line-height: 34px;}
.h4{font-size: 24px; line-height: 24px;}
.h5{font-size: 16px; line-height: 48px;}
.h6{font-size: 16px; line-height: 24px;}
.h7{font-size: 15px; line-height: 24px;}
.h8{font-size: 14px; line-height: 24px;}
.h9{font-size: 13px; line-height: 24px;}
.h10{font-size: 12px; line-height: 18px;}
.h1::first-letter,
.h2::first-letter,
.h5::first-letter {font-size: 200% !important;}

.big{font-size: 15px; line-height: 32px;}
.normal{font-size: 15px; line-height: 24px;}
.small{font-size: 13px; line-height: 32px;}
.small-sm{font-size: 13px; line-height: 24px;}
.small-xs{font-size: 13px; line-height: 18px;}




/*///////////////// color set ///////////////*/

.white_t {
    color: #fff;
}

.brandcolor {
	color:#3fc58f;
}

::-moz-selection{ color: #fff; background: #3fc58f !important; }
::selection { color: #fff; background: #3fc58f !important; }





@media (max-width: 1599px) {
  .h1{font-size: 40px; line-height: 40px;}
}
@media (max-width: 767px) {
  .h1{font-size: 34px; line-height: 34px;}
  .h2{font-size: 28px; line-height: 36px; padding-top: 0; padding-bottom: 0;}
  /*.h2:before{display: none;}*/
  .h2 span{display: none;}
}




/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* Steven added */

#map {
	width:100%;
	height:700px;
	border-top:1px solid #3fc58f;
	border-bottom:1px solid #3fc58f;
	opacity:;
}

/*------ Top scrollBar ---------------------------------------------*/

#scrollBar A {
	TEXT-INDENT: 2000em;
	HEIGHT: 40px;
	WIDTH: 40px;
	DISPLAY: block; 
	BACKGROUND:#333 url(../image/top.png) no-repeat center center; 
	OVERFLOW: hidden; 
	CURSOR: pointer;
	opacity:0.55;
	filter: alpha(opacity=55);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#scrollBar A:hover {
	margin-bottom:10px;
	opacity:1;
	filter: alpha(opacity=90);
}

/* -------------- add 01. slide banner -------------- */
    .swiper-container {
		display:block;
      width: 100%;
      height: 100%;
    }
    .swiper-slide {
      background-position: center;
      background-size: cover;
    }

/* -------------- end add 01. slide banner -------------- */

/* -------------- add 02. PORTFOLIO -------------- */
.ew-divider{
	display:inline-block;
	width:90px;
	height:12px;
	margin:auto;
	background: url(../image/wave.png) no-repeat;
}
.portfolio_desc{
	padding:0 1.875rem;
}

.cbp-item img{
	-moz-transition: all .9s ease;
	-ms-transition: all .9s ease;
	-o-transition: all .9s ease;
	-webkit-transition: all .9s ease;
	transition: all .9s ease;
}
.cbp-item h2{
	font-size:40px;
}

/* -------------- add 03. PORTFOLIO 02 -------------- */

.image:hover img,
#portfolio-top .cbp-item:hover img,
#nospace-gallery .cbp-item:hover img,
#about-gallery .cbp-item:hover img,
#web-gallery .cbp-item:hover img,
#industrial-gallery .cbp-item:hover img,
.graphic-gallery .cbp-item:hover img,
.news_item:hover .image > img{
	-moz-transform:scale(1.15); 
	-ms-transform:scale(1.15); 
	-o-transform:scale(1.15); 
	-webkit-transform:scale(1.15);
	transform:scale(1.15);

}

.overlay, .overlay .overlay_bottom{
  -moz-transition:all .4s ease;
  -ms-transition:all .4s ease;
  -o-transition:all .4s ease;
 -webkit-transition:all .4s ease;
}


/*Overlays*/
.overlay{
	background:rgba(14,14,17,.9);
	opacity:0; padding:0;
	top:7px; left:7px; right:7px; bottom:7px;
	color:#fff;
	transform:scale(1);
}
.overlay p{
	color:#fff;
}
.centered, .overlay, 
.overlay .overlay_bottom, 
.overlay .overlay_top{ position:absolute; }
.overlay .overlay_bottom{
	bottom:0;
	padding:15px;
	-moz-transform:translateY(100px);
	-ms-transform:translateY(100px);
	-o-transform:translateY(100px);
	-webkit-transform:translateY(100px);
	transform:translateY(100px);
}
.overlay:hover .overlay_bottom{
	-moz-transform:translateY(0);
	-ms-transform:translateY(0);
	-o-transform:translateY(0);
	-webkit-transform:translateY(0);
	transform:translateY(0);
}
.overlay .overlay_top{
	top:7px; left:7px;
	display:inline-block;
	padding:4px 8px;
	background:;
	color:#fff;
}
.overlay .overlay_top i{ font-size:25px; line-height:1.55;}
#portfolio-top .cbp-item:hover .overlay, 
#nospace-gallery .cbp-item:hover .overlay, 
#about-gallery .cbp-item:hover .overlay,
#web-gallery .cbp-item:hover .overlay,
.graphic-gallery .cbp-item:hover .overlay,
#industrial-gallery .cbp-item:hover .overlay{ 
   opacity:1;
	-moz-transform:scale(0.99);
	-o-transform:scale(0.99);
	-webkit-transform:scale(0.99); 
	transform:scale(0.99);
}

.centered {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}



/* -------------- add 04. PORTFOLIO 03 -------------- */
.portfolio-image-wrapper {
    float: left;
    padding-left: 50px;
    padding-top: 150px;
    position: relative;
    width: 65.7%;
    z-index: 2;
}

/* -------------- add 05. optionsdetail -------------- */
.optionsdetail {
}
.optionsdetail h2 {
	margin-bottom:5px;
}
.optionsdetail .photo_block {
	margin-bottom:30px;
}
.optionsdetail .photo_block:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 30px solid #fff;
}
.optionsdetail .photo_block img {
	max-width:100%;
	margin-top:30px;
}
.optionsdetail .info_block {
	margin:50px 0;
}
.optionsdetail .info {
	margin:20px 0 40px;
}

.font-italic {
	font-style:italic;
}

/* 在线客服系统 */
.chaport-container .chaport-launcher .chaport-launcher-button {
    bottom: 4em;
    right: 1.2em;
    width: 3.2em;
    height: 3.2em;
}
.chaport-container .chaport-launcher .chaport-launcher-button .chaport-launcher-chat-icon {
	width:1.6em;
	height:1.6em;
	top:0.8em;
	left:0.8em;
	background-image: url(../image/chaport-launcher-chat-icon-new.gif);
}
.chaport-container .chaport-launcher .chaport-launcher-button .chaport-launcher-close-icon {
    position: absolute;
    top: -0.55em !important;
    right: -0.55em !important;
	width: 1.28571em;
    height: 1.28571em;
}



/* end Steven added */
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/



article{position: relative; float: left; width: 100%;}
.article{position: relative; float: left; width: 100%;}

.white{color: #fff;}
.black{color: #222222;}
.grey{color: #989898;}
.grey-dark{color: #737373;}
.bg-text{color: rgba(27,27,27,.5);}

/*hover*/
.hover-1{display: inline-block;}
.hover-2{background: url(../image/center-1-18.png) repeat-y; background-size: 0 18px; background-position: center 0px; -webkit-transition: all 40s ease-out; -moz-transition: all 40s ease-out; -ms-transition: all 40s ease-out; transition: all 40s ease-out;}
.hover-2:hover{background-position: center 0px; -webkit-transition: all 160s ease-out; -ms-transition: all 160s ease-out; -moz-transition: all 160s ease-out; transition: all 160s ease-out; background-size: 100000px 18px;}

.hover-3{background: url(../image/under-1-24.png) repeat-y; background-size: 0 24px; background-position: 0px 0px; -webkit-transition: all 40s ease-out; transition: all 40s ease-out;}
.hover-3:hover{background-position: center 0px; -webkit-transition: all 160s ease-out; transition: all 160s ease-out; background-size: 100000px 24px;}
.hover-5{display: table; background: url(../image/center-1-18.png) repeat-y; background-size: 0 18px; background-position: center 0px; -webkit-transition: all 40s ease-out; transition: all 40s ease-out;}
.hover-5:hover{background-position: center 0px; -webkit-transition: all 160s ease-out; transition: all 160s ease-out; background-size: 100000px 18px;}
.hover-6{background: url(../image/center-1-24.png) repeat-y; background-size: 0 24px; background-position: center 0px; -webkit-transition: all 40s ease-out; transition: all 40s ease-out;}
.hover-6:hover{background-position: center 0px; -webkit-transition: all 160s ease-out; transition: all 160s ease-out; background-size: 100000px 24px;}

.img-hover-1,
.img-hover-2{display: block; width: 100%; overflow: hidden;}
.img-hover-1 img,
.img-hover-2 img{display: block; width: 100%; -ms-transform: scale(1); -webkit-transform: scale(1); transform: scale(1); -moz-transition:transform 300ms ease-out; -webkit-transition:transform 300ms ease-out; transition:transform 300ms ease-out; -ms-transition:transform 300ms ease-out;}
@media (min-width: 1200px) {
  .hover-1:hover{color: #eef2de; cursor: pointer; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
  .img-hover-1:hover img{-ms-transform: scale(1.1); -webkit-transform: scale(1.1); transform: scale(1.1);}
  .img-hover-2:hover img{-ms-transform: scale(0.9); -webkit-transform: scale(0.9); transform: scale(0.9);}

  .hover-4{display: inline-block; padding: 0 5px; background: url(../image/center-2-24.png) repeat-y; background-size: 0 24px; background-position: center 0px; -webkit-transition: all 40s ease-out; transition: all 40s ease-out;}
  .hover-4:hover{background-position: center 0px; -webkit-transition: all 160s ease-out; transition: all 160s ease-out; background-size: 100000px 24px;}
}
/*hover*/

/*padding class*/
.empty-space{position: relative; display: block;}

.h0-xs{height: 0px;}
.h5-xs{height: 5px;}
.h10-xs{height: 10px;}
.h15-xs{height: 15px;}
.h20-xs{height: 20px;}
.h25-xs{height: 25px;}
.h30-xs{height: 30px;}
.h35-xs{height: 35px;}
.h40-xs{height: 40px;}
.h45-xs{height: 45px;}
.h50-xs{height: 50px;}
.h55-xs{height: 55px;}
.h60-xs{height: 60px;}
.h65-xs{height: 65px;}
.h70-xs{height: 70px;}
.h75-xs{height: 75px;}
.h80-xs{height: 80px;}
.h85-xs{height: 85px;}
.h90-xs{height: 90px;}
.h95-xs{height: 95px;}
.h100-xs{height: 100px;}

@media (min-width: 768px) {
  .h0-sm{height: 0px;}
  .h5-sm{height: 5px;}
  .h10-sm{height: 10px;}
  .h15-sm{height: 15px;}
  .h20-sm{height: 20px;}
  .h25-sm{height: 25px;}
  .h30-sm{height: 30px;}
  .h35-sm{height: 35px;}
  .h40-sm{height: 40px;}
  .h45-sm{height: 45px;}
  .h50-sm{height: 50px;}
  .h55-sm{height: 55px;}
  .h60-sm{height: 60px;}
  .h65-sm{height: 65px;}
  .h70-sm{height: 70px;}
  .h75-sm{height: 75px;}
  .h80-sm{height: 80px;}
  .h85-sm{height: 85px;}
  .h90-sm{height: 90px;}
  .h95-sm{height: 95px;}
  .h100-sm{height: 100px;}
}

@media (min-width: 992px) {
  .h0-md{height: 0px;}
  .h5-md{height: 5px;}
  .h10-md{height: 10px;}
  .h15-md{height: 15px;}
  .h20-md{height: 20px;}
  .h25-md{height: 25px;}
  .h30-md{height: 30px;}
  .h35-md{height: 35px;}
  .h40-md{height: 40px;}
  .h45-md{height: 45px;}
  .h50-md{height: 50px;}
  .h55-md{height: 55px;}
  .h60-md{height: 60px;}
  .h65-md{height: 65px;}
  .h70-md{height: 70px;}
  .h75-md{height: 75px;}
  .h80-md{height: 80px;}
  .h85-md{height: 85px;}
  .h90-md{height: 90px;}
  .h95-md{height: 95px;}
  .h100-md{height: 100px;}
}

@media (min-width: 1200px) {
  .h0-lg{height: 0px;}
  .h5-lg{height: 5px;}
  .h10-lg{height: 10px;}
  .h15-lg{height: 15px;}
  .h20-lg{height: 20px;}
  .h25-lg{height: 25px;}
  .h30-lg{height: 30px;}
  .h35-lg{height: 35px;}
  .h40-lg{height: 40px;}
  .h45-lg{height: 45px;}
  .h50-lg{height: 50px;}
  .h55-lg{height: 55px;}
  .h60-lg{height: 60px;}
  .h65-lg{height: 65px;}
  .h70-lg{height: 70px;}
  .h75-lg{height: 75px;}
  .h80-lg{height: 80px;}
  .h85-lg{height: 85px;}
  .h90-lg{height: 90px;}
  .h95-lg{height: 95px;}
  .h100-lg{height: 100px;}
}

.fl{float: left; width:100%;}


/*nopadding class*/
.nopadding {padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0;}
@media (min-width: 992px) {
  .nopadding-md{padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0;}
}

/*background*/
.bg{position:absolute; left:0px; top:0px; width:100%; height:100%; overflow:hidden; background-position: 50% 50%; background-repeat: no-repeat; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-attachment:scroll;}
.bg.fix{position: fixed;}
/*.bg-layer{position:absolute; left: 0; top: -100px; right: 0; bottom: -100px; background:rgba(0,0,0,0.5);}*/
.clip{clip: rect(auto, auto, auto, auto); height: 100%; position: absolute; width: 100%; left: 0px; top: 0px;}

/*table*/
.table-view{height: 100%; width: 100%; display: table;}
.row-view{display: table-row;}
.cell-view{display: table-cell; vertical-align: middle; height: inherit;}

/*block*/
.block{position: relative; float: left; width: 100%;}
.wide-container-fluid{position: relative; padding: 0 50px;}
@media (max-width: 767px) {
  .wide-container-fluid{padding: 0 15px;}
}

/*swiper*/
.swiper-button-next, .swiper-button-prev{width: 8px; height: 14px; margin-top: -4px; background-size: 8px 14px;}
.swiper-button-prev{background-image: url(../image/prev.png);}
.swiper-button-next{background-image: url(../image/next.png);}
.swiper-pagination-black .swiper-pagination-bullet-active{background-color: #222;}

.swiper-button.square-style{height: 40px; width: 40px; background-color: #fff; margin-top: -20px;}
.swiper-button.square-style img{margin-top: 13px;}
.swiper-button.square-style:before{content: ""; position: absolute; left: 0; top: 0; width: 0; height: 0; border-left: 1px solid #222; border-top: 1px solid #222; opacity: 0;}
.swiper-button.square-style:after{content: ""; position: absolute; right: 0; bottom: 0; width: 0; height: 0; border-bottom: 1px solid #222; border-right: 1px solid #222; opacity: 0;}

/* steven add swiper-button-white */
.swiper-button-white.square-style{background-color: #333 !important;}
.swiper-button-white.square-style:before{border-left: 1px solid #ccc; border-top: 1px solid #ccc;}
.swiper-button-white.square-style:after{border-bottom: 1px solid #ccc; border-right: 1px solid #ccc;}

@media (min-width: 1200px) {
    .swiper-button.square-style:hover:before{width: 100%; height: 100%; opacity: 1;}
    .swiper-button.square-style:hover:after{width: 100%; height: 100%; opacity: 1;}
}

/*TABS */
.tabs-block{text-align: center; margin-bottom: 10px;}
.tab-menu{display: inline-block; font-size: 16px; line-height: 24px; text-transform: uppercase; margin-left: 15px; margin-right: 15px; cursor: pointer; color: #a1a1a1;}
.tab-menu.active{color: #222; }
.tab-entry{display: none; text-align: left; font-size: 13px; margin-top: 25px;}
.tab-entry ul{margin-top: 20px;}
.tab-entry ul.disc li{margin: 5px 0;}
.tab-entry ul.disc li:before{content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; margin-right: 15px; background-color: #222;}

@media (min-width: 1200px) {
  .tab-menu:hover{color: #222; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 05 - OVERLAY-MENU */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.overlay-wrapper, .overlay-wrapper-video{visibility: hidden; width: 100%; height: 100%; position: fixed; z-index: 100;}
.overlay-wrapper.active, .overlay-wrapper-video.active{visibility: visible;}
.overlay-menu{width: 100%; height: 100%; z-index: -15; opacity: 0; left: 0;}
.overlay-wrapper.active .overlay-menu{opacity: 1; z-index: 15;}
.overlay-menu ul{display: inline-block; width: 100%; z-index: 6; list-style-type: none; margin-left:0;}
.overlay-menu ul > li{position: relative; float: left; margin: 15px 0; padding: 5px 0; font-size: 18px; width: 100%;}
.overlay-menu ul > li > ul{position: absolute; width: 100%; visibility: hidden; opacity: 0; left: calc(100% + 10px); padding: 20px 20px; background-color: #222; z-index: 6; list-style-type: none; text-align: left;}
.overlay-menu ul > li > ul > li{font-size: 14px; padding: 10px 0; margin: 0;}
.overlay-menu ul > li > a:before{position: absolute; width: 0; height: 1px; background: #fff; content: ""; left: 0; bottom: 0;}
.overlay-menu ul > li.active > a:before{width: 100%;}
.overlay-menu ul > li > ul > li a:before{position: absolute; width: 0; height: 1px; background: #fff; content: ""; left: 0; bottom: 0;}
.overlay-menu a{color: white !important; position: relative; padding-bottom: 10px;}
.overlay-animation:before{width: 0; height: 100%; position: absolute; left: 50%;  top: 0; background-color: rgba(34,34,34,0.95); content: "";}
.overlay-animation:after{width: 0; height: 100%; position: absolute; right: 50%;  top: 0; background-color: rgba(34,34,34,0.95); content: "";}
.overlay-wrapper.active .overlay-animation:before, .overlay-wrapper-video.active .overlay-animation:before{width: 50%;}
.overlay-wrapper.active .overlay-animation:after, .overlay-wrapper-video.active .overlay-animation:after{width: 50%;}
.overlay-menu .col-md-2{padding: 0;}

.btn-close *{backface-visibility:  hidden;}
.btn-close{width: 46px; height: 46px; background: #151515; display: block; position: absolute; right: 35px; top: 30px; cursor: pointer; z-index: 7;}
.btn-close span{width: 14px; height: 2px; position: absolute; left: 50%; top: 50%; margin: -1px 0 0 -7px; background: white; transform: rotate(45deg); -webkit-transform: rotate(45deg);}
.btn-close span:nth-child(2){transform: rotate(135deg); -webkit-transform: rotate(135deg);}

.overlay-menu .basket,
.overlay-menu .login-wrapper{display: inline-block; width: 100%; text-align: center; opacity: 1; visibility: hidden; z-index: -10; color: #fff; -ms-transform: translateX(0px); -webkit-transform: translateX(0px); transform: translateX(0px); margin-left: 0; margin-right: 0; margin-bottom: 10px;}
.overlay-menu .basket{margin-bottom: 25px;}
.overlay-menu .basket p span{color: #fff;}
.overlay-menu .basket .img-wrapper span{background-color: #fff; color: #222;}
.overlay-wrapper.active .overlay-menu .basket,
.overlay-wrapper.active .overlay-menu .login-wrapper{z-index: 10; visibility: visible;}

@media (max-height: 720px) {
  .overlay-menu{position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 70px 15px 15px 15px;}
}

@media (min-width: 992px) {
  .btn-close:hover {background: white;}
  .btn-close:hover span{background: #151515;}
  .overlay-menu ul > li:hover > ul{visibility: visible; opacity: 1; left: 100%;}
  .overlay-menu ul > li:hover > a:before{width: 100%;}
  .overlay-menu ul > li > ul > li a:hover{color: #fff;}
}
@media (min-width: 992px) {
  .overlay-menu ul{text-align: center;}
}
@media (max-width: 991px) {
  .overlay-menu{position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 70px 15px 15px 15px;}
  .overlay-menu a{float: left;}
  .overlay-menu ul{position: relative; float: left; text-align: left;}
  .overlay-menu ul > li > span{position: absolute; height: 45px; width: 45px; margin-top: -10px; right: 0; cursor: pointer;}
  .overlay-menu ul > li > span:before{content: ""; position: absolute; top: 22px; left: 13px; height: 1px; width: 18px; background-color: white;}
  .overlay-menu ul > li > span:after{content: ""; position: absolute; top: 13px; left: 22px; height: 18px; width: 1px; background-color: white;}
  .clicked:after{transform: rotate(90deg); -webkit-transform: rotate(90deg); opacity: 0;}
  .overlay-menu ul > li {margin:5px;}
    .overlay-menu ul > li > ul{position: relative; float: left; margin: 0; transform: none; background-color: inherit; left: 10px; padding: 0px; visibility: visible; opacity: 1; display: none; transition: none; -webkit-transition: none;-ms-transition: none;-moz-transition: none;}
  .overlay-menu ul > li > ul li a{padding: 0px;}

  .overlay-menu ul > li.active.clicked ul li{padding: 10px 10px 10px 0; height: auto;}
  .overlay-menu ul > li.active.clicked ul li a{font-size: 14px;}
    .btn-close{top: 15px; right: 15px;}
}

/*overlay-video*/
.overlay-wrapper.video.active{visibility: visible;}

.video-wrapper{position: relative; float: left; display: block; width: 100%;}
.video .iframe-wrapper{position: absolute; left: 0; top: 46px; bottom: 46px; right: 0;}
.full-size{position: absolute; left: 0; top: 0; width: 100%; height: 100%;}


/*POPUP*/
.popup-wrapper{position: fixed; z-index: 200; left: 0; top: 0; width: 100%; height: 100%; left: -100%; transition-delay: .3s; -webkit-transition-delay: .3s;}
.popup-wrapper.active{left: 0; transition-delay: 0s; -webkit-transition-delay: 0s;}
.popup-wrapper .bg-layer{position: absolute; left: 0; top: -100px; right: 0; bottom: -100px; background: rgba(0,0,0,.45); transition: all .3s ease-out; -webkit-transition: all .3s ease-out; opacity: 0;}
.popup-wrapper.active .bg-layer{opacity: 1;}
.popup-content{position: absolute; top: 0; width: 100%; height: 100%; overflow: auto; -webkit-overflow-scrolling: touch; font-size: 0; text-align: center; transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s; -webkit-transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s; transform: scale(1.2); -webkit-transform: scale(1.2); opacity: 0; left: -10000px; padding: 15px;}
.popup-content.active{transform: scale(1); -webkit-transform: scale(1); opacity: 1; left: 0; transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s; -webkit-transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s; position: relative;}
.popup-content:after{display: inline-block; vertical-align: middle; height: 100%; content: "";}
.popup-container{display: inline-block; vertical-align: middle; width: 100%; position: relative; text-align: left; background: #fff; max-width: 570px;}
.popup-container.right{text-align: left; background: #fff; top: ;}
.popup-container.right.scrolled{top: ;}
.popup-container.size-1{max-width: 570px;}
.popup-container.size-2{max-width: 730px;}
.popup-container.size-3{max-width: 1170px;}
.popup-content .layer-close{position: absolute; left: 0; bottom: 0; right: 0; height: 10000px;}
.popup-align{padding: 50px 70px 50px 70px; overflow: hidden;}
.popup-container .button-close{position: absolute; right: 5px; top: 5px;}

.button-close{width: 40px; height: 40px; background: transparent; display: inline-block; vertical-align: bottom; cursor: pointer;}
.button-close:before{content:""; width: 18px; height: 2px; position: absolute; left: 50%; top: 50%; margin: -1px 0 0 -7px; background: #222; transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
.button-close:after{content:""; width: 18px; height: 2px; position: absolute; left: 50%; top: 50%; margin: -1px 0 0 -7px; background: #222; transform: rotate(135deg); -webkit-transform: rotate(135deg); -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
@media (min-width: 1200px) {
  .button-close:hover:before,
  .button-close:hover:after{background-color: #ebebeb;}
  .popup-wrapper.z-lower{z-index: 11;}
}
@media (max-width: 1199px) {
  .popup-wrapper{z-index: 150;}
}
@media (max-width: 767px) {
  .popup-align{padding: 50px 15px 50px 15px;}
}

/*basket-popup*/
.basket-item{position: relative; display: block; width: 100%; font-size: 13px; border-bottom: 1px solid #e3e3e3; padding: 30px 0 30px 170px; height: 190px;}
.basket-item:first-child{border-top: 1px solid #e3e3e3;}
.basket-item-close{position: absolute; left: 0; top: 50%; margin-top: -12px; width: 25px; height: 25px; cursor: pointer; z-index: 10;}
.basket-item-close:before{content: ''; position: absolute;left: 5px; top: 5px; width: 15px; height: 1px; background-color: #222; -ms-transform: rotate(45deg) translateX(4px) translateY(4px); -webkit-transform: rotate(45deg) translateX(4px) translateY(4px); transform: rotate(45deg) translateX(4px) translateY(4px);}
.basket-item-close:after{content: ''; position: absolute;right: 5px; top: 5px; width: 15px; height: 1px; background-color: #222; -ms-transform: rotate(-45deg) translateX(-4px) translateY(4px); -webkit-transform: rotate(-45deg) translateX(-4px) translateY(4px); transform: rotate(-45deg) translateX(-4px) translateY(4px);}
.basket-item img{position: absolute; left: 30px; top: 50%; margin-top: -60px; width: 120px; height: 120px; display: block;}
.basket-item .description{position: absolute; left: 170px; top: 30px; width: 190px; height: 110px; line-height: 110px;}
.basket-item article{float: none; width: 100%; display: inline-block; vertical-align: middle;}
.basket-item article p{line-height: 24px;}
.basket-item .quantity-wrapper{position: absolute; right: 100px; top: 30px; width: 120px; height: 110px; line-height: 110px; text-align: center; font-size: 13px;}
.quantity{display: inline-block; position: relative;}
.quantity input{display: inline-block; position: relative; height: 40px; width: 40px; border: 1px solid #e3e3e3; line-height: 40px; vertical-align: middle; text-align: center; color: #222;}
.quantity input::-webkit-inner-spin-button{display: none;}
.basket-item .price{position: absolute; right: 30px; top: 0; height: 100%; width: auto; color: #222; font-size: 18px;}
.basket-item .price span{display: inline-block; vertical-align: middle; height: 100%; line-height: 168px;}
.basket-item .price sup{font-size: 10px;}
.quantity i{position: absolute; top: 50%; margin-top: -11px; left: -15px; font-size: 13px; padding: 5px; cursor: pointer;}
.quantity i.fa-caret-right{left: auto; right: -15px;}

.total-basket-price{display: block; width: 100%; text-align: right; color: #222; font-size: 24px; line-height: 30px; text-transform: uppercase; margin-top: 35px;}
.total-basket-price span{color: #222;}

.basket-popup .popup-align .btn-wrap{float: right; margin-top: 25px;}
@media (max-width: 1199px) {
  .popup-container.right{display: inline-block; position: relative; vertical-align: middle; width: 100%; position: relative; text-align: left; top: auto; right: auto;}
}
@media (max-width: 767px) {
  .basket-item{height: auto; padding: 30px 0 30px 0; text-align: center;}
  .basket-item a{width: auto; display: inline-block;}
  .basket-item img{position: relative; top: auto; left: auto; margin-top: 0; width: 110px; height: 110px; display: block; margin-bottom: 15px;}
  .basket-item .description{position: relative; display: inline-block; vertical-align: top; text-align: left; left: auto; top: auto; width: calc(100% - 115px); padding-left: 15px; height: auto; line-height: 0; margin-bottom: 15px;}
  .basket-item .quantity-wrapper{position: relative; display: inline-block; right: auto; top: auto; width: 110px; height: auto; line-height: 0; border-left: none; border-right: none; font-size: 13px;}
  .basket-item .price{position: relative; display: inline-block; height: auto; width: calc(100% - 115px);}
  .basket-item .price span{height: auto; line-height: 40px;}
  .basket-item-close{top: 4px; margin-top: 0;}
}

/*login popup*/
.login-popup{z-index: 200;}
.login-popup p{font-size: 13px; color: #989898;}
.login-popup p a{font-size: 13px; color: #222;}
.btn-2.twitter{background-color: #1da1f2; width: calc(50% - 10px); margin-right: 10px; text-align: center;}
.btn-2.facebook{background-color: #3b5998; width: calc(50% - 10px); margin-left: 10px; text-align: center;}
.btn-sing-up{font-size: 24px; line-height: 24px; color: #222; position: relative; padding-bottom: 3px;}
.btn-sing-up:before{content: ""; position: absolute; width: 100%; height: 1px; left: 0; bottom: 0; background-color: #222;}
.login-popup input{font-size: 15px;}
.login-popup .input-style  label{top: 12px;}
.login-popup .input-style.focus label{top: 20px;}


@media (min-width: 767px) {

.login-popup .basket-item.first-child {
	margin-top:50px;
}
.login-popup .basket-item {
	height:115px;
	margin-top:15px;
}
.login-popup .basket-item img{
	width:100px;
	height:100px;
}
.login-popup .quantity-wrapper {
	 height:30px;
	 line-height:30px;
	 right:auto;
	 left:150px;"
}
}
@media (max-width: 767px) {
.login-popup .quantity-wrapper {
	display:none;
}
}

@media (min-width: 1200px) {
  /*.login-popup p a:hover{color: #222;}*/
  .btn-sing-up:hover:before{left: 25%; width: 50%;}
}
@media (min-width: 768px) {
  .login-popup .separator{position: relative; height: 100%;}
  .login-popup .separator:before{content: ""; position: absolute; display: block; height: calc(100% - 10px); width: 1px; top: 0; left: 50%; background-color: #e3e3e3;}
  .login-popup .separator .col-sm-6:nth-child(1){padding-right: 40px;}
  .login-popup .separator .col-sm-6:nth-child(2){padding-left: 40px;}
}

/*quick-view popup*/
.swiper-popup .swiper-slide{text-align: center;}
.swiper-popup img{width: 100%; max-width: 270px; height: auto;}

.quick-view-popup p{font-size: 13px; line-height: 24px;}
.quick-view-popup .info{margin-left: 20px; display: inline-block; font-size: 16px; font-weight: 900;}
.quick-view-popup .price{font-size: 28px; display: inline-block; vertical-align: middle; margin-left: 20px; color: #222;}
.quick-view-popup .quantity-wrapper input{font-size: 13px;}
.quick-view-popup .info-title{display: inline-block; font-size: 13px; text-transform: uppercase; color: #222; vertical-align: middle;}
.quick-view-popup .quantity-wrapper .quantity{margin-left: 25px;}
.quick-view-popup .quantity-wrapper .quantity i{color: #222;}
.quick-view-popup .text-right .btn-wrap{vertical-align: middle;}

.quick-view-popup .follow-wrapper{position: relative; display: block; width: 100%; font-size: 13px; color: #222;}
.quick-view-popup .follow-wrapper .follow{display: inline-block; margin-left: 15px;}
.quick-view-popup .h4{margin-left: 20px;}

.swiper-popup{position: relative;}
.swiper-popup .swiper-button-prev{left: 0;}
.swiper-popup .swiper-button-next{right: 0;}
@media (min-width: 768px) {
  .quick-view-popup .popup-align{padding: 70px 85px 70px 30px;}
  .quick-view-popup .separator{position: relative; height: 100%;}
  .quick-view-popup .separator:before{content: ""; position: absolute; display: block; height: 100%; width: 1px; top: 0; left: 41.66%; background-color: #e3e3e3;}
  .quick-view-popup .separator .col-sm-5{padding-right: 30px;}
  .quick-view-popup .separator .col-sm-7{padding-left: 70px;}
  .swiper-popup .swiper-pagination{display: none;}
}
@media (max-width: 991px) {
  .swiper-popup .swiper-button-prev{left: -15px;}
  .swiper-popup .swiper-button-next{right: -15px;}
}
@media (max-width: 767px) {
  .swiper-popup .swiper-button{display: none;}
  .swiper-popup{margin-bottom: 30px;}
  .quick-view-popup .col-sm-6.text-right{text-align: left;}
  .quick-view-popup .quantity-wrapper{margin-bottom: 30px;}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 06 - HEADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
header{position: fixed; background-color: transparent; width: 100%; left: 0; top: 0; z-index: 50; padding: 15px 0 25px 0; -moz-transition:all 300ms ease-out; -o-transition:all 300ms ease-out; -webkit-transition:all 300ms ease-out; transition:all 300ms ease-out; -ms-transition:all 300ms ease-out;}
header.bg-white{background-color: #fff;}
header.scrolled, header.bg-header {padding: 10px 0 10px 0; border-bottom: 1px solid #e3e3e3; background-color: #fff;}
.logo{height: auto; line-height:; position: relative; top: 0; /*background-color: #fff; padding: 20px; margin-left: -20px;*/}
.logo img{vertical-align: middle;}
.logo:hover, logo:focus, logo:visited, .logo:link {border:none;}
.footer-logo:hover, .footer-logo:focus, .footer-logo:visited, .footer-logo:link {border:none;}

.header_logo span {
	font-size:14px;
	margin-left:15px;
	color:#3fc58f;
}

header.scrolled .header_logo span {
	color:;
}





.displaynone {
	display:none;
}
.displayblock {
	display:block;
}


/*menu*/
header ul.header-menu{display: inline-block; margin-bottom:0; vertical-align: middle; width: auto; z-index: 10; list-style-type: none; visibility: hidden; opacity: 0; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out; -ms-transform: translateX(30px); -webkit-transform: translateX(30px); transform: translateX(30px);}
header ul.header-menu > li{position: relative; display: inline-block; margin: 0 5px; font-size: 13px; width: auto; vertical-align: middle; padding-left:0;}
header ul.header-menu > li > a{display: block; height: 30px; line-height: 31px; width: auto; padding: 0 20px; color: #222;}
header ul.header-menu > li.active > a{color: #fff;}
header ul.header-menu > li > a span{z-index: 1; position: relative;}
header ul.header-menu > li.active > a:before{height: 100%;}
header ul.header-menu > li > a:before{position: absolute; width: 100%; height: 0; background: #222; content: ""; left: 0; bottom: 0; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
header ul.header-menu > li > ul{position: absolute; min-width: 200px; visibility: hidden; opacity: 0; left: 50px; padding: 20px 20px; background-color: #222; z-index: 6; list-style-type: none; text-align: left; line-height: 1px; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
header ul.header-menu > li > ul > li{padding: 0; margin: 0;}
header ul.header-menu > li > ul > li a{color: #fff; font-size: 13px; display: inline-block; width: auto; height: 30px; line-height: 30px; margin: 5px 0; white-space: nowrap;-webkit-transition: all 40s ease-out; transition: all 40s ease-out;}
header ul.header-menu > li > ul > li a:hover{ text-decoration:underline;-webkit-transition: all 160s ease-out; transition: all 160s ease-out; background-size: 100000px 30px;}
header a{color: #222; position: relative;}
header ul.header-menu > li:hover > ul{visibility: visible; opacity: 1; left: 0;}


/*hamburger*/
.hamburger-icon-2,
.hamburger-icon{width: 40px; height: 45px; position: relative; display: inline-block; vertical-align: middle; cursor: pointer; margin-right: -10px; /*background-color: #fff;*/}
.hamburger-icon-2{z-index: 100;}
.hamburger-icon-2 span,
.hamburger-icon span{background-color: #222; height: 2px; width: 18px; position: absolute; left: 11px; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
.hamburger-icon-2 span:nth-child(1),
.hamburger-icon span:nth-child(1){bottom: 27px;}
.hamburger-icon-2 span:nth-child(2),
.hamburger-icon span:nth-child(2){bottom: 21px;}
.hamburger-icon-2 span:nth-child(3),
.hamburger-icon span:nth-child(3){bottom: 15px;}
.hamburger-icon-2.active span:nth-child(1){-ms-transform: rotate(45deg) translateX(4px) translateY(4px); -webkit-transform: rotate(45deg) translateX(4px) translateY(4px); transform: rotate(45deg) translateX(4px) translateY(4px);}
.hamburger-icon-2.active span:nth-child(2){opacity: 0;}
.hamburger-icon-2.active span:nth-child(3){-ms-transform: rotate(-45deg) translateX(4px) translateY(-5px); -webkit-transform: rotate(-45deg) translateX(4px) translateY(-5px); transform: rotate(-45deg) translateX(4px) translateY(-5px);}

/*BASKET*/
.basket{position: relative; cursor: pointer; color: #222; text-align: center; display: inline-block; vertical-align: middle; width: auto; font-size: 13px; margin: 0 25px 0 40px; visibility: hidden; opacity: 0; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out; -ms-transform: translateX(30px); -webkit-transform: translateX(30px); transform: translateX(30px);}
.basket .img-wrapper span{position: absolute; bottom: 0; right: -3px; height: 15px; width: 15px; border-radius: 50%; background-color: #222; color: #fff; line-height: 15px; text-align: center; font-size: 12px; line-height: 17px;}
.basket .img-wrapper{position: relative; display: inline-block; width: 24px; height: 36px; background-image: url(../image/basket.png); background-repeat: no-repeat; background-position: top left;}
.basket .img-wrapper span{position: absolute; bottom: 0; right: -3px; height: 15px; width: 15px; border-radius: 50%; background-color: #222; color: #fff; line-height: 15px; text-align: center; font-size: 10px; line-height: 17px;}
.basket p{position: relative; display: inline-block; width: auto; top: -5px;}
.basket p span{color: #222;}
.basket.open-popup.active .img-wrapper{background-position: top right;}


/*LOGIN*/
.login-wrapper{display: inline-block; width: auto; vertical-align: middle; font-size: 13px; margin: 0 50px 0 5px; visibility: hidden; opacity: 0; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out; -ms-transform: translateX(30px); -webkit-transform: translateX(30px); transform: translateX(30px);}
.login{position: relative; height: 30px; cursor: pointer; display: inline-block; width: auto; padding: 0 20px;}
.login:before{position: absolute; width: 100%; height: 0; background: #222; content: ""; left: 0; bottom: 0; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
.login span{position: relative; z-index: 1; color: #222; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}

@media (min-width: 1024px) {
    header.header-style-2 .hamburger-icon{display: none;}
    .hamburger-icon-2:hover span:nth-child(1),
    .hamburger-icon:hover span:nth-child(1){bottom: 29px;}
    .hamburger-icon-2:hover span:nth-child(3),
    .hamburger-icon:hover span:nth-child(3){bottom: 13px;}
    .hamburger-icon-2.active:hover span:nth-child(1){bottom: 27px;}
    .hamburger-icon-2.active:hover span:nth-child(3){bottom: 15px;}

    header ul.header-menu > li > a:hover:before{height: 100%;}
    header ul.header-menu > li > a:hover{color: #fff;}
    header ul.header-menu > li > ul > li a:hover:before{width: calc(100% + 10px); left: -5px;}

    header.header-style-2.active ul.header-menu,
    header.header-style-2.active .login-wrapper,
    header.header-style-2.active .basket{visibility: visible; opacity: 1; -ms-transform: translateX(0px); -webkit-transform: translateX(0px); transform: translateX(0px);}

    .login:hover:before{height: 100%;}
    .login:hover span{color: #fff;}
	.right-menu {margin-top:20px;}
}
@media (max-width: 1023px) {
  header.header-style-2 .hamburger-icon-2,
  header.header-style-2 ul.header-menu,
  header.header-style-2 .login-wrapper,
  header.header-style-2 .basket{display: none;}

  header.scrolled,
  header{position: fixed; width: 100%; left: 0; top: 0; z-index: 20; padding: 5px 0;}
  .logo{height: 50px; line-height: 50px;}
  .header_logo span {display:none;}
  header .hamburger-icon{margin-top: 2px;}
	.right-menu {margin-top:20px;}
}

@media (max-width: 767px) {
  header.scrolled,
  header{background-color: #fff;}
  .hamburger-icon-2,
  .hamburger-icon{margin-right: 0;}
  .logo{margin-left: 0;}
}


/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 07 - FOOTER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
footer{padding: 45px 0; border-top: 1px solid #e3e3e3; position: relative; z-index: 1; background: #fff;}
footer ul{list-style-type: none; margin-left:0; margin-bottom:0;}
footer ul li{margin-bottom: 5px; padding-left:0;}
footer ul li a{color: #989898}
footer .copyright a{color: #222;}
footer .copyright .fa{color: #e9edd9;}

/*follow*/
.follow{font-size: 0;}
.follow .item{width: 30px; height: 30px; text-align: center; color: #cbcbcb; border-radius: 50%; -webkit-border-radius: 50%; display: inline-block; margin: 0 5px; position: relative; border: 1px #cbcbcb solid; background: #fff; font-size: 12px; vertical-align: bottom;}
.follow .item:last-child{margin-right: 0;}
.follow .item .fa{position: relative; line-height: 28px;}
.follow .item:before{position: absolute; border-radius: 50%; -webkit-border-radius: 50%; left: -2px; top: -2px; right: -2px; bottom: -2px; content: ""; background: #222; transform: scale(0); -webkit-transform: scale(0);}

@media (min-width: 1200px) {
  .follow .item:hover:before{transform: scale(1); -webkit-transform: scale(1);}
  .follow .item:hover{color: #fff;}
  footer ul li a:hover{color: #222;}
  footer .copyright a:hover{color: #e9edd9;}
}

@media (max-width: 991px) {
  footer{text-align: center;}
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 08 - INDEX */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*banner*/
  .banner{position: relative; float: left; width: 100%; height: 100%; padding: 80px 115px 110px 85px;}
  .swiper-style-banner{position: relative; z-index:3;}
  .swiper-style-banner .swiper-container{height: 800px;}
  .swiper-style-banner .bg{background-color: #ebebeb; width: calc(100% - 370px); left: auto; right: 0;}
  /*
  .swiper-style-banner .swiper-pagination{display: block; position: absolute; right: 40px; top: 50%; transform: translateY(-50%); padding: 2px 0;} 
  .swiper-style-banner .swiper-pagination .swiper-pagination-bullet{display: block; margin-bottom: 15px;}
  .swiper-style-banner .swiper-pagination .swiper-pagination-bullet:last-child{margin-bottom: 0;}
  */
  .swiper-style-banner .swiper-pagination{display: block;  bottom:50px; width: 100%;} 
  .swiper-style-banner .swiper-pagination .swiper-pagination-bullet{margin: 0 7px;}
    
  .banner-inner{position: relative; width: 100%; height: 100%; float: left;}
  .banner-item{position: relative; width: 74%; /*height: 670px;*/ height: 100%; float: left; background-repeat: no-repeat; background-size: cover; background-position: center, center; font-size: 0; text-align: right;}
  .banner-item-small-wrapper{position:absolute; top:0; right:-35.5%; width:52.8%; height:100%; font-size:0;}
  .banner-item-small-wrapper:after{content:''; display:inline-block; vertical-align:middle; width:0; height:100%;}
  .banner-item-small{position: relative; display:inline-block; vertical-align:middle;width:100%;height:auto; z-index: 1}
  .banner-item-small-img{position:relative;padding-bottom: 69.5%; background-repeat: no-repeat; background-size: cover; background-position: center, center;}
  .banner-item-small span:nth-child(1){position: absolute; right: 0; top: -35px; font-size: 13px; line-height: 24px; color: #777;}
  .banner-item-small span:nth-child(2){position: absolute; right: 0; bottom: -35px; font-size: 13px; line-height: 24px; color: #777;}
  .banner-item-small span a{color: #222;}
  .banner-item article{padding-right: 22.5%; z-index: 1; max-width: 91%; text-align: right; display: inline-block; vertical-align: middle; float: none;}
  .banner-item article .h1{position: relative; padding-bottom: 30px;}
  .banner-item article p span{display: inline-block; max-width: 80%;}
/*  .banner-item article .h1:before{content: ""; position: absolute; bottom: 12px; right: -60px; width: 130px; height: 1px; background-color: #fff;}
  .banner-item article .h1:after{content: ""; position: absolute; bottom: 12px; right: -110px; width: 50px; height: 1px; background-color: #222;}*/
  .banner-item article p{display: block; width: 100%; text-align: right; color: rgba(255,255,255,0.7); padding-bottom: 35px; font-size: 15px;}
  
  .whatwedo .banner-item article p{color: rgba(255,255,255,1); }
  
  .banner-item:before{content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.4);}
  .banner-item:after{content: ""; display: inline-block; vertical-align: middle; height: 100%;}
  .banner-item-small:before{content: ""; position: absolute; top: 44.5%; left: -130px; width: 130px; height: 1px; background-color: #fff;}
  .banner-item-small:after{content: ""; position: absolute; top: 44.5%; left: 0; width: 50px; height: 1px; background-color: #222;}
  .banner-item-small-img:before{content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; border: 30px solid #fff;}
@media (max-width: 1599px) {
  .banner-item-small:before,
  .banner-item-small:after{top: 38%;}
  .banner-item article p span{max-width: 90%;}
}
@media (max-width: 991px) {
  .swiper-style-banner .bg{width: calc(100% - 270px);}
  .swiper-style-banner .swiper-container{height: auto;}
  .banner-item{width: 100%; padding: 30px; text-align: center; /*height: 725px;*/}
  .banner-item article{padding-right: 0; text-align: center; position: relative; float: left; display: block; width: 100%; max-width: 100%;}
  .banner-item article .h1{padding-bottom: 20px;}
  .banner-item article p{text-align: center; padding-bottom: 25px;}
  .banner-item article p span{padding-bottom: 0; max-width: 100%;}
  .banner-item-small-wrapper{position: relative;  display: inline-block; top: 0; padding: 30px 0 40px 0; right: auto; width: 80%; height: auto;}
  
  .swiper-bigvideo .banner-item-small-wrapper {display:none !important;}
  .swiper-bigvideo .banner-item article {max-width:100% !important;}
  .swiper-bigvideo .banner-item article .h1 {text-align:center !important;}
  .swiper-bigvideo .hw-video-btn {left:50%; margin-left:-30px;}
  
  .swiper-style-1 .swiper-slide .img-wrapper {width:100%; float:none !important; margin:50px auto 0 !important;}
  .banner-item-small-img:before{border: 30px solid #fff !important;}
  
  
  .banner-item-small:before,
  .banner-item-small:after{display: none;}
  .banner-item-small span:nth-child(1),
  .banner-item-small span:nth-child(2){color: rgba(255,255,255,0.7);}
  .banner-item-small span a{color: #fff;}
}
@media (max-width: 767px) {
  .swiper-style-banner .bg{width: 100%;}
  .banner{position: relative; float: left; width: 100%; padding: 60px 0 80px 0;}
/*  .swiper-style-banner .swiper-container{height: 830px;}*/
  .banner-item{padding: 30px 15px;}
  /*.swiper-style-banner .swiper-pagination{display: none;}*/
  /*.swiper-style-banner .swiper-pagination .swiper-pagination-bullet{background-color: #fff;}*/
  .banner-item-small-wrapper{width: calc(100% - 200px); margin-left: 100px;}
  .swiper-style-banner .swiper-pagination{display: block; position: absolute; right: 50%; top: auto; bottom: 20px; transform: translateY(0%); transform: translateX(50%); padding: 0;}
  .swiper-style-banner .swiper-pagination .swiper-pagination-bullet{display: inline-block; margin-bottom: 0; margin: 7px;}
  .swiper-style-banner .swiper-pagination .swiper-pagination-bullet:last-child{margin-bottom: 7px;}
}
@media (max-width: 667px) {
  .banner-item-small-wrapper{width: calc(100% - 120px); margin-left: 60px;}
}
@media (max-width: 568px) {
  .banner-item-small-wrapper{width: calc(100% - 30px); margin-left: 15px;}
}
@media (max-width: 479px) {
  .banner-item-small-wrapper{padding: 50px 0 65px 0; width: 100%; margin-left: 0;}
  .banner-item-small-img:before{border: 15px solid #fff;}
}


/* ==== steven add ====*/

/* swiper-bigvideo2 */
.swiper-bigvideo.swiper-style-banner {
	height:600px;
}
.swiper-bigvideo.swiper-style-banner .swiper-container {
	height:600px;
}

.swiper-bigvideo.swiper-style-banner .bg {
	width:100%; background:#333;
}

.swiper-bigvideo .banner {
	padding:0;
}
.swiper-bigvideo .banner-item {
	width:100%;
	text-align:left;
}
.swiper-bigvideo .banner-item:before {
	background-color:rgba(0,0,0,0.3);
    -webkit-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}
.swiper-bigvideo .banner-item:hover:before {
	background-color:rgba(0,0,0,0.5);
}
.swiper-bigvideo .banner-item article {
	padding:0;
	vertical-align:top;
	margin-top:80px;
	text-align:left;
	max-width:60%;
	float:left;
	padding-left:5%;
}
.swiper-bigvideo .banner-item article .h1 {
	text-align:left;
}
.swiper-bigvideo .banner-item article p {
	text-align:left;
}
.swiper-bigvideo .banner-item-small-wrapper {
    right: 10%;
    top: 10%;
    width: 30%;
    height: 90%;
    font-size: inherit;
	display:block;
	background-color:rgba(255,255,255,0.95);
}
.swiper-bigvideo .banner-item-small {
	vertical-align: top;
}
.swiper-bigvideo .banner-item-small:before {
	display:none;
}
.swiper-bigvideo .banner-item-small-wrapper:before {
	 content: '';
	 position: absolute;
	 width: 0;
	 height: 0;
	 border: 20px solid #fff;
	 border-left: 0 solid rgba(0, 0, 0, 0)!important;
	 border-top: 15px solid rgba(0, 0, 0, 0)!important;
	 border-bottom: 15px solid rgba(0, 0, 0, 0)!important;
	 left: -20px;
	 top:75%;
	 margin-top: -10px;
	 z-index:222;
	 background-color: transparent;
	 opacity:0.95;
}
.swiper-bigvideo .banner-item-small:after {
	display:none;
}
.swiper-bigvideo .banner-item-small-img:before {
	display:none;
}

.swiper-bigvideo .banner-item-small span {color: #ccc;}

.swiper-bigvideo .description {
	margin:50px;
}
.swiper-bigvideo .description p {
	margin-top:20px;
	color:#333;
	font-size:14px;
	line-height:20px;
}


.swiper-bigvideo .play {
}
.swiper-bigvideo .play a {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	display:block;
}
.swiper-bigvideo .play .fa {
	position:absolute;
	top:50%;
	left:30%;
	margin-top:-40px;
	color: #fff;
	font-size: 80px;
	opacity:0.8;
    -webkit-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}
.swiper-bigvideo .banner-item:hover .play a {
	opacity:1;
}
.banner-item-small .play .fa {
	font-size:60px;
	left:50%;
	margin-top:-30px;
	margin-left:-30px;
}
.hw-video-btn {
	position:absolute;
	left:30%;
	top:50%;
}
.hw-video-btn a {
    font-size: 30px;
    color: #ffffff;
    height: 60px;
    width: 60px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #ffffff;
    padding-left: 9px;
    margin-top: -30px;
    display: block;
    position: relative;
}

.hw-video-btn a::before,
.hw-video-btn a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 2px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
}

.hw-video-btn a::before {
    animation: playvideo 2500ms linear infinite;
    animation-delay: 300ms;
}

.hw-video-btn a::after {
    animation: playvideotwos 2500ms linear infinite;
}

@keyframes playvideo {
    0% {
        transform: scale(1.03);
        opacity: 0;
        border-color: #ffffff;
    }
    2% {
        transform: scale(1.03);
        opacity: 1;
        border-color: #ffffff;
    }
    30% {
        transform: scale(1.6);
        opacity: 0.01;
        border-color: #ffffff;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
        border-color: #ffffff;
    }
}

@keyframes playvideotwos {
    0% {
        transform: scale(1.03);
        opacity: 0;
        border-color: #ffffff;
    }
    2% {
        transform: scale(1.03);
        opacity: 1;
        border-color: #ffffff;
    }
    25% {
        transform: scale(1.6);
        opacity: 0.01;
        border-color: #ffffff;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
        border-color: #ffffff;
    }
}



/* swiper-bigvideo2 */
.swiper-bigvideo2 {}

.swiper-bigvideo2.swiper-style-banner .bg {
	width:100%; background:#333;
}

.swiper-bigvideo2 .banner {
	padding:80px 100px;
}
.swiper-bigvideo2 .banner-item {
	width:100%;
}
.swiper-bigvideo2 .banner-item:before {
	background-color:rgba(0,0,0,0.1);
    -webkit-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}
.swiper-bigvideo2 .banner-item:hover:before {
	background-color:rgba(0,0,0,0.5);
}
.swiper-bigvideo2 .banner-item article {
	padding:0;
	vertical-align:top;
	margin-top:80px;
	text-align:left;
}
.swiper-bigvideo2 .banner-item article .h1 {
	text-align:left;
}
.swiper-bigvideo2 .banner-item article p {
	text-align:left;
}

.swiper-bigvideo2 .banner-item-small-wrapper {
	display:none;
}

.swiper-bigvideo2 .play {
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-40px;
}
.swiper-bigvideo2 .play a {
	display: block;
	border-radius: 100%;
	background-color: #333;
	width: 80px;
	height: 80px;
	color: #fff;
	line-height: 80px;
	font-size: 35px;
	text-align: center;
	margin:0 auto;
	margin-bottom: 25px;

}





/*banner*/

/*services*/
.book-cover{width: 100%; height: auto; padding: 30px 15px; background-color: #ebebeb; height: auto;}
.book-cover p{margin-top: 20px; margin-bottom: 35px;}
.book-cover img{width: 100%;}

.price{color: #222; font-size: 24px; line-height: 24px; font-weight: 900;}
.price sup{font-size: 15px;}
.price.price-sm{font-size: 14px;}
.price.price-sm sup{font-size: 9px;}

.services .article-wrapper{max-width: 140px; display: inline-block;}
.services .article-wrapper h6 {margin-bottom:10px;}
.services .article-wrapper p {line-height:25px;}

.services .icon-wrapper{position: relative; width: 100%;}
.services .icon-wrapper:before{content: ""; position: absolute; right: calc(50% + 15px); top: 50%; width: 50%; height: 1px; background-color: #ebebeb;}
.services .col-md-3:first-child .icon-wrapper:before{display: none;}
.services .icon-wrapper:after{content: ""; position: absolute; left: calc(50% + 15px); top: 50%; width: 50%; height: 1px; background-color: #ebebeb;}
.services .col-md-3:last-child .icon-wrapper:after{display: none;}
.services .icon{position: relative; border: 1px solid #ccc; outline: 10px solid #fff; margin: 10px auto; border-radius: 50%; width: 120px; height: 120px; display: inline-block; background-color: #fff; z-index: 1;}
.services .icon img{position: absolute; left: 50%; top: 50%; margin-left: -20px; margin-top: -20px; opacity:0.75; width:40px; height:auto;}
.services .icon:hover{border-width: 5px;}

@media (max-width: 991px) {
  .services .row .col-sm-6.col-md-3:nth-child(odd) .icon-wrapper:before{display: none;}
  .services .row .col-sm-6.col-md-3:nth-child(even) .icon-wrapper:after{display: none;}
}
@media (max-width: 767px) {
  .book-cover{width: calc(100% + 30px); margin-left: -15px;}
  .icon-wrapper:before,
  .icon-wrapper:after{display: none;}
}
/*services*/



/*============ swiper =============*/
.swiper-style-slide {
	z-index:1;
}
.swiper-style-slide .swiper-button-prev, .swiper-style-slide .swiper-button-next {
	width: 50px;
    height: 50px;
    margin-top: -25px;
    background-size: cover;
	padding:0;
	opacity:0.35;
    -webkit-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
}
.swiper-style-slide .swiper-button-prev:hover, .swiper-style-slide .swiper-button-next:hover {
	opacity:1;
	margin-left:0;
	margin-right:0;
}
.swiper-style-slide .swiper-button-prev{
	left: 20px;
	background-image:url(../image/prev03.png);
	margin-left:10px;
}
.swiper-style-slide .swiper-button-next{
	right: 20px;
	background-image:url(../image/next03.png);
	margin-right:10px;
}


.swiper-style-slide .swiper_photobg {
}

.swiper-style-slide .swiper_container {
	position:absolute;
	width:50%;
	bottom:150px;
	left:150px;
	z-index:6;
	text-align:left;
}
.swiper-style-slide h1 {
	margin:20px 0;
}
.swiper-style-slide .btn-wrap {
	margin:30px 0;
}


.swiper-style-slide .swiper-pagination{display: block;  bottom:30px; width: 100%;} 
.swiper-style-slide .swiper-pagination .swiper-pagination-bullet{margin: 0 7px;}









/*about*/
.about {
	z-index:2;
	position:relative;
}
.swiper-style-1 .swiper-wrapper{padding-top: 100px;}
.swiper-style-1 .swiper-slide{background-color: #ebebeb;}
.swiper-style-1 .swiper-slide article{padding: 70px 0;}
.swiper-style-1 .swiper-slide .img-wrapper{position: relative; float: left; margin-top: -100px; margin-left: 40px;}
.swiper-style-1 .swiper-slide .img-wrapper:before{content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 100%; border: 30px solid #fff;}
.swiper-style-1 .swiper-slide .img-wrapper img{display: block; width: 100%;}
.swiper-style-1 .swiper-button-prev, .swiper-style-1 .swiper-button-next{top: calc(50% + 60px)}
.swiper-style-1 .swiper-button-prev{left: -60px;}
.swiper-style-1 .swiper-button-next{right: -60px;}



@media (max-width: 991px) {
  .swiper-style-1{width: calc(100% + 48px); margin-left: -24px;}
  .swiper-style-1 .swiper-container{padding-bottom: 50px;}
  .swiper-style-1 .swiper-container .swiper-pagination{width: 100%; bottom: 0;}
  .swiper-style-1 .swiper-container .swiper-pagination-bullet{margin: 7px;}
  .swiper-style-1 .swiper-slide{padding: 0 15px;}
  .swiper-style-1 .swiper-slide article{padding: 40px 0;}
  .swiper-style-1 .swiper-slide .img-wrapper{margin-left: 0;}
}
/*about*/

/*our work*/
.work-wrapper .col-md-6:nth-child(odd){top: 200px;}
.work-wrapper{padding-bottom: 200px;}
.work-item{position: relative; padding: 60px;}
.work-item .bg{background-color: #ebebeb; height: 50%;}
.work-item span{position: absolute; left: 60px; top: 25px; font-size: 13px; z-index: 1; width: calc(100% - 120px); text-align: left;}
.work-item span a{color: #222;}
.work-item span i{color: #777;}
.work-item span:nth-child(2){top: auto; bottom: 40px; text-align: center;}
.work-item span:nth-child(3){left: 100%; padding-bottom: 45px; top: auto; bottom: 90px; text-align: left; -ms-transform-origin: 0% 100%; -webkit-transform-origin: 0% 100%; transform-origin: 0% 100%; -ms-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); transform: rotate(-90deg);}
.work-item .work-img-wrapper{display: block; position: relative;}
.work-item .work-img-wrapper:before{content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; border: 30px solid #fff;}
.work-item .work-img{display: block; padding-bottom: 139%; background-position: center center; background-repeat: no-repeat; background-size: cover;}

.work-item.style-2 .bg{background-color: #ebebeb; height: 50%; top: 50%;}
.work-item.style-2 span{position: absolute; left: 60px; top: auto; bottom: 25px; font-size: 13px; z-index: 1; width: calc(100% - 120px); text-align: left;}
.work-item.style-2 span:nth-child(2){top: auto; bottom: auto; top: 35px; text-align: center;}
.work-item.style-2 span:nth-child(3){left: 0; width: 100%; padding-bottom: 45px; top: 26px; bottom: auto; text-align: right; -ms-transform-origin: 100% 100%; -webkit-transform-origin: 100% 100%; transform-origin: 100% 100%; -ms-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); transform: rotate(-90deg);}
@media (min-width: 991px) {
  .work-item .work-img-wrapper:hover:before{border-width: 40px; }
}
@media (max-width: 991px) {
  .work-wrapper .col-md-6:nth-child(odd){top: 0;}
  .work-wrapper .work-item{padding: 60px 60px 30px 60px;}
  .work-wrapper .work-item.style-2{padding: 30px 60px 60px 60px;}
  .work-item span:nth-child(2){bottom: 0;}
  .work-item.style-2 span:nth-child(2){top: 5px;}
  .work-wrapper{padding-bottom: 5px;}
  .work-wrapper .col-md-6:nth-child(even){padding-bottom: 40px;}
  .work-wrapper .col-md-6:last-child{padding-bottom: 0px;}
}
@media (max-width: 479px) {
  .work-item span:nth-child(2){width: 100%; left: 0;}
}
/*our work*/

/*interesting*/
.interesting ul{list-style-type: none;}
.interesting ul li{padding-left: 25px; position: relative; line-height: 30px;}
.interesting ul li:before{content: ""; position: absolute; left: 0; top: 50%; width: 15px; height: 1px; background-color: #989898;}
.interesting img{display: block; width: 100%; max-width: 170px;}

@media (max-width: 991px) {

}
/*interesting*/

/*artists*/
.swiper-style-2{position: relative; float: left; width: 100%; height: auto;}
.swiper-style-2:before{content: ""; position: absolute; left: 0; top: 110px; height: calc(100% - 110px); width: 100%; background-color: #ebebeb;}
.swiper-style-2 .swiper-wrapper{padding: 0 0 65px 0;}
.swiper-style-2 .swiper-slide{text-align: center;}
.swiper-style-2 .swiper-slide p{font-size: 13px; line-height: 22px; font-style: italic; padding: 0 20px;}
.swiper-style-2 .swiper-slide .img-wrapper{position: relative;}
.swiper-style-2 .swiper-slide .img-wrapper:before{content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 100%; border: 30px solid #fff;}
.swiper-style-2 .swiper-slide img{display: block; width: 100%;}
.swiper-style-2 .swiper-button-prev{left: -150px; top: calc(50% + 55px);}
.swiper-style-2 .swiper-button-next{right: -150px; top: calc(50% + 55px);}

@media (min-width: 1200px) {
  .swiper-style-2 .swiper-slide .img-wrapper:hover:before{border-width: ;}
}
@media (max-width: 991px) {
  .swiper-style-2{width: calc(100% + 30px); margin-left: -15px;}
  .swiper-style-2 .swiper-container{padding-bottom: 15px;}
  .swiper-style-2 .swiper-container .swiper-pagination{width: 100%; bottom: 20px;}
  .swiper-style-2 .swiper-container .swiper-pagination-bullet{margin: 7px;}
}
/*artists*/

/*<!-- customers -->*/
.swiper-style-3 .swiper-slide{text-align: center;}
.swiper-style-3 .swiper-slide img{display: block; margin: 0 auto;}
.swiper-style-3 .swiper-slide article p{font-size: 13px; line-height: 18px;}
.swiper-style-3 .swiper-button-prev{left: -8.33%;}
.swiper-style-3 .swiper-button-next{right: -8.33%;}

.customers-icons img{width: 100%; display: block; max-width: 114px; margin: 0 auto;}

@media (max-width: 991px) {
  .swiper-style-3 .swiper-button-prev,
  .swiper-style-3 .swiper-button-next{display: none;}
  .swiper-style-3 .swiper-container{padding-bottom: 60px;}
  .swiper-style-3 .swiper-container .swiper-pagination{width: 100%; bottom: 0;}
  .swiper-style-3 .swiper-container .swiper-pagination-bullet{margin: 7px;}
}
/*<!-- customers -->*/

/*<!-- work process -->*/
.swiper-style-1.reverse .swiper-slide .img-wrapper{margin-left: 0; margin-right: 40px; margin-top: -80px;}
.swiper-style-1.reverse .swiper-wrapper{padding-top: 80px; padding-bottom: 60px;}
.swiper-style-1.reverse .swiper-pagination{display: block; bottom: 0; width: 100%;}
.swiper-style-1.reverse .swiper-pagination-bullet{margin: 0 7px;}

.swiper-style-1.reverse .swiper-button-prev, .swiper-style-1.reverse .swiper-button-next {
	margin-top:-60px;
}

@media (min-width: 1200px) {
  .swiper-style-1.reverse .swiper-slide .img-wrapper:hover:before{border-width: ;}
}
@media (max-width: 991px) {
  .swiper-style-1.reverse .swiper-wrapper{padding-bottom: 0;}
}
/*<!-- work process -->*/

/*<!-- sale -->*/
.swiper-style-4 .swiper-slide{background-color: #ebebeb; text-align: center; padding: 50px 30px;}
.swiper-style-4 .swiper-slide img{width: 100%; max-width: 308px; display: block; margin: 0 auto;}
.swiper-style-4 .swiper-slide article{padding: 0 20px;}
.swiper-style-4 .swiper-slide article a{display: inline-block;}

@media (max-width: 991px) {
  .swiper-style-4 .swiper-container{padding-bottom: 55px;}
  .swiper-style-4 .swiper-slide{padding: 50px 30px 70px 30px;}
  .swiper-style-4 .swiper-container .swiper-pagination{width: 100%; bottom: 0;}
  .swiper-style-4 .swiper-container .swiper-pagination-bullet{margin: 7px;}
}
@media (max-width: 767px) {
  .swiper-style-4{width: calc(100% + 30px); margin-left: -15px;}
}
/*<!-- sale -->*/

/*instagram*/
.instagram .article-wrapper{position: relative; height: 100%; width: 100%; background-color: #ebebeb;}
.instagram article p{font-size: 12px; color: #777777; text-transform: uppercase;}
.instagram article a{color: #222; font-weight: bold;}
.instagram img{display: block; width: 100%; float: left;}
.instagram .col-md-9 div{position: relative; float: left; width: 25%; display: block; padding: 0 0 0 30px;}
.instagram .col-md-9 div:nth-child(-n+10){padding-bottom: 30px;}

@media (min-width: 1200px) {
 .instagram img:hover{-ms-transform: scale(1.2); -webkit-transform: scale(1.2); transform: scale(1.2);}
}
@media (max-width: 991px) {
  .instagram .article-wrapper{float: left; padding: 30px; margin-bottom: 30px;}
  .instagram .col-md-9{width: calc(100% + 30px); margin-left: -15px;}
  .instagram .col-md-9 div{padding: 0 15px;}
}
@media (max-width: 767px) {
/*  .instagram .col-md-9{width: calc(100% + 15px); margin-left: 0;}
  .instagram .col-md-9 div{padding: 0 15px 0 0;}*/
  .instagram .col-md-9{margin-left: 0; width: 100%}
  .instagram .col-md-9 div{padding: 0;}
  .instagram .col-md-9 div:nth-child(-n+10){padding-bottom: 0;}
}
/*instagram*/

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 09 - SHOP */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.popup-wrapper .btn-2:before,
.shop .btn-2:before{border: 1px solid #222;}

span{-moz-user-select: none; -webkit-user-select: none;}
.shop .padding-100{position: relative; padding-right: 100px; padding-left: 100px;}
.shop .inline-wrapper{font-size: 0; vertical-align: middle; display: inline-block; width: 100%; text-align: right;}
@media (max-width: 991px) {
  .shop .inline-wrapper{text-align: left; margin-top: 30px;}
  .shop .padding-100{padding-right: 50px; padding-left: 50px;}
}
@media (max-width: 767px) {
  .shop .padding-100{padding-right: 15px; padding-left: 15px;}
  .shop .inline-wrapper{text-align: left; margin-top: 15px;}
}

/*PAGE PAGINATION*/
.shop .page-pagination{position: relative; float: left; /*width: calc(100% + 15px);*/ width: 100%; text-align: center; margin: 0; text-transform: uppercase; text-align: center; display: block; font-size: 0;}
.shop .page-pagination a{position: relative; font-size: 12px; color: #222; height: 40px; line-height: 40px; display: inline-block; width: 40px; text-align: center; background: #fff; margin:0 5px; border: 1px solid #f0f0f0;}
.shop .page-pagination a:first-child, .page-pagination a:last-child{width: 15px; vertical-align: top; border: none; font-size: 0;}
.shop .page-pagination a:first-child{margin-left: 0;}
.shop .page-pagination a:last-child{margin-right: 0;}
.shop .page-pagination a.active{color: #222; border-color: #222;}
@media (min-width: 1200px) {
  .shop .page-pagination a:hover{color: #222; border-color: #222; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
}
@media (max-width: 767px) {
  .shop .page-pagination{width: 100%;}
}


/*SHOP-FORM*/
/*search*/
.shop .input-wrapper.search{display: inline-block; position: relative; width: 270px; height: 40px;}
.shop .input-wrapper.search .input-style{position: relative; display: inline-block; height: 100%; width: 100%; margin-right: 10px;}
.shop .input-wrapper.search .input-style input{width: 100%; height: 100%;}
.shop .shop-form .input-wrapper .input-style input:nth-child(1){padding: 0 55px 0 15px;}
.shop .shop-form .input-wrapper .input-style input:nth-child(2){border: none;}
.shop .input-wrapper .input-style.focus label{top: 40px;}
.shop .input-wrapper .input-style label{top: 12px;}
.shop .input-icon{width: 40px; height: 40px; position: absolute; top: 0; right: 0; text-align: center; line-height: 40px;  vertical-align: middle; cursor: pointer;}
.shop .input-icon input{position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 2;}
.shop .input-wrapper .input-style.focus:after{z-index: 3;}
.shop .input-wrapper .input-style.focus .fa{color: #222;}

/*found*/
.shop .shop-form .found{text-transform: uppercase; display: inline-block; height: 40px; line-height: 40px; vertical-align: top;  margin-left: 30px; font-size: 13px;}
.shop .shop-form .found span{color: #222;}
@media (min-width: 992px) and (max-width: 1199px) {
  .shop .input-wrapper.search{width: 220px;}
  .shop .padding-100{padding-left: 50px; padding-right: 50px;}
}
@media (max-width: 767px) {
  .shop .input-wrapper.search{width: 100%;}
  .shop .shop-form .input-wrapper.search .input-style{margin-right: 0; width: 100%;}
  .shop .shop-form .found{margin-left: 0px; margin-top: 10px; display: block;width: 100%;}
}

/*txt*/
.shop .input-txt-left{font-size: 13px; color: #222; display: inline-block; line-height: 40px; vertical-align: top; margin-left: 20px; margin-right: 10px; position: relative;}
@media (max-width: 991px) {
  .shop .input-txt-left{margin-left: 0px;}
}
@media (max-width: 767px) {
  .shop .input-txt-left{float: left; width: 100%; margin-left: 0px; margin-right: 0px;}
}

/*buttons*/
.shop .view-btn{display: inline-block; position: relative; width: 40px; height: 40px; cursor: pointer; margin: 0 5px; background-position: left top; background-repeat: no-repeat;}
.shop .view-btn.view-btn-1{background-image: url(../image/btn-1-spr.png); margin-left: 20px}
.shop .view-btn.view-btn-1.active{background-position: right top;}
.shop .view-btn.view-btn-2{background-image: url(../image/btn-2-spr.png); margin-right: 0;}
.shop .view-btn.view-btn-2.active{background-position: right top;}

@media (max-width: 991px) {
  .shop .view-btn.view-btn-1{margin-left: 0px; margin-top: 20px;}
}
@media (max-width: 991px) {
  .shop .view-btn{visibility: hidden;}
}


/*SHOP-FORM-2*/
.shop .shop-form-2 .input-wrapper.search{width: 100%;}
.shop .shop-form-2 .input-wrapper.search .input-style{margin-right: 0; }

.shop .shop-form-2 .checkbox-entry{display: block; width: 100%; cursor: pointer; margin: 0; padding: 0; min-width: 20px; min-height: 20px; margin-top: 15px;}
.shop .shop-form-2 .checkbox-entry input{display: none;}
.shop .shop-form-2 .checkbox-entry span{position: relative; font-size: 13px; line-height: 20px; padding-left: 30px; display: block; color: #989898;}
.shop .shop-form-2 .checkbox-entry:hover span, .checkbox-entry span a:hover{color: #222; text-decoration: none; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
.shop .shop-form-2 .checkbox-entry span:before{content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border: 1px #eee solid;}
.shop .shop-form-2 .checkbox-entry span:after{content: ""; position: absolute; left: 5px; top: 2px; width: 18px; height: 14px;}
.shop .shop-form-2 .checkbox-entry input:checked+span:after{background: url(../image/check.png) center center no-repeat;}
.shop .shop-form-2 .checkbox-entry input:checked+span{color: #222;}

/*slider-range*/
.shop .shop-form-2 .ui-slider-horizontal{height: 5px; background: #f0f0f0; border-radius: 0; border: none;}
.shop .shop-form-2 .ui-slider .ui-slider-handle{width: 5px; height: 16px; background: #222; top: -6px; margin-left: 0; border-radius: 0; border: none;}
.shop .shop-form-2 .ui-widget.ui-widget-content{border: none;}
.shop .shop-form-2 .ui-widget-header{background: #222; border-radius: 0; border: none;}
.shop .shop-form-2 #amount{border: none;}
.shop .shop-form-2 p{font-size: 14px; text-transform: uppercase;}
.shop .shop-form-2 p label{color: #222;}

/*products*/
.shop .prod-item-wrapper{position: relative; float: left; /*width: calc(100% + 15px);*/ width: 100%;}
.shop .shop-prod-item{position: relative; float: left; display: block; width: 33.33%; padding: 0 15px; margin-bottom: 45px; text-align: center;}
.shop .shop-prod-item > a{position: relative; display: block;}
.shop .shop-prod-item article{font-size: 13px; display: block; width: 100%; margin: 0 auto; float: none; margin-top: 25px; text-align: center;}
.shop .shop-prod-item article p{max-width: 200px; display: inline-block;}
.shop .shop-prod-item article a{display: block; text-transform: uppercase;}
.shop .shop-prod-item img{display: block; width: 100%;}
.shop .shop-prod-item .price{position: relative; display: inline-block; color: #222; margin-top: 15px;}
/*products-hover*/
.shop-prod-item .shop-prod-item-hover{position: absolute; display: block; width: 100%; height: 100%; left: 0; top: 0; visibility: hidden; z-index: -1; opacity: 0; transition-delay: 300ms; -moz-transition-delay: 300ms; -webkit-transition-delay: 300ms; -ms-transition-delay: 300ms;}
.shop-prod-item-hover i{position: absolute; top: 20px; right: -20px; color: #222; font-weight: 900; opacity: 0;}
.shop-prod-item-hover{position: absolute; display: block; width: 100%; height: 100%; left: 0; top: 0;}
.shop .shop-prod-item .shop-prod-item-hover .btn-2{position: absolute !important; left: 0; bottom: -40px; width: 50%; opacity: 0;}
.shop .shop-prod-item .shop-prod-item-hover .btn-2:nth-child(2){left: 50%; background-color: #111;}
.shop-prod-item:hover .shop-prod-item-hover{visibility: visible; z-index: 5; opacity: 1; transition-delay: 0ms; -moz-transition-delay: 0ms; -webkit-transition-delay: 0ms; -ms-transition-delay: 0ms;}
.shop-prod-item:hover .shop-prod-item-hover .btn-2{bottom: 0px; opacity: 1;}
.shop-prod-item:hover .shop-prod-item-hover i{right: 20px; opacity: 1;}

/*products view-2*/
@media (min-width: 992px) {
  .shop .prod-item-wrapper.view-2{width: 100%;}
  .shop .prod-item-wrapper.view-2 .shop-prod-item{width: 100%; margin-bottom: 30px; text-align: left;}
  .shop .prod-item-wrapper.view-2 .shop-prod-item:last-child{margin-bottom: 50px;}
  .shop .prod-item-wrapper.view-2 img{width: 170px; height: 170px; float: left;}
  .shop .prod-item-wrapper.view-2 .description{position: relative; float: left; line-height: 170px; height: 170px;}
  .shop .prod-item-wrapper.view-2 article{margin-left: 35px; max-width: 300px; display: inline-block; vertical-align: middle; margin-top: 0; line-height: 0; text-align: left;}
  .shop .prod-item-wrapper.view-2 article p{line-height: 24px;}
  .shop .prod-item-wrapper.view-2 article a{z-index: 7; position: relative; margin-left: -5px;}
  .shop .prod-item-wrapper.view-2 .price{position: relative; float: right; margin-top: 0; height: 170px; line-height: 170px;}
  .shop .prod-item-wrapper.view-2 .price span{display: inline-block; vertical-align: middle;}
  /*products-hover view-2*/
  .shop .prod-item-wrapper.view-2 .shop-prod-item-hover{overflow: hidden;}
  .shop .prod-item-wrapper.view-2 .shop-prod-item-hover .btn-2{position: absolute; bottom: auto; top: 0; width: auto; min-width: 135px; left: auto; right: 125px; text-align: center; opacity: 0;}
  .shop .prod-item-wrapper.view-2 .shop-prod-item-hover .btn-2:nth-child(2){top: 100%; margin-top: -40px;}
  .shop .prod-item-wrapper.view-2 .shop-prod-item-hover i{right: auto; left: 220px; top: -20px; opacity: 0;}
  .shop .prod-item-wrapper.view-2 .shop-prod-item > a{position: static; display: inline-block; float: left; width: 170px;}
  .shop .prod-item-wrapper.view-2 .shop-prod-item:hover .shop-prod-item-hover i{top: 5px; opacity: 1;}
  .shop .prod-item-wrapper.view-2 .shop-prod-item:hover .shop-prod-item-hover .btn-2{top: 50%; margin-top: -45px; opacity: 1;}
  .shop .prod-item-wrapper.view-2 .shop-prod-item:hover .shop-prod-item-hover .btn-2:nth-child(2){margin-top: 5px;}
  .shop .prod-item-wrapper.view-2 .img-hover-1 img{position: relative; z-index: 6;}
}
@media (min-width: 1200px) {
  .shop .prod-item-wrapper.view-2 .img-hover-1:hover img{-ms-transform: scale(1); -webkit-transform: scale(1); transform: scale(1);}
  .shop .prod-item-wrapper.view-2 .img-hover-1 img:hover{-ms-transform: scale(1.1); -webkit-transform: scale(1.1); transform: scale(1.1);}
}
@media (max-width: 1199px) {
  .shop .prod-item-wrapper.view-2 article{max-width: 200px;}
}
@media (max-width: 991px) {
  .shop .shop-prod-item{width: 50%;}
}
@media (max-width: 767px) {
  .shop .pull-right{float: left !important;}
  .shop .shop-prod-item{width: 100%;}
  .shop .prod-item-wrapper{width: 100%;}
  .shop .shop-form-2{float: left;}
}


.shop .shop-form-2 .btn-wrap,
.shop .shop-form-2 .btn-2{width: 100%; text-align: center; font-size: 13px;}





/*-------------------------------------------------------------------------------------------------------------------------------*/
/*  - appworks*/
.appworks {
	 background: #f0f0f0;
	 min-height:700px;
	 background-size:cover;
	 padding:50px 0 200px;
	 margin-top:50px;
	 vertical-align: top;
}
@media (max-width: 991px) {
.appworks {
	 min-height:300px;
}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/

 
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 10 - SHOP #2*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
.shop.shop-2 .prod-item-wrapper{position: relative; float: left;  /*margin-left: -15px; width: calc(100% + 45px)*/;}
.shop.shop-2 .shop-form .found{margin-left: 0;}
.shop .shop-form-2 .input-wrapper .input-style input:nth-child(1){padding: 0 55px 0 15px;}
.shop .shop-form-2 .input-wrapper .input-style input:nth-child(2){border: none;}
@media (max-width: 991px) {
  .shop.shop-2 .prod-item-wrapper{position: relative; float: left;  margin-left: -15px; width: calc(100% + 30px);}
}
@media (max-width: 767px) {
  .shop.shop-2 .shop-prod-item{width: 100%; padding: 0;}
  .shop.shop-2 .prod-item-wrapper{width: 100%; margin-left: 0;}
}

/*category menu*/
.shop .category{display: block; width: 100%; text-align: center;}
.shop .category ul li{position: relative; display: inline-block; height: 30px; font-size: 14px; line-height: 30px; margin: 0 5px; padding: 0 15px; cursor: pointer; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
.shop .category ul li.active{color: #fff;}
.shop .category ul li span{z-index: 1; position: relative;}
.shop .category ul li:before{content:""; position: absolute; left: 0; bottom: 0; height: 0; width: 100%; background-color: #222; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
.shop .category ul li.active:before{height: 100%;}
.shop .category-toggle{position: relative; font-size: 14px; line-height: 26px; text-transform: uppercase; margin-bottom: 20px; cursor: pointer; color: #222; display: none; border-bottom: 1px solid #d0d0d0; font-weight: bold; -moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
.shop .category-toggle.active{border-color: #222;}
.shop .category-toggle i{margin-left: 10px; /*color: #93c8da;*/}
.shop .category-toggle.active i{-ms-transform: rotate(180deg); -webkit-transform: rotate(180deg); transform: rotate(180deg);}

@media (min-width: 1200px) {
    .shop .category ul li:hover{color: #fff;}
    .shop .category ul li:hover:before{height: 100%;}
}
@media (max-width: 991px){
  .shop .category{display: none;}
  .shop .category-toggle{display: block; width: 300px; margin: 0 auto; padding: 5px 0; text-align: center;}
  .shop .category ul li{width: 100%; margin: 5px 0; padding: 5px 0;}
  .shop .category ul li.active:before{display: none;}
  .shop .category ul li.active{color: #222;}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 11 - DETAIL PAGE*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
.shop .detail-item img{display: block; width: 100%;}
.shop .detail-item .img-preview{display: block; width: calc(100% + 10px); float: left;}
.shop .detail-item .img-preview img{float: left; width: 20%; margin-top: 10px; padding-right: 10px; cursor: pointer; backface-visibility: hidden;}

.shop .detail-item .description{font-size: 13px;}
.shop .detail-item .description ul{margin-top: 15px; margin-bottom: 10px;}
.shop .detail-item .description ul li{text-transform: uppercase; color: #222; height: 50px; line-height: 50px;}
.shop .detail-item .description ul li span{display: inline-block; vertical-align: middle;}
.shop .detail-item .description ul li > span:first-child{color: #222; margin-right: 10px;}
.shop .detail-item .description .price{font-size: 28px; line-height: 13px;}
.shop .detail-item .description .price sup{top: -10px;}
.shop .star i{margin: 0 3px; font-size: 15px; color: #222;}
.shop .detail-item .description .star i:first-child{margin-left: 25px;}
.shop .detail-item .description .info{font-size: 16px; font-weight: 900; color: #222;}
.shop .detail-item .description .color{font-size: 0;}
.shop .detail-item .description .color span{display: inline-block; height: 20px; width: 20px; cursor: pointer; margin: 0 5px;}
.shop .detail-item .description .color span.active{outline-offset: 2px; outline: 1px solid;}

.shop .detail-item .quantity-wrapper{position: relative; float: left; display: block; width: 100%; font-size: 13px; text-transform: uppercase; color: #222; margin-top: 21px; margin-bottom: 32px;}
.shop .detail-item .quantity-wrapper .quantity{margin-left: 25px;}

.shop .detail-item .btn-2{margin-right: 7px;}

.shop .detail-item .follow-wrapper{position: relative; float: left; display: block; width: 100%; font-size: 13px; text-transform: uppercase; color: #222; margin-top: 22px;}
.shop .detail-item .follow-wrapper .follow{display: inline-block; margin-left: 15px;}
/*.shop .detail-item .follow .item{background-color: #fff; border-color: #e3e3e3; color: #222;}
.shop .detail-item .follow .item:before{background-color: #222;}*/

.shop .testimonial{display: block; position: relative; float: left; width: 100%; padding-left: 110px; margin-bottom: 30px;}
.shop .testimonial img{position: absolute; left: 0; top: 0; display: block; width: 86px; height: 86px;}
.shop .testimonial .article span{line-height: 24px; height: 24px; margin-right: 25px; text-transform: uppercase;}
.shop .testimonial .article .star i{color: #222; margin: 0 3px; font-size: 13px;}
.shop .testimonial .article p{margin-top: 10px;}

.testimonial-form-wrapper{display: block; position: relative; float: left; width: 100%; height: 100%;}
.testimonial-form-wrapper .input-wrapper{margin: 0; height: 100%; width: 100%;}
.testimonial-form-wrapper .input-wrapper .input-style{position: relative; display: block; float: left; width: calc(50% - 5px); height: 40px; margin-right: 0; margin-bottom: 10px;}
.testimonial-form-wrapper .input-wrapper .input-style:first-child{margin-right: 10px;}
.testimonial-form-wrapper .input-wrapper .input-style:nth-child(3){margin-right: 10px;}
.testimonial-form-wrapper .input-wrapper .input-style input{width: 100%; height: 100%; padding: 0 15px;}
.testimonial-form-wrapper .input-wrapper .input-style.textarea{width: 100%; margin-right: 0; height: 100%;}
.testimonial-form-wrapper .input-wrapper .input-style.textarea textarea{width: 100%; height: 120px; padding: 10px 15px; color: #222; border: 1px solid #e3e3e3; resize: none;}

.shop .shop-form .input-wrapper .input-style.focus label{top: 40px;}
.shop .shop-form .input-wrapper .input-style label{top: 12px;}

.shop .y-rating span{font-size: 14px; line-height: 40px; color: #7a7a7a;}
.shop .y-rating .star{font-size: 15px; margin-left: 10px;}

@media (min-width: 1200px) {
  .shop .detail-item .follow .item:hover,
  .shop .follow .item:hover{color: #fff;}
  .shop .detail-item .img-preview img:hover{opacity: 0.5;}
}
@media (max-width: 1199px) {
  .shop .detail-item .btn-wrap{width: 100%;}
  .shop .detail-item .btn-2{margin-right: 0; margin-bottom: 5px;}
}
@media (max-width: 991px) {
  .shop .detail-item .img-preview{margin-bottom: 40px;}
}
@media (max-width: 479px) {
  .shop .testimonial{padding-left: 0; margin-bottom: 20px;}
  .shop .testimonial img{position: relative; float: left; margin-bottom: 15px;}
  .shop .testimonial .article span:first-child{display: block; width: 100%;}
  .testimonial-form-wrapper .input-wrapper .input-style{width: 100%;}
  .testimonial-form-wrapper .input-wrapper .input-style{margin-bottom: 10px;}
  .testimonial-form-wrapper .input-wrapper .input-style.textarea{margin-bottom: 0px;}
  .shop .col-sm-6.text-right{text-align: left;}
  .shop .y-rating{margin-bottom: 10px;}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 12 - CHECKOUT*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
.text-center.btn-inline .btn-1{margin-right: 7px;}
/*btn price*/
.shop .btn-2 .price{color: #fff; font-size: 16px;}
.shop .btn-2 .price sup{font-size: 10px;}
.shop .btn-2:hover .price{color: #222;}

/*  ==============
  CSS ANIMATIONS
  ==============  */
  .class{-moz-transition:none; -o-transition:none; -webkit-transition:none; transition:none; -ms-transition:none;}
  .services .icon, .btn-sing-up, .btn-sing-up:before, .shop .shop-form .input-wrapper .input-style.focus .fa, footer .copyright a, footer ul li a, .follow .item, .follow .item:before, .btn-1 span, .btn-2:before, .btn-1:before, .btn-1 span, .overlay-menu ul > li > span:after, .overlay-menu ul > li > a:before, .btn-close, .hamburger-icon span{-moz-transition:all 150ms ease-out; -o-transition:all 150ms ease-out; -webkit-transition:all 150ms ease-out; transition:all 150ms ease-out; -ms-transition:all 150ms ease-out;}
  .swiper-style-1.reverse .swiper-slide .img-wrapper:before, .swiper-style-2 .swiper-slide .img-wrapper:before, .work-item .work-img-wrapper:before, .swiper-button.square-style:before, .swiper-button.square-style:after, .popup-container.right, .shop-prod-item .shop-prod-item-hover i, .shop-prod-item:hover .shop-prod-item-hover i, .shop-prod-item:hover .shop-prod-item-hover .btn-2, .shop-prod-item .shop-prod-item-hover .btn-2, .shop .popup-container.right, .shop .detail-item .img-preview img, .instagram img, .instagram img:hover, .overlay-menu ul > li > ul{-moz-transition:all 300ms ease-out; -o-transition:all 300ms ease-out; -webkit-transition:all 300ms ease-out; transition:all 300ms ease-out; -ms-transition:all 300ms ease-out;}
  .overlay-menu ul > li > ul li, .overlay-menu ul > li.active.clicked ul li, .animation-wrapper, .overlay-menu, .overlay-animation:before, .overlay-animation:after{-moz-transition:all 500ms ease-out; -o-transition:all 500ms ease-out; -webkit-transition:all 500ms ease-out; transition:all 500ms ease-out; -ms-transition:all 500ms ease-out;}
  .class{-moz-transition:all 700ms ease-out; -o-transition:all 700ms ease-out; -webkit-transition:all 700ms ease-out; transition:all 700ms ease-out; -ms-transition:all 700ms ease-out;}
  .class{-moz-transition:all 1000ms ease-out; -o-transition:all 1000ms ease-out; -webkit-transition:all 1000ms ease-out; transition:all 1000ms ease-out; -ms-transition:all 1000ms ease-out;}
  .class{-moz-transition:all 2000ms ease-out; -o-transition:all 2000ms ease-out; -webkit-transition:all 2000ms ease-out; transition:all 2000ms ease-out; -ms-transition:all 2000ms ease-out;}
  
  /*transition delay*/
  .overlay-wrapper.active, .overlay-wrapper.active .overlay-animation:before, .overlay-wrapper.active .overlay-animation:after, .overlay-menu{transition-delay: 0ms; -moz-transition-delay: 0ms; -webkit-transition-delay: 0ms; -ms-transition-delay: 0ms;}
  .class{transition-delay: 150ms; -moz-transition-delay: 150ms; -webkit-transition-delay: 150ms; -ms-transition-delay: 150ms;}
  .class{transition-delay: 250ms; -moz-transition-delay: 250ms; -webkit-transition-delay: 250ms; -ms-transition-delay: 250ms;}
  .class{transition-delay: 350ms; -moz-transition-delay: 350ms; -webkit-transition-delay: 350ms; -ms-transition-delay: 350ms;}
  .class{transition-delay: 450ms; -moz-transition-delay: 450ms; -webkit-transition-delay: 450ms; -ms-transition-delay: 450ms;}
  .overlay-animation:before, .overlay-animation:after, .overlay-wrapper.active .overlay-menu{transition-delay: 500ms; -moz-transition-delay: 500ms; -webkit-transition-delay: 500ms; -ms-transition-delay: 500ms;}
  .class{transition-delay: 700ms; -moz-transition-delay: 700ms; -webkit-transition-delay: 700ms; -ms-transition-delay: 700ms;}
  .class{transition-delay: 750ms; -moz-transition-delay: 750ms; -webkit-transition-delay: 750ms; -ms-transition-delay: 750ms;}
  .overlay-wrapper{transition-delay: 1000ms; -moz-transition-delay: 1000ms; -webkit-transition-delay: 1000ms; -ms-transition-delay: 1000ms;}


.bg-item {overflow: hidden; background-position: 50% 50%; background-repeat: no-repeat; background-attachment: scroll; -webkit-background-size: cover; -moz-background-size: cover; -ms-background-size: cover; background-size: cover; backface-visibility: hidden; position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;}
.bg-item.fix { background-attachment: fixed; }
.vertical-align {position: absolute; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%);-ms-transform: translateY(-50%); z-index: 1;}
.vertical-align.full {left: 0px; width: 100%; text-align: center;}
.vertical-wrap { font-size: 0px; }
.vertical-wrap > div[class*="col"] { display: inline-block; vertical-align: middle; position: relative; float: none; }
.section {position: relative; background: #fff;}
.row.clear-padding {margin: 0px;}
.row.clear-padding > div[class*="col"] {padding: 0px;}

.baner-bg {position: relative; width: 100%; height: 80vh; min-height: 600px;}
.baner-bg-short { min-height: 400px; height:inherit;}
.baner-bg-short .vertical-align {margin-top:65px !important;}
.baner-bg.sm {height: 500px;}
.baner-bg .bg-item:before, .detail-bg-item .bg-item:before {content: ''; position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; background: rgba(0,0,0,.45);}
.blog-item .bg-item:before {content: ''; position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; background: rgba(0,0,0,.2);}
.baner-bg .vertical-align {margin-top: 45px; backface-visibility: hidden;}
.baner-bg .title {font-size: 40px; line-height: 46px;}
.white-color .title, .white-color .simple-text p, .white-color .title a {color: #fff;}
.white-color .title span {background: #fff;}
.white-color i {color: rgba(255,255,255,0.7);}
.center-wrap {text-align: center;}
.center-wrap .btn-2 {float: none; display: inline-block;}

.scroll-down {position: absolute; left: 50%; width: 40px; text-align: center; margin-left: -20px; bottom: 40px; z-index: 40; cursor: pointer; height: 60px;}
.scroll-down span {position: absolute; width: 1px; height: 30px; background: #fff; left: 20px; top: 15px; display: block;}
.scroll-down span:before {content: ''; position: absolute; bottom: 3px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg);-ms-transform: rotate(-45deg); width: 15px; height: 1px; background: #fff; left: -2px; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.scroll-down span:after {content: ''; position: absolute; bottom: 3px; transform: rotate(45deg); -webkit-transform: rotate(45deg);-ms-transform: rotate(45deg); width: 15px; height: 1px; background: #fff; left: -12px; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.left-span, .right-span {display: block; position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;}
.left-span:before {content: ''; position: absolute; left: 0px; top: 0px; width: 0%; height: 1px; background: #fff; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.left-span:after {content: ''; position: absolute; right: 0px; top: 0px; width: 1px; height: 0%; background: #fff; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.right-span:before {content: ''; position: absolute; right: 0px; bottom: 0px; width: 0%; height: 1px; background: #fff; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.right-span:after {content: ''; position: absolute; left: 0px; bottom: 0px; width: 1px; height: 0%; background: #fff; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}

.scroll-down:hover .left-span:before {width: 100%;}
.scroll-down:hover .left-span:after {height: 100%;}
.scroll-down:hover .right-span:before {width: 100%;}
.scroll-down:hover .right-span:after {height: 100%;}

.service-item {position: relative; width: 100%; border: 1px solid #e3e3e3; padding: 50px 40px;}
.simple-text p {font-size: 15px; line-height: 27px;}
.simple-text.sm p {font-size: 13px; line-height: 22px;} 
.interesting ul li {font-size: 15px;}
.service-block {position: relative; overflow: hidden; width: 100%; height: 360px; margin-bottom: 30px;}
.service-block .bg-item {transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.service-block:hover .bg-item {transform: scale(1.1); -webkit-transform: scale(1.1);-ms-transform: scale(1.1);}
.service-block .bg-item:before {position: absolute; content: ''; left: 0px; top: 0px; width: 100%; height: 100%; background: rgba(0,0,0,0.4);} 
.service-block .desc {position: absolute; left: 30px; bottom: 30px; z-index: 5;}
.service-block .simple-text {max-height: 0px; overflow: hidden; transition: all 0.55s ease-out; -webkit-transition: all 0.55s ease-out;}
.service-block .simple-text p {color: rgba(255,255,255,0.8); }
.service-block:hover .simple-text {max-height: 200px;}
.map-item {position: absolute; height: 100%; width: 100%; left: 0px; top: 0px;}

.contact-item {text-align: center; position: relative; margin-bottom: 30px;}
.contact-item .h5 {line-height:20px;}
.contact-item a {display: block; color: #989898;transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.contact-item a:hover {color: #111;}
.contact-item .wechat {width:100%;}
.contact-item .wechat img {width:100%;}
.contact-item .wechat span {font-size:11px;}

.input-style.full-w {width: 100%!important; margin: 0 0 10px 0px;}
.btn-2 input {position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; opacity: 0; z-index: 50; cursor: pointer;}
.col-30 {position: relative; width: 33.333%; float: left;}
.col-60 {position: relative; width: 66.666%; float: left;}
.project-item {position: relative; margin: 0 15px 30px;}
.project-item img {width: 100%; height: auto; display: block;}
.grid-sizer {width:0px;}
.detail-image img {width: 100%; height: auto; display: block; margin-bottom: 30px;}
.detail-bg-item {position: relative; text-align: center; overflow: hidden; height: 350px; width: 100%; display: table;}
.detail-bg-item .bg-item, .blog-item .hover-img {transition: all 3s ease-out; -webkit-transition: all 3s ease-out;}
.detail-bg-item:hover .bg-item, .blog-item .image:hover .hover-img {transform: scale(1.1); -webkit-transform: scale(1.1);-ms-transform: scale(1.1);}

.post-recent .hover-img {transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.post-recent .img:hover .hover-img {transform: scale(1.1); -webkit-transform: scale(1.1);-ms-transform: scale(1.1);}
.post-recent .img {overflow: hidden;}

.detail-bg-item .title {line-height: 30px;}
.hover-text {position: relative; padding: 0 5px; display: inline-block;}
.hover-text:before {content: ''; position: absolute; right: 50%; top: 50%; width: 0%; height: 1px; background: #fff; transition: all 0.25s ease-out; -webkit-transition: all 0.25s ease-out;}
.hover-text:after {content: ''; position: absolute; left: 50%; top: 50%; width: 0%; height: 1px; background: #fff; transition: all 0.25s ease-out; -webkit-transition: all 0.25s ease-out;}
.hover-text.type-2:before, .hover-text.type-2:after {background: #222;}
.hover-text:hover:before, .hover-text:hover:after {width: 50%;}
.detail-bg-item .cell-view {position: relative;}
.hover-type-img, .hover-type-img span {position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;}
.hover-type-img:before {content: ''; position: absolute; left: 0px; top: 0px; width: 0; height: 20px; background: #fff; transition: all 0.25s ease-out 0.25s; -webkit-transition: all 0.25s ease-out 0.25s;}
.hover-type-img:after {content: ''; position: absolute; right: 0px; top: 0px; width: 20px; height: 0; background: #fff; transition: all 0.25s ease-out; -webkit-transition: all 0.25s ease-out;}
.blog-item:hover .hover-type-img:before {width: 100%; transition: all 0.25s ease-out; -webkit-transition: all 0.25s ease-out;}
.blog-item:hover .hover-type-img:after {height: 100%; transition: all 0.25s ease-out 0.25s; -webkit-transition: all 0.25s ease-out 0.25s;}

.hover-type-img span:before {content: ''; position: absolute; left: 0px; top: 0px; width: 20px; height: 0; background: #fff; transition: all 0.35s ease-out 0.35s; -webkit-transition: all 0.35s ease-out 0.35s;}
.hover-type-img span:after {content: ''; position: absolute; left: 0px; bottom: 0px; width: 0; height: 20px; background: #fff; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.blog-item:hover .hover-type-img  span:before {height: 100%; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.blog-item:hover .hover-type-img  span:after {width: 100%; transition: all 0.35s ease-out 0.35s; -webkit-transition: all 0.35s ease-out 0.35s;}

.blog-item {position: relative;}
.blog-item .swiper-container {height: 100%;}
.blog-item .image {position: relative; overflow: hidden; width: 100%; height: 380px;}
.blog-item.sm .image {height: 300px;}
.blog-item .text i, .post-recent .txt i, .twitter-slide a {font-size: 13px;line-height: 24px;color: #777; display: block;}
.blog-item .title {line-height: 30px;}
.blog-item .title a {color: #222; line-height: 18px; background-position: center -3px;}
.blog-item .title a:hover {color: #222;}
.blog-item.sm .bg-item:before {display: none;}
.blog-item.sm .simple-text.sm p {line-height: 24px;}
.blog-link {position: absolute; left: 30px; top: 30px; z-index: 5;}
.blog-link a {position: relative; float: left; margin: 0 10px 0px 0px; color: rgba(255,255,255,0.8); font-size: 14px; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.blog-link a:hover {color: #fff;}
.blog-link a span {padding-right: 5px;}
.blog-cat {position: absolute; right: 30px; top: 30px; z-index: 6;}
.blog-cat a {position: relative; display: inline-block; padding: 0px 20px; text-align: center; font-size: 14px; color: #777; background: #fff; height: 30px; line-height: 30px;}
.blog-item .image iframe {position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;}
.pagination-type-1 {position: absolute; left: 0px; bottom: 20px; width: 100%; z-index: 6;}
.pagination-type-1 .swiper-pagination-bullet {margin: 0 3px;}
.sidebar-blok ul li a {color: #777;}
.sidebar-blok ul li:hover a, .twitter-slide a:hover {color: #222;}
.sidebar-blok .title {line-height: 30px;}
.sidebar-blok .swiper-container {padding-bottom: 60px;}
.tag-link {position: relative; height: 30px; margin: 0 5px 5px 0px; display: inline-block; line-height: 28px; font-size: 14px; border: 1px solid #e3e3e3; color: #999; padding: 0 20px; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.tag-link:hover {color: #222; border-color: #222;}
.testimonial.type-2 .author .h6 {font-size: 14px;}
.shop .testimonial.type-2 .article p {font-size: 13px; line-height: 24px;}
.testimonial.type-2 .comm-date {font-size: 13px;}

.post-recent {position: relative; display: inline-block; width: 100%;}
.post-recent .img {position: relative; float: left; max-width: 140px;z-index: 5;}
.post-recent .img a {display: block;}
.post-recent .img img {width: 100%; height: auto; display: block;}
.post-recent .txt {position: relative; padding-left: 150px; padding-top: 10px;}
.post-recent .txt span {font-size: 14px; display: block; color: #777;}
.post-recent .txt a {display: inline-block; font-size: 14px; line-height: 22px; background-position: center -3px; padding: 0px;}
.instagram-item {margin-left: -5px; margin-right: -5px;}
.instagram-item a {position: relative; float: left; width: 33.333%; padding: 0 5px 10px; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.instagram-item a:hover {opacity: 0.5;}
.instagram-item a img {width: 100%; height: auto; display: block;}
.twitter-slide .icon {float: right; font-size: 18px;}
.twitter-slide .date {font-size: 13px; line-height: 20px; color: #999; float: left;}
.twitter-slide .simple-text p {color: #222;}

.video-item {position: relative; height: 250px; width: 100%; overflow: hidden; text-align: center;}
.play-button {position: absolute; left: 50%; top: 50%; width: 50px; height: 50px; line-height: 46px; border: 2px solid #fff; text-align: center; cursor: pointer; font-size: 20px; color: #fff; border-radius: 50%; margin: -25px 0px 0px -25px; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.play-button:hover {color: #222; background: #fff;}
.post-article img {max-width: 100%; height: auto; display: block; margin-bottom: 30px;}
.post-article p {font-size: 15px; line-height: 26px; margin-bottom: 25px;}
.post-article iframe {position: relative; width: 100%; margin-bottom: 30px; min-height: 380px;}
.fl-item {float: left; position: relative;}
.fr-item {float: right; position: relative;}
.txt-replace {position: relative;font-size: 14px;line-height: 26px;text-transform: uppercase;margin-bottom: 20px;cursor: pointer;color: #222;display: none;border-bottom: 1px solid #d0d0d0;font-weight: bold;-moz-transition: all 150ms ease-out;-o-transition: all 150ms ease-out;-webkit-transition: all 150ms ease-out;transition: all 150ms ease-out;-ms-transition: all 150ms ease-out;width: 300px;margin: 0 auto;padding: 5px 0;text-align: center;}
.txt-replace i {padding-left: 10px; display: inline-block;}
.tabs-link-wrap {position: relative;}
.tabs-link-wrap .tab-menu {font-size: 15px; font-weight: 400;}

.post-title-desc .auth {color: rgba(255,255,255,0.8); display: inline-block; position: relative;}
.post-title-link {display: inline-block; position: relative; font-size: 15px;}
.post-title-link a {color: rgba(255,255,255,0.8); display: inline-block; padding-left: 8px;}
.post-title-link a i {padding-left: 5px;}

.item.w-25 {width: 25%;}
.item.grid-item-full {padding: 0 15px 30px;}
.grid-item-full .desc-text {position: absolute; left: 0px; width: 100%; top: 0px; padding: 30px; background: #222; transform: translateX(-100%); -webkit-transform: translateX(-100%);-ms-transform: translateX(-100%); transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.grid-item-full:hover .desc-text {transform: translateX(0); -webkit-transform: translateX(0);}
.grid-item-full .desc-text a {color: #fff;}
.grid-item-full .desc-text p {color: rgba(255,255,255,0.7); font-size: 13px; font-style: italic;}
.grid-item-full img {width: 100%; height: auto; display: block; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;-ms-transition: all 0.35s ease-out;}
.desc-text-wrap {position: relative; width: 100%; overflow: hidden;}
.grid-item-full:hover img {transform: scale(1.1); -webkit-transform: scale(1.1);-ms-transform: scale(1.1);}

.sorting-menu{position: relative; display: inline-block; width: 100%; height: auto; text-align: center; z-index: 11;}
.sorting-menu ul{list-style-type: none; display: inline-block;}
.sorting-menu ul li{position: relative; display: inline-block; height: 30px; line-height: 28px; padding: 0px 8px;; margin: 0 15px; font-size: 15px; color: #989898; cursor: pointer; padding-top: 2px;}
.sorting-menu ul li.active{color: #222;}
.sorting-menu ul li:before{content:""; position: absolute; left: 0px; top: 50%; margin-top: 2px; height: 1px; width: 0%; z-index: 1; background: #222; transition: all 0.35s ease-out; -webkit-transition: all 0.35s ease-out;}
.sorting-menu ul li.active:before{width: 100%;}
.sorting-menu .button-drop{display: none; width: 100%; text-transform: uppercase;}
.sorting-menu .button-drop a{display: inline-block; color: #a1a1a1; width: 300px; height: 50px; line-height: 50px; border-bottom: 1px solid #989898; font-weight: bold;}
.izotope-container {position: relative; overflow: hidden;}
.sorting-menu .button-drop a i{display: inline-block; padding-left: 10px; margin-right: -20px;}
.sorting-menu .button-drop a i.fa-angle-up{display: none;}
.sorting-menu .button-drop.active a i.fa-angle-down{display: none;}
.sorting-menu .button-drop.active a i.fa-angle-up{display: inline-block;}
@media (min-width: 1200px) {
  .sorting-menu ul li:hover{color: #222;}
  .sorting-menu ul li:hover:before{width: 100%;}
}
@media (max-width: 767px) {
  .sorting-menu .button-drop{display: block;}
  .sorting-menu ul{display: none;}
  .sorting-menu ul.active{display: inline-block;}
  .sorting-menu ul li{display: block; width: 100%; margin: 5px 0;}
  .sorting-menu ul li:first-child{margin-top: 10px;}
  .sorting-menu ul li.active:before{display: none;}
}

@media (max-width: 1500px) {
    .basket {margin: 0 10px 0 20px;} 
    header ul.header-menu > li {margin: 0px; }
    header ul.header-menu > li > a {padding: 0 15px;}
    .login {padding: 0 5px;}
    .login-wrapper{margin: 0px 0px 0px 5px;}
}

@media (max-width: 1200px) {
    .baner-bg {height: auto;}
    .service-block .simple-text {max-height: 100%;}
}
@media (max-width: 1170px) {
    header ul.header-menu > li > a {padding: 0 8px;}
}
@media (max-width: 992px) {
    .txt-replace {display: block;}
    .tabs-mobile-style {position: absolute; width: 300px; left: 50%; top: 100%; background: #fff; margin-left: -150px; z-index: 5; padding-top: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); display: none;}
    .tabs-mobile-style .tab-menu {width: 100%; margin: 0 0 15px; font-size: 14px; text-transform: capitalize;}
    .tabs-link-wrap {margin-bottom: 60px;}
    .item.w-25 {width: 50%;}
    .grid-item-full .desc-text {transform: translateX(0); -webkit-transform: translateX(0);ms-transform: translateX(0); position: relative;}
    .baner-bg .vertical-align {margin-top: 35px;}
}
@media (max-width: 768px) {
    .post-blok.fl-item {margin-bottom: 30px;}
    .post-blok.fl-item, .post-blok.fr-item {float: none; clear: both; text-align: center;}
    .blog-item .image {height: 300px;}
    .service-block .desc {left: 15px; bottom: 15px;}
    .service-item {padding: 40px 20px;}
    .tabs-block .vertical-wrap.nopadding {margin-left: -15px; margin-right: -15px;}
    .item.col-30, .item.col-60 {width: 100%;}
    .project-item {margin: 0 0 30px;}
    .detail-bg-item {min-height: 250px; height: auto;}
    .item.w-25 {width: 100%; padding: 0 0 30px;}
}
