/*------------------------------------*\
    Intro
\*------------------------------------*/
.intro {
    position: relative;
    margin: 0 auto 40px;
}

.intro .emo-img {
    width: 100%;
    height: auto;
    display: block;
	border: 0px;
}

.emo-text {
    position: absolute;
	bottom: 0;
	width: 100%;
}

.emo-text .container {
    position: relative;
    padding: 0;
}

.emo-text h1 {
	display: inline-block;
    font-size: 25px;
    margin: 0;
    text-transform: uppercase;
    padding: 35px 35px 25px 0;
	background-color: #b9f364;
}

.emo-text .container::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    right: 100%;
    background-color: #b9f364;
}


@media only screen and (max-width: 1230px){
    .emo-text h1 {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 1024px){
    .emo-text h1 {
        font-size: 20px;
		padding: 25px 35px 20px 30px
    }
}


@media only screen and (max-width: 768px){
	.intro {
		margin: 0 0 20px;
	}
	
    .intro .emo-text,
	.intro.big .emo-text {
		position: relative;
        font-size: 24px;
        bottom: 0;
		background-color: #b9f364;
    }
	
	.emo-text h1 {
		font-size: 18px;
		padding: 25px 0 20px 0
    }
	
	.emo-text .container {
		padding: 0 30px;
	}
}