﻿
/* BackToTop button css */

.main-menu h3{
	font-family: 'Roboto';
	font-size:20px;
	color:#fff;
	line-height:20px;
	
}

.menu-expanded_me {
  background-color: transparent;
  position: fixed;
	width: 240px;
  height:700px;
  top: 0px;
  right: 0px;
  overflow: hidden !important;
  z-index: 5;

}

.menusocial,
.linee {
  cursor: pointer;
}

.menusocial {
  float: right;
  margin: 15px 15px 0 0;
  height: 49px;
  width: 49px;
  border-radius: 50%;
  background-color: #ec3b25;
  border: none;
  transition: all 0.40s ease-out;


}

.over {
  transform: scale(100);
  transition: all 0.350s ease-in;
  cursor: default;
}

.linea1 {
  background: #fff;
  height: 2px;
  width: 15px;
  position: absolute;
  right: 33px;
  top: 33px;
  transition: all 0.3s;
}

.linea2 {
  background: #fff;
  height: 2px;
  width: 15px;
  position: absolute;
  right: 33px;
  top: 38px;
  opacity: 1;
  transition: opacity 0.5s;
}

.linea3 {
  background: #fff;
  height: 2px;
  width: 15px;
  position: absolute;
  right: 33px;
  top: 43px;
}

.overL1 {
  animation: closetop 1s forwards;
  animation-direction: alternate;
  cursor: pointer;
}

.overL2 {
  opacity: 0;
  transition: opacity 0.5s;
  cursor: pointer;
}

.overL3 {
  animation: closebottom 1s forwards;
  animation-direction: alternate;
  cursor: pointer;
}

@keyframes closetop {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  25% {
    transform: translateY(5px) rotate(0deg);
  }
  75% {
    transform: translateY(5px) rotate(-45deg);
  }
  100% {
    transform: translateY(5px) rotate(-45deg);
  }
}

@keyframes closebottom {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(45deg);
  }
  100% {
    transform: translateY(-5px) rotate(45deg);
  }
}

.main-menu {
  visibility: hidden;
  position: absolute;
  right: 50px;
  top: 160px;
  opacity: 0;
  transition: all 0.300s;
  transition-delay: 0s;
}

.overmain {
  visibility: visible;
  opacity: 1;
  transition: all 0.400s;
  transition-delay: 0.370s;
}

.main-menu ul {
  list-style-type: none;
}

.main-menu ul li {
  margin: 20px 0px;
}

.main-menu ul li a {
  float: right;
  text-decoration: none;
/*  color: transparent;
*//*  background-color: #DB0024;
*/  margin-top: 20px;
color:#fff;
}

.main-menu ul li a:hover {
  opacity: 0.7;
}




#scroll {
position:fixed;
right:10px;
bottom:10px;
cursor:pointer;
width:50px;
height:50px;
background-color:#7d7d7d;
text-indent:-9999px;
display:none;
-webkit-border-radius:60px;
-moz-border-radius:60px;
border-radius:60px
}
#scroll span {
position:absolute;
top:50%;
left:50%;
margin-left:-8px;
margin-top:-12px;
height:0;
width:0;
border:8px solid transparent;
border-bottom-color:#ffffff
}
#scroll:hover {
background-color:#ec3b25;
opacity:1;filter:"alpha(opacity=100)";
-ms-filter:"alpha(opacity=100)";}

.custom-dropdown--large {
			font-size: 1.5em;
		
		}

		.custom-dropdown--small {
			font-size: .7em;
		}

		.custom-dropdown__select{
			font-size: inherit; /* inherit size from .custom-dropdown */
			padding: .5em; /* add some space*/
			margin: 0; /* remove default margins */
			
		}

		.custom-dropdown__select--white {
			background-color: #fff;
			color: #444;    
		}	
		
		.custom-dropdown__select--emerald {
			background-color: #ec3b25;
			color: #fff;  
			height:40px; 
				font-size:16px;
			  font-family: 'Roboto'; 
		}				

		.custom-dropdown__select--red {
			background-color: #d53a22;
			color: #fff;
		
		}

		@supports (pointer-events: none) and
				  ((-webkit-appearance: none) or
				  (-moz-appearance: none) or
				  (appearance: none)) {

			
			h2+p {
				color: green; /* Demo only */
			}

			.custom-dropdown {
				position: relative;
				display: inline-block;
				vertical-align: middle;
				width: 100%; 
			}

			.custom-dropdown__select {
				padding-right: 2.5em; /* accommodate with the pseudo elements for the dropdown arrow */				
				border: 0;
				border-radius: 3px;
				-webkit-appearance: none;
				-moz-appearance: none;
				appearance: none;   
				width: 100%; 
			}

			.custom-dropdown::before,
			.custom-dropdown::after {
				content: "";
				position: absolute;
				pointer-events: none;
			}

			.custom-dropdown::after { /*  Custom dropdown arrow */
				content: "\25BC";
				height: 1em;
				font-size: .625em;
				line-height: 1;
				right: 1.2em;
				top: 50%; margin-top: -.5em;
			}

			.custom-dropdown::before { /*  Custom dropdown arrow cover */
				width: 2em;
				right: 0; top: 0; bottom: 0;
				border-radius: 0 3px 3px 0;
			}

			.custom-dropdown__select[disabled] {
				color: rgba(0,0,0,.3);
			}

			.custom-dropdown.custom-dropdown--disabled::after {
				color: rgba(0,0,0,.1);
			}

			/* White dropdown style */
			.custom-dropdown--white::before {
				background-color: #fff;
				border-left: 1px solid rgba(0,0,0,.1);
			}

			.custom-dropdown--white::after {
				color: rgba(0,0,0,.9);
			}					

			/* Emerald dropdown style */
			.custom-dropdown--emerald::before {
				background-color: #f69322;
			}

			.custom-dropdown--emerald::after {
				color: rgba(0,0,0,.4);
			}


			/* Red dropdown style */
			.custom-dropdown--red::before {
				background-color: #d53a22;
			}

			.custom-dropdown--red::after {
				color: rgba(0,0,0,.4);
			}

			/* FF only temporary & ugly fixes */
			/* the "appearance: none" applied on select still shows a dropdown arrow on Firefox */
			/* https://bugzilla.mozilla.org/show_bug.cgi?id=649849 
			@-moz-document url-prefix() {
				.custom-dropdown__select 						 { padding-right: .9em }
				.custom-dropdown--large .custom-dropdown__select { padding-right: 1.3em }
				.custom-dropdown--small .custom-dropdown__select { padding-right: .5em }
			}	

		}*/

       
        .custom-dropdown {
            margin-top: 10px;
            margin-bottom: 10px;
            display: inline-block;
        }        

.projects_text p{
	  font-family: 'Roboto';
    font-size:18px;
	text-align:center;
	color:#ec3b25;
	line-height:28px;
	
}

.projects_text h3{
	 font-family: 'Roboto';
    font-size:20px;
	color:#1b1b1b;
	text-align:center;
	
}


 .redtable{
	 padding:0px;
	 margin:0px;
	 background:#030;
 }
.table_projects{
	 width:100%;
 background-color:#d5d5d4;
}
 .table_projects thead th{
	 padding:10px;
	 margin:10px;
 }
 .table_projects td{
 padding:10px;
	 margin:10px;
 }
 
 
 
    .box{
    
        display: none;
        margin-bottom: 20px;
        /*border: 1px solid #000;*/
    }
    .red{  }
    .green{  }
    .blue{  }
	  .egypt{  }
	    .kuwait{  }
		  .qatar{  }
		    .turkey{  }
			  .algeria{  }
			    .finland{  }
				  .greece{  }
				   .kazakhstan{  }
				    .netherlands{  }
					.pakistan{  }
					.thailand{  }
					.usa{  }


.international h2{
    font-family: 'Roboto';
    font-size:20px;
    color: #f69322;

}

.amcharts-export-menu li>a {
    position: relative;
    display: none;
    color: #000;
    text-decoration: none;
    padding: 12px 12px;
    z-index: 2;
    white-space: nowrap;
    border-bottom: 1px solid #f2f2f2;
}

.amcharts-export-menu .export-main>a, .amcharts-export-menu .export-drawing>a, .amcharts-export-menu .export-delayed-capturing>a {
    display:none;
    overflow: hidden;
    text-indent: -13333337px;
    width: 36px;
    height: 36px;
    padding: 0;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.or…ll%3D%22%23888%22%20width%3D%2211%22%20height%3D%222%22%2F%3E%3C%2Fsvg%3E');
    background-color: #fff;
    background-position: center;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.5);
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.5);
    border-radius: 18px;
    margin: 8px 8px 0 10px;
}

#chartdiv {
  width: 100%;
  height: 500px;
}	

.chartdiv a{
	display:none;

}

.form-style-8{
    font-family: 'Open Sans Condensed', arial, sans;
/*    width: 500px;*/
    padding: 30px;
  /*  background: #FFFFFF;*/
   /* margin: 50px auto;*/
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
    -webkit-box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.22);
	margin-bottom:10px;

}
.form-style-8 h2{
    background: #4D4D4D;
    text-transform: uppercase;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #797979;
    font-size: 18px;
    font-weight: 100;
    padding: 20px;
    margin: -30px -30px 30px -30px;
}
.form-style-8 input[type="text"],
.form-style-8 input[type="date"],
.form-style-8 input[type="datetime"],
.form-style-8 input[type="email"],
.form-style-8 input[type="number"],
.form-style-8 input[type="search"],
.form-style-8 input[type="time"],
.form-style-8 input[type="url"],
.form-style-8 input[type="password"],
.form-style-8 textarea,
.form-style-8 select 
{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    display: block;
    width: 100%;
    padding: 7px;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    margin-bottom: 10px;
    font: 16px Arial, Helvetica, sans-serif;
    height: 45px;
}
.form-style-8 textarea{
    resize:none;
    overflow: hidden;
}
.form-style-8 input[type="button"], 
.form-style-8 input[type="submit"]{
    -moz-box-shadow: inset 0px 1px 0px 0px #45D6D6;
    -webkit-box-shadow: inset 0px 1px 0px 0px #45D6D6;
    box-shadow: inset 0px 1px 0px 0px #45D6D6;
    background-color: #ec3b25;
    border: 1px solid #f15a2b;
    display: inline-block;
    cursor: pointer;
    color: #FFFFFF;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 14px;
    padding: 8px 18px;
    text-decoration: none;
    text-transform: uppercase;
}
.form-style-8 input[type="button"]:hover, 
.form-style-8 input[type="submit"]:hover {
    background:linear-gradient(to bottom, #f15a2b 5%, #ec3b25 100%);
    background-color:#f15a2b;
}








.contact-panel-2 {
		background: url(../images/bg-enquire.jpg) no-repeat center;
		/*background:url(../images/bg-enquire.jpg) no-repeat center fixed;
		background-size:cover;*/
		width:100%;
		margin:0 auto;
		padding:0 0;
		height:600px;
		text-align:left;
	}


.contact-col address{
    font-family: 'Roboto';
    font-size:16px;
    color:#1d1d1d;
 text-align: left;
 line-height:22px;
	
}

.contact-col{
	padding:10px;
	
}
.contact-col h3 {
    font-family: 'Roboto';
    font-size:18px;
    color: #000;
    font-weight: 500;
    text-align: left;
    margin: 10px 0 5px 0;
    padding-bottom: 0;
    text-transform: uppercase;
}



.general{
	font-family: 'Roboto';
    font-size:16px;
    color:#f15a2b;
 text-align: left;
 text-transform:uppercase;
}

.general span{
	font-family: 'Roboto';
    font-size:16px;
    color:#282828;
 text-align: left;

 font-weight:400;
}


.login-01{
  width:100%;

}
form {
   padding: 0;
}
form li.first,li.second{
  border:none;
  list-style:none;
  margin-bottom:10px;
  width:100%;
}
.icon,.icon2  {
  height:55px;
  width:55px;
  display: block;
  float: left;
  border-top-left-radius: 0.3em;
  -o-border-top-left-radius: 0.3em;
  -moz-border-top-left-radius: 0.3em;
  -webkit-border-top-left-radius: 0.3em;
  border-border-bottom-left-radius: 0.3em;
  -o-border-bottom-left-radius: 0.3em;
  -moz-border-bottom-left-radius: 0.3em;
  -webkit-border-bottom-left-radius: 0.3em;
}
.user {
    background: url(../images/icons.png) no-repeat 14px 15px #f79d29;
}
.email{
  background:url(../images/icons.png) no-repeat 15px -39px #f79d29;
}
.phone{
  background: url(../images/icons.png) no-repeat 15px -93px #f79d29;
}
.msg{
  background: url(../images/msg.png) no-repeat 16px 16px #f79d29;
}
li.first:hover .user{
     background: url(../images/icons.png) no-repeat 14px 15px #DB2048;
}
li.first:hover .email{
  background:url(../images/icons.png) no-repeat 15px -39px #DB2048;
}
li.first:hover .phone{
  background: url(../images/icons.png) no-repeat 15px -93px #DB2048;
}
li.second:hover .msg {
  background: url(../images/msg.png) no-repeat 16px 16px #DB2048;
}
/*-----*/
input[type="text"],form textarea {
  width: 80%;
  padding: 1.13em 1em 1.13em 1em;
  color: #858282;
  font-size: 16px;
  outline: none;
  background: #fff;
  font-weight: 500;
  border: none;
  font-family:Arial, Helvetica, sans-serif;
  border-top-right-radius: 0.3em;
  -o-border-top-right-radius: 0.3em;
  -moz-border-top-right-radius: 0.3em;
  -webkit-border-top-right-radius: 0.3em;
  border-border-bottom-right-radius: 0.3em;
  -o-border-bottom-right-radius: 0.3em;
  -moz-border-bottom-right-radius: 0.3em;
  -webkit-border-bottom-right-radius: 0.3em;
  }
  .submit{

  }
form textarea {
  resize: none;
  height: 140px;
}
.login-01 input[type="submit"]{
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  cursor: pointer;
  outline: none;
  padding: 10px 10px;
  width: 25%;
  border: 2px solid #F79D29;
  float: left;
  background: #F79D29;
  border-radius: 0.3em;
  -o-border-radius: 0.3em;
  -webkit-border-radius: 0.3em;
  -moz-border-radius: 0.3em;
  margin-left:415px;
}

input[type="submit"]:hover{
background:#090;
border: 2px solid #fff;}
li.lost {
  margin-bottom: 21px;
}
/*---------------*/



.generalemail{
	font-family: 'Roboto';
    font-size:18px;
    color:#1a1a1a;
 text-align: left;


	
}

.contact_mail a{
	font-family: 'Roboto';
    font-size:20px;
    color:#1d1d1d;
 text-align: center;
text-decoration:none;
	
}


.containebody{
	background-color:#030;
	overflow:hidden;
	margin:0;
	padding:0;
	
}


.containerabout{ 
/*<!--    margin-top: 95px;-->*/
padding:0px;
    background:#fff;
	
}

.bottomfb1{width:49px; height:34px;  float:right; background: url(../images/socialf.png) 0 0;  -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;margin-top:20px; }

.bottomfb1:hover{background-position:0 -34px;}

.bottomtw1{width:49px; height:34px;  float:right; background: url(../images/socialt.png) 0 0;  -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;margin-top:20px; }

.bottomtw1:hover{background-position:0 -34px;}

.bottomyt1{width:49px; height:34px; float:right; background: url(../images/socialy.png) 0 0;  -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;margin-top:20px;}

.bottomyt1:hover{background-position:0 -34px;}

.socialright{
	float:right;
width:100%;
}

.fullpagebg{
	background:#fff repeat;
	width:100%;
	height:auto;
	
	
}
.inner-banner {
    width: 100%;
    height: 200px;
    background: url(../images/inner-page-bg.jpg)center center no-repeat;
    background-size: cover;
    position: relative;
    clear: both;
    border-bottom: 1px solid #e4e5e5;


}
.inner-banner h1 {
    font-size: 45px;
    color: #fff;
    font-weight: 400;
    padding-top: 19%;
    text-shadow: 0 1px 2px #ccb4a8;
    text-transform: uppercase;
}





.history_inner h2{
	font-family: 'Open Sans', sans-serif;
	font-size:25px;
	color:#ec3b25;
	text-align:left;
	text-transform:uppercase;
	font-weight:600;
	
}


.history_inner p{
	font-family: sans-serif;
	font-size: 14px;
	color:#000;
	line-height:24px;
	text-align:left;
	
}

.relatedlinks{
	background:#000;
	font-family: 'Open Sans', sans-serif;
	font-size:16px;
	color:#fff;
	margin-top:25px;
	padding:10px;
	font-weight:400;
	text-transform:uppercase;

	
}

.inner_links{
	background:#000;
	padding:10px;
	  box-shadow: 0 15px 10px #cecece;
  transform: rotate(0deg);
}

.side-bar{
	background: #f69322;
    padding: 20px;
    margin-bottom: 30px;
    padding-top: 5px;
	-webkit-box-shadow: 0px 10px 25px -2px rgba(163,161,163,1);
-moz-box-shadow: 0px 10px 25px -2px rgba(163,161,163,1);
box-shadow: 0px 10px 25px -2px rgba(163,161,163,1);


	
	
}







.side-bar ul{list-style: none;padding: 0px;}
.side-bar li{
  margin-bottom:1px;
  position:relative;
  z-index:10;
  transition:300ms ease all;
}

.side-bar li a {
display: block;
position:relative;
width:100%;
padding: 20px 5px;
background: #f69322;
text-decoration:none;
color:white; font-size: 18px;
border-bottom: 1px solid #fff;
box-sizing:border-box;
transition:300ms ease all;
}
.side-bar li:hover a {
width:99%;
margin-left:1%;
box-shadow: inset 300px 0 300px -300px rgba(231, 73, 65, 1);
padding-left: 14px;
}
.side-bar li:before {
content: "";
position: absolute;
width: 50%;
height: 30%;
left: 1%;
bottom: 16px;
box-shadow: 10px 0 0px black;
transition:300ms ease all;
transform: rotate(0deg);
}

.side-bar li:hover:before {
box-shadow: 10px 0 30px black;
transform: rotate(-4deg);
bottom: 6px;
}
.side-bar li:hover + li{
  z-index:1;
}
.side-bar ul li:last-child a{border: 0px;}


.inner_links ul{
	margin:0;
	padding:0;
	list-style-type:none;

}

.inner_links ul li{
font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color:#f69322;
	padding:10px;
	border-bottom:1px dotted #181818;
	background: url(../images/footer-list-arrow.png) no-repeat left center;

}


.groupoperating{
	background:#fff repeat;
	width:100%;
	height:auto;
	
}

.groupoperating h2{
font-family: sans-serif;
	font-size: 22px;
	color:#f15a2b;
    font-weight:bold;
	text-align:center;
	
}

.groupoperating h2:after{
	width: 0%;
	height: 1px;
	display: inline-block;
	vertical-align: middle;
	content:"";
	background:#f5761f;
	margin: 0 1%;
}

.groupoperating h2:before{
	width: 0%;
	height: 1px;
	display: inline-block;
	vertical-align: middle;
	content:"";
	background:#f5761f;
	margin: 0 1%;
}



 .history_inner h1 {
    font-size: 28px;
    text-align: left;
    color: #ec3b25;
    /* margin: 0; */
    /* padding: 0; */
    font-weight: normal;
  
    /* margin: 5px; */
    /* padding: 10px; */
}


.history_inner h1:after{
	width: 0%;
	height: 1px;
	display: inline-block;
	vertical-align: middle;
	content:"";
	background:#f5761f;
	margin: 0 1%;
}


.our_left_side{
	width:100%;
	float:left;
	background:#ffffff;
	margin-top:30px;

	}
.our_left_side:hover{
	box-shadow:0px 0px 23px #ccc;
		}
.our_left_side_left{
	width:60%;
	float:left;
	-webkit-transition: 0.4s ease-in-out;
	   -moz-transition: 0.4s ease-in-out;
	    -ms-transition: 0.4s ease-in-out;
	        transition: 0.4s ease-in-out;
	}
.our_left_side_left h3{
	text-transform:uppercase;
	font-size:16px;
	color:#000000;
	padding:5px 0px 0px 5px;
	font-family: 'Lato', sans-serif;
	}
.our_left_side_left h3 a{color:#000000; text-decoration:none;}
.our_left_side:hover .our_left_side_left h3 a{ color:#ec3b25;}
.our_left_side_left p{
	font-size:12px;
	color:#474646;
	padding: 0px 2px 2px 5px;
	font-family: 'Lato', sans-serif;
	}
.our_readmore {
    background:url(../images/arrow_2_before.png) no-repeat 100%;
    color: #ababab;
    font-family: "Fjalla One",sans-serif;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    text-decoration: none;
	font-weight:500;
	text-transform:uppercase;
	margin-top:10px;
	float:left;
	margin:6px 16px;
	/*width:70px;*/
	-webkit-transition: 0.4s ease-in-out;
	   -moz-transition: 0.4s ease-in-out;
	    -ms-transition: 0.4s ease-in-out;
	        transition: 0.4s ease-in-out;

}
.our_left_side:hover .our_readmore{
	background:url(../images/arrow_2.png) no-repeat 100%;
	color:#ec3b25;
	}
	
.our_left_side_right{
	width:40%;
	float:right;
	background:#e7e8e9;
	height:126px;
	position:relative;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;

	}
.our_left_side:hover .our_left_side_right{
	background:#ec3b25;
	}
.our_left_side_right_img{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/icon_6.png) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_img{
	background:url(../images/icon_6.png) no-repeat center;
	}
	
	
	.our_left_side_right_imgtecon{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/icon_tecon.png) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgtecon{
	background:url(../images/icon_tecon.png) no-repeat center;
	}
	
	
		.our_left_side_right_imgpolaris{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/icon_polaris.png) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgpolaris{
	background:url(../images/icon_polaris.png) no-repeat center;
	}
	
	
			.our_left_side_right_imgspectrum{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/icon_spectrum.png) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgspectrum{
	background:url(../images/icon_spectrum.png) no-repeat center;
	}
	
	
	
				.our_left_side_right_imgmarine{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/marine-algosaibi.PNG) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgmarine{
	background: url(../images/fisheries-al.PNG) no-repeat center;
	}
	
	
	
					.our_left_side_right_imgfish{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background:url(../images/fisheries-al.PNG) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgfish{
	background:url(../images/fisheries-al.PNG) no-repeat center;
	}
	
	
	
						.our_left_side_right_imgfish{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background:url(../images/fisheries-al.PNG) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgfish{
	background:url(../images/fisheries-al.PNG) no-repeat center;
	}



						.our_left_side_right_imgoil{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/oil-algosaibi.PNG) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgoil{
	background:url(../images/oil-algosaibi.PNG) no-repeat center;
	}
	
	
	
							.our_left_side_right_imgste{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/satec-algsb.png) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgste{
	background:url(../images/satec-algsb.png) no-repeat center;
	}




							.our_left_side_right_imgsigma{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/sigma-algosaibi.PNG) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgsigma{
	background:url(../images/sigma-algosaibi.PNG) no-repeat center;
	}



							.our_left_side_right_imgromac{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/romac-algosaibi.PNG) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgromac{
	background:url(../images/romac-algosaibi.PNG) no-repeat center;
	}
	
	
	
	
								.our_left_side_right_imgnrs{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/nrs-algosaibi.PNG) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgnrs{
	background:url(../images/nrs-algosaibi.PNG) no-repeat center;
	}
	
	
									.our_left_side_right_imgfood{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/foodina-al.png) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgfood{
	background:url(../images/foodina-al.png) no-repeat center;
	}
	
	
	
										.our_left_side_right_imgftech{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/ftech.png) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgftech{
	background:url(../images/ftech.png) no-repeat center;
	}
	
	
	
											.our_left_side_right_imgtrdg{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/cat-algosaibi.png) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgtrdg{
	background:url(../images/cat-algosaibi.png) no-repeat center;
	}
	
	
	
	
		
											.our_left_side_right_imgser{
	position:absolute;
	margin:auto;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	max-width:100%;
	background: url(../images/services-algosaibi.png) no-repeat center;
	-webkit-transition: 0.9s ease-in-out;
	   -moz-transition: 0.9s ease-in-out;
	    -ms-transition: 0.9s ease-in-out;
	        transition: 0.9s ease-in-out;
	}
.our_left_side:hover .our_left_side_right_imgser{
	background:url(../images/services-algosaibi.png) no-repeat center;
	}
	
	
.qualitystandards h1{
	
	  font-family: 'Open Sans', sans-serif;
	font-size:22px;
	color:#ec3b25;


	
}	
	

.qualitystandards p{
	
	  font-family: 'Open Sans', sans-serif;
	font-size:14px;
	color:#646464;
	line-height:25px;
	text-align:left;

	
}

.standardul{
background: -moz-linear-gradient(53deg, rgba(0,0,0,1) 0%, rgba(37,40,43,1) 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(0,0,0,1)), color-stop(100%, rgba(37,40,43,1))); /* safari4+,chrome */
background: -webkit-linear-gradient(53deg, rgba(0,0,0,1) 0%, rgba(37,40,43,1) 100%); /* safari5.1+,chrome10+ */
background: -o-linear-gradient(53deg, rgba(0,0,0,1) 0%, rgba(37,40,43,1) 100%); /* opera 11.10+ */
background: -ms-linear-gradient(53deg, rgba(0,0,0,1) 0%, rgba(37,40,43,1) 100%); /* ie10+ */
background: linear-gradient(37deg, rgba(0,0,0,1) 0%, rgba(37,40,43,1) 100%); /* w3c */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#25282B', endColorstr='#000000',GradientType=0 ); /* ie6-9 */
	padding:10px;
	margin:10px 0px 10px 0px;
	color:#fff;
	font-family: 'Open Sans', sans-serif;
	font-size:15px;
	font-weight:700;

	
}

.standardulcntry{
	font-family: 'Open Sans', sans-serif;
	font-size:15px;
	font-weight:700;
	text-align:right;
	padding-right:50px;
	color:#f69322;

	
}


.envrnt h2{
font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	color:#f15a2b;
	font-weight:600;
	text-align:center;
	
}

.envrnt h1{
font-family: 'Open Sans', sans-serif;
	font-size:18px;
	color:#202020;
	font-weight:600;
	text-align:left;

	
}

.envrnt h2:after{
	width: 0%;
	height: 1px;
	display: inline-block;
	vertical-align: middle;
	content:"";
	background:#f5761f;
	margin: 0 1%;
}

.envrnt h2:before{
	width: 0%;
	height: 1px;
	display: inline-block;
	vertical-align: middle;
	content:"";
	background:#f5761f;
	margin: 0 1%;
}


.envrnt p{
font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #646464;
    line-height: 25px;
    text-align: left;
}




.envrnt ul{
	margin:0px;
	padding:0px;
	list-style-type:none;
}

.envrnt ul li{
font-family: 'Open Sans', sans-serif;
	font-size:15px;
	color:#f69322;
	line-height:25px;
	border-bottom:1px dotted #d4d4d4;
	height:30px;
}


.certification{
	background:#ec3b25;
	padding:10px;
	margin-bottom:10px;
}
.certificationtext{
	font-family: 'Open Sans', sans-serif;
	font-size:15px;
	color:#fff;
	text-align:right;
	
	
}

.certificationtextleft{
	font-family: 'Open Sans', sans-serif;
	font-size:15px;
	color:#fff;
	text-align:left;
	
	
}

.firetest{
	background:#000000;
	margin-bottom:10px;
	padding-bottom:20px;
border-radius: 5px; 
-webkit-border-radius: 5px; 
-moz-border-radius: 5px; 
-webkit-box-shadow: 2px 10px 11px 0px rgba(217,214,217,1);
-moz-box-shadow: 2px 10px 11px 0px rgba(217,214,217,1);
box-shadow: 2px 10px 11px 0px rgba(217,214,217,1);
}


.firetext{
	font-family: 'Open Sans', sans-serif;
	font-size:18px;
	color:#f69322;
	padding:0px;
	margin:0px;
	font-weight:600;
	text-align:left;
	border:1px dotted #5f5f5f;

}

.firetest h1{
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    color: #ec3b25;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
	
}


.serviceBox{
    text-align: center;
	background:	#fff;
	margin-bottom:10px;
-webkit-box-shadow: -4px 7px 18px -1px rgba(196,194,196,1);
-moz-box-shadow: -4px 7px 18px -1px rgba(196,194,196,1);
box-shadow: -4px 7px 18px -1px rgba(196,194,196,1);
}
.serviceBox .service-icon1,
.serviceBox .service-icon2,
.serviceBox .service-icon3,
.serviceBox .service-icon4{
    width: 229px;
    height: 229px;
    line-height: 229px;
    display: block;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}
.serviceBox .service-icon1 strong,
.serviceBox .service-icon2 strong,
.serviceBox .service-icon3 strong,
.serviceBox .service-icon4 strong{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 13px;
    border-style: solid;
    border-color: hsl(201, 94%, 74%) hsla(0, 0%, 0%, 0) hsla(0, 0%, 0%, 0) hsl(201, 94%, 74%);
    border-radius: 400px;
    transform: rotate(-45deg);
    transition: all 0.5s ease 0s;
    z-index: 1;
}
.serviceBox .service-icon1:hover strong,
.serviceBox .service-icon2:hover strong,
.serviceBox .service-icon3:hover strong,
.serviceBox .service-icon4:hover strong{
    transform: rotate(315deg);
    transition: all 0.5s ease 0s;
}
.serviceBox .service-icon1 span,
.serviceBox .service-icon2 span,
.serviceBox .service-icon3 span,
.serviceBox .service-icon4 span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 13px;
    border-style: solid;
    border-color: hsl(0, 2%, 90%);
    border-radius: 400px;
    z-index: 0;
}
.serviceBox .icons,
.serviceBox .icons,
.serviceBox .icons,
.serviceBox .icons{
    display: inline-block;
}
.serviceBox .icons i,
.serviceBox .icons i,
.serviceBox .icons i,
.serviceBox .icons i{
    font-size: 70px;
    margin-top: 75px;
    transform: rotateY(0deg);
    transition: all 0.5s ease 0s;
}
.serviceBox .service-icon1:hover .icons i,
.serviceBox .service-icon2:hover .icons i,
.serviceBox .service-icon3:hover .icons i,
.serviceBox .service-icon4:hover .icons i{
    transform: rotateY(360deg);
    transition: all 0.5s ease 0s;
}
.serviceBox .service-content p{
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    color:#2d2d2d;
    line-height: 24px;
    margin:30px 0;
    padding: 0 20px;
}
.serviceBox .read{
    background: hsl(0, 0%, 36%);
    color:#eae6e5;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    line-height: 24px;
    text-transform: capitalize;
    padding: 14px 32px 15px;
    display: inline-block;
    transition: all 0.2s ease 0s;
	width:100%;
}
.serviceBox .read:hover{
    background:#f69322;
    text-decoration: none;
	color:#fff;
}
.serviceBox .service-icon2 span,
.serviceBox .service-icon3 span,
.serviceBox .service-icon4 span{
    border-color: hsl(0, 2%, 90%);
}
.serviceBox .service-icon2 strong{
    border-color: hsla(0, 0%, 0%, 0) hsla(0, 0%, 0%, 0) hsl(0, 97%, 47%) hsl(0, 97%, 47%);
}
.serviceBox .service-icon3 strong{
    border-color: hsl(201, 94%, 74%) hsl(201, 94%, 74%) hsla(0, 0%, 0%, 0) hsla(0, 0%, 0%, 0);
}
.serviceBox .service-icon4 strong{
    border-color: hsla(0, 0%, 0%, 0) hsl(0, 97%, 47%) hsl(0, 97%, 47%) hsla(0, 0%, 0%, 0);
}

.service_image{
	padding:10px;
}

.service-content h3{
font-family: 'Roboto', sans-serif;
    font-size:25px;
    color: #ec3b25;
	
}

.header-wrap {
    position: fixed;
    height: auto;
    top: 0;
    width: 100%;
    z-index: 100;
	background:#000;
}

/*bread crumb menu css starts hereeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
*/

.brid_clr{
	background:#e1e1e0;
	padding:8px;
	
}

.breadcrumb1 li {
    display: inline;
	
}
.breadcrumb1 li+li:before {
    content:"//";

}
	
	
	.breadcrumb1 li a {
    display: inline;

	font-family: 'Lato', sans-serif;
    font-size:16px;
	color:#000;
	margin:5px;
	font-weight:400;
	
}	

	.breadcrumb1 li a:hover{

	color:#f15a2b;
	
}

.breadcrumb1 li.active a{ 
    	color:#f15a2b;
		text-decoration:underline;
}
	

		


/*bread crumb menu css ends here-------------------------------------------------------------------------
*/


.innerpage_clr{
	    padding: 0px;
    background: #f4f4f4;
	
}
#ourservices { background: url(../images/ourservices.jpg) 50% 0 no-repeat fixed; color: white; padding: 60px 0 0 0; background-size: cover; }
.ovaraly { background: url(../images/ovaraly.png); height: 100%; position: relative; float:left; width:100%; }


#ourservices1 { background: url(../images/ourservices1.jpg) 50% 0 no-repeat fixed; color: white; padding: 80px 0 0 0; background-size: cover; }
.ovaraly1 { background: url(../images/ovaraly.png); height: 100%; position: relative; float:left; width:100%; }

.allbanners h2{
	text-align:center;
font-family: 'Lato', sans-serif;
    font-size:60px;
	color:#e1e1e0;
	padding:30px;
	margin:10px;
	
}
.allbanners h2 span{
	text-align:center;
font-family: 'Lato', sans-serif;
    font-size:30px;
	color:#f69322;

}

.avikote2 h2{
text-align:center;
font-family: 'Lato', sans-serif;
    font-size:30px;
	color:#e1e1e0;

	margin-top:140px;
	
}

.avikote2 h3{
text-align:center;
font-family: 'Lato', sans-serif;
    font-size:30px;
	color:#f69322;
margin-bottom:60px;

}

.avikote h2{
text-align:center;
font-family: 'Lato', sans-serif;
    font-size:30px;
	color:#e1e1e0;
    padding:60px;
	margin:60px;
	
}

.avikote h2 span{
text-align:center;
    text-align:-moz-center;
    text-align:-webkit-center;
font-family: 'Lato', sans-serif;
    font-size:30px;
	color:#f69322;
}


/*bread crumb menu css ends here-------------------------------------------------------------------------
*/

.avikote_heading{

	margin-top:20px;
	margin-bottom:30px;
	border:1px dotted #d3d3d3;
	
}


.avikote_heading h1{
	font-family: 'Lato', sans-serif;
    font-size:25px;
	color:#ec3b25;

	
}

.avikote_heading p{
	font-family: 'Lato', sans-serif;
    font-size:16px;
	color:#121111;
	line-height:25px;
	
}


.download_broucher a{
	background-color:#F60;
	padding:10px;
	
	color:#fff;
		font-family: 'Lato', sans-serif;
	
		margin-bottom:30px;
		font-size:16px;
		
}

.download_broucher a:hover{
	background-color:#f69322;

	color:#fff;
		font-family: 'Lato', sans-serif;
		       transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -webkit-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
		font-size:16px;
		text-decoration:none;
}






.product_content h1 {
font-family: 'Lato', sans-serif;
    font-size: 36px;
    color: #f15a2b;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    background: url(../images/our_ser.png) no-repeat bottom center;
    padding-bottom: 20px;
	    border: 0px solid #000;

}


.product_content h2{
font-family: 'Lato', sans-serif;
    font-size: 25px;
    color: #ec3b25;
/*	padding-left:15px;*/
	font-weight:600;
	
}

.highlevel{
	background:#000;


}

.highdensity_text:before{

 content: "";
    display: block;
    background: url(../images/high_icon.png) no-repeat;
    width: 20px;
    height: 20px;
    float: left;
    margin: 5px 6px 5px 10px;
}

.highdensity_text{

 font-family: 'Open Sans', sans-serif;
	font-size:22px;
	color:#fff;
}


.midlevel{
	background:#000;
	

}

.middensity_text:before{

 content: "";
    display: block;
    background: url(../images/medium.png) no-repeat;
    width: 20px;
    height: 20px;
    float: left;
    margin: 5px 6px 5px 10px;
}

.middensity_text{

 font-family: 'Open Sans', sans-serif;
	font-size:22px;
	color:#fff;
}


.lowlevel{
	background:#000;


}

.lowdensity_text:before{

 content: "";
    display: block;
    background: url(../images/low.png) no-repeat;
    width: 20px;
    height: 20px;
    float: left;
    margin: 5px 6px 5px 10px;
}

.lowdensity_text{

 font-family: 'Open Sans', sans-serif;
	font-size:22px;
	color:#fff;
}



.productpanel2 {
	width:100%;
	height:300px;
	top:0;
	text-align:center;
	background: url(../images/banner-main.jpg) top no-repeat fixed #f1e0cd;
}

.productpanel2 h1{
	text-align:center;
	color:#fff;
	font-size:80px;
	line-height:80px;
	padding:170px 0 0 0;
	font-family: 'Roboto';
	font-weight:500;
	text-transform:uppercase;
}

.productpanel2 h1 span{
	font-size:30px;
	text-transform:none;
	color:#d69f3a;
	font-weight:400px;
	line-height:36px;
}






.acdpdg{
	padding:0px;
	margin:0px;
	
}


.footer-wrap {

    height: auto;
    top: 0;
    width: 100%;
    background:#1c1c1c;
	
}


.footertext{
	padding:20px;
	color:#666;
	
}

.footertext h2{
  font-family: 'Open Sans', sans-serif;
	font-size:18px;
	color:#ec3b25;
	
	
}



.inner_table {

    padding: 0px;
	margin-bottom:20px;
   
}

.lft_table {
    padding: 0px;
    margin: 0px;
}
.zui-table-highlight-all{
	width:100%;
    
}

.zui-table-highlight-all thead th {
    position: relative;
}

.zui-table thead th {
    background-color: rgb(246, 147, 34);

    color: rgb(0, 0, 0);
    text-align: left;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 238, 238);
    padding: 10px;
}

.rht_table {
    padding: 0px;
    margin: 0px;

}

.zui-table tbody td {
font-family: 'Open Sans', sans-serif;
    color:#3d3d3d;
	font-size:15px;

    border-width:1px;
    border-style: solid;
    border-color:#f69322;
    padding: 10px;
	width: 32%;
}

.down_table{
	  padding: 0px;

	margin-bottom:20px;
}

.gallery h3{
	font-family: 'Open Sans', sans-serif;
    color:#f15a2b;
	font-size:30px;
	text-align:center;
	padding-left:30px;
	
}

.drpdwn_text{
	font-family: 'Open Sans', sans-serif;
    color:#f15a2b;
	font-size:16px;
	text-align: right;
	padding:20px;
	
}

.pagination_prject ul{
	display:inline-block;
	list-style:none;
		padding:0px;
	margin:0px;
	 margin-bottom:10px;
 overflow:hidden;

}

.pagination_prject li {
	display:inline;
	list-style:none;
		font-family: 'Roboto';
 font-size:22px;
 color:#ec3b25;
 background:#000;
 padding:10px;
}
.pagination_prject li a{
 font-size:22px;
 color:#ec3b25;
}
.pagination_prject li a:hover{
 font-size:22px;
 color:#f69322;
}

.pagination_prject li.active a {
    color: #f69322;
}

/*--------------------------------international page flag------------------------------------------------------
*/
.intrntl{
	background:#ececec;
-webkit-box-shadow: 0px 9px 16px -5px rgba(184,184,184,1);
-moz-box-shadow: 0px 9px 16px -5px rgba(184,184,184,1);
box-shadow: 0px 9px 16px -5px rgba(184,184,184,1);
	
}

.flag_int{
 font-family: 'Roboto';
 font-size:15px;
 color:#1d1d1d;
 text-align: left;
 line-height:22px;
 padding-bottom:20px;
}
.flag_int span{
 font-family: 'Roboto';
 font-size:16px;
 color:#ec3b25;
 font-weight:400;
 
}

.intrntl h3{
	font-family: 'Roboto';
 font-size:20px;
 color:#f15a2b;

 border-bottom:2px dotted #b2b2b2;
 padding-bottom:10px;
	
}

/*product page css ends hereeeeeeeeeeeeeeeeeeeeeeeeeee---------------------------------------------------------------*/
/*-------------------------- footer ------------------------*/

.footercopy{
	background:#0e0e0e;
	width:100%;
	
}

.footercopytext{
	  font-family: 'Open Sans', sans-serif;
	font-size:13px;
	color:#fadfbf;
	padding:10px;
}

.footercopydesign{
	  font-family: 'Open Sans', sans-serif;
	font-size:13px;
	color:#fadfbf;
	padding:10px;
	text-align:right;
}



.midcontact{
	padding-top:50px;
	
}

.footer{background:#000  repeat-x 0 top; padding:48px 0 35px 0;}

.footer h2{ color:#f0f0f0; font-family: 'Roboto Slab', serif; margin-bottom:22px; padding-bottom:12px;}
/*.footer h2.brdr{background: url(../../images/brdrbtm.jpg) no-repeat left bottom; padding-bottom:12px;}*/

.address{ color:#bdbdbd; font-size:13px; background: url(../images/locicon.png) no-repeat 0 0; padding-left:21px;}
.phone{ color:#bdbdbd; font-size:13px; background: url(../images/phoneicon.png) no-repeat left center; padding-left:21px; height:22px; display:inline-block; margin-bottom:3px;}
.email{ color:#bdbdbd; font-size:13px; background: url(../images/email.PNG) no-repeat left center; padding-left:21px;}
.email a{color:#bdbdbd;}

.ftrMnu{ display:block; margin-bottom:5px;}
.ftrMnu ul{ margin:0; padding:0;}
.ftrMnu ul li{ margin:0; padding:0 8px 0; float:left; display:inline; background:url(../images/footersepa.jpg) no-repeat left center;} 
.ftrMnu ul li:first-child{ background:none; padding-left:0;}
.ftrMnu ul li a{ margin:0; padding:0; color:#bdbdbd; font-size:13px; text-decoration: none;} 

.footerbottom{  padding:10px 0;}
.cpyrht{ color:#eeeded; font-size:13px; font-family: 'PT Sans', sans-serif; line-height:24px;}

.socialicn{ text-align:right;}
.socialicn .soclicn img { margin-left:7px; -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg);transform: rotate(0deg);transition: all 0.3s ease-in-out 0s;}
.socialicn .soclicn:hover img{-moz-transform: rotate(360deg); -webkit-transform: rotate(360deg);transform: rotate(360deg);transition: all 0.3s ease-in-out 0s;}




.accordion dl {
}

.accordion dt > a {
  text-align: center;
  font-weight: 400;
  padding: 1em;
  display: block;
  text-decoration: none;
  color: #f69322;
  -webkit-transition: background-color 0.5s ease-in-out;
  font-family: 'Open Sans', sans-serif;
     font-size: 15px;
}
.accordion dd {
  background-color: #000;
  color:#fafafa;
  font-size: 1em;
  line-height: 1.5em;
}
.accordion dd > p {
  padding: 1em 2em 1em 2em;
}

.accordion {
  position: relative;
  background-color: #121213;
}

.containeracd {
  max-width: 100%;
  margin: 0 auto;
  padding: 2em 0 2em 0;
}

.accordionTitle {
  background-color: #121213;
  border-bottom: 1px solid #1f201e;
}
.accordionTitle:before {
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  -moz-transition: -moz-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.accordionTitle:hover {
  background-color: #414242;
}

.accordionTitleActive {
  background-color:#414242;
}
.accordionTitleActive:before {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.accordionItem {
  height: auto;
  overflow: hidden;
}
@media all {
  .accordionItem {
   /* max-height: 50em;*/
    -moz-transition: max-height 1s;
    -o-transition: max-height 1s;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
  }
}
@media screen and (min-width: 48em) {
  .accordionItem {
   /* max-height: 15em;*/
    -moz-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
}

.accordionItemCollapsed {
  max-height: 0;
}

.animateIn {
  -webkit-animation-name: accordionIn;
  -webkit-animation-duration: 0.65s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: normal;
  -moz-animation-duration: 0.65s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionIn;
  animation-duration: 0.65s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.animateOut {
  -webkit-animation-name: accordionOut;
  -webkit-animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: accordionOut;
  -moz-animation-duration: 0.75s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionOut;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes accordionIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes accordionOut {
  0% {
    opacity: 1;
    -moz-transform: scale(1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

/*MEDIA QUERY*/
@media only screen and (max-width : 640px) {
	
.bottomfb1{width:49px; height:34px;  float:right; background: url(../images/socialf.png) 0 0;  -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;margin-top:20px; display:none;}

.bottomfb1:hover{background-position:0 -34px; display:none;}

.bottomtw1{width:49px; height:34px;  float:right; background: url(../images/socialt.png) 0 0;  -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;margin-top:20px; display:none;}

.bottomtw1:hover{background-position:0 -34px; display:none;}

.bottomyt1{width:49px; height:34px; float:right; background: url(../images/socialy.png) 0 0;  -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;margin-top:20px; display:none;}

.bottomyt1:hover{background-position:0 -34px; display:none;}
	
}


/*

-------------------------------------navigation starts here---------------------------------------*/
nav {
  display: block;
/*  background: #E95546;
*/
	 font-family: 'Roboto',sans-serif;
	 margin:2px;
	 float:right;
	 background:#000;

	
}

.menu { display: block;float: right; }

.menu li {
  display: inline-block;
  position: relative;
  z-index: 100;
}

.menu li:first-child { margin-left: 0; }

.menu li a {
  font-weight: 400;
  text-decoration: none;
  padding: 30px 15px 10px 10px;
  display: block;
  color: #fff;
  transition: all 0.2s ease-in-out 0s;
}

.menu li a:hover,
.menu li:hover>a {
  color: #fff;
  background: #f69322;
}

.menu ul {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 170px;
  position: absolute;
  left: 0px;
  background: #fff;
  z-index: 99;
  transform: translate(0, 20px);
  transition: all 0.4s ease-out;

}

.menu ul:after {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}

.menu ul li {
  display: block;
  float: none;
  background: none;
  margin: 0;
  padding: 0;
}

.menu ul li a {
    font-size: 15px;
    font-weight: normal;
    display: block;
    color: #797979;
    background: #000;
    padding: 15px;



}

.menu ul li a:hover,
.menu ul li:hover>a {
  background: #f69322;
  color: #fff;
}

.menu li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.menu ul ul {
  left: 169px;
  top: 0px;
  visibility: hidden;
  opacity: 0;
  transform: translate(20px, 20px);
  transition: all 0.2s ease-out;
}

.menu ul ul:after {
  left: -6px;
  top: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 6px;
  margin-top: -6px;
}

.menu li>ul ul:hover {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.responsive-menu {
  display: none;
  width: 100%;
  padding: 20px 15px;
  background: #E95546;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.responsive-menu:hover {
  background: #E95546;
  color: #fff;
  text-decoration: none;
}

a.homer { background: #f69322; }
 @media (min-width: 768px) and (max-width: 979px) {

.mainWrap { width: 768px; }

.menu ul { top: 37px; }

.menu li a { font-size: 12px; }

a.homer { background: #E95546; }
}
 @media (max-width: 767px) {

.mainWrap {
  width: auto;
  padding: 50px 20px;
}

.menu { display: none; }

.responsive-menu { display: block; background:#000; }

nav {
  margin: 0;
  background:#000;
  width:100%;
  
}

.menu li {
  display: block;
  margin: 0;
 
}

.menu li a {
  background: #fff;
  color: #797979;
}


.menu li a:hover,
.menu li:hover>a {
  background: #f69322;
  color: #fff;
}

.menu ul {
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  transform: initial;
}

.menu li:hover>ul {
  visibility: visible;
  opacity: 1;
  position: relative;
  transform: initial;
}

.menu ul ul {
  left: 0;
  transform: initial;
}

.menu li>ul ul:hover { transform: initial; }
}

