@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
	font-family: 'Roboto', sans-serif;
}

body {
	background: #fff;
	color: #444;
	font-family: "Open Sans", sans-serif;
}

a {
	color: #2e7a38;
	transition: 0.5s;
}

a:hover,
a:active,
a:focus {
	color: #2e7a38;
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0 0 30px 0;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: #999999;
	text-align: justify;
  	text-justify: inter-word;
}

ul {
	list-style: square !important;
}

ol, ul, li {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: #999999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	margin: 0 0 20px 0;
	padding: 0;
}

section {
	margin-bottom: 50px;
	position: relative;
}

.overlay-bg {
	background-color: rgba(0, 0, 0, 0.75);
	width: 100%;
	height: 100%;
}

#more_about {display: none;}

.snb-btns {
	padding: 0.5em 2em;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	background: linear-gradient(-135deg, #2e7a38, #66bf57);
	border: none;
	color: #fff;
	font-weight: 300;
	border-radius: 50px;
	outline: none !important;
	/* transition: all 0.65s ease; */
}

.snb-btns:hover {
	background: #2e7a38;
	/* transition: all 0.65s ease; */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}

.nav-menu li {
	position: relative;
	white-space: nowrap;
}

.nav-menu > li {
  	float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  	display: block;
}

.nav-menu ul ul {
  	top: 0;
  	left: 100%;
}

.nav-menu ul li {
  	min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  	padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
	content: "\f107";
	position: absolute;
	right: 8px;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  	content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
	float: right;
	margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
	padding: 10px 8px;
	text-decoration: none;
	display: inline-block;
	color: #b3b3b3;
	font-family: "Raleway", sans-serif;
	font-weight: 700;
	font-size: 14px;
	outline: none;
}

.nav-menu li:hover > a,
.nav-menu .menu-active > a {
	color: #2e7a38;
}

.nav-menu > li {
	margin-left: 10px;
}

.nav-menu ul {
	margin: 4px 0 0 0;
	padding: 10px;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	background: #fff;
}

.nav-menu ul li {
	transition: 0.3s;
}

.nav-menu ul li a {
	padding: 10px;
	color: #333;
	transition: 0.3s;
	display: block;
	font-size: 13px;
	text-transform: none;
}

.nav-menu ul li:hover > a {
	color: #2e7a38;
}

.nav-menu ul ul {
	margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;
	margin: 20px 20px 0 0;
	border: 0;
	background: none;
	font-size: 24px;
	display: none;
	transition: all 0.4s;
	outline: none;
	cursor: pointer;
}

#mobile-nav-toggle i {
	color: #555;
}

/* Mobile Nav Styling */

#mobile-nav {
	position: fixed;
	top: 0;
	padding-top: 18px;
	bottom: 0;
	z-index: 998;
	background: rgba(52, 59, 64, 0.9);
	left: -260px;
	width: 260px;
	overflow-y: auto;
	transition: 0.4s;
}

#mobile-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#mobile-nav ul li {
	position: relative;
}

#mobile-nav ul li a {
	color: #fff;
	font-size: 16px;
	overflow: hidden;
	padding: 10px 22px 10px 15px;
	position: relative;
	text-decoration: none;
	width: 100%;
	display: block;
	outline: none;
}

#mobile-nav ul li a:hover {
	color: #fff;
}

#mobile-nav ul li li {
	padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
	position: absolute;
	right: 0;
	z-index: 99;
	padding: 15px;
	cursor: pointer;
	color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
	color: #2e7a38;
}

#mobile-nav ul .menu-item-active {
	color: #2e7a38;
}

#mobile-body-overly {
	width: 100%;
	height: 100%;
	z-index: 997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(52, 59, 64, 0.9);
	display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
	overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
	left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
	color: #fff;
}

#mobile-nav-toggle {
    display: inline;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;
	margin: 20px 20px 0 0;
	border: 0;
	background: none;
	font-size: 24px;
	display: none;
	transition: all 0.4s;
	outline: none;
	cursor: pointer;
}
  
#mobile-nav-toggle i {
	color: #555;
}
  
/* Mobile Nav Styling */
  
#mobile-nav {
	position: fixed;
	top: 0;
	padding-top: 18px;
	bottom: 0;
	z-index: 998;
	background: rgba(52, 59, 64, 0.9);
	left: -260px;
	width: 260px;
	overflow-y: auto;
	transition: 0.4s;
}
  
#mobile-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
  
#mobile-nav ul li {
	position: relative;
}
  
#mobile-nav ul li a {
	color: #fff;
	font-size: 16px;
	overflow: hidden;
	padding: 10px 22px 10px 15px;
	position: relative;
	text-decoration: none;
	width: 100%;
	display: block;
	outline: none;
}
  
#mobile-nav ul li a:hover {
	color: #fff;
}
  
#mobile-nav ul li li {
	padding-left: 30px;
}
  
#mobile-nav ul .menu-has-children i {
	position: absolute;
	right: 0;
	z-index: 99;
	padding: 15px;
	cursor: pointer;
	color: #fff;
}
  
#mobile-nav ul .menu-has-children i.fa-chevron-up {
	color: #50d8af;
}
  
#mobile-nav ul .menu-item-active {
	color: #50d8af;
}
  
#mobile-body-overly {
	width: 100%;
	height: 100%;
	z-index: 997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(52, 59, 64, 0.9);
	display: none;
}

#snb_topbar {
	background: #fff;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-size: 14px;
}

#snb_topbar .contact-info a {
	line-height: 1;
	color: #555;
}

#snb_topbar .contact-info a:hover {
	color: #2e7a38;
}

#snb_topbar .contact-info i {
	color: #2e7a38;
	padding: 4px;
}

#snb_topbar .contact-info .fa-phone {
	padding-left: 20px;
	margin-left: 20px;
	border-left: 1px solid #e9e9e9;
}

#snb_topbar .social-links a {
	color: #555;
	padding: 4px 12px;
	display: inline-block;
	line-height: 1px;
	border-left: 1px solid #e9e9e9;
}

#snb_topbar .social-links a:hover {
	color: #2e7a38;
}

#snb_topbar .social-links a:first-child {
	border-left: 0;
}

/*--------------------------------------------------------------
# snb_header
--------------------------------------------------------------*/

#snb_header {
	padding: 20px 0;
	height: 84px;
	transition: all 0.5s;
	z-index: 997;
	background: #000;
	box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#snb_header #logo h1 {
	font-size: 42px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
}

#snb_header #logo h1 a {
	color: #0c2e8a;
	line-height: 1;
	display: inline-block;
}

#snb_header #logo h1 a span {
	color: #2e7a38;
}

#snb_header #logo img {
	padding: 0;
	margin: 0;
	width: 45px;
}

#intro {
	width: 100%;
	height: 60vh;
	position: relative;
	background-color: #333;
	background: url("../img/1.png") no-repeat;
	background-size: contain;
	/* object-fit: cover; */
}
  
#intro .intro-content {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
}
  
#intro .intro-content h2 {
	color: #2e7a38;
	margin-bottom: 30px;
	font-size: 64px;
	font-weight: 700;
}
  
#intro .intro-content h2 span {
	color: #2e7a38;
	text-decoration: underline;
}
  
@media (max-width: 767px) {
	#intro .intro-content h2 {
	  font-size: 34px;
	}
}
  
#intro #intro-carousel {
	z-index: 8;
}
  
#intro #intro-carousel::before {
	content: '';
	background-color: rgba(0, 0, 0, 0.8);
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 7;
}
  
#intro #intro-carousel .item {
	width: 100%;
	height: 60vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition-property: opacity;
}

/* Sections Header
--------------------------------*/

.section-header {
	margin-bottom: 50px;
	text-align: center;
}
  
.section-header h2 {
	font-size: 32px;
	color: #2e7a38;
	text-transform: capitalize;
	font-weight: 700;
	position: relative;
	padding-bottom: 0px;
	margin-bottom: 10px;
}
  
  
.section-header p {
	padding: 0;
	margin: 0;
	text-align: center;
	color: #b3b3b3;
}

/* Sections About
--------------------------------*/

#snb_about {
	padding: 3em 1em;
}

#snb_about .caption-text {
	font-size: 18px;
	font-weight: 500;
}

#snb_about .snb-companies b {
	display: block ;
}

#snb_about .company-logos {
	margin-bottom: 30px;
	text-align: center;
}

#snb_about .company-logos img {
	width: 80%;
}

#snb_about .vision,
#snb_about .mission {
	padding: 0.8em;
	border: 0;
	background-color: #000000;
	margin-bottom: 20px;
}

#snb_about .vision h3,
#snb_about .mission h3 {
	color: #f2f2f2;
}

/* snb_services Section
--------------------------------*/

#snb_services {
	padding: 30px 0 0 0;
}

#snb_services .box {
	padding: 0px;
	margin-bottom: 40px;
	box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
	background: #fff;
	transition: 0.4s;
}

#snb_services .box:hover {
	box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
	transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
}

#snb_services .box .icon {
	display: block;
	margin-bottom: 20px;
}

#snb_services .box .icon img {
	width: 100%;
	transition: 0.5s;
	line-height: 0;
}

#snb_services .box .icon i:before {
	background: #0c2e8a;
	background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#snb_services .box h4 {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 22px;
}

#snb_services .box h4 a {
	color: #444;
}

#snb_services .box p {
	font-size: 14px;
	margin-bottom: 0;
	line-height: 24px;
}

#snb_experience {
	background-image: url("../img/experience.jpg");
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
}

#snb_experience .overlay-bg {
	padding: 3em 1em;
}

#snb_experience .row i {
	color: #2e7a38;
} 

#snb_experience .row .counter-number {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 3rem;
	font-weight: bold;
	color: #fff;
}

#snb_experience .row h3 {
	margin: 0 !important;
	font-size: 18px;
	color: #b3b3b3;
}

#snb_contact .contact-info {
	margin-bottom: 50px;
	text-align: left;
}

@media (max-width: 768px) {
	#snb_contact .contact-form {
		margin-bottom: 50px;
	}
}
  
#snb_contact .contact-info i {
	font-size: 18px;
	float: left;
	margin-bottom: 10px;
	color: #50d8af;
}
  
#snb_contact .contact-info address {
	margin-bottom: 5px;
	color: #b3b3b3;
}

#snb_contact .contact-info address span {
	font-weight: 500;
}
  
#snb_contact .contact-info h3 {
	font-size: 15px;
	margin-bottom: 10px;
	font-weight: bold;
	text-transform: uppercase;
	color: #222;
	margin-left: 30px;
}
  
#snb_contact .contact-info a {
	color: #b3b3b3;
}
  
#snb_contact .contact-info a:hover {
	color: #66bf57;
}
  
#snb_contact .contact-address,
#snb_contact .contact-phone,
#snb_contact .contact-email {
	margin-bottom: 20px;
}

#snb_contact .form #sendmessage {
	color: #50d8af;
	border: 1px solid #50d8af;
	display: none;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
}
  
#snb_contact .form #errormessage {
	color: red;
	display: none;
	border: 1px solid red;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
}
  
#snb_contact .form #sendmessage.show,
#snb_contact .form #errormessage.show,
#snb_contact .form .show {
	display: block;
}
  
#snb_contact .form .validation {
	color: red;
	display: none;
	margin: 0 0 20px;
	font-weight: 400;
	font-size: 13px;
}
  
#snb_contact .form input,
#snb_contact .form textarea {
	padding: 10px 14px;
	border-radius: 0;
	box-shadow: none;
	font-size: 15px;
	outline: none;
	border: 1px solid #999;
	border-radius: 5px;
}

#snb_contact .form textarea {
	resize: none;
}

#snb_contact .map-locations iframe {
	width: 100%;
	margin-top: 50px;
	border: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
	background: #f2f5f8;
	padding: 0 0 30px 0;
	font-size: 14px;
}
  
#footer .copyright {
	text-align: center;
	padding-top: 30px;
}
  
#footer .credits {
	text-align: center;
	font-size: 13px;
	color: #555;
}
  
#footer .credits a {
	color: #d47f00;
}
