body{
	font-family: 'Montserrat', sans-serif;
}
#loader{
	z-index: 1;
	position: fixed;
	background-color: #36302a;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
#loader #spinner{
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #3498db;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
#loader #spinner:before{
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #e74c3c;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}
#loader #spinner:after{
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f9c922;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
@keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
#content{
	height: 100vh;
	background-image: url(../img/szechenyi-chain-bridge.jpg);
	width: 100%;
	float: left;
	background-size: cover;
	overflow-y:scroll;
}  
.site-container{
	max-width: 700px;
	margin: auto;
	padding: 60px 0px;
}
#main-menu{
	width: 200px;
	float:left;
}
#main-menu ul{
	list-style: none;
	padding: 0;
	outline: 5px solid rgba(0, 0, 0, 0.5);
}
#main-menu ul li a{
	display: block;
	background: #ec9503;
	padding: 8px 10px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	margin-bottom: 5px;
	position: relative;
	z-index: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}
#main-menu ul li:last-child a{
	margin-bottom: 0px;
}
#main-menu ul li a:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: #7e420b;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
/*#main-menu ul li a:hover{
	padding-left:15px;
}
#main-menu ul li a:hover:before{
	width: 100%;
}*/
#main-menu ul li a.active{
	padding-left:15px;
}
#main-menu ul li a.active:before{
	width: 100%;
}

.main-content-outer{
	width:500px;
	float:left;
	padding-left: 5px;
}
.main-content-outer .content-box{
	width: 100%;
	float: left;
	background: #f1f1f1;
	padding:40px; 
	outline: 5px solid rgba(0, 0, 0, 0.5);
}
.main-content-outer #home img{
	width: 175px;
	margin: auto;
	display: block;
	border: 5px solid #464443;
}
.main-content-outer #home h1.main-heading{
	margin-bottom: 5px;
}
.main-content-outer #home p.sub-heading{
	font-size: 16px;
	margin-bottom: 20px;
	border-bottom: 1px solid #c1c1c1;
	padding-bottom: 20px;
}
.main-content-outer #home .contact-email{
	display: inline-block;
	background: #261400;
	color: #fff;
	padding: 10px 25px;
	border-radius: 3px;
	word-break: break-word;
}
#skills h2{
	margin-bottom: 25px;
	margin-top: 5px;
}
#skills ul{
	list-style: none;
	padding: 0;
}
#skills ul li{
	display: inline-block;
	padding: 8px 10px;
	border: 3px solid #7e420b;
	margin: 2px 0px;
	border-radius: 5px;
	font-weight: 700;
}
#contact .contact-mail{
	padding: 10px 20px;
	background-color: #7e420b;
	display: inline-block;
	color: #fff;
	border-radius: 3px;
	margin: 10px 0px;
	text-decoration: none;
	min-width: 250px;
}
#contact .upwork-link{
	color: #fff;
	background-color: #37a000;
	text-decoration: none;
	border-radius: 3px;
	display: inline-block;
	padding: 10px 17px;
	min-width: 250px;
}
#contact a:hover{
	box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.24)
}

.content-box{
	text-align: center;
}
@media only screen and (max-width: 700px) {
	.main-content-outer,#main-menu {
		width: 100%;
		float: left;
		padding: 0;
	}
	.site-container{ 
		width: 100%;
		float: left;
		padding: 30px 15px;
	}
	.main-content-outer #home img{
		width: 100px;
	}
	.main-content-outer .content-box{
		margin-top: 0px;
	}
}
@media only screen and (max-width: 400px) {
	#contact .contact-mail,#contact .upwork-link{
		min-width: 100%;
		word-break: break-word;
	}
	.main-content-outer .content-box{
		padding: 40px 20px;
	}
}



/*common paid hosting*/ 
.brown-color{
	color:#b94d03;
}