@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aX8.ttf) format("truetype");
}

@font-face {
	font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w5aX8.ttf) format("truetype");
}

@font-face {
	font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEorCIPrQ.ttf) format("truetype");
}

@font-face {
	font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrQ.ttf) format("truetype");
}

/* colors */
/* tab setting */
/* breakpoints */
/* selectors relative to radio inputs */
html {
	width: 100%;
	height: 100%;
}

body {
	background: #e3e9ec;
	color: #333;
	font-family: "Raleway";
	margin: 0;
}

body h1, p {
	text-align: center;
	color: #6e8a99;
	font-weight: 600;
	margin: 34px 0;
}

body p {
	font-size: 1em;
	font-weight: 400;
}

body a {
	color: #6e8a99;
}

body a:hover {
	color: #342d3a;
}

.sticky-header {
	width: 100%;
}

.mainContainer {
  /* Step 2: Set container display property to grid */
  display: grid;
  
  /* Step 3: Center content both horizontally and vertically */
  place-items: center;
  
  /* Additional styles (optional) */
  /* Adjust container dimensions to fit the entire viewport */
  width: 100%;
  height: 100vh; /* 100% of the viewport height */
}

.textContainer {
  /* Create a container element and set it to flex */
  display: flex;
  height: 100px; /* Adjust the height as needed */
  align-items: center; /* Vertically center the content */
  justify-content: center; /* Horizontally center the content */
}

.centered-text {
  /* Add this class to your h1 element to style it */
  margin: 0; /* Reset margin to remove any default spacing */
}


.tabs,
.two-col {
	background: white;
	padding: 50px;
	width: 80%;
	height: auto;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	border-radius: 5px;
	min-width: 240px;
}

.two-col {
  display:inline-flex; 
  gap: 20px;              /* space between columns */
  flex-wrap: wrap;

}

.two-col .col {
	flex: 1 1 300px;
	
/* center content inside each column */
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  text-align: center;      /* center text lines */
  min-height: 200px;       /* optional: gives vertical centering something to work with */

}


/* The divider line */
.two-col .col + .col {
  border-left: 1px solid #ddd;
  padding-left: 48px; /* adds space between line and content */
}

/* When stacked, switch to horizontal divider instead */
@media (max-width: 600px) {
  .two-col .col + .col {
    border-left: none;
    padding-left: 0;

    border-top: 1px solid #ddd;
    padding-top: 20px;
  }
}


.tabs input[name="tab-control"] {
	display: none;
}

.tabs .content section h2,
  .tabs ul li label {
	font-family: "Montserrat";
	font-weight: bold;
	font-size: 18px;
	color: #342d3a;
}

.tabs .content section h3 {
	text-align: center;
	margin-bottom: 32px;
}

.tabs ul.tab-menus {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
}

.tabs ul li {
	box-sizing: border-box;
	flex: 1;
	width: 100%;
}
.tabs ul.tab-menus li {
	text-align: center;
}

.tabs ul li label {
	transition: all 0.3s ease-in-out;
	color: #e3e9ec;
	padding: 5px auto;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	white-space: nowrap;
	-webkit-touch-callout: none;
	user-select: none;
}

.tabs ul li label br {
	display: none;
}

.tabs ul li label svg {
	fill: red;
	height: 2em;
	vertical-align: bottom;
	margin-right: 0.2em;
	transition: all 0.2s ease-in-out;
}

.tabs ul li label:hover, .tabs ul li label:focus, .tabs ul li label:active {
	outline: 0;
	color: #6e8a99;
}

.tabs ul li label:hover svg, .tabs ul li label:focus svg, .tabs ul li label:active svg {
	fill: #6e8a99;
}

.tabs .slider {
	position: relative;
	width: 50%;
	transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.tabs .slider .indicator {
	position: relative;
	width: 100px;
	max-width: 100%;
	margin: 0 auto;
	height: 4px;
	background: #342d3a;
	border-radius: 1px;
}

.tabs .content {
	margin-top: 30px;
}

.tabs .content section {
	display: none;
	animation-name: content;
	animation-direction: normal;
	animation-duration: 0.3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	line-height: 1.4;
}

.tabs .content section h2 {
	color: #342d3a;
	display: none;
}

.tabs .content section h2::after {
	content: "";
	position: relative;
	display: block;
	width: 65%;
	height: 3px;
	background: #342d3a;
	margin: 8px auto;
	left: 1px;
}

.tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
	cursor: default;
	color: #342d3a;
}

.tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label svg {
	fill: #e3e9ec;
}

div.content ul.lang-list {
  columns: 5; /* Set the number of columns */
  column-count: 5; /* Ensure that only 6 columns are displayed */
  column-fill: auto; /* Distribute list items evenly across columns */
  max-height: calc(2em * 12); /* Limit the height to 8 rows (assuming 2em line height) */
  list-style: none;
  margin: 0;
  padding: 0;
}

div.content ul.lang-list li .link {
  display: inline-block;
  text-decoration: none;
}

div.content ul.lang-list li .text {
  display: flex;
  align-items: center;
}

div.content ul.lang-list li .image {
  vertical-align: middle;
  margin-right: 8px;
  filter: grayscale(38%);
    -webkit-filter: grayscale(38%);
    -moz-filter: grayscale(38%);
    -ms-filter: grayscale(38%);
    -o-filter: grayscale(38%);
}

div.content ul.lang-list li .image:hover {
  filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
}


@media (max-width: 600px) {
	.tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
		background: rgba(0, 0, 0, 0.08);
	}
}

.tabs input[name="tab-control"]:nth-of-type(1):checked ~ .slider {
	transform: translateX(0%);
}

.tabs input[name="tab-control"]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
	display: block;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
	cursor: default;
	color: #342d3a;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label svg {
	fill: #342d3a;
}

@media (max-width: 600px) {
	.tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
		background: rgba(0, 0, 0, 0.08);
	}
}

.tabs input[name="tab-control"]:nth-of-type(2):checked ~ .slider {
	transform: translateX(100%);
}

.tabs input[name="tab-control"]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
	display: block;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
	cursor: default;
	color: #342d3a;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label svg {
	fill: #342d3a;
}

@media (max-width: 600px) {
	.tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
		background: rgba(0, 0, 0, 0.08);
	}
}

.tabs input[name="tab-control"]:nth-of-type(3):checked ~ .slider {
	transform: translateX(200%);
}

.tabs input[name="tab-control"]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
	display: block;
}

.tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
	cursor: default;
	color: #342d3a;
}

.tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label svg {
	fill: #342d3a;
}

@media (max-width: 600px) {
	.tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
		background: rgba(0, 0, 0, 0.08);
	}
}

.tabs input[name="tab-control"]:nth-of-type(4):checked ~ .slider {
	transform: translateX(300%);
}

.tabs input[name="tab-control"]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
	display: block;
}

@keyframes content {
	from {
		opacity: 0;
		transform: translateY(5%);
	}

	to {
		opacity: 1;
		transform: translateY(0%);
	}
}

@media (max-width: 1280px) {
	.tabs {
	width: 96%;
	padding: 32px;
	}
	.tabs ul li label {
		white-space: initial;
	}

	.tabs ul li label br {
		display: initial;
	}

	.tabs ul li label svg {
		height: 2em;
	}
	div.content ul.lang-list {
		columns: 5;
		column-count: 5;
		column-fill: auto;
		max-height: calc(2.2em * 12);
	}
}

@media (max-width: 600px) {
	.tabs {
	width: 94%;
	padding: 20px;
	}
	.tabs ul li label {
		padding: 5px;
		border-radius: 5px;
	}

	.tabs ul li label span {
		display: none;
	}

	.tabs .slider {
		display: none;
	}

	.tabs .content {
		margin-top: 20px;
	}

	.tabs .content section h2 {
		display: block;
		text-align: center;
	}
	
	div.content ul.lang-list {
		columns: 2;
		column-count: 2;
		column-fill: auto;
		max-height: calc(2.2em * 28);
	}
}