@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500italic,500,700,700italic,900,900italic);

/* text */
p{
	font-size: .8em;
}
p.small{
	font-size: .5em;
}
hr{
	border-color: #ffc616;
	margin: 0;
}

p::selection,
strong::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
a::selection,
br::selection{
	background: #ffc616;
	color: #000;
	text-shadow: none;
}
img{
	user-select: none;
}
/* 768 px */
@media(min-width: 768px){
	p{
		font-size: 1em;
	}
	p.small{
		font-size: .6em;
	}
	hr{
		margin: auto 10%;
	}
}
@media(min-width: 1200px){
	p{
		font-size: 1.1em;
	}
	p.small{
		font-size: .7em;
	}
	hr{
		margin: auto 15%;
	}
}
body {
	background-color: #fff;
	background-attachment: fixed;
	background-image: url(../images/code.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
header {
	background-color:#fff; 
	position:fixed; 
	top:0; left:0; 
	height:80px; 
	width:100%; 
	z-index:80;
	opacity:0;
	-moz-transition: all  .3s linear;
	-webkit-transition: all  .3s linear;
}
header.show {
	opacity:1;
}
.small-logo {
	position: relative;
	width:100%; 
	padding:19px; 
	background: #fff;
	box-shadow: 0 0 5px #555;
}
.small-logo img{
	width: 132px;
}
.black {
	background-color:#000; 
	color:#fff;}
.white {
	background-color:#fff;
}
.white-text {
	color:#fff;
}
.logo-big {
	position: absolute;
	top: 40%;
	width:82%;
	max-width:1600px;
	margin-top: -25%;
	margin-left:auto;
	margin-right:auto;
	left:0;right:0;
	
}
video {	
	position: absolute;
	top: 40%;
	width:80%;
	height:auto;
	margin-top: -25%;
	margin-left:auto;
	margin-right:auto;
	left:0;right:0;
	max-width:1600px;
}

.index {
	position:absolute; 
	bottom:50px; 
	width:100%; 
	text-align:center;
}
h1 {
	font-family: 'Roboto', sans-serif; 
	font-size: 2.2em;
	font-weight:100;
	color: rgba(106,106,106,1.00); 
	margin-bottom:20px; 
	letter-spacing:-2px;
}
@media(min-width: 390px){
	h1{
		padding: 0 2em;
	}
}
@media(min-width: 768px){
	h1{
		font-size: 3em;
	}
}
@media(min-width: 1200px){
	h1{
		font-size: 4em;
	}
}
.index p {
	font-weight:500; 
	text-transform:uppercase; 
	color: rgba(135,135,135,1.00);
}
.round {
	width:60px; 
	height:60px; 
	font-size:20px; 
	line-height:60px; 
	text-align:center; 
	display:inline-block; 
	border-radius:50%; 
	border: solid 1px rgba(221,221,221,0.4); 
	color:#000;
	-moz-transition: all  .2s linear;
	-webkit-transition: all  .2s linear;
}
.round:hover {
	border: solid 1px #000;
	-moz-transition: all  .2s linear;
	-webkit-transition: all  .2s linear;
}


/* menu call button start */
.menu-call {
	width:30px; 
	position:absolute; 
	top:30px; 
	right:30px; 
	z-index:100; 
	cursor:pointer; 
	padding-top:8px; 
	padding-bottom:8px; 
}
.menu-call span {
	width:100%; 
	height:2px; 
	background-color:#000; 
	display:block;
	-moz-transition: all  .2s linear;
	-webkit-transition: all  .2s linear;
}
.menu-call span:before {
	content:''; 
	height:2px; 
	width:100%; 
	margin-bottom:5px; 
	display:block;
	background-color:#000; 
	position:absolute; 
	top:0px;
	-moz-transition: all  .2s linear;
	-webkit-transition: all  .2s linear;
}
.menu-call span:after {
	content:''; 
	height:2px; 
	width:100%; 
	margin-top:5px; 
	display:block;
	background-color:#000;
	position:absolute; 
	bottom:0px;
	-moz-transition: all  .2s linear;
	-webkit-transition: all  .2s linear;
}
.menu-call.open span {
	-o-transition: all  .2s linear;
	-moz-transition: all  .2s linear;
	-webkit-transition: all  .2s linear; 
	width:0;
}
.menu-call.open span:before {
	content:''; 
	height:2px; 
	width:100%; 
	margin-bottom:5px; 
	display:block;
	background-color:#000; 
	position:absolute; 
	top:8px;  
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-moz-transition: all  .2s linear;
	-webkit-transition: all  .2s linear;
}
.menu-call.open span:after {
	content:''; 
	height:2px; 
	width:100%; 
	margin-top:5px; 
	display:block;
	background-color:#000;
	position:absolute; 
	bottom:8px;  
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-moz-transition: all  .2s linear;
	-webkit-transition: all  .2s linear;
}

/* menu call button end */


/* Main Menu */
.main-menu{
	width: 100%;
	position: absolute;
	top: -100vh;
	left: 0;
	background: #ffc616;
	box-shadow: 0 0 5px #555;
	transition: all .3s ease-in-out;
}
.main-menu.show{
	top: 80px;
}
.main-menu ul.menu{
	margin: 0;
}
.main-menu ul.menu li.menu-item{
	list-style: none;
	text-align: center;
	background: #ffc616;
	transition: all 1s ease-in-out;
}
.main-menu ul.menu li.menu-item:hover{
	background: #FFE399;
}
.main-menu ul.menu li.menu-item a:link,
.main-menu ul.menu li.menu-item a:visited{
	display: inline-block;
	width: 100%;
	padding: 1.5em 0;
	text-decoration: none;
	font-size: 18px;
	transform: scale(1);
	transition: all .3s ease-in-out;
	color: #000;

}
.main-menu ul.menu li.menu-item a:hover{
	transform: scale(1.2);
	color: #000;
}

@media(min-width: 1024px){
	.menu-call{
		display: none;
	}
	.main-menu{
		top: 0px;
		z-index: 81;
		background: none;
		box-shadow: none;
	}
	.main-menu ul.menu{
		text-align: right;
		padding-right: 1em
	}
	.main-menu ul.menu li.menu-item{
		background: none;
		display: inline;
	}
	.main-menu ul.menu li.menu-item:hover{
		background: none;
	}
	.main-menu ul.menu li.menu-item a:link,
	.main-menu ul.menu li.menu-item a:visited{
		display: inline-block;
		width: auto;
		line-height: 80px;
		padding: 0 1em;
	}
}

/************ Sections	*************/
section.main-section h2.section-title{
	font-weight: lighter;
	font-size: 1.5em;
}
@media(min-width: 768px){
	section.main-section h2.section-title{
		font-size: 2em;
	}
}
@media(min-width: 1200px){
	section.main-section h2.section-title{
		font-size: 2.5em;
	}
}
/* dark section */
section.dark-back{
	background: #333;
}
section.dark-back h2,
section.dark-back h3,
section.dark-back h4{
	color: #999
}
section.dark-back p {
	color: #fff;
}
/* lite section */
section.light-back{
	background: #fff;
}
section.light-back h2,
section.light-back h3,
section.light-back h4{
	color: #555
}
section.light-back p {
	color: #000;
}

section.main-section{
	position: relative;
	box-sizing: border-box;
	padding: 1em;
	text-align: center;
}
a.target-anker{
	position: absolute;
	top: -79px;
}
.pad-top-100{
	padding-top: 100px;
}

/* About Section */
section.about{
	overflow: hidden;
	background: none;
} 
section.about img.treosys-symbol{
	display: block;
	width: 80%;
	position: absolute;
	top: 0;
	right: 50%;
	margin-top: 10%;
	margin-right: -10%;
}
section.about .text-container{
	text-shadow: 0 0 10px #000;
}

@media(min-width: 768px){
	section.main-section{
		text-align: left;
	}
	section.about{
		min-height: 1vh;
	}
	section.about img.treosys-symbol.hidden{
		opacity: 0;
	}
	section.about img.treosys-symbol{
		width: 80%;
		display: block;
		position: absolute;
		top: 0;
		right: 50%;
		margin-top: 10%;
		margin-right: -10%;
		opacity: 1;
		transition: opacity 1s ease-in-out;

	}
	section.about .text-container{
		margin: 20% 2em 5em 30%;
	}
}
@media(min-width: 1200px){
	section.about img.treosys-symbol{
		width: 50%;
		margin-right: 0%;
	}
	section.about .text-container{
		margin: 20% 2em 20% 40%;
	}
}

/* Services */
.service-menu-container{
	width: 100%;
	background: #ffc616;
}
.service-menu-container .title{
	font-size: 2em;
	margin: 0;
	padding: 10px 0 10px 30px;
}

section.services{
	background: #fff;
}
section.services h3{
	font-weight: normal;
}
section.services .sub-section{
	position: relative;
	padding: 1em 0;
}
section.services img.service-icon{
	width: 40%;
	margin-bottom: 1em;
}

@media(min-width: 768px){
	section.services .sub-section{
		padding: 1.5em;
		overflow: hidden;
	}
	section.services .sub-section.odd .text-container{
		position: relative;
		margin: 0 0 0 20%;
	}
	section.services .sub-section.eaven .text-container{
		position: relative;
		margin: 0 20% 0 0;
		text-align: right;
	}
	section.services .sub-section img.service-icon{
		width: 28%;
		position: absolute;
		top: 50%;
		margin-top: -13%;
	}
	section.services .sub-section.odd img.service-icon.hidden{
		right: 100%;
	}
	section.services .sub-section.odd img.service-icon{
		right: 50%;
		margin-right: 22%;
		transition: all .5s ease-in-out;
	}
	section.services .sub-section.eaven img.service-icon.hidden{
		left: 100%;
	}
	section.services .sub-section.eaven img.service-icon{
		left: 50%;
		margin-left: 22%;
		transition: all .5s ease-in-out;
	}

}
@media(min-width: 1200px){
	section.services .sub-section{
		padding: 2.5em 7em;
	}
	
	section.services .sub-section img.service-icon{
		width: 30%;
		margin-top: -14%;
	}

	section.services .sub-section.odd img.service-icon{
		margin-right: 16%;
	}

	section.services .sub-section.eaven img.service-icon{
		margin-left: 16%;
	}
}
@media(min-width: 1600px){
	section.services .sub-section{
		padding: 3.5em 7em;
	}
	section.services .sub-section img.service-icon{
		width: 20%;
		margin-top: -10%;
	}

	section.services .sub-section.odd img.service-icon{
		margin-right: 20%;
	}

	section.services .sub-section.eaven img.service-icon{
		margin-left: 20%;
	}
}


/* Products */
section.products{

}
section.products h2{
	font-weight: lighter;
	color: #fff;
}
section.products .sub-section{
	box-sizing: border-box;
}
section.products .sub-section.product{
	background: #fff;
	padding: 1em;
	box-shadow: 0 0 10px #000;
}
section.products .sub-section.product a.link-to-project:link,
section.products .sub-section.product a.link-to-project:visited{
	display: inline-block;
	font-size: .6em;
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
	padding: .5em 1em;
	background: #ffc616;
	cursor: pointer;
	transform: scale(1);
	box-shadow: 0 0 0 #655D38;
	transition: all .3s ease-in-out; 
}
section.products .sub-section.product a.link-to-project:hover{
	transform: scale(1.02);
	box-shadow: 0 3px 5px #655D38;
	background: #ffc616;
}
@media(min-width: 768px){
	section.products{
		padding: 2em;
	}
	section.products .sub-section.product{
		padding: 2em;
	}
	section.products .sub-section.product .text-container{

	}
	section.products .sub-section.product img.product-image{
		width: 40%;
		float: right;
		margin-left: 1em;
	}
	section.products .sub-section.product a.link-to-project:link,
	section.products .sub-section.product a.link-to-project:visited{
		font-size: .7em;
	}
}
@media(min-width: 1200px){
	section.products .sub-section.product img.product-image{
		width: 33%;
		padding: 1em 2em;
	}
}


/* Portfolio */
section.portfolio{
}
section.portfolio hr{
	margin: 1.65em 0;
}
section.portfolio h3{
	font-size: 1em;
	font-weight: lighter;
	margin-bottom: 1.5em;
}

section.portfolio h4{
	font-size: .8em;
	color: #ffc616;
}
section.portfolio p{
	font-size: .8em;
}

@media(min-width: 768px){
	section.portfolio{
		padding: 2em;
	}
}

@media(min-width: 1200px){
	section.portfolio{
		padding: 2em 4em;
	}
}


/* Contacts */
section.contact{
	background: url('../images/contact_back.gif') center no-repeat;
	background-size: cover;
}
section.contact h2.section-title{
	color: #fff;
}
section.contact .sub-section{
	background: #FFF;
	padding: 1em;
	margin-bottom: 1em;
	transform: scale(1);
	box-shadow: 0 0 0 #655D38;
	transition: all .3s ease-in-out;
}
section.contact .sub-section:hover{
	transform: scale(1.02);
	box-shadow: 0 3px 5px #655D38;
}
section.contact .sub-section h4{
	font-weight: lighter;
	margin-bottom: 1.5em;
}
section.contact .sub-section P{
	font-size: .6em;
	color: #000;
	margin-bottom: 0;
}

section.contact .sub-section P.email a:link,
section.contact .sub-section P.email a:visited{
	color: #ffc616;
}

@media(min-width: 768px){
	section.contact{
		padding: 2em;
	}
}


@media(min-width: 1200px){
	section.contact{
		padding: 2em 4em;
	}
	section.contact .sub-sections{
		margin-top: 16%;
		display: flex;
		justify-content: space-around;
		align-content: center;
	}
	section.contact .sub-section{
		width: 25%;
	}
}


/* footer */
footer{
	background: #3f3f3f;
	color: #999;
	padding: 1px;
	text-align: center;
}
footer p{
	font-size: .9em;
	margin: 1em;
}

footer .legal{ 
	color: #ccc;
}
footer .signature{

}

@media(min-width: 768px){
	footer{
		text-align: left;
	}
	footer .legal{
		display: inline-block;
		width: 45%; 
	}
	footer .signature{
		display: inline-block;
		width: 45%; 
		float: right;
		text-align: right;
	}
}