*,*::before,*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: url(./../images/bg-picture.png) right -50px top 200px no-repeat;
	background-size: 38%;
	background-attachment: fixed;
}

.page-wrapper {
	width: min(90%, 1200px);
	margin: 0 auto;
	display: grid;
	grid-template-columns:1fr 2fr;
	grid-template-areas: 
	"aside main"
	;
	column-gap: 22px;
	padding-top: 87px;
}

	
header {
	position: fixed;
	width: 100%;
	height: 80px;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 100;
}

aside {
	grid-area: aside;
}

main {
	grid-area: main;
}

li {
	list-style: none;
}

.header__container {
	width: min(90%, 1200px);
	margin: 0 auto;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	padding: 13px 0;
}

.header__content {
	display: flex;
	align-items: start;
	flex-direction: row-reverse;
	gap: 50px;
}

.header__nav {
	display: flex;
	padding-left: 5px;
	flex-direction: row;
	gap: 11px;
	font-family: 'Staatliches';
	font-size: 1.375rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	a {
		text-decoration: none;
		color: black;
	}
}

.header__lang_switcher-wrap {
	line-height: 18px;
}

.header__lang_switcher {
	padding-left: 4px;
	width: 50px;
	text-decoration: none;
	font-family: 'Tourney';
	font-weight: 600;
	font-size: 1.375rem;
	text-transform: uppercase;
	color: black;
}

.main__container {
	padding: 0px 0 90px 0;
}

.section {
	position: relative;
	margin-top: 63px;
	padding-top: 23px;
	h2 {
		font-family: 'Francois One';
		font-style: normal;
		font-weight: 400;
		font-size: 2.25rem;
		text-transform: uppercase;
		line-height: 3rem;
		margin-bottom: 40px;
		letter-spacing: 1.6px;
		> sup {
			text-transform: none;
			font-family: 'Farro';
			font-weight: 300;
			font-size: 1.1rem;
			margin-left: 7px;
			letter-spacing: 1px;
			position: relative;
			top: -10px;
		}
	}
	p,li {
		font-family: 'PT Sans';
		font-style: normal;
		font-weight: 400;
		line-height: 3rem;
		font-size: 1.75rem;
		a{
			text-decoration: underline;
			cursor: pointer;
		}
		em {
			font-family: 'PT Sans';
			font-style: italic;
			font-weight: 400;
		}
	}
	&::before {
		content: "";
		width: 100px;
		height: 8px;
		background-color: black;
		position: absolute;
		top: 0;
		left: 0;	
	}
}

.bg-grey {
	background-color: #DADADA;
}


.components_section {
	margin-top: 69px;
}


.fundamentals_section {
	margin-top: 69px;
	h2 {
		margin-bottom: 38px;
	}
	p:not(:first-child) {
		margin-bottom: 33px;
	}
	ul+p.fundamentals__phar-mid {
		margin-bottom: 38px;
	}
}



.fundamentals__item  {
	margin-bottom: 31px;
}

.mb-43 {
	margin-bottom: 43px;
}

.fundamentals__item::before {
	content: "+";
	left: 0;
	font-weight: bold;
}

.handling_section {
	margin-top: 69px;
	p:not(:last-child) {
		margin-bottom: 38px;
	}
}

.aside-container {
	position: sticky;
	top:80px;
}

.aside__item {
	font-family: 'Francois One';
	font-style: normal;
	font-weight: 400;
	font-size: 2.25rem;
	text-transform: uppercase;
	line-height: 3rem;
	margin-bottom: 40px;
	letter-spacing: 1.6px;
	margin-top: 75px;
	margin-left: 10px;
	padding-bottom: 7px;
	a {
		text-decoration: none;
		color: black;
	}
	border-bottom: 1px solid #DADADA ;
	&:nth-child(3) {
		margin-top: 67px;
	}
}

.aside__nav {
	margin-top: 63px;
}


