@charset "UTF-8";
:root {
	--navy:			#1E1E34;
	--cornflower: 	#30477e;
	--hanblue: 		#5d75d6;
	--vegasgold: 	#d6be5c;
	--wisteria: 	#bf9de7;
	--dark: 		#070707;
	--light: 		#fbf8ee;
	--translucent: 	rgba(30, 30, 52,0.70);
	--shadow: 1px 6px 8px 2px rgba(7, 7, 7, .6);
	--radius: 0.25rem;
    --base-font-size: 16px;
    --font-family-text: -apple-system, 'Montserrat', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --font-family-header: 'Cormorant Garamond', 'Times New Roman', Times, serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  }
html, body {
	width:100vw;
	height:100vh;
	margin:0;
}
/*body {
	background: var(--teal) url() no-repeat;
}*/
body, td, p, li, label {
font-family: var(--font-family-text);
font-size: var(--base-font-size);
font-weight: 400;
color: var(--light);
line-height: 1.75em;
overflow:hidden;
}
strong {
	font-weight: 600;
	letter-spacing: 0.25px;
}
h1, h2, h3, h4 {
    display: block;
    font-family: var(--font-family-header);
    font-weight: 500;
}
h1 {
	font-size:4em;
}
  video#bkg {
	object-fit: cover;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index:-1;
  }
  .wrapper {
	position: relative;
	overflow: hidden;
}
.flex-center {
	/* Centering the container's content vertically and horizontally*/
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center; 
}
header {
	position: fixed;
	width: 100%;
	height: 70px;
	padding: 10px 60px;
	background-color: var(--cornflower);
	border-bottom: 1px solid  var(--cornflower);
	box-shadow: var(--shadow);
}
.logo {
	display:inline-block;
	background-color: var(--vegasgold);
	padding: 10px;
	border: 3px solid var(--light);
	border-radius: 50%;
}
section {
    padding: 60px 0;
}
.img-crest {
	margin: 0 auto;
	width: 40%;
}
article {
	margin:2% 1%;
	text-align: justify;
}
.pad-top {
	padding-top: 40px;
}
.pad-bottom {
	padding-top: 40px;
}
.card {
	background: var(--translucent);
	box-shadow: var(--shadow);
	border: 1px solid var(--dark);
	border-radius: 2em 0;
	color: var(--light);
	padding: 0;
}
.card-body {
	padding: 2.6rem 40px 1.4rem 40px;
}

/* More info */
.copyright {
	position: sticky;
	bottom: 0;
	text-align: right;
	padding-top: 20px;
	padding-right:60px;
	padding-bottom: 20px;
	margin-top:5%;
	color: var(--light);
	letter-spacing: 2px;
}
.hidden {
	display: none;
}