/*header css*/
.carousel {
    position: relative;
    margin-top:90px;
	z-index: 0;
} 
.carousel-control.left {
    background-image: none;
}
.carousel-control.right {
    background-image: none;
}
.carousel-indicators {
    position: absolute;
    left: 0;
    z-index: 15;
    width: 100%;
    padding-left: 0;
    margin-left: -20px;
    text-align: right;
    list-style: none;
    bottom: 15px;
    justify-content: end;
}
.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0px 5px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000\9;
    background-color: rgba(0,0,0,0);
    border: 1px solid #fff;
    border-radius: 0;
}
.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #d42932;
}

 @-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

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

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

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

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
.carousel-caption {
    text-align: left;
    text-shadow: none;
	left: 0;
	right: 0;
	bottom: 0;
	padding-bottom: 0;
}
.carousel-caption h5{
	-webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
	transition: all 0.8s linear;
}
.carousel-caption p{
	-webkit-animation-duration: 3.5s;
    animation-duration: 3.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
	transition: all 0.8s linear;
}
.carousel-caption p span{
      text-transform: uppercase;
    font-weight: 600;
    color: #f40403;
}
.caption-arrow{
	display: inline-block;
    position: absolute;
    right: 0;
    bottom: -7px;
    padding-top: 46.5px;
    padding-bottom: 46.5px;
    background: #a22721;
    /* height: 37%; */
    padding-left: 10px;
    padding-right: 10px;
}
/*font size of 3 dot*/
h5.bounceInLeft.title-size {
    font-size: 16px;
}
.carousel-caption h5{
	font-size: 30px;
  font-family: Roboto,sans-serif;
	color: rgb(244, 247, 248);
	background: #f40403;
  display: inline-block;
  padding: 10px 30px !important;
	margin-bottom: 0;
}
.carousel-caption p{
	font-size: 24px;
  font-family: Roboto,sans-serif;
	color: rgb(244, 247, 248);
	line-height: 1.3;
	width: 41%;
	background-color: rgba(24, 24, 24, 0.902);
  padding: 20px 30px;
	margin-bottom: 0;
  font-weight: 300;
}