﻿
.carousel,
.item,
.active {
    height: 100%;
}

.carousel-m {
    height: 500px !important;
}


.carousel-inner {
  height: 100%;
}

.carousel-caption{padding-bottom:80px;}

.carousel-caption2 {
    top: auto !important;
    right: 10%!important;
    left: 10%!important;
    bottom: 0!important;
    text-align:center;
    margin:auto;
}
.carousel-caption {
    right: 10%;
    left: 10%;
    top: 35%;
    bottom: auto;
    padding-bottom: 30px;
}

h2{font-size: 63px;font-weight:700;}
h3{font-size: 16px;}
p{padding:10px}

.slider-image img
{
    width: auto;
    height: 250px;
    margin: auto;
    position: relative;
    top: 0px;
}


.kenz-text
{
	 font-size:45px;
	 font-weight:700;
	 text-transform:uppercase;
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    opacity:0.8;
}
.carousel-indicators {
    bottom: -25px;
}
.carousel-indicators li {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 2px;
    text-indent: -999px;
    cursor: pointer;
    background: url('../images/off.png') no-repeat center center;;
    border: 0px solid rgba(255, 255, 255, 0.0);
    border-radius:0px;
}

.carousel-indicators .active {
    width: 25px;
    height: 25px;
    margin: 2px;    
    background: url('../images/on.png') no-repeat center center;;
}


.kay-device-titie 
{
    font-size: 48px;
    color: #fff;
    line-height: 1.1;
    margin-top: 5px;
    padding-bottom: 5px;
}

.kay-device-desc {
    color: #fff;
    font-size: 19px;
    line-height: 1.6em;    
    height: 60px;
    overflow: hidden;
}


/**
 * Button
 */
.btn-transparent {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-transparent:hover {
  background-color: #fff;
}

.btn-rounded {
  border-radius: 70px;
}

.btn-large {
  padding: 11px 45px;
  font-size: 18px;
}

/**
 * Change animation duration
 */
.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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