/**
	Light Blue - #017cc3
	Dark Blue - #142e53
**/



/************************* Reset CSS *************************/
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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/************************* Main CSS *************************/

body {
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 16px;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body strong {
	font-weight: bold;
}

.main-header h1, .main-footer h1 {
	font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}


/* Header */
.inner-header {
	padding: 20px;
	display: flex;
	justify-content: space-between;
}

/* Footer */
.inner-footer {
	padding: 20px;
	display: flex;
	justify-content: space-between;
}

ul.social {
	text-align: right;
}

ul.social li {
	display: inline-block;
}

a.logrhythm-url {
	color: #152f54;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	margin-top: 5px;
	display: inline-block;
}

/* Main Content - Header */
.main-header {
	background-image: url('header-bg-pattern.png');
	height: 280px;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	text-align: center;
	position: relative;
}

.main-header:after {
	content: '';
	background-image: url('header-bg-border.png');
	height: 49px;
	position: absolute;
	left:0;
	right:0;
	bottom:-4px;
}

.main-header .container {
	height: 80%;
    display: flex;
    align-items: center;
}

.main-header h1 {
	color: #fff;
	font-size: 32px;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.3em;
}

.line-break {
	background: #142e53;
	width: 100%;
	height: 1px;
	display: block;
	margin: 30px 0;
}

/* Main Content - Body */
.main-body {
	background: #457bbf;
	padding: 40px 0;
}

.main-body .container {
	max-width: 830px;
}

.main-body h1 {
	text-align: center;
	font-size: 24px;
	color: #152f54;
	font-weight: 600;
	line-height: 1.2em;
	padding: 1em 0;
}

.main-body h2 {
	text-align: center;
	font-size: 23px;
	color: #fff;
	font-weight: 600;
	line-height: 1.2em;
}

.content_and_agenda-wrap {
	display: flex;
	flex-wrap: wrap;
}

.content_and_agenda-wrap .left {
	width: 60%;
}

.content_and_agenda-wrap .right {
	width: 38%;
	margin-left: 2%;
}

.content_and_agenda-wrap .content-wrap p.first-line {
	font-weight: bold;
	color: #142e53;
	font-size: 19px;
}

.content_and_agenda-wrap .content-wrap p {
	margin-bottom: 1em;
	line-height: 1.2em;
	font-size: 17px;
	color: #fff;
}

.content_and_agenda-wrap .content-wrap p:last-of-type {
	margin-bottom:0;
}

.content_and_agenda-wrap .agenda-wrap {
	background: #142e53;
	color: #fff;
	padding: 25px;
	box-sizing: border-box;
}

.content_and_agenda-wrap .agenda-wrap h3 {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 1em;
}

.content_and_agenda-wrap .agenda-wrap p {
	margin-bottom: 1em;
	font-size: 17px;
}

.content_and_agenda-wrap .agenda-wrap p:last-of-type {
	margin-bottom:0;
}

/* Main Content - Footer */
.main-footer {
	background: #142e53;	
	padding: 30px 0;
}

.main-footer h1 {
	color: #fff;
	text-transform: uppercase;
	font-size: 30px;
	text-align: center;
	margin-bottom: 1em;
}

.main-footer .container {
	max-width: 830px;
}

.main-footer form {
	display: flex;
	flex-wrap: wrap;
}

.main-footer form .form-input-wrap {
	width: 46%;
	margin: 10px 2%;
}

.main-footer form .form-input-wrap label {
	margin-bottom: 10px;
	display: inline-block;
	color: #fff;
}

.main-footer form .form-input-wrap input {
	width: 100%;
	padding: 10px 5px;
	font-size: 14px;
	line-height: 1em;
}

.main-footer form input[type="submit"] {
	background: #457bbf;
	border: none;
	color: #fff;
	margin: 0 auto;
	margin-top: 1em;
	font-size: 16px;
	padding: 15px 40px;
	text-transform: uppercase;
	border: 1px solid #457bbf;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.main-footer form input[type="submit"]:hover {
	background: #fff;
	color: #457bbf;
	border: 1px solid #457bbf;
}
 

/************************* Responsive CSS *************************/
@media screen and (max-width: 830px) {
	.content_and_agenda-wrap .left, .content_and_agenda-wrap .right {
		width: 100%;
	}
	.content_and_agenda-wrap .right {
		margin-left:0;
		margin-top: 20px;
	}
}

@media screen and (max-width: 520px) {
	.inner-header, .inner-footer {
		flex-flow: wrap;
	}

	.main-footer form .form-input-wrap {
		width: 100%;
	}

	.inner-header img {
		display: block;
		margin: 0 auto;
	}

	.inner-header .logo-wrap {
		width: 100%;
	}

	.inner-header .logo-wrap:last-of-type {
		margin-top: 20px;
	}

	.inner-footer {
		text-align: center;
	}

	.inner-footer .logo-wrap, .inner-footer .contact-details, ul.social {
		width: 100%;
		text-align: center;
	}

	.inner-footer .contact-details {
		margin-top: 20px;
	}
}