/**
 * Base slidizle styling :
 */
/* line 4, ../sass/_slidizle.scss */
.html-content .slidizle {
  position: relative;
  overflow: hidden;
}

/* line 8, ../sass/_slidizle.scss */
.html-content .slidizle-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 13, ../sass/_slidizle.scss */
.html-content .slidizle-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  display: none;
}

/* line 21, ../sass/_slidizle.scss */
.html-content .slidizle-slide.active {
  display: block;
}

/* line 25, ../sass/_slidizle.scss */
.html-content .slidizle-navigation {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* line 32, ../sass/_slidizle.scss */
.html-content .slidizle-navigation li {
  display: inline-block;
  width: 236px;
  height: 140px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: white;
  color: #000;
  font-size: 18px;
  margin: 0 8px;
  cursor: pointer;
  -moz-transition: opacity 0.2s ease-in-out 0s;
  -o-transition: opacity 0.2s ease-in-out 0s;
  -webkit-transition: opacity 0.2s ease-in-out;
  -webkit-transition-delay: 0s;
  transition: opacity 0.2s ease-in-out 0s;
}

/* line 44, ../sass/_slidizle.scss */
.html-content .slidizle-navigation li:hover,
.html-content .slidizle-navigation li.active {
  opacity: 1;
}

/* line 50, ../sass/_slidizle.scss */
.html-content .slidizle-next,
.html-content .slidizle-previous {
  color: white;
  font-size: 30px;
  position: absolute;
  top: 50%;
  z-index: 30;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 1;
  -moz-transition: opacity 0.2s ease-in-out 0s;
  -o-transition: opacity 0.2s ease-in-out 0s;
  -webkit-transition: opacity 0.2s ease-in-out;
  -webkit-transition-delay: 0s;
  transition: opacity 0.2s ease-in-out 0s;
}

/* line 62, ../sass/_slidizle.scss */
.html-content .slidizle-next.disabled,
.html-content .slidizle-previous.disabled {
  opacity: .2;
  cursor: default;
}

/* line 67, ../sass/_slidizle.scss */
.html-content .slidizle-next {
  right: 30px;
}

/* line 70, ../sass/_slidizle.scss */
.html-content .slidizle-previous {
  left: 30px;
}

/* line 74, ../sass/_slidizle.scss */
.html-content .slidizle-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333 url("../img/loader.gif") no-repeat 50% 82%;
  opacity: 0;
  pointer-events: none;
  -moz-transition: opacity 0.2s ease-in-out 0s;
  -o-transition: opacity 0.2s ease-in-out 0s;
  -webkit-transition: opacity 0.2s ease-in-out;
  -webkit-transition-delay: 0s;
  transition: opacity 0.2s ease-in-out 0s;
}

/* line 83, ../sass/_slidizle.scss */
.html-content .loading .slidizle-loading {
  opacity: .8;
  pointer-events: auto;
}

/* line 6, ../sass/style.scss */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 9, ../sass/style.scss */
/*body {
  color: white; }*/


/* line 22, ../sass/style.scss */
.html-content .container {
  box-sizing: border-box;
  /* padding: 20px; */
  max-width: 1500px;
  margin: 200px auto 0;
  overflow: hidden;
  background: url(../image/introduction.png) no-repeat top center
}

/**
 * Text :
 */
/* line 31, ../sass/style.scss */
.text {
  text-align: center;
  color: #393939;
  padding: 100px;
}

/**
 * Sample :
 */
/* line 41, ../sass/style.scss */
.html-content .sample {
  position: relative;
  width: 100%;
  height: 0;
  text-align: center;
  height: 443px;
}

/* line 48, ../sass/style.scss */
.html-content .sample header {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-shadow: black 0 0 50px;
  background: rgba(0, 0, 0, 0.3);
  padding: 50px 150px;
  z-index: 20;
}

/**
 * Slider progressbar
 */
/* line 64, ../sass/style.scss */
.html-content .slider-progressbar {
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fbd665;
  z-index: 20;
}

/**
 * Animated slider
 */
/* line 79, ../sass/style.scss */
.html-content .slider--animated .slidizle-content>.active~.slidizle-slide {
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

/* line 84, ../sass/style.scss */
.html-content .slider--animated .slidizle-slide {
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -moz-transition: -moz-transform 0.5s ease-in-out 0s;
  -o-transition: -o-transform 0.5s ease-in-out 0s;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  transition: transform 0.5s ease-in-out 0s;
  display: block !important;
}

/* line 89, ../sass/style.scss */
.html-content .slider--animated .slidizle-slide.active {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  z-index: 2;
}

/* line 98, ../sass/style.scss */
.html-content .slider--animated-up-down .slidizle-content>.active~.slidizle-slide {
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

/* line 103, ../sass/style.scss */
.html-content .slider--animated-up-down .slidizle-slide {
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -moz-transition: -moz-transform 0.5s ease-in-out 0s;
  -o-transition: -o-transform 0.5s ease-in-out 0s;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -webkit-transition-delay: 0s;
  transition: transform 0.5s ease-in-out 0s;
  display: block !important;
}

/* line 108, ../sass/style.scss */
.html-content .slider--animated-up-down .slidizle-slide.active {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  z-index: 2;
}

/**
 * Custom navigation :
 */
/* line 119, ../sass/style.scss */
.html-content .slidizle-navigation .slider-navigation-item {
  width: 50px;
  height: 30px;
  background-size: cover;
  background-position: 50% 50%;
  border: 2px solid white;
}

.html-content .main5 .slider-item {
  width: 1046px;
  height: 556px;
  position: relative;
}

.html-content .main5 .slider-item img {
  width: 1046px;
  height: 556px;
}

.html-content #ttt {
  background: url(../images/banner-bg.png) repeat-x left top;
  box-sizing: border-box;
  padding: 75px 30px 0 30px;
  height: 192px;
  position: absolute;
  bottom: 124px;
  width: 100%;
  color: #fff;
  font-size: 24px;
}

.html-content .slider-navigation li img {
  width: 236px;
  height: 140px;
}