.owl-carousel,
.owl-carousel .slider-item,
.owl-carousel .slider-item .slider-text {
  height: 100vh;
}

/*------------ owl-carousel -------------------*/
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y !important;
  touch-action: pan-y !important;
}

.owl-carousel .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: #fff;
  background-color: #000;
}

.owl-carousel .slider-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0, 0, 0, 0.7);
}

.slider-text {
  width: 100%;
  padding-right: 50px;
  padding-left: 50px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.slider-text p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.slider-button {
  background: rgb(0, 0, 0, 0.4);
  border: 1px solid #fff;
  border-radius: 0px;
  color: #fff;

  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  padding: 1rem;
  font-size: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .slider-button {
    padding: 1rem 1.5rem;
  }
}

.slider-button:hover {
  background: rgb(255, 255, 255, 0.4);
  color: #000;
}

.slider-button:focus {
  outline: 0;
  box-shadow: none;
}

/*------------ owl-dots -------------------*/
.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;

  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .owl-carousel .owl-dots {
    bottom: 40px;
  }
}

.owl-carousel .owl-dots .owl-dot {
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 18px;
  height: 18px;
  margin: 5px;
  border-radius: 50%;
  background: none;
  outline: none;
  position: relative;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: inline-block;
}

.owl-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;

  position: absolute;
  border-radius: 50% !important;
  left: 50%;
  top: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.owl-carousel .owl-dots .owl-dot.active {
  border: 2px solid white;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: white;
}

/*------------ owl-nav -------------------*/

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  color: rgba(255, 255, 255, 0.5);
  margin: 15px;
  width: 20px;
  height: 20px;
}
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  color: rgba(255, 255, 255, 1);
}

.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.owl-carousel .owl-nav button.owl-next {
  right: 0;
}
/*------------ animated -------------------*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    visibility: visible;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    visibility: visible;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
