/*
Theme Name: STI
Author: Dave Malone Design Group
Author URI: https://www.davemalonedesign.com
*/

@charset "UTF-8";
/* CSS Document */

/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
blockquote {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img {
	border: none;
}
/*   end of reset code */


body{
	font-size: 18px;
	font-family: "Raleway", sans-serif;
	line-height: 1.5;
	font-weight: 400;
	color: #333333;
	background: #fff;
}

main a{
	color: #002f86;
	text-decoration: underline;
}

main {
	padding: 40px 0;
}

main a:hover {
	color: #000;
}


.container{
	margin: 0px auto;
	max-width: 620px;
	padding-left: 20px;
	padding-right: 20px;
}

header, footer{
	display: block;
}
header{
	background: #002f86;
	padding: 40px 0 50px;
	position: relative;
	overflow: visible;
}

header img.logo {
	display: block;
	width: 200px;
	height: auto;
}

header img.star {
	position: absolute;
	width: 160px;
	height: auto;
	right: calc( 100% - 70px );
	bottom: -92px;
}

header .container{
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	align-content: center;
	gap: 20px;
}

main .container {
	padding-left: 50px;
}

header h1{
	color: #fff;
	text-align: center;
	font-weight: 600;
	font-size: 40px;
	margin: 0;
}

main p, main ul, main li {
	margin-bottom: 1.5em;
}

main .social-links {
	margin: 40px 0 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: flex-start;
	align-items: center;
}

main .social-links a {
	font-size: 24px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	height: 42px;
	width: 42px;
	text-decoration: none;
	background: #000;
	color: #fff;
	border-radius: 100%;
	cursor: pointer;
}

main .social-links a:hover {
	background: #64c9d3;
	color: #fff;
}

@media (min-width: 1000px) {
	header {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	header .container {
		flex-direction: row;
		gap: 50px;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	header h1 {
		text-align: left;
		font-size: 48px;
		padding-bottom: 0.27em;
	}
	header img.logo {
		margin-left: -20px;
	}
	header img.star {
		width: 500px;
		right: auto;
		left: calc(50% - 820px);
		bottom: -288px;
	}
	main .container {
		padding-left: 20px;
	}
}
@media (min-width: 1400px) {
	header img.star {
		left: -120px;
	}
}