.about_text {
	margin-top: 50px;
	border-top: 3px solid #777777;
	border-left: 3px solid #777777;
	border-image: linear-gradient(to left top, #777777 10%,  transparent 30%, transparent 70%, #777777 90%);
	border-image-slice: 1;
}

.about_company {
	color: #FFFFFF;
	font-weight: bold;
	padding: 20px 16px;
	font-size: 40px;
}

.about_me {
	color: #FFFFFF;
	padding: 3px 16px;
	font-size: 24px;
}

.tile_map {
	padding: auto;
	margin: auto;
	margin-bottom: 50px;
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.mini_tile {
	height: 600px;
	width: 43%;
	padding-bottom: 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.main_project {
	width: 55%;
	background-color: #505585;
	height: 600px;
	border-radius: 55px;
	margin-bottom: 20px;
}

.last_update_project {
	background-color: #505585;
	width: 100%;
	height: 285px;
	border-radius: 55px;
}

.most_popular_project {
	width: 100%;
	height: 285px;
	background-color: #505585;
	border-radius: 55px;
}

.news_section {
	background-color: #AAAAAA;
}

.news_section_title {
	font-weight: bold;
	font-size: 50px;
	padding-top: 40px;
	padding-left: 40px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.news_section_container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.news {
	width: 30%;
	height: 250px;
	background-color: #C4C4C4;
	border-radius: 40px;
	margin-bottom: 40px;
	box-shadow: 0 0 15px 4px rgba(0,0,0,0.06);
	padding-left: 20px;
	padding-top: 20px;
	padding-right: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news h3 {
	color: #666666;
	margin-top: 0;
}

.news text-news {
	margin-top: 10px;
}

.news h1 {
	margin-top: 20px;
}

.news p {
	margin-top: 10px;
	color: #444444;
	margin-top: 10px;
	font-weight: bold;
	font-size: 20px;
}

.bottom_aligner {
    display: inline-block;
    height: 100%;
    vertical-align: bottom;
    width: 0px;
}

.news a {
	color: #666666;
	font-weight: bold;
	font-size: 20px;
	display: flex;
	align-self: flex-end;
	margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {

	.main_project {
		width: 100%;
	}

	.mini_tile {
		width: 100%;
		height: 300px;
	}

	.most_popular_project {
		width: 49%;
	}

	.last_update_project {
		width: 49%;
	}

	.news {
		width: 45%;
		margin-right: 10px;
		height: 250px;
	}

}

@media screen and (max-width: 768px) {
	.mini_tile {
		height: 600px;
	}

	.most_popular_project {
		width: 100%;
	}

	.last_update_project {
		width: 100%;
	}

	.news {
		width: 100%;
		height: 250px;
	}
}