@charset "utf-8";
/* CSS Document */


@keyframes carousel-slide {
    from {
        left: 0;
    }
    to {
        left: -10%;
    }
}
@keyframes carousel-zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(2);
    }
}
@keyframes carousel-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes carousel-fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes carousel-width {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.carousel {
    position: relative;
    width: 100vw;
    height: 78vh;
    overflow: hidden;
    z-index: 0;
}
.carousel .carousel-element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.carousel .carousel-element img, .carousel .carousel-element video {
    position: absolute;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-name: carousel-slide;
    transform: scale(1.2);
}
.carousel .carousel-indicators {
    position: absolute;
    bottom: 1em;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.carousel .carousel-indicator {
    display: inline-block;
    box-sizing: border-box;
    width: 1em;
    height: 1em;
    border-color: #ffffff;
    border-style: solid;
    border-width: 0.2em;
    border-radius: 0.5em;
    cursor: pointer;
    background-color: rgba(255,255,255,0);
    transition: background-color 500ms ease 0s;
}
.carousel .carousel-indicator.active {
    background-color: rgba(255,255,255,1);
}
.carousel .carousel-start {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: carousel-fade-in 1000ms linear 0s 1 both,
    carousel-fade-out 500ms linear 1000ms 1 forwards;
}
.carousel .carousel-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    background-color: #0068b7;
    animation: carousel-width 1200ms linear 0s 1 both;
}
.carousel .carousel-front {
    position: absolute;
    left: 5%;
    bottom: 12%;
    z-index: 9;
    display: none;
	letter-spacing:3px;
	font-weight:800;
	text-shadow:3px 3px #572C00;
}
.b_text{
	font-size:420%;
}


.s_text{
	font-size:197%;
}

@keyframes slidingfadein-fade-in {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slidingfadein {
    opacity: 0;
}

.slidingfadein-active {
    animation: slidingfadein-fade-in 1000ms linear 0ms 1 both;
    transition: color linear 1000ms;
}

a.under_btn{
  padding-top: 60px;
  position:relative;
  bottom:70px;
  color:#FFF;
  letter-spacing:2px;
  left:48%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
}




a.under_btn span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
a.under_btn span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}








