.hb_title{
    /*	font-family: Tahoma, Helvetica, Arial, "Microsoft Yahei","微软雅黑", STXihei, "华文细黑", sans-serif;*/
}
.overflow-x{
    position:relative;
    overflow-x:hidden;
    overflow-y:srcoll;
    max-width:2000px;
    margin-left: auto;
    margin-right: auto;
}

.menu-button{
    outline:none;
}

/*text hightlight color*/
::selection {
    background: #fd8204; /* WebKit/Blink Browsers */
}
::-moz-selection {
    background: #fd8204; /* Gecko Browsers */
}
/* Also Change breakpoint from 991px to 1280px at joyful_sky-webflow.css*/
/*custom break point*/
@media screen and (max-width: 1280px){
    .w-nav[data-collapse="medium"] .w-nav-menu {
        display: none;
    }
    .w-nav[data-collapse="medium"] .w-nav-button {
        display: block;
    }
}
@media screen and (min-width: 1280px) {
    /* The sticky class is added to the navbar with JS when it reaches its scroll position */
    .sticky {
        position:fixed;
        left:0;
        display:block;
        background-color:rgba(255,255,255,.9);
        -webkit-box-shadow: 0px 10px 14px -5px rgba(0,0,0,0.12);
        -moz-box-shadow: 0px 10px 14px -5px rgba(0,0,0,0.12);
        box-shadow: 0px 10px 14px -5px rgba(0,0,0,0.12);
        -webkit-animation: sticky_reveal .5s 1 forwards;
        -moz-animation:    sticky_reveal .5s 1 forwards;
        -o-animation:      sticky_reveal .5s 1 forwards;
        animation:         sticky_reveal .5s 1 forwards;
    }
    .sticky .w-nav-link{
        padding: 20px 20px;
        font-size: 12px;
    }
    .sticky .brand{
        padding: 16px 0px;
    }
    .sticky .brand .nav_logo{
        width: 162px;
        height: 30px;
        background-size: 162px 30px;
    }
    .sticky .nav_container{
        padding: 2px 20px;
        height:		auto;
    }
    .sticky .nav-menu{
        padding:0px;
    }
    @-webkit-keyframes sticky_reveal {
        0%   { margin-top:-100px;opacity: 0; }
        100% { margin-top:0px;opacity: 1; }
    }
    @-moz-keyframes sticky_reveal {
        0%   { margin-top:-100px;opacity: 0; }
        100% { margin-top:0px;opacity: 1; }
    }
    @-o-keyframes sticky_reveal {
        0%   { margin-top:-100px;opacity: 0; }
        100% { margin-top:0px;opacity: 1; }
    }
    @keyframes sticky_reveal {
        0%   { margin-top:-100px;opacity: 0; }
        100% { margin-top:0px;opacity: 1; }
    }
}
.slide_txt {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
    supported by Chrome, Edge, Opera and Firefox */
}
.w-select:focus, .textarea:focus, [type="text"]:focus, [type="password"]:focus,[type="email"]:focus, [type="tel"]:focus,[type="number"]:focus{
    outline: none !important;
    border:1px solid #fd8204;
    box-shadow: 0 0 10px #fcdde0;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #fd8204;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 1.95em;
    cursor: pointer;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 1.25em; height: 1.25em;
    border: 2px solid #ccc;
    background: #fff;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
    content: '\2713\0020';
    position: absolute;
    top: .15em; left: .22em;
    font-size: 1.3em;
    line-height: 0.8;
    color: #fd8204;
    transition: all .2s;
    font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
    color: #999;
}
[type="checkbox"]:disabled + label {
    color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
    /*border: 2px solid #777;*/
}
.w-slider-dot {
    background-color: #22252c;
    margin:	0px 8px!important;
}
.w-slider-dot.w-active {
    background-color: #fd8204;
}
/*change the thinkness of the scrollbar here*/
#customScrollBar::-webkit-scrollbar {
    width: 6px;
    height: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    -webkit-border-radius: 10px;
    border-radius: 20px;
}
/*add a shadow to the scrollbar here*/
#customScrollBar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0);
    -webkit-border-radius: 10px;
    background:#333;
    border-radius: 20px;
}
/*this is the little scrolly dealio in the bar*/
#customScrollBar::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #64686f;
    height: 3px;
}
/*nobody needs this little scrollbar corner*/
#customScrollBar::-webkit-scrollbar-corner       { display: none; height: 0px; width: 0px; }
/************* CUSTOM SELECT BOX***************/
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
select::-ms-expand {
    display: none;
}
/* Container must be positioned relative: */
.catalog-select, .catalog-select_m, .collection-select, .collection-select_m {
    position: relative;
    width:100%;
    font-size:14px;
}
.catalog-select select, .collection-select select {
    display: none; /*hide original SELECT element: */
}
.collection-select > .select-selected, .collection-select_m > select{
    position: relative;
    display: block;
    width: 100%;
    padding: 0px 16px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 32px;
    background: transparent;
    border: 1px solid #ffffff;
    cursor: pointer;
    background-image: url('../images/dp_arrow.png');
    background-position: 95% 50%;
    background-size: auto;
    background-repeat: no-repeat;
}
.catalog-select > .select-selected, .catalog-select_m > select {
    position: relative;
    display: block;
    width: 100%;
    padding: 0px 16px;
    color: #22252c;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 32px;
    background: transparent;
    border: 1px solid #22252c;
    cursor: pointer;
    background-image: url('../images/dp_arrow.png');
    background-position: 95% 50%;
    background-size: auto;
    background-repeat: no-repeat;
}
.select-arrow-active {
    color: #64686f;
    background: #fd8204;
    background-image: url('../images/dp_arrow_hover.png');
    background-position: 95% 50%;
    background-size: auto;
    background-repeat: no-repeat;
    border: 1px solid #fff;
}
/* style the items (options), including the selected item: */
.select-items div {
    position: relative;
    display: block;
    width: 100%;
    padding: 0px 17px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 40px;
    background-color: #333;
    cursor: pointer;
    transition: all .4s ease-in-out;
}
/* Style items (options): */
.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    overflow-y: auto;
    max-height: 383px;
    border: 1px solid #8e96a3;
    margin-top: 5px;
}
/* Hide the items when the select box is closed: */
.select-hide {
display: none;
}
.select-items div:hover, .same-as-selected {
color:#333;
background: #fd8204;
}

/*body no-scroll when lightbox open*/
.no-scroll{
    overflow:hidden;
}
/* reponsive youtube lightbox embed*/
.embed-container iframe,
.embed-container object,
.embed-container embed{
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.lb_slider_nav>.w-slider-dot {
    background-color: #cbcbcb;
    /*margin:	0px 8px!important;
    font-size:8px;*/
    margin:	0px 8px!important;
    font-size:8px;
}
.lb_slider_nav>.w-slider-dot.w-active {
    background-color: #fd8204;
}

.lb_col100.top-border{
    margin-top:75px;
}

.masonry_item_a{
    -webkit-transform: translate3d(0,0,0)
}

@media only screen and (max-width: 768px) {
    .lb_col100.top-border{
        margin-top:50px;
    }
}

/* index */
.index_brand_logo{
    float:  left;
}

.slide-nav>.w-slider-dot {
    background-color: rgba(0,0,0,.7);
    margin:						0px 10px!important;
    font-size:				8px;
    border-radius:		50%;
}

.slide-nav>.w-slider-dot.w-active {
    position: 		relative;
    top: 					5px;
    font-size:		17px;
    margin:				0px 5px!important;
    border:				1px solid #fd8204;
    border-radius:50%;
    background: rgb(253,130,4);
    background: -moz-radial-gradient(circle, rgba(253,130,4,1) 0%, rgba(253,130,4,1) 29%, rgba(253,130,4,0) 43%);
    background: -webkit-radial-gradient(circle, rgba(253,130,4,1) 0%, rgba(253,130,4,1) 29%, rgba(253,130,4,0) 43%);
    background: radial-gradient(circle, rgba(253,130,4,1) 0%, rgba(253,130,4,1) 29%, rgba(253,130,4,0) 43%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fd8204",endColorstr="#fd8204",GradientType=1);
}

/*css hack for iphone safari to avoid item disappear(collection.php,brand.php,job-reference.php)*/
.masonry_item_a{
    -webkit-transform: translate3d(0,0,0)
}

/* index brand section marquee */
.brand_block_wrapper{
    display:block;
}

.mWrap {
    overflow:hidden;
    //zoom:1;
    width:100%;
    font-size:12px;
    line-height:16px;
    position:relative;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    white-space:nowrap;
}

.mMove {
	white-space:nowrap;
	position:absolute;
	top:0;
	left:0;
	cursor:pointer;
}

.mMove_clone {
    display:inline-block;
    //display:inline;
    //zoom:1;
    vertical-align:top;
    position:absolute;
    left:100%;
    top:0;
}

.mWrap img {
    max-width:none !important;
    max-height:150px;
    filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter     id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /*     Firefox 10+, Firefox on Android */
    filter:gray; /* IE6-9 */
    -webkit-filter:grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    opacity:.4;
}

.mWrap a{
    margin:0px 30px;
}

.mWrap img:hover {
    filter:none;
    opacity:1;
}

/* dissolve effect on both left and right edge */
.brand_overlay_left,.brand_overlay_right{
    /* ignore click area (allow below layer to be click or drag), works everywhere except IE10 and older */
    pointer-events: none;
}

@media screen and (max-width: 767px){
    .marquee_padding{
        padding:0px;
    }
}

/*end of index brand marquee section  */

/* index main banner */
.owl-container-a .owl-demo{
    position:relative;
    height:auto
}
.owl-container-a .owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
}

.owl-container-a .owl-dots{
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    margin-bottom:20px;
}

.owl-container-a .owl-theme .owl-dots .owl-dot span  {
    background-color: rgba(0,0,0,.7);
    margin: 0px 10px!important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.owl-container-a .owl-theme .owl-dots .owl-dot:hover span  {
    background-color: rgba(255,255,255,.7);
}

.owl-container-a .owl-theme .owl-dots .owl-dot.active span{
    position: relative;
    top: 5px;
    width: 17px;
    height: 17px;
    margin: 0px 5px!important;
    border: 1px solid #fd8204;
    border-radius: 50%;
    background: rgb(253,130,4);
    background: -moz-radial-gradient(circle, rgba(253,130,4,1) 0%, rgba(253,130,4,1) 29%, rgba(253,130,4,0) 43%);
    background: -webkit-radial-gradient(circle, rgba(253,130,4,1) 0%, rgba(253,130,4,1) 29%, rgba(253,130,4,0) 43%);
    background: radial-gradient(circle, rgba(253,130,4,1) 0%, rgba(253,130,4,1) 29%, rgba(253,130,4,0) 43%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fd8204",endColorstr="#fd8204",GradientType=1);
}

.owl-container-a .slide-progress {
    width: 0;
    max-width: 100%;
    height: 6px;
    background-color: #fd8204;
    position:absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    z-index:6;
}

@media screen and (max-width: 767px){
    .owl-container-a .owl-theme .owl-nav.disabled+.owl-dots{
    margin-bottom: 0px;
    text-align: right;
  }

  .owl-container-a .slide-progress{
    height: 4px;
  }
}


/* end of main banner */

/* bottom bar fix for all version of iphone safari (brand marquee section)*/
@media not all and (min-resolution:.001dpcm) {
   @supports (-webkit-appearance:none) and (display:flow-root) {
    .str3.mWrap{
      /* Allows content to fill the viewport and go beyond the bottom */
      height: 100%!important;

      /* Allows you to scroll below the viewport; default value is visible */
      overflow-y: scroll!important;

      /* To smooth any scrolling behavior */
      -webkit-overflow-scrolling: touch!important;
    }
  }
}

@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) and (stroke-color:transparent) {
    .str3.mWrap{
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
    }
  }
}

html >> * .selector {  property:value; }
@media not all and (min-resolution:.001dpcm) {
   @media {
    .str3.mWrap{
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
    }
  }
}

@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    .str3.mWrap{
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
    }
  }
}

@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) and (not (stroke-color:transparent)) {
    .str3.mWrap{
      /* Allows content to fill the viewport and go beyond the bottom */
      height: 100%!important;

      /* Allows you to scroll below the viewport; default value is visible */
      overflow-y: scroll!important;

      /* To smooth any scrolling behavior */
      -webkit-overflow-scrolling: touch!important;
    }
  }
}

_::-webkit-:host:not(:root:root), .str3.mWrap {
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}

@supports (-webkit-hyphens:none) {
  .str3.mWrap{
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}

@supports (-webkit-marquee-repetition:infinite) and (object-fit:fill) {
  .str3.mWrap{
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}

_:not(a,b), .str3.mWrap {
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}
_:default:not(:root:root), .str3.mWrap {
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}
_::-webkit-:not(:root:root), .str3.mWrap {
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}
@supports (overflow:-webkit-marquee) and (justify-content:inherit) {
  .str3.mWrap{
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}

@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
  @media {
    .str3.mWrap{
      /* Allows content to fill the viewport and go beyond the bottom */
      height: 100%!important;

      /* Allows you to scroll below the viewport; default value is visible */
      overflow-y: scroll!important;

      /* To smooth any scrolling behavior */
      -webkit-overflow-scrolling: touch!important;
    }
  }
}

_::-webkit-full-page-media, _:future, :root .str3.mWrap {
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-color-index:0) {
  .str3.mWrap {(;
  /* Allows content to fill the viewport and go beyond the bottom */
  height: 100%!important;

  /* Allows you to scroll below the viewport; default value is visible */
  overflow-y: scroll!important;

  /* To smooth any scrolling behavior */
  -webkit-overflow-scrolling: touch!important;
  );}
}

@media only screen and (-webkit-min-device-pixel-ratio:1) {
  ::i-block-chrome, .str3.mWrap {
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}

_::-moz-svg-foreign-content, :root .str3.mWrap {
    /* Allows content to fill the viewport and go beyond the bottom */
    height: 100%!important;

    /* Allows you to scroll below the viewport; default value is visible */
    overflow-y: scroll!important;

    /* To smooth any scrolling behavior */
    -webkit-overflow-scrolling: touch!important;
  }
}

/* news */
.news_wrapper div:nth-child(3n+1){
    clear:both;
}
@media (max-width: 992px){
    .news_wrapper div:nth-child(3n+1){
        clear:none;
    }
    .news_wrapper div:nth-child(odd){
        clear:both;
    }
}
@media (max-width: 767px){
    .news_wrapper div:nth-child(odd){
        clear:both;
    }
}
@media (max-width: 468px){
    .news_wrapper div:nth-child(odd){
        clear:none;
    }
    .news_wrapper div{
        clear:both;
    }
}

/* news detail */
.news_slider_nav>.w-slider-dot {
    background-color: #cbcbcb;
    margin:	0px 8px!important;
    font-size:8px;
}
.news_slider_nav>.w-slider-dot.w-active {
    background-color: #fd8204;
}

/* brand */
.jobref_slider_nav>.w-slider-dot {
    background-color: #cbcbcb;
  	margin:	0px 8px!important;
    font-size:15px;
}
.jobref_slider_nav>.w-slider-dot.w-active {
    background-color: #fd8204;
}
.masonry_wrapper {
    -moz-column-count: 3;
    -moz-column-gap: 0px;
    -webkit-column-count: 3;
    -webkit-column-gap: 0px;
    column-count: 3;
    column-gap:0px;
}

.collection_wrapper div:nth-child(3n+1){
	clear:both;
}


.owl-container-b{
  margin-bottom: 80px;
  padding-top: 100px;
  padding-right: 120px;
  padding-left: 120px;
}

.owl-container-b .owl-demo{
  position: relative;
}

.owl-container-b .owl-dots{
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: -8px;
    margin-bottom: -10px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.owl-container-b .owl-theme .owl-dots .owl-dot span  {
    background-color: #cbcbcb;
    margin: 0px 8px!important;
    width:15px;
    height:15px;
    border-radius:0px;
}

.owl-container-b .owl-theme .owl-dots .owl-dot:hover span  {
    opacity:.7;
}

.owl-container-b .owl-theme .owl-dots .owl-dot.active span{
    background-color: #fd8204;
    top: inherit;
}

.owl-container-c {
    margin-bottom: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
}

@media screen and (min-width: 768px) {
	.tabs-menu{
  	display:block!important;
  }
}

@media (max-width: 1280px){
  .masonry_wrapper {
   -moz-column-count: 3;
   -moz-column-gap: 0px;
   -webkit-column-count: 3;
   -webkit-column-gap: 0px;
   column-count: 3;
   column-gap:0px;
  }
  .collection_wrapper div:nth-child(3n+1){
		clear:none;
	}
  .collection_wrapper div:nth-child(odd){
		clear:both;
  }

  .owl-container-b{
    margin-bottom: 60px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767px){
  .masonry_wrapper{
   -moz-column-count: 2;
   -moz-column-gap: 0px;
   -webkit-column-count: 2;
   -webkit-column-gap: 0px;
   column-count: 2;
   column-gap:0px;
  }
  .collection_wrapper div:nth-child(odd){
		clear:both;
	}
}
@media (max-width: 468px){
  .masonry_wrapper {
   -moz-column-count: 2;
   -moz-column-gap: 0px;
   -webkit-column-count: 2;
   -webkit-column-gap: 0px;
   column-count: 2;
   column-gap:0px;
  }

  .collection_wrapper div:nth-child(odd){
		clear:none;
  }

  .collection_wrapper div{
		clear:both;
  }

  .owl-container-b{
    margin-bottom: 20px;
    padding-top: 60px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

/* Download */
.catalog_wrapper a:nth-child(4n+1){
    clear:both;
}
@media (max-width: 1280px){
    .catalog_wrapper a:nth-child(4n+1){
        clear:none;
    }
    .catalog_wrapper a:nth-child(3n+1){
        clear:both;
    }
}
@media (max-width: 767px){
    .catalog_wrapper a:nth-child(3n+1){
        clear:none;
    }
    .catalog_wrapper a:nth-child(odd){
        clear:both;
    }
}
@media (max-width: 468px){
    .catalog_wrapper a:nth-child(odd){
        clear:none;
    }
    .catalog_wrapper a{
        clear:both;
    }
}

/* collection */
.masonry_wrapper-b {
    width: 100%;
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;

    -moz-column-count: 3;
    -moz-column-gap: 0px;
    -webkit-column-count: 3;
    -webkit-column-gap: 0px;
    column-count: 3;
    column-gap:0px;
}

.masonry_wrapper-b{
    display:none;
}

.masonry_wrapper-b.current{
    display:block;
}

.tabs_menu_btn{
    cursor:pointer;
}

.collection_wrapper div:nth-child(3n+1){
    clear:both;
}

.select-selected {
    display: none;
}

.catalog_p {
    background-size: contain;
}

.slide-image {
    border: 8px solid #fff;
    width: 70%;
}

.lb_slide.w-slide {
    vertical-align: middle;
}

.masonry_item {
    margin-bottom: 10px;
}

@media screen and (min-width: 1280px) {
    .tabs_menu{
        display:flex!important;
    }
}

.lb_slide_p {
    background-size: contain;
    padding-top: 0%;
    border-width: 0px !important;
    text-align: center;
}

.lb_slide.vertical {
    padding-right: inherit;
    padding-left: inherit;
}

.lb_icon-b {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.masonry_item a:hover .masonry_img {
    transform: scale(1.2);
}

.masonry_img {
    transform-style: preserve-3d;
    transition: transform 350ms ease 0s;
}

@media (max-width: 1280px){
    .tabs_menu{
        display:none;
        max-width:1280px;
    }
    .masonry_wrapper-b {
        -moz-column-count: 3;
        -moz-column-gap: 0px;
        -webkit-column-count: 3;
        -webkit-column-gap: 0px;
        column-count: 3;
        column-gap:0px;
    }
    .collection_wrapper div:nth-child(3n+1){
        clear:none;
    }
    .collection_wrapper div:nth-child(odd){
        clear:both;
    }
}

@media (max-width: 767px){
    .masonry_wrapper-b{
        -moz-column-count: 2;
        -moz-column-gap: 0px;
        -webkit-column-count: 2;
        -webkit-column-gap: 0px;
        column-count: 2;
        column-gap:0px;
    }
    .collection_wrapper div:nth-child(odd){
        clear:both;
    }
}
@media (max-width: 468px){
    .masonry_wrapper-b{
        -moz-column-count: 2;
        -moz-column-gap: 0px;
        -webkit-column-count: 2;
        -webkit-column-gap: 0px;
        column-count: 2;
        column-gap:0px;
    }
    .collection_wrapper div:nth-child(odd){
        clear:none;
    }
    .collection_wrapper div{
        clear:both;
    }
}

@media (max-width: 479px){
    .lb_icon-b {
        width: 27%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* job reference */
.jobref_slider_nav>.w-slider-dot {
    background-color: #cbcbcb;
    margin:	0px 8px!important;
    font-size:8px;
}
.jobref_slider_nav>.w-slider-dot.w-active {
    background-color: #fd8204;
}
.collection_wrapper div:nth-child(3n+1){
    clear:both;
}
@media (max-width: 1280px){
    .collection_wrapper div:nth-child(3n+1){
        clear:none;
    }
    .collection_wrapper div:nth-child(odd){
        clear:both;
    }
}
@media (max-width: 767px){
    .collection_wrapper div:nth-child(odd){
        clear:both;
    }
}
@media (max-width: 468px){
    .collection_wrapper div:nth-child(odd){
        clear:none;
    }
    .collection_wrapper div{
        clear:both;
    }
}

.catalog-select-b select{
    width: 100%;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url('../images/dp_arrow.png');
    -webkit-appearance: none;
    background-repeat: no-repeat;
    background-position-x: 284px;
    background-position-y: 12px;
    border: 1px solid #22252c;
    padding: 0px 16px;
    line-height: 32px;
}

.div-block-42 {
    padding-bottom: inherit;
    margin-bottom: 60px;
}

.job-slider-max-300 {
    max-width: 300px;
}

.disable {
    display: none;
}
