section.slider{
	position: relative;
	width: 100%;
	overflow:hidden;
}

section.slider .rslides img {
	width: 100%;
	height:auto;
}
section.slider li.slide{
	height:85vh;
	background-size:cover;
	background-position:center;
}
section.slider div.slide-info {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content: center;
	padding:0 10%;
	flex-direction: column;
}
.ccm-image-slider-text{
	max-width:640px;
	width:100%;
	position: relative;
}
.ccm-image-slider-text h1{
	color: var(--white-color);
	text-shadow: 0 0 4px rgb(57, 51, 55);
}

div.scroll-down {
  width: 32px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 16px;
  display: inline-block;
  position: relative;
  top: 3em;
}

div.scroll-down .scroller {
  display: block;
  width: 6px;
  height: 8px;
  border-radius: 3px;
  position: absolute;
  background: #fff;
  top: 8px;
  left: 50%;
  transform: translate(-50%,0);
  opacity: 0;
  animation: scroll-down 1500ms ease-out infinite;
}

@keyframes scroll-down {
	0% {
  	opacity: 0;
  	transform: translate(-50%, 0);
	}
	80% {
  	opacity: 1;
  	transform: translate(-50%, 20px);
	}
	100% {
  	opacity: 0;
  	transform: translate(-50%, 20px);
	}
}
@media screen and (min-width: 1024px){ 
	.ccm-image-slider-text h1 {
		font-size: 4.5em;
	}
}

@media screen and (max-width: 1023px){ 
	.ccm-image-slider-text h1 {
		font-size: 3.75em;
	}
}

@media screen and (max-width: 500px){ 
	.ccm-image-slider-text  h1 {
		font-size: 3.25em;
		font-weight: 500;
	}
}

.ccm-image-slider-text p{
	margin: 10px 0 0 0;
	  font-size: 1.1em;
	  font-weight: 400;
	  color: var(--lighter-gold);
	  line-height: 1.5em;
	  text-shadow: 0 0 4px rgb(57, 51, 55);
}
ul.rslides_tabs{
	position:absolute;
	bottom:5%;
	z-index: 100;
	width: 100%;
	text-align: center;
}

.rslides_tabs li a{
	margin:0 5px;
	background:#fff;
	transition:all 0.3s;
}
.rslides_tabs li.rslides_here a{
	background:#000;
}

.ccm-image-slider .overlay{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#000;
	opacity:0.5;
	pointer-events:none;
}

.rslides_nav{
	background:#000;
	transition:all 0.3s;
}
.rslides_nav:hover{
	opacity:1;
}
.rslides_nav.prev:before, .rslides_nav.next:before{
	content:'\f053';
	font-family:'Font Awesome 5 Pro';
	color:#fff;
	ont-size: 24px;
	top: 50%;
	position: absolute;
	left: 50%;
	transform: translate(-50%,-50%);
}
.rslides_nav.next:before{
	content:'\f054';
}

@media screen and (max-width: 800px){
	.ccm-image-slider-text {
		text-align: left!important;
		transform: translate(0,-40%);
	}
	
	.ccm-image-slider-text p {
		font-weight: 500;
	}
}