/*Style.css*/

/*Body*/

body{
	font-family: 'Century Gothic';
	cursor: url(../img/cursor/cursor.png), default;
	color: #000;
}

img{ pointer-events: none;}


/*Wrap*/

.wrap{
	margin-left: auto;	
	margin-right: auto;
}

/*Preloader*/

#page-preloader{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 2000;
}

.n{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2100;
	margin: 20px 0 0 0 ;
	width: 30px;
	height: 30px;
	background: url(../img/preloader/arH.png);
	
}

.l{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10000;
	margin: -50px 0 0 -95px;
	width: 220px;
	height: 130px;
	background: url(../img/preloader/arL.png);

	-webkit-animation: circle 1s infinite forwards;
	   -moz-animation: circle 1s infinite forwards;
		-ms-animation: circle 1s infinite forwards;
			animation: circle 1s infinite forwards;
}

@-webkit-keyframes circle {
	0% {-webkit-transform: rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
	}
	50% {-webkit-transform: rotateY(180deg);
		-webkit-animation-timing-function: ease-out;
	}
	100% {-webkit-transform: rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
	}
}

@-moz-keyframes circle {
	0% {-moz-transform: rotateY(0deg);
	}
	50% {-moz-transform: rotateY(180deg);
		-moz-animation-timing-function: ease-out;
	}
	100% {-moz-transform: rotateY(0deg);
		-moz-animation-timing-function: ease-in;
	}
}

@-ms-keyframes circle {
	0% {-ms-transform: rotateY(0deg);
		-ms-animation-timing-function: ease-in;
	}
	50% {-ms-transform: rotateY(180deg);
		-ms-animation-timing-function: ease-out;
	}
	100% {-ms-transform: rotateY(0deg);
		-ms-animation-timing-function: ease-in;
	}
}

@-o-keyframes circle {
	0% {-o-transform: rotateY(0deg);
		-o-animation-timing-function: ease-in;
	}
	50% {-o-transform: rotateY(180deg);
		-o-animation-timing-function: ease-out;
	}
	100% {-o-transform: rotateY(0deg);
		-o-animation-timing-function: ease-in;
	}
}

@keyframes circle {
	0% {transform: rotateY(0deg);
		animation-timing-function: ease-in;
	}
	50% {transform: rotateY(180deg);
		animation-timing-function: ease-out;
	}
	100% {transform: rotateY(0deg);
		animation-timing-function: ease-in;
	}
}
/*End preloader*/

/*Home(header)*/

/*Header*/

header{
	position: fixed;
	width: 100%;
	height: 50px;
	margin-top: 80px;
	background: #fff;
	opacity: 0.7;
	z-index: 1;
}

@media(max-width: 970px){
	header{
		margin-top: 0px;	
	}
}

/*End header*/

/*Brand*/

.brand{
	margin-left: 80px;
	position: absolute;
	z-index: 1100;
	padding: 5px 0;
	float: right;
}

/*Media brand*/

@media(max-width: 970px){
	.brand{
		margin-left: 30px;	
	}
}

/*End Media brand*/

/*End Brand*/

/*Logo*/

.logo{
	width: 90px;
	height: 50px;
	float: left;
	cursor: pointer;
}

/*End logo*/

/*Name*/

.name{
	margin-left: 95px;
	padding-top: 4px;
}

.name h2{
	font-size: 36px;
	margin-top: 8px;
}

/*End name*/

/*Menu*/

.top-menu{
	background: #fff;
	opacity: 0.7;
	text-align: center;
}

/*End menu*/

/*Slider*/

/*Down*/

.down{
	position: relative;
	width: 50px;
	height: 50px;
	z-index: 1;
	background-color:#99CC33; 
	margin: -50px 0 0 0;
	float: right;
}

.down:hover{
	background: transparent;
}

/*End down*/

/*Content*/

/*About*/

#about{
	width: 70%;
	margin: 0 auto 0 auto;
	padding-top: 300px;
	position: relative;
}

@media (max-width: 970px){
	#about{
		padding-top: 100px;
	}
}

.txt p{
	text-align: justify;
	color: #000;
	font-size: 1.8rem;
	margin-top: 40px;
	line-height: 1.5;
}

@media(max-width: 600px){
	.txt p{
		font-size: 1.5rem;
	}
}

/*End about*/

/*Services*/

#services{
	width: 70%;
	margin:0 auto 0 auto;
	padding-top: 300px;
	position: relative;
}

@media (max-width: 970px){
	#services{
		padding-top: 100px;
	}
}

.box{
	width: 70%;
	height: 70%;
	margin: 0 auto 0 auto;
	position: relative;
}

@media (min-width: 600px) and (max-width: 991px){
	#services .row .col-md-4{
		width: 45%;
		position: relative;
		float: left;
	}
}

.box_img a>img{
	width: 100%;
}

.box_title{
	width: 100%;
	height: 80px;
	text-align: center;
}

.box_title h1{
	font-size: 1.8rem;
}

@media (max-width: 1000px){
	.box_title h1{
		font-size: 1.3rem;
	}
}

/*Modal*/

.modalDialog {
	position: fixed;
	font-family: 'Century Gothic';
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	display: none;
	
}
.modalDialog:target {
	display: block;
	
}

.modalDialog > div {
	width: 500px;
	position: relative;
	margin: 15% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;	
}
@media(max-width: 750px){
	.modalDialog > div{
		width: 300px;
	}
}
.modalDialog > div h1{
	font-size: 1.8rem;
	text-align: center;
}
.modalDialog > div p{
	text-align: justify;
}
.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}
.close:hover { background: #99CC33; }

/*End Modal*/

/*End services*/

/*Projects*/

.projects{
	width: 90%;
	margin: 100px auto 0 auto;
	padding-top: 300px;
	position: relative;
}

@media (max-width: 970px){
	.projects{
		margin-top:0px;
		padding-top: 100px;
	}
}

.galleryItem{
	display: block;
}

/*End projects*/

/*Contact*/

#contact{
	width: 80%;
	padding-top: 300px;
	margin: 0 auto;
	position: relative;
}

@media (max-width: 970px){
	#contact{
		padding-top: 100px;
	}
}

.contact-details{
	font-size: 1.5rem;
}
@media (max-width: 991px){
	.contact-details{
		text-align: center;
		margin-top: 30px;
	}
}

#contact_name , #contact_email{
	width: 100%;
	height: 35px;
	padding: 6px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

#contact_message{
  width: 100%;
	height: 150px;
	padding: 6px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

#contact-submit{
  width: 100px;
	height: 50px;
	text-decoration: none;
	padding: 6px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  vertical-align: middle;
  background-color: #99CC33;
}

#contact-submit:hover{
	color:#fff;
}

@media (max-width: 991px){
	.contact-form{
		margin-top: 30px;
	}
}

/*End Contact*/

/*Social Area*/

#social-area {
	width: 98%;
  text-align: center;
  margin-top: 65px;
}

#social-area #social ul {
	margin: 0;
	padding: 0;
}

#social-area #social ul li {
	display: inline-block;
	margin: 15px 15px;
	list-style: none;
	cursor: pointer;
}

#social ul li a {
	display: block;
	width: 70px;
	height: 70px;

	background: #99CC33;
	
	-webkit-transition: all 400ms ease-out 0s;	
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;
	
	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
			transform: rotateY(180deg);
}

#social ul li a span {
	display: inline-block;
	margin: 0;
	color: #55606a;
	font-size: 32px;
	line-height: 70px;
	
	opacity: 0.3;
	filter: alpha(opacity=30);
	
	-webkit-transition: all 400ms ease-out 0s;	
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;
		  
	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
			transform: rotateY(180deg);
}

#social ul li:hover a,
#social ul li.active a {
	background-color: #99CC33;	
	
	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
		    transform: rotateY(0deg);
}

#social ul li:hover a span,
#social ul li.active a span {
	color: #FFFFFF;
	opacity: 1;
	filter: alpha(opacity=100);
	
	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
			transform: rotateY(0deg);
}

/*End social area*/

/*Footer*/

footer{
	width: 100%;
	height: 100px;
	padding-top: 50px;
  position: relative;
	text-align: center;
}

.credits{
	padding-top: ;
}

footer a{
	color: #99CC33;
}

/*Up*/

.up{
	position: relative;
	width: 50px;
	height: 50px;
	z-index: 1;
	background-color:#99CC33; 
	margin: -30px 0 0 0;
	float: right;
}

/*End up*/

/*End footer*/