

@font-face {
    font-family: 'slick'; /* Имя шрифта */
    src: url(../fonts/Gotham_Pro.ttf); /* Путь к файлу со шрифтом */
   }
/* Arrows */
.slick-prev,
.slick-next
{

    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 30px;
    height: 60px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: #fff;
    font-weight: bold;
    border: none;
    outline: none;
    background: rgba(0,0,0,0.22);
	
	z-index: 998;
}
.slick-prev:hover{
    background: rgba(255,203,25,1.00);
    background-image: url(../image/arrowleft.png) ;
	background-position: 7px center;
	background-size: none;
	background-repeat: no-repeat;
	transition: all 0.3s ease-out;
}
.slick-next:hover
{
    background: rgba(255,203,25,1.00);
    background-image: url(../image/arrowright.png) ;
	background-position: 10px center;
	background-size: none;
	background-repeat: no-repeat;
	transition: all 0.3s ease-out;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: 1;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .95;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left : 0px;
	background-image: url(../image/arrowleft.png) ;
	background-position: 7px center;
	background-size: none;
	background-repeat: no-repeat;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	transition: all 0.3s ease-out;
}
[dir='rtl'] .slick-prev
{
    left: 0px;
	background-image: url(../image/arrowleft.png) ;
	background-position: 7px center;
	background-size: none;
	background-repeat: no-repeat;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}
.slick-prev:before
{
    content: '';
}
[dir='rtl'] .slick-prev:before
{
    content: '';
}

.slick-next
{
    right: 0px;
	background-image: url(../image/arrowright.png) ;
	background-position: 10px center;
	background-size: none;
	background-repeat: no-repeat;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
[dir='rtl'] .slick-next
{
    right: 0px;
	background-image: url(../image/arrowright.png) ;
	background-position: 10px center;
	background-size: none;
	background-repeat: no-repeat;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	transition: all 0.3s ease-out;
    
}
.slick-next:before
{
    content: '';
}
[dir='rtl'] .slick-next:before
{
    content: '';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: 25px;
	left: 50px;
    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: left;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 16px;
    height: 16px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
	background: rgba(255,255,255,0.36);
	border-radius: 50px;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 16px;
    height: 16px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 16px;
    height: 16px;

    content: '';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
	background: white;
	border: 3px #ef9f22  solid; 
	border-radius: 150px;
    opacity: .65;
    color: black;
}


@media screen and (max-width: 768px){
	.slick-next
{

    
    top: 50%;

}
	.slick-prev
{

    
    top: 50%;

}
	
}