/* ==========================================================================
 03. PRELOAD SPINNER
 =========================================================================== */
#loaderWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1030;
}
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9;
  margin-top: 0;
  top: 0;
}
.cssload-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -40px;
  margin-left: -40px;
  width: 50px;
  height: 50px;
  animation: cssload-invert 2.3s infinite steps(2, end);
  -o-animation: cssload-invert 2.3s infinite steps(2, end);
  -ms-animation: cssload-invert 2.3s infinite steps(2, end);
  -webkit-animation: cssload-invert 2.3s infinite steps(2, end);
  -moz-animation: cssload-invert 2.3s infinite steps(2, end);
}
.fancy-spinner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
}
.fancy-spinner div {
  position: absolute;
  width: 6rem;
  height: 6rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.fancy-spinner div.ring {
  border-width: 0.25rem;
  border-style: solid;
  border-color: transparent;
  -webkit-animation: 2s fancy infinite alternate;
  animation: 2s fancy infinite alternate;
}
.fancy-spinner div.ring:nth-child(1) {
  border-left-color: #002b52;
  border-right-color: #002b52;
}
.fancy-spinner div.ring:nth-child(2) {
  border-top-color: #002b52;
  border-bottom-color: #002b52;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.fancy-spinner div.dot {
  width: 1rem;
  height: 1rem;
  background: #002b52;
}
@-webkit-keyframes fancy {
  to {
    -webkit-transform: rotate(360deg) scale(0.5);
    transform: rotate(360deg) scale(0.5);
  }
}
@keyframes fancy {
  to {
    -webkit-transform: rotate(360deg) scale(0.5);
    transform: rotate(360deg) scale(0.5);
  }
}
header {
  background: #002b52;
}
header a {
  font-size: 1.125rem;
}
header a:hover {
  opacity: 0.6;
}
header .item-contact-header {
  gap: 8px;
}
header .item-contact-header figure img {
  height: 20px;
  width: 20px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(253deg) brightness(108%) contrast(106%);
}
/*FOOTER*/
footer {
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.23);
  background: #004685;
  padding: 2rem 0;
  /*SETA TOPO*/
  /*END SETA TOPO*/
}
footer #logo2 {
  gap: 20px;
}
footer #logo2 img {
  height: 30px;
}
footer .list-network {
  gap: 15px;
}
footer .list-network li a {
  line-height: 1;
}
footer .list-network li a img {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  object-fit: contain;
  -o-object-fit: contain;
}
footer .list-network li a:hover img {
  opacity: 0.6;
}
footer #arrowUp {
  position: fixed;
  right: 5px;
  bottom: 0px;
  cursor: pointer;
  font-size: 12px;
  z-index: 9;
  display: none;
  color: #fff;
  text-shadow: 0px 1px 1px #000;
  background-color: rgba(0, 43, 82, 0.6);
  padding: 5px 10px;
}
footer #arrowUp:hover {
  background-color: #002b52;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
footer #arrowUp img {
  height: 16px;
  filter: brightness(0) invert(1);
}
footer #devFooter a:hover {
  color: #99bce8;
}
@keyframes shake-animation {
  0% {
    transform: translate(0, 0);
  }
  1.78571% {
    transform: translate(5px, 0);
  }
  3.57143% {
    transform: translate(0, 0);
  }
  5.35714% {
    transform: translate(5px, 0);
  }
  7.14286% {
    transform: translate(0, 0);
  }
  8.92857% {
    transform: translate(5px, 0);
  }
  10.71429% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
footer #whatsFooter {
  position: fixed;
  bottom: 10px;
  left: 3%;
  z-index: 9;
}
footer #whatsFooter a {
  cursor: pointer;
  display: block;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -webkit-animation: shake-animation 4.72s ease infinite;
  -o-animation: shake-animation 4.72s ease infinite;
  animation: shake-animation 4.72s ease infinite;
}
footer #whatsFooter a:hover {
  opacity: 0.8;
}
/*END FOOTER*/
/* --- Transitions --- */
.transition-all {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.transition-color {
  transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
}
.transition-background {
  transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
}
.transition-opacity {
  transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
}
/* --- End Transitions --- */
body,
html {
  max-width: 100%;
}
a,
a:hover,
a:focus {
  color: inherit;
  outline: none;
  text-decoration: inherit;
}
a {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
figure {
  margin: 0;
}
body {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}
ul {
  margin: 0 auto;
  padding: 0;
}
ul li {
  list-style: none;
}
p {
  font-size: 1rem;
  line-height: 1.5;
}
.jumbotron {
  padding: 2rem 0;
  margin: 0;
}
h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.5;
}
.padding-block {
  padding: 60px 0;
}
.color-default {
  color: #002b52;
}
.bg-default {
  background: #002b52;
}
.color-secondary {
  color: #99bce8;
}
.background-secondary {
  background-color: #99bce8;
}
.bg-strong {
  background-color: #000000;
}
.background-dark {
  background-color: #20272b;
}
.bg-clean {
  background: #f7f7f7;
}
.text-color {
  color: #333333;
}
.visible-xs {
  display: none;
}
.visible-md {
  display: none;
}
.overflow-hidden {
  overflow: hidden;
}
@keyframes animation-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.btn-default {
  font-size: 1rem;
  line-height: 1.1;
  cursor: pointer;
  padding: 15px 20px;
  border: none;
  color: #fff;
  outline: none;
  background: #002b52;
  background-size: 0% 0%;
  background-position: 50% 50%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.btn-default:hover {
  background-size: 100% 100%;
  background-image: linear-gradient(#2e93cd, #2e93cd);
  background-repeat: no-repeat;
  color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  animation-name: animation-pulse-grow;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.title-block h2 {
  display: inline-block;
  border-bottom: 2px solid #002b52;
  padding: 0 20px 5px;
}
.cc_message a {
  display: none;
}
.cc_banner-wrapper .cc_container .cc_btn,
.cc_banner-wrapper .cc_container .cc_btn:visited {
  background-color: #002b52;
  color: #fff;
}
/*END STYLES GLOBAL*/
.swiper .swiper-slide {
  height: auto;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #002b52;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  background: none;
  padding: 10px 17px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 25px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  border: 2px solid #002b52;
}
.swiper .swiper-button-next:hover:after,
.swiper .swiper-button-prev:hover:after {
  background: #002b52;
  color: #fff;
}
.swiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #002b52;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  opacity: 1;
}
.swiper .swiper-pagination-bullet:hover,
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #002b52;
}
.swiper .swiper-button-next {
  right: 30px;
}
.swiper .swiper-button-prev {
  left: 30px;
}
/* FORMULÁRIO */
#overlayPage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
#formContactFixed {
  position: fixed;
  bottom: 0;
  right: 80px;
  z-index: 99;
}
#formContactFixed #collapseForm {
  min-width: 350px;
  background: #99bce8;
  padding: 30px;
  overflow: auto;
  max-height: 600px;
  max-width: 500px;
  position: relative;
  z-index: 99;
  -webkit-box-shadow: 0 0 27px -1px #002b52;
  -moz-box-shadow: 0 0 27px -1px #002b52;
  box-shadow: 0 0 27px -1px #002b52;
}
#formContactFixed button[aria-expanded=false] {
  -webkit-animation: shake-animation 4.72s ease infinite;
  -o-animation: shake-animation 4.72s ease infinite;
  animation: shake-animation 4.72s ease infinite;
}
#formContactFixed #buttonFormFixed {
  margin: 0;
  text-align: left;
  font-size: 1.125rem;
  padding: 8px 20px;
  background-color: #002b52;
  border: 2px solid #99bce8;
  border-bottom: none;
  color: #fff;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 3px #000;
}
form .alert-dismissible {
  padding-right: 20px;
}
form .alert-dismissible .close {
  float: right;
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  line-height: 1;
  font-size: 1.5rem;
}
form .invalid-tooltip {
  font-size: 11px;
}
.content-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
select.form-control:not([size]):not([multiple]) {
  height: 50px;
}
.form-group {
  width: 100%;
}
.form-group.field-col {
  flex: 1;
  width: calc(100% / 3);
  /* O numero define quantos campos maximo deve ter por linha, no caso aqui 3, pode ter 2 ou 3 */
  box-sizing: border-box;
}
.form-group select.form-control {
  padding: 6px 10px;
  color: #b0afaf;
}
.form-group select.form-control:focus {
  color: #b0afaf;
}
.form-group select.form-control:not([size]):not([multiple]) {
  height: 45px;
}
.form-group select.form-control:not([size]):not([multiple]).height-small {
  height: 35px;
}
.form-group select.form-control:not([size]):not([multiple]).height-large {
  height: 55px;
}
.form-group textarea.form-control {
  height: 85px;
  resize: none;
}
.form-group textarea.form-control.height-small {
  height: 65px;
}
.form-group textarea.form-control.height-large {
  height: 125px;
}
.form-group label {
  margin-bottom: 2px;
  font-size: 12px;
  text-align: left;
  width: 100%;
}
.form-group .form-control {
  height: 40px;
  color: #8e8e8e;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  padding: 5px 10px;
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.form-group .form-control:focus {
  border-color: #002b52;
  color: #000;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.form-group .form-control:hover {
  border-color: #002b52;
}
.form-group .form-control::placeholder {
  color: #8e8e8e;
  opacity: 1;
}
.form-group .form-control.height-small {
  height: 35px;
}
.form-group .form-control.height-large {
  height: 55px;
}
::-webkit-input-placeholder {
  color: #8e8e8e !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #8e8e8e !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #8e8e8e !important;
}
:-ms-input-placeholder {
  color: #8e8e8e !important;
}
/* END FORMULÁRIO */
.block-text ul li {
  list-style: inside;
  margin: 10px 0;
  font-size: 1rem;
}
.block-text ol {
  padding: 0;
}
.block-text ol li {
  list-style-position: inside;
  font-size: 1rem;
  margin-bottom: 10px;
}
.block-text ol li p {
  display: inline;
  margin: 0;
}
.block-text .fr-fic.fr-fil {
  max-width: 100%;
  height: auto;
  float: left;
  margin: 10px 20px 10px 0;
}
.block-text .fr-fic.fr-fir {
  float: right;
  margin: 10px 0 10px 20px;
}
.block-text h2,
.block-text h3,
.block-text h4,
.block-text h5,
.block-text h6 {
  margin-bottom: 10px;
  font-weight: bold;
}
.block-text a {
  color: #002b52;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  text-decoration: underline;
}
.block-text a:hover {
  color: #0060b8;
}
/*HOME*/
#conceptual .item-banner img {
  object-fit: cover;
  -o-object-fit: cover;
  height: calc(100vh - 60px);
  width: 100%;
}
#conceptual .content-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  /*.arrows {
        width: 30px;
        height: 40px;
        position: absolute;
        left: 50%;
        margin-left: -30px;
        bottom: 0;
    
        path {
          stroke: #fff;
          fill: transparent;
          stroke-width: 1px;
          animation: arrow 1s infinite;
          -webkit-animation: arrow 1s infinite;
    
          &.a1 {
            animation-delay:-1s;
            -webkit-animation-delay:-1s; !* Safari 和 Chrome *!
          }
    
          &.a2 {
            animation-delay:-0.5s;
            -webkit-animation-delay:-0.5s; !* Safari 和 Chrome *!
          }
    
          &.a3 {
            animation-delay:0s;
            -webkit-animation-delay:0s; !* Safari 和 Chrome *!
          }
        }
      }*/
}
#conceptual .content-banner .logo-banner img {
  max-height: 90px;
  margin: 0 auto 30px;
  object-fit: contain;
  -o-object-fit: contain;
  width: 200px;
}
#conceptual .content-banner .text-banner {
  width: 85%;
  margin: 0 auto;
}
#conceptual .content-banner .caption h1,
#conceptual .content-banner .caption h2 {
  font-weight: 800;
  font-size: 2.5rem;
}
#conceptual .content-banner .caption .description-banner h3 {
  font-size: 1.4rem;
  font-weight: bold;
}
#conceptual .content-banner .caption p {
  color: #fff;
}
#conceptual .content-banner .button-banner .btn-default {
  -webkit-box-shadow: 0 0 27px -1px #002b52;
  -moz-box-shadow: 0 0 27px -1px #002b52;
  box-shadow: 0 0 27px -1px #002b52;
  margin: 1rem auto;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 20px 80px;
}
#conceptual .content-banner .button-banner figure img {
  height: 20px;
  width: 10px;
  filter: brightness(0) invert(1);
}
@keyframes mouse-scroll {
  to {
    transform: translate(0, 6px) scale(1, 0.8);
  }
}
#conceptual .content-banner .moving-mouse-holder .mouse {
  width: 26px;
  height: 40px;
  position: relative;
  left: 0;
  margin: 0 auto;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  border: 2px solid #fff;
  cursor: pointer;
}
#conceptual .content-banner .moving-mouse-holder .mouse-button {
  background-color: #fff;
  width: 4px;
  height: 10px;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  margin: 0 0 0 -2px;
  animation: mouse-scroll 0.8s infinite alternate;
}
@-webkit-keyframes arrow {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes arrow {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
#conceptual .content-banner #arrow span {
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-animation: arrow 1s infinite;
  animation: arrow 1s infinite;
}
#conceptual .swiper .swiper-button-next,
#conceptual .swiper .swiper-button-prev {
  color: #fff;
}
#conceptual .swiper .swiper-button-next:after,
#conceptual .swiper .swiper-button-prev:after {
  border-color: #fff;
}
#conceptual .swiper .swiper-button-prev {
  left: 10px;
}
#info {
  padding-bottom: 130px;
  background: #f7f7f7;
}
#info .block-text {
  padding: 20px;
  background: #002b52;
  -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.17);
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.17);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  height: 100%;
}
#info h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
#modules #blockCta {
  position: relative;
  top: -45px;
}
#modules #blockCta h2 {
  background: #99bce8;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #002b52;
  padding: 30px 60px;
  font-size: 1.4rem;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.23);
  font-weight: 800;
}
#modules #contentModules {
  padding: 0 0 4rem;
  width: 90%;
  margin: 0 auto;
}
#modules #contentModules h3 {
  font-weight: 800;
}
#modules #contentModules .col-module {
  margin: 1rem 0;
}
#modules #contentModules .item-module {
  border: 1px solid #fff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 25px;
}
#modules #contentModules .item-module h4 {
  font-size: 1.1rem;
  font-weight: 800;
}
#modules #contentModules .item-module figure img {
  height: 150px;
  width: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}
#modules #contentModules .item-module ul li {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
#modules #contentModules .item-module ul li:before {
  display: inline-block;
  content: '';
  background: url('../themes/default/assets/images/icons/check-solid.svg') no-repeat center center;
  height: 20px;
  width: 20px;
  background-color: #99bce8;
  background-size: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#modules #contentModules .item-module ul li:last-child {
  margin-bottom: 0;
}
#testimonies #carouselTestimonies img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  -o-object-fit: cover;
}
#testimonies #carouselTestimonies .block-text {
  margin-left: 15px;
  width: 78%;
}
#testimonies #carouselTestimonies .block-text p {
  margin: 0;
  font-size: 15px;
}
#testimonies #carouselTestimonies .swiper-pagination {
  position: static;
  margin-top: 2rem;
}
#testimonies .text-carousel span {
  font-size: 1.5rem;
}
#plans .block-text {
  width: 90%;
}
#plans .block-text h2 {
  color: #99bce8;
}
#plans .block-text p {
  font-size: 1.2rem;
}
#plans #plansContent h3 {
  font-size: 1rem;
}
#plans #plansContent #tabNav {
  display: inline-block;
  background: #99bce8;
  padding: 10px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
#plans #plansContent .box-plan {
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px -5px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 0px 30px -5px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 30px -5px rgba(0, 0, 0, 0.35);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
#plans #plansContent .box-plan .price {
  padding: 1em 2em;
  background: #002b52;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
}
#plans #plansContent .box-plan .price span {
  font-size: 2.4rem;
  font-weight: 800;
}
#plans #plansContent .box-plan .price span span {
  font-size: 1rem;
  font-weight: 400;
}
#plans #plansContent .box-plan .benefits {
  padding: 30px;
}
#plans #plansContent .box-plan .benefits h4 {
  font-size: 1.2rem;
  font-weight: 800;
}
#plans #plansContent .box-plan .benefits ul {
  color: #002b52;
}
#plans #plansContent .box-plan .benefits ul li {
  padding: 10px 20px 10px 40px;
  margin: 0 -30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#plans #plansContent .box-plan .benefits ul li:before {
  display: inline-block;
  content: '';
  background: url('../themes/default/assets/images/icons/check-solid.svg') no-repeat center center;
  height: 20px;
  width: 20px;
  background-color: #99bce8;
  background-size: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(142deg) brightness(107%) contrast(101%);
}
#plans #plansContent .box-plan .benefits ul li:nth-child(even) {
  background-color: #F6F6F6;
}
#plans #plansContent .box-plan .benefits .button-plan .btn-default {
  display: block;
  font-size: 1.3rem;
  padding: 20px;
  font-weight: bold;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #002b52;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.nav-pills .nav-link {
  font-weight: 700;
  line-height: 1.2;
  color: #002b52;
}
.accordion .accordion-item {
  margin: 1rem 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: none;
}
.accordion .accordion-item button {
  background: #002b52;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 15px;
  font-size: 1rem;
  color: #fff;
}
.accordion .accordion-item button small {
  width: 90%;
  text-align: left;
  font-size: 1rem;
}
.accordion .accordion-item button span {
  font-size: 2.5rem;
  line-height: 0.7;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.accordion .accordion-item button[aria-expanded="true"] span {
  -webkit-transform: rotate(136deg);
  -moz-transform: rotate(136deg);
  -ms-transform: rotate(136deg);
  -o-transform: rotate(136deg);
  transform: rotate(136deg);
}
.accordion .card {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.accordion .card p {
  color: #333333;
  margin: 0 0 5px;
}
/*END HOME*/
/*RESPONSIVO*/
/* Large devices (desktops, less than 1200px) TABLET DEITADO */
@media (max-width: 1199px) {
  #conceptual .content-banner .caption h1,
  #conceptual .content-banner .caption h2 {
    font-weight: 800;
    font-size: 2rem;
  }
  #plans h2 {
    font-size: 1.6rem;
  }
  .swiper:hover .swiper-button-prev {
    left: 15px;
  }
  .swiper .swiper-button-next::after,
  .swiper .swiper-button-prev::after {
    padding: 10px 15px;
  }
  .swiper .swiper-button-next,
  #home #conceptualHome .swiper .swiper-button-next,
  #testimonies .swiper .swiper-button-next {
    right: 25px;
  }
  .swiper:hover .swiper-button-next,
  #home #conceptualHome .swiper:hover .swiper-button-next,
  #testimonies .swiper:hover .swiper-button-next {
    right: 25px;
  }
  /*END HOME*/
  /*INTERN*/
  .h3,
  h3 {
    font-size: 1.2rem;
  }
  .h1,
  h1 {
    font-size: 24px;
  }
  /*END INTERN*/
}
/* Medium devices (tablets, less than 992px) TABLET */
@media (max-width: 991px) {
  .mb-5,
  .my-5 {
    margin-bottom: 1.5rem !important;
  }
  header a {
    font-size: 1rem;
  }
  .padding-block {
    padding: 3rem 0;
  }
  /**********/
  #conceptual .item-banner img {
    height: 65vh;
  }
  #conceptual .content-banner .text-banner {
    width: 90%;
  }
  #info {
    padding-bottom: 80px;
  }
  #modules #blockCta h2 {
    padding: 30px;
    font-size: 1.3rem;
  }
  #modules #contentModules {
    width: auto;
  }
  #plans .block-text {
    width: auto;
  }
  #textBio img {
    height: 400px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
    -o-object-fit: contain;
    width: 100%;
  }
  /*END HOME*/
  /*INTERN*/
  .cc_banner-wrapper .cc_container .cc_message {
    margin-top: 0;
  }
  .cc_banner-wrapper .cc_container {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
  }
  /*END INTERN*/
}
/* Small devices (landscape phones, less than 768px)  md*/
@media (max-width: 767px) {
  .h2,
  h2 {
    font-size: 1.5rem;
  }
  .h3,
  h3 {
    font-size: 1.4rem;
  }
  .mt-5,
  .my-5 {
    margin-top: 2rem !important;
  }
  #iconNavicon label .lines {
    width: 22%;
  }
  #iconNavicon label input:checked ~ .lines span:nth-of-type(3) {
    transform: translate(12px, -6px) rotatez(46deg);
  }
  .btn-more,
  .btn-transparent,
  .btn-default {
    width: 100%;
  }
  .swiper .swiper-pagination {
    position: static;
    margin: 10px 0;
  }
  .swiper .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
  }
  #home #testimonies .item-testimonial {
    width: auto;
  }
  .padding-block {
    padding: 2rem 0;
  }
  .width-block {
    width: auto;
  }
  header a {
    font-size: 0.8rem;
  }
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    opacity: 1;
  }
  .swiper .swiper-button-next::after,
  .swiper .swiper-button-prev::after {
    padding: 10px 15px;
  }
  #formContactFixed {
    bottom: 0;
    right: inherit;
    left: 0;
    width: 100%;
    text-align: center;
  }
  #buttonCollapseForm {
    width: 95%;
  }
  #whatsFooter {
    bottom: 60px;
  }
  #arrowUp {
    right: 5px;
    bottom: 55px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  header ul {
    gap: 15px 0;
  }
  #conceptual .content-banner .text-banner {
    width: auto;
  }
  #conceptual .content-banner .caption .description-banner h3 {
    font-size: 1.25rem;
  }
  #conceptual .content-banner .logo-banner img {
    max-height: 60px;
    margin: 0 auto 10px;
  }
  #conceptual .content-banner .caption h1,
  #conceptual .content-banner .caption h2 {
    font-size: 1.5rem;
  }
  #conceptual .content-banner .caption .description-banner h3 {
    font-size: 1.125rem;
  }
  #conceptual .item-banner img {
    height: 700px;
  }
  #conceptual .content-banner #arrow span {
    bottom: -5px;
  }
  #modules #blockCta h2 {
    padding: 20px;
    font-size: 1.2rem;
  }
  #testimonies #carouselTestimonies .block-text {
    margin: 15px 0 0;
    width: auto;
  }
  #plans .block-text p {
    font-size: 1rem;
  }
  #plans h2 {
    font-size: 1.4rem;
  }
  #plans #plansContent .box-plan .benefits ul li {
    padding: 10px 20px;
  }
  .nav-pills .nav-link {
    padding: 10px;
  }
  .block-text .h2,
  .block-text h2 {
    font-size: 1.25rem;
  }
  .swiper .swiper-button-next,
  #home #conceptualHome .swiper .swiper-button-next,
  #testimonies .swiper .swiper-button-next {
    right: 15px;
  }
  footer #formContactFixed #buttonFormFixed {
    width: 95%;
    text-align: center;
  }
  footer #arrowUp {
    bottom: 60px;
  }
  footer #whatsFooter {
    bottom: 60px;
    left: 5%;
  }
  #copyrightNetwork {
    text-align: center;
  }
  #copyrightNetwork .list-network {
    justify-content: center;
    margin: 20px 0;
  }
  #textBio img {
    height: auto;
  }
  .form-group.field-col {
    width: 100%;
    flex: auto;
  }
}
/* Extra small devices (portrait phones, less than 576px) sm*/
