@font-face {
  font-family: 'Open Sans', sans-serif;
  font-style:   normal;
  font-weight:  400;
}

/*
Base
 */
html {
	width: 100%;
	height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  height: auto;
  min-height: 100%;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #000;
}

h1 {
	font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  line-height: 5.5rem;
}

h2 {
	font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1.625rem;
  line-height: 2rem;
  letter-spacing: 0.16rem;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

h3 {
	font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: 0.12rem;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 0 1.5rem 0
}

h4 {
	font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 3.25rem;
  line-height: 3rem;
  font-style: normal;
  text-transform: uppercase;
  margin: 0.75rem 0 2.25rem 0;
}

h5 {
	font-family: 'Open Sans', sans-serif;
  font-weight: 600;
	font-size: 1.625rem;
	line-height: 2rem;
  font-style: normal;
  text-transform: uppercase;
  margin: 0.75rem 0;
}

h6 {
  font-weight: 600;
	font-size: 1rem;
	line-height: 1.7rem;
  font-style: normal;
  margin: 0.25rem 0;
}

p, label, button, ul li {
	font-family: 'Open Sans', sans-serif;
	margin: 0 0 0.75rem 0;
	font-size: 0.95rem;
	line-height: 1.8rem;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

a:link, a:hover, a:visited, a:active {
	text-decoration: none;
	color: #318E86;
}

a:hover {
	color: #246C66;
}

a.privacy:link, a.privacy:hover, a.privacy:visited, a.privacy:active {
	text-decoration: none;
	color: #318E86;
}

label {
	font-style: normal;
  display: block;
  margin: 0 0 0.2rem 0;
}

button {
	background-color: #246C66;
	color: #FFF;
	border-radius: 6px;
	border: none;
	border-radius: 6px;
	padding: 10px 20px;
	color: #FFF;
	outline: none;
	cursor: pointer;
	margin: 0;
}

button.primary {
	background-color: #318E86;
	border-right: 1px solid #246C66;
	border-bottom: 1px solid #246C66;
}

button.secondary {
	background-color: #FDE3DA;
	border-right: 1px solid #FBC8B5;
	border-bottom: 1px solid #FBC8B5;
	color: #000;
}

button.tertiary {
	background-color: #FFF;
	color: #9B82D7;
	padding: 0;
}

button.primary:hover {
	background-color: #246C66;
}

button.secondary:hover {
	background-color: #FBC8B5;
}

button.tertiary:hover {
	color: #8470B4;
}

button.primary:disabled {
	background-color: #D9D9D9;
}

button svg {
  vertical-align: middle;
  margin-right: 0.2rem;
}

form {
	padding: 0;
	margin: 1rem 0 0 0;
	display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.2rem;
}


form button {
	margin-top: 2rem;
}

fieldset  {
	display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  border: none;
  width: 100%;
  max-width: 600px;
}

fieldset.fieldset-checkbox {
	display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
}

fieldset.fieldset-checkbox input:checked {
	background-color: #318E86;
}

input, textarea, select {
	border-radius: 8px;
	border: 1px solid #D5D5D4;
	box-sizing: border-box;
	padding: 0 12px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.95em;
	line-height: 1.2em;
	color: #151515;
	appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
	width: 100%;
}

input, select {
	height: 50px;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M5.29289 9.29289C4.90237 9.68342 4.90237 10.3166 5.29289 10.7071L11.2929 16.7071C11.4804 16.8946 11.7348 17 12 17C12.2652 17 12.5196 16.8946 12.7071 16.7071L18.7071 10.7071C19.0976 10.3166 19.0976 9.68342 18.7071 9.29289C18.3166 8.90237 17.6834 8.90237 17.2929 9.29289L12 14.5858L6.70711 9.29289C6.31658 8.90237 5.68342 8.90237 5.29289 9.29289Z' fill='black'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 98%;
	background-position-y: 50%;
}

textarea {
	padding: 12px;
	height: 300px;
}

input[type='checkbox'] { 
	width: 18px;
  height: 18px;
	border-radius: 4px;
	padding: 0;
}

input:hover, textarea:hover, select:hover {
	border: 1px solid #318E86;
}

input:focus, textarea:focus, select:focus {
	border: 1px solid #246C66;
  outline: none;
}

input::placeholder, textarea::placeholder, option:disabled {
	color: #CBCBCB;
}

input.error {
	border: 1px solid #E3474B;
}

.toggleButton:checked + label {
    background-color: #FDE3DA;
}

.toggleButton + label {
    display: table;
    padding: 12px 23px;
    margin: 0;
    line-height: 0;
    background-color: #E5D6D0;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.toggleButton {
    display: none !important;
}

fieldset p {
	margin: 4px 0 0 0;
}

p.error {
	color: #E3474B;
}

p.success {
	color: #318E86;
}

p.small {
	font-size: 0.75rem;
	margin: 0;
}

hr {
    display: block;
    border: none;
    height: 21px;
    width: 100%;
    background-image: url('/img/hr.svg');
    background-repeat: no-repeat;
} 

#index img {
	max-width: 680px;
	max-height: 580px;
	border-radius: 0.75rem;
}

.content {
	width: 92%;
  max-width: 1280px;
  margin: auto;
  display: block;
}

.layout {
	display: flex;
	flex-direction: row;
	gap: 1.2rem;
    width: 100%;
}

.layout ul {
	list-style: initial;
	padding: revert;
}

.layout article {
	display: flex;
	flex-direction: column;
}

.layout img {
  width: 45%;
  height: fit-content;
}

.layout a {
	align-self: center;
}

.layout button {
  margin: 2.4rem auto 0 auto;
}

#captcha-badge {
	margin: auto;
  width: fit-content;
}

.alert {
	font-size: 0.95rem;
    line-height: 1.8rem;
	border-radius: 6px;
	padding: 0.6rem;
	margin-bottom: 1.2rem;
	display: flex;
    flex-direction: row;
    gap: 0.6rem;
    align-items: center;
}

.alert svg {
	min-width: 16px;
}

.alert.info {
	background-color: #F0F7FF;
	border: 1px solid #7ABDFF;
}

/* Toggle */
/* The switch - the box around the slider */
form .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
form .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

form .switch input:checked + .slider {
  background-color: #38bfba;
}

form .switch input:focus + .slider {
  box-shadow: 0 0 1px #38bfba;
}

form .switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

span.toaster {
  position: absolute;
  left: 3em;
  top: 0;
  font-size: 2em;
}




header {
	width: calc(100% - 4rem);
	max-width: 1380px;
  margin: auto;
	padding: 1.5rem 2rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	color: #000;
}

header #logo svg {
	width: 250px;
	height: auto;
}

header #menu-mobile {
    display: none;
}

header ul {
	display: flex;
	flex-direction: row;
	gap: 1.4rem;
  list-style: none;
  align-items: center;
}

header nav ul li {
	display: inline-block;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
}

header nav ul li:last-child {
	margin: 0;
}

#index header nav ul li {
  color: #fff;
}

header a:link, header a:hover, header a:active, header a:visited {
	color: #000;
	text-decoration: none;
}

#index header a:link, #index header a:hover, #index header a:active, #index header a:visited {
	color: #FFF;
}

#index header a:hover {
	color: #FDE3DA;
}

header a:hover {
	color: #fbc8b5;
}



.current {
	text-decoration-line: underline;
	text-decoration-style: wavy;
	text-decoration-color: #FBDF02;
	text-underline-offset: 10px;
}

.privacy-notice {
	margin-top: 0.5rem;
  text-align: left;
}

.privacy-notice a:link, .privacy-notice a:hover, .privacy-notice a:active, .privacy-notice a:visited {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.85em;
	color: #246C66;
	text-decoration: none;
}

.privacy-notice p.small {
	line-height: 1.2rem;
}

.privacy-notice p.active {
  margin: 0;
  display: block;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.privacy-notice p.inactive {
  margin: 0;
  display: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}





@media screen and (max-width: 1028px) {

	header nav ul {
		display: none;
		position: relative;
	}
}




@media screen and (max-width: 950px) {

  header nav #menu-mobile {
    text-transform: uppercase;
    position: fixed;
    top: 80vh;
    right: 1rem;
    display: block;
    height: 66px;
    background-color: #FBDF02;
    border-radius: 100px;
    width: 66px;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    line-height: 63px;
    text-align: center;
    z-index: 1000;
  }

  #index header a:link, #index header a:hover, #index header a:visited, #index header a:active {
		color: #000;
	}

  header nav.active ul {
    position: fixed;
    display: flex;
    height: 100vh;
    background-color: #FBDF02;
    margin: 0;
    width: calc(100% - 4.8rem);
    top: 0;
    left: 0;
    padding: 2.4rem;
    flex-direction: column;
    text-align: right;
    z-index: 1001;
    align-items: flex-end;
    text-transform: uppercase;
  }

  header nav.active ul li svg path {
    fill: #000;
  }

  header nav.active #menu-mobile {
      display: none;
  }

}

@media screen and (max-width: 790px) {

	h1 {
		font-size: 2.5rem;
		letter-spacing: 0.2rem;
    	line-height: 3.2rem;
	}

	.content {
    	width: 88%;
  	}

	.layout {
		flex-direction: column;
	}

	.layout img {
	    width: 100%;
	}

  	form {
  		flex-direction: column;
  	}

  	form button {
  		margin-top: 0;
    	width: 100%;
	}

	select {
		background-position-x: 96%;
	}

	header {
		justify-content: center;
		padding: 4rem 2rem 0 2rem;
	}

	header #logo svg {
		width: 245px;
		height: 91px;
	}
}

