/* Swiper container */
.swiper-container {
	width: 100%;
    height: 510px;
    margin-left: auto;
    margin-right: auto;
}

/* Swiper items */
.swiper-container .swiper-slide {
      background-size: cover;
      background-position: center;
    }

/* Arrows */
.swiper-container .swiper-button-prev {
    left: 10px !important
}

.swiper-container .swiper-button-next {
    right: 10px !important
}

@media (max-width: 767px) {
	.swiper-container .swiper-button-prev,
	.swiper-container .swiper-button-next {
		display: none
	}
}

/* Gallery slide */
.gallery-top {
    height: 510px;
    width: 100%;
}

.gallery-thumbs {
    height: 80px;
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.gallery-thumbs .swiper-slide-active {
    opacity: 1;
}