/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
/* .slick-slide img {
  display: block;
} */
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-prev {
  display: none;
}
.slick-next {
  display: none;
}

.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 73px;
  padding: 0;
  cursor: pointer;
  color: #f00;
  border: none;
  outline: none;
  background: #090;
  background: url(../img/right_arrow.png) no-repeat;
}

.slick-next:hover {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 73px;
  padding: 0;
  cursor: pointer;
  color: #f00;
  border: none;
  outline: none;
  background: #090;
  background: url(../img/right_arrow_h.png) no-repeat;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s; /* Safari */
}

.slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 73px;
  padding: 0;
  cursor: pointer;
  color: #f00;
  border: none;
  outline: none;
  background: #090;
  background: url(../img/left_arrow.png) no-repeat;
}

.slick-prev:hover {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 73px;
  padding: 0;
  cursor: pointer;
  color: #f00;
  border: none;
  outline: none;
  background: #090;
  background: url(../img/left_arrow_h.png) no-repeat;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s; /* Safari */
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;

  opacity: 0.75;
  color: white;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 124px;
}
[dir="rtl"] .slick-prev {
  right: -10px;
  left: auto;
}

.slick-next {
  right: 124px;
}
[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
  display: none;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  display: none;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  display: none;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: none;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/*bs-slider*/

.bs-slider {
  background: #000000 none repeat scroll 0 0;
  max-height: 570px;
  overflow: hidden;
  position: relative;
  margin-top: 38px;
}
.bs-slider:hover {
  cursor: grab;
}
.bs-slider:active {
  cursor: grabbing;
}
.bs-slider .bs-slider-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.bs-slider > .carousel-inner > .item > img,
.bs-slider > .carousel-inner > .item > a > img {
  margin: auto;
  width: 100% !important;
}
.fade {
  opacity: 1;
}
.fade .item {
  display: block !important;
  left: 0 !important;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 1s ease-in-out 0s;
  width: 100%;
  z-index: 1;
}
.fade .item:first-child {
  position: relative;
  top: auto;
}
.fade .item.active {
  opacity: 1;
  transition: opacity 1s ease-in-out 0s;
  z-index: 2;
}
.control-round .carousel-control {
  background: transparent none repeat scroll 0 0;
  border-radius: 100px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 24px;
  font-weight: normal;
  height: 45px;
  line-height: 43px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  text-shadow: none;
  top: 47%;
  width: 45px;
  z-index: 100;
}
.control-round:hover .carousel-control {
  opacity: 1;
}
.control-round .carousel-control.left {
  left: 1%;
}
.control-round .carousel-control.right {
  right: 1%;
}
.control-round .carousel-control.left:hover,
.control-round .carousel-control.right:hover {
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  border: 0 none transparent;
  color: #fdfdfd;
}
.control-round .carousel-control.left > span:nth-child(1) {
  left: 45%;
}
.control-round .carousel-control.right > span:nth-child(1) {
  right: 45%;
}
.indicators-line > .carousel-indicators {
  bottom: 3%;
  font-size: 0;
  height: 20px;
  left: auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 1px;
  right: 45%;
  text-align: right;
  white-space: nowrap;
  width: 90%;
}
.indicators-line > .carousel-indicators li {
  background: rgb(158, 158, 158) none repeat scroll 0 0;
  border: 1px solid rgb(158, 158, 158);
  border-radius: 50%;
  cursor: pointer;
  height: 15px;
  letter-spacing: 1px;
  margin-right: 5px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  text-indent: 0;
  transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99) 0s;
  width: 15px;
  z-index: 10;
}
.indicators-line > .carousel-indicators li:last-child {
  margin-right: 0;
}
.indicators-line > .carousel-indicators .active {
  background-color: transparent;
  box-shadow: 0 0 0 2px #fff;
  margin: 1px 5px 1px 1px;
  position: relative;
  transition: background-color 0.3s ease 0s;
}
.indicators-line > .carousel-indicators .active::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 15px;
  left: -1px;
  position: absolute;
  top: -1px;
  transform: scale(0.5);
  transition: background-color 0.3s ease 0s;
  width: 15px;
}
.slide_style_left {
  text-align: left !important;
}
.slide_style_right {
  text-align: right !important;
}
.slide_style_center {
  text-align: center !important;
}
.slide-text {
  left: 0;
  margin: auto;
  padding: 10px 85px;
  position: absolute;
  right: 0;
  text-align: left;
  top: 35%;
}
.slide-text > h1 {
  animation-delay: 0.7s;
  color: #ffffff;
  display: inline-block;
  font-size: 60px;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 70px;
  margin-bottom: 0px;
  padding: 0;
  font-weight: bold;
  letter-spacing: 8px;
}
.slide-text > p {
  animation-delay: 1.1s;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 30px;
  margin-bottom: 40px;
  padding: 0;
  font-family: "Montserrat Alternates";
}
.slide-text > a.btn-default {
  animation-delay: 2s;
  border: medium none;
  color: #000;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 15px;
  margin-right: 10px;
  padding: 17px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out 0s, color 0.3s ease-in-out 0s;
  white-space: nowrap;
}
.slide-text > a.btn-primary {
  animation-delay: 2s;
  background: #00bfff none repeat scroll 0 0;
  border: medium none;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 15px;
  margin-left: 10px;
  padding: 17px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out 0s, color 0.3s ease-in-out 0s;
  white-space: nowrap;
}
.slide-text > a:hover,
.slide-text > a:active {
  background: #222222 none repeat scroll 0 0;
  color: #ffffff;
  transition: background 0.5s ease-in-out 0s, color 0.5s ease-in-out 0s;
}
@media (max-width: 991px) {
  .slide-text h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .slide-text > p {
    font-size: 18px;
    font-family: "Segoe UI";
  }
}
@media (max-width: 768px) {
  .slide-text {
    padding: 10px 50px;
  }
  .slide-text h1 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .slide-text > p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    font-family: "Segoe UI";
  }
  .control-round .carousel-control {
    display: none;
  }
}
@media (max-width: 480px) {
  .slide-text {
    padding: 10px 30px;
  }
  .slide-text h1 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 5px;
  }
  .slide-text > p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
    font-family: "Segoe UI";
  }
  .slide-text > a.btn-default,
  .slide-text > a.btn-primary {
    font-size: 10px;
    line-height: 10px;
    margin-right: 10px;
    padding: 10px 15px;
    text-align: center;
  }
  .indicators-line > .carousel-indicators {
    display: none;
  }
}

.control-round .carousel-control.right {
  right: 1%;
  display: none;
}

.control-round .carousel-control.left {
  left: 1%;
  display: none;
}
