

@font-face {
	font-family: "oswald";
	src: url("../fonts/static/Oswald-Bold.woff2") format("woff2");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: "Oswald";
	src: url("../fonts/static/Oswald-SemiBold.woff2") format("woff2");
	font-style: normal;
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: "Oswald";
	src: url("../fonts/static/Oswald-Medium.woff2") format("woff2");
	font-style: normal;
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Oswald";
	src: url("../fonts/static/Oswald-Regular.woff2") format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Oswald";
	src: url("../fonts/static/Oswald-Light.woff2") format("woff2");
	font-style: normal;
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: "Oswald";
	src: url("../fonts/static/Oswald-ExtraLight.woff2") format("woff2");
	font-style: normal;
	font-weight: 200;
	font-display: swap;
}

body {
	background-color: #EEE5E9 !important;
}

* {
	box-sizing: border-box;
	font-family: "Oswald", sans-serif;
    font-weight: 300;
	
}

h1, h2, h3, h4, h5, h6, ü {
	color: #191516 !important;
}


a svg, a {
	color: #BB0A21 !important;
}

img {
    max-width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	height: 100%;
	width: 100%
}

aside {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
aside a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

aside a p {
	position: absolute;
	right: -70px;
	margin: auto;
	text-align: right;
	width: 200px;
	opacity: 0;
	transition: right .4s, opacity .8s;
}

aside a:hover p {
	right: 70px;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	aside {
		width: 60px;
	}

	aside svg {
		width: 35px;
	}

	.container-xl {
		width: calc(100% - 50px) !important;
		margin-left: 0 !important;
	}
}