/* @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i'); */
* {
	margin: 0;
	padding: 0;
}
/* Required styles for the slider */

.bgimage-slider {
	position: relative;
	overflow: hidden;
	transition: 0.3s;
	width: 100vw;
	height: 100vh;
}

.bgimage-slider ul {
	position: absolute;
	padding: 0px!important;
}

.bgimage-slider li {
	float: left;
	line-height: 0;
	text-align: center;
}

.bgimage-slider li img {
	width: 100%;
	height: 100vh;
}

.navigator {
	position: fixed;
	bottom: 5px;
	width: 100%;
	text-align: center;
	z-index: 10;
}

.navigator span {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background: #606161;
	margin: 0 4px;
	transition: 0.1s;
	position: relative;
	top: 0;
	cursor: pointer;
}

.navigator span.active {
	background: #fff;
	width: 10px;
	height: 10px;
}

.bgimage-slider > span {
	position: absolute;
	display: none;
	top: 50%;
	background: rgba(0,0,0,0.5);
	z-index: 1;
	padding: 6px 10px;
	margin: -10px 0 0;
	color: white;
	cursor: pointer;
	transition: 0.3s;
}

.prev {
	left: 100px;
	transform: rotate(90deg);
	transform-origin: 0 0;
}

.next {
	right: 100px;
	transform: rotate(-90deg);
	transform-origin: 100% 0%;
}

.bgimage-slider:hover span, .bgimage-slider:hover .autoPlay {
	transform: rotate(0deg);
}

.autoPlay {
	position: absolute;
	bottom: 0;
	left: 0;
	color: white;
	transform: translateY(50px);
	transition: .3s;
}

.autoPlay label {
	background: rgba(0, 0, 0, .4);
	padding: 10px;
	display: block;
}

.autoPlay .chkbox {
	display: none;
}

.autoPlay .chkbox:checked + label {
	background: rgba(0, 0, 0, .7);
}
@media (max-width: 900px) {
	.page-wrapper, .bg-wrapper {
		top: 0px;
		height: auto;
	}
	#bg-cntnr {
		width: 100vw;
		margin-bottom: 0px;
	}
	#bg-cntnr .bg-cntnr-container {
		display: none;
	}
	.bgimage-slider, .bgimage-slider li img {
		width: 100vw;
		height: auto;
	}
	#main {
    	margin-top: 0px;
	}
}





/** New Slider */
.slide-container {
width:100%;
height:80%;
position:relative;
}

.left-arrow {
width:100px;
height:100%;
position:absolute;
top:0;
left:0;
}

.right-arrow {
width:100px;
height:100%;
position:absolute;
top:0;
right:0;
}

.left-arrow>img {
position:relative;
top:50%;
transform:translateY(-50%);
margin-left:-2px;
opacity:.3;
transition:opacity 1s;
}

.right-arrow>img {
position:relative;
top:50%;
transform:translateY(-50%);
margin-left:42px;
opacity:.5;
transition:opacity 1s;
}

.left-arrow>img:hover,.right-arrow>img:hover {
cursor:pointer;
opacity:1;
}

.dot-container {
position:absolute;
bottom:50px;
left:50%;
transform:translateX(-50%);
z-index: 10;
}

.dot {
cursor:pointer;
height:13px;
width:13px;
background-color:#F67280;
border-radius:50%;
display:inline-block;
transition:background-color .6s ease;
margin:0 2px;
}

.dotactive,.dot:hover {
background-color:#E8175D;
height:17px;
width:17px;
}

.captionText {
width:120px;
height:50px;
position:absolute;
bottom:30px;
font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size:14px;
font-weight:bolder;
text-align:center;
line-height:50px;
letter-spacing:.19em;
background:#F67280;
color:#FFF;
opacity:0;
}

.main-content,.responsive-img {
width:100%;
height:100%;
}

@media only screen and (max-width :700px){
.slide-container {
width:600px;
}
}

@media only screen and (max-width :600px){
.slide-container {
width:500px;
height:300px;
}
}

@media only screen and (max-width: 500px){
.slide-container {
width:400px;
height:250px;
}

.captionText {
width:100px;
height:40px;
font-size:12px;
line-height:40px;
}
}

@media only screen and (max-width: 400px){
.slide-container {
width:300px;
height:200px;
}

.captionText {
width:90px;
height:35px;
font-size:10px;
line-height:35px;
}
}


/* Default styles for images */
.swiper-slide img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
  
  /* Adjust height for mobile screens */
@media (max-width: 768px) {  
	.swiper-slide img {
	  width: 100%;; /* Makes the image take full height of the viewport */
	}
}
  