@import url('https://fonts.googleapis.com/css?family=Raleway:300,500,800');

html, body {
	margin:0;
	padding:0;
	min-height:100%;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	line-height: 22px;
	overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
	font-weight:300;
	margin:0;
	font-family: inherit;
	font-size: inherit;
	margin:10px 0;
}

 
p{
   font-size: 1em;
   line-height: 1.35em;
}


h1 {
   font-size: 4em;
   line-height: 1em;
}
 
h2 {
   font-size: 3em;
   line-height: 1em;
}

h3 {
   font-size: 2.5em;
   line-height: 1em;
}

h4 {
   font-size: 2em;
   line-height: 1em;
}


h5 {
   font-size: 1.5em;
   line-height: 1em;
}

h6 {
   font-size: 1em;
   line-height: 1em;
}


a {
	color: #ff9016;
	text-decoration: none;
	transition: 0.8s;
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
}

a:hover {
	color: #ffa700;
}


::-moz-selection { background: #f00; color: #fff; }
::selection { background: #f00; color: #fff; }

.orange-col{color:#ff9016;}
.white-col{color:#fff;}

a.readmore{
	padding: 10px;
	background: rgba(255,144,22,.8);
	color: #fff;
	display: inline-block;
	transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
}

header{
	width: 100%;
	padding-top: 80px;
	position: relative;
	z-index: 500;
}

header::before{
	position: absolute;
	width: 100%;
	height: 30px;
	background: #1a322f;
	top: 50px;
	left: 0;
	content: "";
}

header .logo{
	position: absolute;
	top: 12px;
	left: 50px;
}

header nav ul li{
	display: inline-block;
	position: relative;
}


header nav ul li a{
	padding: 15px;
	display: block;
	color: #1a322f;
	font-weight: 800;
}

header nav ul li a.active{
	color: #ff9016;
	background: #1a322f;
}

header nav ul li .ddm{
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #fff;
	text-align: left;
	display: none;
}

header nav ul li .ddm li{
	display: block;
}

header nav ul li .ddm li a{
	font-weight: 300;
	font-size: .9em;
	padding: 8px 15px;
	border-bottom: 1px solid #eee;
}

.trigger{
	width: 40px;
	height: 40px;
	position: absolute;
	top: 5px;
	right: 10px;
	z-index: 9999;
	display: none;

}

.trigger > div{
	position: relative;
}

.trigger > div > span{
	position: absolute;
	height: 2px;
	width:60%;
	margin:0 20%;
	background: #000;
	top:12px;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;

	transition:.7s;
	-moz-transition:.7s;
	-webkit-transition:.7s;
}

.trigger > div > span:nth-child(2){
	top:19px;
}

.trigger > div > span:nth-child(3){
	top:27px;
}

.trigger > div.close > span:nth-child(1){
	-ms-transform: rotate(45deg); /* IE 9 */
	-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
	transform: rotate(45deg);
	top: 19px;
}

.trigger > div.close > span:nth-child(2){
	display: none;
}

.trigger > div.close > span:nth-child(3){
	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
	transform: rotate(-45deg);
	top: 19px;
}

.trigger, .sitewrapper{
	transition:.7s;
	-moz-transition:.7s;
	-webkit-transition:.7s;
}

.slided{
	-ms-transform: translate(-250px,0); /* IE 9 */
	-webkit-transform: translate(-250px,0); /* Safari */
	transform: translate(-250px,0); /* Standard syntax */
}



.maintitle{
	padding: 50px 0 15px 0 !important;
	margin-bottom: 15px;
	text-align: center;
	color: #1a322f;
}

.maintitle h3{
	display: inline-block;
	padding: 10px;
}

.maintitle h3::after{
	position: absolute;
	top: 100%;
	left: 0;
	width: 2000px;
	height: 5px;
	background: rgba(255,144,22,.45);
	content: "";
}




/* END OF HEADER STYLING FOR WEB*/

#overlay{
  position:fixed;
  z-index:99999;
  top:0;
  left:0;
  bottom:0;
  right:0;
  background:#fe6317;
  transition: 1s 0.4s;
  width: 100%;
  height: 100%;
  font-size: 2em;
}

#overlay > div{
  text-align: center;
  display: table;
  width:100%;
  height: 100%;
}

#overlay > div > div{
  vertical-align: middle;
  display: table-cell;
}

#overlay .linewidth {
    width: 100px;
    margin: 0 auto;
}

#overlay #progstat {
    font-size: 1.8em;
    line-height: 1.4em;
    color: #fff;
    font-weight: 700;
}

#progress {
    height: 1px;
    background: #000;
}

.pat{
	width: 100%;
	height: 70%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); /* IE6-9 */
	z-index: 2;
}

.msg{
	position: absolute;
	width: 100%;
	height: 200px;
	bottom: 100%;
	margin-bottom: -30px;
	left: 0;
}

.homepage .msg{
	margin-bottom: 35px;
}

.msg::after{
	position: absolute;
	width: 100%;
	height: 30px;
	background: #748693;
	top: 57px;
	left: 0;
	z-index: 0;
	content: "";
}

.msg .container{
	position: relative;
	z-index: 1;
	color: #fff;
}

.msg .container h1 span{
	font-weight: 800;
}

.msg .container .listquotes{
	width: 60%;
	font-size: 1.5em;
	line-height: 1.2em;
	padding: 25px 0 0 20px;
}

.msg .container .listquotes b{
	font-weight: 500;
}


.quote{
	padding: 35px 0;
	position: relative;
}

.quote::before,
.quote::after{
	position: absolute;
	font-size: 2em;
	color: #333;
	font-weight: 900;
}

.quote::before{
	content: '\201C';
	left: 0;
    top: 35px;
}

.quote::after{
	content: '\201D';
	bottom: 20px;
	right: 0;
}

.specialitieslist li{
	width: 100%;
	height: 200px;
	position: relative;
	overflow: hidden;
	margin-bottom: 5px;
	background: #000;
}

.specialitieslist li a{
	width: 100%;
	height: 100%;
	display: block;
}

.specialitieslist li a > *{
	position: absolute;
	left: 0;
	top: 50%;
	transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
}

.specialitieslist li a > img{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  opacity: .8;
}

.specialitieslist li a > .overlay{
	width: 100%;
	color: #fff;
	font-size: 2em;
	font-weight: 300;
}

.specialitieslist li a:hover img{
	filter: blur(5px);
	-moz-filter: blur(5px);
	-webkit-filter: blur(5px);
}

.specialitieslist li a:hover .overlay{
	text-shadow: 2px 0 0 #fff;
	-moz-text-shadow: 2px 0 0 #fff;
	-webkit-text-shadow: 2px 0 0 #fff;
	font-size: 2.5em;
}


.specdetails{
	border-top: 10px solid #1a322f;
}

.specdetails .img-bg{
	width: 100%;
	height: 100%;
}

.specdetails > div[class^="w-"]:nth-child(odd){
	border-right: 8px solid #1a322f;
}

.specdetails > div[class^="w-"]:nth-child(even){
	border-left: 8px solid #1a322f;
}

.specdetails > div[class^="w-"]:nth-child(even) .txt-edit{
	border-left: 4px solid #ff9016;
}

.constserv-btn a{
	display: inline-block;
	border-width: 3px;
	border-style: solid;
	margin: 0 5px;
}

.constserv-btn a > div{
	border: 2px solid #fff;
	padding: 15px 25px;
	color: #fff;
	transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
}

.constserv-btn a:nth-child(1){
	border-color: #1a322f;
}
.constserv-btn a:nth-child(1) > div{
	background: #1a322f;
}
.constserv-btn a:nth-child(1):hover > div{
	background: #ff9016;
}
.constserv-btn a:nth-child(1):hover{
	border-color: #ff9016;
}


.constserv-btn a:nth-child(2){
	border-color: #435654;
}
.constserv-btn a:nth-child(2) > div{
	background: #435654;
}
.constserv-btn a:nth-child(2):hover > div{
	background: #ff9016;
}
.constserv-btn a:nth-child(2):hover{
	border-color: #ff9016;
}


.constserv-btn a:nth-child(3){
	border-color: #748693;
}
.constserv-btn a:nth-child(3) > div{
	background: #748693;
}
.constserv-btn a:nth-child(3):hover > div{
	background: #ff9016;
}
.constserv-btn a:nth-child(3):hover{
	border-color: #ff9016;
}



/* PARALLAX SECTION IS HERE */
#prlx{
	background: url(../img/prlx-bg.jpg) 50% 0 no-repeat fixed;
	color: white;
	margin: 0 auto;
	position:relative;
	background-size: cover !important;
	color: #fff;
}

#prlx > div{
	background: rgba(0,0,0,.4);
}

#prlx h1{
	margin: 35px 0;
}

#prlx h5{
	padding: 10px 50px;
	display: inline-block;
	background: rgba(116,134,147,.8);
}

#prlx h5:last-child{
	background: rgba(26,50,47,.8);
}

#prlx .container{
	min-height: 450px;
}


.lpro > div[class^="w-"] > div{
	position: relative; 
}

.lpro .img-bg{
	width: 100%;
	padding: 55% 0; 
}

.lpro .overlay {
	position: absolute;
	width: 95%;
	left: 5%;
	top: 25px;
	padding: 10px 10px 0;
	box-sizing: border-box;
	background: rgba(116,134,175,0);
	transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	color: #fff;
}

.lpro .overlay .title {
	padding: 7px;
	box-sizing: border-box;
	background: rgba(255,144,22,.5);
	position: relative;
}

.lpro .overlay .title::after {
	position: absolute;
	top: 0;
	left: 100%;
	width: 10px;
	height: 100%;
	background: rgba(255,144,22,.5);
	content: "";
}

.lpro .overlay .title h5 {
	font-size: 1.3em;
	margin: 0;
}

.lpro .overlay .txt-edit{
	padding: 10px 10px 10px 0;
	transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	opacity: 0;
	font-size: 14px !important;
    line-height: 17px !important;
}


.lpro a.readmore{
	opacity: 1;
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.lpro a.readmore img{
	width: 24px;
}


.lpro > div[class^="w-"]:hover .overlay{
	background: rgba(116,134,175,.9);
}

.lpro > div[class^="w-"]:hover .overlay .txt-edit,
.lpro > div[class^="w-"]:hover .overlay .readmore{
	opacity: 1;
}

.map iframe{
	width: 100% !important;
	height: 450px !important;
}

.contactdetails{
	padding-top: 20px;
}

.contactdetails > div{
	padding: 0 0 0 35px;
	margin: 8px 0;
}

.contactdetails > div.row:nth-child(1){
	background: url(../img/add.png) top left no-repeat;
}

.contactdetails > div.row:nth-child(2){
	background: url(../img/tel-b.png) left no-repeat;
}

.contactdetails > div.row:nth-child(3){
	background: url(../img/fax-b.png) left no-repeat;
}

.contactdetails > div.row:nth-child(4){
	background: url(../img/msg-b.png) left no-repeat;
}

.contactform .title{
	background: #1a322f;
	color: #fff;
	padding: 10px 15px;
	font-size: 1.2em; 
}

.prjctlist{
	width: 100%;
}

.prjctlist tr:nth-child(odd){
	background: #8f9ea8;
	color: #fff;
}

.prjctlist tr:nth-child(even){
	background: #748693;
	color: #fff;
}

.prjctlist tr.prjct-header{
	background: #ffa849;
	color: #fff;
	font-weight: 900;
}

.prjctlist tr td{
	position: relative;
}

.listclient li{
	padding: 30px;
	color: #fff;
	width: 50%;
	float: left;
	box-sizing: border-box;
	background: #8f9ea8;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.listclient li:nth-child(even){
	border-right: none;
}

.displayfile {
    background: #f59328;
    color: #fff;
}

.salary{
	position: relative;
}

.salary::before{
	position: absolute;
	top: 15px;
	left: 20px;
	content: "USD";
	color: #fff;
}

.salary input.light {
	padding-left: 60px;
}


footer{
	border-top: 8px solid #1a322f;
	background: #89909e;
	color: #fff;
	font-weight: 300;
}

footer h5{
	margin-top: 25px;
}

footer div.address .w-50:first-child{
	border-right: 1px solid #fff;
}

footer div.address > div div.row{
	padding-left: 35px;
	margin: 5px 0;
}

footer div.address .w-50:first-child div.row{
	background: url(../img/ft-add.png) top left no-repeat;
}

footer div.address .w-50:last-child div.row:nth-child(1){
	background: url(../img/tel.png) left no-repeat;
}

footer div.address .w-50:last-child div.row:nth-child(2){
	background: url(../img/fax.png) left no-repeat;
}

footer div.address .w-50:last-child div.row:nth-child(3){
	background: url(../img/msg.png) left no-repeat;
}

footer .pdflist {
	margin-top: 25px;
}

footer .pdflist li {
	margin-bottom: 5px;
}

footer .pdflist li a{
	font-size: .85em;
	color: #fff;
	/*background: rgba(225,144,22,.5);*/
	border-left: 30px solid rgb(225,144,22);
	position: relative;
	padding: 5px;
	box-sizing: border-box;
	width: 100%;
	display: block;
	/*text-align: center;*/
}

footer .pdflist li a::after{
	background: url(../img/pdf.png) center no-repeat;
	position: absolute;
	left: -30px;
	top: 0;
	width: 30px;
	height: 100%;
	content: "";
}



footer .sign{
	font-size: .8em;
	padding: 15px;
	background: #1c1c1c;
}

footer .sign a{
	color: #fff;
}