body {
    background-color: #bebebe;
    color: #003052;
}

.row {
    /* background-color: red; */
    background-color: lightgrey;
}

#anim-img {
    position: relative;
    max-width: 100%;
    /* animation: name duration timing-function delay iteration-count direction fill-mode play-state; */
    animation: size-anim 1.5s ease-out 0s 1, vertical-anim 2s ease-in-out 4s infinite;
}

@keyframes vertical-anim {
    0% {
        left: 0px;
        top: 0px;
    }

    50% {
        left: 0px;
        top: 10px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}

@keyframes size-anim {
    0% {
        max-width: 45%;
    }

    100% {
        max-width: 100%;
    }
}

#main-text {
    position: relative;
    animation: text-anim 1.5s ease-out 0s 1;
}

@keyframes text-anim {
    0% {
        top: 70%;
    }

    100% {
        top: 0%;
    }
}

#freeOffer {
    position: relative;
    left: 60px;
    visibility: hidden;
    color: #bebebe;
    animation: freeOffer-anim 2.5s ease-out 1.5s 2;
    /* animation: name duration timing-function delay iteration-count direction fill-mode play-state; */
    animation-fill-mode: forwards;

    -moz-transform: scale(1.1) rotate(345deg);
    -webkit-transform: scale(1.1) rotate(345deg);
    -o-transform: scale(1.1) rotate(345deg);
    -ms-transform: scale(1.1) rotate(345deg);
    transform: scale(1.1) rotate(345deg);
}

@keyframes freeOffer-anim {
    0% {
        color: #bebebe;
        visibility: visible;
    }

    /* 50%  {color: #bebebe; visibility: visible;} */
    100% {
        color: #003052;
        visibility: visible;
    }
}

#image-div {
    display: block;
}

#text-div-1,
#text-div-2,
#text-div-3,
#text-div-4 {
    display: none;
}

footer {
    background-color: lightgray;
}

/* Always display the vertical scrollbar to prevent from flickering during an animation */
body {overflow-y:scroll;}
