.spacom-ss {
  width: 100%;
  height: 800px;
  overflow: hidden;
  position: relative;
  /* Dots */
}
.spacom-ss .slide {
  height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.spacom-ss .slide.haslink {
  cursor: pointer;
}
.spacom-ss .slide .details {
  position: absolute;
  bottom: 0;
  min-height: 240px;
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  padding: 44px 0;
  /* Arrows */
}
@media screen and (min-width: 768px) {
  .spacom-ss .slide .details {
    min-height: 320px;
  }
}
.spacom-ss .slide .details .arrow-left,
.spacom-ss .slide .details .arrow-right {
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 100%;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.spacom-ss .slide .details .arrow-left:hover, .spacom-ss .slide .details .arrow-left:focus,
.spacom-ss .slide .details .arrow-right:hover,
.spacom-ss .slide .details .arrow-right:focus {
  color: transparent;
  outline: none;
  background: rgba(0, 0, 0, 0.5);
}
.spacom-ss .slide .details .arrow-left:hover:before, .spacom-ss .slide .details .arrow-left:focus:before,
.spacom-ss .slide .details .arrow-right:hover:before,
.spacom-ss .slide .details .arrow-right:focus:before {
  opacity: 1;
}
.spacom-ss .slide .details .arrow-left:before,
.spacom-ss .slide .details .arrow-right:before {
  /* stylelint-disable font-family-no-missing-generic-family-keyword */
  font-family: "FontAwesome";
  /* stylelint-enable font-family-no-missing-generic-family-keyword */
  font-size: 32px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.spacom-ss .slide .details .arrow-left {
  left: 0;
}
.spacom-ss .slide .details .arrow-left:before {
  content: "\f053";
}
.spacom-ss .slide .details .arrow-right {
  right: 0;
}
.spacom-ss .slide .details .arrow-right:before {
  content: "\f054";
}
.spacom-ss .slide .details-text-container {
  width: 60%;
  max-width: 1120px;
  margin: 0 auto;
  color: #FFF !important;
  position: relative;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .spacom-ss .slide .details-text-container {
    padding: 0 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    display: block;
    height: auto;
  }
}
.spacom-ss .slide .details-text-container .slide-title {
  font-size: 48px;
  text-transform: uppercase;
  color: #FFF !important;
  font-weight: 700;
  text-shadow: 1px 1px 5px black;
  width: 100%;
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spacom-ss .slide .details-text-container .slide-title {
    text-align: left;
    font-size: 52px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1;
  }
}
@media screen and (min-width: 1200px) {
  .spacom-ss .slide .details-text-container .slide-title {
    font-size: 70px;
  }
}
.spacom-ss .slide .details-text-container .slide-description {
  text-shadow: 1px 1px 3px black;
  display: none;
}
@media screen and (min-width: 768px) {
  .spacom-ss .slide .details-text-container .slide-description {
    display: block;
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .spacom-ss .slide .details-text-container .slide-description {
    font-size: 24px;
  }
}
.spacom-ss .slide .details-text-container .slide-link {
  text-transform: uppercase;
  color: white !important;
  text-shadow: 1px 1px 3px black;
  font-weight: bold;
  border-bottom: 1px solid #FFF;
}
.spacom-ss .slide .details-text-container .slide-index {
  position: absolute;
  left: -58px;
  top: 1px;
  text-shadow: 1px 1px 3px black;
  display: none;
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .spacom-ss .slide .details-text-container .slide-index {
    display: block;
  }
}
.spacom-ss .slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.spacom-ss .slick-dots {
  position: absolute;
  bottom: 16px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spacom-ss .slick-dots {
    bottom: 24px;
  }
}
.spacom-ss .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
}
.spacom-ss .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.spacom-ss .slick-dots li button:hover,
.spacom-ss .slick-dots li button:focus {
  outline: none;
}
.spacom-ss .slick-dots li button:hover:before,
.spacom-ss .slick-dots li button:focus:before {
  opacity: 1;
}
.spacom-ss .slick-dots li button:before {
  /* stylelint-disable font-family-no-missing-generic-family-keyword */
  font-family: "FontAwesome";
  /* stylelint-enable font-family-no-missing-generic-family-keyword */
  font-size: 24px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  content: "\f1db";
  text-align: center;
  opacity: 1;
  color: white;
  text-shadow: 1px 1px 5px black;
}
@media screen and (min-width: 768px) {
  .spacom-ss .slick-dots li button:before {
    font-size: 24px;
  }
}
.spacom-ss .slick-dots li.slick-active button:before {
  content: "\f111";
}
