*, html, body{
    margin:0;
    padding:0;
    border:0;
}

body{
    background:#040b14;
    font-size:16px;
    overflow:none;
}
h1{color:#fff; font-size:6em;}
h3{
    color:#149ddd; 
    font-size:3.5em; 
    font-weight:normal;
    margin-bottom:40px;
}

#announcement-bar{
    min-width:100%;
    position:fixed;
    top:0px;
    padding: 7.5px 0px;
    background:#fff;
    text-align:center;
    z-index:2;
}

#announcement-bar p{
    margin-bottom:0px;
    font-weight: 500;
    color:#000;
    text-transform: uppercase;
}

main{  
    display: flex;
    align-items: center;
    justify-content: center;
    height:100vh;
    text-align:center
}

#icon-row{
    width:60%;
    margin:auto;
}

.icon{
    height:125px;
    width: 125px;
    display:flex;
    align-items: center;
    justify-content: center;
    background:#212431;
    padding:15px;
    border-radius:50%; 
    margin:auto;
}

.icon img{
    height: 45px;
    width: auto;
}

#notice{color:#fff;}


#contact-bar{
    position:fixed;
    bottom:0px;
    z-index:2;
}

#contact-bar .icon{
    height:75px;
    width: 75px;
}

#contact-bar .icon i{
    color:#fff;
    font-size:2rem;
}

#contact-icon-whatsapp{
    position:absolute;
    bottom:60px;
    left:60px;
    background:#25D366;
}

#contact-icon-email{
    position:absolute;
    bottom:60px;
    left:150px;
    background:#149ddd;
}


.pulse{
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

/** Animations **/

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

/** Responsive CSS **/

@media only screen and (max-width: 1200px) {
    body{
        font-size:16px;
    }
    h1{
        color:#fff; 
        font-size:5em;
    }
    h3{
        color:#149ddd; 
        font-size:1.2em; 
    }
    
    #icon-row{width:100%;}

    .icon{
        height: 45px;
        width:45px;
    }

    .icon img{
        height: 25px;
    }

    #contact-icon i{
        color:#fff;
        font-size:3.2rem;
    }

    #contact-icon-whatsapp{
        position:absolute;
        bottom:10px;
        left:20px;
        background:#25D366;
    }
    
    #contact-icon-email{
        position:absolute;
        bottom:10px;
        left:110px;
        background:#149ddd;
    }

}

@media only screen and (max-width: 768px) {
    
}

@media only screen and (max-width: 600px) {
    
}