.box {
width: 100%; 
height: 100%;
}

.slider {
position: relative;
width: 100%;
height: 420px;
overflow: hidden;
margin-top: 130px;
font-family: 'Conv_Arkhip_font';
}
.slider_kitchen {
position: relative;
width: 100%;
height: 280px;
overflow: hidden;
margin-top: 130px;
}


.slides {
height: 100%;

/* Simple clear fix */
overflow: hidden;

/**	
* Prevent blinking issue
* Not tested. Experimental.
*/
-webkit-backface-visibility: hidden;
-webkit-transform-style: preserve-3d;

/**
* Here is CSS transitions 
* responsible for slider animation in modern broswers
*/
-webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
-moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
-ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
-o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.slides li {
list-style-type: none;
}

.slide {
height: 100%;
float: left;
clear: none;
}
.slide a {
text-decoration: none;
}

.slider-arrows {}

.slider-arrow {
position: absolute;
display: block;
margin-bottom: -20px;
width: 63px;
height: 45px;
}

.slider-arrow--right { bottom: 50%; right: 0px; background: url(/bitrix/templates/catering/images/right.jpg) no-repeat;}
.slider-arrow--left { bottom: 50%; left: 0px; background: url(/bitrix/templates/catering/images/left.jpg) no-repeat; }


.slider-nav {
position: absolute;
bottom:20px;
}

.slider-nav__item {
width: 12px;
height: 12px;
float: left;
clear: none;
display: block;
margin: 0 3px;
background: #fff;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}

.slider-nav__item:hover { background: #ccc; }
.slider-nav__item--current { background: #ccc; }