* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.opacFull {
  opacity: 1 !important;
}

.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.site-slider {
  position: relative;
  height: 100%;
}
.site-slider li {
  line-height: 0;
  list-style: none;
  height: 100%;
}

.slider-img {
  width: 100%;
  height: 100%;
}

.slider-text {
  position: absolute;
  top: 50%;
  left: 100px;
  line-height: normal;
  color: #fff;
  transform: translateY(-50%);
}
.slider-text h3 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
  opacity: 0;
}
.slider-text p {
  font-size: 18px;
  opacity: 0;
}

.owl-dots {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  display: block;
  margin: 10px 0;
  border-radius: 50%;
}
.owl-dots .owl-dot.active {
  /*background: #e05038;*/
  background: #f8b018;
background: -webkit-linear-gradient(to bottom, #f6d01c, #f8b018);
background: linear-gradient(to bottom, #f6d01c, #f8b018);
  transform: scale(1.5);
}

.animate-in-fast {
  animation: in-fast 1000ms ease-in-out forwards;
}

@keyframes in-fast {
  0% {
    opacity: 0;
    transform: translateX(-3em);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-in-slow {
  animation: in-slow 1000ms linear forwards;
}

@keyframes in-slow {
  0% {
    opacity: 0;
    transform: translateX(3em);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}