@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700');

html, body {
	width: 100%;
	height: 100%;
}
/*body preference*/
body {
	font-family: 'Libre Baskerville', sans-serif;
	text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	background-image: url('../images/bg.jpg');
	background-position: center;
	background-size: cover;
	background-color: #111;
}
	/*body overlays*/
	.b-overlay {
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: rgba(22,22,22, 0.7);
	}
	.dots {
		background-image: -moz-linear-gradient(45deg, #111111 25%, transparent 25%),
        -moz-linear-gradient(-45deg, #111111 25%, transparent 25%),
        -moz-linear-gradient(45deg, transparent 75%, #111111 75%),
        -moz-linear-gradient(-45deg, transparent 75%, #111111 75%);
	    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, #111111), color-stop(.25, transparent)),
	        -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #111111), color-stop(.25, transparent)),
	        -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.75, transparent), color-stop(.75, #111111)),
	        -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.75, transparent), color-stop(.75, #111111));
	    background-image: -webkit-linear-gradient(45deg, #111111 25%, transparent 25%),
	        -webkit-linear-gradient(-45deg, #111111 25%, transparent 25%),
	        -webkit-linear-gradient(45deg, transparent 75%, #111111 75%),
	        -webkit-linear-gradient(-45deg, transparent 75%, #111111 75%);
	    background-image: -o-linear-gradient(45deg, #111111 25%, transparent 25%),
	        -o-linear-gradient(-45deg, #111111 25%, transparent 25%),
	        -o-linear-gradient(45deg, transparent 75%, #111111 75%),
	        -o-linear-gradient(-45deg, transparent 75%, #111111 75%);
	    background-image: linear-gradient(45deg, #111111 25%, transparent 25%),
	        linear-gradient(-45deg, #111111 25%, transparent 25%),
	        linear-gradient(45deg, transparent 75%, #111111 75%),
	        linear-gradient(-45deg, transparent 75%, #111111 75%);
	    -moz-background-size: 2px 2px;
	    background-size: 2px 2px;
	    -webkit-background-size: 2px 2.1px; /* override value for webkit */
	    background-position: 0 0, 1px 0, 1px -1px, 0px 1px;

	}
/*link*/
a, a:link, a:visited, a:focus {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #fff;
	border-bottom: 1.5px solid white;
}
strong, b {
	font-weight: 700 !important;
}
/*logo*/
.logo {
	display: block;
	margin: 70px auto;
	width: 32%;
	max-width: 600px;
}
@media screen and (max-width: 767px) {
	.logo {
		width: 74%;
		max-width: 300px;
		margin: 15% auto;
	}
	.intro > p > br {
		display: none;
	}
}
/*text configuration*/
.txt-small {
	font-size: 22px!important;
}
.txt-medium {
	font-size: 32px!important;
}
.txt-big {
	font-size: 42px!important;
}
.txt-massive{
	font-size: 62px!important;
}
.txt-bold {
	font-weight: bold!important;
}
.txt-underline {
	text-decoration: underline!important;
}
.txt-border-black {
	border: 1px solid #000!important;
}
.txt-border-white {
	border: 1px solid #FFF!important;
}
.txt-center {
	text-align: center!important;
}
.txt-right {
	text-align: right!important;
}
.txt-left {
	text-align: left!important;
}
/*text-Opensans Weight Thin*/
.txt-owT {
	font-weight: 300!important;
}
/*text-Opensans Weight Bold*/
.txt-owB {
	font-weight: 700!important;
}
/*Main Cotainer: intro*/
.intro {
	position: relative;
	width: 100%;
	height: auto;
	top: 50%;
	margin: 0 auto;
	transform: translateY(-50%);
	background-color: transparent;
	text-align: left;
}
.intro > p {
	font-family: 'Libre Baskerville', sans-serif;
	font-style: normal;
	font-size: 15px;
	color: #EEE;
	padding: 6px 20px;
	line-height: 1.5;
}
.intro > p.contacts {
	font-family: 'Libre Baskerville', sans-serif;
	font-style: normal;
	font-size: 14px;
	color: #EEE;
	padding: 6px 20px;
	line-height: 1.5;
}
	/*Social class for intro */
	.social {
		position: relative;
		width: inherit;
		height: inherit;
		background-color: transparent;
		margin-top: 8px;
	}
	.social > p {
		position: relative;
		width: inherit;
		height: inherit;
		text-align: right;
		color: #EEE;
		font-size: 13px;
		font-family: 'Libre Baskerville', sans-serif;
		font-style: normal;
	}
	.social > ul {
		position: relative;
		width: inherit;
		height: inherit;
		text-align: center;
	}
	.social > ul > li {
		position: relative;
		width: auto;
		height: auto;
		font-size: 18px;
		width: 32px;
		height: 32px;
		vertical-align: middle;
		display: inline-block;
		text-align: center;
	}
	.social > ul > li > i {
		position: relative;
		width: inherit;
		height: inherit;
		top: 50%;
		transform: translateY(-30%);
	}
