* {
	margin:0;
	padding: 0;
}	
 
/* Let's get this party started */
::-webkit-scrollbar {
    width: 6px;
	height: 6px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(40,40,40,0.1); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(40,40,40,0.1); 
}
body {
	font-family: 'Roboto', sans-serif;
}
.main__container {
	background: #ffffff none repeat scroll 0 0;
	
	width: 100%;
	height: 100%:
}
.main__container-content {
	margin: 20px;
	width: calc(100% - 40px);
	height: calc(100vh - 40px);
	display: flex;
	overflow-y: scroll;
	overflow-x: scroll;
	flex-direction: column;
	align-items: center;
	background: #fff none repeat scroll 0 0;
	border-radius: 20px;
	-webkit-box-shadow: 0px 0px 39px -6px rgba(0,0,0,0.13);
	-moz-box-shadow: 0px 0px 39px -6px rgba(0,0,0,0.13);
	box-shadow: 0px 0px 39px -6px rgba(0,0,0,0.13);
}
.logo {
	display: flex;
	justify-content: center;
	padding: 40px 40px 20px 40px;
	background: #ffffff none repeat scroll 0 0; 
	z-index: 99;
}
.logo .u-media {
	width: 100%;
	height: auto;
}
.loader .u-media {
	width: 120px;
}
.content {
	text-align: center;
}
.content .sub {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #000000;
	font-size: 24px;
	margin-bottom: 10px;
	display: block;
}
.content .title {
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	color: #cd5a19;
	font-size: 50px;
	margin-bottom: 20px;
}
.content p {
	color: #868686;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 20px;
}
.content .u-link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #393f62 none repeat scroll 0 0;
	padding: 20px 40px 20px 20px;
	border-radius: 60px;
	margin-top: 40px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	margin-bottom: 35px;
	
}
.content .u-link .icon {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	display: flex;
	background: #ffffff none repeat scroll 0 0;
	justify-content: center;
	align-items: center;
}
.content .u-link .u-media {
	width: 30px;
}
.content .u-link .value {
	color: #ffffff;
	font-size: 16px;
	text-decoration: none;
	margin: 0 10px 0px 30px;
}
.content .u-link .arrow .u-media {
	width: 15px;
	margin-top: 3px;
	transition: all 0.3s ease-in-out;
}
.content .u-link:hover .arrow .u-media {
	margin-left: 8px;
	transition: all 0.3s ease-in-out;
}
.footer .title {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 12px;
}
.icon-group {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.icon-group .icon-link {
	padding: 15px 20px;
	border-radius: 10px;
	background: #fff none repeat scroll 0 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	-webkit-box-shadow: 0px 0px 39px -6px rgba(0,0,0,0.13);
	-moz-box-shadow: 0px 0px 39px -6px rgba(0,0,0,0.13);
	box-shadow: 0px 0px 39px -6px rgba(0,0,0,0.13);
}
.icon-group .icon-link .u-media {
	width: 120px;

}

@media screen and (max-width: 991px) {
	.main__container-content .logo .u-media {
		width: 150px;
		height: auto;
	}
	.main__container-content .content {
		padding: 0 30px;
	}
}

@media screen and (max-width: 400px) {
	.main__container-content .logo .u-media {
		width: 100px;
		height: auto;
	}
	.content .sub {
		font-size: 14px;
	}
	.content .title {
		font-size: 24px;
	}
	.content p {
		font-size: 16px;
	}
	.content .u-link .icon {
		width: 30px;
		height: 30px;
		min-width: 30px;
		margin-right: 10px;
	}
	.content .u-link .u-media {
		    width: 15px;
			height: auto;
	}
	.content .u-link .value {
		font-size: 13px;
		margin: 0px;
		
	}
	.content .u-link .arrow {
		display: none;
	}
}