@-ms-viewport{
  width: device-width;
}
*{
   -webkit-overflow-scrolling: touch;
   margin: 0;
   padding: 0;
}
p{
	margin: 0;
	font-family: 'Open Sans';
}
h1, h2, h3, h4, h5, h6{
	margin: 0;
	font-family: 'Open Sans';
}
a{
	font-family: 'Open Sans';
	text-decoration: none;
	color: #fff;
}
html, body {
    height:100%;
} 
.main-container{
	background: url('img/adsbg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	font-family: 'Open Sans';
}
.header{
	margin: 0 auto;
}
.header-con{
	text-align: center;
	padding: 1.47em 0em 1em;
}
.center-con{
	text-align: center;
}

.cta_con{
	text-align: center;
	padding: .5em 0em 3em;
}

.glow-on-hover {
    width: 250px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 17px;
    background: #ff0000;
    border: 2px solid #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #fffb00, #e5ff00, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #ff0000;
}

.glow-on-hover:active:after {
    background: #ff0000;
}

/*.glow-on-hover:hover:before {
    opacity: 1;
}
*/
.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff0000;;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.center-image img{
	width: 53%;
	animation: bounce 2s infinite;
		-webkit-animation: bounce 2s infinite;
		-moz-animation: bounce 2s infinite;
		-o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	
	40% {-webkit-transform: translateY(-20px);}
	60% {-webkit-transform: translateY(-10px);}
}
 
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-20px);}
	60% {-moz-transform: translateY(-10px);}
}
 
@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-20px);}
	60% {-o-transform: translateY(-10px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-20px);}
	60% {transform: translateY(-10px);}
}

@media  (max-width: 767px){

	.main-container{
		padding: 3rem 0em 18rem;
		height: 100%;
	}

	.center-image img{
		padding: 2em 0em;
		width: 100%;
		animation: bounce 2s infinite;
			-webkit-animation: bounce 2s infinite;
			-moz-animation: bounce 2s infinite;
			-o-animation: bounce 2s infinite;
	}

}

@media (min-width: 768px) and (max-width: 1280px){
	.main-container{
		padding: 1rem 0em 4rem;
		height: 100%;
	}
	.center-image img{
		padding: 2em 0em 0em;
		width: 80%;
		animation: bounce 2s infinite;
			-webkit-animation: bounce 2s infinite;
			-moz-animation: bounce 2s infinite;
			-o-animation: bounce 2s infinite;
	}
}