.simple-marquee-container *{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
	font-family: 'Lora';
		font-size: 54px;
}
.simple-marquee-container {
	width: 100%;
	background: #EDAB00;
	float: left;
	display: inline-block;
	overflow: hidden;
	box-sizing: border-box;
	height: 140px;
	position: relative;
	cursor: pointer;
}

.simple-marquee-container .marquee-sibling {
	padding: 0;
	width: 4%;
	height: 140px;
	line-height: 120px;
background-color: white;
	color: #ffffff;
	float: left;
	left: 0;
	z-index: 2000;
	position: relative;
	opacity: 0;
}

.simple-marquee-container .marquee, .simple-marquee-container *[class^="marquee"] {
	display: inline-block;
	white-space: nowrap;
	position:absolute;
}

.simple-marquee-container .marquee{
  margin-left: 25%;
}

.simple-marquee-container .marquee-content-items{
  display: inline-block;
  padding: 0 0 0 0px ;
  margin: 0;
  height: 140px;
  position: relative;
}

.simple-marquee-container .marquee-content-items li{
  display: inline-block;
  line-height: 130px;
  color: #fff;
  position: relative;
  margin-left: 115px;
}

.simple-marquee-container .marquee-content-items li:after{
	content: "";
	margin: 0 15px;
}

.marquee-content-items li.fly::before{
content:'';
background-image: url(../images/fly-white.svg);
background-repeat: no-repeat;
display: block;
width: 100px;
height: 140px;
position: absolute;
background-position: center right -5px;

left: -130px;
}

.marquee-content-items li.leaf::before{
content:'';
background-image: url(../images/leaf-white.svg);
background-repeat: no-repeat;
display: block;
width: 100px;
height: 140px;
position: absolute;
background-position: center right;

left: -130px;
}


@media(max-width:767px) {
	.simple-marquee-container {
	width: 100%;
	background: #EDAB00;
	float: left;
	display: inline-block;
	overflow: hidden;
	box-sizing: border-box;
	height: 90px;
	position: relative;
	cursor: pointer;
}
.simple-marquee-container .marquee-sibling {
	padding: 0;
	width: 4%;
	height: 90px;
	line-height: 120px;
background-color: white;
	color: #ffffff;
	float: left;
	left: 0;
	z-index: 2000;
	position: relative;
	opacity: 0;
}	
	.simple-marquee-container .marquee-content-items{
  display: inline-block;
  padding: 0 50px;
  margin: 0;
  height: 90px;
  position: relative;
}
.marquee-content-items li.fly::before{
content:'';
background-image: url(../images/fly-white.svg);
background-repeat: no-repeat;
display: block;
width: 100px;
height: 90px;
position: absolute;
background-position: center right -5px;
background-size: auto 80px;
left: -130px;
}

.marquee-content-items li.leaf::before{
content:'';
background-image: url(../images/leaf-white.svg);
background-repeat: no-repeat;
display: block;
width: 100px;
height: 90px;
position: absolute;
background-position: center right;
background-size: auto 70px;
left: -130px;
}	

	
	.simple-marquee-container .marquee-content-items li {
		line-height: 90px
	}
	
}

