:root {
  --primary: #00a7d9;
  --dark-gray: #4B4B4B;
  --white: #FFF;
  --dark: #222222;
  --gray: #505050;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: var(--gray);
}

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background-color: var(--dark);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

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

.sticked-header-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  background: #00566f;
  height: 50px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

.topbar .getstarted {
  font-size: 14px;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none !important;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

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

  }

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

  .navbar li {
    position: relative;
  }

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

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

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

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

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

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

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

  .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
    color: var(--white);
    background: var(--primary);
    opacity: 0.9;
  }

  @media (min-width: 1280px) {

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

@media (max-width: 767px) {
  .header .logo {
    margin: 0 auto;
  }

  .header .container-fluid {
    justify-content: center;
    position: relative;
  }

  .header .mobile-nav-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}


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

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

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    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: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: #00566f;
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--primary);
    /* border: 1px solid #006459; */
  }

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

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

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

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

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

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 50px;
  transition: 0.5s;
}

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

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

@media (max-width: 575px) {
  .btn-get-started {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }
}

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

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

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

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title h3 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
  color: var(--white);
}

.section-title p {
  margin-bottom: 0;
  color: var(--white);
}

@media (max-width: 575px) {
  section {
    padding: 40px 0;
  }

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

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
.bannerSwiper .swiper {
  width: 100%;
  height: 100%;
}

.bannerSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.bannerSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bannerSwiper .swiper-button-next:after,
.bannerSwiper .swiper-button-prev:after {
  display: none;
}

.bannerSwiper .swiper-button-prev img {
  position: relative;
  left: 25%;
}

.bannerSwiper .swiper-button-prev,
.bannerSwiper .swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: transparent;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
}

.bannerSwiper .swiper-button-prev img,
.bannerSwiper .swiper-button-next img {
  position: relative;
  top: 100%;
  width: 100%;
  height: 100%;
}

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

#about h2 {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  color: var(--primary);
}

#about h3 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
}

#about p {
  text-align: justify;
  font-weight: 300;
}

#about .about-img img {
  width: 90%;
  position: relative;
  left: 8%;
}

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

@media (max-width: 768px) {
  #about .about-img img {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  #about {
    text-align: center;
    padding-bottom: 30px;
  }

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

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.modal .modal-content {
  background-color: #fefefe;
  margin: 7% auto;
  padding: 60px;
  border: 1px solid #fefefe;
  width: 90%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.no-scroll {
  overflow: hidden;
}

.modal .close {
  color: var(--dark);
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: 500;
}

.modal .close:hover,
.modal .close:focus {
  color: var(--dark-gray);
  text-decoration: none;
  cursor: pointer;
}

.modal #modal-title {
  font-size: 30px;
  font-weight: 600;
}

.modal h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--dark);
  padding-bottom: 5px;
}

.modal h3>span {
  color: var(--primary);
}

.modal .accordion-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

.modal .accordion-header {
  background-color: #f8f9fa;
  padding: 10px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.modal .accordion-button.static {
  background-color: #e9ecef;
  border: none;
  box-shadow: none;
  color: var(--dark);
  cursor: default;
  display: block;
  padding: 10px;
  text-align: left;
  width: 100%;
}

.modal .accordion-button {
  color: var(--dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .modal .modal-content {
    padding: 30px;
  }

  .modal #modal-title {
    margin-bottom: 20px !important;
  }

  .modal h3 {
    margin-top: 25px;
}
}

/*--------------------------------------------------------------
# Cursos
--------------------------------------------------------------*/
.cursos {
  background-color: var(--dark);
}

section.cursos {
  padding-top: 25px;
}

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

.cursos .filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.cursos .filtro {
  margin: 5px;
  padding: 10px 15px;
  background-color: var(--dark-gray);
  color: #F6F6F6;
  font-size: 15px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  border-radius: 50px;
}

.cursos .filtro:hover {
  background-color: var(--primary);
  color: var(--white);
}

.cursos .swiperCursos {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.cursos .swiper-wrapper {
  display: flex;
}

.cursos .swiper-slide {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
  box-sizing: border-box;
  width: 100%;
  margin-right: 0;
}

.cursos .course-card {
  /* background-color: var(--primary);
  padding: 20px 20px 0 20px; */
  border-radius: 10px;
  /* width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start; */
}

.cursos .course-card .card-body {
  padding: 16px 0;
}

.cursos .course-card .badge {
  background-color: var(--white);
  color: var(--dark-gray);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 10px;
}

.cursos .course-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
}

.cursos .course-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  align-self: center;
  margin-top: 35px;
}

.cursos .swiper-button-next:after,
.cursos .swiper-button-prev:after {
  display: none;
}

.cursos .swiper-button-prev,
.cursos .swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: transparent;
}

.cursos .swiper-button-prev img,
.cursos .swiper-button-next img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .cursos .swiper-slide {
    width: 100%;
  }
}

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

.why-us .box {
  padding: 50px 30px;
  background-color: var(--dark-gray);
  transition: all ease-in-out 0.3s;
  border-radius: 10px;
  text-align: center;
  height: 350px;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray);
}

.why-us .box h4 {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0;
  color: var(--primary);
}

.why-us .box p {
  font-size: 15px;
  margin: 0;
  padding: 0;
  color: var(--white);
}

.why-us .box i {
  font-size: 55px;
  color: var(--primary);
}

@media (max-width: 575px) {
  .why-us .box {
    height: 100%;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
  background-color: var(--dark);
}

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

.faq .faq-list li {
  background: #F6F6F6;
  margin-bottom: 20px;
}

.faq .faq-list .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 10px 0 10px 25px;
  cursor: pointer;
  color: var(--primary);
  background-color: var(--dark-gray);
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  padding-right: 20px;
}

.faq .faq-list .question i {
  margin-left: auto;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 25px;
  background-color: var(--dark-gray);
  color: var(--white);
}

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

.faq .faq-list .collapsed {
  color: var(--white);
  font-weight: 500;
}

.faq .faq-list .collapsed:hover {
  color: var(--primary);
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding-top: 60px;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
    url('../img/footer.webp');
  background-size: cover;
  background-position: center 30%;
  color: var(--white);
}

#footer .logo {
  width: 40%;
  margin-bottom: 20px;
}

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

#footer .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
}

#footer .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: var(--white);
  text-align: justify;
}

#footer h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-links ul i {
  padding-right: 2px;
  color: var(--primary);
  font-size: 11px;
  line-height: 1;
  vertical-align: middle;
}

#footer .footer-atendimento ul i {
  font-size: 23px;
  vertical-align: middle;
}

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

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

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

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

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: var(--white);
}

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

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

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

#footer .copyright {
  color: var(--white);
  font-size: 15px;
}

@media (max-width: 575px) {
  #footer {
    height: 100%;
    background-position: calc(50% - -50px) center;
  }

  #footer .copyright {
    font-size: 13px;
  }

  #footer .credits {
    padding-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Whats
--------------------------------------------------------------*/
@keyframes shake {
  0% {
    transform: translate(0.5px, 0.5px) rotate(0deg);
  }

  10% {
    transform: translate(-0.5px, -1px) rotate(-0.5deg);
  }

  20% {
    transform: translate(-1.5px, 0px) rotate(0.5deg);
  }

  30% {
    transform: translate(1.5px, 1px) rotate(0deg);
  }

  40% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg);
  }

  50% {
    transform: translate(-0.5px, 1px) rotate(-0.5deg);
  }

  60% {
    transform: translate(-1.5px, 0.5px) rotate(0deg);
  }

  70% {
    transform: translate(1px, 0.5px) rotate(-0.5deg);
  }

  80% {
    transform: translate(-0.5px, -0.5px) rotate(0.5deg);
  }

  90% {
    transform: translate(0.5px, 1px) rotate(0deg);
  }

  100% {
    transform: translate(0.5px, -1px) rotate(-0.5deg);
  }
}