/************************************
             swiper
*************************************/

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.69), transparent);
  content: '';
  width: 100%;
  height: 15.625rem;
  top: 0;
  left: 0;
  position: absolute;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  animation: pulse-slide 24s linear infinite;
  -moz-animation: pulse-slide 24s linear infinite;
  -webkit-animation: pulse-slide 24s linear infinite;
}

@keyframes pulse-slide {
  from {
    transform: scale(1.2);
  }

  50% {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
}

.swiper-slide picture {
  background: #0077b5;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}


/* swiper - navigace */

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  background: rgba(0, 0, 0, 1) !important;
  background-image: none !important;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border-radius: 55px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 0.8;
  visibility: visible;
}

.swiper:hover .swiper-button-prev:hover,
.swiper:hover .swiper-button-next:hover {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.swiper .swiper-button-prev {
  left: 35px;
  transform: translateX(50px);
}

.swiper .swiper-button-prev:before {
  font-family: Linearicons-Free;
  content: "\e875";
  color: #fff;
  speak: none;
  font-style: normal;
  font-size: 15px;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.swiper .swiper-button-prev::after {
  content: "";
}

.swiper .swiper-button-next {
  right: 35px;
  transform: translateX(-50px);
}

.swiper .swiper-button-next:before {
  font-family: Linearicons-Free;
  content: "\e876";
  color: #fff;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.swiper .swiper-button-next::after {
  content: "";
}


@media screen and (max-width: 1000px) {

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    display: none;
  }
}


/* swiper - stránkování */

.swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  left: calc(50% - 600px) !important;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  height: auto;
  width: 20px !important;
  position: absolute;
}

.swiper-pagination-bullet {
  background: none !important;
  border: solid 1px #fff;
  opacity: 0.5 !important;
  margin: 0 0 8px 0 !important;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
  opacity: 1 !important;
}



/************************************
          swiper obsah
*************************************/

.swiper-title-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  max-width: 1220px;
  padding: 0 20px;
  width: 100%;
  transform: translate(-50%, -50%);
}

/* swiper - nadpis */

.swiper-title {
  display: block;
  height: auto;
  padding: 0 2vmin;
  position: relative;
  top: 50%;
  text-align: left;
  transform: translateY(-50%);
  width: 100%;
  max-width: 550px;
  animation: drop-title 1s ease;
  z-index: 2 !important;

}

@keyframes drop-title {
  0% {
    opacity: 0;
    top: 40%;
  }

  100% {
    opacity: 100%;
    top: 50%;
  }
}


/* swiper - text */

.swiper-title p {
  color: #fff;
  font-size: 2.75rem;
  line-height: 3rem;
  padding: 0;
  text-transform: uppercase;
  font-family: "Bebas Neue", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: bold;
  margin: 0 0 1.25rem 0;
  text-shadow: 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.69)
}


/* swiper - button left */

.swiper-title .button-left {
  color: #fff;
  cursor: pointer;
  cursor: hand;
  display: flex;
  align-items: center;
  justify-content: left;
  height: 4.5vmin;
  min-height: 30px;
  margin: 1vmin 0;
  font-family: "Nunito Sans", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  text-decoration: none;
  width: 150px;
  transition: all 0.5s ease 0s;
  text-transform: uppercase;

}

.swiper-title .button-left:link,
.swiper-title .button-center:visited {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.69)
}

.swiper-title .button-left:hover {
  color: #fff;
  outline: none !important;
}

.swiper-title .button-left:after {
  content: '\e87a';
  font-family: Linearicons-Free;
  font-size: 0.875rem;
  display: block;
  float: right;
  margin: 0 0 0 0.625rem
}