body {
    width: 100%;
    margin: 0;
}




/* preloader */
#preloader {
    height: 72px;
    width: 100%;

    position: absolute;
    left: 0;
    top: 0;

    background: url(../media/preloader.gif) center center no-repeat;
}


/* Banner */
.banner {
    border: 1px solid #ccc;
    box-sizing: border-box;
    cursor: pointer;
    height: 72px;
    overflow: hidden;
    position: relative;
    width: 100%;

    background: #bbc5d7 url(../media/image.png) left center no-repeat;
    background-size: 140%;
}

.wrapper {    
    height: 72px;
    width: 100%;
    max-width: 980px;
    margin: 0 auto; 
    position: relative;
}


.btn {
    width: 150px;
    height: 52px;
    margin: 10px 10px 0 0;
    box-sizing: border-box;

    float: right;
    position: relative;

    border: 1px solid #FFF;
    background-color: #FFF;
    border-radius: 4px;

    font-size: 15px;
    text-align: center;
    color: #FFF;

    -ms-transform: translateY(-250px); /* IE 9 */
    -webkit-transform: translateY(-250px); /* Chrome, Safari, Opera */
    transform: translateY(-250px);
}

    .btn.main {
        background-color: #529628;
        border-color: #529628;
    }
    .btn.main:hover {
        background-color: #3d701e;
    }
    .btn.second {
        background-color: #5d626b;               
    }
    .btn.second:hover {
        background-color: #464950;
    }

    .btn #bg_btn {        
        width: 100%;
        height: 100%;

        position: absolute;        
        left: 0;
        top: 0;
    }
    .btn .txtCta {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }


.question { 
    width: 50%;
    height: 52px;
    margin: 10px 1em 0 0;
    box-sizing: border-box;

    float: right;
    position: relative;
   
    font-size: 28px;
    text-align: left;
    color: #FFF;

    -ms-transform: translateY(-250px); /* IE 9 */
    -webkit-transform: translateY(-250px); /* Chrome, Safari, Opera */
    transform: translateY(-250px);
}


    .question #bg_question {
        width: 100%;
        height: 100%;

        position: absolute;        
        left: 0;
        top: 0;
    }

    .question .txtQuestion {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;

        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }


.clickLayer {
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;
}



/* 
 * 
 * Custom CSS - 740px
 *
 */

@media screen and (max-width: 740px) {
    
    /* Banner */
    .banner {
        background-size: 120%;
    }

    /* Question */
    .question {        
        max-width: 80%;
        width: 100%;
        height: 30px;
        margin: 0;
        position: absolute;
        right: 10px;

        font-size: 14px;
        line-height: 30px;
        text-align: right;
    }
        .question .txtQuestion {
            height: 30px;                    
            top: 0 !important;
        }

    /* Button */
    .btn {
        margin-top: 30px;
        width: 116px;
        height: 36px;

        font-size: 12px;
    }
}

@media screen and (min-width: 740px) {

    /* Banner */
    .banner {        
        background-size: 80%;
    }

    /* Question */
    .question {
        width: 25%;
        font-size: 18px;
    }

    /* Button */
    .btn {
        width: 150px;
        height: 52px;

        font-size: 15px;
    }
}



/* 
 * 
 * Custom CSS - 980px
 *
 */


@media screen and (min-width: 980px) {

    /* Banner */
    .banner {
        background-size: 95%;
    }

    /* Question */
    .question {
        width: 37.5%;
        font-size: 22px;
    }
}


/* 
 * 
 * Custom CSS - 1270px
 *
 */


@media screen and (min-width: 1270px) {

    /* Banner */
    .banner {
        background-size: 80%;
    }

    /* question */
    .question {
        width: 49%;
        font-size: 28px;
    }
}