@charset "UTF-8";

/******************************************************************************/
/* Reset                                                                      */
/******************************************************************************/

*, *::before, *::after
{
	box-sizing: border-box;
	margin: 0;
	outline: none;
	padding: 0;
}

/******************************************************************************/
/* Colors                                                                     */
/******************************************************************************/

:root
{
	--blue_1: #1a456b;
	--blue_2: #296ca8;
	--blue_3: #4992d3;
	--blue_4: #85b7e2;
	--blue_5: #c2dbf0;
	--blue_6: #edf4fb;
}

/******************************************************************************/
/* Font                                                                       */
/******************************************************************************/

@font-face
{
	font-family: "Neuropol";
	src:
		local("Neuropol"),
		url("../font/Neuropol.otf") format("opentype");
}

/******************************************************************************/
/* RESIL-AV                                                                   */
/******************************************************************************/

#resilav
{
	clip-path: polygon(0 0, 100% 0, 100% 48px, 0 100%);
	display: flex;
	height: 96px;
	/* position: sticky; */
	/* top: 0; */
	/* z-index: 1; */
}

#resilav div:nth-child(1) { background-color: var(--blue_1); flex-grow: 6; }
#resilav div:nth-child(2) { background-color: var(--blue_2); flex-grow: 5; }
#resilav div:nth-child(3) { background-color: var(--blue_3); flex-grow: 4; }
#resilav div:nth-child(4) { background-color: var(--blue_4); flex-grow: 3; }
#resilav div:nth-child(5) { background-color: var(--blue_5); flex-grow: 2; }
#resilav div:nth-child(6) { background-color: var(--blue_6); flex-grow: 1; }

#resilav div:nth-child(1)
{
	align-items: center;
	display: flex;
}

#resilav div:nth-child(6)
{
	position: relative;
}

#resilav div:nth-child(6) img
{
	position: absolute;
	left: calc(50% - 10.5px);
	top: calc(24px - 6.5px);
}

#resilav h1
{
	color: white;
	font-family: "Neuropol";
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 4px;
	margin: 0 -24px 0 24px;
	z-index: 1;

	margin: 0 -48px 0 48px;
}

@media (max-width: 600px)
{
	#resilav
	{
		clip-path: polygon(0 0, 100% 0, 100% 72px, 0 100%);
	}

	#resilav + .Background
	{
		clip-path: polygon(0 48px, 100% 24px, 100% 100%, 0 100%);
	}
}


#sticky
{
	position: sticky;
	top: 0;
	z-index: 1;
}

header button
{
	background-color: unset;
	background-image: url("../img/menu.svg");
	background-size: contain;
	border: none;
	cursor: pointer;
	height: 32px;
	margin-left: 24px;
	width: 32px;
}

dialog
{
	height: 200px;
	left: 24px;
	position: absolute;
	top: 72px;
	width: 300px;
	z-index: 1;
}

/* #resilav + .Background */
.Background
{
	aspect-ratio: 7/3;
	background-image: url("../img/image_1.webp");
	background-size: contain;
	clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
	margin-top: -48px;
}


/******************************************************************************/
/* Default                                                                    */
/******************************************************************************/

html
{
	background-color: var(--blue_6);
}

body
{
	background-color: white;
	/* background-image: url("../img/image_2.webp"); */
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: contain;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	box-shadow: 0 0 10px var(--blue_1);
	font-family: Arial;
	margin: 0 auto 48px auto;
	max-width: 1400px;
	/* min-height: 100vh; */
	/* padding-bottom: 300px; */
}

main
{
	margin: 0px 48px 24px 48px;
	/* margin: -12px 48px 24px 48px; */
}

@media (max-width: 1400px)
{
	body
	{
		border-radius: 0;
		margin-bottom: 0;
		padding-bottom: 21.4vw;
	}

	/* main
	{
		margin-top: -12px;
	} */
}

@media (max-width: 1024px)
{
	main
	{
		margin: 0 24px 24px 24px;
	}
}

@media (max-width: 800px)
{
	main
	{
		margin-top: 12px;
	}
}

@media (max-width: 600px)
{
	main
	{
		margin: 12px;
	}
}

/******************************************************************************/
/* Style                                                                      */
/******************************************************************************/

body
{
	font-size: 1.2rem;
}

h2
{
	font-size: 2rem;
	margin-bottom: 2rem;


	color: var(--blue_1);
	padding-bottom: 4rem;
}

h3
{
	border-bottom: 2px solid var(--blue_2);
	color: var(--blue_1);
	font-size: 1.6rem;
	margin: 2rem 0 1.6rem 0;
}

dl
{
	background-color: var(--blue_6);
	border: 1px solid var(--blue_4);
	border-bottom-right-radius: 12px;
	border-left: 4px solid var(--blue_2);
	border-top-right-radius: 12px;
	display: grid;
	gap: 0.8rem 1.6rem;
	grid-template-columns: max-content 1fr;
	padding: 0.8rem 0.8rem 0.8rem 1.6rem;
}

@media (max-width: 1024px)
{
	dl
	{
		grid-template-columns: none;
	}
}

dt
{
	color: var(--blue_1);
	font-weight: bold;
}

p
{
	margin: 0.8rem 0;
	text-align: justify;
}

strong,
.Strong
{
	font-weight: bold;
}

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

.CardContainer
{
	align-item: center;
	display: flex;
	flex-grow: 1;
	flex-basis: 300px;
	justify-content: center;
	margin-bottom: 1.6rem;
}

.Card
{
	border: 2px solid var(--blue_4);
	border-bottom: 4px solid var(--blue_2);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	height: 140px;
	display: flex;
	padding: 20px;
	width: 280px;
}

.Card img
{
	width: 100%;
}

/******************************************************************************/
