@charset "utf-8";
/* CSS Document */


body{
	margin:0px;
	padding:0px;
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
}

.toggle{
	display: none;
}

#main{
	width: 100%;
	height: 100vh;
	box-sizing: border-box;
	background-color: #edf1fd;
	position: relative;
	background-image: url("../img/image.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	
}



nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
	font-family: "Metric SemiBold";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 50px;
	background-color: #f4f7ff;
	box-shadow: 2px 2px 12px rgba(0,0,0,0.05);
	z-index: 1;
}

.menu {
	display: flex;
}

.menu li a {
	padding: 10px 15px;
	color: #6c707c;
	font-size: 12px;
}

.lang{
	color: #292929;
}

.logo{
	font-size: 25px;
	font-weight: bold;
	color: #000000;
	font-family: "Metric Bold";
}

.name{
	font-family: "Metric Light";
	width: 500px;
	position: absolute;
	left: 20%;
	top:50%;
	transform: translate(-20%, -50%);
}

.name p:nth-child(1),
.name .details{
	color: #000000;
	font-size: 19px;
	font-weight: lighter;
	
}
.name h1{
	font-family: "Metric Bold";
	font-size: 40px;
	color: #000000;
	font-weight: 600;
	margin: 0;
}

.cv-btn{
	width: 200px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #292929;
	color: #ffffff;
	font-weight: bold;
}


/* case de sucesso - history */

.history{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 150px;
}

.history h1{
	font-family: "Metric SemiBold";
	font-size: 40px;
	font-weight: 500;
	color: #000000;
}

.history p{
	font-family: "Metric Light";
	font-size: 18px;
	font-weight: 400;
	color: #000000;
}


/* contato */

#contact-form{
	width: 100%;
	height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000000;
	margin-top: 80px;
	
}
#contact-form form{
	display: flex;
	width: 70%;
	height: 60vh;
	background-color: #1A1A1A;
	box-shadow: 2px 12px 20px rgba(0,0,0,0.2);
	border: 1px solid rgba(255,255,255,0.01)
}
 
.contact-left{
	width: 40%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.contact-right{
	width: 60%;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-left: 1px solid rgba(255,255,255,0.08);
}
.contact-right button{
	width: 100%;
	height: 50px;
	background-color: #1ED98B;
	font-weight: bold;
	outline: none;
	border: none;
	margin: 0px;
	color:#1B1B1B;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
 
}
.c-l-heading{
	font-family: calibri;
	color:#FFFFFF;
	font-size: 3rem;
	letter-spacing: 2px;
	font-weight: 400;
	
}
.f-name,.f-email{
	display: flex;
	flex-direction: column;
	font-family: calibri;
	
}
.f-name font,.f-email font{
	color:#BFBFBF;
	font-size: 22px;
}
.f-name input,.f-email input{
	height: 30px;
	width:250px;
	border: none;
	outline: none;
	background-color:transparent;
	border-bottom: 1px solid #929292;
	color:#FFFFFF;
	margin: 10px 0px;
}
.f-email input::placeholder,
.f-name input::placeholder{
	opacity: 0.5;
	letter-spacing: 1px;
}
.f-email input:focus,
.f-name input:focus{
	border-bottom: 1px solid #17d1ac;
	transition: all ease 0.5s;
}.message font{
	font-size: 18px;
	color:#4E4E4E;
	font-family: calibri;
	
}
.message{
	margin: 20px;
}
.contact-right textarea{
	width: 100% !important;
	height: 320px !important;
	border: none;
	outline: none;
	background-color:transparent;
	box-sizing: border-box;
	color:#EBEBEB;
	font-size: 16px;
}
.contact-right textarea::placeholder{
	color:#EBEBEB;
	font-size: 18px;
	letter-spacing: 2px;
	font-family: calibri;
}
.contact-right button:active{
	transform: scale(1.04);
	transition: all ease 0.1s;
}

/* Clientes */

#portfolio{
	width: 100%;
	box-sizing: border-box;
	font-family: "Metric Bold";
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 60px 2% 20px 2%;
}

.p-heading{
	font-family: 'Metric Bold';
	font-size: 30px;
	text-align: center;
	color: #000000;
	font-weight: 900;
	
}

.p-box{
	background-color: #ffffff;
	overflow: hidden;
	position: relative;
}

.p-b-container{
	width: 90%;
	height: 70vh;
	display: grid;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
	
}

.text-overlay{
	font-family: "Metric SemiBold";
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #383532;
	display: none;
}

.text-overlay h1,p{
	color: #fff;
}

.text-overlay h1{
	font-size: 25px;
	margin: 0;
	padding: 10px 0;
}

.text-overlay p{
	font-size: 17px;
	font-family: "Metric Light";
	margin: 0;
	padding: 10px 0;
}

.p-box:hover .text-overlay{
	display: flex;
}

.p-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

button{
	margin: 10px 0;
	width: 50%;
	padding: 10px;
	border: 1px solid #008767;
	background: #383532;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	
}

.trailer{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.9);
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	
}

.trailer video{
	max-width: 900px;
	outline: none;
	position: relative;
}

.close{
	position: absolute;
	top: 30px;
	right: 30px;
	color: #fff;
	font-size: 42px;
	cursor: pointer;
	
}



/* Fim cliente */

/*-------inicio responsive -----*/

@media(max-width:1190px){
	#main{
		background-size: 1150px !important;
		
	}
	.name{
		left: 10%;
		top: 50%;
		transform: translate(-10%,-50%);
	}
	 
}

@media(max-width:970px){
	#main{
		background-image: none !important;
		
	}
	.name{
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	
	.p-b-container{
		width:100%;
	
	}
			
  }

@media(max-width:900px){
	.toggle{
		display: block;
	}
	
	.toggle:before{
		content: '\f0c9';
		font-family: FontAwesome;
		line-height: 0px;
		margin-left: -35px;
	}
	
	.toggle.active:before{
		content: '\f00d';
	}
	nav {
		padding: 10px 30px;
	}
	nav ul{
		position: absolute;
		width: 100%;
		height: auto;
		box-sizing: border-box;
		background-color: #0f0f0f;
		top: 50px;
		left: 0;
		transition: 0.5s;
		overflow: hidden;
		border: 3px solid #1F1F1F;
		display: none !important;
		margin: 0px;
		padding: 0px;
	}
	
	nav ul li a{
		border-bottom: 1px solid rgba(255,255,255,0.10) ;
		color:#ffffff !important;
		width: 100%;
		height: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0px !important;
		padding: 0px !important;
}
	.active-menu {
		display: block !important;
	}
	
	.p-b-container{
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		height: auto;
		grid-gap: 10px;
	}
	
}

@media(max-width:600px){
	.p-b-container{
		grid-template-columns: 1fr;
	}
	.name{
		width: 60%;
	}
}

/* Video portfolio */
@media(max-width: 901px){
	.trailer video{
		max-width: 90%;
	}
	
}