/* slider */

.promoSlider {
    position: fixed !important;
    left: 0; right: 0; top: 0; bottom: 0
}

.slick-slide {
}

.promoSlider::before {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 300px;
    z-index: 2100;
    content: '';
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0))
}

.promoSlide {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    height: 100vh
}

.sliderContent {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px 40px 40px;
}

.sliderContent p {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    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: 120px;
    text-align: center
}

.categoryMenu article figure {
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 200px;
    background-color: aliceblue;
    transition: all .5s
}

.categoryMenu article:hover figure {
    transform: scale(1.2)
}

.categoryMenu article h3 {
    display: inline-block;
    margin-top: 20px;
    padding: 4px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #0088c5;
    font-size: 16px;
    border-radius: 20px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
    transition: .5s
}

.categoryMenu article:hover h3 {
    background-color: #00C2F3
}

.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: 30px;
    margin-top: -15px;
    cursor: pointer;
    z-index: 2000;
    -webkit-transition: all .4s;
    transition: all .4s
}

.prev {
    left: 30px
}

.next {
    right: 30px
}

.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: #00C2F3
}

.arrows span::before {
    top: 4px;
}

.arrows span::after {
    top: 23px;
}

.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;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.box.visible {
	/*display: none;*/
}

ul.tabs, ul.tabs li, ul.submenu, ul.submenu li {
	margin: 0; padding: 0;
	list-style-type: none;
}

ul.tabs, ul.submenu {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    vertical-align: top
}

ul.submenu {
    margin-top: 15px
}

ul.tabs li, ul.submenu li a {
    display: inline-block;
    margin: 5px 5px 0 5px;
    padding: 5px 20px;
    border-radius: 20px;
    color: #0088c5;
    background-color: #e5e5e5;
    cursor: pointer
        
}

ul.tabs {
    margin-bottom: 30px
}

ul.submenu li {
    display: inline-block
}

ul.submenu li a {
    display: block;
    border-bottom: none
}

ul.tabs li:hover, ul.tabs li.current, ul.submenu li a:hover, ul.submenu li.active a {
    color: #fff;
    background-color: #00C2F3
}