@font-face {
	font-family: Roboto;
	src: url('http://jurtopvano.net/fontfiles/Roboto-Regular.ttf');
	font-weight: normal;
}

@font-face {
	font-family: Roboto;
	src: url('http://jurtopvano.net/fontfiles/Roboto-Italic.ttf');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: Roboto;
	src: url('http://jurtopvano.net/fontfiles/Roboto-Light.ttf');
	font-weight: lighter;
}

@font-face {
	font-family: Roboto;
	src: url('http://jurtopvano.net/fontfiles/Roboto-Bold.ttf');
	font-weight: bold;
}

.blue {
	color: #7795ff !important;
}

.light {
	font-weight: lighter !important;
}

.tac {
	text-align: center;
}

html {
	font-family: Roboto, sans-serif;
}

html,body {
	outline: 0;
	margin: 0;
	padding: 0;
	background-color: #f2f2f2;
}

body {
	margin-top: 50px;
	font-size: 15pt;
	overflow-x: hidden;
}

h1 {
	font-weight: lighter;
	font-style: italic;
	font-size: 20pt;
	text-transform: uppercase;
}

h2 {
	font-size: 30pt;
	font-weight: bold;
	padding-top: 40px;
	text-align: center;
}

h3 {
	font-size: 18pt;
	font-weight: lighter;
	text-transform: uppercase;
	margin-bottom: 40px;
	text-align: center;
}

a {
	color: inherit;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

.header-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100% - 40px);
	height: 50px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	align-content: space-around;
	background-color: #7795ff;
	color: #fff;
	padding: 0 20px;
	font-size: 13pt;
}

.header-bar a {
	text-decoration: none;
	cursor: pointer;
}

.inner-header-cont {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	align-content: space-around;
}

.inner-header-cont > * {
	margin: 0 20px;
}

.inner-header-cont.anchors {
	font-weight: bold;
	font-size: 13pt;
}

.inner-header-cont.anchors a {
	height: 100%;
	padding: 10px;
	border-radius: 3px;
}

.inner-header-cont.anchors a:hover {
	background-color: #6684ee;
}

.body-cont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: space-around;
	min-height: calc(100vh - 50px);
}

#start-cont {
	background-color: #7795ff;
	color: #fff;
}

#projects-cont {
	background-color: #fff;
	color: #3d3d3d;
}

.two-box-column-cont {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.two-box-column-cont .inner-box {
	background-color: #fff;
	color: #3d3d3d;
	margin: 50px 4vw;
	padding: 30px;
	width: 25vw;
	border-radius: 4px;
	box-shadow: 0px 0px 10px 1px #7795ff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.two-box-column-cont .inner-box img {
	height: 60px;
	width: auto;
	border-radius: 9999;
}

/*----------------appear-el/appear-eled----------------*/

.appear-el {
	transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transform: translateX(100vw);
	-ms-transform: translateX(100vw);
	-webkit-transform: translateX(100vw);
}

.appear-el.appear-right {
	transform: translateX(100vw);
	-ms-transform: translateX(100vw);
	-webkit-transform: translateX(100vw);
}

.appear-el.appear-left {
	transform: translateX(-100vw);
	-ms-transform: translateX(-100vw);
	-webkit-transform: translateX(-100vw);
}

.appear-eled {
	transform: none !important;
	-ms-transform: none !important;
	-webkit-transform: none !important;
	opacity: 1 !important;
}

@media only screen and (max-width: 990px) {
	* {
		overflow-x: hidden;
	}

	.header-bar a {
		text-decoration: none;
		cursor: pointer;
	}

	.inner-header-cont > * {
		margin: 0 5px;
	}

	.header-bar .links {
		margin: 0 10px;
	}

	.header-bar .poweredby {
		display: none;
	}

	.two-box-column-cont .inner-box {
		width: 70%;
		box-shadow: none;
		border: 1px solid #7795ff;
	}
}