
html.no-scroll {
	overflow-y: scroll; /* Keep scrollbar */
}

body.no-scroll {
	overflow: hidden; /* Prevent scrolling */
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
}

.inner-wrap{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}


.menubar {
	position: relative;
	background: #fff;
}
.menubar__logo {
	width: 367px;
	transition: all 0.3s ease;
	transform: translateY(4px);
}
.menubar__logo img {
	width: 100%;
	transition: all 0.3s ease;
}

.menubar__top,
.menubar__bottom {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

.menubar__top{
	padding-top: 32px;
	padding-bottom: 12px;
}

.menubar__bottom-left,
.menubar__bottom-right{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 32px;
}


.search-field {
	position: relative;
	width: 320px;
}

.menu-and-search  input{
	border: 1px solid #D8E0E8;
	border-radius: 100px;
	padding: 14px 24px;
	width: 100%;
	box-sizing: border-box;
	transition: all 0.3s ease;
	font-size: 20px;
	font-weight: 400;
	color: #405260;
}

.menu-and-search  input:hover{
	border: 1px solid #A0A8AD;
}

.menu-and-search  {
	display: flex;
	flex-direction: row;
	gap: 16px;
}
.menu-and-search  button{
	background: none;
	border: none;
	cursor: pointer;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
}

.menubar__bottom a{
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	padding: 20px 0;
	transition: all 0.3s ease;
	color: #172C45;
	position: relative;
	z-index: 1;
	transform: translateY(2px);
}

.menubar__bottom a:hover,
.menubar__bottom a.active{
	text-decoration: none;
}
.menubar__bottom a::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #D3AF7E;
	transform: scaleX(0);
	transition: all 0.3s ease;
	transform-origin: bottom center;
}

.menubar__bottom a:hover::after{
	text-decoration: none;
	transform: scaleX(1);
}

.menubar__bottom a.active::after{
	text-decoration: none;
	transform: scaleX(1);
	background: #DC4E00;
}

.search-trigger{
	background: #526068;
	color: #fff;
	border-radius: 100px;
	display:flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	display: none;
}

.search-trigger:hover{
	background: #5A6C7A;
}

/* Search Icon - Hourglass to X Animation */
.search-icon {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
}

.search-icon-circle {
	fill: none;
	stroke: currentColor;
	transition: all 0.3s ease;
	transform-origin: center center;
	transform: scale(0.9) translateY(-2px) translateX(-2px);
}

.search-icon-bar {
	stroke: currentColor;
	transform-origin: center center;
	transition: all 0.4s 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transform: rotate(-45deg) translateY(12px) translateX(1px);
}


/* Open state: bars form X inside circle */
.search-trigger.open .search-icon-bar-1 {
	transform: rotate(-45deg);
}

.search-trigger.open .search-icon-bar-2 {
	transform: rotate(45deg);
}

.search-trigger.open .search-icon-circle {
	transform: scale(1.1) translateY(0px) translateX(0px);
}

/* Megamenu overlay */
.modal-menu-trigger{
	position: relative;
	z-index: 1001;
	background: #526068;
	color: #fff;
	padding: 12px 32px;
	border-radius: 100px;
	text-decoration: none;
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
	transition: all 0.3s ease;
	line-height: 1.2;
	display:flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.05em;
	gap: 8px;
}

.modal-menu-trigger:hover{
	background: #5A6C7A;
	text-decoration: none;
}

/* Menu Trigger SVG Animation */
.menu-icon {
	transition: transform 0.3s ease;
}

.menu-bar {
	height: 2px;
	transform-origin: center;
	transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal-menu-trigger.open .menu-bar{
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Position bars using CSS */
.menu-bar-1 {
	x: 3px;
	y: 4px;
	width: 18px;
	fill: currentColor;
}

.menu-bar-2 {
	x: 3px;
	y: 11px;
	transform-origin: left center;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	width: 12px;
	fill: currentColor;
}

.menu-bar-3 {
	x: 3px;
	y: 18px;
	width: 18px;
	fill: currentColor;
}

.modal-menu-trigger:hover:not(.open):not(.active) .menu-bar-1 {
	y: 3px;
}

.modal-menu-trigger:hover:not(.open):not(.active) .menu-bar-2 {
	width: 22px;
	x:1px;
}

.modal-menu-trigger:hover:not(.open):not(.active) .menu-bar-3 {
	width: 18px;
	y: 19px;
}

/* Active/Open state animations */
.modal-menu-trigger.active .menu-bar-1,
.modal-menu-trigger.open .menu-bar-1 {
	transform: translateY(5px) translateX(-3px) rotate(45deg);
	transition-delay: 0.1s;
}

.modal-menu-trigger.active .menu-bar-2,
.modal-menu-trigger.open .menu-bar-2 {
	opacity: 0;
	transform: translateX(50px) scale(0.8);
	transition-delay: 0s;
}

.modal-menu-trigger.active .menu-bar-3,
.modal-menu-trigger.active .menu-bar-3,
.modal-menu-trigger.open .menu-bar-3 {
	transform: translateY(-5px) translateX(-3px) rotate(-45deg);
	transition-delay: 0.1s;
}

.modal-menu {
	display: none;
	background: rgba(130,130,140, 0.9);
	backdrop-filter: blur(4px);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	z-index: 1000;
	box-sizing: border-box;
	padding-top: 120px;
	padding-bottom: 32px;
}
.modal-menu.open {
	display: block;
}

.modal-menu__content {
	background: #FAFBFD;
	padding: 40px;
	border-radius: 16px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.curriculum-modal-menu__content {
	grid-template-columns: repeat(2, 1fr);
}


.modal-menu__wide-curriculum-lang-btn {
	grid-column: 1 / -1;
	text-align: center;
	box-sizing: border-box;
}

.modal-menu__wide-curriculum-lang-btn a{
	display: block;
	border: 2px solid rgba(17, 159, 81, 0.3);
	background: rgba(17, 159, 81, 0.03);
	text-decoration: none;
	padding: 16px 32px;
	border-radius: 16px;
	transition: all 0.3s ease;
	font-size: 20px;
	font-weight: 500;
	color: #172C45;
	box-sizing: border-box;
}
.modal-menu__wide-curriculum-lang-btn a:hover{
	background: rgba(17, 159, 81, 0.08);
	border-color: #119F51;
	color: #077037;
}

.modal-menu__column {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.modal-menu__menu-container{
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1; /* Add this to make menu-container grow within the column */
}
.modal-menu__column-heading{
	padding-left: 16px;
	color: #172C45;
	/* Remove flex: 1; - this was causing the heading to take up space */
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}
.modal-menu__column-heading h3{
	font-size: 24px;
	font-weight: 600;
}
ul.menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
	padding-left: 6px;
	padding-right: 6px;
	padding-top: 12px;
	padding-bottom: 12px;
	border-radius: 10px;
	border: 2px solid #E9F0F6;
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1; /* Add this to make menu-list grow */
	min-height: 0; /* Allows flex item to shrink below content size if needed */
}

.modal-menu__column svg{
	stroke: #7B90A0;
}

.modal-menu__column.highlighted-green ul{
	border-color: rgba(17, 159, 81, 0.3);
	background: rgba(17, 159, 81, 0.03);
}

.modal-menu__column.highlighted-green svg{
	stroke: #119F51;
}
.modal-menu__column.highlighted-orange ul{
	border-color: rgba(220, 78, 0, 0.3);
	background: rgba(220, 78, 0, 0.03);
}
.modal-menu__column.highlighted-orange svg{
	stroke: #DC4E00;
}

.modal-menu__menu-container a{
	display: block;
	font-size: 19px;
	line-height: 1.15;
	font-weight: 400;
	color: #172C45;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 5px;
	padding-bottom: 6px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.modal-menu__menu-container a:hover{
	color: #DC4E00;
	background: #fff;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
	text-decoration: none;
}






@media only screen and (max-width: 1460px) {
	.menubar__top,
	.menubar__bottom {
		padding-left: 24px;
		padding-right: 24px;
		max-width: 100%;
	}

	.modal-menu__menu-container a{
		font-size: 16px;
	}

	.modal-menu{
		padding-left: 24px;
		padding-right: 24px;
	}

	.modal-menu__content{
		padding:16px;
		gap: 12px;
	}
}


@media only screen and (max-width: 1070px) {

	.modal-menu{
		padding-top: 112px;
	}
	.menubar__logo {
		width: 280px;
	}

	.menubar__logo img{
		width: 100%;
		height: auto;
	}


	.search-field {
		width: 280px;
	}

	.menu-and-search  input{
		padding: 12px 24px;
		font-size: 18px;
	}

	.menubar__bottom a{
		font-size: 20px;
	}

	.menubar__bottom-left,
	.menubar__bottom-right{
		gap: 16px;
	}
}

@media only screen and (max-width: 1000px) {
	.modal-menu-trigger {
		font-size: 20px;
	}

}



@media only screen and (min-width: 640px)  and (max-width: 1000px) {

	.modal-menu__content{
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		
	}

	.curriculum-modal-menu__content{
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.modal-menu__column.regioner .menu-list a {
		border-radius: 6px;
		background: #fff;
		padding: 8px 12px;
		font-size: 16px;
		line-height: 1.15;
		font-weight: 400;
		color: #172C45;
		transition: all 0.3s ease;
		display: block;
	}

	.modal-menu__column.regioner {
		order: 5;
		grid-column: 1 / -1;
		
	}

	.modal-menu__column.regioner .menu-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
		padding: 12px;
		background: #E9F0F6;
	}

	.modal-menu__column.regioner .menu-list a {
		border-radius: 6px;
		background: #fff;
		padding: 8px 12px;
		font-size: 16px;
		line-height: 1.15;
		font-weight: 400;
		color: #172C45;
		transition: all 0.3s ease;
		display: block;
	}
}


@media only screen and (max-width: 860px) {

	.modal-menu{
		padding-top:96px;
	}
	.menu-trigger-text{
		display: none;
	}
	.search-field {
		width: 240px;
	}
	.menubar__top{
		padding-top: 24px;
		padding-bottom: 24px;
		gap: 16px;
	}
	.menubar__bottom{
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.menubar__bottom-left,
	.menubar__bottom-right{
		border-top: 1px solid #E9F0F6;
		padding-left: 20px;
		padding-right: 20px;
		justify-content: center;
		gap: 20px;
	}

	.modal-menu__column-heading h3{
		font-size: 20px;
	}

	.modal-menu__content{
		gap: 12px;
	}
}



@media only screen and (min-width: 640px) and (max-width: 860px)  {

	.modal-menu__column-regioner{
		margin-top: 24px;
	}
	
	.modal-menu__column.regioner .menu-list {
		grid-template-columns: repeat(2, 1fr);
	}
}


@media only screen and (max-width: 720px) {

	.menubar__top{
		padding-left: 20px;
		padding-right: 20px;
	}


	.menubar__logo {
		width: 240px;
	}

	.search-field {
		width: 220px;
	}
}


@media only screen and (max-width: 640px) {
	.search-trigger{
		display: flex;
		position: relative;
		z-index: 1001;
	}

	.search-trigger.open{
		background-color: #6D7985;
	}
	

	.search-field-container{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1000;
		box-sizing: border-box;
		padding-top: 96px;
		padding-bottom: 32px;
		padding-left: 16px;
		padding-right: 16px;
		background: rgba(130,130,140, 0.9);
		backdrop-filter: blur(4px);

		display: none;
	}

	.search-field-container form{
		background: #fff;
		padding: 32px 16px;
		border-radius: 16px;
		box-sizing: border-box;
		box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
	}

	.search-field{
		width: 100%;
	}

	.search-field input{
		font-size: 24px;
		padding: 16px 24px;
	}

	/* Stack modal menu columns vertically on mobile */
	.modal-menu__content{
		grid-template-columns: 1fr;
		gap: 0;
	}

	.modal-menu__column {
		width: 100%;
		gap: 0;
	}

	/* Hide menu lists initially on mobile */
	.js-eachModalMenuList {
		display: none;
		overflow: hidden;
	}

	/* Make triggers clickable and add visual indicator */
	.js-eachModalMenuTrigger {
		cursor: pointer;
		user-select: none;
	}

	.js-eachModalMenuTrigger::after {
		content: '+';
		margin-left: auto;
		font-size: 24px;
		font-weight: 300;
		transition: transform 0.3s ease;
	}

	.js-eachModalMenuTrigger.active::after {
		transform: rotate(45deg);
	}
	.modal-menu__column-snarveier{
		order: 0;
	}
	
	.primary-col{
		order: 0;
	}
	.secondary-col{
		order: 1;
	}
	.tertiary-col{
		order: 2;
	}

	.modal-menu__column-heading {
		padding-left: 0;
		padding-right: 0;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.menu-and-search{
		gap: 8px;
	}


	.modal-menu__menu-container{
		gap:0;
	}

	.modal-menu__wide-curriculum-lang-btn{
		margin-top: 24px;
	}

}



@media only screen and (max-width: 480px) {

	.menubar__top{
		gap: 12px;
	}


	.menubar__bottom a{
		font-size: 17px;
	}

	.menubar__bottom-left,
	.menubar__bottom-right{
		gap: 12px;
	}

	.modal-menu-trigger{
		padding: 10px 20px;
	}
}

@media only screen and (max-width: 380px) {

	.menubar__top{
		padding-left: 12px;
		padding-right: 12px;
		padding-top: 12px;
		flex-direction: column;
		justify-content: stretch;
		align-items: stretch;
	}

	.menubar__bottom a{
		font-size: 15px;
	}

	.menu_and_search{
		width: 100%;
		justify-content: stretch;
		align-items: stretch;
		gap: 8px;
	}

	.modal-menu-trigger{
		padding: 0;
		height: 40px;
		flex: 1 1 0%;
		border-radius: 9px;
	}

	.search-trigger{
		height: 40px;
		flex: 1 1 0%;
		border-radius: 9px;
	}

	.menubar__logo{
		order: 2;
		width: 100%;
		box-sizing: border-box;
		padding-left: 24px;
		padding-right: 24px;
		padding-top: 16px;
		padding-bottom: 10px;
	}

	
	.modal-menu{
		padding-top: 72px;
		padding-left: 12px;
		padding-right: 12px;
	}

	.search-field-container{
		padding-top: 72px;
	}
}







.heroarea{
	background: #F8F3E8;
	width: 100%;
	box-sizing: border-box;
	padding-top: 56px;
}


.heroarea__content{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.heroarea__heading{
	width: 44%;
	box-sizing: border-box;
}

.heroarea__heading h1{
	font-weight: 600;
	font-size: 54px;
}
.heroarea__image{
	width: 56%;
}
.heroarea__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}





.frontpage-cta{
	background: #F8F3E8;
	flex: 1 1 0%;
	min-width: fit-content;
	padding-top: 48px;
	padding-bottom: 48px;
	box-sizing: border-box;
}

.frontpage-cta__content{
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 24px;
	flex-wrap: wrap;
}

.frontpage-cta a{
	background:#fff;
	padding: 8px;
	border-radius: 12px;
	font-size: 20px;
	font-weight: 600;
	color: #000;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.1;
	flex-grow: 1;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.frontpage-cta a:hover{
	box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.12);
	text-decoration: none;
	color: #DC4E00;
}
.frontpage-cta__button-label{
	padding-left: 16px;
	font-size: 26px;
	line-height: 1;
}
.frontpage-cta__button-arrow{
	padding: 16px;
	background: #FCF9F4;
	border-radius: 12px;
	color:#DC4E00;
}


@media only screen and (max-width: 1500px) {
	.heroarea {
		padding-left: 32px;
		padding-right: 32px;
	}

	.heroarea__heading h1{
		font-size: 50px;
	}

	.frontpage-cta {
		padding-left: 32px;
		padding-right: 32px;
	}

	.frontpage-cta__button-label{
		font-size: 22px;
	}
}



@media only screen and (max-width: 1100px) {
	.heroarea {
		padding-left: 24px;
		padding-right: 24px;
	}

	.heroarea__heading h1{
		font-size: 40px;
	}
}


@media only screen and (max-width: 980px) {
	.heroarea {
		padding: 16px;
	}

	.heroarea__content{
		flex-direction: column;
		gap: 24px;
	}

	.heroarea__heading{
		width: 100%;
		text-align: center;
		order: 2;
		padding: 0 12px;
	}

	.heroarea__image{
		width: 100%;
	}

	.frontpage-cta {
		padding: 0 24px 24px 24px;
	}

	.frontpage-cta__content{
		gap: 12px;
	}
}

@media only screen and (max-width: 520px) {
	.heroarea__heading h1{
		font-size: 32px;
	}

	.frontpage-cta {
		padding: 0 16px 16px 16px;
	}
}


@media only screen and (max-width: 380px) {

	.heroarea__heading h1{
		font-size: 26px;
	}

}

/* Frontpage News container */

.news-list{
	background: #FCF9F4;
	padding-top: 48px;
	padding-bottom: 48px;
	box-sizing: border-box;
}

@media only screen and (max-width: 1500px) {
	.news-list {
		padding-left: 32px;
		padding-right: 32px;
	}
}

@media only screen and (max-width: 520px) {
	.news-list {
		padding-left: 16px;
		padding-right: 16px;
	}
}

.news-list__heading{
	margin-bottom: 24px;
}
.news-list h2{
	font-size: 54px;
	font-weight: 600;
	line-height: 1;
}
.news-list__heading-link{
	margin-top: 6px;
	font-size: 16px;
	background: #fff;
	color:#172C45;
	padding: 8px 16px;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
}
.news-list__heading-link:hover{
	background: #DC4E00;
	color: #fff;
	text-decoration: none;
}

.news-grid{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 32px;
}

.news-card{
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
	flex: 0 1 calc(33.333% - 24px);
	color: #172C45;
	transition: all 0.3s ease;
}

.news-card:hover{
	box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.15);
	text-decoration: none;
}
.news-card__image{
	width: 100%;
	aspect-ratio: 6/4;
	object-fit: cover;
	overflow: hidden;
	
}
.news-card__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px 12px 0 0 ;
	transition: all 0.4s ease;
}

.news-card:hover .news-card__image img{
	transform: scale(1.05);
}


.news-card__content{
	padding: 16px;
}

.news-card__date{
	font-size: 16px;
	color: #7B90A0;
	margin-bottom: 8px;
}

.news-card h3{
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 12px;
	transition: all 0.3s ease;
}

.news-card:hover h3{
	color: #DC4E00;
}

.news-card__text{
	font-size: 20px;
	color: #526068;
	line-height: 1.3;
}

@media only screen and (max-width: 1100px) {
	
	.news-grid{
		gap: 12px;
	}
	
	.news-card{
		flex: 0 1 calc(33.333% - 12px);
	}
	.news-card h3{
		font-size: 26px;
	}
	.news-card__text{
		font-size: 16px;
	}
}

@media only screen and (max-width: 990px) {
	.news-grid{
		gap: 16px;
	}
	.news-card{
		flex: 0 1 calc(50% - 8px);
	}
	.news-grid--frontpage .news-card:nth-child(n+3){
		display: none;
	}
}

@media only screen and (max-width: 640px) {
	.news-grid{
		gap: 16px;
		flex-direction: column;
	}
}



/* News List Filters */
.news-list__filters{
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	padding: 16px 24px;
	border-radius: 12px;
	box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
	border: 1px solid #E9F0F6;
	margin-bottom: 24px;
	border-radius: 12px;
}

.news-list__filter-label{
	font-size: 20px;
	font-weight: 600;
	color: #000;
}
.news-list__filter-items{
	display: flex;
	align-items: center;
	gap: 16px;
}

/* News List Load More */
.news-list__load-more{
	text-align: center;
	margin: 20px 0;
}
.news-list__load-more-button{
	background: #DC4E00;
	color: #fff;
	padding: 12px 24px;
	border-radius: 32px;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
}
.news-list__load-more-button:hover{
	background: #fff;
	color: #DC4E00;
	text-decoration: none;
	box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.15);
}


/* Styled Dropdown */
.styled-dropdown{
	position: relative;
	transition: all 0.3s ease;
}
.styled-dropdown-trigger{
	display: flex;
	align-items: center;
	cursor: pointer;
	background: #fff;
	padding: 6px ;
	border-radius: 6px;
	font-size: 20px;
	font-weight: 600;
	color: #172C45;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.1;
	border: 1px solid #E9F0F6;
}
.styled-dropdown-trigger__icon{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #EEF0F0;
	padding: 8px;
	border-radius: 6px;
	transition: all 0.3s ease;
}
.styled-dropdown-trigger__icon svg{
	transition: all 0.2s ease;
}
.styled-dropdown.active .styled-dropdown-trigger__icon svg{
	transform: rotate(180deg);
}
.styled-dropdown-trigger:hover .styled-dropdown-trigger__icon,
.styled-dropdown.active .styled-dropdown-trigger__icon{
	background: #DC4E00;
	color: #fff;
}
.styled-dropdown-trigger__text{
	font-weight: 100;
	padding-left: 12px;
}
.styled-dropdown-trigger__value{
	padding-left: 6px;
	font-weight: 700;
	padding-right: 12px;
}
.styled-dropdown__content{
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	width: 100%;
	
	border-radius: 6px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
	border: 1px solid #E9F0F6;
	padding: 8px;
	max-height: 450px;
	overflow-y: auto;
	z-index: 800;
	box-sizing: border-box;

	display: none;
}

.styled-dropdown__content-inner{
	display: flex;
	flex-direction: column;
}
.styled-dropdown__item{
	font-size: 19px;
	line-height: 1.1;
	font-weight: 600;
	color: #172C45;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 6px 8px;
	border-radius: 6px;
	transition: all 0.3s ease;
}
.styled-dropdown__item:hover{
	background: #EEF0F0;
	text-decoration: none;
}


@media only screen and (max-width: 670px) {

	.news-list__filters,
	.news-list__filter-items{
		flex-direction: column;
		align-items: stretch;
		justify-content: stretch;
		gap: 12px;
	}
	.styled-dropdown-trigger{
		width: 100%;
	}
}


/* Page Footer */
.page-footer__toparea{
	background: rgba(82, 96, 104, 0.2);
}

.back-to-top{
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 12px 24px;
	border-radius: 32px;
	font-size: 20px;
	font-weight: 600;
	box-sizing: border-box;
}
.back-to-top:hover{
	color: #172C45;
	background: #fff;
	text-decoration: none;
}
.back-to-top svg{
	width: 24px;
	height: 24px;
	transition: all 0.3s ease;
}
.back-to-top:hover svg{
	transform: scale(1.4) ;
}

.job-link{
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.3);
	padding: 12px 24px;
	border-radius: 12px;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-grow: 1;
	letter-spacing: 0.03em;
}
.job-link:hover{
	background: #fff;
	color: #172C45;
	text-decoration: none;
	border: 2px solid #fff;
}
.page-footer__partners{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;

}

.page-footer__partners .partner-link{
	height: 80px;
	width: auto;
	border-radius: 12px;
	overflow: hidden;
}

.page-footer__partners .partner-link img{
	height: 100%;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}
.page-footer__partners .partner-link:hover img{
	filter: grayscale(0%);
}



@media only screen and (max-width: 360px) {
	.page-footer__partners{
		flex-direction: column;
		align-items: stretch;
		justify-content: stretch;
		gap: 12px;
	}

	.page-footer__partners .partner-link{
		width: 100%;	
		height: auto;
	}

	.page-footer__partners .partner-link img{
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}


.footer-row{
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-footer__social{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;

}

.social-and-top-link{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.jobs-and-partners{
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	gap: 32px;
}

@media only screen and (max-width: 1460px) {
	.footer-row{
		padding-left: 24px;
		padding-right: 24px;
	}

	.job-link{
		font-size: 22px;
	}
}

@media only screen and (max-width: 880px) {
	.social-and-top-link{
		flex-flow: column;
	}

	.page-footer__social{
		order: 1;
		justify-content: stretch;
		width: 100%;	
		align-items: stretch;
	}

	.page-footer__social a{
		width: 100%;
	}

	.page-footer__back-to-top{
		justify-content: stretch;
		width: 100%;
		align-items: stretch;
	}

	.back-to-top{
		width: 100%;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.job-link{
		font-size: 18px;
	}

	
}


@media only screen and (max-width: 650px) {
	.jobs-and-partners{
		flex-direction: column;
	}

	.page-footer__partners{
		justify-content: center;
	}

	.page-footer__social{
		flex-direction: column;
	}
}



/* Home-baked tailwind utility classes */

/* ========================================
   Flexbox Utility Classes (Tailwind-like)
   ======================================== */

/* Display */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

/* Flex Direction */
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }

/* Flex Wrap */
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }

/* Justify Content */
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

/* Align Items */
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

/* Align Content */
.content-start { align-content: flex-start; }
.content-end { align-content: flex-end; }
.content-center { align-content: center; }
.content-between { align-content: space-between; }
.content-around { align-content: space-around; }
.content-evenly { align-content: space-evenly; }
.content-stretch { align-content: stretch; }

/* Align Self */
.self-auto { align-self: auto; }
.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }
.self-center { align-self: center; }
.self-stretch { align-self: stretch; }
.self-baseline { align-self: baseline; }

/* Flex Grow/Shrink */
.flex-grow { flex-grow: 1; }
.flex-shrink { flex-shrink: 1; }
.flex-grow-0 { flex-grow: 0; }
.flex-shrink-0 { flex-shrink: 0; }

/* Flex Basis */
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }

/* Gap */
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Row Gap */
.gap-x-0 { column-gap: 0; }
.gap-x-1 { column-gap: 0.25rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-5 { column-gap: 1.25rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }

/* Column Gap */
.gap-y-0 { row-gap: 0; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-5 { row-gap: 1.25rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }


.flex-auto-grow {
	flex: 1 1 auto;
	min-width: max-content;
	white-space: nowrap;
}


/* ========================================
   Margin Utility Classes (Tailwind-like)
   ======================================== */

/* Margin - All sides */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-10 { margin: 2.5rem; }
.m-12 { margin: 3rem; }
.m-16 { margin: 4rem; }
.m-20 { margin: 5rem; }
.m-auto { margin: auto; }

/* Margin - Top */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-auto { margin-top: auto; }

/* Margin - Right */
.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-5 { margin-right: 1.25rem; }
.mr-6 { margin-right: 1.5rem; }
.mr-8 { margin-right: 2rem; }
.mr-10 { margin-right: 2.5rem; }
.mr-12 { margin-right: 3rem; }
.mr-16 { margin-right: 4rem; }
.mr-20 { margin-right: 5rem; }
.mr-auto { margin-right: auto; }

/* Margin - Bottom */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-auto { margin-bottom: auto; }

/* Margin - Left */
.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-5 { margin-left: 1.25rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-8 { margin-left: 2rem; }
.ml-10 { margin-left: 2.5rem; }
.ml-12 { margin-left: 3rem; }
.ml-16 { margin-left: 4rem; }
.ml-20 { margin-left: 5rem; }
.ml-auto { margin-left: auto; }

/* Margin - Horizontal (left & right) */
.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; }
.mx-12 { margin-left: 3rem; margin-right: 3rem; }
.mx-16 { margin-left: 4rem; margin-right: 4rem; }
.mx-20 { margin-left: 5rem; margin-right: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Margin - Vertical (top & bottom) */
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.my-20 { margin-top: 5rem; margin-bottom: 5rem; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* ========================================
   Padding Utility Classes (Tailwind-like)
   ======================================== */

/* Padding - All sides */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.p-20 { padding: 5rem; }

/* Padding - Top */
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }

/* Padding - Right */
.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-5 { padding-right: 1.25rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }
.pr-10 { padding-right: 2.5rem; }
.pr-12 { padding-right: 3rem; }
.pr-16 { padding-right: 4rem; }
.pr-20 { padding-right: 5rem; }

/* Padding - Bottom */
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

/* Padding - Left */
.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-12 { padding-left: 3rem; }
.pl-16 { padding-left: 4rem; }
.pl-20 { padding-left: 5rem; }

/* Padding - Horizontal (left & right) */
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.px-20 { padding-left: 5rem; padding-right: 5rem; }

/* Padding - Vertical (top & bottom) */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }



/* ========================================
   Background Color Utility Classes
   ======================================== */

/* Dynamic background using CSS custom property */
.bg-custom {
	background-color: var(--bg-color);
}

/* Common background colors */
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }




/* ========================================
   Box Shadow Utility Classes (Tailwind-like)
   ======================================== */

/* No shadow */
.shadow-none { box-shadow: none; }

/* Small shadow */
.shadow-sm {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Default/Medium shadow */
.shadow {
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
}

/* Medium shadow */
.shadow-md {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

/* Large shadow */
.shadow-lg {
	box-shadow: 0 8px 16px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

/* Extra large shadow */
.shadow-xl {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* 2XL shadow */
.shadow-2xl {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Inner shadow */
.shadow-inner {
	box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}
