.gupter-regular {
  font-family: "Gupter", serif;
  font-weight: 400;
  font-style: normal;
}

.gupter-medium {
  font-family: "Gupter", serif;
  font-weight: 500;
  font-style: normal;
}

.gupter-bold {
  font-family: "Gupter", serif;
  font-weight: 700;
  font-style: normal;
}


.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


/* Fonts */
:root {
  --font-default: "Montserrat", sans-serif;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #0da481;
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

h2 { 
  font-weight:600;
  font-size:25px;
  margin-bottom:1rem;  
  }
  
p  { 
  font-size:18px;
  font-weight:400;
}  

li  { font-size:18px;
}  

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-bg2 {
  background-color: #3b3b3b;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

@media (max-width:640px)  {
	.section-header h2 {
  font-size: 24px;
  font-weight: 600;
}
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs  {
	padding:126px 0px 0px;
	background:#3b3b3b;
}


.breadcrumbs .section-headline h2 {
  display: inline-block;
  font-size: 30px;
  line-height:1.2;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  color:#fff;
}

@media (max-width:500px) {
.breadcrumbs .section-headline h2 {
  display: inline-block;
  font-size: 20px;
  line-height:1.2;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
}

.breadcrumbs .section-headline h2::after {
  border: 1px solid #0da841;
  bottom: -15px;
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 40%;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: block;
  background: #78A3D4;
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: #78A3D4;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #0DA481;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: fixed;
  padding: 20px 0;
  top: 0;
  left: 0;
  right: 0;
  background:#fff;
}

.header .logo img {
  max-width:270px; 
  margin-right: 6px;
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,                                                   /*  menu  */
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: #0da481;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #3b3b3b;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 24px 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 500;
  }

  .navbar .dropdown ul a i {
    font-size: 14px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover {
    color: #0da481;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  background:url(../img/home-img.jpg) top right no-repeat;
  margin-top:60px;
  inset: 0;
  background-size: cover;
  z-index: 1;
  height:100vh;
  transition-duration: 0.4s;
  position:relative;
}


.hero .logo {
	max-width:350px;
}

.hero .info h4 {
  color: #fff;
  margin: 40px 0px 40px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height:1.4;
  text-shadow: 1px 1px 3px #3b3b3b; 
  color:#fff;
}

@media (max-width: 1400px) {
  .hero  {
	  `margin-top:0px;
  }
	
  .hero .info {
    padding: 0 50px 0;
  }
  
  .hero .logo {
	max-width:300px;
}

.hero .info h4 {
  color: #fff;
  margin: 40px 0px 40px;
  font-size: 1rem;
  font-weight: 500;
  line-height:1.4;
  text-shadow: 1px 1px 3px #3b3b3b; 
  color:#fff;
}
}

@media (max-width: 992px) {
  .hero .info {
    padding: 0 50px 0;
  }
  
  .hero .logo {
	max-width:300px;
}
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px 0;
  }
  
  .hero .logo {
	display:none;
}

.hero .info h4 {
  color: #fff;
  margin: 350px 0px 30px;
  padding: 20px;
  line-height:1.2;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 1px 1px 3px #3b3b3b; 
  background: rgba(0, 0, 0, 0.45);
}
}

@media (max-width: 576px) {
  .hero .info {
    padding: 0 50px 0;
  }
  
  .hero .logo {
	display:none;
}

.hero .info h4 {
  margin: 350px 0px 30px;
  padding: 20px;
  line-height:1.2;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 1px 1px 3px #3b3b3b; 
  background: rgba(0, 0, 0, 0.45);
}
}

.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid #fff;
  background:#78a3d4;
}

.hero .btn-get-started:hover {
  background:#0da481;
}


/* -------------------------------------------------------------
INTRO
---------------------------------------------------------------*/

.intro  {
	background:#f9f9f9;  
	padding:0px;
}

.intro-box  {
	margin:50px 0px 0px;
	background:#e8e8e8;
	padding:50px;
}

.intro p {
	font-size:24px;
	font-weight:400;
	line-height:1.5;
	text-align:left;
	color:#3b3b3b;
	z-index: 9996;
}

.intro h4 {
	font-size:30px;
	font-weight:600;
	text-align:left;
	color:#3b3b3b;
	margin-bottom:30px;
}

.intro ul li  {
	list-style-type:none;
	font-size:18px;
	line-height:1.6;
	margin-left:-20px;
	margin-bottom:5px;
}

.intro img  {
	max-width:650px; 
	margin-top:40px;
}

@media (max-width:600px)  {
	.intro p {
	font-size:18px;
	font-weight:400;
	line-height:1.3;
}

.intro img  {
	max-width:450px; 
	margin-top:20px;
}

.intro h4 {
	font-size:24px;
	font-weight:600;
	line-height:1.5;
	text-align:left;
	color:#3b3b3b;
	margin:20px 0px;
}
}

.white  {	color:#FFF; }
.red  {  color:#f5130d;  }
.green  { color:#0a9d7b;  }

/*--------------------------------------------------------------
# Sobre Section
--------------------------------------------------------------*/

.sobre  {
	padding:60px 0px 60px;
	background:#f9f9f9;
}

.sobre-box  {
	margin:40px;
	padding:30px;
	background:rgba(256, 256, 256, 0.8);
}

.sobre h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  padding:0 30px;
}

.sobre h4 {
	padding:40px 40px 0px 40px;
	font-size:24px;
	line-height:1.4;
	font-weight:bold;
	text-align:left;
	color:#fff;
	margin-bottom:30px;
}

@media (max-width:1400px)  {
	.sobre h4 {
	padding:30px 30px 0px 30px;
	font-size:20px;
	line-height:1.3;
}
}

@media (max-width:768px)  {
	.sobre h4 {
	padding:10px 30px 0px 30px;
	font-size:20px;
	line-height:1.3;
}
}

/*--------------------------------------------------------------
# Percepcoes Section
--------------------------------------------------------------*/

.percepcoes  {
	padding:60px 0px 30px;
	background:#3b3b3b;
}

.percepcoes-box  {
	display:flex;
	justify-content:center;
	margin:0px 50px;
	padding:30px;
	background:#0a9d7b;
	border-radius:8px;
}

.percepcoes h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.percepcoes p {
	font-size:25px;
	font-weight:500;
	margin-bottom:0px;
}

@media (max-width: 768px) {
  .percepcoes-box  {
	margin:0px 0px 20px;
	padding:0px 30px;
}

.percepcoes p {
	font-size:18px;
	font-weight:500;
	padding:30px 0px;
}
}

/*--------------------------------------------------------------
# Lista Section
--------------------------------------------------------------*/

.lista  {
	padding:60px 0px;
	background:#e5e5e5 url(../img/operario-cover.jpg)  right top no-repeat;
}

.lista-box  {
	margin:0px 20px 20px; 
	padding:30px 20px 10px; 
	background:#fff; 
	border-radius:8px;
}

.lista h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

	


/*--------------------------------------------------------------
# Mapeamento Section
--------------------------------------------------------------*/

.mapeamento  {
	padding:60px 0px 30px;
	background:#f7f7f7;
} 

.mapeamento h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.mapeamento2  {
	padding:60px 0px 30px;
	background:#f3f3f3;
} 

.mapeamento2 h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/*--------------------------------------------------------------
# Mentoria Section
--------------------------------------------------------------*/
.mentoria  {
	background:#f5f5f5;
}

.mentoria h2 { 
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.mentoria p  {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Processo Section
--------------------------------------------------------------*/

.processo  {
	background:#0a9d7b;
}

.processo h2 { 
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color:#FFF;
  padding-bottom:20px;
}

/*--------------------------------------------------------------
# Gestão Section
--------------------------------------------------------------*/

.gestao  {
	background:#0a9d7b;
}

.gestao h2 { 
  font-size: 2rem;
  font-weight: 600;
  color:#FFF;
}

/*--------------------------------------------------------------
# Treinamento Section
--------------------------------------------------------------*/

.treinamento h2  {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

/*--------------------------------------------------------------
# Treinamento Section
--------------------------------------------------------------*/

.treinamento h2  {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}
/*--------------------------------------------------------------
# Riscos Section
--------------------------------------------------------------*/


.risco  {
	padding:60px 0px;
	background:#e5e5e5 url(../img/riscos.jpg) center top no-repeat;
	background-attachment:fixed;
}

@media (max-width: 768px)  {
.risco  {
	background-size:cover;
}	
	
}

.risco .bloco  {
	background:rgba(256, 256, 256, 0.85);
	padding:30px;
	border-radius:8px;
}

.risco h2  {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  text-align:center; 
  margin-bottom:1.25rem; 
  color: var(--color-primary)
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-image-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.about .about-image-wrapper img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about .about-image-wrapper .mission-card {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  background-color: #0a9d7b; 
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.about .about-image-wrapper .mission-card .mission-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border:2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .about-image-wrapper .mission-card .mission-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about .about-image-wrapper .mission-card .mission-content h4 {
  font-size: 1.25rem;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about .about-image-wrapper .mission-card .mission-content p {
  font-size: 18px;
  color: var(--contrast-color);
  margin-bottom: 0;
}

.about .about-content  {
  padding:0;
  margin:0;
}

.about .about-content .tag-badge {
  display: inline-block;
  background-color: #0a9d7b;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin:0;
}

.about .about-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .about .about-content h2 {
    font-size: 1.75rem;
  }
}

.about .about-content .about-info p {
  margin: 1rem;
  font-size: 18px;
  line-height: 1.7;
}

.about .about-content .about-info p:last-child {
  margin-bottom: 0;
}

.about .about-content .values-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

.about .about-content .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about .about-content .values-list .value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: color-mix(in srgb, var(--background-color), var(--default-color) 5%);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about .about-content .values-list .value-item:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about .about-content .values-list .value-item .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about .about-content .values-list .value-item .value-icon i {
  color: var(--contrast-color);
  font-size: 14px;
}

.about .about-content .values-list .value-item .value-text {
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .about .about-content {
    margin-top: 0px;
  }
}



/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions  {
	background:#e8e8e8;
}

.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 8px;
  margin-bottom:30px;
}

.constructions .card-item .card-bg {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.constructions .card-item .card-body {
  padding: 30px 30px 30px 20px;
}

@media (max-width:500px)  {
	.constructions .card-item .card-body {
  padding: 30px;
}
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
  font-size:0.85rem;
  font-weight:400;
}

@media (max-width:500px)  {
.constructions .card-item .card-bg {
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/

.alt-services  {
	padding:40px 0px 0px;
}


.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-services h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 40px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 18px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.area-bg {
  background: #161616 url("../img/background-blur.png") 0 0 no-repeat;
}


.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 40px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: rgba(256, 256, 256, 0.85);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #9bcab9;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #0da481;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

.stats-counter .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}



/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-cards p {
  font-size: 15px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
#services  {
	background:#3b3b3b;
}

.services .services-header {
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .services .services-header {
    margin-bottom: 3rem;
  }
}

.services .services-intro {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .services .services-intro {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
}

.services .services-intro .services-tag {
  display: inline-block;
  background-color: #10a3d7;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services .services-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #f2f8fe;
}

@media (max-width: 768px) {
  .services .services-intro h2 {
    font-size: 2rem;
  }
}

.services .services-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, #e4edf5, transparent 20%);
}

.services .services-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services .services-stats .stat-item {
  background: linear-gradient(135deg, #131825, color-mix(in srgb, #131825, #10a3d7 5%));
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #10a3d7;
}

.services .services-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f2f8fe;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.services .services-stats .stat-item .stat-label {
  display: block;
  font-size: 0.95rem;
  color: color-mix(in srgb, #e4edf5, transparent 20%);
  font-weight: 500;
}

.services .service-card {
  height:auto;
}

.services .service-card .service-card-inner {
  background-color: #272c2f;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services .service-card .service-card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services .service-card .service-card-inner:hover .service-icon {
  background-color: #0a9d7b;
  color: #ffffff;
}

.services .service-card .service-card-inner .service-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, #0a9d7b, transparent 90%);
  color: #0a9d7b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.services .service-card .service-card-inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f2f8fe;
}

.services .service-card .service-card-inner p {
  color: color-mix(in srgb, #e4edf5, transparent 20%);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
  text-transform:uppercase;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}



/* ----------------------------------
 14.Contact Area
/*--------------------------------*/

.contact-area {
  padding:40px 0px 40px;
  background-color: #0DA481;
}

.contact-area h2 {
  color:#fff;
  text-align:center;
  padding-bottom:20px;
}

.single-icon i {
  font-size: 24px;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  line-height: 46px;
  border-radius: 50%;
  margin-bottom: 20px;
  color:#fff;
}


.only i {
  font-size: 24px;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  line-height: 46px;
  border-radius: 50%;
  margin-bottom: 20px;
  color:#fff;
}

.only i:hover {
  border: 2px solid #8bf295;
  color:#8bf295;
}

.single-icon p {
  font-size: 16px;
  font-weight:600;
  line-height: 30px;
  color:#333;
}

.contact-icon {
  margin-bottom: 40px;
}

.contact-icon a {
  color:#000;
}

.contact-icon a:hover {
  color:#fff;
}



#google-map {
  height: 370px;
  margin-bottom: 20px;
}

/*----------------------------------------*/

/*  15. Footer Area
/*----------------------------------------*/

.footer-area {
  padding: 40px 0;
  background: #f9f9f9;
}

.footer-head p {
  color: #444;
}

.footer-head h4 {
  color: #444;
  font-size: 16px;
  letter-spacing: 2px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.footer-logo {
  padding-bottom: 20px;
}

.footer-logo h2 {
  color: #222;
  padding: 0;
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}

.footer-logo h2 span {
  color: #0DA481;
}

.footer-icons ul li {
  display: inline-block;
}

.footer-icons ul li a {
  border: 1px solid #444;
  color: #444;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 38px;
  margin-right: 5px;
  text-align: center;
  width: 40px;
  border-radius: 50%;
}

.flicker-img>a {
  float: left;
  padding: 1px;
  width: 33.33%;
}

.footer-icons {
  margin-top: 30px;
}

.footer-contacts p span {
  color: #0DA481;
  font-weight: 700;
}

.popular-tag ul li {
  display: inline-block;
}

.footer-content {
  display: block;
  overflow: hidden;
}

.popular-tag ul li a:hover, .footer-icons ul li a:hover {
  background: #0DA481;
  border: 1px solid #0DA481;
  color: #fff;
}

.popular-tag ul li a {
  border: 1px solid #444;
  border-radius: 30px;
  color: #444;
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 5px 3px;
  padding: 5px 10px;
  position: relative;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.4s ease 0s;
  width: 70px;
  text-align: center;
}

.footer-area-bottom {
  background: #3b3b3b none repeat scroll 0 0;
  padding: 40px 0;
  font-size:14px;
}

.copyright-text a:hover {
  text-decoration: underline;
  color: #0DA481;
}

.copyright-text a {
  color: #fff;
}

.copyright>p {
  margin-bottom: 0;
  color: #fff;
}

.copyright a, .credits a {
  color: #0DA481;
}

.credits {
  color:#0DA481;	
  padding-top: 10px;
  text-align: center;
}



/*--------------------------------*/

/*  15.question Area
/*--------------------------------*/

.question-area {
  background:#fff;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  width: 100%;
  height: auto;
  position: relative;
}

.left-text {
  background: #0DA481;
}

.right-text {
  background:#78A3d4;
  padding-top:30px;
}

@media (max-width:500px)  {
.right-text {
  background:#78A3d4;
  margin-top:0px;
}
}

.question-area h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  font-weight:700;
  margin-top:15px;
}

.right-text h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}

.right-text .sus-btn {
  margin-left: 0;
  margin-top: 20px;
}

.question-area .content  {
	padding:50px;
	color:#FFF;
}

.content p  {
	color:#FFF;
	font-weight:500;
	line-height:1.5;
	font-size:18px;
}

.top {
	background:#3b3b3b;
	padding:20px;
	text-align:center;
}

.eixo  {
	font-size:18px;
	font-weight:700;
	text-align:center;
}

.ready-btn {
  margin: 10px 10px 10px 15px;
  background: #0DA481;
  border: 1px solid #0DA481 !important;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
  z-index: 222;
}

.ready-btn:hover {
  color:#FFF;
  background: transparent !important;
  border: 1px solid #fff !important;
}

.alt-btn {
  background: #78A3D4;
  border: 1px solid #78A3D4 !important;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  margin: 10px 10px 10px 15px;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
  z-index: 222;
}

.alt-btn:hover {
	color:#FFF;
  background: transparent !important;
  border: 1px solid #fff !important;
}




/*--------------------------------*/

/*  13.Blog Area
/*-------------------------------- */

.blog-area {
padding:60px 0px 60px;
}

.blog-text h4 a {
  color: #3b3b3b;
  text-decoration: none;
}

.blog-text h4 {
  color: #3b3b3b;
  margin-bottom: 15px;
}


.blog-btn {
  background: #78A3D4;
  border: 1px solid #78A3D4 !important;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom:30px;
  padding: 10px 10px 10px 15px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
  z-index: 222;
}

.blog-btn:hover {
  color:#FFF;
  background:#0da481;
  border: 1px solid #fff !important;
}

.blog_meta span.date_type i {
  margin-left: 5px;
}

.blog-meta span.comments-type {
  margin-left: 5px;
}

.blog-meta span i {
  padding-right: 10px;
}

.blog-content .blog-meta {
  border-bottom: 1px dotted #333;
}

.blog-meta {
  border-bottom: 1px dotted #fff;
  padding: 10px 0;
}

.comments-type>a, .date-type, .blog-meta span.comments-type {
  color: #333;
  letter-spacing: 1px;
  margin-right: 5px;
}

.blog-meta .comments-type i {
  padding-right: 0 !important;
}

.blog-meta span.date-type  {
	font-size:12px;
}

.blog-content-right .comments-type>a, .blog-content-right .date-type, .blog-content-right .blog-meta span.comments-type, .blog-content-right .blog-text p {
  color: #fff;
  letter-spacing: 1px;
}

.single-blog .ready-btn {
  border: 1px solid #444;
  border-radius: 30px;
  color: #444;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
}

.single-blog .ready-btn:hover {
  border: 1px solid #0DA481;
  color: #fff;
}


/* ---------------------------------
Pagina Comportamental 
---------------------------------- */

.prevencao  {
	padding:60px 0px 40px;
	background:#f7f7f7;
}

.prevencao h3 {
	margin-bottom:30px;
	font-weight:700;
	font-size:32px;
	text-align:center;
}

.prevencao2  {
	padding:60px 0px;
	background:#f7f7f7;
}

.prevencao3  {
	padding:60px 0px;
	background:#0da481 url("../img/fundo-verde-logo.png") center center no-repeat;
	line-height:1.3;
}

.prevencao3 h5 {
	line-height:1.5;
	text-align:center;
	font-weight:600;
}

.prevencao4  {
	padding:60px 0px 40px;
	background:#344768;
}

.prevencao4 h3  {
	font-weight:700;
}

.prevencao4 img  {
	margin-bottom:50px;
}

.prevencao4 hr  {
	border:1px solid grey;
	margin:20px 0px;
}

.prevencao4  ul li {
	line-height:1.6;
}
.prevencao4 .content {
	padding:30px;
	background:#78a3d4;
	border-radius:20px;
}

.nossos-servicos {
  background:#78a3d4;

}

.nossos-servicos h4 {
	padding-top:50px;
}

@media (max-width:400px): {
.nossos-servicos h4 {
	padding-top:20px;
}
}

ul  {
	list-style-type:disc;
	margin-left:-10px;
}




/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  background:#fff;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
  background:#fff;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}



/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #838893;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.blog .posts-list .post-img img {
  transition: 0.5s;
}

.blog .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog .posts-list .post-content {
  padding: 30px;
}

.blog .posts-list .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog .posts-list .meta span {
  font-size: 15px;
  color: #838893;
}

.blog .posts-list p {
  margin-top: 20px;
}

.blog .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.blog .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
  color: var(--color-primary);
}

.blog .posts-list .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background:#fff;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content  p {
  color:#3b3b3b;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
  color:#3b3b3b;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background:#fff;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background:#fff;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}



/* ---------------------------------------
Página Mental
------------------------------------------*/

.mental-area  {
	padding:60px 0px;
	background:#a6bfdd url("../img/happyblue.jpg") 0 0 no-repeat;
}

.mental-area span {
	padding:30px;
	font-size:24px;
	font-weight:700;
	text-align:center;
	line-height:1.5;
	color:#0da481;
}

.mental-area h3 {
	margin-bottom:30px;
	font-weight:700;
	font-size:32px;
	text-align:center;
}

@media (max-width:500px) {
	.mental-area span {
	padding:20px;
	font-size:18px;
	font-weight:700;
	text-align:center;
	line-height:1.3;
	color:#0da481;
}

.mental-area h3 {
	margin-bottom:30px;
	font-weight:700;
	font-size:32px;
	text-align:center;
}

.mental-area p {
	font-size:14px;
}
}

.riscos  {
	padding:60px 0px;
	background:#fff;
}

.riscos h4 {
	font-size:32px;
	font-weight:700;
	line-height:1.4;
}

.sustenta  {
	padding:60px 0px;
	background:#b8ccea;
}

.sustenta h4 {
	font-size:32px;
	font-weight:700;
	line-height:1.4;
}

mark  {
	background-color:#9bcab7;
}

.2 mark  {
	background-color:#9bcab7;
	font-weight:600;
}


/*----------------------------------------
  6.Faq Area
----------------------------------------*/

.faq  {

}

.faq-area  {
  padding: 60px 0px 40px;
  background: #e9e9e9;
}

.faq-details .panel-heading {
  padding: 0;
}

.panel-default>.panel-heading {
  background:#0da481;
  border: medium none;
  color: #333;
}

.faq-details h4.check-title a {
  color: #fff;
  display: block;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 40px;
  padding: 6px 10px;
  text-decoration: none;
}

.panel-body {
  padding: 15px 15px 0px 50px;
}

.faq-details h4.check-title {
  color: #fff;
  font-size: 18px;
  line-height:1.2;
  padding:5px 0px 5px;
  font-weight: 600;
  margin-bottom: 0;
}

.faq-details a span.acc-icons {
  position: relative;
}

.faq-details a span.acc-icons::before {
  color: #fff;
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -50px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -10px;
  width: 42px;
}

.faq-details h4.check-title a.active, .faq-details a.active span.acc-icons::before {
  color: #fff;
   background:#0da481;
  
}

.faq-details a.active span.acc-icons::before {
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -50px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -10px;
  width: 42px;
  
}




