:root {
  --color-primary: #01BB97;
  --color-secondary: #FDB001;
  --color-white: #FFF;
  --color-gray: #4A4A4A;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

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

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

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

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

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

.back-to-top:hover {
  background: var(--color-secondary);
  color: var(--color-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;
  background-color: #000;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: var(--color-primary);
}

#header .logo img {
  max-height: 60px;
}

@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;
  font-weight: 600;
  color: var(--color-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(--color-white);
}

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

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: var(--color-white);
  background: var(--color-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(--color-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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--color-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(1, 187, 151, 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: 10px;
  background-color: var(--color-white);
  overflow-y: auto;
  transition: 0.3s;
}

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

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
  color: var(--color-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(--color-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
--------------------------------------------------------------*/
.shape-hero {
  /* background: url(../img/img-desktop.png) no-repeat; */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/img-desktop.png);
  width: 100%;
  height: 100vh;
  background-position: top center;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  position: relative;
}

.shape-hero::before {
  content: '';
  height: 100%;
  left: -50%;
  position: absolute;
  top: 100%;
  transform-origin: right;
  transform: skewY(10deg);
  width: 100%;
}

.shape-hero::after {
  content: '';
  height: 100%;
  right: -50%;
  position: absolute;
  top: 100%;
  transform-origin: left;
  transform: skewY(-10deg);
  width: 100%;
}

.shape-hero::before,
.shape-hero::after {
  background-color: var(--color-white);
}

/* #hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/img-slide-desktop.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
} */

#hero h1 {
  margin: 0;
  font-size: 47px;
  font-weight: 500;
  line-height: 56px;
  color: var(--color-white);
  font-family: "Poppins", sans-serif;
}

#hero span {
  font-size: 55px;
  font-weight: 600;
}

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

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero {
    overflow-x: hidden;
  }

  .shape-hero {
    background-position: calc(100% - 30%);
  }

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

  #hero .hero-img img {
    width: 70%;
  }

  body {
    overflow-x: hidden;
  }
}

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

  #hero .hero-img img {
    width: 80%;
  }

  body {
    overflow-x: hidden;
  }
}

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

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

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

/* 
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #434175;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5a5af3;
  bottom: 0;
  left: calc(50% - 25px);
} */

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background-color: var(--color-white);
}

.about .content h2 {
  font-weight: 800;
  font-size: 44px;
  line-height: 50px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.about .content p {
  font-weight: 500;
  color: var(--color-gray);
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  text-align: justify;
}


.about .content .um {
  background: url(../img/icon/1.svg) top left no-repeat;
  background-size: 60px;
  padding-left: 80px;
  margin-bottom: 20px;
}

.about .content .dois {
  background: url(../img/icon/2.svg) top left no-repeat;
  background-size: 60px;
  padding-left: 80px;
  margin-bottom: 20px;
}

.about .content .tres {
  background: url(../img/icon/3.svg) top left no-repeat;
  background-size: 60px;
  padding-left: 80px;
  margin-bottom: 20px;
}

.about .content .quatro {
  background: url(../img/icon/4.svg) top left no-repeat;
  background-size: 60px;
  padding-left: 80px;
  margin-bottom: 20px;
}

.about .content .infos span {
  font-size: 18px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  color: var(--color-primary);
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  /* transform: skewY(-3deg);
  background-color: #007E7A; */
  background: url(../img/bg1.png) no-repeat;
  overflow: hidden;
  position: relative;
  color: var(--color-white);
}

/* .services-content {
  transform: skewY(3deg);
}
 */

.services .section-title h2 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .services {
    background-position: calc(100% - 50%);
  }
}

/*--------------------------------------------------------------
# Roadmap
--------------------------------------------------------------*/
.roadmap {
  position: relative;
  /* margin-top: 50px; */
  background-color: #F3F3F3;
}

.roadmap:before {
  position: absolute;
  content: '';
  background: url(../img/testimonials-left-dec.png) no-repeat;
  left: 0px;
  top: 5px;
  width: 500px;
  height: 352px;
  z-index: 1;
  opacity: 0.3;
}

.roadmap:after {
  position: absolute;
  content: '';
  background: url(../img/testimonials-right-dec.png) no-repeat;
  right: 0px;
  bottom: -50px;
  width: 600px;
  height: 352px;
  z-index: 1;
  opacity: 0.3;
}

.roadmap h2 {
  font-weight: 800;
  font-size: 44px;
  line-height: 50px;
  margin: 0 0 50px;
  color: var(--color-primary);
}

.roadmap-carousel {
  position: relative;
}

.roadmap-carousel::before {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  top: 20px;
  left: 0;
  border-top: 2px dashed var(--color-primary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 6px;
  left: 50%;
  margin-left: -15px;
  background: #FFFFFF;
  border: 2px solid var(--color-primary);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
}

.roadmap-carousel .roadmap-item {
  position: relative;
  padding: 150px 0;
  text-align: center;
}

.roadmap-carousel .roadmap-item h5 {
  font-size: 23px;
  font-weight: 600;
}

.roadmap-carousel .roadmap-item span {
  font-size: 16px;
  color: var(--color-gray);
  font-weight: 500;
}

.roadmap-carousel .roadmap-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 115px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-right: 2px dashed var(--color-gray);
}

.roadmap-carousel .roadmap-item::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 111px;
  left: 50%;
  margin-left: -7px;
  transform: rotate(45deg);
  background: var(--color-primary);
}

.roadmap-carousel .swiper-button-prev,
.roadmap-carousel .swiper-button-next {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.roadmap-carousel .swiper-button-prev,
.roadmap-carousel .swiper-button-next {
  margin: 0 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--color-white);
  background: var(--color-primary);
  transition: .5s;
  top: 70%;
}

.roadmap-carousel .swiper-button-prev::after,
.roadmap-carousel .swiper-button-next::after {
  font-size: 22px;
}

.roadmap-carousel .swiper-button-prev:hover,
.roadmap-carousel .swiper-button-next:hover {
  color: var(--color-primary);
  background: var(--color-secondary);
}

.roadmap-carousel .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 40%;
  left: auto;
}

.roadmap-carousel .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 40%;
  right: auto;
}

@media (max-width: 768px) {
  .roadmap:before {
    width: 100%;
  }

  .roadmap:after {
    width: 100%;
  }

  .roadmap-carousel .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 20%;
    left: auto;
  }

  .roadmap-carousel .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 20%;
    right: auto;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .section-title h2 {
  font-weight: 800;
  font-size: 44px;
  line-height: 50px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.team .section-title h3 {
  font-weight: 800;
  font-size: 30px;
  line-height: 50px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.team .section-title p {
  font-weight: 500;
  color: var(--color-gray);
  font-family: "Raleway", sans-serif;
  font-size: 15px;
}

.bg-elipse {
  background: url(../img/elipse-bg-three.png) no-repeat;
  background-position: center;
  background-size: contain;
}

.team .app-screen {
  margin: 40px 0;
}

.team .feature-item .icon i {
  font-size: 48px;
  color: #01BB97;
}

.team .feature-item .content p {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  color: var(--color-gray);
}

.team .feature-item:not(:last-child) {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .team .feature-item {
    margin-bottom: 80px;
  }
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news {
  background-color: #F3F3F3;
}

.news h2 {
  font-weight: 800;
  font-size: 44px;
  line-height: 50px;
  margin-bottom: 50px;
  color: var(--color-primary);
}

.news .swiper-slide .card {
  height: 100%;
  border-color: #F3F3F3;
}

.news .swiper-slide .card img {
  height: 190px;
}

.news .swiper-slide .card .card-title {
  font-size: 21px;
  color: #007E7A;
  margin-bottom: 25px;
}

.news .swiper-slide .card .card-text {
  font-size: 16px;
  color: var(--color-gray);
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}

.news .swiper-slide .card i {
  font-size: 50px;
  color: var(--color-secondary);
  font-weight: 500;
}

.news .swiper-slide .card a {
  text-decoration: none;
  text-align: right;
}

.news .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: .5s;
  top: 95%;
}

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

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

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

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

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

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  font-size: 18px;
  line-height: 1;
}

#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;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
}

#footer .footer-credit {
  border-top: 1px solid #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: transparent;
  border: 1px solid var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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