*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	height: 100%;
	font-size: 93.75%;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: #355664;
	color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	display: block;
}

a {
	color: #02d6e5;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #eeee22;
}

.container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header */
.site-header {
	background-color: #ffffff;
}

.site-header .container {
	display: flex;
	align-items: center;
	min-height: 70px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.site-logo {
	width: 282px;
	max-width: 100%;
	height: auto;
}

/* Hero title */
.hero-title {
	padding-top: 20px;
	padding-bottom: 10px;
}

.hero-title h1 {
	margin: 0;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 27px;
	font-weight: 700;
	line-height: 1.3;
	text-align: left;
	text-transform: none;
}

/* Content */
.intro {
	padding-top: 10px;
	padding-bottom: 10px;
}

.intro .container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
}

.intro-text,
.intro-media {
	flex: 1 1 0;
	min-width: 280px;
}

.intro-text {
	text-align: justify;
	color: #ffffff;
	font-size: 17px;
	line-height: 1.6;
}

.intro-text p {
	margin: 0 0 1em;
}

.intro-text p:last-child {
	margin-bottom: 0;
}

.intro-media img {
	width: 500px;
	max-width: 100%;
	height: auto;
	margin-left: auto;
}

/* Contact */
.contact {
	text-align: center;
	color: #ffffff;
	margin: 10px 0 24px;
	font-size: 15px;
}

/* Footer */
.site-footer {
	margin-top: auto;
	background-color: #213e4a;
	text-align: center;
	color: #ffffff;
	padding: 8px 0 19px;
}

.site-footer p {
	margin: 0;
}

.site-footer a {
	color: #02d6e5;
}

.site-footer a:hover,
.site-footer a:focus {
	color: #eeee22;
}

/* Modal */
.modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal[hidden] {
	display: none;
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.modal-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 720px;
	max-height: 85vh;
	overflow: auto;
	background: #ffffff;
	color: #213e4a;
	border-radius: 6px;
	padding: 28px 32px 24px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.modal-close {
	position: absolute;
	top: 8px;
	right: 12px;
	border: 0;
	background: transparent;
	color: #213e4a;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
}

.modal-close:hover,
.modal-close:focus {
	color: #355664;
}

.modal-body h2 {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	padding-right: 28px;
}

.modal-logo {
	text-align: left;
	margin: 0 0 16px;
	padding-right: 36px;
}

.modal-logo img {
	width: 200px;
	max-width: 100%;
	height: auto;
}

.modal-body p,
.modal-body li {
	font-size: 14px;
	line-height: 1.55;
	text-align: justify;
}

.modal-body p {
	margin: 0 0 12px;
}

.modal-body ol {
	margin: 0 0 12px;
	padding-left: 22px;
}

.modal-body li {
	margin-bottom: 10px;
}

body.modal-open {
	overflow: hidden;
}

@media (max-width: 1024px) {
	.container {
		max-width: 1024px;
	}
}

@media (max-width: 767px) {
	.container {
		max-width: 767px;
	}

	.site-header .container {
		justify-content: center;
	}

	.hero-title h1 {
		font-size: 22px;
		text-align: center;
	}

	.intro .container {
		flex-direction: column;
	}

	.intro-media img {
		margin: 0 auto;
	}
}
