body {
	margin: 0; // 1
	/*font-family: $font-family-base;*/;
	@include font-size($font-size-base);
	font-weight: $font-weight-base;
	line-height: $line-height-base;
	color: $body-color;
	text-align: left; // 3
	background-color: $body-bg; // 2
}
.logo_acao{
	height: 130px;
	margin-top: 38px;
}
/*
	Estilização do Tema em CSS
*/


/*
	Menu de navegação fixo
*/
.nav-link {
  color:#fff !important;
  text-transform: uppercase;
  /*display: flex;
  justify-content: space-around;*/
}

	a.nav-link:hover, a.nav-link:focus {
	  color:#c97310 !important;
	}

	/*@media (min-width: 992px)*/
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 1.5rem;
    	padding-left: 3.5rem;
	}

	.nav-link{
		color: #fff !important;
	}
	
	a.nav-link:hover {
		color: rgb(134, 138, 241) !important;
	}
	
	
	a.nav-link:focus {
		color: red !important;
	}	


/*
	Parte inicial do site + Jumbotron 
*/
.top-full{
	padding: 0.1px;
	background-image:url("img/predios_visao.avif");
	background-size: cover;
	opacity: 1;
	background-attachment: fixed;
}
	.container-retina{
		opacity: 0.4;
		padding: 0.1px;
		background-color: #000; 
		width: 102%;
		margin-left: -18px;
	}
	.j-style{
		padding: 0.15%;
	    margin: 20% 0 10%;
	    background: none;
	}
		.j-title{
			color: #fff;
			padding: 18% 11% 0;
			font-family: "montserrat",sans-serif;
			font-weight: 400;
			font-style: normal;
			font-size:calc(13px + 2vw);
			padding: 4% 11% 0 !important;
			font-size: calc(10px + 1.8vw);
		}
		.j-buttom{
		    text-transform: uppercase;
		    font-size: 1rem;
			color: #00008b;
			border-color: none;
			font-weight: 700;
		    padding: 1% 3%;
		    margin: 3% auto;
		    border-radius: 0;
		    display: table;
		}
			#buttontop{
				background-color:#fff;
				box-shadow: 0 8px 6px -6px black;
			}
				a#buttontop:hover{
					background-color: #bbbbf9;
					color: #000;
				}


/*
	About ou Sobre nós
*/
.about-full{
	padding: 90px 0 0 0;
	background-color: #fff;
}
	.title-about{
		padding: 6% 0 0;
		font-family: "montserrat",sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size:calc(13px + 2vw);
		/*background-color: white;*/
	}
	.p-about{
		padding: 4% 20%;
		margin-top: 2%;
		font-family: "nunito-sans",sans-serif;
		font-weight: 300;
		font-style: normal;
		font-size: calc(11px + 1vw);
		line-height: 1.65;
	}
	img.img-logo-about{
		margin: 0 auto 10%;
	    display: table;
	    width: 120px;
	}
.title-doing{
	text-align: center;
	padding-top: 1px;
	max-height: 3px;
	z-index: 2;
}

/*
	Habilidades ou Skills
*/
.skills-full{
	padding: 1%;
	background-image: url("img/man_standup3.jpg");
	background-size: cover;
}
	.title-container-skills{
		margin: 13% 0 3% 5%;
		width: 95%;
		font-size:calc(12px + 3vw);
	}
		.title-skills{
			margin: 2% 0 0 5%;
			text-transform: uppercase;
			font-weight: 600;
			font-family: "nunito-sans",sans-serif;
			font-size: calc(11px + 1vw);
		}
		
.progress-bar {
			background-color: #033163;
}
.progress {
	background-color: gray;
}

/*
	Números positivos (Resultados)
*/
.numbers-full{
	background-color:#00008b;
}
.row-icons{
	padding: 7% 10%;
	margin: 0;
}
img.card-icon{
	width: 60px;
	height: 60px;
	margin:7% 0 0 0;
}
p.icon-text{
	text-transform: uppercase;
	font-weight: 400;
	color: #fff;
}
.col-portfolio{
	border-radius: 0;
	padding: 0 !important;
}
img.card-item{
	border-radius: 0;
}



/*
	Efeito com CSS3 em Portfólio
*/
#portfolio{
	width: 100% !important;
}
.hover-zoom {
    position: relative;
    overflow: hidden;
}
.hover-zoom img {
    width: 100%; 
    border-radius: 2px;
    -webkit-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -moz-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -ms-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -o-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
}
.hover-zoom:hover img {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}
.hover-zoom .retina{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;    
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);    
    border-radius: 2px;
    text-align: center;
    padding: 30px;
    cursor: pointer;

    -webkit-transition:	 all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -moz-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -ms-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    -o-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
    transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000); 
}
.hover-zoom:hover .retina {
    opacity: 1;
    box-shadow: inset 0 0 100px 50px rgba(0,0,0,.5);
    
}
.hover-zoom .retina p {
    color: #fff;
    margin: 15px auto 0;
    font-size: 1.2em;
    font-family: "nunito-sans", arial;
	line-height: 1.2;
}
.hover-zoom .retina a {
    display: block;
    width: 150px;
    background:#00008d;
    border: 1px solid #000;
    border-radius: 0;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 10px 15px;
    margin: 6px auto 0;
}


/* 
	Vídeo de depoimento ou exposição de trabalhos + IFrame incorporado 
*/

.video-responsive{
	overflow:hidden;
	padding-bottom:56.25%;
	position:relative;
	height:0;
	margin:5% 10%;
}
	.video-responsive iframe{
		left:0;
		top:0;
		height:100%;
		width:100%;
		position:absolute;
	}

/*
	Diferenciais que você pode oferecer
*/
.title-do{
	text-align: center;
	padding: 100px 0 0 0;
}

.detalhes-full{
	background-color: #e1e6ea;
}

	img.card-work{
		margin: 0 auto !important;
		display: block;
	}

		.title-work{
			text-align: center;
		    width: 100%;
		    float: left;
		}

		.work-text{
			font-size: 0.9rem;
			font-weight: 400;
			text-align: center;
		}


/*
	Carousel com depoimentos
*/
.carousel{
	background-color: rgba(0, 10, 10, 0.2)
}
.carousel-inner {
    position: relative;
    width: 70%;
    overflow: hidden;
	margin-left: 15%;
}
.carousel-position{
	bottom: 60px;
	color: #000;
	text-shadow: 2px 2px rgb(90, 140, 248);
	font-family: "montserrat",sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: calc(13px + 2vw);
	background: rgba(255, 255, 255, 0.3);
}
.carousel-caption {
    padding: 0 !important;
}

/*
SOBRE NÓS
*/
.container-fluid, about-full{
padding-top: 0 !important;
}

/*
	Marcas parceiras 
*/
.card-logos{	
    max-width: 60px;
    max-height: 60px;
}


/*
	Sessão de Contato + Form
*/
h5.subtitle-form{
	text-align: center;
    padding: 3% 0 6%;
    font-weight: 400;
}



/*
	Footer + Barra de navegação do fundo
*/
.footer{
	background-color: #232023;
}

	strong.name-layout{
		color: #fff;
	    font-family: arial;
	    font-size: 1.3rem;
	    margin: 45% 0 10%;
	    display: block;
	}

	span.copyright{
		color: #fff;
	    font-family: arial;
	    display: block;
	}

	span.contact{
		color: #fff;
	    font-family: arial;
	    margin: 45% 0 0 10%;
	    display: block;
	}

.footer > .row > .col-6 > .row li{
	text-align: right;
}

.footer > .row > .col-6 > .row a{
	color: #fff;
}

	.footer > .row > .col-6 > .row a:hover{
		color: #00008d;
	}

.navbar-brand {
	display: inline-block;
	/* padding-top: 0.3125rem; */
	/* padding-bottom: 0.3125rem; */
	margin-right: 6rem;
	font-size: 1.25rem;
	line-height: inherit;
	white-space: nowrap;
}
#final{
	display: flex;
	justify-content: space-evenly;
	width: 100%;
	background-color: #232023;
}
.rodape{
	display: flex;
	color: white;
}
.rodape2{
	display: flex;
	color: white;
}
.dados{
	display: flex;
	color: white;
	font-size: large;
	margin: 5% 0;
}
.dados a{
	font-size: large;
	font-weight: 500;
	color: white;
}
.menu{
	display: flex;
}
.nos{
	padding: 5% 7vw 0 0;

}
.servicos{
	color:#fff !important;
	text-transform: uppercase;
	font-size: large;
	font-weight: 400;
	line-height: 3;
}
.projetos{
	list-style-type: none;
}


/*
	Media Query
*/

@media(max-width: 1580px) {
	.hover-zoom .retina p {
		font-size: 1rem;
		margin: 0;
	}
	.logo_acao{
		width: 12rem;
		height: auto;
	}
	.p-about{
		padding: 4% 10% 0;
	}
	.container {
		max-width: 70%;
	}
	h2{
		font-size: 1.3rem;
	}
}

@media(max-width: 991px) {
	img.card-icon{
		margin: 0;
	}
	.card-body{
		padding: 0.2rem 0.8rem;
	}
	.col-details{
    	margin: 4% 0 0; 
    }
    strong.name-layout{
	    margin: 10% 0 5%;
	}
	span.contact{
	    margin: 10% 0 5%;
	}
	.row-footer-submenu{
		margin: 5% 0 0 !important;
	}
	.hover-zoom .retina p {
		font-size: 0.9rem;
		margin: -10%;
	}
	.nav-link {
		color: white !important;
		font-weight: 700;
	}
	h2{
		font-size: 1.2rem;
	}
	.p-about{
		padding: 14% 10% 0;
	}
	.servicos{
		font-size: medium;
		font-weight: 400;
		line-height: 2;
	}
	.dados{
		font-size: large;
		font-weight: 400;
		margin: 4% 0;
	}
	.dados a{
		font-size: large;
		font-weight: 400;
	}
	.nos{
		margin: 4% 0;
	}
	.rodape2{
		display: block;
	}
}


@media(max-width: 575px) {
	.p-about{
		padding: 14% 10% 0;
	}
	.card-text{
		padding: 4% 10%;
	}
	.col-portfolio .card-portfolio{
		margin: 7% auto; 
		display: table;
	}
	.col-portfolio .card-portfolio img{
		display: table;
    	margin: 0 auto;
    }
    p.icon-text{
    	text-align:center;
    }
    .col-details{
    	margin: 7% auto; 
    }
    .col-logo{
    	margin: 6% 0 12%;
    	flex-basis: auto;
    }
	h1{
		font-size: 0.7rem !important;
	}
	.servicos{
		font-size: small;
		font-weight: 200;
		line-height: 2;
	}
	.dados{
		font-size: small;
		font-weight: 300;
		margin: 3% 0;
	}
	.dados a{
		font-size: small;
		font-weight: 300;
	}
	.nos{
		margin: 3% 0;
	}
	.rodape2{
		display: block;
	}
}