.anim-slider{
	background:transparent url("../images/slide/loading_spinner.gif");
	background-repeat: no-repeat;
    background-position: center; 
	width:100%;
    height: 450px;
	}
.anim-slide{opacity: 0;}
.anim-slide-this{opacity: 1;}


li.anim-slide:nth-of-type(1){background:transparent url("../images/slide/1bg.jpg") 100%/cover;}
li.anim-slide:nth-of-type(2){background:transparent url("../images/slide/2bg.jpg") 100%/cover;}
li.anim-slide:nth-of-type(3){background:transparent url("../images/slide/3bg.jpg") 100%/cover;}


/* SLIDE Button */
li.anim-slide >button
{
    display: inline-block;
    margin: 240px -290px;
    border: none;
    background: transparent;
}

button {
    display: inline-block;
    margin: 250px -350px;
    border: none;
    background: transparent;
}

#slide1-01,
#slide2-01,
#slide3-01 {
    color: #FFF;
    text-align: center;
    margin: 0 auto;
	padding: 0;
    width: 60%;
    Top: 35%;
    left: 20%;
    font-size: 48px;
    line-height: 1.25;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-fw {
  width: 1.2857142857142858em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571428572em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}


  /******Slider****/
  .anim-slider
  {
  list-style-type: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  padding:0;
  margin:0;
  
  }
  /********Slides**********/
  .anim-slide
  {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  }
  .anim-slide *
  {
  position: absolute;
  opacity: 0;
  }
  /*****Current Slide******/
  .anim-slide-this
  {
  z-index: 100;
  } 
  .anim-slide-this *
  {
  opacity: 1;
  }
  /***********************************************************/
  /* Initial position and style of each element in the Slide */
  /***********************************************************/
  





  /*******Arrows********/
  nav.anim-arrows>span
  {
  position: absolute;
  top: 48%;
  z-index: 2000;
  opacity: 0;
  -webkit-transition: opacity .4s ease-in;
  -moz-transition: opacity .4s ease-in;
  -ms-transition: opacity .4s ease-in;
  -o-transition: opacity .4s ease-in;
  transition: opacity .4s ease-in;
  }
  nav.anim-arrows>span.anim-arrows-prev,
  nav.anim-arrows>span.anim-arrows-next
  {
  color: #fff;
  position: absolute;
  padding: 2px 10px;
  }
  nav.anim-arrows>span.anim-arrows-prev
  {
  left: 1%;
  }
  nav.anim-arrows>span.anim-arrows-next
  {
  right: 1%;
  }
  .anim-slider:hover>nav.anim-arrows>span
  {
  opacity:1;
  cursor: pointer;
  }
  /********Dots************/
  .anim-dots
  {
  width: 100%;
  position: absolute;
  text-align: center;
  left: 0px;
  bottom: 20px;
  z-index: 2000;
  }
  .anim-dots span
  {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
  margin: 3px;
  cursor: pointer;
  box-shadow: 
  	1px 1px 1px rgba(0,0,0,0.1) inset, 
  	1px 1px 1px rgba(255,255,255,0.1);
  }
  
  .anim-dots span:after
  {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 2px;
  left: 2px;
  background: rgba(255,255,255,0.5);
  }
  
  .anim-dots span.anim-dots-this:after
  {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 2px;
  left: 2px;
  background: #fff;
  }

  .delay0-5s{-webkit-animation-delay:1s;animation-delay:.5s;}
  .delay1s{-webkit-animation-delay:1s;animation-delay:1s;}
  .delay1-5s{-webkit-animation-delay:1.5s;animation-delay:1.5s;}
  .delay2s{-webkit-animation-delay:2s;animation-delay:2s;}
  .delay2-5s{-webkit-animation-delay:2.5s;animation-delay:2.5s;}
  .delay3s{-webkit-animation-delay:3s;animation-delay:3s;}
  .delay3-5s{-webkit-animation-delay:3.5s;animation-delay:3.5s;}
  .delay4s{-webkit-animation-delay:4s;animation-delay:4s;}
  .delay4-5s{-webkit-animation-delay:4.5s;animation-delay:4.5s;}
  .delay5s{-webkit-animation-delay:5s;animation-delay:5s;}
  .delay5-5s{-webkit-animation-delay:5.5s;animation-delay:5.5s;}
  .delay6s{-webkit-animation-delay:6s;animation-delay:6s;}
  .delay6-5s{-webkit-animation-delay:6.5s;animation-delay:6.5s;}
  .delay13s{-webkit-animation-delay:13s;animation-delay:13s;}



@-webkit-keyframes bounceright {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(3px);
  }
}

@keyframes bounceright {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(3px);
  }
}

@media screen and (max-width: 1280px) {  
	.anim-slider{
		height: 422px;
	}
	.fa-5x {
		font-size: 4.5em;
	}
	

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 45px;
	}

}

@media screen and (max-width: 1024px) {  
	.anim-slider{
		height: 337px;
	}
	.fa-5x {
		font-size: 4.5em;
	}

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 36px;
	}

}

@media screen and (max-width: 800px) {  
	.anim-slider{
		height: 264px;
	}
	.fa-5x {
		font-size: 3.5em;
	}

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 28px;
	}
}

@media screen and (max-width: 773px) {  
	.anim-slider{
		height: 255px;
	}
	.fa-5x {
		font-size: 3.5em;
	}

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 27px;
	}
}

@media screen and (max-width: 768px) {  
	.anim-slider{
		height: 253px;
	}
	.fa-5x {
		font-size: 3.5em;
	}

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 27px;
	}
}

@media screen and (max-width: 736px) {  
	.anim-slider{
		height: 243px;
	}
	.fa-5x {
		font-size: 3.5em;
	}

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 26px;
	}
}

@media screen and (max-width: 667px) {  
	.anim-slider{
		height: 220px;
	}
	.fa-5x {
		font-size: 3.5em;
	}

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 23px;
	}
}

@media screen and (max-width: 640px) {  
	.anim-slider{
		height: 211px;
	}
	.fa-5x {
		font-size: 3.5em;
	}

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 22px;
	}
}

@media screen and (max-width: 568px) {  
	.anim-slider{
		height: 187px;
	}
	.fa-5x {
		font-size: 3.5em;
	}

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 20px;
	}
}


@media screen and (max-width: 480px) {  
	.anim-slider{
		height: 158px;
	}
	.fa-5x {
		font-size: 3em;
	}
	  .anim-dots
	  {
	  display: none;
	  }

	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 17px;
	}
}


@media screen and (max-width: 414px) {  
	.anim-slider{
		height: 136px;
	}
	.fa-5x {
		font-size: 2.5em;
	}
	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 15px;
	}
}

@media screen and (max-width: 375px) {  
	.anim-slider{
		height: 123px;
	}
	.fa-5x {
		font-size: 2em;
	}
	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 13px;
	}
}

@media screen and (max-width: 325px) {  
	.anim-slider{
		height: 107px;
	}
	.fa-5x {
		font-size: 1.5em;
	}
	#slide1-01,
	#slide2-01,
	#slide3-01 {
		font-size: 12px;
	}
}