@charset "UTF-8";
/* CSS Document */
:root {
	--Base: #2C9A80;   /*Base color*/
	--Base05: #2C9A800d; /*Base color  5% */
	--Base20: #2C9A8033; /*Base color 20% */
	--Base50: #2C9A8080; /*Base color 40% */	
}

body {
	background-color:white;
	padding: 0;
	margin: 0;
  	font-family: "Poppins", "Source Sans Pro", Helvetica, sans-serif;	
	font-size:16px;	
	font-weight: 400;
	color:black;
    max-width: 100%;
	width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
  	margin: 0.5rem 0 0 0;
	line-height: 1.15em;
}
h1 {
  	font-size: 3rem;
}
h2 {
  	font-size: 1.75rem;
}
h3 {
  	font-size: 1.5rem;
}
h4 {
  	font-size: 1.1rem;
}	
h5 {
  	font-size: 1rem;
}
h6 {
  	font-size: 0.75rem;
}
a {
  	color: inherit;
  	text-decoration: none;
}
a:hover {
  	color: var(--Base);
  	text-decoration: none;
}
p {
  	margin: 0.25rem 0;
  	line-height: 1.75em;
}
i {
  	margin-right: 8px;
}
a:hover{
	color:var(--Base);
}
input, select, textarea, input[type=search], .radio {
    background: var(--Base05);
	border: solid 1.5px var(--Base50);
	border-radius: 24px;
	padding: 8px 20px;
	color: var(--Base);
	text-align: start;
	transition: 0.25s;
	gap:12px;
  	text-overflow: ellipsis;
  	overflow: hidden;
  	font-family: "Poppins", "Source Sans Pro", Helvetica, sans-serif;
	font-size: 16px;
}
.text-center {
	align-self: center;
	text-align: center;
}

.subtitle{
	font-size: 1.5rem;
	font-weight: 400;
}
.navbar{
	min-height: 72px;
	background-color:white;
	display:flex;
	padding: 12px;
	flex-direction: column;
	align-content: center;
	justify-content: center;
  	align-items: center;
	gap:20px;
	overflow: none;
  	position: sticky;
  	z-index: 100;
	top:0;
}
.unfair{    
	background-position: center center;
    min-height: 100vh;
	width: 100%;
    background-size: cover;
	display:flex;
	padding: 0;
	margin: 0;
	flex-direction: column;
	align-content: center;

  	align-items: center;
	gap:20px;
	overflow: none;
}

.footer{
	display:flex;
	flex-direction: row;
	justify-content: center;
	gap:20px;
	padding:0 40px 40px 40px;
	margin:60px 0 0 0;
	background-color: var(--Base05);	
}
.inner-row{
	width: 100%;
	display:flex;
	flex-direction: row;
	gap:12px;
	height: 100%;
}
.unfair > .inner-row {
	min-height:100vh;
}
.inner-col{
	display:flex;
	flex-direction: column;
	justify-content: stretch;
	gap:12px;	
	width:100%;
}
.query-form{
	justify-content: flex-start;	
	align-items: center;
	max-width: 540px;
}
.sticky{
	position: sticky;
  	top: 0;
}
.results{
	background-color: #f8f8f8;
	justify-content: flex-start;	
	padding-top: 20px;
	height: auto;
}
.container-results{
	display: flex;
	flex-direction: column;
	padding:32px;
	max-width: 800px;
	align-content: flex-start;
	flex-wrap: wrap;
	gap:20px;
}
.result-group{
	display:flex;
	flex-direction: column;
	gap:4px;
}
.result-header{
	color: var(--Base);
}
.result-header:hover{
	color: var(--Base);
	text-decoration: underline;
}
.flex-end{
	align-items: end !important;
} 
.flex-center{
	align-items: center;
} 
.flex-stretch{
	align-items:stretch;
} 
.justify-end{
	justify-content: end;	
} 
.justify-center{
	justify-content: center;	
} 
.justify-between{
	justify-content: space-between;	
} 
.align-start{
	align-self: flex-start;
}
.hero-whitespace{
	width:50%;
}
.btn-solid {
	background-color: var(--Base);
	border: solid 4px rgba(255, 255, 255, 0.40);
	border-radius: 100px;
	padding: 12px 32px;
	color: white;
	text-align: center;	
	transition: 0.25s;
	gap:12px;
}
.btn-solid:hover {
	color: white;
	filter: brightness(1.2);
	scale: 104%;	
	transition: 0.25s;	
	cursor: pointer;
}
.form-group{
	display:flex;
	flex-direction: column;
	max-width:460px;
	gap:20px;
	padding:32px 20px;
}
.btn-outline {
	background-color: rgba(0, 105, 181, 0.0);
	border: solid 4px rgba(255, 255, 255, 0.40);
	border-radius: 100px;
	padding: 12px 32px;
	color: white;
	text-align: center;
	transition: 0.25s;
	gap:12px;
}
.btn-outline-color {
	background-color: rgba(0, 105, 181, 0.0);
	border: solid 4px rgba(0, 105, 181, 0.20);
	border-radius: 100px;
	padding: 12px 32px;
	color: var(--Base);
	text-align: center;
	transition: 0.25s;
	gap:12px;
}
.btn-outline:hover, .btn-outline-color:hover {
	color: white;
	filter: brightness(1.2);
	scale: 104%;
	background-color: var(--Base);	
}
.col-logo{
	max-width: 240px;
	justify-content: center;
}
.home-logo, .home-logo-footer{
	width: 180px;
	border: 0 solid white;
	transition: 0.25s;	
}
.home-logo:hover, .home-logo-footer:hover {
	scale: 104%;	
	transition: 0.25s;	
}
.btn-nav{
	padding: 6px 16px;
	font-size: 14px;
	}
.nav-menu{
	display:flex;
	padding: 0px;
	flex-direction:row;
	gap:20px;
}
.nav-menu > a, .nav-item{
	font-size: 15px;
	border-bottom: 2px solid rgba(0, 105, 181, 0.0);
}
.nav-menu > a:hover, .nav-menu > a:active, .nav-item:hover, .nav-item:active {
	color:var(--Base);
	border-bottom: 2px solid var(--Base);	
}
.lang-switcher{
	display:flex;
	flex-direction: row;
	gap: 8px;
}
.btn-lang{
	background-color: rgba(255, 255, 255, 1.0);
	border: solid 2px var(--Base);
	border-radius: 100px;
	padding: 0px;
	width:16px;
	height:16px;
	color: var(--Base);
	text-align: center;
	transition: 0.25s;
	gap:12px;
}
.btn-lang:hover {
	color: rgba(255, 255, 255, 1.0);
	filter: brightness(1.2);
	scale: 104%;
	transition: 0.25s;
	border: 2px solid rgba(255, 255, 255, 1.0);		
}
.lang-nl{
	background-image: url("img/lang-nl.webp");
	background-position: center center;
	background-size: cover;	
}
.lang-en{
	background-image: url("img/lang-uk.webp");
	background-position: center center;
	background-size: cover;	
}
.gradient-dark{
	background: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5));
 	background: -o-linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5));
 	background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5));
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus{
    outline: none;
}
.container{
    position: relative;
	z-index: 2;
}

.select{
    position: relative;
    width: 100%;
    height: 44px;
    border-radius: 22px;
    border: 1.5px solid var(--Base50);
    color: var(--Base);
    background: var(--Base05);
    text-align: left;
    padding: 0 15px;
    font-size: 18px;
    cursor: pointer;
}

.select::after{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--Base);
    border-bottom: 2px solid var(--Base);
}

.select:hover{
    background: var(--base20);
}

.select.active{
    background: var(--Base20);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.options{
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: fit-content;
    background: white;
	border: 1.5px solid var(--Base50);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    overflow: hidden;
    display: none;
}

.options.active{
    display: block;
}

.options .item{
    color: var(--Base);
    width: 100%;
    height: 30px;
    padding: 0 15px;
    line-height: 30px;
    cursor: pointer;
}

.options .item.active{
    background: var(--Base20);
	color: var(--Base50)
}
.query-container{
	display:flex;
	flex-direction: column;
	gap:8px;
}
.radio-group{
	display:flex;
	flex-direction: column;
	gap:8px;
	margin-bottom: 12px;
}
/* Customize the label (the container) */
.radio-container {
	display: block;
	position: relative;
	padding-left: 36px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
	border: 2px solid var(--Base);	
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
	background-color: var(--Base);
	border: 4px solid var(--Base50);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: red;
} 
.products-grid{
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap:8px;
}
.products-checkbox {
	display:none;
}

.products-checkbox + label{
	display: flex;
	flex-direction: column;
	border: var(--Base05) solid 2px;
	border-radius: 16px;
	height: 100%;
	min-height:80px;
	width: 100%;
	min-width:80px;	
	padding: 8px 8px 2px 8px;
	background-position:center center;
	background-size:cover;
	background-repeat: no-repeat;
	justify-content: flex-end;
	align-items: center;
	font-size: 9px;
	font-family: Arial, san-serif;
	font-weight: 600;
	text-shadow: 2px 2px 4px white;
	text-transform: uppercase;
	text-align: center;
	color: black;
}

.products-checkbox:checked + label{
	border: 2px solid var(--Base);
}

@media (max-width: 1024px) {
body {
font-size:16px;	
}	
.col-logo{
	align-items: center;
	max-width: 100%;
}	
.navbar-collapse > .inner-row{
	justify-content: center;
	align-items: center;
	text-align: center;
}	
}
 
@media (max-width: 640px) {
body {
	font-size:16px;	
}	
h1 {
  	font-size: 2rem;
}
h2 {
  	font-size: 1.5rem;
}
h3 {
  	font-size: 1.25rem;
}
h4 {
  	font-size: 1.1rem;
}	
h5 {
  	font-size: 1rem;
}
h6 {
  	font-size: 0.75rem;
}
.subtitle{
	font-size: 1.25rem;
	font-weight: 400;
}
.inner-row{
	flex-direction: column;
	align-items: center;
}
.row-mobile{
	flex-direction: row;	
}	

.btn-outline, .btn-solid, .btn-outline-color {
	max-width: 100%;
	align-self: stretch;	
} 
.col-logo{
	align-items: center;
	max-width: 100%;
}	
.home-logo{
	width: 120px;
}
	}