/**** reset *****/
	a {
		-webkit-transition: 300ms;
		-moz-transition: 300ms;
		-o-transition: 300ms;
		transition: 300ms;
	}
	h1,h2,h3,h4,h5,h6,p {
		margin: 0px;
	}
	ol,ul {
		margin: 0px;
		padding: 0px;
		list-style: none;
	}
/**** outros *****/
	.vertical-center-box {
		display: table;
	}
	.vertical-center {
		display: table-cell; 
		vertical-align: middle;
		/*necess�rio height*/
	}
/***** main-navigation *****/
	.main-navigation {
		background: #fff;
		margin-bottom: 0px;
		border-bottom: 3px solid #040707;
		min-height: 108px;
	}
		@media (max-width: 1200px) {
			.main-navigation {
				min-height: 50px;
			}
		}
	/***** main-navigation left *****/
		.brand img {
			width: 274px;
		}
		.main-navigation .brand .vertical-center  {
			height: 105px;
		}
			/***** queries *****/
			@media (max-width: 1200px) {
				.brand {
					padding-left: 15px;
				}
				.brand img {
					width: 100px;
				}
				.main-navigation .brand .vertical-center  {
					height: 50px;
				}
			}
	/***** main-navigation right *****/
		.main-navigation span.icon-bar {
			background-color: #ed1c24;
		}
		@media (max-width: 1200px) {
			.navbar-nav {
				text-align: center;
				margin: 0px -15px;
			}
			.navbar-collapse {
			  border-top: none;
			  -webkit-box-shadow: none;
			  box-shadow: none;
			}
		}
		/***** level 1 *****/
			.main-navigation .nav > li > a  {
				font-family: 'open_sansbold';
				font-size: 14px;
				color: #000;
				text-transform: uppercase;
				padding: 43px 22px 42px 22px;
			}
			/***** actions *****/
				.main-navigation .nav > li > a:hover  {
					color: #fff;
					background: #262626;
				}
				.main-navigation .nav > li > a:focus  {
					color: #fff;
					background: #262626;
				}
				.main-navigation .nav > li.active > a {
					color: #040707;
					background: url('img/main-navigation-active.png') center bottom no-repeat;
				}
				.main-navigation .nav > li.active > a:hover {
					color: #040707;
					background: url('img/main-navigation-active.png') center bottom no-repeat;
				}
					/***** queries *****/
						@media (max-width: 1200px) {
							.main-navigation .nav > li > a  {
								padding: 7.5px 15px 7.5px 15px;
							}
							.main-navigation .nav > li > a:hover  {
								color: #040707;
								background: transparent;
							}
							.main-navigation .nav > li > a:focus  {
								color: #040707;
								background: transparent;
							}
								.main-navigation .nav > li.active > a {
									color: #040707;
									background: none;
								}
								.main-navigation .nav > li.active > a:hover {
									background: none;
								}
						}
		/***** level 2 *****/
			/***** dropdown parent item *****/
				.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
					/*color: #fff !important;*/
					background-color: #262626;
				}
				/***** dropdown *****/
					.main-navigation .dropdown .dropdown-menu  {
						padding: 0px 0px;
						-webkit-border-radius: 0px;
						-moz-border-radius: 0px;
						border-radius: 0px;
					    background-color: #fff;
						border: none;
						box-shadow: none;
						min-width: 287px;
						top: 90%;
						left: 50%;
						right: auto;
						transform: translate(-50%, 0%);
					}
					.dropdown-menu:before {
						position: absolute;
						top: -11px;
						left: 50%;
						right: auto;
						transform: translate(-50%, 0%);
						display: inline-block;
						border-right: 12px solid transparent;
						border-bottom: 11px solid #ccc;
						border-left: 12px solid transparent;
						content: '';
					}
					.dropdown-menu:after {
						position: absolute;
						top: -11px;
						left: 50%;
						right: auto;
						transform: translate(-50%, 0%);
						border-right: 12px solid transparent;
						border-bottom: 11px solid #fff;
						border-left: 12px solid transparent;
						content: '';
					}
					/***** dropdown items *****/
						.main-navigation .dropdown .dropdown-menu > li > a {
							font-family: 'open_sanslight';
							font-size: 14px;
							color: #040707;
							text-transform: uppercase;
							padding: 20px 30px 20px 30px;
							border-bottom: 1px solid #e6e6e6;
						}
						.main-navigation .dropdown .dropdown-menu > li:last-of-type > a {
							border-bottom: none;
						}
						/***** actions *****/
							.main-navigation .dropdown .dropdown-menu > li:hover > a {
								color: #fff;
								background-color: #555;
							}
							.main-navigation .dropdown .dropdown-menu > li:first-of-type > a {
								-webkit-border-top-left-radius: 0px;
								-webkit-border-top-right-radius: 0px;
								-moz-border-radius-topleft: 0px;
								-moz-border-radius-topright: 0px;
								border-top-left-radius: 0px;
								border-top-right-radius: 0px;
							}
							.main-navigation .dropdown .dropdown-menu > li:last-of-type > a {
								-webkit-border-bottom-right-radius: 0px;
								-webkit-border-bottom-left-radius: 0px;
								-moz-border-radius-bottomright: 0px;
								-moz-border-radius-bottomleft: 0px;
								border-bottom-right-radius: 0px;
								border-bottom-left-radius: 0px;
							}
							/***** queries *****/
								@media (max-width: 1200px) {
									.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
										background-color: #262626 !important;
									}
										.main-navigation .dropdown .dropdown-menu  {
											background-color: #555 !important;
											text-align: center;
											border-radius: 0px;
											left: auto;
											right: 0px;
											transform: translate(0%, 0%);
										}
										.dropdown-menu:before {
											border-bottom: 11px solid transparent;
										}
										.dropdown-menu:after {
											border-bottom: 11px solid transparent;
										}
											.main-navigation .dropdown .dropdown-menu > li > a {
												color: #fff;
												text-transform: uppercase;
												padding: 10px 15px 10px 15px;
												border-bottom: none;
											}
												.main-navigation .dropdown .dropdown-menu > li:hover > a {
													color: #fff;
													background-color: transparent;
												}
								}
		/***** level 3 *****/
			/***** level 3 parent item *****/
				.main-navigation .dropdown .dropdown-menu > li.level-3.active > a {
					color: #fff;
					background-color: #262626;
					border-bottom: none;
					-webkit-border-bottom-right-radius: 0px;
					-webkit-border-bottom-left-radius: 0px;
					-moz-border-radius-bottomright: 0px;
					-moz-border-radius-bottomleft: 0px;
					border-bottom-right-radius: 0px;
					border-bottom-left-radius: 0px;
				}
				/***** level 3 well *****/
					.main-navigation .dropdown .dropdown-menu .well {
						min-height: 0px;
						padding: 0px;
						margin-bottom: 0px;
						background-color: #efefef;
						border: none;
						border-radius: 0px;
						-webkit-box-shadow: none;
						box-shadow: none;
					}
					/***** level 3 items *****/
						.main-navigation .dropdown .dropdown-menu .well > li {
							padding: 8px 30px 8px 30px;
						}
						.main-navigation .dropdown .dropdown-menu .well > li:first-child {
							padding: 16px 30px 8px 30px;
						}
						.main-navigation .dropdown .dropdown-menu .well > li:last-child {
							padding: 8px 30px 16px 30px;
						}
						.main-navigation .dropdown .dropdown-menu .well > li > a {
							font-family: 'open_sanslight';
							font-size: 14px;
							color: #7a7a7a;
							text-transform: uppercase;
						}
							/***** actions *****/
								.main-navigation .dropdown .dropdown-menu .well > li:hover {
									color: #7a7a7a;
									background-color: transparent; 
								}
								.main-navigation .dropdown .dropdown-menu .well > li:hover > a {
									color: #7a7a7a;
									text-decoration: none;
								}
								/***** queries *****/
									@media (max-width: 1200px) {
										.main-navigation .dropdown .dropdown-menu > li.level-3.active > a {
											color: #fff;
											background-color: transparent;
										}
											.main-navigation .dropdown .dropdown-menu .well {
												background-color: #efefef;
											}
												.main-navigation .dropdown .dropdown-menu .well > li {
													padding: 10px 15px 10px 15px;
												}
												.main-navigation .dropdown .dropdown-menu .well > li:first-child {
													padding: 10px 15px 10px 15px;
												}
												.main-navigation .dropdown .dropdown-menu .well > li:last-child {
													padding: 10px 15px 10px 15px;
												}
												.main-navigation .dropdown .dropdown-menu .well > li > a {
													#464646
												}
													.main-navigation .dropdown .dropdown-menu .well > li:hover {
														color: #7a7a7a;
														background-color: transparent; 
													}
													.main-navigation .dropdown .dropdown-menu .well > li:hover > a {
														color: #7a7a7a;
														text-decoration: none;
													}
									}
	/***** navbar breakpoint in a custom querie *****/
		@media (max-width: 1200px) {
			.navbar-header {
				float: none !important;
			}
			.navbar-left,
			.navbar-right {
				float: none !important;
			}
			.navbar-toggle {
				display: block !important;
			}
			.navbar-collapse.collapsing {
				overflow-x: hidden;
			}
			.navbar-collapse.collapse {
				display: none !important;
			}
			.navbar-nav {
				float: none !important;
			}
			.navbar-nav > li {
				float: none !important;
			}
			.collapse.in {
				display: block !important;
			}
			.navbar-collapse.in {
				overflow-y: overlay !important;
				overflow-x: hidden !important;
			}
			/***** submenu collapsed in a custom resolution *****/
				.main-navigation .navbar-nav .open .dropdown-menu {
					position: static;
					float: none;
					width: auto;
					margin-top: 0;
					background-color: transparent;
					border: 0;
					-webkit-box-shadow: none;
					box-shadow: none;
				}
		}
/***** index *****/
	/***** slider *****/	
		.slider {
			margin-top: 108px;
		}
            .slider .vertical-center-box {
                margin-left: auto;
                margin-right: auto;
                position: absolute;
                top: 43%;
                width:100%;
            }
		/*.slider .carousel-inner .vertical-center {
			height: 559px;
		}*/
		.slider .main-header-box {
			margin-bottom: 74px;
		}
		.slider .carousel-caption {
			text-shadow: none;
			position: inherit;
		}
            .slider h1 {
                font-family: 'open_sansextrabold';
                font-size: 2.6rem;
                color: #fff;
                text-align: center;
                text-transform: uppercase;
                line-height: 45px;
                margin-bottom: 15px;
            }
            .slider h2 {
                font-family: 'open_sanslight';
                font-size: 2rem;
                color: #fff;
                text-align: center;
                text-transform: uppercase;
            }
		/***** queries *****/	
			@media (max-width:1200px){
				.slider {
					margin-top: 50px;
				}
                    .slider h1 {
                        text-align: center;
                        font-size: 16px;
                        line-height: initial;
                    }
                    .slider h2 {
                        text-align: center;
                        font-size: 14px;
                        line-height: initial;
                    }
			}
			@media (max-width:528px){
				.slider h1 {
					font-size: 16px;
				}
                .slider h2 {
                    font-size: 14px;
                }
                .slider .vertical-center-box{
                    position:relative;
                    background:#000;
                    display:none
                }
                .carousel-caption{
                    left:0px
                }
			}
@media (min-width: 768px){
    .slider .container {
        width: 100%;
    }
} 

	/***** slider controls *****/	
		.slider .carousel-control.left {
			background: url('img/index-slider-left.png') center center no-repeat !important
		}
		.slider .carousel-control.right {
			background: url('img/index-slider-right.png') center center no-repeat !important
		}
		.slider .carousel-indicators-pos {
			position: relative;
		}
		.slider .carousel-indicators {
			z-index: 15;
			padding-left: 0;
			text-align: right;
			list-style: none;
			position: absolute;
			margin-left: 0;
			width: 100%;
			bottom: 117px;
			right: 0;
			left: 0;
			cursor: pointer;
		}
		.slider .carousel-indicators li {
			display: inline-block;
			width: 0px;
			height: 0px;
			margin: 0;
			background-color: #fff;
			border: none;
			border-radius: 20px;
			-webkit-box-shadow: none;
			-moz-box-shadow:    none;
			box-shadow:         none;
		}
		.slider .carousel-indicators .active {
			width: 0px;
			height: 0px;
			margin: 0;
			border: none;
			background-color: #120079;
			-webkit-box-shadow: none;
			-moz-box-shadow:    none;
			box-shadow:         none;
		}
		/***** queries *****/	
			@media (max-width:528px){
				.slider .carousel-indicators {
					right: 45%;
				}
			}
	/***** services *****/
		.services-box a:hover {
			text-decoration: none !important;
		}
		.services .container {
			-webkit-box-shadow: 1px 1px 42px 0px rgba(50, 50, 50, 0.75);
			-moz-box-shadow:    1px 1px 42px 0px rgba(50, 50, 50, 0.75);
			box-shadow:         1px 1px 42px 0px rgba(50, 50, 50, 0.75);
		}
		.services-box .box {
			text-align: center;
			background: #fff;
			padding: 0px 30px;
			margin-top: -30px;
			position: relative;
			height: 600px;
			border-right: 1px solid #000;
		}
        .services-box.second .box {
			text-align: center;
			background: #fff /*url('img/chamada-bkg.png') -24px 1px no-repeat*/;
			padding: 0px 30px;
			margin-top: -30px;
			position: relative;
			height: 600px;
			border-right: none;
		}    
		.services-box.last .box{
			background: #3a3a3a;
			margin-top: -51px;
			height: 642px;
            border-right: none;
		}
		.services-box .box.vertical-center-box {
			margin-left: auto;
			margin-right: auto;
		}
		.services-box .box .vertical-center {
			height: 600px;
		}
		.services-box.last .box .vertical-center {
			height: 642px;
		}
		#servicos {
			width: 93px;
			height: 102px;
			background: url('img/1.png') center bottom no-repeat;
		}
		#produtos {
			    width: 112px;
			height: 103px;
			background: url('img/2.png') center bottom no-repeat;
		}
		#consulta {
			width: 117px;
			height: 106px;
			background: url('img/3.png') center bottom no-repeat;
		}
		.services-box h2 {
			font-family: 'open_sansbold';
			font-size: 30px;
			color: #000;
			text-transform: uppercase;
			padding-top: 32px;
			padding-bottom: 18px;
			margin-bottom: 20px;
			background: url('img/bottom.png') center bottom no-repeat;
		}
		.services-box.last h2 {
			background: none;
		}
		.services-box p {
			font-family: 'open_sanslight';
			font-size: 18px;
			color: #000;
			text-transform: none;
			padding-top: 12px;
			padding-bottom: 28px;
			max-width: 300px;
		}
		.services-box.last .col-lg-4:hover {
		    background: #3a3a3a;
		}
		.saiba-mais-home,
		.saiba-mais-home:hover,
		.saiba-mais-home:focus{
			font-family: 'open_sansbold';
			font-size: 18px;
			color: #fff;
			text-transform: uppercase;
			background-color: #000;
			border-radius: 0px;
			padding: 10px 12px;
			max-width: 300px;
			width: 100%;
		}
			/***** queries *****/
				@media (max-width:992px){
                    .services .col-md-8 {
                        -webkit-box-shadow: 0px 17px 18px 0px rgba(50, 50, 50, 0.75);
						-moz-box-shadow:    0px 17px 18px 0px rgba(50, 50, 50, 0.75);
						box-shadow:        0px 17px 18px 0px rgba(50, 50, 50, 0.75);
                    }
					.services .container {
						-webkit-box-shadow: none;
						-moz-box-shadow:    none;
						box-shadow:         none;
					}
					.services-box .box {
						margin-bottom: 30px;
						height: auto;
						max-width: 100%;
						margin: 0 auto;
						border-right: 1px solid #000;
					}
                    .services-box.second .box {
						max-width: 500px;
                        border-right:none;
                         height: 475px;
		            }  
					.services-box .box .vertical-center {
						height: 475px;
					}
                    .services-box.second .box .vertical-center  {
			            height: 475px;
		            }    
					.services-box.last .box .vertical-center {
						height: auto;
                       padding: 30px 0px;
					}
					.services-box .box:hover {
					}
					#armazenagem-box:hover #armazenagem {
						background: url('img/1.png') center bottom no-repeat;
					}
					#movimentacao-box:hover #movimentacao {
						background: url('img/2.png') center bottom no-repeat;
					}
					#transporte-box:hover #transporte {
						background: url('img/3.png') center bottom no-repeat;
					}
					#tecnologia-box:hover #tecnologia {
						background: url('img/4.png') center bottom no-repeat;
					}
					.services-box.last .box {
					    margin-top: 0px;
						height: auto;
                         border-right:none;
					}
				}
				@media (max-width:768px){
                    .services-box .box {
						border-right: none;
                        border-bottom: 1px solid #000;
					}
                     .services-box.second .box {
			            border-bottom: none;
		            }    
					.services-box.last .box {
						border-bottom: none;
					}
				}
				.services-box.last h2 {
					font-family: 'open_sansbold';
					font-size: 30px;
					color: #fff;
					text-transform: uppercase;
					padding-top: 32px;
					margin-bottom: 0px;
				}
				.services-box.last p{
					color: #fff;
				}
				.services-box.last a,
				.services-box.last a:focus,
				.services-box.last a:hover {
					color: #fff;
				}
				.radio-box {
					font-family: 'open_sansbold';
					font-size: 10.51px;
					color: #fff;
					text-align: left;
					text-transform: uppercase;
				}
				.radio-box .radio-inline input[type=radio] {
					position: relative;
					bottom: -3px;
				}
				.consultar-btn-pos {
					text-align: right;
				}
				
				.saiba-mais-home:hover,
				.saiba-mais-home:focus{
					font-family: 'open_sansbold';
					font-size: 18px;
					color: #fff;
					text-transform: uppercase;
					background-color: #e21b23;
					padding: 10px 12px;
				}
                .consultar-btn {
                    font-family: 'open_sansbold';
					font-size: 10.51px;
					color: #fff;
					text-transform: uppercase;
					background-color: #e21b23;
					padding: 10px 44px;
                }
                .consultar-btn:hover,
                .consultar-btn:focus {
                    color: #000;
					background-color: #fff;
                }
				.endereco .header {
					font-family: 'open_sansbold';
					font-size: 14px;
					color: #fff;
					text-transform: uppercase;
					margin: 0px;
				}
				.endereco .content {
					font-family: 'open_sanslight';
					font-size: 14px;
					color: #fff;
					text-transform: uppercase;
					margin: 0px;
				}
				.social li {
					display: inline-block;
				}
				.social li.axys {
					float: right;
				}
/***** footer *****/
	.footer-superior {
		background: #1c1c1c;
		padding-top: 90px;
		padding-bottom: 61px;
		margin-top: -21px;
	}
	footer ul li {
		margin-bottom: 16px;
	}
	footer ul li a {
		font-family: 'open_sanslight';
		font-size: 14px;
		color: #fff;
		text-transform: uppercase;
	}
    footer ul li a:hover,
    footer ul li a:focus {
		color: #fff;
        text-decoration: underline !important;
	}
	footer ul .header a {
		font-family: 'open_sansbold';
		font-size: 14px;
		color: #fff;
		text-transform: uppercase;	
	}
	.footer-inferior {
        margin-top: -21px;
		background: #000;
		padding-top: 90px;
		padding-bottom: 61px;
	}
	/***** actions *****/
		footer ul li a:hover {
			color: #fff;
			text-decoration: none;
		}
		footer a.header.active {
			
		}
		footer a:hover.header.active {
			
		}
		footer a.active {
			
		}
		footer a:hover.active {
			
		}
		/***** queries *****/
            @media (max-width:992px){
				footer {
					text-align: center;
				}
                .footer-logo {
                    margin: 0 auto 15px auto;
                }
                .social {
                    margin-top: 15px;
                }
                .social li.axys {
                    float: none;
                }
                .footer-superior {
		            margin-top: 0px;
	            }
                .services-box.last .vertical-center-box {
                    margin: 0 auto;
                }
                .services-box .vertical-center-box {
                    margin: 0 auto;
                }
                .services-box.second .box {
                    margin-top: 0px;
                }
			}
			@media (max-width:768px){
				footer ul li {
					text-align: center;
				}
			}
	
/***** content *****/
	.content {
		margin-top: 105px;
		margin-bottom: 97px; /*-15px*/
	}
	.content .header-box {
		margin-top: 74px;
		margin-bottom: 27px;
	}
	.content .header-box h1 {
		font-family: 'open_sansextrabold';
		font-size: 48px;
		color: #ed1c24;
		text-transform: uppercase;
		padding-bottom: 17px;
	}
	.content .header-box h2 {
		font-family: 'open_sansbold';
		font-size: 27px;
		color: #262626;
		text-transform: uppercase;
		padding-bottom: 26px;
	}
	.content .header-box h3 {
		font-family: 'open_sansbold';
		font-size: 18px;
		color: #757575;
		text-transform: uppercase;
	}
	.content h4 {
		font-family: 'open_sansextrabold';
		font-size: 24px;
		color: #1c1c1c;
		text-transform: uppercase;
		padding: 14px 0px 14px 65px;
		margin-bottom: 25px;
	}
	.content p {
		font-family: 'open_sanslight';
		font-size: 18px;
		color: #949494;
		line-height: 27px;
		padding-top: 16px;
		padding-bottom: 16px;
	}
	.content strong {
		font-family: 'open_sansbold';
		font-size: 18px;
		color: #949494;
	}
	.content em {

	}
	.content a,
	.content a:hover,
	.content a:focus {
		font-family: 'open_sanslight';
		font-size: 18px;
		color: #40a5dd;
		text-decoration: underline;
	}
	.content ul {
		font-family: 'open_sansbold';
		font-size: 18px;
		color: #262626;
		list-style: initial;
		padding-left: 40px;
		padding-top: 16px;
		padding-bottom: 16px;
	}
	.content ol {
		font-family: 'open_sansbold';
		font-size: 18px;
		color: #262626;
		list-style: decimal;
		padding-left: 40px;
		padding-top: 16px;
		padding-bottom: 16px;
	}
	/***** tabela *****/
		.content .table-responsive {
			border: 2px solid #fff;
			padding-top: 16px;
			padding-bottom: 16px;
			margin-bottom: 0px;
		}
		.content .table {
			border: 2px solid #fff;
			margin-bottom: 0px;
		}
		.content table th {
			font-family: 'open_sansbold';
			font-size: 14px;
			color: #fff;
			background-color: #262626;
			border: 2px solid #fff;
			padding: 16px 26px 16px 26px !important;
			font-weight: normal;
		}
		.content table td {
			font-family: 'open_sanslight';
			font-size: 14px;
			color: #949494;
			border: 2px solid #fff;
			padding: 16px 26px 16px 26px !important;
		}
		.content table tr:nth-of-type(even) {
			background-color: #fde2e3;
		}
		.content table tr:nth-of-type(odd) {
			background-color: #fff;
		}
	/***** tabela com legendas *****/
		.content .image-table {
			padding-top: 16px;
			padding-bottom: 16px;
		}
		.content .image-table tr:nth-of-type(odd) {
			background-color: #fff !important;
		}
		.content .image-table tr:nth-of-type(even) {
			background-color: #fff !important;
		}
		.content .table-no-pad {
			padding: 0px !important;
		}
		.content .table-label {
			font-size: 14px;
			text-align: center;
		}
	/***** content side-menu *****/
        .slider a,
        .slider a:hover,
        .slider a:focus {
            text-decoration: none !important;
        }
		.content .side-menu {
			margin-top: 189px;
		}
		.content .side-menu h5 {
			
		}
		/***** content side-menu items *****/
			.content .side-menu ul {
				padding: 0px 0px 0px 0px;
				list-style: none;
			}
			.content .side-menu > ul > li {
				margin-top: 24px;
			}
			.content .side-menu > ul > li:first-child {
				margin-top: 0px;
			}
			.content .side-menu > ul > li > a {
				font-family: 'open_sanssemibold';
				font-size: 18px;
				color: #262626;
				text-transform: uppercase;
				text-decoration: none;
			}
			/***** actions *****/
				.content .side-menu > ul > li > a:hover {
					text-decoration: underline;
				}
				.content .side-menu > ul > li > a:focus {
					text-decoration: none;
				}
                .content .side-menu .level-2.active a {
                    color:#ed1c24;
                }
				/***** queries *****/
					@media (max-width: 1200px) {
						.content {
							margin-top: 50px;
						}
					}
			/***** level 3 *****/
			/***** level 3 parent item *****/
				.content .side-menu > ul > li.level-3.active > a {
					color: #a2a2a2;
					text-decoration: none;
				}
				/***** level 3 well *****/
					.content .side-menu .well {
						min-height: 0px;
						padding: 0px;
						margin-bottom: 0px;
						background-color: #fff;
						border: none;
						border-radius: 0px;
						-webkit-box-shadow: none;
						box-shadow: none;
					}
					/***** level 3 items *****/
						.content .side-menu .well > li {
							padding: 22px 21px 0px 21px;
						}
						.content .side-menu .well > li > a {
							font-family: 'open_sanslight';
							font-size: 14px;
							color: #878787;
							text-transform: uppercase;
							text-decoration: none;
						}
						/***** actions *****/
							.content .side-menu .well > li:hover > a {
								color: #ed1c24;
								text-decoration: none;
							}
							.content .side-menu .well > li.active > a {
								color: #ed1c24;
								text-decoration: none;
							}
							/***** queries *****/
								@media (max-width: 992px) {
									.content .side-menu {
										text-align: center;
										margin-top: 50px;
									}
								}
	/***** image gallery *****/
		.image-gallery-container h4 {
			background: url('img/imagem.png')no-repeat left center;
		}
		.image-gallery-container {
			margin-top: 25px;
		}
		.pswp__caption__center {
			text-align: center;
		}
		.image-gallery.owl-carousel figcaption {
			display: none !important;
		}
		.owl-nav {
			text-align: center;
		}
		.owl-theme .owl-controls .owl-nav [class*=owl-] {
			text-align: center;
			margin: 15px 15px 0px 15px;
			display: inline-block;
			width: 17px;
			height: 27px;
			cursor: pointer;
		}
		.owl-theme .owl-controls .owl-nav [class*=owl-next]{
			 background: url('img/right.png')no-repeat center center !important;
			 color: transparent !important;
		}
		.owl-theme .owl-controls .owl-nav [class*=owl-prev]{
			 background: url('img/left.png')no-repeat center center !important;
			 color: transparent !important;
		}
	/***** video gallery *****/
		.video-gallery {
			margin-top: 25px;
		}
		.video-gallery h4 {
			background: url('img/video.png')no-repeat left center;
		}
		.video-gallery ul {
			padding: 0px !important;
		}
		.video-gallery ul li {
			display: inline-block;
			list-style: none;
			margin-bottom: 15px;
		}
		.fancybox-title {
			font-family: 'futura_mdmedium';
			font-weight: none;
		}
	/***** audio gallery *****/
		.audio-gallery {
			margin-top: 25px;
		}
		.audio-gallery h4 {
			background: url('img/audio.png')no-repeat left center;
		}	
		.audio-gallery .attribution {
			margin-top: 15px;
			margin-bottom: 15px;
		}
		.audio-gallery span {
			font-family: 'futura_mdmedium';
			font-size: 14px;
			color: #949494;
		}
/***** content contact *****/
	.content.contact .header-box h1 {
		padding-bottom: 44px;
	}
	.content.contact .header-box p {
		padding-bottom: 79px;
	}
	.content.contact .left,
	.content.contact .right {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	.content.contact .form-control {
		font-family: 'open_sansbold';
		font-size: 15px;
		color: #a3a3a3;
		padding: 6px 14px;
		border: 1px solid #a7a7a7;
		height: 60px;
	}
	.content.contact textarea {
		min-height: 187px !important;
		padding: 30px !important;
	}
	.content.contact label {
		font-family: 'open_sansbold';
		font-size: 14px;
		color: #686868;
		text-transform: uppercase;
		padding-left: 15px;
	}
	.content.contact .btn {
		font-family: 'open_sansbold';
		font-size: 15px;
		color: #fff;
		text-transform: uppercase;
		background-color: #ed1c24;
		height: 60px;
	}
	/***** actions ******/
		.content.contact .form-control:focus {
			border: 3px solid #bababa;
			box-shadow: none;
		}

/***** content error *****/
	.content.error .header-box {
		margin-top: 240px;
		margin-bottom: 240px;
		text-align: center;
	}
	.content.error .header-box h1 {
		font-family: 'open_sansextrabold';
		font-size: 48px;
		color: #ed1c24;
		padding-bottom: 24px;
	}
	.content.error .header-box h2 {
		font-family: 'open_sansextrabold';
		font-size: 23.02px;
		color: #1c1c1c;
		text-transform: uppercase;
		padding-bottom: 20px;
	}
	.content.error .header-box h2 {
		font-family: 'open_sansextrabold';
		font-size: 23.02px;
		color: #1c1c1c;
		text-transform: uppercase;
		padding-bottom: 20px;
	}
	.content.error .header-box p {
		font-family: 'open_sansbold';
		font-size: 16px;
		color: #8e8e8e;
		line-height: 18px;
		padding: 0px;
	}
	.content.error .header-box a {
		font-family: 'open_sansbold';
		font-size: 16px;
		color: #ed1c24;
	}
/***** adicionais projetos *****/
    .modal-header {
        border-bottom: none;
    }
    .form-control.wrong {
	    border: 1px solid #f8b3af;
	    background-color: #fff3f2;
    }
    .tooltip {
	    font-family: 'futura_mdmedium';
	    font-size: 12px;
	    color: #fff;
	    text-transform: uppercase;
    }
    .tooltip.top {
	    right: 5% !important;
	    left: auto !important;
    }
    .tooltip-inner {
	    background-color: #ee4037;
	    padding: 4px 16px 4px 16px;
    }
    .tooltip.top .tooltip-arrow {
	    border-top-color: #ee4037;
	    right: 10% !important;
	    left: auto !important;
    }
    .default-messages-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .default-messages-content strong {
        color: #686868 !important;
	    font-size: 21px !important;
    }
    .default-messages-content ul li {
        font-family: 'futura_mdmedium' !important;
	    font-size: 19px !important;
	    color: #686868 !important;
        list-style: none !important;
    }
    .dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
        background-color: #fff;
	}
	.fixed__whatsapp {
		position: fixed;
		top: 85vh;
		right: 2.1rem;
		width: 5rem;
		height: 5rem;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 9;
		-webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
		box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
		-webkit-transition: all 1s ease;
		-moz-transition: all 1s ease;
		-o-transition: all 1s ease;
		-ms-transition: all 1s ease;
		transition: all 1s ease
	}
	
	@media(max-width: 768px) {
		.fixed__whatsapp {
			top:92% !important
		}
	
		.fixed__whatsapp {
			width: 3rem;
			height: 3rem
		}
	}
	