@charset 'UTF-8';
html, body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.slider {
    width: 100%;
}

.slick-slide {
    margin: 0px;
}

.slick-slide img {
    width: 100%;
}
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../img/ajax-loader.gif') center center no-repeat;
}
/* Arrows */
.slick-prev,
.slick-next
{
    /* font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    margin-top: -32px;
    display: block;
    width: 40px;
    height: 64px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 12px; */
	position: absolute;
	top: 50%;
	margin-top: -40px;
	overflow: hidden;
	cursor: pointer;
	width: 82px;
	height: 82px;
	font-size: 0;
	line-height: 0;
	z-index: 9;
	background-repeat: no-repeat;
	background-position: center center;
	-o-background-size: auto 30px;
	-ms-background-size: auto 30px;
	-moz-background-size: auto 30px;
	-webkit-background-size: auto 30px;
	background-size: auto 30px;
	background-color: rgba(0, 0, 0, .1);
	border: 0;
	outline: 0;
	padding: 0;
}
.slick-prev
{
    left: 0;
    background-image: url(../img/pres1.png);
}

.slick-next
{
    right: 0;
    background-image: url(../img/nexts1.png);
}

/* Dots */
.slick-dots
{
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    border: 0;
    outline: none;
    background: #fff;
}
.slick-dots li.slick-active button
{
    opacity: 0.5;
    background-color: #000000;
}

/* ipad pro */
@media screen and (max-width: 1024px) {
    .slick-prev,.slick-next{
        display: none !important;
    }
    .slick-dots{
        bottom: 0;
    }
}
/* ipad */
@media screen and (max-width: 768px) {
    .slick-dots li button{
        width: 10px;
        height: 10px;
    }
    .slick-dots{
        bottom: -6px;
    }
}
/* iphone6 7 8 plus */
@media screen and (max-width: 414px) {
    .slick-dots li button{
        width: 3px;
        height: 3px;
    }
    .slick-dots{
        bottom: -14px;
    }
}
/* iphoneX */
@media screen and (max-width: 375px) and (-webkit-device-pixel-ratio: 3) {
    .slick-dots li button{
        width: 1px;
        height: 1px;
    }
}
/* iphone6 7 8 */
@media screen and (max-width: 375px) and (-webkit-device-pixel-ratio: 2) {
}
/* iphone5 */
@media screen and (max-width: 320px) {
}