@charset "utf-8";

/* CSS Document */

@media (min-width: 768px) {
.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}
/* Slide images */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
/* Each slide */
.slide {
    width: 100%;
    flex: 1 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2em;
}
/* Sample background colors for each slide */
.slide-1 {
    background-image: url("../images/banner/slide-01.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 700px;
    background-size: 100% 100%;
}
.slide-2 {
    background-image: url("../images/banner/slide-02.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 700px;
    background-size: 100% 100%;
}
.slide-3 {
    background-image: url("../images/banner/slide-03.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 700px;
    background-size: 100% 100%;
}
	.slide-4 {
    background-image: url("../images/banner/slide-04.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 700px;
    background-size: 100% 100%;
}
	.slide-5 {
    background-image: url("../images/banner/slide-05.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 700px;
    background-size: 100% 100%;
}
/* Navigation dots */
.dots {
    text-align: center;
    position: absolute;
    bottom: 40px;
    width: 100%;
}
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: #217c40;
}
	.slider-area h2 {
	text-align: center;
	font-family: impact;
	font-size: 60px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 30px 0;
	color: #fff;
}
.wrapper {
	display: flex;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 2.5rem;
}
.item {
	animation: animate 30s alternate linear infinite; margin: 0 30px;
}
.container:hover .item {
	animation-play-state: paused;
}
@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-1100px, 0, 0);
	}
}
}

@media (max-width: 767px) {
.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}
/* Slide images */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
/* Each slide */
.slide {
    width: 100%;
    flex: 1 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2em;
}
.slide-1 {
    background-image: url("../images/banner/slide-01-mob.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 557px;
    background-size: 100% 100%;
}
.slide-2 {
    background-image: url("../images/banner/slide-02-mob.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 557px;
    background-size: 100% 100%;
}
.slide-3 {
    background-image: url("../images/banner/slide-03-mob.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 557px;
    background-size: 100% 100%;
}
	.slide-4 {
    background-image: url("../images/banner/slide-04-mob.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 557px;
    background-size: 100% 100%;
}
	.slide-5 {
    background-image: url("../images/banner/slide-05-mob.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    min-height: 557px;
    background-size: 100% 100%;
}
/* Navigation dots */
.dots {
    text-align: center;
    position: absolute;
    bottom: 80px;
    width: 100%;
}
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: #217c40;
}
		.slider-area h2 {
		font-size: 30px;
	}
	.wrapper {
		width: 95%;
		border-radius: 0;
		padding: 0;
	}
}

