* {
	font-family: Sora;
	box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}
a {
	text-decoration: none;
}
section {
	padding: 85px;
}
/* ======================
   1) BASE MOBILE (sans media query)
====================== */
.header-hero-wrapper {
  display: flex;
  flex-direction: column; /* exemple : sur mobile, empilÃ© */
  background-position: top center;
  background-size: cover;
  background: linear-gradient(
      266deg,
      rgba(0, 0, 0, 0) 14.55%,
      rgba(0, 0, 0, 0.6) 76.78%
    ),
    linear-gradient(0deg, rgba(3, 35, 75, 0.5) 0%, rgba(3, 35, 75, 0.5) 100%),
    url("../images/image 8.png") center center / cover no-repeat;
  padding: 0;
  color: white;
  width: 100%;
}

header,
.hero {
  background: transparent; /* important */
  box-shadow: none; /* pas dâ€™ombre qui ferait une â€œligneâ€? */
  border: 0; /* pas de bordure */
  margin: 0;
}

.hero {
  margin: 0 10px;
}

.header > * {
  flex: 0 0 auto; /* ou pas de flex du tout */
}

/* Layout header */
header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  width: 100%;
  padding: 10px 0 10px 10px;
  background: transparent; /* important */
  box-shadow: none; /* pas dâ€™ombre qui ferait une â€œligneâ€? */
  border: 0; /* pas de bordure */
  margin: 0;
}

/* aka conteneur logo et burger */
.logo_container {
  display: flex;
  flex-direction: row;
  width: 100%;
  /*align-items: center;*/
  justify-content: space-between;
  /*padding: 10px;*/
}

.logo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    gap: 10px;
  }

#starlight_textlogo {
	color: white;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
}
/*#research_highlight {
	min-width: 164px;
  }*/
/* MENU : drawer mobile (cachÃ© par dÃ©faut) */
.menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
  width: min(80vw, 320px);
  height: 300px;
  width: min(80vw, 320px);
  background: #001220;
  backdrop-filter: blur(4px);
  padding: 24px;
  gap: 16px;

  /* Ã©tat cachÃ© */
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
  z-index: 50; /* au-dessus du contenu, sous le burger si besoin */
}
.menu a {
  text-decoration: none;
}
.menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 200ms ease, opacity 200ms ease, visibility 0s;
}

.menu a,
.private-link a {
  color: white;
}
/* Burger visible sur mobile */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative; /* crÃ©e un contexte pour z-index */
  z-index: 1101;
  color: white;
}
.menu-toggle .bar {
  display: block;
  width: 31px;
  height: 3px;
  background: currentColor;
}

/* Overlay derriÃ¨re le drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 40;
}
.nav-overlay.show {
  opacity: 1;
}

.nav-overlay[hidden] {
  display: block;
  opacity: 0;
  pointer-events: none;
}

nav .selected {
    font-weight: 700;
  }

body.no-scroll {
  overflow: hidden;
}
.private-link {
	width: 400px ;
	text-align: right;
}
#research_highlight {
	min-width: auto;
	text-align: left !important;
  }
.private-link a {
  display: inline-block;
  text-decoration: none;
  /*font-weight: 700;*/
  background: var(--accent);
  color: var(--brand);
  padding: 0;
  border-radius: 999px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 60svh;
  color: #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: var(--pad);
}

.hero-container {
  position: absolute;
  top: 50px;
  width: min(92vw, 640px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  z-index: 2;
  font-size: 19px;
}

#Readmore-button {
  border-radius: 12px;
  background: #94c6d2;
  color: #03234b;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.48px;
  padding: 0.3rem 1.5rem;
  width: 37%;
  max-width: 200px; /* limite haute */
  min-width: 120px;
}

#Readmore-button:hover {
  background: #bfd9e2;
}

/* Chip en bas Ã  droite, taille mobile */
.hero-chips-ju {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
}
.hero-chips-ju img {
  width: 126px;
  height: auto;
  display: block;
  padding: 8px 18px;
}

.header-page-hero-wrapper {
  background: none !important;
}
.header-pages {
  background: #001220;
}

.hero-pages {
	display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px;
  background: rgba(236, 236, 240, 0.3);
}
.hero-pages h1 {
  color: #01233e;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  font-size: 36px;
  text-align: center;
}

/* ======================
   2)  TABLET
====================== */

@media (width >= 768px) and (width < 1024px) {
  /*.menu-toggle {
    display: none;
  }*/

  /*.menu {
    position: static;
    width: auto;
    background: transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    height: auto;
    min-height: 64px;
  }*/

  #research_highlight {
    text-align: center;
  }

  .logo_container {
    margin-right: 9px;
  }

  #Readmore-button {
    width: 21%;
  }
}

/* ======================
   1)  DESKTOP
====================== */
@media (max-width: 1600px) {
	.private-link {
		width: 230px;
	}
}
@media (max-width: 1280px) {
	.private-link {
		margin-left: 30px;
		width: 70px;
	}
}
@media (max-width: 1024px) {
	.private-link {
		margin-left: 0;
		width: auto;
		text-align: left;
	}
}

@media (min-width: 1400px) {
	.menu {
		gap: 3rem !important;
	}
	.hero-container {
		transform: translateX(-300px) !important;
	}
}
@media (min-width: 1280px) {
	.menu {
		gap: 2rem !important;
	}
}
@media (min-width: 1024px) {
  /* HEADER */

  .header-hero-wrapper {
    width: 100%;
    max-height: 772px;
  }

  header {
    padding: 20px 2rem 10px 2rem;
    display: flex;
    align-items: center;
	gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
  }

  header,
  .hero {
    background: transparent; /* important */
    box-shadow: none; /* pas dâ€™ombre qui ferait une â€œligneâ€? */
    border: 0; /* pas de bordure */
    margin: 0;
  }

  /* aka conteneur logo et burger */
  .logo_container {
    width: auto;
  }

  .nav {
    padding: 20px 0 10px 0;
    background: #001220;
  }

  .button:hover {
    background: #bfd9e2;
  }

  .nav-overlay {
    display: none !important;
  }

  .menu {
    position: static; /* redevient normal */
    width: auto;
    background: transparent;
    transform: none; /* plus dâ€™animation */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    height: auto;
    min-height: 64px;
  }

  .menu-toggle {
    display: none;
  }

  .menu a:hover,
  .private-link a:hover {
    text-decoration: underline;
  }

  /* HERO */
  .hero {
    display: grid;
    gap: 20px;
    color: white;
    position: relative;
    height: 772px;
    min-height: unset;
  }

  .hero-container {
    position: initial;
    align-items: baseline;
    text-align: left;
    transform: translateX(-100px);
  }

  .hero-title {
    position: absolute;
    top: 120px;
    left: 498px;
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-align: justify;
  }

  .hero-chips-ju {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
  }
  .hero-chips-ju > div {
    padding: 11px 28px 11px 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
  }
  .hero-chips-ju img {
    width: 176px;
    height: 66px;
	padding: 0;
  }

  .title-1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.36px;
  }
  .title-2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 80%;
  }

  #Readmore-button {
    width: 18%;
  }
}
.main-section {
	/*width: 65%;*/
	width: 1376px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.section-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #01233E;
	font-size: 28px;
	font-style: normal;
	font-weight: 800;
	line-height: 36px;
	letter-spacing: 0.28px;
}
.link a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	color: #01233E;
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.48px;
	border-bottom: 1px solid #ffffff;
}
.link a:hover {
	border-bottom: 1px solid #01233E;
}
.link-previous img {
	transform: rotate(180deg);
}
.link-hidden {
	display: none;
}
.home-event-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: center;
	align-items: center;
	gap: 24px;
}
.home-event-list-item {
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	border: 1px solid #DBDEE2;
	background: #FBFBFB;
	padding-bottom: 16px;
	gap: 24px;
}
.home-event-list-item:hover {
	box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.12);
}
.home-event-list-item img {
	width: 384px;
	height: 200px;
	border-bottom: 1px solid #DBDEE2;
	border-radius: 8px 8px 0 0;
}
.event-description {
	padding: 0px 16px;
}
.event-title {
	color: #01233E;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	height: 85px;
}
.event-title div:nth-child(2) {
	overflow: hidden;
	color: #4C545C;
	text-overflow: ellipsis;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.6px;
}
.event-date {
	padding: 12px 0;
	border-top: 1px solid #DBDEE2;
	overflow: hidden;
	color: #4C545C;
	text-overflow: ellipsis;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.6px;
}
.event-highlight {
	border-radius: 12px;
	background: #03234B;
	display: flex;
	justify-content: space-between;
	color: #FFF;
}
.event-highlight:hover {
	box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.12);
}
.event-highlight > div:nth-child(1) {
	padding: 40px 0 24px 40px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.event-highlight > div:nth-child(2) {
	position: relative;
}
.event-highlight > div:nth-child(2) > img {
	width: 666px;
	height: 254px;
	border-radius: 8px;
	object-fit: cover;
}
.event-highlight-title {
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 0.24px;
}
.event-highlight-subtitle {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.event-highlight-separator {
	width: 24px;
	height: 1px;
	background: #FFF;
	margin-top: 36px;
}
.event-highlight-info {
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
}
.event-highlight-link {
	position: absolute;
	right: 24px;
	bottom: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	color: white;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0.48px;
}
.event-highlight-link a:hover {
	border: none;
}

/* NEWS AREA */
.news-highlight_arrow.left  { left: 12px;  }
.news-highlight_arrow.right { right: 12px; }
.news-highlight_arrow > img { display: none !important; }
.news-highlight {
	 position: relative;
	display: flex;
	justify-content: center;
	gap: 20px;
	width: 1206px;
	height: 361px;
	flex-shrink: 0;
	border-radius: 12px;
	align-items: center;
}
.carousel {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
.carousel img{
	display:block;
	width:100%;
	height:auto;
}
.news-highlight_arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	display: inline-block;
	width: 42px;
	height: 42px;
	z-index: 9999;
	background: url("../images/Ellipse 1.svg") center/contain no-repeat;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border: 0; 
}
.news-highlight_arrow.left{
	left: 12px;
	background-image: url("../images/Group-left.svg"), url("../images/Ellipse 1.svg");
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
	background-size: 40px 40px, contain;
}
.news-highlight_arrow.right{
	right: 12px;
	background-image: url("../images/Group-right.svg"), url("../images/Ellipse 1.svg");
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
	background-size: 40px 40px, contain;
}
.news-highlight_arrow.left:hover{
	background-image: url("../images/Group-left.svg"),
					url("../images/Ellipse 2.svg");
	background-size: 45px 45px, contain;
}
.news-highlight_arrow.right:hover{
	background-image: url("../images/Group-right.svg"),
					url("../images/Ellipse 2.svg");
	background-size: 45px 45px, contain;
}
.carousel-container {
	position: relative;
	/* width: 100%; */
	/* aspect-ratio: 16 / 9; */
	/* overflow: hidden; */
}
#carousel-image {
	width: 1206px;
	height: 361px;
	display: block;
	border-radius: 10px;
	margin-bottom: 10px;
	transition: opacity 300ms ease;
}
.carousel-image-filter {
	z-index: 7;
	position: absolute;
	top: 0;
	left: 0;
	width: 1206px;
	height: 361px;
	border-radius: 10px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
}
#news-textpreview {
	z-index: 8;
	position: absolute;
	bottom: 65px;
	left: 130px;
	width: 40%;
}
.news-highlight-title {
	color: #FFF;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 0.24px;
	margin-bottom: 20px;
}
#Readmore-button {
	text-decoration: none;
	border-radius: 12px;
	background: #94C6D2;
	padding: 10px 20px;
	color: #03234B;
	text-align: center;
	/*font-family: "Helvetica Now Display";*/
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	letter-spacing: 0.48px;
	width: 40%;
}

/*  NEWS LIST AREA */
.news-list {
	display: flex;
	width: 100%;
	gap: 24px;
}
.news-item {
	width: 50%;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	border-radius: 8px;
	border: 1px solid #DBDEE2;
	background: #FBFBFB;
}
.news-item:hover {
	box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.12);
}
.news-title {
	color: #01233E;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
}
.news-date {
	overflow: hidden;
	color: #4C545C;
	text-overflow: ellipsis;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.6px;
}
.news-separator {
	width: 42px;
	height: 1px;
	background: #A6ADB5;
}
.goals {
	width: 100%;
	padding: 0;
	background: #F7F8FA;
	background: url("../images/starlight_logo 1.png") #F7F8FA right bottom / 590px 565px no-repeat;
}
.goals .main-section {
	padding: 85px;
}
.goals-description {
	color: #01233E;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
	width: 70%;
}
.goals-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.goals-list .goals-big-item {
	grid-column: 2/4;
}
.goals-item {
	border-radius: 8px;
	border: 1px solid #DBDEE2;
	background: #FBFBFB;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	padding: 24px;
}
.goals-item > div:nth-child(1) {
	border-radius: 6px;
	background: rgba(1, 35, 62, 0.60);
	padding: 2px 10px;
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
}
.goals-item > div:nth-child(2) {
	color: #01233E;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
}
.consortium {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #01233E;
}
.consortium img {
	width: 1200px;
	height: 621px;
}
footer {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	background: #01233E;
	padding-bottom: 28px;
}
.footer {
	border: 1px solid #EFEFEF;
	background: #F7F8FA;
	padding-top: 9px;
	padding-bottom: 14px;
}
footer img {
	width: 100px;
	height: 119px;
}
.footer img {
	width: 77px;
	height: 91px;
}
.eu-footer {
	color: white;
	font-style: italic;
	width: 70%;
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer .eu-footer {
	color: #000000;
	padding-top: 10px;
}
.eu-footer-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.eu-footer-logo > img:nth-child(1) {
	width: auto;
	height: 50px;
}
.eu-footer-logo > img:nth-child(2) {
	width: auto;
	height: 100px;
}
.eu-footer-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 7px;
	font-size: 12px;
}
.eu-footer-text > div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
}
.eu-footer-text img {
	height: 20px;
	width: auto;
}
/* RESEARCH AREA*/

/*#research{
    padding: 0;
}*/


#researchmenu {
    color: #6A7077;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 50px;
    font-size: var(--Font-Size-Body-M, 16px);
    font-style: normal;
    font-weight: 550;
	display: none; /* hidden for now as not enough data */
}

.research-option {
    cursor: pointer;
}

.bold {
    font-weight: bold;
}

button {
    all: unset;
    /* reset propre */
    cursor: pointer;
}

.trigger {
    display: inline-block;
    /* bordure Ã  la largeur du texte */
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    background: none;
    border-radius: 0;
    transition: border-bottom-color .15s ease, font-weight .15s ease;
}

.trigger.active {
    font-weight: 700;
    color: #01233E;
    border-bottom-color: var(--Stroke-Default, #01233E);
}

.banner {
    display: flex;
    flex-direction: row;
    margin: 12px 0;
    padding: 24px;
    background: #FBFBFB;
    border: 1px solid #DBDEE2;
    border-radius: 8px;
    align-items: center;
    width: 50%;
    gap: 24px;
    color: #01233E;
    font-weight: 700;
    height: 100px;
}


/* Barre de boutons */
#researchmenu {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 12px;
	display: none; /* hidden for now as not enough data */
}

#researchmenu .trigger {
    all: unset;
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color .15s ease, font-weight .15s ease;
}

#researchmenu .trigger.active {
    font-weight: 700;
    color: #01233E;
    border-bottom-color: var(--Stroke-Default, #01233E);
}

/* Zone panels superposÃ©s */
.banners {
    position: relative;
    overflow: hidden;
    height: 0;
    transition: height .25s ease;
}

.panel {
    position: absolute;
    inset: 0;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease;
     display: flex;
    flex-direction: row;
    gap: 24px;
}

.panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

/* BanniÃ¨res Ã  lâ€™intÃ©rieur des panels (pas de hidden ici) */
.banner {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 12px 0;
    padding: 24px;
    background: #FBFBFB;
    border: 1px solid #DBDEE2;
    border-radius: 8px;
    color: #01233E;
    font-weight: 700;
}
.banner:hover {
	box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.12);
}
@media(max-width: 1024px) {
	header {
		justify-content: flex-start;
	}
}
@media (max-width: 1400px) {
	.main-section {
		width: 1120px;
	}
	.news-highlight, .carousel-image-filter, #carousel-image {
		width: 950px;
	}
	.home-event-list-item img {
		width: 300px;
		height: 156px;
	}
	.consortium img {
		width: 1030px;
		height: 533px;
	}
	.banner img {
		max-width: 200px;
	}
	.event-highlight > div:nth-child(2) > img {
		width: 444px;
		height: 250px;
	}
}
@media (max-width: 1152px) {
	.main-section {
		width: 870px;
	}
	.news-highlight, .carousel-image-filter, #carousel-image {
		width: 700px;
	}
	.home-event-list-item img {
		width: 338px;
		height: 176px;
	}
	.consortium img {
		width: 780px;
		height: 403px;
	}
	.panel {
		flex-direction: column;
	}
	.banner {
		width: 100%;
	}
	.goals-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.goals-list .goals-big-item {
		grid-column: 1 / 3;
	}
	.event-highlight > div:nth-child(2) > img {
		width: 350px;
		height: 281px;
	}
	.home-event-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.home-event-list > a:nth-child(3) {
		grid-column: 1 / 3;
		width: 50%;
		justify-self: center;
	}
}
@media (max-width: 900px) {
	.main-section {
		width: 700px;
	}
	.news-highlight, .carousel-image-filter, #carousel-image {
		width: 530px;
	}
	.home-event-list-item img {
		width: 253px;
		height: 131px;
	}
	.consortium img {
		width: 680px;
		height: 351px;
	}
	.event-highlight > div:nth-child(2) > img {
		width: 181px;
		height: 281px;
	}
	/*.hero {
		padding-top: 15vh;
		padding-left: 15vh;
		grid-template-columns: 70% 1fr;
		height: 595px;
	}*/
	.hero-chips-ju {
		bottom: 2rem;
	}
	/*.hero-chips-ju > div > img {
		width: 100px;
		height: 38px;
	}*/
	.goals-list {
		grid-template-columns: 1fr;
	}
	.goals-list .goals-big-item {
		grid-column: 1;
	}
	#news-textpreview {
		width: 60%;
	}
	.eu-footer {
		width: 90%;
	}
}
@media (max-width: 720px) {
	section {
		padding: 60px 20px;
	}
	.goals .main-section {
		padding: 60px 20px;
	}
	.main-section {
		width: 100%;
	}
	/*.hero {
		padding-left: 10vh;
		grid-template-columns: 1fr;
		height: 530px;
	}*/
	.news-highlight {
		justify-content: center;
		width: 100%;
	}
	.carousel-image-filter, #carousel-image {
		width: 560px;
	}
	.news-list {
		flex-direction: column;
	}
	.news-item {
		width: 100%;
	}
	.home-event-list {
		grid-template-columns: 1fr;
	}
	.home-event-list > a {
		grid-column: 1 !important;
		width: 80% !important;
		justify-self: center;
	}
	.home-event-list-item > div:nth-child(1) {
		display: flex;
		justify-content: center;
	}
	.home-event-list-item img {
		border-radius: 0px;
	}
	.consortium img {
		width: 500px;
		height: 258px;
	}
	.goals-description {
		width: 100%;
	}
	.eu-footer {
		width: 95%;
	}
	.eu-footer-text img {
		height: 13px;
	}
}
@media (max-width: 600px) {
	.consortium img {
		width: 350px;
		height: 180px;
	}
	.banner img {
		max-width: 100px;
	}
	.carousel-image-filter, #carousel-image {
		width: 350px;
	}
	#news-textpreview {
		width: 65%;
		bottom: 65px;
		left: 60px;
	}
}
@media (max-width: 450px) {
	/*.hero {
		padding-top: 5vh;
		padding-left: 5vh;
	}
	.hero-chips-ju {
		bottom: 1rem;
		right: 1rem;
	}
	.hero-chips-ju > div > img {
		width: 80px;
		height: 30px;
	}*/
	.banner {
		height: 119px;
	}
	.banner img {
		max-width: 80px;
	}
	.event-highlight > div:nth-child(1) {
		padding: 40px 0 24px 15px;
	}
	.event-highlight-link {
		right: 12px;
	}
	.carousel-container {
		aspect-ratio: auto;
	}
}
@media (max-width: 480px) {
  .hero-pages {
    padding: 6px;
  }
  .hero-pages h1 {
    font-size: 28px;
  }
	.eu-footer-logo > img:nth-child(1) {
		width: auto;
		height: 35px;
	}
	.eu-footer-logo > img:nth-child(2) {
		width: auto;
		height: 75px;
	}
}