.hh__top {
	position: relative;
	min-height: 60rem;
	padding: var(--spacer_64) 0;
}

.hh__top:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100vw;
	top: 0;
	left: calc((100vw - var(--container_width)) / (-2) - 2rem );
	z-index: -1;
	background-image: linear-gradient(81deg, rgba(0, 37, 110, 0.60) 57.06%, rgba(0, 37, 110, 0.00) 72.01%)
}

.hh__top-background-image {
	position: absolute;
	object-fit: cover;
	height: 100%;
	width: 100vw;
	top: 0;
	left: calc((100vw - var(--container_width)) / (-2) - 2rem );
	max-width: unset;
	z-index: -2;
}

.hh__top-title-container {
	/*max-width: 80rem;*/
	letter-spacing: -1px;
}

.hh__top-title--highlighted {
	padding: 0 var(--spacer_16);
  background-color: var(--tertiary_color);
	display: inline-block;
}

.hh__top-title {
	letter-spacing: -2px;
}


.hh__top-title,
.hh__top-content {
	color: var(--white_color);
}

.hh__top-content {
	margin-bottom: var(--spacer_20);
	font-weight: var(--font_weight_500);
	font-size: var(--font_size_20);
}

.hh__top-content *:last-child {
	margin-bottom: 0;
}

.hh__bottom {
	display: flex;
	gap: var(--spacer_48);
	position: relative;
	padding: 0 0 10rem;
	justify-content: space-between;
}

.hh__bottom:before {
	content: '';
	position: absolute;
	width: 100vw;
	height: calc(100% + 7rem);
	top: -7rem;
	left: calc((100vw - var(--container_width)) / (-2) - 2rem );
  background-color: var(--secondary_color);
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
	z-index: -1;
}

.hh__bottom-dates,
.hh__bottom-partners {
	color: var(--white_color);
}

.hh__bottom-dates {
	width: calc(70% - (var(--spacer_48) / 2));
}

.hh__bottom-partners {
	width: calc(30% - (var(--spacer_48) / 2));
}

.hh__bottom-dates-title,
.hh__bottom-partners-title {
	width: fit-content;
	font-weight: var(--font_weight_700);
	padding: var(--spacer_16);
	background-color: var(--tertiary_color);
}

.hh__bottom-partners-list,
.hh__bottom-dates-list{
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	margin-top: var(--spacer_12);
}

.hh__bottom-partners-list {
	justify-content: flex-start;
}

.hh__bottom-dates-list {
	gap: var(--spacer_18) var(--spacer_36);
}

.hh__bottom-partners-list {
	gap: var(--spacer_20);
}

.hh__bottom-partner-list-item {
	cursor: pointer;
}

.hh__bottom-dates-list-item {
	width: 45%;
	display: flex;
	align-items: center;
}

.hh__bottom-dates-list-item-link {
	display: flex;
	align-items: center;
	color: var(--white_color);
	font-weight: 400;
}

.hh__bottom-dates-list-item-link svg {
	transform: translateX(0);
	transition: transform var(--default_transition);
}

.hh__bottom-dates-list-item-link:hover svg {
	transform: translateX(-.5rem);
}

.hh__bottom-partners-list-item-image {
	width: 8rem;
	height: auto;
	max-width: unset;
	max-height: 9rem;
	object-fit: contain:
}

@media (max-width: 1220px) {
	.hh__top:before,
	.hh__top-background-image,
	.hh__bottom:before {
		left: -2rem;
	}
}

@media (max-width: 996px) {
	.hh__bottom-dates-list {
		flex-direction: column;
	}
	.hh__bottom-dates {
		width: calc(50% - (var(--spacer_48) / 2));
	}
	.hh__bottom-dates-list-item {
		width: 100%;
	}
	.hh__bottom-partners {
		width: calc(50% - (var(--spacer_48) / 2));
	}
	.hh__bottom-partners-list {
		justify-content: unset;
	}
}

@media (max-width: 600px) {
	.hh__bottom {
		flex-direction: column;
	}
	.hh__bottom:before {
		top: -9rem;
	}
	.hh__bottom-dates,
	.hh__bottom-partners {
		width: 100%;
	}
}

/* CSS if no bottom banner */
.hh--simple .hh__top {
	padding-top: 15rem;
	padding-bottom: 13rem;
}

.hh--simple .hh__top:before,
.hh--simple .hh__top-background-image {
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
}

.hh--simple .hh__top-title-container {
	margin-right: auto;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hh--simple .hh__top-title {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.hh--simple .hh__top-title span {
	display: block;
	width: fit-content;
	text-align: center;
}
.hh--simple .hh__top-title--sized {
  font-size: 5.4rem;
  line-height: 1; /* 54px */
}
@media screen and (max-width: 767px) {
  .hh__top-title,
  .hh--simple .hh__top-title--sized {
    font-size: var(--h2_font_size);
  }
}
@media screen and (max-width: 1087px) {
  .hh--simple .hh__top {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
{#--- POPUP ---#}
{#
.hh__list-item-popup {
	position: fixed;
	width: 100vw;
	height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition: visibility var(--default_transition), opacity var(--default_transition);
}
.hh__list-item-popup--opened {
  opacity: 1;
	visibility: visible;
	z-index: 20;
}

.hh__list-item-popup-container {
	display: flex;
	width: 80vw;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 21;
	background-color: var(--white_color);
	gap: var(--spacer_40);
	padding: var(--spacer_60);
  max-height: 100%;
  overflow: hidden;
}
@media(min-width: 1441px) {
	.hh__list-item-popup-container {
	  width: calc(var(--container_width)*0.8);
	}
}
@media(max-width: 992px) {
	.hh__list-item-popup-container {
	  width: calc(100vw - (var(--spacer_18)*2));
		padding: var(--spacer_24);
	}
	.hh__list-item-popup-title {
		padding-right: var(--spacer_24);
	}
}

.hh__list-item-popup-img {
  object-fit: contain;
	object-position: center;
	width: 20rem;
	flex-shrink: 0;
	max-height: 100%;
	background-image: radial-gradient(circle, var(--white_color) 0, var(--dark_color_70) 93%);
}
@media(max-width: 700px) {
	.hh__list-item-popup-img {
	  display: none;
	}
}

.hh__list-item-popup-title {
	margin-bottom; var(--spacer_20);
	color: var(--tertiary_color);
}

.hh__list-item-popup-text-container {
	overflow-y: auto;
}

.hh__list-item-popup-text {
	color: #012340;
	font-weight: 500;
}
.hh__list-item-popup-text--first {
	margin-bottom: var(--spacer_8);
}
.hh__list-item-popup-text--second {
	margin-bottom: 0;
}

.hh__list-item-popup-item-closer {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.8rem;
  height: 4.8rem;
	background-color: var(--primary_color);
	border-bottom-left-radius: .4rem;
}

.hh__list-item-popup-item-closer:before,
.hh__list-item-popup-item-closer:after {
	content: '';
	position: absolute;
	width: 2rem;
	height: .2rem;
	border-radius: 1rem;
	background-color: #012340;
	top: 50%;
	left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hh__list-item-popup-item-closer:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#}