/*
Author: W3layout
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
*/

/* Menu Novo Mobile*/



.menu {
    display: none; /* Menu escondido por padro */
    list-style-type: none; /* Remove as bolinhas da lista */
    padding: 0;
    margin: 0;
}

.menu.open {
    display: block; /* Mostra o menu quando a classe 'open'  adicionada */
}

.menu li {
    margin: 10px 0; /* Espao entre os itens */
}

.menu a {
    text-decoration: none; /* Remove sublinhados dos links */
    color: #333; /* Define a cor dos links */
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  width: 100%;
}

/* Cabealho (Header) */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff; /* Cor de fundo para o header */
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

/* cone do menu (canto direito) */
.menu-icon {
  display: none;
  font-size: 30px; 
  cursor: pointer;
  padding: 10px;
  background-color: transparent;
  color: #e44500;
  text-align: right;
  z-index: 1001;
  transform: translateY(-15px);
}

/* Exibe o cone apenas em dispositivos mveis */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
}

/* Menu lateral */
.menu {
  position: fixed;
  top: 0;
  left: -100%; /* Inicialmente fora da tela */
  width: 75%;
  height: 100%;
  background-color: #444;
  color: white;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  padding-top: 60px;
}

/* Lista de itens do menu */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  padding: 15px;
  border-bottom: 1px solid #555;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
  font-size: 18px;
}

/* Boto de fechar o menu */
.close-menu {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.close-menu:focus {
  outline: none;
}

/* Menu aberto */
.menu.open {
  left: 0; /* Move o menu para a posio visvel */
}

/* Container Responsivo */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}
/* menu novo mobile*/ 

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}



html, body {
    overflow-x: hidden;
    width: 100%; cont
}


/* Inicio ediçao codigo 19.12.24*/

/* Esconde o contedo por padro */
.social-desktop {
    display: none;
}

/* Exibe o contedo apenas em telas grandes (desktops) */
@media (min-width: 992px) {
    .social-desktop {
        display: block;
    }
}

/* Esconde o menu padrão no mobile e ajusta o layout */
#navMENU {
    display: flex;
    justify-content: center;
    align-items: center;
}

#ulMENU {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

#ulMENU > li {
    margin: 0 15px;
}

/* Atualizacao Rodape*/

.footer-bottom {
  background: black;
  padding: 20px 0;
  position: relative;  /* Garantir que o rodap seja posicionado corretamente */
  z-index: 1;  /* Ajustar o z-index para evitar sobreposio */
}

.footer-bottom .copyright {
  color: #fff;
  text-align: center;
  padding-bottom: 40px; /* Adiciona espao para no ser coberto pela barra fixa */
}

.hidden-md.hidden-lg {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;  /* Garantir que os cones de redes sociais fiquem em cima de outros elementos */
  background-color: #fff;
  padding: 12px;
} 

/* Atualizacao Rodape */

.dropdown-contentMENU {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    z-index: 1;
}

.dropdownMENU:hover .dropdown-contentMENU {
    display: block;
}

/* Estilo para telas menores */
@media (max-width: 768px) {
    .toggleMenu {
        display: block; /* Mostra o botão para abrir o menu */
        cursor: pointer;
        padding: 10px;
        background-color: #007bff;
        color: white;
        border-radius: 5px;
        text-align: center;
        margin: 10px auto;
    }

    #navMENU {
        display: none; /* Esconde o menu por padrão no mobile */
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        padding: 10px 0;
        border: 1px solid #ddd;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    #navMENU.active {
        display: flex; /* Mostra o menu quando ativado */
    }

    #ulMENU {
        flex-direction: column; /* Organiza itens em coluna */
        align-items: center;
    }

    #ulMENU > li {
        margin: 10px 0;
    }
}

/* fim */ 


#navMENU ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#navMENU ul li {
    float: left;
}

#navMENU ul li a, .dropbtnMENU {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 10px 8px; 
    text-decoration: none;
    font-size: 12px;
}

#navMENU ul li a:hover, .dropdownMENU:hover .dropbtnMENU {
    background-color: #111;
	color: white;
}

#navMENU ul li.dropdownMENU {
    position: relative;
    display: inline-block;
}

.dropdown-contentMENU {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 40px;
    z-index: 1;
}

.dropdown-contentMENU a {
    color: black;
    padding: 5px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-contentMENU a:hover {
    background-color: #f1f1f1;
}

.dropdownMENU:hover .dropdown-contentMENU {
    display: block;
}

h4, h5, h6,
h1, h2, h3 {margin-top: 0;}
ul, ol {margin: 0;}
p {margin: 0;}
html, body{
    font-family: 'avenir', sans-serif;
    font-size: 100%;
    background-color: #FFF;
}
body a{
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
.header{
	background:#f0f2f4;
	border-bottom: 1px solid #e6e7e7;
	padding:5px 0;
}
.header_top{
	float:right;
}
ul.header_box{
	list-style:none;
	padding:0;
	float: left;
	margin: 3px 20px 0 0px;
}
ul.header_box li{
	display:inline-block;
}
ul.header_box li span{
	color: #555;
	font-size: 0.85em;
	font-weight: 600;
}
ul.header_box li.mobile_left{
	border-right: 1px solid #E1E1E1;
	padding-right: 15px;
}
i.message{
	cursor:pointer;
}
i.mobile{
	width: 20px;
	height: 25px;
	background: url(../images/img-sprite.png)no-repeat -5px -7px;
	float:left;
	margin-right:5px;
}
i.msg{
	width: 25px;
	height: 25px;
	background: url(../images/img-sprite.png)no-repeat -31px -7px;
	float: left;
	margin: 0 5px 0 10px;
}
ul.facebook{
	list-style:none;
	padding:0;
	float:left;
}
li.fb a span {
	width: 30px;
	height: 30px;
	background: url(../images/img-sprite.png)no-repeat -59px -1px #1287BF;
	float: left;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	-o-border-radius:3px;
}
li.fb a span:hover {
	opacity:0.8;
}
.header_bottom{
	padding:2em 0;
}
.logo{
	float:left;
}
.consul_btn1{
	display:none;
}
.nav_icon{
	display:none;
}
/* start h_menu */
.menu{
	float:right;
	margin-top: 10px;
}
.h_menu4{
	float:left;
	margin-right: 1em;
}
.toggleMenu {
    display:  none;
    padding: 10px 15px;
    width: 100%;
    color:#DE2B24;
}
.nav {
    list-style: none;
     *zoom: 1;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
}
.nav li a {
	display: block;
	padding:9px 6px;
	color: #222;
	font-size: 0.75em;
}
.nav li {
    position: relative;
}
.nav li.active a, .nav li a:hover {
	color:#de2b24;
}
.nav > li {
    float: left;
}
.nav > li > a.parent {
   background: url(../images/elipse.png) no-repeat right top 15px;
}
.nav > li > a:hover{
	color:#DE2B24;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left:0px;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
    -webkit-transition: background .2s linear;
	-moz-transition: background .2s linear;
	-ms-transition: background .2s linear;
	-o-transition:  background .2s linear;
	transition: background .2s linear;
}
.nav li li a {
	font-size: 0.8725em;
	padding: 10px;
	display: block;
	color:#fff;
	background:rgba(73, 93, 137, 0.56);
	position: relative;
	z-index:9999;
	border-top: 1px solid rgba(233, 233, 233, 0.09);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.nav li li li a {
    background:#249578;
    z-index:200;
    border-top: 1px solid #1d7a62;
}
.nav li li a:hover{
	background:#FAA645;
	color:#fff;
	border-bottom:none;
}
.consul_btn{
	float:left;
}
.consul_btn a {
    background: #e44500;
    text-decoration: none;
    padding: 1em 1em;
    display: inline-block;
    color: #FFF;
    font-size: 0.75em;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    border: none;
    cursor: pointer;
    outline: none;
    border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    -moz-border-radius: 0.2em;
    -o-border-radius: 0.2em;
    line-height: 1em;
    font-weight: bold;
}
.consul_btn a:hover{
	background:#CD1A13;
}
/*--slider--*/
/**** Slider *****/
.slider{
	background: url(../images/banner_way_home.jpg) no-repeat center top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center;
	/*--background-size: 100% 100%;--*/
}
.slider_container{
	width:90%;
	margin:0 auto;
}
.banner-wrap {
	width: 80%;
	margin: 0 auto;
}
/**** Slider *****/
.wmuSlider {
	position: relative;
	overflow: hidden;
	padding:10em 0;
}
.wmuSlider.example1 {
	height:580px !important
}
.wmuSlider .wmuSliderWrapper article {
	text-align: center;
}
.wmuSlider .wmuSliderWrapper article img {
	max-width: 100%;
	width: auto;
	height: auto;
	display:block;
}
.slider-left{
	text-align:center;
}
.slider-left h1{
	font-size: 3em;
	color: #FFF;
	font-weight: bold;
	margin-bottom:0;
	line-height: 1.2em;
}
p.top{
	color: #FFF;
	font-size: 2em;
	line-height:1.2em;
	font-weight: 300;
}
ul.button {
	padding: 0;
	width: 100%;
	margin: 0 auto;
	
	margin-top: 3em;
}
ul.button li {
	margin-left: 8px;
	list-style: none;
	display: inline-block;
}
ul.button li a {
	color: #FFF;
	padding: 0.7em 3.2em;
	border: none;
	text-decoration: none;
	font-size: 0.9em;
	
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	-o-border-radius: 1px;
	background: #8f97ac;
}
ul.button li a:hover {
	color:#e44500;
	background:#fff;
}
/*--about--*/
.about{
	padding: 0;
}
.gallery-head h3 {
	font-weight: 600;
	font-size:2.2em;
	margin: 0;
    line-height: 1.5em;
}
.gallery-head span {
	height:5px;
	width:4%;
	background: #424242;
	display: inline-block;
}
.gallery-head p {
	color: black;
	margin:0 auto;
	font-size:1em;
	line-height: 1.4em;
	font-family: 'avenir', sans-serif;
	margin-top: 1em;
    margin-bottom: 1em;	
}
.gallery-head{
	margin-bottom: 10em;
}
i.icon1{
	width: 100px;
	height: 100px;
	background: url(../images/img-sprite.png)no-repeat -95px 1px;
	display: inline-block;
}
i.icon2{
	width: 100px;
	height: 100px;
	background: url(../images/img-sprite.png)no-repeat -199px 1px;
	display: inline-block;
}
i.icon3{
	width: 100px;
	height: 100px;
	background: url(../images/img-sprite.png)no-repeat -95px -91px;
	display: inline-block;
}
.about_grid h3{
	margin:0.5em 0;
}
.about_grid h3 a{
	color: #424242;
	font-size:0.95em;
	text-decoration: none;
	font-weight: 600;
}
.about_grid h3 a:hover{
	color:#DE2B24;
}
.about_grid p{
	color: #424242;
	font-size: 0.85em;
	line-height: 1.5em;
	width: 79%;
	margin: 0 auto;
}
.approach{
	background:#f3f3f3;
	padding:5em 0 2em;
}
ul.list1{
	list-style:none;
	padding:0;
	box-shadow:0 0 5px #aaa;
	-webkit-box-shadow:0 0 5px #aaa;
	-moz-box-shadow:0 0 5px #aaa;
	-o-box-shadow:0 0 5px #aaa;
	position:relative;
	margin-bottom: 3em;
	background: #FFF;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
}
ul.list1 li.list1_img{
	float:left;
	width: 36%;
}
ul.list1 li.list1_desc {
	float: left;
	width: 61%;
	padding: 3em;
	margin-left: 1em;
}
ul.list1 li.list1_desc h3 a{
	color:#424242;
	text-decoration:none;
	font-size:0.85em;
	font-weight:600;
}
ul.list1 li.list1_desc h3 a:hover{
	color:#DE2B24;
}
ul.list1 li.list1_desc p{
	font-size:0.85em;
	color:#1E1E1E;
	line-height:1.8em;
}
ul.list1 p.no{
	position: absolute;
	top: 1.5em;
	background: #DE2B24;
	text-align: center;
	left: 7em;
	font-size: 3em;
	font-weight: bold;
	color: #FFF;
	line-height: 0.4em;
	padding: 0.4em 0.6em;
	border: 2px solid #FFF;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
}
ul.list1 p.no span{
	font-size: 17px;
	font-weight: 600;
}
ul.list2{
	list-style:none;
	padding:0;
	box-shadow:0 0 5px #aaa;
	-webkit-box-shadow:0 0 5px #aaa;
	-moz-box-shadow:0 0 5px #aaa;
	-o-box-shadow:0 0 5px #aaa;
	position:relative;
	margin-bottom:3em;
	background: #FFF;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
}
ul.list2 li.list1_img {
	float: right;
	width: 33.5%;
}
ul.list2 li.list1_desc {
	float: left;
	width: 66%;
	padding: 3em;
	text-align: right;
}
ul.list2 li.list1_desc h3 a{
	color:#424242;
	text-decoration:none;
	font-size:0.85em;
	font-weight:600;
}
ul.list2 li.list1_desc h3 a:hover{
	color:#DE2B24;
}
ul.list2 li.list1_desc p{
	font-size:0.85em;
	color:#1E1E1E;
	line-height:1.8em;
}
ul.list2 p.no {
	position: absolute;
	top: 1.5em;
	background: #DE2B24;
	text-align: center;
	left: 14.8em;
	font-size: 3em;
	font-weight: bold;
	color: #FFF;
	line-height: 0.4em;
	padding: 0.4em 0.6em;
	border: 2px solid #FFF;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
}
ul.list2 p.no span{
	font-size: 17px;
	font-weight: 600;
}
/*--work--*/
.work{
	padding:5em 0;
	background:#de2b24;
}
.work_top {
	margin-bottom: 2em;
}
.work_top h3 {
	color: #fff;
	font-weight: 550;
	font-size: 1.2em;
	margin: 0;
}
.work_top p {
	color: #fff;
	width: 80%;
	margin: 0 auto;
	font-size: 1.2em;
	line-height: 1.8em;
	margin-top: 2.2em;
	margin-bottom: 2.2em;
}
.work_top span {
	height: 5px;
	width: 4%;
	background: #fff;
	display: inline-block;
}
/*	Strip
/*-----------------------------------------------------------------------------------*/
.b-link-stripe{
	position:relative;
	display:inline-block;
	vertical-align:top;
	font-weight: 300;
	overflow:hidden;
}
.b-link-stripe .b-wrapper{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	text-align:center;
	color:#ffffff;
	overflow:hidden;
}
.b-link-stripe .b-line{
	position:absolute;
	top:0;
	bottom:0;
	width:20%;
	background:rgba(75, 202, 255, 0.85);
	transition:all 0.5s linear;
	-moz-transition:all 0.5s linear;
	-ms-transition:all 0.5s linear;
	-o-transition:all 0.5s linear;
	-webkit-transition:all 0.5s linear;
	opacity:0;
	visibility:hidden; /* lt-ie9 */
}
/* lt-ie9 */
.b-link-stripe:hover .b-line{
	visibility:visible;
}
.b-link-stripe .b-line1{
	left:0;
}
.b-link-stripe .b-line2{
	left:20%;
	transition-delay:0.1s !important;
	-moz-transition-delay:0.1s !important;
	-ms-transition-delay:0.1s !important;
	-o-transition-delay:0.1s !important;
	-webkit-transition-delay:0.1s !important;
}
.b-link-stripe .b-line3{
	left:40%;
	transition-delay:0.2s !important;
	-moz-transition-delay:0.2s !important;
	-ms-transition-delay:0.2s !important;
	-o-transition-delay:0.2s !important;
	-webkit-transition-delay:0.2s !important;
}
.b-link-stripe .b-line4{
	left:60%;
	transition-delay:0.3s !important;
	-moz-transition-delay:0.3s !important;
	-ms-transition-delay:0.3s !important;
	-o-transition-delay:0.3s !important;
	-webkit-transition-delay:0.3s !important;
}
.b-link-stripe .b-line5{
	left:80%;
	transition-delay:0.4s !important;
	-moz-transition-delay:0.4s !important;
	-ms-transition-delay:0.4s !important;
	-o-transition-delay:0.4s !important;
	-webkit-transition-delay:0.4s !important;
}
.b-link-stripe:hover .b-line{
	opacity:1;
}
/*-----------------------------------------------------------------------------------*/
/*	Animation effects
/*-----------------------------------------------------------------------------------*/
.b-animate-go{
	text-decoration:none;
}
.b-animate{
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	visibility: hidden;
	font-size:1.1em;
	font-weight:700;
}
.b-animate img{
	margin-top:41%;
	display: -webkit-inline-box;
}
/* lt-ie9 */
.b-animate-go:hover .b-animate{
	visibility:visible;
}
.b-from-left{
	position: relative;
	left: -100%;
	background: rgba(252, 155, 126, 0.78);
	background-size: 100% 100%;
	top: 0px;
	margin: 0;
	min-height:280px;
}
.b-animate-go:hover .b-from-left{
	left:0;
}
/*----start-port-grid-text----*/
.port-grid-text{
	background:#f35e59;
	width: 50%;
	float: left;
	text-align: center;
	min-height:280px;
	position:relative;
}
.port-grid-pic{
	width:50%;
	float:left;
}
.port-grid-text p{
	color: #FFF;
	font-size:em;
	font-weight:600;	
}
.port-grid-text img{
	margin-top:5em;
}
.arrow-icon1{
	height: 23px;
	width: 26px;
	display: block;
	background: url(../images/arrow-icon1.png) no-repeat 0px 0px;
	position: absolute;
	right: -20px;
	z-index: 999;
	top: 45%;
}
.port-grid-text-c{
	background:#A4B7CF;
}
.arrow-icon1-l{
	background: url(../images/arrow-icon1-l.png) no-repeat 0px 0px;
}
.arrow-icon1-r{
	background: url(../images/arrow-icon1-r.png) no-repeat 0px 0px;
	left: -20px;
}	
.b-animate-go {
	text-decoration: none;
}
.col_1_of_4 {
	display: block;
	float: left;
}
.span_1_of_4 {
	width:50%;
}
.port-grid-text h3{
	color:#fff;
	font-size:1.7em;
	font-weight:bold;
	margin: 10px 0 3px;
}
/*--contact-*/
.contact{
	padding:5em 0;
	background:#e44500;
}
.contact-form_grid {
	text-align: center;
	background: #FFF;
	width: 57%;
	margin: 0 auto;
	padding:3em 4em;
}
.contact-form_grid p{
	font-size:0.85em;
	line-height:1.8em;
	color: #424242;
	margin-bottom: 3em;
}
.contact-form_grid input[type="text"] {
	display: block;
	width: 80%;
	padding: 1.2em;
	margin: 0.2em;
	font-size: 0.85em;
	color: #555;
	background: #FFF;
	outline-color:#1287bf;
	border: 1px solid #E4E4E4;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	margin: 1em auto;
}
.contact-form_grid input[type="submit"] {
	background: #DE2B24;
	padding: 0.9em 1.8em;
	display: inline-block;
	color: #FFF;
	font-weight: 600;
	font-size: 1em;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	border: none;
	cursor: pointer;
	outline: none;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	line-height: 1.3em;
	margin-top:1.5em;
	text-align: center;
	text-transform: uppercase;
}
.contact-form_grid input[type="submit"]:hover {
	background: #CE1E17;
}
/*--footer--*/
.footer_top{
	padding:5em 0;
	background:black;
	text-align:center;
} 
.footer_top h3{
	color: #FFF;
	font-weight: 700;
	font-size:2em;
	margin-bottom:0.8em;
}
.social li:first-child {
	margin-left: 0;
}
.social ul{
	padding:0;
}
.social li {
	display: inline-block;
	margin-left:12px;
}
.social li a {
	display: block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.social li a i.facebook {
	background-position:5px -46px;
}
.social li a i {
	width:50px;
	height:50px;
	display: block;
	background: url(../images/img-sprite.png) no-repeat;
	border: 2px solid #515151;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
}
.social li a i:hover {
	border: 2px solid #de2b24;
}
.social li a i.twitter {
	background-position:-34px -46px;
}
.social li a i.google {
	background-position:-1px -87px;
}
.social li a i.linkedin {
	background-position:-36px -85px;
}
.footer_top p{
	text-align: left;
	padding-left: 10px;
	padding-top: 0.5em;

	color:white;
	font-size:15px;
}
.footer_form input[type="text"] {
	display: block;
	width:55%;
	padding: 1.2em;
	font-size: 0.85em;
	color:#C7C0C0;
	background: #515151;
	outline-color:#DE2B24;
	border:none;
	margin:0 auto;
}
.footer_form input[type="submit"] {
	background:none;
	padding: 0.9em 2em;
	display: inline-block;
	color: #FFF;
	font-weight: 600;
	font-size: 1em;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	border:2px solid #515151;
	cursor: pointer;
	outline: none;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	line-height: 1.3em;
	margin-top:2em;
	text-align: center;
}
.footer_form input[type="submit"]:hover {
	background: #DE2B24;
	border:2px solid #DE2B24;
}
.footer-bottom {
	background: black;
	padding: 1em 0;
	text-align:center;
	
    margin-top: -1px;
}
.copy p{
	color:#fff;
	font-size:0.85em;
}
.copy p a{
	color:#DE2B24;
}
#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 13px;
	right: 3%;
	overflow: hidden;
	width: 40px;
	height: 105px;
	border: none;
	text-indent: 100%;
	background: url("../images/top.png") no-repeat 0px 0px;
	border-radius: 30em;
}
#toTopHover {
	width: 40px;
	height: 40px;
	display: block;
	overflow: hidden;
	float: right;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
}
/*--responsive design--*/
@media (max-width:1366px){
}
@media (max-width:1280px){
}
@media (max-width:1024px){
.nav li a{
	padding: 8px 13px;
}
ul.list1 p.no {
	top: 1.3em;
	left: 6em;
	padding:0.3em 0.5em;
}
ul.list2 p.no {
	top: 1.5em;
	left: 12em;
	padding:0.3em 0.5em;
}
.port-grid-text {
	min-height: 231px;
}
.port-grid-text img {
	margin-top: 3em;
}
}
@media (max-width:800px){
.logo img{
	width:55%;
}
.consul_btn a {
	font-size:0.8125em;
	padding:0.6em;
}
.h_menu4 {
	margin-right: 0px;
}
.nav li a {
	padding: 8px 10px;
	font-size: 0.8125em;
}
.menu {
	margin-top: 0;
}
.wmuSlider.example1 {
	height:400px !important;
}
.wmuSlider {
	padding:7em 0;
}
.slider-left h1 {
	font-size: 2.5em;
}
p.top {
	font-size: 1.3em;
}
ul.button li a {
	padding: 0.7em 1.2em;
	font-size: 1em;
}
.gallery-head h3 {
	font-size: 2em;
}
.about_grid {
	margin-bottom: 2em;
}
.about{
	padding:5em 0 3em;
}
ul.list1 li.list1_desc p {
	font-size: 0.8125em;
	line-height: 1.8em;
}
ul.list1 p.no {
	top: 1.2em;
	left: 5.4em;
	padding: 0.3em 0.5em;
	font-size: 2.5em;
}
ul.list1 li.list1_desc h3, ul.list2 li.list1_desc h3{
	margin-top:0.8em;
}
ul.list1 li.list1_desc{
	padding:0;
}
ul.list2 li.list1_desc {
	padding: 0;
}
ul.list2 li.list1_desc p {
	font-size: 0.8125em;
}
.port-grid-text h3 {
	font-size: 1.2em;
}
.port-grid-text {
	min-height: 178px;
}
.work_top h3 {
	font-size: 2em;
}
ul.list2 p.no {
	top: 1.1em;
	left: 11em;
	padding: 0.3em 0.5em;
	font-size: 2.5em;
}
.contact-form_grid {
	padding:2em;
}
.contact-form_grid input[type="text"] {
	width: 90%;
	padding: 1em;
}
.gallery-head p {
	font-size: 1em;
	line-height: 1.8em;
}
}
@media (max-width:640px){
.logo {
	float:left;
}
.menu {
	float:none;
}
.h_menu4 {
	float: none;
}
.nav > li {
	float: none;
}
.consul_btn{
	display:none;
}
.consul_btn1 {
	float: right;
	display: block;
	margin-bottom: 1em;
}
.consul_btn1 a {
	background: #DE2B24;
	text-decoration: none;
	padding: 0.7em 1.5em;
	display: inline-block;
	color: #FFF;
	font-size: 0.85em;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	border: none;
	cursor: pointer;
	outline: none;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.2em;
	-o-border-radius: 0.2em;
	line-height: 1.3em;
	font-weight: bold;
}
.header_bottom {
	padding: 1em 0;
}
.wmuSlider.example1 {
	height:320px !important;
}
.wmuSlider {
	padding: 5em 0;
}
.nav_icon {
	display: block;
	float: right;
	margin: -33px 20px;
}
a.toggleMenu {
	text-decoration: none;
}
.logo img {
	width: 60%;
}
ul.list1 p.no {
	top: 0.9em;
	left: 4.4em;
	padding: 0.3em 0.5em;
}
ul.list2 p.no {
	top: 0.8em;
	left: 8.8em;
	padding: 0.3em 0.5em;
}
.work_top p {
	font-size: 1em;
}
.port-grid-text h3 {
	font-size: 1em;
}
.port-grid-text p {
	font-size: 0.8125em;
}
.port-grid-text {
	min-height: 146px;
}
.port-grid-text img {
	margin-top: 1em;
}
}
@media (max-width:480px){
.slider-left h1 {
	font-size: 2em;
}
p.top {
	font-size: 1em;
}
.wmuSlider.example1 {
	height: 250px !important;
}
ul.button li a {
	padding: 0.7em 1em;
	font-size: 0.85em;
}
ul.button {
	margin-top: 2em;
}
.wmuSlider {
	padding: 4em 0;
}
ul.list1 li.list1_img {
	float: none;
	width: 100%;
	text-align: center;
}
ul.list1 li.list1_desc {
	float: none;
	width: 100%;
	padding: 2em;
	margin-left:0;
}
ul.list2 li.list1_desc {
	float: none;
	width: 100%;
	padding: 2em;
	text-align:center;
}
ul.list2 li.list1_img {
	float: none;
	width: 100%;
	text-align: center;
}
ul.list1 {
	text-align: center;
}
ul.list1 p.no {
	top: 5.2em;
	left: 4em;
	padding: 0.3em 0.5em;
}
.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
	display: -webkit-inline-box;
}
ul.list2 p.no {
	top: 5em;
	left: 4.4em;
	padding: 0.3em 0.5em;
}
.port-grid-text h3 {
	font-size: 0.8125em;
}
.port-grid-text p {
	font-size: 11px;
}
.port-grid-text {
	min-height: 105px;
}
.work_top h3 {
	font-size: 1.5em;
}
.contact-form_grid {
	width: 80%;
}
.about_grid h3 a {
	font-size: 0.8125em;
}
}
@media (max-width:320px){
ul.header_box li span {
	font-size: 12px;
}
.header_top {
	float: none;
	text-align: center;
}
ul.facebook {
   display: none;
}
.logo img {
	width: 80%;
}
.logo {
	float: left;
	width: 56%;
}
.consul_btn1 a {
	padding: 0.5em;
	font-size: 12px;
}
.banner-wrap {
	width: 100%;
}
.slider-left h1 {
	font-size: 1.5em;
}
p.top {
	font-size: 0.85em;
}
.wmuSlider.example1 {
	height: 200px !important;
}
ul.button li a {
	font-size: 12px;
}
.wmuSlider {
	padding: 3em 0;
}
.about {
	padding: 3em 0 1em;
}
.about_grid p, .work_top p, .span_1_of_4, .gallery-head p, .contact-form_grid, .contact-form_grid input[type="text"]{
	width: 100%;
}
ul.list1 p.no {
	top: 3.2em;
	left: 2.5em;
	padding: 0.3em 0.4em;
}
ul.list2 p.no {
	top: 7.5em;
	left: 2.4em;
	padding: 0.3em 0.4em;
}
.approach {
	background: #F3F3F3;
	padding: 3em 0 0em;
}
.gallery-head h3 {
	font-size: 1.6em;
}
.work {
	padding: 3em 0;
}
.col_1_of_4 {
	float: none;
}
.port-grid-text {
	min-height: 134px;
}
.work_top h3 {
	font-size: 1em;
}
.contact {
	padding: 3em 0;
}
.footer_top {
	padding: 3em 0;
}
.footer_form input[type="text"] {
	width: 100%;
}
}