@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Roboto:300,400,500,700,900');

* {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, button, a, span, input, textarea, select {
	font-family: 'Open sans', Sans-serif;
	color: #555;
}

.home-header {
	background-image: url('../img/fundo-header.jpg');
	background-position: center;
	background-size: cover;
}

.mask {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1));
}

.header-banner {
	height: 80vh;
	min-height: 500px;
	display: flex;
	padding-top: 80px;
}

.header-text {
	color: #fff;
	margin: auto;
	display: block;
	width: 480px;
	text-align: center;
	max-width: 100%;
	text-transform: uppercase;
	font-weight: 200;
	font-size: 50px;
	line-height: 65px;
}

.scroll-bottom {
    margin: auto;
    height: 50px;
    width: 30px;
    margin-bottom: 50px;
    border: 2px solid #fff;
    border-radius: 50px;
    opacity: 0.7;
    cursor: pointer;
}

.scroll-bottom span {
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.67);
    border-radius: 100%;
}

nav {
    position: fixed;
    height: 80px;
    background-color: transparent;
    width: 100%;
    max-width: 100%;
    left: 0;
    top: 0;
    z-index: 3;
}

img.logo-menu {
    height: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
    filter: grayscale(1) brightness(7);
}

.menu ul {
    float: right;
    text-align: right;
    display: inline-flex;
    list-style: none;
}

.menu ul li a {
    color: #fff;
    opacity: 0.7;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    height: 40px;
    display: block;
    line-height: 40px;
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: opacity 0.5s;
}

.menu ul li a:hover {
    opacity: 1;
}

.menu-open {
    display: none;
}

.menu-close {
    display: none;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

section#servicos {
    background-color: #f6f6f6;
}

.about-content {
    display: flex;
}

section#sobre {
    padding: 0;
}

.enter-text {
    padding-bottom: 120px;
    padding-top: 120px;
    padding-left: 40px;
}

.left-image {
    width: 330px;
    min-width: 330px;
    background-image: url(../img/3d.png);
    background-position: center bottom;
    background-size: 115%;
    background-repeat: no-repeat;
}

h2.about-sec {
    margin: 0;
    font-weight: 900;
    font-size: 30px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 10px;
}

h2.about-sec::after {
    content: '';
    display: block;
    margin: auto;
    height: 3px;
    width: 60px;
    background-color: #d0d0d0;
    margin-left: -10px;
    margin-top: 4px;
}

p.text-abou-sec {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

nav.sticknav {
    background-color: #04293c;
}

nav.sticknav img {
	opacity: 0.8;
}

nav {
    transition: background-color 0.5s;
}

h2.about-sec.center {
    text-align: center;
}

h2.about-sec.center::after {
    margin: auto;
    margin-top: 10px;
}

p.text-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #888;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.7;
}

span.service-icon {
    width: 110px;
    height: 110px;
    margin: auto;
    margin-bottom: 30px;
    border: 3px solid #113f7a;
    border-radius: 100%;
    box-shadow: inset 0px 0px 0px 60px #f6f6f6;
    background-color: #113f7a;
    transition: box-shadow 0.7s;
    display: flex;
}

span.service-icon img {
    display: block;
    width: 50px;
    margin: auto;
    height: 45px;
	/* transition: filter 0.4s; */
}

.card-service:hover .service-icon {
    box-shadow: inset 0 0 0 0px #f6f6f6, 0 0 0 3px #f6f6f6, 0px 0px 0px 6px rgba(17, 63, 122, 0.4);
    transition: box-shadow 0.7s;
}

.card-service:hover span.service-icon>img {
    filter: brightness(10) grayscale(10);
	/* transition: filter 0.5s; */
}

.card-service {
    border: 1px solid #cfcfcf;
    padding: 20px;
    padding-top: 40px;
    transition: box-shadow 0.4s, border 0.4s;
}

.card-service:hover {
	box-shadow: 0 0 0 3px #f6f6f6, 0px 0px 0px 6px rgba(17, 63, 122, 0.3);
	border: 1px solid rgba(17, 63, 122, 0.7);
}

h1.service-title {
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    color: #444;
    opacity: 0.8;
}

p.service-desc {
    text-align: center;
    font-size: 13px;
    color: #999;
}

p.more-infos {
    text-align: center;
    margin: 0;
    margin-top: 30px;
}

p.more-infos a {
    color: #0b73a8;
    font-weight: 600;
    font-size: 13px;
}

section#contato {
    padding: 0;
}

.contact-container {
    display: flex;
    width: 100%;
}

.contact-container>div {
    width: 50%;
}

.map-left iframe {
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0.6;
}

.map-left {
    background-color: #04293c;
}

.form-right {
    padding-left: 30px;
    padding-top: 80px;
    padding-bottom: 80px;
    box-sizing: border-box;
}

label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #000;
    opacity: 0.7;
    margin: 0;
}

input, select, textarea {
    border: 1px solid #cfcfcf;
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    margin-bottom: 10px;
    padding: 12px;
    outline: none;
    resize: none;
    transition: border 0.6s;
}

input:focus, select:focus, textarea:focus {
    border: 1px solid #04293c;
}

textarea {
    height: 110px;
}

.form-right form {
    width: 400px;
    max-width: 100%;
    margin: auto;
}

button.sent-mensagem {
    margin: auto;
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
    border: 0;
    background-color: #04293c;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-family: 'Open sans', sans-serif;
    font-size: 13px;
    border-radius: 2px;
    transition: background-color 0.4s;
}

button.sent-mensagem:hover {
    background-color: #333;
}

img.galery-photo {
    width: 100%;
    padding: 4px;
    border: 1px solid #cfcfcf;
}

.col-sm-3.col-md-3.col-xs-1.col-galery {
    padding: 5px;
}

footer {
    background-color: #e8e8e8;
}

section#contato {
    background-color: #f6f6f6;
}

input, select, textarea {
    background: transparent;
}

.footer-container {
    display: flex;
}

.footer-container>div {
    width: 33.33333333%;
    padding-top: 60px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    padding: 0!important;
}

.footer-logo img {
    display: block;
    width: 240px;
    margin: auto;
    opacity: 0.4;
    margin-left: 0;
}

.footer-min {
    padding: 30px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.07);
    padding-left: 13px;
    padding-right: 13px;
}

p.conectt-direitos {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    opacity: 0.7;
}

p.title-footer {
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

ul.menu-foot {
    padding: 0;
    list-style: none;
}

ul.menu-foot a {
    color: #7b7b7b;
    font-weight: 600;
}

p.info-footer {
    color: #7b7b7b;
    margin: 0;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 600;
}

p.info-footer strong {
    color: #5a5a5a;
}

.col-sm-2.card-servs {
    padding-left: 5px;
    padding-right: 5px;
}

.card-service {
    padding: 15px;
    padding-top: 30px;
}

span.service-icon {
    width: 90px;
    height: 90px;
    border: 2px solid #113f7a;
}

h1.service-title {
    font-size: 12px;
    font-weight: 600;
    color: #888;
}