:root {
  --primary: #64AD8F;
  --secondary: #F7A13E;
  --white: #FFF;
  --gray: #F8F9FA;
  --dark: #252525;


  --font-family-raleway: 'Raleway', sans-serif;
  --font-family-poppins: 'Poppins', sans-serif;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

@font-face {
  font-family: 'Raleway';
  src:
    url('../fonts/raleway/Raleway-Light.ttf') format('truetype'),
    url('../fonts/raleway/Raleway-Regular.ttf') format('truetype'),
    url('../fonts/raleway/Raleway-Medium.ttf') format('truetype'),
    url('../fonts/raleway/Raleway-SemiBold.ttf') format('truetype'),
    url('../fonts/raleway/Raleway-Bold.ttf') format('truetype');
  font-weight: var(--font-weight-light) var(--font-weight-regular) var(--font-weight-medium) var(--font-weight-semibold) var(--font-weight-bold);
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src:
    url('../fonts/poppins/Poppins-Light.ttf') format('truetype'),
    url('../fonts/poppins/Poppins-Regular.ttf') format('truetype'),
    url('../fonts/poppins/Poppins-Medium.ttf') format('truetype'),
    url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: var(--font-weight-light) var(--font-weight-regular) var(--font-weight-medium) var(--font-weight-semibold);
  font-display: swap;
}

/* body {
  font-family: var(--font-family-raleway); 
  font-weight: var(--font-weight-regular); 
} */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-family-poppins);
  color: #444444;
}

a {
  text-decoration: none;
  color: #5a5af3;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-raleway);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: transparent;
}

#header.header-scrolled, #header.header-inner-pages {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

.header-inner-pages .navbar a,
.header-scrolled .navbar a {
  color: var(--dark);
}

.header-inner-pages .navbar .getstarted,
.header-inner-pages .navbar .getstarted:focus,
.header-scrolled .navbar .getstarted,
.header-scrolled .navbar .getstarted:focus {
  border-color: var(--primary);
  color: var(--white);
}

.header-scrolled .logo img {
  filter: invert(100%);
}

.header-inner-pages.header-scrolled .logo img {
  filter: none;
}

#header .logo img {
  max-height: 40px;
  width: 100%;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--font-weight-medium);
  color: var(--white);
  white-space: nowrap;
  transition: 0.3s;
}

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

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

.navbar .getstarted, .navbar .getstarted:focus {
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--primary);
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--primary);
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

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

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: #5a5af3;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--white);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(100, 173, 143, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: var(--white);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--dark);
}

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

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}

/* .navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
} */
/* 
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
  color: #5a5af3;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  background: linear-gradient(180deg, rgba(0, 5, 18, 0.6) 0%, rgba(31, 31, 33, 0.41) 100%), url(../img/background/hero.webp) center/cover no-repeat;
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  width: 100%;
  height: 100vh;
  /* border-bottom: 2px solid white; */
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 55px;
  font-weight: var(--font-weight-bold);
  line-height: 56px;
  color: var(--white);
}

@media (max-width: 768px) {
  #hero {
    height: 500px;
  }

  #hero h1 {
    font-size: 40px;
    line-height: 36px;
  }
}

@media (max-width: 575px) {
  #hero {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

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

.section-title h2 {
  font-size: 40px;
  line-height: 1.1em;
  font-weight: var(--font-weight-regular);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--dark);
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-title {
    text-align: center;
  }

  .section-title h2 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-get-started,
.btn-get-quote {
  font-family: var(--font-family-raleway);
  font-weight: var(--font-weight-medium);
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 20px 9px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: 0.5s;
}

.btn-get-started {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  margin-right: 10px;
}

.btn-get-started:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

@media (max-width: 575px) {
  .btn-get-started {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .item-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 20px 40px 20px;
  transition: all ease-in-out 0.3s;
  background: var(--gray);
  border-radius: 8px;
  /* box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08); */
}

.services .item-box h4 {
  font-weight: var(--font-weight-semibold);
  margin: 15px 0 10px 0;
  font-size: 22px;
  color: var(--dark);
}

.services .item-box p {
  line-height: 24px;
  margin-bottom: 0;
}

.services .item-box a {
  font-weight: var(--font-weight-medium);
  line-height: 17px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 20px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  position: relative;
  height: 100%;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/background/about.webp') no-repeat bottom right / 50% auto;
  opacity: 0.2;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about .section-title p {
  text-align: justify;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  background-color: var(--gray);
}

.features .card {
  border: none;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;
  border-radius: 8px;
}

.features .card h4 {
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  padding: 0;
  margin-bottom: 10px;
  color: var(--dark);
}

.features .card p {
  margin: 0;
  padding: 0;
}

.features .card img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  background-color: var(--primary);
}

.why-us .section-title h3,
.why-us .section-title h2 {
  color: var(--white);
}

.why-us .item-box {
  height: 100%;
  padding: 40px 20px 40px 20px;
  transition: all ease-in-out 0.3s;
  background: var(--gray);
  border-radius: 8px;
  /* box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08); */
}

.why-us .item-box h4 {
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  padding: 0;
  margin: 15px 0 10px 0;
  color: var(--dark);
}

.why-us .item-box p {
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .countsSwiper {
  padding: 30px;
}

.counts .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.counts .swiper-slide img:hover {
  filter: none;
}

.counts .swiper-button-next:after, .swiper-button-prev:after {
  font-size: 23px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark);
}

.counts .count-box {
  width: 100%;
  position: relative;
  text-align: center;
}

.counts .count-box span,
.counts .count-box h2 {
  display: inline;
  font-size: 48px;
  font-weight: var(--font-weight-semibold);
  vertical-align: middle;
  color: var(--dark);
  font-family: var(--font-family-poppins);
  letter-spacing: normal;
}

.counts .count-box span {
  letter-spacing: -0.1em;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Location
--------------------------------------------------------------*/
.location .tab {
  border-bottom: 1px solid #ccc;
}

.location .tab-link {
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  color: var(--primary);
  background-color: transparent;
  border: none;
}

.location .tab-content iframe {
  border: 0;
  float: right;
  border-radius: 5px;
  width: 95%;
  height: 370px;
}

@media (max-width: 768px) {
  .location .tab-link {
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    color: var(--primary);
    border-bottom: 1px solid #ccc;
  }

  .location .tab-content iframe {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Projetos
--------------------------------------------------------------*/
.projetos .container {
  padding-top: 80px;
}

.projetos .item h4 {
  font-weight: var(--font-weight-semibold);
  margin: 15px 0;
  font-size: 35px;
  color: var(--primary);
}

.projetos .item p {
  text-align: justify;
}

.projetos .img-left {
  float: right;
}

.projetos .img-right {
  float: left;
}

@media (max-width: 768px) {

  .projetos .img-left,
  .projetos .img-right {
    float: none;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: var(--white);
}

.contact .info-box i {
  font-size: 32px;
  color: #5a5af3;
  border-radius: 50%;
  padding: 8px;
}

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

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

.contact .php-email-form {
  background: var(--white);
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--white);
  background: #ed3c0d;
  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: var(--white);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--white);
  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 #18d26e;
  border-top-color: #eee;
  -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;
  border-radius: 8px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #5a5af3;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

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

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

.contact .php-email-form button[type=submit]:hover {
  background: #7272f5;
}

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--white);
  font-size: 14px;
  background: #383838;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--dark);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact img {
  width: 80%;
  margin-bottom: 20px;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-family-raleway);
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  color: var(--white);
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--primary);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
  color: var(--primary);
}

#footer .social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: #deddec;
  color: var(--primary);
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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