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

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

.intro .emo-text {
    position: absolute;
    color: #fff;
    font-size: 50px;
    bottom: 50px;
	width: 100%;
}

.intro.big .emo-text {
    bottom: 80px;
}

@media only screen and (max-width: 1024px){
    .intro .emo-text {
        font-size: 30px;
    }
}

@media only screen and (max-width: 768px){
    .intro .emo-text {
        font-size: 24px;
        bottom: 30px;
    }

    .intro.big .emo-text {
        bottom: 70px;
    }
}

@media only screen and (max-width: 600px){
    .intro .emo-text {
        font-size: 18px;
        bottom: 20px;
        width: auto;
        text-align: center;
    }

    .intro.big .emo-text {
        bottom: 50px;
    }
}

@media only screen and (max-width: 450px){
    .intro .emo-text {
        display: none;
    }
}

