@import url("https://fonts.googleapis.com/css?family=Lora:400,400i,700");


.container {
  position: relative;
  height: 688px;
  font-family: Lora, serif;
  color: white;
}
.container h1 {
  margin: 0;
  font-size: 250%;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 2px black;
}
.container h3 {
  margin: 0;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 2px black;
}
.container .page-title {
  position: absolute;
  left: 4em;
  top: 2em;
  z-index: 1;
}
.container .slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 648px;
}
.container .slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 648px;
}
.container .slideshow .slide:first-child {
  z-index: 0;
}
.container .slideshow .slide:nth-child(1) {
  background: url("../img/1.jpg") center/cover no-repeat;
}
.container .slideshow .slide:nth-child(2) {
  background: url("../img/2.jpg") center/cover no-repeat;
}
.container .slideshow .slide:nth-child(3) {
  background: url("../img/3.jpg") center/cover no-repeat;
}
.container .slideshow .slide:nth-child(4) {
  background: url("../img/4.jpg") center/cover no-repeat;
}
.container .slideshow .slide:nth-child(5) {
  background: url("../img/5.jpg") center/cover no-repeat;
}
.container .slideshow .slide:nth-child(6) {
  background: url("../img/6.jpg") center/cover no-repeat;
}
.container .slideshow .slide .slide-title {
  position: absolute;
  top: 40vh;
  left: 2em;
}
.container .bars {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 648px;
  display: flex;
}
.container .bars .bar {
  flex: 1;
  background: #2c3e50;
  transform: scaleY(0);
  transform-origin: top;
}
.container .nav-dots {
  position: absolute;
  left: 2em;
  bottom: 5em;
  z-index: 1;
  display: flex;
  margin: 0;
  list-style-type: none;
}
.container .nav-dots .dot {
  width: 1em;
  height: 1em;
  margin: 1em;
}
.container .nav-dots .dot a {
  position: relative;
  display: block;
  height: 1em;
  line-height: 1em;
}
.container .nav-dots .dot a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.container .nav-dots .dot a:hover::before {
  background: rgba(255, 255, 255, 0.6);
}
.container .nav-dots .dot a.active::before {
  background: rgba(255, 255, 255, 0.8);
}