﻿.slider {
	width: 95%;
	margin: auto;
}

.slick-slide {
  margin: 5px 20px 15px;
}

.slick-slide img {
  width: 100%;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
	z-index: 99;
	width: 50px;
	height: 50px;
	color: white;
	opacity: 0.7;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev{
    left: -25px;
}
.slick-next{
    right: -25px;
}
.slick-prev::before {
	content: "";
	font-family: "FontAwesome";
	font-size: 30px;
}
.slick-next::before {
	content: "";
	font-family: "FontAwesome";
	font-size: 30px;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus{
	color: white;
	opacity: 1;
    outline: none;
    background: transparent;
}
