
.fgrid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
}
.fgrid1{
	width: fit-content;
	grid-column: 1 / span 2;
	grid-row: 1;
	justify-self: normal;
}
.fgrid2{display: none;}
.fgrid3{
	width: fit-content;
	grid-column: 3 / span 1;
	grid-row: 1;
	justify-self: end;
}
.fgrid4{
	display:flex;
	flex-direction: row;
	width: fit-content;
	grid-column: 1 / span 3;
	grid-row: 2;
	width: 100%;
	justify-content: space-between;
	height: fit-content;
}
.fgrid5{display: none;}
.fgrid6{display: none;}
.fgrid7{
	display:flex;
	flex-direction: column;
	width: fit-content;
	grid-column: 1 / span 3;
	grid-row: 3;
	width: 100%;
	justify-content: end;
	height: fit-content;
	margin: 0px;
}
.fgrid8{display: none;}
.fgrid9{display: none;}

#footer_div{
	background-color: #f2f2f2;
	width: calc(100% + 16px);
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	position: relative;
	top: 0px;
	left: -8px;
	padding-top: 0px;
	padding-bottom: 0px;
	box-shadow: 0px -7px 3px 3px gray;
	margin-top: 30px;
	padding-bottom: 100px;
}

#footer_subdiv1{
	flex-direction: row;
	justify-content: space-between;
	width: 1012px;
	margin: auto;
	margin-top: 30px;
}

#footer_subdiv2{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 1012px;
	justify-content: flex-start;
	margin: auto;
	margin-top: 30px;
}

.footer_h{
	font-weight:400;
}

.footer_item{
	margin-bottom:20px;
}

#footer_mwst{
	font-size:small;
	margin-top: 20px;
}

.footer_link{
	text-decoration:none;
	color:black;
}

#footer_right{
	display: flex;
	flex-direction: column;
	align-items: end;
}

.footer_btn{
	background-color:#dfdfdf;
	color:black;
	cursor: pointer;
	border: none;
	border-radius: 15px;
	padding: 10px;
	padding-left:60px;
	padding-right:60px;
	text-decoration: none;
	margin-bottom:20px;
	box-shadow:0px 0px 1px 1px black;
}
.footer_btn:hover{
	background-color:#f2f2f2;
}
#footer_social_div{
	margin-top: 0px;
	display: flex;
}

.footer_social_media_link
{
	display: flex;
}

.footer_social_img{
	height:80px;
	padding: 10px;
}

@media screen and (max-width: 1011px)
{
	#footer_div{
		width: calc(100% - 16px);
		padding-left: 8px;
		padding-right: 8px;
		left:0px;
	}
	#footer_right{
		align-items: start;
	}
	.fgrid1{
		grid-column: 1 / span 3;
	}
	.fgrid3{
		grid-column: 1 / span 3;
		grid-row: 2;
		justify-self: start;
	}
	.fgrid4{
		grid-column: 1 / span 3;
		grid-row: 3;
		justify-content: start;
		flex-direction:column;
	}
	.fgrid7{
		font-size: small;
		grid-row: 4;
	}
	
	
	
	
	.footer_btn{
		padding: 10px;
		font-weight: normal;
		font-size: medium;
		margin-bottom: 10px;
	}
	#footer_subdiv1{
		width:100%;
		padding-left: 0px;
		padding-right: 0px;
	}
	#footer_subdiv2{
		width:100%;
		padding-left: 10px;
		padding-right: 10px;
	}
}