html {
	height: 100%;
}

body {
	margin:0;
	padding:0;
	font-family: "Times New Roman", Times, serif;
	color:white;  
	height:100%;	
	background: #000;
}

h2{
	display:flex;
	justify-content:center;
	border-bottom:1px solid #ccc;
}

/* HOME PAGE */
.home{
	background: url("/images/Homeward-Bound-1.png") #000;
	background-repeat: no-repeat;
	background-size:contain;
	background-position: center; 
	width: 100%;
	height: 100%;
}

.centered-overlay {  
	position: absolute;
    padding: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	height: 100%;
}

.centered-content {
	display:flex;
	justify-content:center;
	flex-direction:column;
}

.full-screen{  
	width: 100vw;
  	height: 100%;
}

/* MENU */
.top-menu
{
	position:fixed;
	display: flex;
	width:100%;
	justify-content: space-evenly;
	background:#111;
	height:50px;
	z-index:9999;
}
.carousel{  
	max-width: 800px;
	margin: auto;
}

.menu-label {
}

.menu-label img {
	width:32px;
	height:32px;
}
.menu-icon.xl{
	font-size:20pt;
}

.menu-item
{
	padding:0px;
	background: #111;
	cursor: pointer;
	transition: background 0.5s;
	padding: 5px;
	color: white;
	cursor: pointer;
}

a:hover.menu-item
{
	color:#fff;	
}

@media all and (max-width: 600px) {
	.menu-label {	
		padding:0px;
		font-size:20pt;
	}
	.menu-label.small{
		display:block;
	}
	.menu-label.large{
		display:none;
	}
}

@media all and (min-width: 600px) {
	.menu-label {	
		padding:16px;
	}
	.menu-label.small{
		display:none;
	}
	.menu-label.large{
		display:block;
	}
}

a {
	cursor: pointer; 
	color: #fff;
	text-decoration:none;
}

.menu-item:hover{
	background: #222;
	transition: background 0.5s;
}	

/* PAGE */
.page { 
	height:100%;	
	padding: 70px 50px 70px 20px;
	justify-content:center;
	flex:1;
	margin: auto;
	max-width:1200px;
	display:flex;
	flex-direction:column;
}
.emph{
	font-size:2em;
}

.pull-left {
	justify-content:left;
	display: flex;
}

.pull-left p{
    width: 80%;
}

.pull-right{
	justify-content:right;
	display: flex;
}

.pull-right p{
    width: 80%;
    text-align: right;
}
.centered-img {
	margin:auto;
	width:80%;
}
.centered-img img{
	width:100%;
}

/* VIDEO */
.video-list {
	margin-top:20px;
}

.video-title {
	text-align:center;
	border:1px solid #888;
	margin:20px 0px;
}
.video-title h3{
	background-color:#888;
	padding:5px;
}
.video-title h4{
	font-size:small;
}

/* PAGE TITLE ANIMATIONS */

@keyframes titleSlideIn {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes titleSlideOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.page-title{
	position:fixed;	
	top: 60px;
	right:0px;
	font-size:2em;
	writing-mode: vertical-rl;
	animation: 0.5s ease-out 0s 1 titleSlideIn;
}

.page-title:active {
	animation: 0.5s ease-out 0s 1 titleSlideOut;
}

.footer {  
	position: fixed;
	bottom:0px;
	display: flex;
	width: 100%;
	justify-content: space-between;
	background: #111;
	height: 50px;
	z-index: 9999;
	align-items: center;
	padding: 0px 20px;
	color: #bbb;
	font-size:x-small;
}

.footer a{
	color: #bbb;

}
.social-link{
	padding: 0px 10px;
}

.social img {
	width:32px;
	height:32px;
}

.grecaptcha-badge { 
    bottom:65px !important; 
}

@media all and (min-width: 600px) 
{
	h1  { font-size:4.0em; } 
	.page-title{ font-size:2em; }
	.page { padding-right: 50px; }
	.form { width: 600px; }
	.centered-img { width:70%;}
	.footer {font-size:inherit;}
}
@media all and (min-width: 800px) 
{
	h1  { font-size:5.0em; } 
	.page-title{ font-size:3em; }
	.page { padding-right: 60px; }
	.form { width: 600px; }
	.centered-img { width:60%;}
	.centered-overlay { height: 100%;}
}
@media all and (min-width: 1000px) 
{
	h1  { font-size:6.0em; }
	.page-title{ font-size:4em; }
	.page { padding-right: 70px; } 
	.form { width: 600px; }
	.centered-img { width:50%;}
}
@media all and (min-width: 1200px) 
{  
	h1  { font-size:7.0em; } 
	.page-title{ font-size:5em; }
	.page { padding-right: 80px; }
	.form { width: 600px; }
	.centered-img { width:40%;}
}
@media all and (min-width: 1400px) 
{  		
	h1  { font-size:8.0em; } 
	.page-title{ font-size:6em; }
	.page { padding-right: 90px; }
	.form { width: 600px; }
	.centered-img { width:30%;}
}
@media all and (min-width: 1600px)
{ 
	h1  { font-size:9.0em; } 
}
@media all and (min-width: 1800px)
{ 
	h1  { font-size:10.0em; } 
}