.hero-banner {
	font-family: "DIN Pro", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #f0f0f0;
}

@font-face {
	font-family: "DIN Pro";
	src: url("../fonts/DINPro-CondensedMedium.eot");
	src: local("DIN Pro Condensed Medium"), local("DINPro-CondensedMedium"),
		url("../fonts/DINPro-CondensedMedium.eot?#iefix")
			format("embedded-opentype"),
		url("../fonts/DINPro-CondensedMedium.woff") format("woff"),
		url("../fonts/DINPro-CondensedMedium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: "DIN Pro";
	src: url("../fonts/DINPro-CondensedBold.eot");
	src: local("DIN Pro Condensed Bold"), local("DINPro-CondensedBold"),
		url("../fonts/DINPro-CondensedBold.eot?#iefix") format("embedded-opentype"),
		url("../fonts/DINPro-CondensedBold.woff") format("woff"),
		url("../fonts/DINPro-CondensedBold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: "DIN Pro";
	src: url("../fonts/DINPro-CondensedRegular.eot");
	src: local("DIN Pro Condensed Regular"), local("DINPro-CondensedRegular"),
		url("../fonts/DINPro-CondensedRegular.eot?#iefix")
			format("embedded-opentype"),
		url("../fonts/DINPro-CondensedRegular.woff") format("woff"),
		url("../fonts/DINPro-CondensedRegular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: "Din Condensed";
	src: url("../fonts/din/din-retular.woff2") format("woff2"),
		url("../fonts/din/din-regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: "Din Condensed";
	src: url("../fonts/din/din-demibold.woff2") format("woff2"),
		url("../fonts/din/din-demibold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

.hero-banner {
	position: relative;
	min-height: calc(100dvh - 48px);
	overflow: hidden;
	color: #202020;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-banner__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #dddddd;
}

.hero-banner__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-banner__img--desktop {
	display: none;
}

.hero-banner__content-wrapper {
	position: relative;
	width: 100%;
	height: calc(100dvh - 48px);
	min-height: 720px;
	max-width: 1550px;
	margin: 0 auto;
	padding: 60px 20px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: space-between;
}

.hero-banner__age-rating {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 48px;
	height: 48px;
	border: 2px solid #939393;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "DIN Pro", sans-serif;
	font-weight: 400;
	font-size: 22px;
	color: #939393;
}

.hero-banner__logo {
	display: block;
	width: 80%;
	margin-bottom: 1vh;
	color: #f04e55;
}
.hero-banner__logo svg {
	width: 100%;
	height: auto;
	display: block;
}

.hero-banner__info {
	font-family: "DIN Pro", sans-serif;
	font-size: clamp(1.1rem, 4vw, 1.5rem);
	margin-bottom: 2vh;
	display: flex;
	align-items: center;
	gap: 0.5em;
	flex-wrap: wrap;
	justify-content: center;
}
.hero-banner__date {
	font-weight: 900;
}
.hero-banner__location {
	font-weight: 400;
}
.hero-banner__divider {
	font-weight: 500;
}

.hero-banner__main-text {
	margin-bottom: 2vh;
}

.hero-banner__title {
	font-family: "DIN Pro", sans-serif;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}
.hero-banner__title-main,
.hero-banner__title-accent {
	display: block;
}
.hero-banner__title-main {
	font-size: clamp(2.2rem, 6.4vw, 4.68rem);
}
.hero-banner__title-accent {
	font-size: clamp(3.5rem, 10.2vw, 7.5rem);
	color: #f2483f;
	line-height: 1;
}

.hero-banner__subtitle {
	font-family: "DIN Pro", sans-serif;
	font-weight: 400;
	font-size: clamp(1rem, 1rem + 1vw, 1.25rem);
	line-height: 1.4;
	max-width: 500px;
	margin: 0;
	margin-top: 1vh;
}

.hero-banner__socials {
	position: absolute;
	bottom: 20%;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}
.hero-banner__socials a {
	display: block;
	transition: transform 0.2s ease;
}
.hero-banner__socials a:hover {
	transform: scale(1.1);
}
.hero-banner__socials svg {
	width: clamp(30px, 8vw, 45px);
	height: auto;
}

.hero-banner__button {
	width: 90%;
	max-width: 450px;
	padding: 18px;
	background-color: #f04e55;
	color: #ffffff;
	font-family: "DIN Pro", sans-serif;
	font-weight: 700;
	font-size: clamp(1.1rem, 3.4vw, 1.5rem);
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 100px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	margin-top: auto;
}
.hero-banner__button:hover {
	background-color: #d94248;
}
.hero-banner__button .btn-text--desktop {
	display: none;
}

@media (min-width: 1024px) {
	.hero-banner__button .btn-text--mobile {
		display: none;
	}
	.hero-banner__button .btn-text--desktop {
		display: block;
	}

	.hero-banner {
			height: 750px;
			min-height: auto;
		}

	.hero-banner__img--mobile {
		display: none;
	}
	.hero-banner__img--desktop {
		display: block;
		object-position: center 55%;
		object-fit: none;
		transform: translateX(-6%);
	}

	.hero-banner__content-wrapper {
		display: block;
		padding: 40px;
		height: 100%;
		min-height: auto;
	}

	.hero-banner__logo,
	.hero-banner__info,
	.hero-banner__main-text,
	.hero-banner__button {
		position: absolute;
		margin-bottom: 0;
	}

	.hero-banner__age-rating {
		top: 12px;
		left: auto;
		right: 30px;
		width: 53px;
		height: 53px;
		font-size: 32px;
	}

	.hero-banner__logo {
		top: 7.69%;
		left: auto;
		right: 5%;
		transform: none;
		text-align: left;
		width: auto;
		max-width: 525px;
	}

	.hero-banner__info {
		top: 10.77%;
		left: 4.9%;
		transform: none;
		text-align: left;
		display: block;
	}
	.hero-banner__date {
		font-size: 55px;
		line-height: 1.1;
		display: block;
	}
	.hero-banner__location {
		font-size: 32px;
		line-height: 1.4;
		display: block;
	}
	.hero-banner__divider {
		display: none;
	}

	.hero-banner__main-text {
		top: 36.31%;
		left: auto;
		right: 5.87%;
		transform: none;
		max-width: 600px;
		text-align: right;
	}

	.hero-banner__title-main {
		font-size: 50px;
	}

	.hero-banner__title-accent {
		font-size: 72px;
	}

	.hero-banner__subtitle {
		font-size: 32px;
		line-height: 1.2;
		margin-top: 20px;
		max-width: 401px;
		margin-left: auto;
	}

	.hero-banner__socials {
		bottom: 7.85%;
		left: 4.9%;
		right: auto;
		flex-direction: row;
		gap: 17px;
	}

	.hero-banner__socials a {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.hero-banner__socials a:first-child svg {
		width: 49px;
		height: 49px;
	}
	.hero-banner__socials a:last-child svg {
		width: 43px;
		height: 37px;
	}

	.hero-banner__button {
		bottom: 12.31%;
		left: auto;
		right: 5%;
		transform: none;
		width: auto;
		padding: 22px 60px;
		background-color: transparent;
		color: #202020;
		border: 3px solid #ec463d;
		font-size: 32px;
		white-space: nowrap;
		margin-top: 0;
	}

	.hero-banner__button:hover {
		background-color: #ec463d;
		color: #ffffff;
	}
}
/* 
@media (min-width: 1550px) {
	.hero-banner__img--desktop {
		object-position: 34% 10%;
	}
}
@media (min-width: 1980px) {
	.hero-banner__content-wrapper {
		max-width: 67%;
	}
} */
