/* slider */

.sliderSection {
    margin-top: 80px;
    padding: 0
}

.sliderSection .shell {
    padding: 0
}

.promoSlider {
    position: relative
}

.slick-slide {
}


/*
.promoSlider::after {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 300px;
    z-index: 100;
    content: '';
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0))
}
*/

.promoSlide {
    background-position: center center;
    background-size: cover;
    height: 500px;
    z-index: 10000 !important
}

.sliderContent {
    position: absolute;
    left: 0; right: 0; bottom: 20px;
    margin: 0 auto;
    z-index: 10000 !important
}

.sliderContent p {
    max-width: 800px;
    padding: 0 20px;
    margin: 20px auto 0 auto;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.6)
    
}

.categoryMenu {
    display: flex;
    justify-content: space-around;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap
}

.categoryMenu article {
    position: relative;
    margin-top: 30px;
    width: 160px;
    text-align: center
}

.categoryMenu article figure {
    display: inline-block;
    width: 160px;
    height: 160px;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    transition: all .5s
}

.categoryMenu article:hover figure {
    transform: scale(1.2)
}

.categoryMenu article h3 {
    margin-top: 20px;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #b65657;
    border-radius: 20px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
    transition: .5s
}

.categoryMenu article:hover h3 {
    background-color: #d2a29a
}

.categoryMenu article a {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-bottom: none
}

/**/

.slick-slide .sliderContent {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 1s;
    transition: .75s
}

.slick-slide.slick-active .sliderContent {
    -webkit-transform: scale(1);
    transform: scale(1)
}

/**/

.arrows {
    position: absolute;
    top: 50%;
    width: 30px; height: 60px;
    margin-top: -30px;
    cursor: pointer;
    z-index: 2000;
    -webkit-transition: all .4s;
    transition: all .4s
}

.prev {
    left: 20px
}

.next {
    right: 20px
}

.arrows span::before,
.arrows span::after {
    content: '';
    position: absolute;
    left: 5px;
    width: 30px;
    height: 3px;
    background-color: #fff;
}

.arrows:hover span::before,
.arrows:hover span::after {
    background-color: #d2a29a
}

.arrows span::before {
    top: 20px;
}

.arrows span::after {
    top: 39px;
}

.arrows.prev span::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.arrows.prev span::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.arrows.next span::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.arrows.next span::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/* tabs */

.tabsContent {
	display: inline-block;
    margin-right: -4px;
    width: calc(100% - 300px);
    
}

.box {
	display: none;
    vertical-align: top
}

.box.visible {
	display: block;
}

ul.tabs, ul.tabs li {
	margin: 0; padding: 0;
	list-style-type: none;
}

ul.tabs {
    max-width: 800px;
    margin: 10px auto 0 auto;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    vertical-align: top
}

ul.tabs li {
    display: inline-block;
    margin: 4px 2px 0 2px;
}

ul.tabs li a {
    display: block;
    padding: 2px 10px;
    border-radius: 20px;
    color: #0088c5;
    background-color: #e5e5e5;
    border-bottom: none
        
}

ul.tabs li:hover a, ul.tabs li.active a {
    color: #fff;
    background-color: #d2a29a
}