.white {
    display: none;
}

body {
    width: 100%;
    max-width: 700px;
    padding: 0;
    margin: 0 auto;
    margin-top: -10px;
    text-align: left;
    background: #d3d3d3 no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: Arial;
}

.wrapper {
    background: #fff;
    /*text-align: center;*/
    margin: 0px auto;
    padding: 20px 40px;
    padding-bottom: 40px;
    font-size: 18px;
    color: #333;
    position: relative;
    box-shadow: 1px 1px 5px #666;
    border-top: 80px solid #ea1010;
}

.header {
    /*text-align: center;*/
    border-bottom: #838484 solid 1px;
}

.header img {
    padding-top: 20px;
    padding-left: 10px;
    padding-bottom: 5px;
    width: 157px;
    max-width: 30%;
}

.wrapper img {
    width: 100%;
}

h2 {
    font-weight: normal;
    font-size: 25px;
    position: absolute;
    margin-top: -70px;
    color: #fff;
}

h4 {
    font-size: 17px;
    margin-bottom: 0px;
    border-top: 1px solid #ccc;
    padding-top: 1em;
}

@media screen and (max-width: 992px) {
    h2 {
        margin-top: -90px;
        margin-left: 0;
    }
}

.button {
    color: #fff;
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 16px;
    text-align: center;
    background: #ea1010;
    border-radius: 5px;
    border: 0;
}

.button:hover {
    background: #7c1010;
    cursor: pointer;
}

p {
    line-height: 1.2em;
}

ul li {
    display: inline-block;
    margin-bottom: 6px;
    padding-left: 18px;
    list-style: none;
    margin-left: -20px;
}

#audioplayer {
    margin-top: -9999em;
}

.offer-button {
    color: white;
    text-decoration: none;
}

.blinking {
    animation: blinkingText 1.6s infinite;
}

@keyframes blinkingText {
    0% {
        color: #ea1010;
    }
    49% {
        color: #ea1010;
    }
    60% {
        color: #ea1010;
    }
    99% {
        color: transparent;
    }
    100% {
        color: #ea1010;
    }
}