body, p, h1, h2, ul, li {
	margin: 0px;
	padding: 0px;
	font-family: sans-serif;
}

* {
	box-sizing: border-box;
	-webkit-transition: all ease .25s;
	transition: all ease .25s;
}

li {
	list-style: none;
}

ul.list {
    max-width: unset !important;
}

ul.list li {
    list-style: initial;
    margin: 0 0 0 15px !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: unset !important;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
}

/* HEADER */

header {
	background: #F3732C;
}

#header-href {
    display: block;
    width: 300px;
}

header > div {
	height: 100px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	            -ms-grid-row-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
}

header > div > a span {
	position: absolute;
	right: 30px;
	display: inline-block;
	padding: 10px;
	color: #FFF;
	top: 35px;
	font-weight: bold;
}

.home-content {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	min-height: calc(100vh - 160px);
}

.home-content:after, .home-content:before {
	content: '';
	display: table;
	clear: both;
}

.home-content ul {
	max-width: 360px;
        margin: 0 auto;
}

.home-content > p {
	max-width: 620px;
	text-align: center;
	margin: 30px auto;
	font-size: 1em;
	line-height: 1.2em;
	color: #949caa;
}

.home-content ul li {
	margin: 20px auto;
	padding: 10px 15px;
	/* background: #F3F3F3; */
	border-radius: 5px;
        max-width: 280px;
        box-shadow: 0 0 1px 2px rgba(0, 0 , 0, .15);
}

.home-content ul li.featured {
    box-shadow: 6px 6px 18px 1px #EF3329 !important;
    padding: 0 0 10px 0;
}

.home-content ul li.featured:before {
    content: 'FEATURED';
    display: flex;
    width: 100%;
    height: 30px;
    background: #EF3329;
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    letter-spacing: 2px;
}

.home-content ul li:hover  {
	box-shadow: 0 0 1px 2px rgba(0, 0 , 0, .40);
}

.home-content ul li:hover a > span > div > span:hover {
	color: #000;
}

.home-content ul li a img {
	max-height: 70px;
	-webkit-box-flex: 0;
	    -ms-flex-positive: 0;
	        flex-grow: 0;
        margin-bottom: 20px;
}

.home-content ul li a > span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
}

.home-content ul li a > span > div {
	text-align: center;
        -webkit-box-flex: 3;
            -ms-flex-positive: 3;
                flex-grow: 3;
        margin-bottom: 10px;
}

.home-content ul li a > span > div > span {
	background: #F3732C;
	padding: 8px 15px;
	color: #FFF;
	text-transform: uppercase;
	border-radius: 5px;
}


/* CONTACT STYLES */

.container {
	max-width: 1280px;
	margin: 0 auto;
}

.contact {
	min-height: 400px;
	color: #949caa;
}

.contact h1 {
	font-family: sans-serif;
	font-weight: normal;
	text-align: center;
	color: #777777;
	letter-spacing: .05em;
	margin-bottom: 30px;
	font-size: 2.25em;
}

.contact p {
	max-width: 450px;
	margin: 0 auto 15px;
}

.contact p:nth-of-type(2) {
	margin-bottom: 10px;
}

form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.contact textarea {
	resize: none;
	width: 450px;
	height: 250px;
	margin: 0 auto;
	background: #F3F3F3;
	border: none;
	outline: none;
	border-radius: 3px;
	padding: 5px;
}

.contact input {
    resize: none;
    width: 450px;
    height: 40px;
    margin: 0 auto;
    background: #F3F3F3;
    border: none;
    outline: none;
    border-radius: 3px;
    padding: 5px;
}

/* LOGIN */

.login {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	text-align: center;
}

.login-logo {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.login h1 {
	font-family: sans-serif;
	font-weight: normal;
	text-align: center;
	color: #777777;
	letter-spacing: .05em;
	margin-bottom: 70px;
	font-size: 2em;
}

.login input {
	width: 300px;
	background: #F3F3F3;
	border: none;
	outline: none;
	border-radius: 5px;
	padding: 8px;
	margin-bottom: 20px
}

.login a {
	margin-top: 60px;
	color: #949caa;
	font-size: 0.875em;
	text-decoration: underline;
	line-height: 1em;
}

/* UNSUB */

.unsub h1 {
	font-family: sans-serif;
	font-weight: normal;
	text-align: center;
	color: #777777;
	letter-spacing: .05em;
	margin-bottom: 30px;
	font-size: 1.5em;
}

.unsub {
	max-width: 400px;
}

.unsub p {
	color: #949caa;
	max-width: 300px;
	margin: 0 auto;
}

.unsub input {
	width: 300px;
	background: #F3F3F3;
	border: none;
	outline: none;
	border-radius: 5px;
	padding: 8px;
	margin: 20px auto;
}

.unsub form > div {
	text-align: center;
}

.unsub-btn {
	margin-left: 10px !important;
	margin-right: 10px !important;
}

.unsub form span {
	max-width: 300px;
	background: #ABD8AE;
	color: #949caa;
	padding: 10px;
	margin: 30px auto 0;
	font-size: 0.875em;
}

#submit, #cancel {
	margin: 0 auto;
	border: 0;
	outline: none;
	background: #F3732C;
	font-size: 1.125em;
	color: #FFF;
	width: 120px;
	padding: 4px 0;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 5px;
}

#submit.unsub-btn {
	background-color: #F3F3F3;
	color: #949caa;
}

#submit:hover, #cancel:hover  {
	box-shadow: 0 0 1px 2px rgba(0, 0 , 0, .15);
	color: #777777;
}

.contactmessage {
	max-width: 300px;
	background: #ABD8AE;
	color: #949caa;
	padding: 10px;
	margin: 30px auto 0;
	font-size: 0.875em;
}

/* FOOTER */
footer {
	max-width: 1280px;
	margin: 0 auto;
}

footer ul {
	float: right;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 60px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

footer ul li {
	display: inline-block;
	margin-right: 10px;
}

footer ul li a {
	padding: 5px;
	color: #949caa;
	font-size: .875em;
}

/* RESPONSIVE */

@media only screen and (max-width: 739px) {
	header > div > a > img {
		content: url(/images/sslogo_color.svg);
		max-width: 250px;
	}

	#header-href {
		width: 200px;
	}
	
	header {
		background: none;
		padding: 0 5px;
	}
	
	header > div {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		            -ms-grid-row-align: center;
		        align-items: center;
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		    -ms-flex-direction: row !important;
		        flex-direction: row !important;
		-ms-flex-wrap: nowrap !important;
		    flex-wrap: nowrap !important;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	
	header > div > a span {
		position: absolute;
		background: #F3732C;
		font-size: .775em;
		border-radius: 5px;
		padding: 4px 8px;
		right: 0;
		top: 38px;
                display: none;
	}
	
	.home-content {
		overflow-y: inherit;
		padding: 0 10px;
		min-height: calc(100vh - 160px);
		max-height: unset;
		height: unset;
	}
	
	.home-content ul li {
		padding: 10px 15px;
	}
        
        .home-content > p {
            margin: 0 auto 30px;
        }
	
	footer ul li {
		margin-right: 0px;
	}
	
        .contact input {
            max-width: 300px;
        }
        
	.contact textarea {
		max-width: 300px;
	}
	
	.contact p {
		max-width: 300px;
	}

}

@media only screen and (min-width: 740px) and (max-width: 1279px) {
    [data-container] {
        padding: 0 80px;
    }
}

@media only screen and (max-width: 349px) {
	header > div > img {
		max-width: 225px;
	}
}

@media only screen and (max-width: 325px) {
    footer ul li a {
        font-size: 0.75em;
    }
}