/**
* Template Name: Gp - v4.8.1
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  
  a {
    color: #ffc451;
    text-decoration: none;
  }
  
  a:hover {
    color: #ffd584;
    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;
    margin-right: 50px;
    right: 15px;
    bottom: 23px;
    z-index: 996;
    background: #ffc451;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #151515;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #e2df2b;
  }
  
  .back-to-top:hover i {
    color: #000000;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #151515;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 0px);
    left: calc(50% - 30px);
    border: 6px solid #ffc451;
    border-top-color: #151515;
    border-bottom-color: #151515;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s 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 {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background-color: #fff;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

/*--------------------------------------------------------------
# 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: 15px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  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: #0071a5;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  border: 2px solid;
  font-weight: 600;
  background-color: #0092b3;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: rgb(255, 255, 255);
  background: #31a9e1;
}

.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: #fff;
  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: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.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: #47b2e4;
}

.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: rgb(0, 0, 0);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.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: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #ffffff;
  background-color: #0062be;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  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: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
  
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: #0080bb;
  background-size: cover;
  position: relative;
}


#hero .container {
  position: relative;
  padding-top: 74px;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif; 
  margin-top: 60px;
}

#hero h1 span {
  color: #eeb600;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
 margin-top: 80px;
}

#hero .descricao1 img {
  margin-left: 33px;
}

#hero a {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

#hero a:hover {
  color: #3afa21;
  transition: all 0.4s ease-in-out;
}

.icon-box img:hover{
  max-width: 70px;
  transition: all 0.4s ease-in-out;
}

.icon-box img {
  max-width: 68px;
  display: inline-block;
  animation: animacao 1.4s linear;
  margin-left: 20px;
}

@keyframes animacao {
  0% {opacity: 0;}
  50% {opacity: 0.2;}
  100% {opacity: 1;}
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

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

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

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
/*--------------------------------------------------------------
# Area clientes
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Acessorios
--------------------------------------------------------------*/
.suporte .icon-box {
  text-align: center;
  padding: 40px 20px 40px 20px;
  transition: all ease-in-out 0.3s;
  background: rgb(255, 255, 255);
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
 a {
  text-decoration: none;
}
.suporte .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.suporte .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.suporte .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.suporte .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}
.suporte .icon-box h3 {
  color: #004e8d;
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.suporte a {
  color: #000000;
}
.suporte .icon-box a {
  font-size: 22px;
  color: #004e8d;
  transition: ease-in-out 0.3s;
}
.suporte .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.suporte .iconbox-blue i {
  color: #47aeff;
}
.suporte .iconbox-blue:hover .icon i {
  color: #fff;
}
.suporte .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.suporte .iconbox-orange i {
  color: #ffa76e;
}
.suporte .iconbox-orange:hover .icon i {
  color: #fff;
}
.suporte .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.suporte .iconbox-pink i {
  color: #e80368;
}
.suporte .iconbox-pink:hover .icon i {
  color: #fff;
}
.suporte .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.suporte .iconbox-yellow i {
  color: #ffbb2c;
}
.suporte .iconbox-yellow:hover .icon i {
  color: #fff;
}
.suporte .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.suporte .iconbox-red i {
  color: #ff5828;
}
.suporte .iconbox-red:hover .icon i {
  color: #fff;
}
.suporte .iconbox-red:hover .icon path {
  fill: #ff5828;
}
.suporte .iconbox-teal i {
  color: #11dbcf;
}
.suporte .iconbox-teal:hover .icon i {
  color: #fff;
}
.suporte .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
#       instaladores
--------------------------------------------------------------*/
.instaladores .icon-box {
  text-align: center;
  border: 1px solid #0371d8;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.instaladores .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #51bfff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}
.instaladores .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.instaladores .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.instaladores .icon-box a {
  color: #008d97;
  transition: ease-in-out 0.3s;
  font-weight: bold
}
.instaladores .icon-box a:hover {
  color: #389dd8;
}
.instaladores .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.instaladores .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# links úteis
--------------------------------------------------------------*/
.titulo-links {
  text-align: center;
}
.links .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.links .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #47aeff;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}
.links .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}
.links .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #fce5e5;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}
.links .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.links .icon-box h3 a {
  color: #000000;
}
.links .icon-box a {
  color: #156083;
}

.links .icon-box p {
  color: #000000;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.links .icon-box:hover {
  background: #47aeff;
  border-color: #47aeff;
  padding: 50px 20px 50px 20px;
}
.links .icon-box:hover .icon {
  background: #fff;
}
.links .icon-box:hover .icon i {
  color: #090909;
}
.links .icon-box:hover .icon::before {
  background: #000000;
}
.links .icon-box:hover h4 a, .links .icon-box:hover p {
  color: rgb(255, 255, 255);
}

/*--------------------------------------------------------------
# Area comercial
--------------------------------------------------------------*/
/*-------------------------------------------------------------
# Decoração do título
-------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.erp-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0 10px 0;
  line-height: 1px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.erp-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #00b7ff;
  margin: 4px 10px;
}

.erp-title p {
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  color: #000000;
}


/*-------------------------------------------------------------
# Beneficios
-------------------------------------------------------------*/
#beneficios .icon i{
    font-size: 23px;
    padding: 5px 10px 5px 10px;
    background-color: #00b7ff;
    border-radius: 5px; 
    color: #ffffff;
}

#beneficios .icon {
    margin: 10px 0 10px 0;
}

/*-------------------------------------------------------------
# Funcionalidades
-------------------------------------------------------------*/
.funcionalidades .icon-box {
    text-align: center;
    border: 1px solid #0055bc;
    padding: 40px 20px;
    transition: all ease-in-out 0.3s;
    background: rgb(255, 255, 255);
  }
  
  .funcionalidades .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #a1c5ff;
    border-radius: 4px;
    border: 1px solid #deebfd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
  }
  
  .funcionalidades .icon-box .icon i {
    color: #ffffff;
    font-size: 28px;
    transition: ease-in-out 0.3s;
  }
  
  .funcionalidades .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .funcionalidades .icon-box h4 a {
    color: #222222;
    transition: ease-in-out 0.3s;
  }
  
  .funcionalidades .icon-box p {
    font-size: 14px;
  }
  
  .funcionalidades .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
  }
  
  .funcionalidades .icon-box:hover h4 a,
  .funcionalidades .icon-box:hover .icon i {
    color: #106eea;
  }
  
  .funcionalidades .icon-box:hover .icon {
    border-color: #106eea;
  }
  
/*--------------------------------------------------------------
# Energia
---------------------------------------------------------------*/
/*--------------------------------------------------------------
# Distribuição de energia
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# modulos
--------------------------------------------------------------*/
.modulosEnergia .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.modulosEnergia .icon-box .icon {
  margin-bottom: 10px;
}

.modulosEnergia .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.modulosEnergia .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}
.modulosEnergia a {
  font-weight: 600;
  color: #005fb8;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.modulosEnergia .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.modulosEnergia .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: justify;
}

.modulosEnergia .icon-box:hover {
  transform: translateY(-10px);
}

.modulosEnergia .icon-box:hover h4 a {
  color: #47b2e4;
}
.section-title h2 {
  margin-top: 20px;
}

.energia .icon-box {
  margin-bottom: 20px;
  padding: 30px 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.energia .icon-box i {
  float: left;
  color: #1b67ad;
  font-size: 40px;
  line-height: 0;
}
.energia .icon-box h4 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.energia .icon-box h4 a {
  color: #2452a2;
  transition: 0.3s;
}
.energia .icon-box h4 a:hover {
  color: #2452a2;
}
.energia .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# FERRAGENS   
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Funcionalidades
--------------------------------------------------------------*/
.ferragensfuncionalidades .details {
  padding: 30px 30px;
  transition: all ease-in-out 0.3s;
  background: #feffff;
  text-align: center;
  border: 1px solid;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
  margin-top: 40px;
}

.ferragensfuncionalidades .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: #004859;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}

.ferragensfuncionalidades .details h3 {
  color: rgb(68, 66, 66);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.ferragensfuncionalidades .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: justify;
}

.ferragensfuncionalidades .service-item:hover .details h3 {
  color: black;
}

.ferragensfuncionalidades .service-item:hover .details .icon {
  background: #d4fbff;
  border: 2px solid var(--color-primary);
}

.ferragensfuncionalidades .service-item:hover .details .icon i {
  color: black;
}
section {
  padding: 20px 0;
  overflow: hidden;
}

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

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

.section-title h2 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

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


/*--------------------------------------------------------------
# beneficios
--------------------------------------------------------------*/
.ferragensbeneficios .icon-box {
  padding: 20px 20px;
  transition: all ease-in-out 0.4s;
  background: rgb(0, 139, 154);
}

.ferragensbeneficios .icon-box .icon {
  font-size: 30px;
  margin-bottom: 20px;
  color: #ffffff;
}

.ferragensbeneficios .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.ferragensbeneficios .icon-box h4 a {
  color: #ffffff;
  transition: ease-in-out 0.3s;
}

.ferragensbeneficios .icon-box p {
  font-size: 14px;
  margin-bottom: 0;
  color: #fff;
}

.ferragensbeneficios .icon-box:hover {
  transform: translateY(-10px);
}

.ferragensbeneficios .icon-box:hover h4 a {
  color: #47b2e4;
}
/*--------------------------------------------------------------
# Institucional
--------------------------------------------------------------*/
.main-timeline{ font-family: 'Poppins', sans-serif; }
  .main-timeline:after{
      content: '';
      display: block;
      clear: both;
  }
  .main-timeline .timeline{
      width: calc(50% + 50px);
      border-top: 2px solid #000000;
      float: left;
      position: relative;
      z-index: 1;
  }
  .main-timeline .timeline:before{
      content: "";
      background: #000000;
      width: 10px;
      height: 10px;
      border-radius: 50px;
      position: absolute;
      top: -5px;
      right: 0;
  }
  .main-timeline .timeline-content{
      color: #000000;
      text-align: center;
      padding: 15px 80px 15px 10px;
      display: block;
      position: relative;
  }
  .main-timeline .timeline-content:hover{ text-decoration: none; }
  .main-timeline .timeline-content:before{
      content: "";
      background: #2452a2;
      width: 15px;
      height: 100%;
      position: absolute;
      top: 0;
      right: 50px;
  }
  .main-timeline .timeline-year{
      font-size: 35px;
      line-height: 35px;
      font-weight: 700;
      transform: translateY(-50%) rotate(90deg);
      position: absolute;
      top: 50%;
      right: -15px;
  }
  .main-timeline .title{
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 40px;
  }
  .main-timeline .description{
      font-size: 16px;
      margin: 0;
  }
  .main-timeline .timeline:nth-child(even){ float: right; }
  .main-timeline .timeline:nth-child(even):before{
      right: auto;
      left: 0;
  }
  .main-timeline .timeline:nth-child(even) .timeline-content{
      padding: 15px 10px 15px 80px;
  }
  .main-timeline .timeline:nth-child(even) .timeline-content:before{
      right: auto;
      left: 51px;
  }
  .main-timeline .timeline:nth-child(even) .timeline-year{
      right: auto;
      left: -15px;
  }
  .main-timeline .timeline:nth-child(4n+2) .timeline-content:before{ background: #ff3e7c; }
  .main-timeline .timeline:nth-child(4n+3) .timeline-content:before{ background: #7438be; }
  .main-timeline .timeline:nth-child(4n+4) .timeline-content:before{ background: #bdc203; }
  @media screen and (max-width:767px){
      .main-timeline .timeline{ width: 100%; }
  }.pt-100{
    padding-top:100px;
}
.pb-100{
    padding-bottom:100px;
}


ul.timeline-list {
	position: relative;
	margin: 0;
	padding: 0
}
ul.timeline-list:before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	background-color: #2452a2;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
ul.timeline-list li {
	position: relative;
	clear: both;
	display: table;
}
.timeline_content {
	border: 2px solid #2452a2;
	background-color:#fff
}
ul.timeline-list li .timeline_content {
	width: 45%;
	color: #333;
	padding: 30px;
	float: left;
	text-align: right;
}
ul.timeline-list li:nth-child(2n) .timeline_content {
	float: right;
	text-align: left;
}
.timeline_content h4 {
	font-size: 22px;
	font-weight: 600;
	margin: 10px 0;
}
ul.timeline-list li:before {
	position: absolute;
	content: "";
	width: 25px;
	height: 25px;
	background-color: #2452a2;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	border-radius: 50%;
}
.timeline_content span {
	font-size: 18px;
	font-weight: 500;
	font-family: poppins;
	color: #2452a2;
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}


.text-left {
      text-align: left;
}

.timeline_content p {
    text-align: justify;
}

/*--------------------------------------------------------------
# Livros
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# funcionalidades
--------------------------------------------------------------*/
.livrosfuncionalidades .icon-box {
  text-align: center;
  border: 1px solid #00969b;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.livrosfuncionalidades .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f3f8ec;
  border-radius: 50px;
  border: 1px solid #00969b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.livrosfuncionalidades .icon-box .icon i {
  color: #005560;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.livrosfuncionalidades .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.livrosfuncionalidades .icon-box h4 a {
  color: #353535;
  transition: ease-in-out 0.3s;
}

.livrosfuncionalidades .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.livrosfuncionalidades .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.livrosfuncionalidades .icon-box:hover h4 a,
.livrosfuncionalidades .icon-box:hover .icon i {
  color: #00969b;
}

.livrosfuncionalidades .icon-box:hover .icon {
  border-color: #00969b;
}
/*--------------------------------------------------------------
# Pedidos
--------------------------------------------------------------*/
.section-header h2 {
  text-align: center;
}

.pedidosfuncionalidades h2{
  text-align: center;
}

.pedidosfuncionalidades h4 {
  color: #004c70;
  text-align: center;
}

.pedidosfuncionalidades p{
  text-align: center;
  font-size: 20px;
}

.descricao p {
  text-align: justify;
}

.pedidosfuncionalidades .service-item {
  position: relative;
}

.pedidosfuncionalidades .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.pedidosfuncionalidades .service-item .title a {
  color: rgb(5, 66, 145);
}

.pedidosfuncionalidades .service-item .title a:hover {
  color: #38618e;
}

/*--------------------------------------------------------------
# Receituario
--------------------------------------------------------------*/
  /*--------------------------------------------------------------
# Funcionalidades
--------------------------------------------------------------*/
.receiturariofuncionalidades .icon-box {
  text-align: center;
  border: 3px solid #90c8ff;
  border-radius: 8px;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
}

.receiturariofuncionalidades .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #d3eaff;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.receiturariofuncionalidades .icon-box .icon i {
  color: rgb(0, 0, 0);
  font-size: 28px;
}

.receiturariofuncionalidades .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #9ccfff;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.receiturariofuncionalidades .icon-box h4 {
  font-weight: 700;
  font-size: 24px;
}
.receiturariofuncionalidades p {
  text-align: left;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Beneficios
--------------------------------------------------------------*/
.receiturariobeneficios h2 {
  margin-bottom: 10px;
}
.section-title p {
  text-align: center;
}
.receiturariobeneficios .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border: solid 1px  rgb(174, 251, 255);
  border-radius: 8px;
  z-index: 1;
}

.receiturariobeneficios .icon-box::before {
  content: "";
  position: absolute;
  background: #caeeff;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.receiturariobeneficios .icon-box:hover::before {
  background: #e0efff;
  top: 0;
  border-radius: 0px;
}


.receiturariobeneficios .icon-box:hover .title a,
.receiturariobeneficios .icon-box:hover .description {
  color: #000000;
  font-size: 16px;
}
/*--------------------------------------------------------------
# Retifica
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Beneficios
--------------------------------------------------------------*/
.card {
  border: none;
}
.card h3{
  text-align: center;
  margin-top: 10px;
  color: #004c70;
}

.card p {
  margin: 0 15px 10px 15px;
  text-align: justify;
}

/*-------------------------------------------------------------
# Decoração do título
-------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

#hero h1 {
  font-size: 43px;
}

.section-title {
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 20px 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #00b7ff;
  margin: 4px 10px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #151515;
  text-align: center;
}
/*--------------------------------------------------------------
# funcionalidades
--------------------------------------------------------------*/
.retificafuncionalidades .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  text-align: justify;
}

.retificafuncionalidades .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #00b2b8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.retificafuncionalidades .icon-box .icon i {
  color: #ffffff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.retificafuncionalidades .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
}

.retificafuncionalidades .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.retificafuncionalidades .icon-box h4 a:hover {
  color: #008bdc;
}

.retificafuncionalidades .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.retificafuncionalidades .icon-box:hover {
  border-color: rgb(0, 105, 143);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
/*--------------------------------------------------------------
# Serviços
--------------------------------------------------------------*/
.efeito-titulo h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #005284;
  margin-top: 20px;
}
.efeito-titulo h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.efeito-titulo h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #138ad3;
  bottom: 0;
  left: calc(50% - 20px);
}
ul {
  text-align: left;
}
/*--------------------------------------------------------------
# Sped
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Beneficios
--------------------------------------------------------------*/
.spedbeneficios .box {
  padding: 30px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  margin-bottom: 30px;
}

.sped-title h4 {
  font-size: 18px; 
}

.sped-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0 10px 0;
  line-height: 1px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.sped-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #00b7ff;
  margin: 4px 10px;
}

.sped-title p {
  margin-bottom: 18px;
  font-size: 25px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

.spedbeneficios .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #25c8ba;
}

.spedbeneficios .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #000000;
}

.spedbeneficios .box p {
  color: #000000;
  font-size: 15px;
  margin: 0;
  padding: 0;
  text-align: justify;
}

.spedbeneficios .box:hover {
  background: #e1fbff;
  padding: 30px 30px 40px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.spedbeneficios-us .box:hover span,
.spedbeneficios-us .box:hover h4,
.spedbeneficios-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# funcionalidades
--------------------------------------------------------------*/
.spedfuncionalidades .icon-box {
  padding-top: 40px;
  margin-top: 35px;
  border: 1px solid #ebe6e4;
  position: relative;
  background: #faf9f8;
}

.spedfuncionalidades .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  background: #007a7e;
}

.spedfuncionalidades .icon i {
  color: #fff;
  font-size: 24px;
}


.spedfuncionalidades .icon-box:hover .icon {
  background: #fff;
  border: 2px solid #009ba0;
}

.spedfuncionalidades .icon-box:hover .icon i {
  color: #009ba0;
}

.spedfuncionalidades .icon-box:hover .title a {
  color: #009ba0;
}




/*--------------------------------------------------------------
# Módulos
--------------------------------------------------------------*/
.spedmodulos .icon-box {
  padding: 50px 20px;
  margin-top: 35px;
  margin-bottom: 10px;
  text-align: center;
  border: 1px solid #007090;
  position: relative;
  background: #faf9f8;
}

.spedmodulos .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #00b0b3;
}

.spedmodulos .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

.spedmodulos .title {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.spedmodulos .title a {
  color: #343a40;
}

.spedmodulos .icon-box:hover .icon {
  background: #fff;
  border: 2px solid #00aba3;
}

.spedmodulos .icon-box:hover .icon i {
  color: #00aba3;
}

.spedmodulos .icon-box:hover .title a {
  color: #00a8ae;
}

.spedmodulos .description {
  font-size: 14px;
  text-align: justify;
}
/*--------------------------------------------------------------
# Vagas
--------------------------------------------------------------*/
.titulo {
  margin-top: 20px;
  text-align: center;
}
.separador {
  width: 100%;
  right: 20px;
  border: 0.5px solid ;
  align-items: center;
  color: rgba(0, 0, 77, 0.292);
}

/* CSS DESENVOLVIMENTO*/
.desenvolvimento img {
  margin-top: 45px;
}

.desenvolvimento .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.desenvolvimento .content ul {
  list-style: none;
  padding: 0;
}

.desenvolvimento .content ul li {
  padding-bottom: 1px;
}

.desenvolvimento .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3b4ef8;
}

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


  /* CSS SUPORTE*/
  .suporte img {
    margin-top: 60px;
  }
  .suporte .content+.content {
    margin-top: 100px;
  }
  
  .suporte .content h3 {
    font-weight: 600;
    font-size: 26px;
  }
  
  .suporte .content ul {
    list-style: none;
    padding: 0;
  }
  
  .suporte .content ul li {
    padding-bottom: 1px;
  }
  
  .suporte .content ul i {
    font-size: 20px;
    color: #3b4ef8;
  }
  
  .suporte .content p:last-child {
    margin-bottom: 0;
  }

  .suporte p {
    font-size: 20px;
  }
  
  .suporte a{
    font-size: 16px;
    color: #004c70;
  }

  /* CSS COMERCIAL*/
  .comercial .content+.content {
    margin-top: 100px;
  }
  
  .comercial .content h3 {
    font-weight: 600;
    font-size: 26px;
  }
  
  .comercial .content ul {
    list-style: none;
    padding: 0;
  }
  
  .comercial .content ul li {
    padding-bottom: 1px;
  }
  
  .comercial .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #3b4ef8;
  }
  
  .comercial .content p:last-child {
    margin-bottom: 0;
  }
  
  

  /* CSS ESTAGIO*/
.estagio img {
  margin-top: 50px;
}

.estagio .content+.content {
    margin-top: 100px;
  }
  
  .estagio .content h3 {
    font-weight: 600;
    font-size: 26px;
  }

  .estagio h4{
    font-size: 19px;
  }
  
  .estagio .content ul {
    list-style: none;
    padding: 0;
  }
  
  .estagio .content ul li {
    padding-bottom: 1px;
  }
  
  .estagio .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #3b4ef8;
  }
  
  .estagio .content p:last-child {
    margin-bottom: 0;
  }
/*--------------------------------------------------------------
# ERP
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}
/*--------------------------------------------------------------
# Ramos que atende
--------------------------------------------------------------*/
.ramos h3{
  text-align: center;
  font-size: 20px;
}

.ramos .img-icon img{
  max-width: 50px;
  margin-left: 50px;
}

/*--------------------------------------------------------------
# Funcionalidade
--------------------------------------------------------------*/

.erpfuncionalidades .service-item {
  position: relative;
}

.erpfuncionalidades .service-item .icon i {
  font-size: 32px;
  color: #38618e;
}

.erpfuncionalidades .service-item .title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.erpfuncionalidades .service-item .title a {
  color: var(--color-secondary);
}

.erpfuncionalidades .service-item .title a:hover {
  color: #38618e;
}

/*--------------------------------------------------------------
# ERP 
--------------------------------------------------------------*/
.erp .icon-box {
  text-align: center;
  border: 1px solid #78b5ff;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.erp .icon-box .icon i {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.erp .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.erp .icon-box h4 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
}

.erp .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.erp .icon-box p {
  font-size: 14px;
  text-align: justify;
}

.erp .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.erp .icon-box:hover h4 a,
.erp .icon-box:hover .icon i {
  color: #106eea;
}

.erp .icon-box:hover .icon {
  border-color: #106eea;
}

/*--------------------------------------------------------------
#Modulos
--------------------------------------------------------------*/
.saber-mais {
  text-align: center;
}
.saber-mais a{
  color: #005284;
  margin-top: 40px;
  font-weight: bold;
}

.modulos .icon-box {
  border: 1px solid #ebebeb;
  padding: 10px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.modulos .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #7cfff8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: 0.3s;
}

.modulos .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.modulos h4 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}

.modulos .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.modulos .icon-box h4 a:hover {
  color: #00c5cc;
}

.modulos .icon-box:hover {
  border-color: rgb(11, 183, 236);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}


/*--------------------------------------- 
             Videos NF3-e
  -------------------------------------*/
  /*--------------------------------------------------------------
# videosNF3e 
--------------------------------------------------------------*/
.efeito-titulo h2{
  text-align: center;
}
.videosNF3e .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #001f8d;
  margin-top: 150px;
}

.videosNF3e img {
  margin-top: 150px;
}

.videosNF3e .content ul {
  list-style: none;
  padding: 0;
}

.videosNF3e .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}

.videosNF3e .content li i {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--color-primary);
  margin-right: 10px;
}

.videosNF3e .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.videosNF3e .content ul p {
  font-size: 15px;
}

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

.videosNF3e .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1977cc 50%, rgba(25, 119, 204, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(53% - 0px);
  overflow: hidden;
}

.videosNF3e .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.videosNF3e .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(25, 119, 204, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.videosNF3e.play-btn:hover::after {
  border-left: 15px solid #1977cc;
  transform: scale(20);
}

.videosNF3e .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.videoesquerdo .icon-boxes h4 {
  font-size: 18px;
  color: #4b7dab;
}

.videoesquerdo img {
  padding-top: 80px;
}

.videoesquerdo ul li{
  list-style: none;
}

.videoesquerdo .content ul li {
  display: flex;
  margin-top: 10px;
}

.videoesquerdo .content li i {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--color-primary);

}
.videoesquerdo .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
}

.videoesquerdo .icon-box {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  line-height: 0;
}

.videoesquerdout .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.videoesquerdo .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.videoesquerdo .icon-box .title a:hover {
  color: #1977cc;
}

.videoesquerdo .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.videoesquerdo .video-box {
  background-size: cover;
}

.videoesquerdo .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1977cc 50%, rgba(25, 119, 204, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 0px);
  overflow: hidden;
}

.videoesquerdo .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.videoesquerdo .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(25, 119, 204, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.videoesquerdo .play-btn:hover::after {
  border-left: 15px solid #1977cc;
  transform: scale(20);
}

.videoesquerdo .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Ativo imobilizado
--------------------------------------------------------------*/
.ativo .icon-box {
  border: 1px solid #fff2f2;
  padding: 30px 10px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.ativo .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #89bbb4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.ativo .icon-box .icon i {
  color: #ffffff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.ativo .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.ativo .icon-box h4 {
  color: #000000;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.ativo .icon-box h4 a:hover {
  color: #6b4700;
}

.ativo .icon-box p {
  font-size: 14px;
  color: #000000;
}

.ativo.icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Contabilidade
--------------------------------------------------------------*/
.contabilidademodulos .service-item {
  position: relative;
}

.contabilidademodulos h4 {
  text-align: center;
}

.contabilidademodulos .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.contabilidademodulos .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.contabilidademodulos .service-item .title a {
  color: var(--color-secondary);
}

.contabilidademodulos .service-item .title a:hover {
  color: #38618e;
}

.contabilidademodulos .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Contabilidade funcionalidades
--------------------------------------------------------------*/
.contabilidadefuncionalidades .icon-box {
  text-align: center;
  padding: 30px 0px 30px 20px;
  transition: all ease-in-out 0.3s;
  background: rgb(255, 255, 255);
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.contabilidadefuncionalidades .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.contabilidadefuncionalidades .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.contabilidadefuncionalidades .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.contabilidadefuncionalidades .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.contabilidadefuncionalidades .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.contabilidadefuncionalidades .icon-box h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}

.contabilidadefuncionalidades .icon-box p {
  font-size: 14px;
}

.contabilidadefuncionalidades .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.contabilidadefuncionalidades .iconbox-blue i {
  color: #47aeff;
}

.contabilidadefuncionalidades .iconbox-blue:hover .icon i {
  color: #fff;
}

.contabilidadefuncionalidades .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.contabilidadefuncionalidades .iconbox-orange i {
  color: #ffa76e;
}

.contabilidadefuncionalidades .iconbox-orange:hover .icon i {
  color: #fff;
}

.contabilidadefuncionalidades .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.contabilidadefuncionalidades .iconbox-pink i {
  color: #e80368;
}

.contabilidadefuncionalidades .iconbox-pink:hover .icon i {
  color: #fff;
}

.contabilidadefuncionalidades .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.contabilidadefuncionalidades .iconbox-yellow i {
  color: #ffbb2c;
}

.contabilidadefuncionalidades .iconbox-yellow:hover .icon i {
  color: #fff;
}

.contabilidadefuncionalidades .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.contabilidadefuncionalidades .iconbox-red i {
  color: #ff5828;
}

.contabilidadefuncionalidades .iconbox-red:hover .icon i {
  color: #fff;
}

.contabilidadefuncionalidades .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.contabilidadefuncionalidades .iconbox-teal i {
  color: #11dbcf;
}

.contabilidadefuncionalidades .iconbox-teal:hover .icon i {
  color: #fff;
}

.contabilidadefuncionalidades .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}


/*--------------------------------------------------------------
# Folha de pagamento
--------------------------------------------------------------*/
.folha .icon-box {
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
}

.folha .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #00a6c4;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.folha .icon-box .icon i {
  font-size: 28px;
}

.folha .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
}

.folha .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

.folha .icon-box p {
  font-size: 14px;
  margin-bottom: 0;
}

.folha .icon-box:hover {
  transform: translateY(-10px);
  border-color: #007599;
}

.folha .icon-box:hover h4 a {
  color: #006e99;
}


/*--------------------------------------------------------------
# Módulo de grãos
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# requisitos
--------------------------------------------------------------*/
.requisitosgraos {
  padding-top: 20px;
}

.requisitosgraos .img-icon h3{
  text-align: center;
  font-size: 20px;
}

.requisitosgraos .img-icon img{
  max-width: 50px;
  margin-left: 50px;
}

/*--------------------------------------------------------------
# gerenciamento
--------------------------------------------------------------*/
.gerenciamento {
  padding: 0;
}

.gerenciamento .icon-box {
  padding: 20px;
  color: #5f687b;
  background: #f9f9fa;
  border-radius: 4px;
  border: 1px solid #f9f9fa;
  transition: 0.3s;
  height: 100%;
}

.gerenciamento .icon {
  margin: 0 0 15px 0;
  text-align: center;
}

.gerenciamento .icon i {
  color: #006cb4;
  font-size: 36px;
}

.gerenciamento .title {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}

/*--------------------------------------------------------------
# Funcionamento
--------------------------------------------------------------*/
.funcionamento .icon-box {
  padding: 20px 20px 20px 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.funcionamento .icon-box::before {
  content: "";
  position: absolute;
  background: #007adf;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.4s;
  z-index: -1;
}

.funcionamento .icon-box:hover::before {
  background: #eef8ff;
  top: 0;
  border-radius: 0px;
}

.funcionamento .icon {
  margin-bottom: 15px;
}

.funcionamento .icon i {
  font-size: 48px;
  line-height: 1;
  color: #6aa3fa;
  transition: all 0.3s ease-in-out;
}

.funcionamento .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

.funcionamento .title a {
  color: #111;
}

.funcionamento p {
  font-size: 15px;
  margin-bottom: 0;
  text-align: justify;
}

.funcionamento .icon-box:hover .title a,
.funcionamento .icon-box:hover .description {
  color: #fff;
}

.funcionamento .icon-box:hover .icon i {
  color: rgb(34, 122, 255);
}

/*--------------------------------------------------------------
# Ordens em curso
--------------------------------------------------------------*/
.ordensFunc .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.ordensFunc .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.ordensFunc .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.ordensFunc .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.ordensFunc .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.ordensFunc .icon-box h4 a:hover {
  color: #ffc451;
}

.ordensFunc .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.ordensFunc .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}


/*--------------------------------------------------------------
# NF3-e
--------------------------------------------------------------*/
.nf3-e .service-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.nf3-e .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.nf3-e .service-box h3 {
  color: #444444;
  font-weight: 700;
}

.nf3-e .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.nf3-e .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.nf3-e .service-box.blue {
  border-bottom: 3px solid #2db6fa;
}

.nf3-e .service-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}

.nf3-e .service-box.blue .read-more {
  color: #2db6fa;
}

.nf3-e .service-box.blue:hover {
  background: #2db6fa;
}

.nf3-e .service-box.orange {
  border-bottom: 3px solid #f68c09;
}

.nf3-e .service-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}

.nf3-e .service-box.orange .read-more {
  color: #f68c09;
}

.nf3-e .service-box.orange:hover {
  background: #f68c09;
}

.nf3-e .service-box.green {
  border-bottom: 3px solid #08da4e;
}

.nf3-e .service-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}

.nf3-e .service-box.green .read-more {
  color: #08da4e;
}

.nf3-e .service-box.green:hover {
  background: #08da4e;
}

.nf3-e .service-box.red {
  border-bottom: 3px solid #e9222c;
}

.nf3-e .service-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}

.nf3-e .service-box.red .read-more {
  color: #e9222c;
}

.nf3-e .service-box.red:hover {
  background: #e9222c;
}

.nf3-e .service-box.purple {
  border-bottom: 3px solid #b50edf;
}

.nf3-e .service-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}

.nf3-e .service-box.purple .read-more {
  color: #b50edf;
}

.nf3-e .service-box.purple:hover {
  background: #b50edf;
}

.nf3-e .service-box.pink {
  border-bottom: 3px solid #f51f9c;
}

.nf3-e .service-box.pink .icon {
  color: #f51f9c;
  background: #feecf7;
}

.nf3-e .service-box.pink .read-more {
  color: #f51f9c;
}

.nf3-e .service-box.pink:hover {
  background: #f51f9c;
}

.nf3-e .service-box:hover h3,
.nf3-e .service-box:hover p,
.nf3-e .service-box:hover .read-more {
  color: #fff;
}

.nf3-e .service-box:hover .icon {
  background: #fff;
}


/*--------------------------------------------------------------
# georreferenciamento
--------------------------------------------------------------*/
.georreferenciamento .icon-box {
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
}

.georreferenciamento .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #009961;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.georreferenciamento .icon-box .icon i {
  font-size: 28px;
}

.georreferenciamento .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.georreferenciamento .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

.georreferenciamento .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.georreferenciamento .icon-box:hover {
  transform: translateY(-10px);
  border-color: #009961;
}

.georreferenciamento .icon-box:hover h4 a {
  color: #009961;
}

/*--------------------------------------------------------------
# Coletor mobile
--------------------------------------------------------------*/
.coletor .icon-box {
  text-align: center;
  border: 1px solid #fff;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.coletor .icon-box .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.coletor .icon-box .icon i {
  color: #16df7e;
  font-size: 36px;
  transition: 0.3s;
}

.coletor .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.coletor .icon-box h4 a {
  color: #5f687b;
  transition: ease-in-out 0.3s;
}

.coletor .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.coletor .icon-box:hover {
  border-color: #eaecef;
}

.coletor .icon-box:hover h4 a {
  color: #16df7e;
}

/*--------------------------------------------------------------
# funcionalidades coletor
--------------------------------------------------------------*/
.coletorfunc .icon-box {
  text-align: center;
  border: 1px solid #d5e1ed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.coletorfunc .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #1977cc;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.coletorfunc .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.coletorfunc .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #badaf7;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.coletorfunc .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.coletorfunc .icon-box h4 a {
  color: #2c4964;
}

.coletorfunc .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.coletorfunc .icon-box:hover {
  background: #1977cc;
  border-color: #1977cc;
}

.coletorfunc .icon-box:hover .icon {
  background: #fff;
}

.coletorfunc .icon-box:hover .icon i {
  color: #1977cc;
}

.coletorfunc .icon-box:hover .icon::before {
  background: #3291e6;
}

.coletorfunc .icon-box:hover h4 a,
.coletorfunc .icon-box:hover p {
  color: #fff;
}
/*--------------------------------------------------------------
# whatsapp cobranças
--------------------------------------------------------------*/
.titulo h2, p{
  text-align: center;
}
.cobrancas .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.cobrancas .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.cobrancas .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.cobrancas .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.cobrancas .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.cobrancas .icon-box h4 a:hover {
  color: #ffc451;
}

.cobrancas .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.cobrancas .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}



/*--------------------------------------------------------------
# contato
--------------------------------------------------------------*/
.contato .info {
  width: 100%;
  background: #fff;
}

.contato .info i {
  font-size: 20px;
  background: #5ad3db;
  color: #ffffff;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contato .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contato .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #000000;
}

.contato .info .email,
.contato .info .phone {
  margin-top: 40px;
}

.contato .php-email-form {
  width: 100%;
  background: #fff;
}

.contato .php-email-form .form-group {
  padding-bottom: 8px;
}

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

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

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

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

.contato .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;
}

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

.contato .php-email-form input:focus,
.contato .php-email-form textarea:focus {
  border-color: #51ccb7;
}

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

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

.contato .php-email-form button[type=submit] {
  background: #51ccb7;
  border: 0;
  padding: 10px 24px;
  color: #ffffff;
  transition: 0.4s;
  border-radius: 4px;
}

.contato .php-email-form button[type=submit]:hover {
  background: #51ccb7;
}

@-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 {
  background: rgb(0, 88, 160);
  padding: 0 0 30px 0;
  color: rgb(255, 255, 255);
  font-size: 14px;
}

#footer .footer-top {
  background: linear-gradient(to right, #1487a3, #457b9d, #a8dadc);
  border-bottom: 1px solid #017eb8;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
  text-align: justify;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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;
  color: #ffc451;
  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 {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}