html {
	background: #01003A;
	font-family: 'hk-regular', sans-serif;
	color: #FFF;
}

body {
	height: 100%;
	position: relative;
}

.frame {
	margin: 0 auto;
	max-width: 800px;
	padding: 11% 10% 10% 10%;

}

h1 {
	font-family: "hk-bold", sans-serif;
	font-size: 70px;
	line-height: 1;
	margin: -20px 0 30px 0;
}

h2 {
	font-family: 'hk-medium', sans-serif;
	font-size: 45px;
	line-height: 1.5;
}

h3 {
	font-family: 'hk-medium', sans-serif;
	font-size: 30px;
	margin: 20px 0 10px;
}

a {
	font-family: 'hk-medium', sans-serif;
}

p {
	font-family: 'hk-regular', sans-serif;
	font-size: 18px;
	line-height: 1.7;
	margin: 0;
}

b {
	font-family: 'hk-bold', sans-serif;
	font-size: inherit;
	font-weight: normal;
}

span {
	font-family: inherit;
	font-size: inherit;
	text-decoration: underline;
}

.button {
	background: #01003A;
	color: #fff;
	font-size: 18px;
	padding: 10px 20px 14px 20px;
	margin-top: 20px;
	display: block;
	width: fit-content;
	transition: all .2s ease;
}

.button:hover {
	background: #BB207B;
	transform: scale(1.05);
	box-shadow: 0 10px 20px 0 rgba(19, 29, 56, .1);
}

.link {
	border-bottom: 4px solid transparent;
	color: #FFF;
	font-size: inherit, 18px;
	padding-bottom: : 3px;
	transition: all .2s ease;
}

.link:hover {
	border-bottom: 4px solid #FF3377;
	color: #FF3377;
	padding-bottom: 5px;
}

.link-list {
	border-bottom: 4px solid transparent;
	color: #FFF;
	font-size: 18px;
	margin: 0 -3px 0 30px;
	padding: 3px;
	transition: all .2s ease;
}

.link-list:hover {
	border-bottom: 4px solid #FF006A;
	color: #FF3377;
	padding-bottom: 8px;
}

.link-list.active {
	border-bottom: 4px solid #FF006A;
	color: #FF006A;
	padding-bottom: 8px;
}

.link-action {
	border-bottom: 4px solid #FF006A;
	color: #FFF;
	font-size: 18px;
	margin: 0 40px 0 0;
	padding: 0 3px 5px 3px;
	transition: all .2s ease;
	white-space: nowrap;
}

.link-action:hover {
	border-bottom: 4px solid #FF006A;
	color: #FF3377;
	padding: 0 3px 10px 3px;
}

.link-frame {
	margin-top: 30px;
	display: inline-block;
}

.section-description {
	margin-bottom: 35px;
}


/* ==========================================================================
   Responsiveness
   ========================================================================== */
   
@media screen and (max-width: 450px){
	.frame {
		padding: 15% 8%;
	}
}


