/*............................................ BEGIN ANIMATIONS ............................................*/
@keyframes blink{
	50%{opacity:0}
}
@-webkit-keyframes blink{
	50%{opacity:0}
}
/*............................................. END ANIMATIONS .............................................*/


/*............................................ BEGIN SLIDESHOW .............................................*/
.slideshow h3{bottom:150px}
/* scroll down button */
.slideshow_wrapper .scrolldown{width:50px;height:50px;line-height:50px;color:#ecbd1d;font-size:40px;text-align:center;border:2px solid #ecbd1d;border-radius:100%;position:absolute;bottom:50px;z-index:1;cursor:pointer;left:50%;right:0;transform:translateX(-50%);-webkit-transform:translateX(-50%);animation:blink 2s infinite ease-in-out;-webkit-animation:blink 2s infinite ease-in-out}
.slideshow_wrapper .scrolldown::after{display:block}
.slideshow_wrapper .scrolldown:hover{animation:none}
/*............................................. END SLIDESHOW ..............................................*/


/*......................................... BEGIN PRODUCT CATEGORIES ........................................*/
.prod_cats_wrapper{margin-bottom:40px;padding-bottom:40px;position:relative}
.prod_cats{height:270px;overflow:hidden}
.prod_cats .rec .inner{width:165px;margin:auto;position:relative}
.prod_cats .rec:nth-child(6n){margin-right:0}

/* image */
.prod_cats .rec .image{height:165px;margin-bottom:35px;background-color:#ecbd1d;position:relative}
.prod_cats .rec .image img{max-width:100%;max-height:100%;margin:auto;opacity:1;display:block;position:absolute;top:0;right:0;bottom:0;left:0;transition:opacity .5s;-webkit-transition:opacity .5s}

/* title */
.prod_cats .rec h4{height:54px;line-height:18px;font-family:'sinkin_sans700_bold';font-size:12px;text-align:center;text-transform:uppercase;overflow:hidden;transition:color .5s;-webkit-transition:color .5s}

/* link */
.prod_cats .rec a{width:100%;height:100%;margin:auto;text-indent:-2000em;display:block;overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0}

/* hover */
.prod_cats .rec:hover .image img{opacity:.6}
.prod_cats .rec:hover h4{color:#ecbd1d}


/* arrows */
.prod_cats_wrapper .arrow{position:absolute;bottom:0;outline:none;display:none}
.prod_cats_wrapper .arrow.prev{left:44%}
.prod_cats_wrapper .arrow.next{right:44%}

@media all and (max-width: 730px){
.prod_cats{height:330px}
.prod_cats .rec .inner{width:240px}
.prod_cats .rec .image{height:240px}
}
/*.......................................... END PRODUCT CATEGORIES .........................................*/