*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans KR', sans-serif;
}

.clear{
	clear: both;
}

.container{
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;	
}

header{
	padding: 20px 2%;
	height: 120px;
}

header .container{
	padding-bottom: 10px;
}

nav.mobile-menu{		
	float: right;	
	cursor: pointer;
	display: none;
	width: 32px;
	height: 32px;
	background-image: url('../images/menu.png');
	background-size: 100% 100%;	
	margin: 10px 20px;	
}

nav.mobile-menu:hover ul{
	opacity: 1;
}

nav.mobile-menu ul{
	opacity: 0;
	transition: 1s;
	background-color: white;
	position: absolute;
	width: 100%;
	left: 0;
	top: 80;	
	color: white;
	list-style-type: none;
	text-align: center;
	margin-top: 35px;
}

nav.mobile-menu ul li{
	padding: 8px 0; 
	transition: 0.4s;
	border-bottom: 1px solid black;	
}

nav.mobile-menu ul li:hover{
	/*background-color: rgb(230,230,230);*/
	/*background-color: #b3cc7c;*/
	background-color: #C1982D;
}

nav.mobile-menu ul li a{
	color: black;
	text-decoration: none;
}

header nav.desktop{
	margin: 10px 60px 0 0; 
	float: right;
	position: relative;
}

header nav.desktop ul{
	list-style-type: none;
}

header nav.desktop ul li{
	float: left;
	font-size: 18px;
	padding: 0 20px;
}

header nav.desktop ul li ul{
    display: none;
    position: absolute;        
}

header nav.desktop ul li ul li { 	
  	transition: 0.4s;    
}

header nav.desktop ul li ul li a {
   display: block;    
   padding: 2px; 
   border-bottom: 1px solid black;     
}

nav.desktop ul li:hover ul{		
	display: block;
	/*background-color: #b3cc7c;*/
	background-color: #C1982D;
	width: 260px;	
}

header nav.desktop a{
	color: #1c1f32;
	text-decoration: none;
}

header div.logo{
	margin-left: 60px;
	float: left;	
	position: relative;
	top: -10px;
}

header .bar{		
	/*background-color: #b3cc7c;*/
	background-color: #C1982D;
	height: 10px;	
	width: 98%;
}

section .servicos{
	height: 400px;	
}

section .servicos-titulo h2{	
	text-align: center;
	padding-top: 15px;	
	color: #1c1f32;
}

section .bar3{	
	margin: 0 auto;
	width: 50%;
	/*background-color: #b3cc7c;*/
	background-color: #C1982D;
	width: 200px;
	height: 4px;
	margin-bottom: 40px;
}

section .conteudo{				
	margin: 0 auto;
	position: relative;	
	max-width: 1280px;			
	align-items: center;
	text-align: center;
	width: 100%;
}

section .box{	
	background: blue;
}

.form {	
	margin: 0 auto;
    width: 50%;
	padding-top: 20px;
	text-align: center;
	/*color: white;*/
	color: #1c1f32;
	padding-left: 10px;
	padding-bottom: 50px;
}

.form p{
	font-size: 20px;	
	padding-right: 10px;
}

.form form input[type=text]{
	width: 90%;
	max-width: 480px;
	margin-top: 8px;
	height: 58px;
	padding-left: 8px;
	line-height: 58px;
	border: 1px solid rgb(200,200,200);
}

.form form textarea{
	width: 90%;
	max-width: 480px;
	margin-top: 8px;
	padding: 15px;
	border: 1px solid rgb(200,200,200);
	height: 160px;
}

.form form input[type=submit]{
	border: 0;
	background-color: #1c1f32;/*#FF703D;*/
	width: 165px;
	height: 44px;
	font-size: 13px;
	color: white;
	cursor: pointer;
	margin-top: 15px;
	border-radius: 30px;
}

footer .footer-block{
	/*background-color: #b3cc7c;*/
	background-color: #C1982D;
	height: 70px;	

	float: left;	
	width: 33.3%;	

	text-align: center;
}

footer .footer-block  p{
	padding: 20px 30px;

	color: white;	
	font-size: 10px;	
}

footer .footer-block:nth-of-type(3){
	padding: 25px;		
}

footer .copyright p{		
	font-size: 10px;	
	color: #1c1f32;
	text-align: center;
	font-weight: bold;	
	padding-bottom: 5px;
}

section .desenvolvedor {
	font-weight: normal;
	font-size: 10px;	
	color: #1c1f32;
	text-align: center;
	padding-bottom: 5px;
}


@media screen and (max-width: 980px){
	nav.desktop{
		display: none;
	}		

	nav.mobile-menu{		
		float: right;		
		display: block;
	}

	header div.logo{
		margin-left: 0px;
	}	
}

@media screen and (max-width: 658px){
	
    .form p{
	    font-size: 15px;		  
    } 

	footer .footer-block{
		height: 55px;	

		float: left;	
		width: 50%;	

		text-align: center;
	}

	footer .footer-block:nth-of-type(3){		
		width: 100%;
		align-items: center;
	}	

}

@media screen and (max-width: 547px){

	footer .footer-address{
		padding-bottom: 15px;
	}

	footer .footer-block{
		height: 50px;			
		width: 100%;		
	}		
}

@media screen and (max-width: 498px){
	header div.logo img{
		width: 80%;
		float: left;				
	}

	nav.mobile-menu{		
		margin-top: -40px;
		float: right;	
	}

	.imagem-conteudo img{
		max-width: 320px;		
	}
	
}