/* Slideshow container */
.dots-container {
    text-align: center;
    margin-bottom: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
}

.active-dot {
  background-color: #fff;
}

.slides {
  position: relative;
  width: 100%;
  height: auto;
  margin: auto;
}
.slides .slide {
  display: none;
}
.slides .slide .content {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.slides .slide .content .content-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(12, 18, 57, 1) 0%,
    rgba(12, 18, 57, 0) 100%
  );
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px;
  padding-top: 100px;
  padding-right: 130px;
}

.slides .slide .content .content-body .content-title {
    flex-grow: 1;
    padding-right: 16px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 12px;
}
.slides .slide .content .content-body .content-page {
    font-size: 16px;
    margin-bottom: 10px;
}
.slides .slide .content .content-body .content-page .current-page {
    color:#00baff;
}
/* Fading animation */
.slides .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}
.slides .navigation {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 16px;
  display: flex;
}

/* Next & previous buttons */
.slides .navigation .prev,
.slides .navigation .next {
  cursor: pointer;
  width: 45px;
  height: 45px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  transition: 0.6s ease;
  user-select: none;
}

/* Position the "next button" to the right */
.slides .next {
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .slides .slide .content {
    height:  100vh;
  }
  .slides .slide .content .content-body .content-title {
    font-size: 36px;
	  margin-bottom: 8px;
  }
}
