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

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

body {
	  min-height: 100vh;
	  width: 100%;
	  /* mobile viewport bug fix */
	  min-height: -webkit-fill-available;
	  background: url(images/blue-riband-bg.png) no-repeat center center fixed; 
	 -webkit-background-size: cover;
	 -moz-background-size: cover;
	 -o-background-size: cover;
	 background-size: cover;
}

/*#wrap {
	  min-height: 100vh;
	  width: 100%;
}
*/
.main {
	padding: 125px 140px 0;
	height: calc( 100vh - 150px );
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.logo {
	margin-bottom: 22px;
}

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

.footer {
	text-align: center;
	padding: 40px 140px;
}

p {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	color: #00305c;
	line-height: 1.1;
    font-weight: 700;
}

.footer p {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 500;
	margin-bottom: 8px;
}

.footer p.disclaimer {
	font-size: 11px;
	line-height: 1.3;
	margin-bottom: 0;
}

a {
	text-decoration: none;
	color: #00305c;
	-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;
	color: #00305c;
	-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: 1195px) {
	.logo img {
		max-width: 100%;
		width: 100%;
	}
}

@media screen and (max-width: 920px) {
	.main {
		padding: 125px 60px 0;
		/*height: calc( 100vh - 200px );*/
		height: 50%;
	}

	.footer {
	    padding: 40px 60px;
	    height: 50%;
	}
}

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

@media screen and (max-width: 570px) {
	.main {
		padding: 125px 60px 0;
		height: calc( 100vh - 250px );
	}
}

@media screen and (max-width: 450px) {
	#wrap {
		height: 100vh;
		/*height: calc(var(--vh, 1vh) * 100);*/
		padding: 30px;
/*		position: fixed;
		top: 0;
		bottom: 0;
		min-height: unset;*/
	}

	.main {
		/*padding: 40px 40px 0;*/
		/*height: calc( 100vh - 265px );*/
		/*height: calc( 100vh - 250px );*/
		height: 50%;
		padding: 0;
		display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
		/*padding: 40px 0 0 0;*/
		/*background: pink;*/
	}

	.info {
		padding-top: 80px;
	}

	.footer {
		/*padding: 30px;*/
		/*padding: 0 30px 30px;*/
	    /*height: 250px;*/
	    /*padding: 0 0 30px 0;*/
	    padding: 0;
	    height: 50%;
/*	    bottom: 0;
    	position: absolute;*/
		display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
	    /*background: yellow;*/

	}

	p {
		font-size: 15px;
	}

	.footer p {
	    font-size: 11px;
	    margin-bottom: 20px;
	}

	.footer p.disclaimer {
	    font-size: 9px;
	}

	.footer span {
	    display: none;
	}	

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



/*	.a, .b {
		display: none;
	}

	.a {
		height: 50%;
		background: pink;
		display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
	}

	.b {
		height: 50%;
		background: yellow;
		display: flex;
	    flex-direction: column;
	    justify-content: flex-end;
	    align-items: center;
	}*/
}
	