
/* Basis *******************************************************************/

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, input, select, textarea, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, :before, :after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-sizing: border-box;
	padding: 0;
	border: 0;
	margin: 0;
	font-size: 100%;
	vertical-align: baseline;
}
html {
    width: 100%;
	height: 100%;
	height: -webkit-fill-available;
	min-width: 320px;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	background: #162439;
}
body {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	min-width: 320px;
	padding: 0;
	font: 400 16px/1.6 Poppins, sans-serif;
	text-align: center;
	color: #fff;
	margin: 0;
	background: #162439;
	overflow-y: auto;
	overflow-x: hidden;
	-moz-font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
}
/* Wrapper *******************************************************************/

.wrapper {
	position: relative;	
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100svh;
	padding: 75px;
	overflow: hidden;
	margin: 0 auto;
	z-index: 20;
}

/* Modal *******************************************************************/

.modal {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1330px;
	padding: 0 75px;
	min-height: 605px;
	border-radius: 20px;
	background: #16243950;
	box-shadow: inset 0 0 0 4px #e6f8fe;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	.text {
		width: 50%;
		max-width: 500px;
		padding: 50px 0;
		text-align: left;
		margin: 0 auto 0 0;
		img {
			width: 340px;
			height: 80px;
			margin: 0 0 30px;
		}
		h1 {
			font-weight: 700;
			font-size: 40px;
			line-height: 1.25;
		}
		h2 {
			font-weight: 700;
			font-size: 22px;
			line-height: 1.325;
			color: #0ab6f6;
			margin: 25px auto;
		}
		h3 {
			font-weight: 700;
			font-size: 18px;
			line-height: 1.325;
			color: #fd4e02;
		}
		.contact {
			display: inline-flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			margin: 40px 0 0;
			a {
				display: inline-flex;
				align-items: center;
				text-decoration: none;
				white-space: nowrap;
				color: #fff;
				transition: color 350ms;
				&:hover, 
				&:focus {
					color: #0ab6f6;
				}
				&:before {
					display: inline-block;
					font-family: 'Material Symbols Outlined';
					font-size: 18px;
					font-style: normal;
					line-height: 15px;
					color: #0ab6f6;
					margin: 0 0.75em 0 0;
				}
				&.mail {
					&:before {
						content: '\e158';
					}
				}
				&.call {
					&:before {
						content: '\e0b0';
					}
				}
			}
			span {
				color: #0ab6f6;
				margin: 0 1em;
			}
		}
	}
	.image {
		position: relative;
		align-self: stretch;
		width: 50%;
		min-height: 580px;
		img {
			position: absolute;
			left: 50%;
			bottom: 0;
			width: 100%;
			max-width: 580px;
			object-fit: contain;
			object-position: center bottom;
			transform: translateX(-50%);
		}
	}
}

/* Waves *******************************************************************/

.waves {
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	max-width: 1920px;
	height: 100%;
	object-fit: cover;
	object-position: 50% 25%;
	opacity: 0.75;
	z-index: 10;
	transform: translateX(-50%);
}

@media (max-width: 1479px) {

	/* Modal *******************************************************************/

	.modal {
		.text {
			width: 100%;
			text-align: center;
			margin: 0 auto;
		}
		.image {
			display: none;
		}
	}

}

@media (max-width: 767px) {

	/* Basis *******************************************************************/
	
	body {
		font-size: 14px;
	}
	
	/* Wrapper *******************************************************************/
	
	.wrapper {
		padding: 15px;
	}

	/* Modal *******************************************************************/

	.modal {
		min-height: unset;
		padding: 50px 30px;
		border-radius: 10px;
		box-shadow: inset 0 0 0 3px #e6f8fe;
		.text {
			width: 100%;
			padding: 0;
			text-align: center;
			margin: 0 auto;
			img {
				width: 130px;
				height: 100px;
				content: url('logo-mobile.svg');
				margin: 0 0 20px;
			}
			h1 {
				font-size: 26px;
			}
			h2 {
				font-size: 16px;
			}
			h3 {
				font-size: 16px;
			}
			.contact {
				margin: 20px 0 -10px;
				a {
					margin: 5px;
				}
				span {
					display: none;
				}
			}
		}
		.image {
			display: none;
		}
	}

}