@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');

body, html
{
	margin:0;
	padding:0;
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-family: 'PT Sans', sans-serif;
	color:#000;
	overflow: hidden;
}

.container
{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	padding: 0;
  	margin: 0;
  	list-style: none;
  	width: 100%;
  	height: 100%;
}
.flex-item
{
	width: 50%;
	text-align: center;
}
.content
{
	padding-bottom: 25px;
}
.video
{
	
}
#video-background
{
	width:100%;
	height: auto;
	min-height: 100%;
	margin-top: -50px;
	min-width: 100%;
}
.logo
{
	max-width: 45%;
	margin: 0 auto;
	margin-top: 15%;
	margin-bottom: 25px;
}
.info
{
	line-height:2em;
}
img
{
	max-width: 100%
}
.video-overlay
{
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0.7;
}

.download {
    text-align: center;
    margin: 0 auto;
    padding-top: 25px;
}

a
{
	text-decoration: none;
	color: #eaaf6f;
}

#rcorners1 {
    background: white;
    padding: 13px;
    width: 190px;
    text-transform: uppercase;
    height: auto;
    margin: 0 auto;
    font-size: 1.1em;
    letter-spacing: 3px;
    color: #eaaf6f;
    font-family: inherit;
    border: none;
    cursor: pointer;
    line-height: 1.4em;
    font-weight: bold;
}

#rcorners1:hover, a:hover
{
	color: black;
}

.show-mobile
{
	display: none;
}

@media all and (max-width: 789px)
{
	.show-mobile
	{
		display: block;
	}
	.flex-item
	{
		width: 100%;
	}
	.logo
	{
		margin-top: 20%;
		max-width: 90%;
	}

	#video-background
	{
		height: 100%;
    	width: auto;
    	margin-top: 0;
	}
	.video
	{
		height: 100%;
	    top: 0;
	    position: absolute;
	    z-index: -1;
	}
}
@media all and (max-width: 340px)
{
	.logo
	{
		margin-top: 15%;
	}

}
