
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

html{
  scroll-behavior: smooth !important;
}

:root {
  --primary: #003397;
  --accent: #003397;
  --secondary: #ff7000;
  --success: #35bb78;
  --info: #05B4E1;
  --warning: #FAC14D;
  --danger: #FF4943;
  --grey: #B4B2C5;
  --dark: #2D2B3A;
  --light: #F6F5FC;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  color: #2D2B3A;
}

*{
  font-family: 'Poppins', sans-serif;
}

a {
  color: #003397;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #5641df;
  text-decoration: underline;
}

.row-main{
  height: 100%;
}

.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-md {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 17px !important;
  color: #fff;
  text-align: center;
  padding-top: 5px;
}

.text-xl {
  font-size: 20px !important;
}

/* Color systems */
.bg-primary {
  background-color: #003397 !important;
}

a.bg-primary:hover, a.bg-primary:focus {
  background-color: #ff7000 !important;
}

.bg-accent {
  background-color: #003397 !important;
}

a.bg-accent:hover, a.bg-accent:focus {
  background-color: #e93577 !important;
}

.bg-secondary {
  background-color: #ff7000 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus {
  background-color: #59547c !important;
}

.bg-success {
  background-color: #35bb78 !important;
}

a.bg-success:hover, a.bg-success:focus {
  background-color: #28a868 !important;
}

.bg-info {
  background-color: #05B4E1 !important;
}

a.bg-info:hover, a.bg-info:focus {
  background-color: #07a2c8 !important;
}

.bg-warning {
  background-color: #FAC14D !important;
}

a.bg-warning:hover, a.bg-warning:focus {
  background-color: #ebb039 !important;
}

.bg-danger {
  background-color: #FF4943 !important;
}

a.bg-danger:hover, a.bg-danger:focus {
  background-color: #e73832 !important;
}

.bg-grey {
  background-color: #8e8aad !important;
}

a.bg-grey:hover, a.bg-grey:focus {
  background-color: #7d7a99 !important;
}

.bg-light {
  background-color: #F6F5FC !important;
}

a.bg-light:hover, a.bg-light:focus {
  background-color: #EDECF5 !important;
}

.bg-dark {
  background-color: #2D2B3A !important;
}

a.bg-dark:hover, a.bg-dark:focus {
  background-color: #1d1b25 !important;
}

.text-primary {
  color: #003397 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #ff7000 !important;
}

.text-accent {
  color: #003397 !important;
}

a.text-accent:hover, a.text-accent:focus {
  color: #e93577 !important;
}

.text-secondary {
  color: #003397 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #59547c !important;
}

.text-success {
  color: #35bb78 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #28a868 !important;
}

.text-info {
  color: #05B4E1 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #07a2c8 !important;
}

.text-warning {
  color: #FAC14D !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ebb039 !important;
}

.text-danger {
  color: #FF4943 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #e73832 !important;
}

.text-grey {
  color: #8e8aad !important;
}

a.text-grey:hover, a.text-grey:focus {
  color: #7d7a99 !important;
}

.text-light {
  color: #F6F5FC !important;
}

a.text-light:hover, a.text-light:focus {
  color: #EDECF5 !important;
}

.text-dark {
  color: #2D2B3A !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1d1b25 !important;
}

.text-body {
  color: #3f3d4d !important;
}


.border {
  border-color: #e9e8f5 !important;
}

.border-top {
  border-top-color: #e9e8f5 !important;
}

.border-right {
  border-right-color: #e9e8f5 !important;
}

.border-bottom {
  border-bottom-color: #e9e8f5 !important;
}

.border-left {
  border-left-color: #e9e8f5 !important;
}

.border-primary {
  border-color: #003397 !important;
}

.border-accent {
  border-color: #003397 !important;
}

.border-secondary {
  border-color: #003397 !important;
}

/* Buttons */
.btn {
  transition: all .2s ease;
}

.btn:focus {
  box-shadow: none !important;
}

.btn-primary {
  color: #fff;
  background-color: #ff7000;
  border: 2px solid #ff7000;
  font-size: 18px;
  font-weight: 600;
}

.btn-primary:hover {
  color: #ff7000;
  background-color: transparent;
  border: 2px solid #ff7000;
}

.btn-secondary {
  color: #fff;
  background-color: #003397;
  border: 2px solid #003397;
  font-size: 18px;
  font-weight: 600;
}

.btn-secondary:hover {
  color: #003397;
  background-color: transparent;
  border: 2px solid #003397;
}


.btn-info {
  color: #fff;
  background-color: #05B4E1;
  border-color: transparent;
}

.btn-light {
  color: #8e8aad;
  background-color: #F5F9F6;
  border-color: transparent;
}

.btn-dark {
  color: #fff;
  background-color: #2D2B3A;
  border-color: transparent;
}

.btn-outline {
  border-color: #D7D5E9;
  color: #003397;
}

.btn-outline:hover {
  background-color: #F6F5FC;
}

.btn-outline-primary {
  color: #003397;
  border-color: #003397;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #003397;
  border-color: #003397;
}


.btn-link {
  font-weight: 400;
  color: #ff7000;
  text-decoration: none;
}


.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled, .btn-link.disabled {
  color: #003397;
  pointer-events: none;
}


.btn {
  padding: 8px 24px;
}

.breadcrumb {
  font-weight: 500;
  background-color: #f8f9fa;
}

.breadcrumb .breadcrumb-item.active {
  color: #8e8aad;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #8e8aad;
}

.breadcrumb-dark .breadcrumb-item a {
  color: #003397;
}

.breadcrumb-dark .breadcrumb-item a:hover {
  color: #003397;
  text-decoration: none;
}


.navbar {
  min-height: 70px;
  z-index: 1000;
}

.navbar-float {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(100, 95, 136, 0.15);
  z-index: 1070;
}

.navbar.sticky {
  z-index: 1080;
}

.navbar.sticky.fixed ~ * {
  margin-top: 70px;
}

.navbar.sticky.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: navTransition .5s ease;
  box-shadow: 0 2px 6px rgba(100, 95, 136, 0.15);
  z-index: 1080;
}

@keyframes navTransition {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

.navbar-brand {
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-nav {
  margin-top: 10px;
  border-top: 1px solid #e4e7ee;
  flex-shrink: 0;
}

.nav-btn{
  background-color:#ff7000;
  border: 1px solid #ff7000;
  border-radius: 7px;
  color: #fff !important;
  padding: 0.5rem 0.9rem;
}


.nav-btn:hover{
  background-color:#fff;
  border: 1px solid #ff7000;
  text-decoration: none !important;
  border-radius: 7px;
  color: #ff7000 !important;
  transition: 0.4s !important;
}

.navbar-nav .nav-link {
  transition: all .2s ease;
}

.navbar-nav .btn {
  font-size: 14px;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(100, 95, 136, 0.75);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: #003397;
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  font-weight: 500;
  color: #003397;
}


@media (min-width: 576px) {
  .navbar-expand-sm .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-sm .navbar-nav {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-md .navbar-nav {
    align-items: center;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-lg .navbar-nav {
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-xl .navbar-nav {
    align-items: center;
  }
}

.form-control {
  padding: 8px 15px;
  height: calc(1.5em + 1.375rem + 2px);
  border-color: #d6dbd9;
}

.custom-select {
  height: calc(1.5em + 1.375rem + 2px);
}

.page-link {
  margin-left: 5px;
  min-width: 40px;
  color: #B4B2C5;
  border: 1px solid #dee1e6;
  text-align: center;
  border-radius: 4px;
}

.page-link:hover {
  color: #003397;
  background-color: #F6F5FC;
  border-color: #dee1e6;
}

.page-link:focus {
  box-shadow: none;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #003397;
  border-color: #4330c2;
}

.page-item.disabled .page-link {
  color: #003397;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}


.img-place {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.img-place img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.bg-image {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-image > * {
  position: relative;
  z-index: 10;
}

.bg-image-parallax {
  background-attachment: fixed;
}

.bg-image-overlay-dark {
  position: relative;
}

.bg-image-overlay-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-color: #343531;
}

.bg-size-50 {
  background-size: 50% 50%;
}

.bg-size-75 {
  background-size: 75% 75%;
}

.bg-size-100 {
  background-size: 100% 100%;
}

.avatar {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}

.avatar-img {
  margin-right: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-img img {
  width: 100%;
  height: 100%;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(224, 223, 233, 0.7);
  visibility: hidden;
  cursor: pointer;
  transition: all .2s ease;
  z-index: 1100;
}

.back-to-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -4px auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid #555;
  border-right: 2px solid #555;
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.back-to-top:hover {
  background: #003397;
}

.back-to-top:hover::after {
  border-color: #fff;
}


.page-section {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fff;
  overflow: hidden;
}

.page-section p {
  padding: 10px 0px;
  color: #898798;
  font-size: 15px;
}


.page-banner {
  position: relative;
  margin-top: 16px;
  margin-bottom: 16px;
  height: 320px;
  background-color: #F6F5FC;
  color: #003397;
  border-radius: 30px;
}

.page-banner.home-banner {
  margin-top: 100px;
  height: auto;
  background-color: #fff;
  border-radius: 0;
}

.page-banner.home-banner h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0px!important;
}

.page-banner.home-banner .img-place {
  max-width: 400px;
  margin: 0 auto;
}

.page-banner.home-banner .btn-scroll {
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  margin: auto;
  width: 26px;
  height: 40px;
  line-height: 44px;
  background-color: #fff;
  color: #003397;
  text-align: center;
  border-radius: 40px;
  box-shadow: 0 2px 6px rgba(100, 95, 136, 0.24);
  transition: all .2s ease;
}

.page-banner.home-banner .btn-scroll:hover {
  text-decoration: none;
  background-color: #003397;
  color: #fff;
}

@media (min-width: 768px) {
  .page-banner.home-banner {
    height: 600px;
  }
}

@media (min-width: 992px) {
  .page-banner.home-banner {
    margin-top: 0;
  }
}

.page-hero.overlay-dark::before,
.page-banner.overlay-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 53, 49, 0.7);
  z-index: 1;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  font-size: 14px;
}

.home-banner{
  background-image:url('../img/bg-teste.png');
  background-size:cover;
  background-repeat: no-repeat;
  background-attachment:scroll;
  background-position: center;
  width:100%;
  height:550px !important;
  top: 65px;
  margin-top: 0;
}


.subhead {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #898798;
  font-weight: 500;
  margin-bottom: 8px;
}

.title-section {
  color: #2D2B3A;
  font-weight: 600;
  padding-top: 20px;
}

.title-section .marked {
  position: relative;
  color: #003397;
}

.title-section .marked::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #003397;
  z-index: -1;
}

.text-center .title-section {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  display: block;
  margin-top: 16px;
  margin-bottom: 32px;
  width: 32px;
  height: 3px;
  border-radius: 40px;
  background-color: #003397;
}



.btn-split {
  display: inline-flex;
  align-items: center;
  border-radius: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 6px;
}

.btn-split .fab {
  display: inline-block;
  margin-left: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
  background-color: #fff;
  color: #003397;
}


.card-service {
  display: block;
  margin: 16px auto;
  padding: 32px 20px;
  max-width: 300px;
  text-align: center;
  color: #898798;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(95, 92, 120, 0.12);
}

.card-service .header {
  margin-bottom: 24px;
}

.img-stack-element {
  position: relative;
  text-align: center;
}

.img-stack-element svg {
  display: inline-block;
  max-width: 460px;
}

@media (min-width: 992px) {
  .img-stack-element {
    transform: translateX(50px);
  }
}


.features {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f7f7f7;
}

.features .container {
  max-width: 980px;
}

.features h5 {
  color: #003397;
  font-weight: 900;
  font-size: 2.5rem;
  padding-bottom: 0;
  margin-bottom: 0;
}

.features p {
  font-size: 17px;
  color: #003397;
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}


.counter-section .row > *:first-child {
  border-radius: 6px 0 0 6px;
}

.counter-section .row > *:last-child {
  border-radius: 0 6px 6px 0;
}

.counter-section .row > * {
  padding-top: 64px;
  padding-bottom: 64px;
  border: 1px solid #e9e8f5;
  margin-left: -1px;
}

.counter-section p {
  margin-bottom: 6px;
  color: #B4B2C5;
}


.card-pricing {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 32px 20px;
  max-width: 300px;
  border: 1px solid #e9e8f5;
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
}

.card-pricing .price-labled {
  position: absolute;
  top: 16px;
  right: -30px;
  width: 120px;
  height: 26px;
  line-height: 26px;
  background-color: #0ac7f6;
  color: #fff;
  transform: rotate(45deg);
}

.card-pricing .header {
  color: #B4B2C5;
}

.card-pricing .price-icon {
  font-size: 75px;
  line-height: 1;
}

.card-pricing .price-title {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 20px;
}

.card-pricing .price-tag .currency {
  display: inline-block;
  transform: translateY(-30px);
}

.card-pricing .price-tag .currency,
.card-pricing .price-tag .period {
  font-weight: 600;
  font-size: 14px;
}

.card-pricing .price-tag h2 {
  display: inline-block;
}

.card-pricing.active {
  background-color: #003397;
  border-color: #ff7000;
}

.card-pricing.active .header {
  color: rgba(255, 255, 255, 0.5);
}

.card-pricing.active .price-title {
  color: #FAC14D;
}

.card-pricing.active .price-tag {
  color: #fff;
}

.card-pricing.active .price-info p {
  color: rgba(255, 255, 255, 0.75);
}

.card-pricing.active .btn-outline {
  color: #fff;
}

.card-pricing.active .btn-outline:hover {
  color: #003397;
}



.card-blog {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 32px 20px 70px 20px;
  max-width: 260px;
  min-height: 270px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(100, 95, 136, 0.16);
}

.card-blog .header {
  margin-bottom: 16px;
}

.card-blog .avatar {
  position: relative;
  display: inline-block;
  margin-right: 6px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #d3d0e4;
  overflow: hidden;
}

.card-blog .avatar img {
  width: 100%;
  height: 100%;
}

.card-blog .entry-footer {
  display: inline-block;
  vertical-align: top;
}

.card-blog .post-author {
  font-weight: 500;
  color: #003397;
}

.card-blog .post-date {
  font-size: 13px;
  color: #B4B2C5;
}

.card-blog .post-title {
  margin-bottom: 8px;
  font-size: 18px;
}

.card-blog .post-title a {
  font-weight: 500;
  color: #2D2B3A;
}

.card-blog .post-excerpt {
  font-size: 14px;
  color: #898798;
}

.card-blog .footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.card-blog-row *:first-child .card-blog {
  background-color: #003397;
}

.card-blog-row *:first-child .card-blog .post-author,
.card-blog-row *:first-child .card-blog .post-title a,
.card-blog-row *:first-child .card-blog .footer a {
  color: #fff;
}

.card-blog-row *:first-child .card-blog .post-date {
  color: rgba(255, 255, 255, 0.6);
}

.form-search-blog .custom-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.testi-image {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 300px;
  height: 280px;
  background-color: #003397;
  border-radius: 8px;
  overflow: hidden;
}

.testi-image img {
  width: 100%;
  height: auto;
}

.testi-content {
  font-size: 20px;
}

.testi-content .entry-footer {
  margin-top: 0px;
  font-size: 15px;
}

.testi-content p{
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 15px;
}

.testi-content i{
  font-size: 33px;
  color: #ff7000;
  margin-bottom: 10px;
}

.testi-content h2{
  color: #003397;
  margin-bottom: 5px;
}


.client-section {
  padding: 64px 0;
  background-color: #F6F5FC;
}

.client-section .item {
  padding: 16px 0;
  text-align: center;
}

.contact-list {
  position: relative;
  padding-left: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 12px;
}

.contact-list .icon {
  display: inline-block;
  margin-right: 6px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #D7D5E9;
  color: #003397;
}

.contact-list .content {
  display: inline-block;
  color: #8e8aad;
}

.contact-list .content a {
  color: #8e8aad;
}


.page-footer {
  position: relative;
  display: block;
  padding-top: 55px;
  padding-bottom: 16px;
  background-color: #ff7000;
}

.page-footer p a {
  transition: color .2s ease;
}

.page-footer h6 {
  color: #003397;
  font-size: 20px;
}

.page-footer h3,
.page-footer h4,
.page-footer h5 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 600;
}

.page-footer p {
  color: #fff;
  font-size: 13px;
}

.page-footer a {
  color: #fff;
}

.footer-menu {
  position: relative;
  padding-left: 0;
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-link {
  display: inline-block;
  padding: 6px 0;
}

.footer-menu a,
.footer-link {
  color: #fff;
}

.footer-menu a:hover,
.footer-link:hover {
  color: #ff7000;
  text-decoration: none;
}

.sosmed-button a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background-color: #F6F5FC;
  color: #898798;
  transition: all .2s linear;
}

.sosmed-button a:hover {
  background-color: #003397;
  color: #fff;
  text-decoration: none;
  transform: rotate(360deg);
}


.blog-single-wrap {
  display: block;
  padding: 50px 0;
}

.blog-single-wrap .header {
  margin-bottom: 32px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(100, 95, 136, 0.2);
  overflow: hidden;
}

.blog-single-wrap .header .post-thumb {
  width: 100%;
  height: 250px;
  background-color: #F6F5FC;
  overflow: hidden;
}

.blog-single-wrap .header .post-thumb img {
  width: 100%;
}

.blog-single-wrap .header .meta-header {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  padding-left: 32px;
  padding-right: 32px;
  height: 50px;
  transform: translateY(-48px);
}

.blog-single-wrap .header .post-author .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #fff;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(137, 135, 152, 0.4);
  transform: translateY(10px);
}

.blog-single-wrap .header .post-author .avatar img {
  width: 100%;
  height: 100%;
}

.blog-single-wrap .header .post-sharer a  {
 padding: 5px 10px;
 line-height: 1;
 box-shadow: none !important;
}

.blog-single-wrap .header .post-sharer a[class='btn'] {
  background-color: #ec9d1e;
  color: #fff;
}

.blog-single-wrap .header .post-sharer a[class='btn']:hover {
  background-color: #d88d14;
  color: #fff;
}

.blog-single-wrap .post-title {
  font-weight: 500;
  color: #212529;
}

.blog-single-wrap .post-meta {
  display: block;
  margin-bottom: 24px;
}

.blog-single-wrap .post-meta .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  background-color: #003397;
  color: #fff;
}

.blog-single-wrap .post-meta .post-date,
.blog-single-wrap .post-meta .post-comment-count {
  display: inline-block;
}

.blog-single-wrap .post-meta .post-date a,
.blog-single-wrap .post-meta .post-comment-count a {
  color: #003397;
}

.blog-single-wrap .post-content .quote {
  display: block;
  padding: 16px 20px;
  background-color: #003397;
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
}

.blog-single-wrap .post-content .quote .author {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}


.widget-box {
  display: block;
  padding: 20px;
  margin-bottom: 32px;
  border-radius: 6px;
  border: 1px solid #EDECF5;
  box-shadow: 0 3px 9px rgba(100, 95, 136, 0.15);
}

.widget-title {
  color: #003397;
}

.search-widget .form-control {
  margin-bottom: 8px;
  background-color: #F6F5FC;
  border-color: transparent;
  box-shadow: none !important;
}

.search-widget .form-control:focus {
  border-color: #dee1e6;
}

.search-widget .btn {
  text-transform: uppercase;
}

.categories {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.categories li a {
  display: block;
  padding: 6px;
  color: #a4a1c8;
  transition: all .2s ease;
}

.categories li a:hover {
  color: #003397;
  text-decoration: none;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(107, 85, 249, 0.5);
}

.blog-item {
  position: relative;
  display: flex;
  flex-direction: row;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e4e7ee;
}

.blog-item .post-thumb {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  margin-right: 15px;
  width: 100px;
  height: 80px;
  background-color: #F6F5FC;
  overflow: hidden;
}

.blog-item .post-thumb img {
  width: auto;
  height: 100%;
}

.blog-item .post-title a {
  color: #8e8aad;
  transition: all .2s ease;
}

.blog-item .post-title a:hover {
  color: #003397;
  text-decoration: none;
}

.blog-item .meta a {
  margin-right: 6px;
  font-size: 12px;
  color: #003397;
}

.blog-item .meta a:hover {
  text-decoration: none;
}

.tag-cloud-link {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 10px;
  font-size: 13px;
  background-color: #EDECF5;
  color: #003397;
  border-radius: 3px;
  transition: all .2s ease;
}

.tag-cloud-link:hover {
  background-color: #003397;
  color: #fff;
  text-decoration: none;
}


.maps-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F6F5FC;
  overflow: hidden;
}

#google-maps {
  width: 100%;
  height: 100%;
}

.custom-img-1 {
  width: auto;
  max-width: 390px;
}

.custom-index {
  z-index: 11;
}


/* Custom Plugin */
.owl-nav {
  display: block;
  margin: 15px auto;
  text-align: center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  display: inline-block;
  padding: 6px 0 !important;
  background-color: #003397;
  color: #fff;
}

.owl-carousel .owl-nav button.owl-next {
  padding-right: 14px !important;
  padding-left: 7px !important;
  border-radius: 0 40px 40px 0;
}

.owl-carousel .owl-nav button.owl-prev {
  padding-right: 7px !important;
  padding-left: 14px !important;
  border-radius: 40px 0 0 40px;
}

.owl-carousel .owl-dots {
  display: block;
  margin: 16px auto;
  text-align: center;
  width: 100%;
}

.owl-carousel button.owl-dot {
  display: inline-block;
  margin: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  transition: all .2s ease;
}

.owl-carousel button.owl-dot:focus {
  outline: none;
}

.owl-carousel button.owl-dot.active {
  background-color: rgb(211, 211, 211);
}

.h2-produtos{
  font-size: 1.1rem;
  font-weight: 600;
}

.div-main{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.div-mid{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}

.dif-card{
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 26px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dif-p{
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 15px;
}

.dif-i{
  font-size: 33px;
  color: #ff7000;
  margin-bottom: 10px;
}

.dif-h2{
  color: #003397;
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 600;
}


.testi-card{
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-card-2{
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-text{
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-text-2{
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-text-3{
  text-align: center;
  font-weight: 100;
  font-size: 1.7rem;
}

.i-main{
  margin-right: 15px;
  color: #ff7000;
  font-size: 40px;
}

.card-custo-1{
  background-color:#1656d6;
  border-radius: 10px;
  box-shadow: 6px 6px 27px rgb(0 0 0 / 22%);
  padding: 25px 30px;
  min-height: 290px;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-custo-1:hover{
  transform: scale(1.05);
  transition: 0.5s;
  cursor: pointer;
  background-color: #2e6eee;
}

.card-custo-1 h5{
  color:#fff;
  font-size: 1.45rem;
  font-weight: 600;
}

.card-custo-1 p{
  color:#fff;
  font-weight: 100;
  padding-bottom: 0;
  margin-bottom: 0;
}

.card-custo-1 b{
  color:#fff;
  font-weight: 600;
}

.card-custo-1 i{
  color:#002774;
  margin-right: 7px;
}


.card-custo-2{
  background-color:#1656d6;
  border-radius: 10px;
  box-shadow: 6px 6px 27px rgb(0 0 0 / 22%);
  padding: 25px 30px;
  min-height: 290px;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-custo-2:hover{
  background-color: #2e6eee;
  transform: scale(1.05);
  transition: 0.5s;
  cursor: pointer;
}

.card-custo-2 h5{
  color:#fff;
  font-size: 1.45rem;
  font-weight: 600;
}

.card-custo-2 p{
  color:#fff;
  font-weight: 100;
  padding-bottom: 0;
  margin-bottom: 0;
}

.card-custo-2 b{
  color:#fff;
  font-weight: 600;
}

.card-custo-2 i{
  color:#002774;
  margin-right: 7px;
}


.card-custo-3{
  background-color: var(--primary) ;
  border-radius: 10px;
  box-shadow: 6px 6px 27px rgb(0 0 0 / 22%);
  padding: 25px 30px;
  min-height: 290px;
  margin-bottom: 35px;
  transition: .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-custo-3:hover{

  background-color: #0045cf;
  transform: scale(1.05);
  transition: .5s;
  cursor: pointer;
}

.card-custo-3 h5{
  color:#fff;
  font-size: 1.45rem;
  font-weight: 600;
}

.card-custo-3 p{
  color:#fff;
  font-weight: 100;
  padding-bottom: 0;
  margin-bottom: 0;
}

.card-custo-3 b{
  color:#fff;
  font-weight: 600;
}

.card-custo-3 i{
  color:var(--secondary);
  margin-right: 7px;
}

.investidor-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-investidor2{
  padding: 120px 0px;
}

.text-investidor2 p{
  color: #898798;
  font-size: 14px;
  padding:0px;
  text-align: left;
}

.text-investidor2 h3{
  font-size: 1.1rem;
  color: #ff7000;
  font-weight: 500;
  text-align: left;
}

.text-investidor2 b{
  font-weight: 900;
  color: #003397;
}

.investidor2-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding:0px 0px;
}

.text-investidor p{
  color: #898798;
  font-size: 14px;
  padding:0px;
  text-align: center;
}

.text-equipe{
  color: #898798;
  font-size: 15px !important;
  padding:0px;
  text-align: left !important;
}


.text-investidor h3{
  font-size: 1.3rem;
  color: #ff7000;
  font-weight: 500;
  text-align: center;
}

.text-investidor b{
  font-weight: 900;
  color: #003397;
}

.divider-custo{
  display: flex;
    justify-content: center;
    width: 325px;
    height: 2px;
    margin-top: 9px;
    border-radius: 40px;
    background-color: rgb(255 255 255 / 50%);
}



.div-btn{
  text-align: center;
}

.row-vantagens{
  margin-right: -15px;
  margin-left: -15px;
}

.main-img-1{
  max-width: 450px !important;
}

.main-img-2{
  max-width: 500px !important;
}

.main-img-3{
  max-width: 530px !important;
}

.main-img-4{
  width: 100% !important;
}

.padding-img{
  padding-top: 0;
}

.padding-text{
  padding-top: 0px;
}
.bancos{
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-bancos{
  width: 270px !important;
  margin: 5px 0px;
}

.vantagens1{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.a-lojas{
  text-decoration: none !important;
}
.a-lojas:hover{
  text-decoration: none !important;
}
.a-lojas:active{
  text-decoration: none !important;
}

.vantagens2{
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vantagens-icon{
  font-size: 40px;
  color: #ff7000;
  margin-bottom: 20px ;
}

.img-logo{
  width: 300px;
}

.font-size-main{
  font-size: 2rem;
}

.footer-right{
  text-align: right;
}

.a-testi{
  text-decoration: none !important;
}

.testimonial{
  text-align: center;
}

.testimonial:hover{
  background-color: #fff6ef;
  cursor: pointer;
  transform: scale(1.01);
  transition: 0.25s;
}

.img-prod{
  display: flex;
  justify-content: center;
  margin-bottom: 7px;

}

.nav-seja{
  padding-left: 0;
}

.forbes{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.forbes-logo{
  width: 350px;
}

.forbes-logo img{
  width: 350px;
}

.area-cards-franquias{
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 25px;
}

.cards-franquias{
    display: flex;
    justify-content: center;
    width: 450px;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
}

.rnk-componente-whatsapp a.rnk-wp-link {
            position: fixed;
            right: 15px;
            bottom: 15px;
            display: grid;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            justify-items: center;
            place-items: center;
            width: 70px;
            height: 70px;
            background-color: #25d366;
            background-size: 30px;
            border-radius: 40px;
            text-decoration: none;
            z-index: 15;
        }
  .rnk-componente-whatsapp a.rnk-wp-link i {
            font-size: 30px;
            color: #fff;
        }
      .video-franquias{
        padding: 160px 0px 100px 0px;
      }

      .video-frame{
        width:320px;
        height:569px;
        border-radius: 15px;
      }
      .botini-franquias{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 70px;
      }

      .video-text{
        width: 60%;
      }

      .video-text h4{
        font-size: 2.1rem;
        color: #003397;
        font-weight: 600;
        margin-bottom: 30px;
      }

      .card-video{
        background-color: #ff7000;
        padding: 15px 30px;
        width: 480px;
        margin-top: 30px;
        border-radius: 5px;
      }

      .card-video p{
        margin: 0;
        color: #fff;
        font-size: 17px;
      }

       .card-video p i{
        color: #002774;
        font-size: 19px;
        margin-right: 10px;
      }

        
@media (max-width: 990px) {
  .botini-franquias{
    flex-direction: column;
  }
  .video-text{
    width: 96%;
  }
  .card-video{
    width: 100%;
  }
  .video-text h4{
    text-align: center;
  }
  .video-text p{
    text-align: center;
  }
  .div-mid{
    justify-content: center;
    align-items: center;
  }
  .text-equipe{
    text-align: center !important;
  }
  .nav-seja{
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .vantagens1{
    text-align: center;
    flex-direction: column;
  }
  .footer-right{
    text-align: left;
  }
  .investidor2-text{
    padding: 20px 20px;
  }
  .main-text-2{
    text-align: center;
  }
  .main-img-4{
    max-width: 440px !important;
  }
  .padding-img{
    padding-top: 0px;
  }
  .text-investidor2 p{
    text-align: left;
  }
  .text-investidor2 h3{
    text-align: left;
  }
  .vantagens2{
    text-align: center;
    flex-direction: column-reverse;
  }
  .vantagens1-icon{
    margin-right: 0px;
    padding-bottom: 10px;
  }
  .vantagens2-icon{
    margin-left: 0px;
    padding-bottom: 10px;
  }
  .home-banner {
    background-image: none;
    background-color: #ff7000 !important;
  }
  .page-banner.home-banner {
    margin-top: 0;
  }
  .page-banner.home-banner h1{
    text-align: center;
  }
  .div-btn{
    text-align: center;
  }
  .text-lg{
    text-align: center;
  }
  .row-vantagens{
    justify-content: center;
  }
  .main-text{
    flex-direction: column;
  }
  .i-main{
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 45px;
  }
  .padding-text{
    padding-top: 80px;
  }
}

@media (max-width: 580px) {
  .home-banner {
    background-image: url('../img/bg-mobile.png');
    height: 830px !important;
  }
  .title-section{
    text-align: center;
  }
  .padding-text{
    padding-top: 25px;
  }
  .row-main{
    height: 76% !important;
  }
  .main-img-1{
    max-width: 310px !important;
  }
  .main-img-2{
    max-width: 320px !important;
  }
  .main-img-3{
    max-width: 360px !important;
  }
  .card-custo-1{
    margin: 20px;
  }
  .card-custo-2{
    margin: 20px;
  }
  .card-custo-3{
    margin: 20px;
  }
  .forbes-logo{
    width: 290px;
  }
  .forbes-logo img{
    width: 290px;
  }
  .page-banner.home-banner h1{
    font-size: 1.5rem;
  }
  
}

@media (max-width: 460px) {
  .main-img-4{
    max-width: 320px !important;
  }
  .img-logo{
    width:277px;
  }
  .divider-custo{
    width: 280px;
  }
  .text-investidor p{
    font-size: 13px;
  }
  .page-section p{
    font-size: 14.5px;
  }
  .main-text-3{
    font-size: 1.4rem;
  }
  .font-size-main{
    font-size: 1.5rem;
  }
}


@media (max-width: 380px) {
  .img-bancos{
    width: 230px !important;
  }
  
  .img-logo{
    width: 230px;
  }
  .main-img-3{
    max-width: 300px !important;
  }
}

@media (max-width: 350px) {
  .btn-secondary{
    font-size: 15px;
  }
  .btn-primary{
    font-size: 15px;
  }
}