.homeslider-container {
  margin-bottom: 0;
  position: relative;
  float: none;
  width: 100%;
  height: 500px;
}

.homeslider {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  height: 100%;
}

.homeslider li {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.homeslider li a {
    display: block;
    height: 100%;
  }

  .homeslider img {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	border: 0;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.rslides__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	z-index: 1;
	padding: 40px;
	color: white;
	display: flex;
	gap: 0 30px;
	flex-direction: column;
}

.rslides__cta {
	background: #e9bc40;
	border: 2px solid #e9bc40;
	padding: 12px 40px;
	text-transform: uppercase;
	font-size: 1.2rem;
	font-weight: 500;
	color: rgba(13, 19, 35, 0.85);
	height: fit-content;
    transition: color: 0.1s ease;
    margin-top: 34px;
    width: fit-content;
}

.rslides__cta:hover {
    color: #e9bc40;
    background-color: white;
    cursor: pointer;
}

.rslides__bottom-text h2 {
	font-size: 5rem;
	text-transform: uppercase;
	color: white;
	font-weight: 700;
	margin-bottom: 12px;
}

.rslides__bottom-text p {
    line-height: 1.5;
}

.homeslider .caption {
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 1em;
  text-shadow: none;
  color: #fff;
  background: #000;
  background: rgba(0,0,0, .6);
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  margin: 0;
  max-width: none;
}

.homeslider_nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border-radius: 0
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
  
  .homeslider_nav:hover {
    color: #e9bc40;
  }
  
  .homeslider_nav.prev {
    left: -56px;
  }
  
  .homeslider_nav.next {
    right: -56px;
  }
  
  .homeslider-container {
    position: relative;
  }

  .homeslider_nav:nth-of-type(1),
  .homeslider_nav:nth-of-type(2) {
    display: none;
  }

  a.homeslider_nav {
    color: rgba(13, 19, 35, 0.85);
  }

  a.homeslider_nav .material-icons {
    font-size: 40px;
  }