@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, td, p, li, label {
	font-family: var(--font-family-text);
	font-size: var(--base-font-size);
	color: var(--light);
	line-height: 1.75em;
}
body {
	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: 120px;
	padding: 10px 60px;
	background-color: var(--cornflower);
	border-bottom: 1px solid  var(--cornflower);
	box-shadow: var(--shadow);
}
header h1 {
	display: inline-block;
	margin-left:40px;
	color: var(--wisteria);
}
.logo {
	display:inline-block;
	background-color: var(--navy);
	padding: 8px;
	border: 6px solid var(--wisteria);
	border-radius: 50%;
	width: 160px;
}
section {
    padding: 120px 0;
}
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 {
	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;
}
/* large (lg) monitors */
@media only screen and (max-width: 1200px) {

}
/* medium (md) laptops */
@media only screen and (max-width: 992px) {
  h1 {
	  font-size:3em;
  }
}
/* small (sm) tablets */
@media only screen and (max-width: 768px) {
  h1 {
	  font-size:2.6em;
  }
  h2 {
	  font-size: 1.4em;
  }
  section {
    padding: 40px 0;
	}
  body {
	overflow: scroll;
}
}
/* extra small (xs) mobile phones */
@media only screen and (max-width: 576px) {
  h1 {
	  font-size:2em;
  }
  h2 {
	  font-size: 1.4em;
  }
  .card {
	  background: var(--cornflower);
  }
}