* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	height: -webkit-fill-available;
}

html{
  	-moz-text-size-adjust: none;
  	-webkit-text-size-adjust: none;
  	text-size-adjust: none;
}

body {
	  min-height: 100vh;
	  width: 100%;
	  /* mobile viewport bug fix */
	  min-height: -webkit-fill-available;
}

body.home {
	  background: url(images/aegeri-bg.jpg) no-repeat center center fixed; 
	 -webkit-background-size: cover;
	 -moz-background-size: cover;
	 -o-background-size: cover;
	 background-size: cover;
}

#wrap {
	height: 100%;
}

.main {
	padding: 0 60px 30px;
	height: calc( 100vh - 145px );
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 30px;
}

.main-content {
	max-width: 1280px;
	margin: 140px auto 0;
}

.info {
	text-align: center;
	width: 100%;
	max-width: 826px;
}

.info p {
	font-size: 20px;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 125px;
	padding: 40px 30px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999999;
}

.logo {
	margin-bottom: 10px;
}

.logo img[src$=".svg"]{ width: 415px !important; }
.header-logo img[src$=".svg"]{ width: 250px !important; }

p {
	font-family: 'Montserrat', sans-serif;
	color: #004176;
	line-height: 1.4;
    font-weight: 500;
}

.main-content {
	padding: 20px 30px;
	text-align: justify;
}

.main-content h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	color: #004176;
	font-weight: 500;
	margin-bottom: 10px;
}

.main-content h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	text-transform: uppercase;
	color: #004176;
	font-weight: 600;
	margin-top: 40px;
}

.main-content ol {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;	
	margin-left: 18px;
}

.main-content ul {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	list-style-type: disc;
	margin-left: 13px;
}

.main-content ul.nolist {
	margin-left: 0;
	list-style-type: none;
}

.main-content ol li {
	margin-bottom: 15px;	
}

.main-content ul li {
	margin-bottom: 0;	
}

.main-content ol {
  	font-weight: 600;
  	margin-bottom: 20px;
}

.main-content ol.bottommargin {
  	margin-bottom: 40px;	
}

.main-content a {
	color: #004176;
	text-decoration: underline;
}

ol > li > * {
  	font-weight: normal;
}

ol.alphalist {
    counter-reset: list;
    margin-left: 20px;
    margin-top: 3px;
}

ol.alphalist > li {
    list-style: none;
    position: relative;
    font-weight: normal;
    margin-bottom: 0;
}

ol.alphalist > li:before {
    counter-increment: list;
    content: counter(list, lower-alpha) ") ";
    position: absolute;
    left: -1.4em;
}

.main-content p {
	font-family: 'Montserrat', sans-serif;
	color: #000000;
	font-size: 15px;
	line-height: 1.2;
    font-weight: 400;
    margin-bottom: 15px;
}

.main-content strong {
	font-weight: 600;
}

.nomargin {
	margin-bottom: 0 !important;
}

.show {
	display: none;
}

.footer {
	text-align: center;
	padding-bottom: 14px;
}

.footer p {
	color: white;
	font-size: 11px;
	line-height: 1.4;
	font-weight: 400;
	margin-bottom: 0;
}

.footer.page {
	padding: 0 30px 55px;
	max-width: 1280px;
    margin: 0 auto;
}

.footer.page .footer-nav {
	text-align: left;
	font-size: 15px;
	color: black;
	font-weight: 400;
}

.footer.page .footer-nav a {
	color: black;
}

.disclaimer, .footer-nav {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	line-height: 1.3;
	margin-bottom: 0;
	color: white;
	display: block;
}

.footer-nav {
	display: block;
	margin-top: 10px;
}

.footer .row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 20px;
}

.footer .col {
	padding: 0 20px;
}

a {
	text-decoration: none;
	color: white;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

a:hover {
	text-decoration: underline;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

@media screen and (max-width: 1194px) {
	.main {
		padding-bottom: 10px;
	}
}

@media screen and (max-width: 940px) {
	.info p {
/*		font-size: 18px;*/
		font-size: 15px;
	}

	.logo img[src$=".svg"] {
	    width: 300px !important;
	}
}

@media screen and (max-width: 767px) and (orientation: landscape) {
	.main {
		height: calc( 100vh - 100px );
		padding: 0 30px;
	}

	body {
		background-size: 148%;
		background-position: center bottom;
	}

	br.hide {
		display: none;
	}

	.info p {
		font-size: 14px;
	}	

	.footer p, .footer a {
		font-size: 10px !important;
	}

	.footer .row {
		padding: 15px;
	}

	.show {
		display: inline-block;
	}
}

@media screen and (max-width: 844px) { 
	.footer p {
		font-size: 10px;
	}

	.disclaimer, .footer a {
		font-size: 9.8px !important;
	}

	.footer.page .footer-nav a {
		font-size: inherit !important;
	}
}

/* tablet: landscape */

@media screen and (min-width: 700px) and (max-width: 1100px) and (orientation : landscape) { 
	.main {
		height: calc( 100vh - 165px );
	}
}

/* tablet: portrait */

@media screen and (min-width: 700px) and (max-width: 1100px) and (orientation : portrait) { 
	.main {
		height: calc( 100vh - 165px );
	}
}

@media screen and (max-device-width: 767px) and (orientation: portrait) {
	body {
		background-position: center center;
		background-size: cover;
	}

	.disclaimer, .footer a {
		font-size: 10px;
	}
}

@media screen and (max-device-width: 668px) and (orientation: portrait) {
	.info p {
	  font-size: 14px;
	}
}

@media screen and (max-width: 600px) {
	body {
		background-position: center center;
		background-size: cover;
	}
	
	.main {
		padding: 0 30px 0;
	}

	p {
		font-size: 15px;
	}

	.footer .col {
	  	padding: 0px 15px;
	}
}

@media screen and (max-width: 449px) {
	.logo img[src$=".svg"] {
	    width: 100% !important;
	}

	.footer .col {
	  	padding: 0px 6px;
	}

	body {
		background-size: auto !important;
	}
}

@media screen and (max-device-width: 450px) and (orientation: portrait) {
	body {
		background-position: center bottom;
		background-size: 375%;
	}
}