body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ed8b27;
  text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ed8b27;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ed8b27;
  border-top-color: #fff;
  border-bottom-color: rgb(56, 60, 63);
  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);
  }
}

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

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffa64d;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  opacity: 90%;
  border-bottom: 4px solid #ed8b27;
}

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

#header .logo a {
  color: #fff;
}

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

/**
* 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: 500;
  color: #fff;
  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: #ed8b27;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #ed8b27;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ed8b27;
}

/**
* 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: #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: #9b6026;
  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: #000000;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #ed8b27;
  width: auto;
  max-width: max-content;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 44vh;
}
#hero .container {
  padding-top: 72px;
}
#hero .row {
  height: 340px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  font-size: 18px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  margin-bottom: 20px;
}

#hero .hero-img{
  height: 340px;  
  align-items: center;
  display: inline-flex;
}

@media (max-height: 740px) {
  #hero {
    height: 60vh;
  }
  
}

@media (max-width: 1024px) {
  #hero {
    height: 70vh;
    text-align: center;    
  }  

  #hero h1 {    
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;    
  }
  
  #hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    font-size: 22px;
  } 
}

@media (max-width: 991px) {
  #hero{
    height: 46vh;
  }

  #hero .row {       
    margin: initial;
  }
  #hero .hero-img {
    display: none;
  }  

  #hero .hero-img img {
    display: none;
  }
}

@media (max-width: 768px) {
  #hero{
    height: 60vh;
  }
  #hero h1 {
    font-size: 20px;
    line-height: 26px;
  }

  #hero h2 {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 30px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    display: none;
  }  

  #hero .hero-img img {
    display: none;
  }
}

@media (max-width: 820px) {
  #hero{
    height: 46vh;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    display: none;
  }  

  #hero .hero-img img {
    display: none;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

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

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

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

.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: #ed8b27;
  bottom: 0;
  left: calc(50% - 20px);
}

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

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .col-lg-6 {
  padding-left: 8%;
}

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

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li a {
  color: #444444;
  display: flex;
  align-items: flex-start;
}

.about .content ul li a:hover {
  color: #ed8b27;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul li a span {
  font-size: 10px;
  color: #ed8b27;
  padding-left: 2px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ed8b27;
  line-height: 1;
}

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

#about .resumo  p {
  font-weight: bold;
  font-size: 24px;  
  color: #ed8b27;
  margin-bottom: 10px
}

#about .resumo  ul {
  font-size: 16px;
  margin-bottom: 30px
}

#about .getstarted,
#about .getstarted:focus {
  padding: 8px 20px;
  margin-left: 45px;
  border-radius: 50px;
  color: #000000;
  font-size: 14px;
  border: 2px solid #ed8b27;
  font-weight: 600;
}

#about .getstarted:hover,
#about .getstarted:focus:hover {
  color: #fff;
  background: #ed8b27;
}

#about .youtube {
  width: 460px; 
  height: 258px; 
}

#about .btn-watch-video {
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  transition: 0.5s;  
  color: #000000;
  line-height: 1;
  justify-content: center; 
  padding-top: 10px;
}  

#about .btn-watch-video i {
  line-height: 0;
  color: #000000;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;  
}

#about .btn-watch-video:hover i {
  color: #ed8b27;    
}

@media (max-width: 550px) {
  #about .youtube {
    margin-left: 6%;
    /* width: auto; */
    height: 259px;
  }
}

@media (max-width: 991px) {
  #about .resumo  p {    
    margin-bottom: 30px;    
  }
}

@media (max-width: 414px) {
  .about .content {
    display: inline-flex;
  }
  
  #about .btn-watch-video{
    margin-left: initial;
  }
  #about .youtube {
    width: auto;
    margin-left: 17px;
  }
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
#why .card{
  width: 500px;
}
#why .card-title{  
  color: #ed8b27;
}

/*--------------------------------------------------------------
# Carrossel
--------------------------------------------------------------*/
.cursos {
  background: linear-gradient(rgba(33,37,41, 0.9), rgba(33,37,41, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cursos .section-title p {
  color: #fff;
}

.slick-slide {
 padding: 0px 10px;
 height: 340px; 
}

.slick-prev {
  display: flex;
}

.slick-next {
  display: flex;
  justify-content: end;
}

.slick-dots li button:before {
  color: #cbd6e9;
}

.slick-dots li.slick-active button:before { 
  color: #ffffff8f;
}

.cursos .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;
  border-radius: 5px;
}

.cursos .icon-box .icon {
  margin-bottom: 7px;
  margin-top: -30px;
}

.cursos .icon-box .icon i {
  color: rgb(56, 60, 63);
  font-size: 30px;
  transition: 0.3s;
  
}

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

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

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

.cursos .icon-box:hover {
  transform: translateY(+15px);
}

.cursos .icon-box:hover h4 a {
  color: #ff800085;
}

@media (max-width: 1400px) {  
  .slick-slide {    
    height: 400px; 
   }
}

@media (max-width: 768px) {
  .cursos .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
  }
  .cursos .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  .cursos .icon-box .icon {
    margin-bottom: 10px;
    margin-top: -20px;
  }
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
  /* width: auto; */
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: rgb(56, 60, 63);
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: rgb(56, 60, 63);
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #ed8b27;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ed8b27;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list .inside {
  padding-top: 18px;
}

.faq .faq-list .inside li {
  padding: 0px 20px;
}

.faq .faq-list .inside h6 {
  font-size: 17px;
  margin-bottom: 0px;
  padding-left: 10px;
}

.faq .faq-list .inside P {
  font-size: 14px;
}

.faq .faq-list .inside a {
  display: initial;
  font-size: 14px;  
  line-height: initial;
  font-weight: initial;
  padding: initial;  
  cursor: pointer;  
}

.faq .faq-list .inside2 a {
  display: initial;
  font-size: 16px;  
  line-height: initial;
  font-weight: initial;
  padding: initial;  
  cursor: pointer;  
}

.faq .faq-list .inside a:hover {
  color: #ff800085;
}

.faq .faq-list .inside2 a:hover {
  color: #ff800085;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: rgb(56, 60, 63);
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #ed8b27;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*----------------
 # FORMULARIO
------------------*/
#email .section-title {
  padding: 0px 0px;
}

#email .section-title h2 {
  margin-bottom: 0px;
}

#email .main {
  margin-bottom: -35px;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: -20px;
}
#email .inside2{
  display: flex;
  justify-content: center;
  margin-top: 50px;
  text-align: center; 
}
#email .inside2 p{
  border: 2px solid #000000;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: #f3f5fa;
  width: 652px;
}

#email .inside2 a{
  color: #ed8b27;
  font-weight: bolder;
}
#email .inside2 a:hover{
  color: #ff800085;
}

/*----------------
 # SIMULADOR
------------------*/
#simulador h2 {
  display: flex;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 20px;
  position: relative;
  color: #ed8b27;
}

#simulador .section-title {
  padding-bottom: 22px
}

#simulador h3 {
  display: flex;
  justify-content: center;
  color: #ed8b27;
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 18px;
}

.checklist {
	margin-bottom: 20px;
}

.checklist form {
  flex-wrap: wrap;
  display: flex;
  margin: 0 20px;
  justify-content: center;
}

.checklist label {
	display: flex;
	margin-bottom: 10px;  
  border: solid 2px #ed8b27;
  border-radius: 14px;
  padding: 0px 10px;
  margin: 5px 5px;
  width: max-content;
  text-align: start;
  align-items: center;
  cursor: pointer;
} 

.checklist label:hover {
  background-color: #faa24a;
  color: #fff;
  border: solid 2px #fff;
}

.checklist input {
  display: none;  
}

.checklist span {
  display: none;
}

.checklist .hours, .checklist .points {
	margin-left: 20px;
}

.result {
	border: 1px solid #ed8b27;
	padding: 10px;
	margin-bottom: 20px;
  display: grid;
  justify-content: center;
  margin: auto; 
  width: max-content;
  border-radius: 25px;
  font-size: 15px;
}

.result h3 {
  font-size: 18px !important;
  margin-bottom: 3px !important
}

.result p {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 6px;
  align-items: center;
}

.result span {
	font-weight: bold;
  color: #ed8b27;
  margin-left: 4px;
  margin-top: 2px;
  margin-bottom: initial;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: rgb(56, 60, 63);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background-color: #f3f5fa;
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #ed8b27;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top .footer-contact a {  
  color: #5e5e5e;
}

#footer .footer-top .footer-contact a:hover { 
  
  color: #ed8b27;
}

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

#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: #ed8b27;
  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: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgb(56, 60, 63);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

#footer .footer-bottom {
  padding-top: 23px;
  padding-bottom: 24px;
  color: #fff; 
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 0px 12px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;  
}

.whatsapp-button a {
  text-decoration: none;
  color: #fff;  
}

.whatsapp-button i {  
  font-size: 50px;
  transition: font-size 0.3s ease;
}

.whatsapp-button i:hover {
  font-size: 45px;
}

