* {
	margin: 0;
	padding: 0;
	box-sizing:  border-box;
}

body {
	font-family: 'Fira Sans', sans-serif;
	font-style: normal;
	font-variant: normal;
	color: #DAD5BD;
	padding:  30px;
}

.header {
	height: 95vh; 
	background-image: linear-gradient(to right bottom, 
		rgba(0,0,0,0.7), rgba(0,0,0,0.1)), 
		url(img/bg-img.jpg);
	background-repeat: no-repeat;
	background-size: cover;
   	background-position:  bottom;
   	min-height: 400px;

   	position: relative;
   	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

   	/*
	-webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	*/
	/* clip-path: polygon(0 0,100% 0, 100% 75vh, 0 100%);  */ /* 75vh makes it responsive */
}

.content {
	/* height: 95vh;   */
	background-image: linear-gradient(to right bottom, 
		#1F1F42, #0A2C8C);
	background-repeat: no-repeat;
	background-size: cover;
   	background-position:  bottom;
   	min-height: 400px;

   	position: relative;
   	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

   	/*
	-webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	*/
	/* clip-path: polygon(0 0,100% 0, 100% 75vh, 0 100%);  */ /* 75vh makes it responsive */
}


@keyframes moveInLeft {
	0% {
		opacity:  0;
		transform: translateX(-100px);
	}

	75% {
		transform: translateX(10px);
	}

	85% {
		transform: translateX(-10px);
	}

	100% {
		opacity: 1;
		transform: translate(0);
	}
}

@keyframes moveInRight {
	0% {
		opacity:  0;
		transform: translateX(100px);
	}

	100% {
		opacity: 1;
		transform: translate(0);
	}
}

@keyframes moveInDown {
	0% {
		opacity:  0;
		transform: translateY(-100px);
	}

	100% {
		opacity: 1;
		transform: translate(0);
	}
}

@keyframes moveInUp {
	0% {
		opacity:  0;
		transform: translateY(100px);
	}

	100% {
		opacity: 1;
		transform: translate(0);
	}
}

.logo-box {
	position: absolute;
	top: 40px;
	left: 40px;
}

.logo {
	height: 35px;  /* leaves width to be responsive */
}

.text-box  {
	
	/* position: absolute;
	top: 40%;
	left: 50%;
	text-align: center;  
	transform: translate(50%,-50%);   *//* centers box on page, stays center responsive */
}

.heading-primary {
	backface-visibility:  hidden;  /* hack for fixing  shakyness in animation */
	margin-bottom:  60px;  
}

.heading-primary-main {
	display: block; 
	letter-spacing: 5px;
	animation: moveInLeft 2s ease-out;
	/* animation-name: moveInLeft ;
	animation-duration: 1s;
	animation-timing-function: ease-out;  */
	/*text-align: center; */
}

.heading-primary-sub {
	display: block;  
	letter-spacing: 3px;
	animation-name: moveInRight;
	animation-duration: 1s;
	text-align: center;
}

.heading-primary-subD {
	display: block; 
	letter-spacing: 3px;
	animation: moveInDown 1s;
	text-align: center;
}

.heading-primary-subU {
	display: block; 
	letter-spacing: 3px;
	animation: moveInUp 2s;
	text-align: center;
}

.content-centered {
	position: relative;
   	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.btn:link , 
.btn:visited {
	text-transform: uppercase;
	text-decoration: none;
	padding: 15px 40px;  /* top&bottom  left&right */
	display: inline-block;
	border-radius: 100px;
	transition: all .2s;
	position: relative;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 10px rgba(218,213,189,.4); /* x y blur color */
}

.btn:active {
	transform: translateY(-1px);
	box-shadow: 0 5px 5px rgba(218,213,189,.4); /* x y blur color */
}

.btn-white {
	background-color: #DAD5BD;
	color: #777777;
}

.btn::after {
	content: "";
	display: inline-block;
	height: 100%; /* of the button */
	width: 100%;
	border-radius: 100px;
	position: absolute;
	top: 0;  /*based off first relative position element it can find */
	left: 0;
	z-index: -1;
	transition: all .4s;
}

.btn-white::after {
	background-color: #DAD5BD;
}

.btn:hover::after {
	transform: scaleX(1.4) scaleY(1.6);
	opacity: 0; /* trick for fading it out */
}

.btn-animated {
	animation: moveInUp .5s ease-out .75s;
	animation-fill-mode: backwards;
}

h1 {
	font-size: 48px;
	font-variant: small-caps;
	font-weight: 900;
	line-height: 40px;
}

h2 {
	font-size: 48px;
	font-weight: 900;
	line-height: 40px;
}
h3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 32px;
}

p {
	font-size: 21px;
	font-weight: 400;
	line-height: 21px;
}

p.thin {
	font-size: 14px;
	font-weight: 300;
	line-height: 14px;
}

blockquote {
	font-size: 18px;
	font-variant: small-caps;
	font-weight: 400;
	line-height: 18px;
}

a.clean {
	text-decoration: none;
}

/* unvisited link */
a:link {
    color: #7011F1;
}

/* visited link */
a:visited {
    color: #7938AB;
}

/* mouse over link */
a:hover {
    color: #CEADF4;
}

/* selected link */
a:active {
    color: #1809A9;

footer {
	font-style:  italic;
	font-size: 12px;
	font-weight: 300;
	line-height: 12px;
}

