/*
Name: Letz Vent
Author: Kyle Lanning
Description: Coming Soon
Version: 1.0.0
Tags: 
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Layout
# Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Playfair+Display|Roboto&display=swap');
@import url('https://use.typekit.net/srv4nwt.css');

html, body {
    height: 100% !important;
	font-family: 'Roboto', sans-serif;
	font-size: 1.1rem;
	background:url(../images/bg.gif) no-repeat top right;
}

body.white-bg {
	background: white;
}

#page-wrapper {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	justify-content: center;
}

h1 { 
	font-family: "Interstate Black";
    font-size:  36px;
    color: #ca212d;
	font-weight: bold;
}

h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 17px; }
h6 { font-size: 15px; }


h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
}


h1 span {

}

p.lead { font-size: 24px;}

.content {
	padding: 30px;
}

#coming-panel {
	flex: 1;
    width: 100%;
	max-height: 700px;
    margin: 0 auto;
    box-shadow: 0 0 35px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 35px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 35pxpx rgba(0,0,0,0.5);
    -o-box-shadow: 0 0 35px rgba(0,0,0,0.5);
    background-color: rgba(255, 255, 255, 0.18);
    padding: 75px 30px;
}

.logo { 
    width: 100%;
    max-width: 246px; 
    max-height: 167px;
    margin-bottom: 40px;
}

.phone {
    width: 100%;
    max-width: 226px;
}

img {
    height: auto;
    max-width: 100%;
	border-style: none;
    vertical-align: middle;
}

footer {
	display: block;
	text-align: center;
}


footer ul {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

footer ul li {
  float: left;
}

footer ul li a {
  display: block;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}



/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/

@media (min-width: 1200px) {
    #coming-panel { max-width: 1400px;}
}

@media (min-width: 992px) {
	
}

@media (max-width: 991.98px) {
	 #coming-panel {
		width: 100%;
		margin: 0 auto;
		box-shadow: 0 0 35px rgba(0,0,0,0.0);
		-moz-box-shadow: 0 0 35px rgba(0,0,0,0.0);
		-webkit-box-shadow: 0 0 35pxpx rgba(0,0,0,0.0);
		-o-box-shadow: 0 0 35px rgba(0,0,0,0.0);
		background-color: rgba(255, 255, 255, 0);
		padding: 30px;
	}
}

@media (max-width: 767.98px) {  
    .phone { margin: 30px; 0 30px 0 }
    h1 { 
        font-size:  36px;
        color: white;
    }

    h1 span {
           -moz-text-stroke-width: 0px;  
        -webkit-text-stroke-width: 0px;
    }
	
	/* i.fa-2x { font-size: 50px } */

}



@media (max-width: 575.98px) {
}