.btn {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 1px solid #e1e1e1;
  font: 12px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn::after {
  transition: border 0.1s linear 0.05s;
}
.btn .btn-inner {
  position: relative;
  z-index: 2;
}
.btn:hover {
  color: #373737;
  transition: color 0.1s linear 0s;
}
.btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.btn:hover::after {
  border-color: #373737;
  transition: border 0.1s linear 0s;
}

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 0px;
  text-shadow: 0px 0px 4px #000000;
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
  /*content: "";*/
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}


.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font-family: 'Montserrat', sans-serif;
  line-height: 60px;
  font-weight: 400;
  font-size: 50px;
  text-align: left;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 700px) {
  .slideshow .slide .title {
    width: 700px;
    margin-left: -450px;
    margin-top: 70px;
    font-size: 40px;
    font-weight: 300;
  }
}

@media screen and (max-width: 700px) {
  .slideshow .slide .title {
    margin: 0 auto 15px;
    max-width: 1000px;
    font-family: 'Montserrat', sans-serif;
    line-height: 40px;
    font-weight: 100;
    font-size: 30px;
    text-align: left;
    padding-right: 20px;
    padding-left: 3px;
}
  
  .slideshow .slide .caption {
    padding: 0px 20px;
  }
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background: #fff;
}
.slideshow .pagination {
  position: absolute;
  margin-top: 0px;
  line-height: 12px;
  right: 0px;
  float: right;
  width: 50px;
  height: 100vh;
  cursor: default;
  z-index: 2;
  text-align: center;
  background-color: rgb(190, 152, 79, .75);
}
.slideshow .pagination .item {
  display: block;
  padding: 6px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  font-size: 11px!important;
  color: transparent;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  margin-top: 1px;
  margin-left: 9px;
  content: "";
  display: block;
  position: absolute;
  color: rgb(255, 255, 255);
  /*top: 15px;
  left: 5px;*/
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #000;
  border-radius: 30px;
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active {
  color: rgba(255, 255, 255, 0);
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: rgb(0, 0, 0);
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 30px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 30px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}
