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

:root {
	--input-border: #8b8a8b;
	--input-focus-h: 245;
	--input-focus-s: 100%;
	--input-focus-l: 42%;
}

.input {
	font-size: 16px;
	font-size: max(16px, 1em);
	font-family: inherit;
	padding: 0.25em 0.5em;
	background-color: #off;
	border: 2px solid var(--input-border);
	border-radius: 4px;
	transition: 180ms box-shadow ease-in-out;
}

@media only screen and (max-width : 480px) {
	.input {
		font-size: 12px;
		font-size: max(12px, 0.7em);
	}
}


.input:focus {
  border-color: hsl(var(--input-focus-h), var(--input-focus-s), var(--input-focus-l));
  box-shadow: 0 0 0 3px hsla(var(--input-focus-h), var(--input-focus-s), calc(var(--input-focus-l) +
          40%), 0.8);
  outline: 3px solid transparent;
}

.input:not(textarea) {
	line-height: 1;
	height: 2.25rem;
}

input[type="file"] {
  font-size: 0.9em;
  padding-top: 0.35rem;
}

textarea.input {
  resize: vertical;
}

.input[readonly] {
  border-style: dotted;
  cursor: not-allowed;
  color: #777;
}

.input[disabled] {
  --input-border: #ccc;

  background-color: #eee;
  cursor: not-allowed;
}

label {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
}

@media only screen and (max-width : 480px) {
	label {
		font-size: 0.8rem;
	}
}


.input + label {
  margin-top: 2rem;
}


* {
  box-sizing: border-box;
}

.button {
  font-size: 1.2rem;
  border: none;
  background-color: transparent;
  font-family: inherit;
  padding: 0;
  cursor: pointer;

  @media screen and (-ms-high-contrast: active) {
    	border: 2px solid currentcolor;
  }

  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;

  background-color: #90BAC4;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.18);

  padding: 0.2em 0.6em;
  min-width: 8ch;
  min-height: 32px;

  text-align: center;
  line-height: 1.1;

  transition: 220ms all ease-in-out;
}

.button:hover, .button:active {
    color: #90BAC4;
    background-color: #fff;
}

.button:focus {
    outline-color: transparent;
    outline-style: solid;
    box-shadow: 0 0 0 4px #3e68ff;
    transition: 0.7s;
}

@media only screen and (max-width : 480px) {
	.button {
		font-size: 1rem;
	}
}





html { 
	height: 100%;
}

body {
	height: 100%;

	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 14pt;

	background-image:url('assets/images/background-1440x1400.png?v=1');
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}


@media only screen and (max-width : 480px) {
	body {
		background-image: url('assets/images/background-s.png');
		font-size: 4vw; 
	}
}

.title-container {
	display: flex;
	justify-content: space-between;
}

.title {
	min-width: 250px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
}

.title-style {
	font-size: 28pt;
	font-weight: 500;
	margin: 0
}

@media only screen and (max-width : 480px) {
	.title-style {
		font-size: 7vw;
	}
}

.title-menu {
	width: 720px;
	font-weight: 700;
	font-size: 16pt;
	padding: 8px;
	border-radius: 8px;
	background: rgba(255,255,255,0.8);
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.hamburger {
	font-size:18pt;
	color: black;
	text-decoration: none;
	display: none;
	padding: 10px;
}


@media screen and (max-width:1150px) {
	.title-menu {
		display: none;
	}
	.hamburger {
		display: inline;
	}
	.open {
		width: 150px;
		margin: 4px;
		display: inline;
		position: absolute;
		right: 0;
		top: 40px;
	}
}


.title-menu-selected {
	border-bottom: 2px solid;
}


.header-style {
	font-weight:400;
}


.faq-box {
	height: 70vh;
	overflow-y: auto;
}


.faq-box::-webkit-scrollbar {
	  -webkit-appearance: none;
  	width: 10px;
}


.faq-box::-webkit-scrollbar-thumb {
  	border-radius: 5px;
  	background-color: rgba(0,0,0,.5);
  	-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}


dt {
	font-weight: 700;
}


dd {
	margin-bottom: 1em;
}


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


.bottom {
	font-size: 12pt;
	float: right;
}


.plain {
	text-decoration: none;
	color: initial;
}


.panel {
	width:95%;
	max-width:800px;
	margin: auto auto;

	border-radius: 8px;
	background: rgba(255,255,255,0.8);
	padding: 10px;
}


