:root {
	--header-height: 60px;
	--fontsizeStandart: 17.6px;
	--fontsizeHeading1: 39.6px;
	--fontsizeHeading2: 29.7px;
	--fontsizeHeading3: 23.1px;
}

html {
	scroll-behavior: smooth;
	overflow: hidden;
}

body {
	margin: 0;
	background-color: rgb(45, 45, 45);
	color: rgb(255, 255, 255);
	font-family: Cambria;
	font-size: var(--fontsizeStandart);
}

body.bodyActiveTransition {
	transition: all 0.75s;
}

body.loading > * {
	display: none !important;
}

#divLoadingScreen {
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	width: 100vw;
	height: 100vh;
	display: block !important;
	z-index: 999;
	background-color: rgb(45, 45, 45);
}

#imgLoadingScreenLogo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#divLoadingScreenSpinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: conic-gradient(from 0deg, transparent, rgba(34, 34, 34));
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000000 calc(100% - 8px));
	mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000000 calc(100% - 8px));
	animation: spin 1.4s linear infinite;
}

@keyframes spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

header {
	height: var(--header-height);
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: rgb(35, 35, 35);
}

#aHeaderLogo {
	margin-left: 10px;
}

#imgHeaderLogo {
	height: calc(var(--header-height) * 0.7);
}

#pHeaderSlogan {
	margin-left: 20px;
	color: rgb(200, 200, 200);
}

nav {
	position: fixed;
	top: 0;
	z-index: 1;
}

#divNavToggle {
	position: fixed;
	top: calc(var(--header-height) / 2);
	right: calc(5vw - var(--scrollbar-width, 0px));
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 5px;
	z-index: 1;
	cursor: pointer;
}

#menuLines {
	width: 20px;
}

#rectMenuLineOne {
	transform-origin: 0px 5px;
	transition: all 1s;
}

#rectMenuLineTwo {
	transform-origin: 70px 5px;
	transition: all 1s;
}
#rectMenuLineThree {
	width: 100%;
	transition: all 1s;
}
#rectMenuLineFour {
	transform-origin: 0px 55px;
	transition: all 1s;
}

#rectMenuLineFive {
	transform-origin: 70px 55px;
	transition: all 1s;
}

#rectMenuLineOne.divMenuVisible {
	transform: rotate(45deg) translate(10px, calc(-20px / 3));
	transition: all 1s;
}

#rectMenuLineTwo.divMenuVisible {
	transform: rotate(-45deg) translate(-10px, calc(-20px / 3));
	transition: all 1s;
}
#rectMenuLineThree.divMenuVisible {
	width: 0;
	transform: translateX(50%);
	transition: all 1s;
}
#rectMenuLineFour.divMenuVisible {
	transform: rotate(-45deg) translate(10px, calc(20px / 3));
	transition: all 1s;
}

#rectMenuLineFive.divMenuVisible {
	transform: rotate(45deg) translate(-10px, calc(20px / 3));
	transition: all 1s;
}

#divToggleArea {
	font-size: 30px;
}

#divMenu {
	position: fixed;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	place-items: center;
	pointer-events: none;
}

#divMenuBackground {
	position: fixed;
	left: 50%;
	height: 100vh;
	width: 0;
	transform: translateX(-50%);
	pointer-events: none;
	opacity: 0;
	background-color: rgb(45, 45, 45);
	transition:
		width 1s,
		opacity 1s,
		background-color 1s;
}

#divMenuBackground.divMenuVisible {
	width: 100vw;
	pointer-events: auto;
	opacity: 1;
	background-color: rgba(25, 25, 25, 0.9);
	transition:
		width 1s,
		opacity 1s,
		background-color 1s;
}

#divMenuList {
	width: max-content;
	text-align: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s;
}

#divMenuList.divMenuVisible {
	pointer-events: auto;
	opacity: 1;
	transition: opacity 1s;
}

.menuPoint {
	font-size: 1.5625rem;
}

.menuPoinGapAbove {
	margin-top: 55px;
}

.menuPoinGapUnderneath {
	margin-bottom: 55px;
}

h1 {
	font-size: var(--fontsizeHeading1);
}

h2 {
	font-size: var(--fontsizeHeading2);
}

h3 {
	font-size: var(--fontsizeHeading3);
}

.aDesign {
	height: max-content;
	position: relative;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

.aDesign::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #fff;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

.aDesign:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.redMark {
	color: rgb(212, 10, 10);
}

.mainBody {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.divInfo {
	width: min(80%, 1200px);
	margin-top: 10px;
}

.paragraphMessage {
	text-align: center;
}

footer {
	width: fit-content;
	min-width: 200px;
	margin: 20px auto 50px;
	gap: 55px;
	display: flex;
	text-align: center;
}

.aFooter {
	width: fit-content;
	margin: 0 auto;
	font-size: 18px;
}

@media (max-width: 560px) {
	#pHeaderSlogan {
		display: none;
	}
}

@media (max-width: 550px) {
	footer {
		gap: 25px;
		flex-direction: column;
	}
}

@media (max-height: 550px) {
	.menuPoint {
		font-size: 1.2rem;
	}

	.menuPoinGapAbove {
		margin-top: 35px;
	}

	.menuPoinGapUnderneath {
		margin-bottom: 35px;
	}
}
