@font-face {
    font-family: GothamLight;
    src: url("../fonts/Gotham-Light.ttf");
}

@font-face {
    font-family: GothamMedium;
    src: url("../fonts/Gotham-Medium.otf");
}

body {
    margin: 0px;
    padding: 0px;
}

.full_page {
    background: url("../images/page_bg.jpg") no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
	height: 100vh;
	position: relative;
	box-sizing: border-box;
}

.centered_content { position: absolute; width: 100%; top: 50%; padding: 0px 30px; box-sizing: border-box;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); 
  margin-top: -36px; } 

.logo_title {
    background: url("../images/logo.png") no-repeat;
    width:412px;
    height: 152px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.logo_title p {
    text-transform: uppercase;
    color: white;
    font-family: GothamMedium;
    font-size: 52px;
    letter-spacing: 0.15em;
    position:relative;
    display: inline-block;
    margin-left:95px;
}

.big_blue {
    color: #51a6d5;
}

.heading {
    padding-top: 42px;
    padding-bottom: 42px;
}

.heading h1 {
    margin: 0px;
    padding: 0px;
    text-transform: uppercase;
    color: white;
    font-family: GothamLight;
    font-size: 30px;
    letter-spacing: 0.05em;
}

.heading h2 {
    margin: 0px;
    padding-top: 17px;
    text-transform: uppercase;
    color: #51a6d5;
    font-family: GothamLight;
    font-size: 18px;
    letter-spacing: 0.05em;
}

.separator {
    width: 412px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto;
	max-width: 100%;
}

.cta {
    padding-top:42px;
    width:60%;
    margin:0 auto;
}

.cta p {
    font-family: GothamLight;
    color: white;
    font-size: 18px;
    line-height: 30px;
	-webkit-margin-before: 0em;
}
.cta_btn {
    margin-top:17px;
    width: 196px;
    height: 46px;
    border-radius: 5px;
    background: #51a6d5;
    margin: 0 auto;
    font-family: GothamMedium;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 14px;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.cta_btn:hover {
    opacity: 0.8;
}

.footer {
    padding-bottom: 20px;
	position: absolute; bottom: 0px; left: 0px; width: 100%; text-align: center;
}

.footer p {
    font-family: GothamLight;
    color: rgba(81,166,213, 0.4);
    font-size: 10px;
}

.opacity50 {
    opacity: 0.5;
    webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.opacity50:hover {
    opacity: 1;
}


#video_container { position: fixed; width: 100%; height: 100%; background-color: rgba(0,0,0, 0.7); z-index: 9999; box-sizing: border-box; padding: 0% 10% 0 10%; display: none; }
.video-container { position:relative; padding-bottom:56.25%; padding-top:0px; height:0; overflow:hidden; top: 50%; transform: translateY(-50%); }


.popup_window {
    width: 600px;
    margin:0 auto;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    left: 50%;
    margin-left: -298px;
	margin-top: 4px;
	box-sizing: border-box;
	border-radius: 10px;
	overflow: hidden;
	padding-bottom: 0px;
}

.popup_window input[type="text"], input[type="email"], select {
	width: 100%;
	height: 35px;
	box-sizing: border-box;
	padding-left: 10px;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0, 0.1);
	background-color: #FFF;
}
.popup_window option {
	height: 30px;
}
.popup_window label {
	font-family: GothamLight;
}

.submit {
	border: none;
    width: 196px;
    height: 46px;
    border-radius: 5px;
    background: #51a6d5;
    margin: 0 auto;
    font-family: GothamMedium;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media only screen and (max-width: 1000px) {
	.cta { width: 100%; }
	.full_page { height: auto; min-height: 100vh; }
	.centered_content { position: static; width: 100%; padding: 50px 30px; margin-top: 0px; -webkit-transform: translateY(0%);  -ms-transform: translateY(0%);  transform: translateY(0%);  } 
	.footer { position: static;  }
}

@media only screen and (max-width: 470px) {
	.logo_title p { font-size: 40px; margin-left: 70px; }
	.logo_title { width: 300px; background-size: contain; background-position: left center; height: 132px; box-sizing: border-box; margin-left: auto; margin-right: auto; }
}