* {
  box-sizing: border-box;
}


.slider_page {
    width: 100%;
    height: 100%;
    overflow: hidden;
	background: #000;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .3s ease-out;
	/* justify-content: space-around; */
}

.slider:active {
    cursor: grabbing;
    user-select: none;
}

.slider__item {
    min-width: 100%;
}

.slider__footer {
    position: absolute;
    bottom: 2%;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.slider__img {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center center;
    background-size: contain;
	background-repeat:no-repeat;
    width: 100%;
    height: 80%;
}

.slider__img--1 {
    background-image: url(../images/1.jpg);
}
.slider__img--2 {
    background-image: url(../images/2.jpg);
}
.slider__img--3 {
    background-image: url(../images/3.jpg);
}
.slider__img--4 {
    background-image: url(../images/4.jpg);
}
.slider__img--5 {
    background-image: url(../images/5.jpg);
}
.slider__img--6 {
    background-image: url(../images/6.jpg);
}
.slider__img--7 {
    background-image: url(../images/7.jpg);
}
.slider__img--8 {
    background-image: url(../images/8.jpg);
}
.slider__img--9 {
    background-image: url(../images/9.jpg);
}
.slider__img--10 {
    background-image: url(../images/10.jpg);
}
.slider__img--11 {
    background-image: url(../images/11.jpg);
}
.slider__img--12 {
    background-image: url(../images/12.jpg);
}

.slider_text {
	position: absolute;
    bottom: 0%;
    width: 100%;
    /* background: rgba(0, 0, 0, .75); */
    color: #fff;
    text-align: center;
	padding: 3vh;
    box-sizing: border-box;

}

.slider_text__title {
    /* font-size: 2.25rem; */
    margin-bottom: 20px;
}

.slider_text__subtitle {
    font-size: 1.25rem;
	padding-bottom: 5vh;
}

.slider_dots {
    position: absolute;
    display: flex;
    bottom: 0;
}

.slider_dot {
    width: calc(15 / 1920 * 100vw);
    height: calc(15 / 1920 * 100vw);
    border-radius: 50%;
    margin-right: 30px;
    background-color: rgba(255, 255, 255, .5);
}

.slider_dot--active {
    background-color: rgba(255, 255, 255, 1);
}

.slider_dot:last-of-type {
    margin-right: 0;
}

.slider_arrow_btn {
    padding: 0;
    width: 20%;
    max-width: 110px;
    background: none;
    border: none;
    cursor: pointer;
}

.slider_arrow {
    /* width: 100%; */
}

.slider__footer button:hover{
    background: none;
}

.gallery_row{
	display: flex;
	flex-wrap: wrap;
}

.gallery_row:after {
  content: "";
  display: table;
  clear: both;
}

.gallery_column {
  float: left;
  width: 16.66%;
}

.gallery_imagecard {
  width:95%;
  opacity: 0.8;
}

.gallery_active,
.gallery_imagecard:hover {
  opacity: 1;
}

.gallery_modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 0px;
  left: 0;
  top: 0;
  height: 100%; 
  width: 100%;
  overflow: auto;
}

.gallery_close {
  color: white;
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 50px;
  font-weight: bold;
}

.gallery_close:hover,
.gallery_close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.gallery_cursor {
    cursor: pointer;
}

@media screen and (min-width: 1200px) {
    .slider_text__subtitle {
		width: 70%;
		margin: auto;
    }
}

@media screen and (min-width: 720px) and (max-width: 1200px) {
    .slider_text__subtitle {
        font-size: 1.25rem;
    }
}

@media screen and (max-height: 768px) {
    .slider_text__subtitle {
		padding-bottom: 2vh;
    }
}

@media (max-width: 768px) {
	
	.slider_arrow_btn{
		display:none;
	}
	
	.gallery_column {
	  width: 33.32%;
	}	
}
