@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
.layout{
	display: flex;
	justify-content: center;
}
.container{
	max-width: 1920px;
	background: #FBF8FD;
	width: 100%;
}
.header{
	height: 96px;
	background-color: #F7F1FA;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
}
.header-left{
	display: flex;
}
.logo{
	font-weight: 700;
	font-size: 24px;
	margin-right: 2vw;
}
.menu{
	margin-left: 2vw;
}
.header, .content, .footer{
	padding: 0 1vw;
}
.content .title{
	margin-top: 5vh;
}
.content .title h1{
	font-size: 36px;
	font-weight: 600;
}
.content .title p{
	font-size: 18px;
	font-weight: 300;
	margin-top: 1vh;
}
.content{
	margin-top: 3vh;
	min-height: 40vh;
}
.footer{
	display: flex;
	justify-content: space-between;
	margin-bottom: 1vh;
}
body{
	font-family: Inter,serif;
}
.header a{
	color: #453d45;
	text-decoration: none;
	font-weight: 300;
	font-size: 22px;
}
.second-level-menu{
	padding-top: 0.5vh;
	position: absolute;
	display: none;
}
.top-level-menu li:hover > .second-level-menu {
	display: block;
}
.second-level-menu > ul {
	margin-top: 1vh;
	box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.25);
	background: #ede4fa;
	min-width: 5vw;
	min-height: 3vh;
	padding: 1vh 0.5vw;
}
.second-level-menu > ul > li{
	cursor: pointer;
	padding: 0.5vh 0.5vw;
}
.second-level-menu > ul > li:hover{
	background: #dac6f8;
	cursor: pointer;
}
.second-menu-link-description{
	font-weight: 300;
	font-size: 16px;
	color: #94809a;
}
.second-menu-link{
	font-weight: 500;
}