@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #25282B;
}
body.home::before {
  content: "";
  display: block;
  width: 100%;
  height: 880px;
  background: linear-gradient(333deg, #0D2C62 66%, #1DC9FE 120%);
  z-index: -1;
  position: absolute;
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home::before {
    height: 930px;
  }
}
body.interna .navbar {
  background: #0A2850;
}
body.interna main {
  margin-top: 120px;
}
@media (max-width: 767px) {
  body.interna main {
    margin-top: 75px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.interna main {
    margin-top: 75px;
  }
}

.titulo {
  color: #0A2850;
  margin-bottom: 24px;
}
.titulo span {
  color: #7AA5D7;
}

main .componente {
  padding: 60px 0 !important;
}
main h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 767px) {
  main h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

.btn-custom {
  background: #fff;
  border: 1px solid #619EF3 !important;
  border-radius: 2px !important;
  color: #619EF3;
  font-size: 18px !important;
  margin-top: 24px;
  padding: 16px 32px !important;
}
.btn-custom i {
  margin-left: 9px;
}
.btn-custom:hover {
  background: #C6DEFF !important;
  color: #619EF3;
}

.btn-scroll {
  background: #2E61A2;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 3px 3px rgba(61, 105, 155, 0.45);
  color: #fff;
  position: absolute;
  height: 38px;
  margin: 0;
  padding: 6px;
  text-align: center;
  transition: 0.3s;
  width: 38px;
}
.btn-scroll:hover {
  box-shadow: 0px 0px 3px 6px rgba(61, 105, 155, 0.75);
  color: #fff;
}

nav .breadcrumb {
  border-bottom: 1px solid #E0E0E0;
  border-radius: 0;
}
nav#pagination .pagination {
  margin-top: 30px;
}
nav#pagination .pagination .page-item {
  color: #25282B;
}
nav#pagination .pagination .page-item .page-link {
  height: 36px !important;
  width: 36px !important;
  padding-top: 8px !important;
}
nav#pagination .pagination .page-item .page-link :hover {
  padding-top: 0 !important;
}
nav#pagination .pagination .page-item.active .page-link {
  background: #124B94 !important;
  height: 36px !important;
  width: 36px !important;
}
nav#pagination .pagination .page-item.pagina-nav {
  height: 36px !important;
  width: 36px !important;
}
nav#pagination .pagination .page-item.box-nav {
  border-radius: 50%;
  margin-top: 3px;
  height: 36px !important;
  width: 36px !important;
}
nav#pagination .pagination .page-item.box-nav .page-link {
  border: 1px solid #E0E0E0 !important;
  padding-top: 7px !important;
}
nav#pagination .pagination .page-item.box-nav.nav-next i {
  margin-left: 4px;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
  z-index: 1;
  height: auto;
  width: auto;
}
.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
  font-family: bootstrap-icons !important;
  color: #0A2850;
  font-size: 36px;
}
.slick-slider .slick-next:before {
  content: "\f285";
}
.slick-slider .slick-prev:before {
  content: "\f284";
}
@media (max-width: 767px) {
  .slick-slider .slick-prev {
    left: 0;
  }
}
@media (max-width: 767px) {
  .slick-slider .slick-next {
    right: 0;
  }
}

.switch {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 30px;
  margin-bottom: 0;
  /* Hide default HTML checkbox */
  /* The slider */
}
@media (max-width: 767px) {
  .switch {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .switch {
    display: none;
  }
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #E1E9F3;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(33px);
  -ms-transform: translateX(33px);
  transform: translateX(33px);
}
.switch input:checked + span + .darkMode {
  opacity: 0.3;
}
.switch input:not(:checked) + span + i + .lightMode {
  opacity: 0.3;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #31517D;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  /* Rounded sliders */
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 3px;
  background-color: #010D1E;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}
.switch i {
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  position: absolute;
  top: 6px;
  transition: 0.6s;
}
.switch i.darkMode {
  left: 10px;
}
.switch i.lightMode {
  font-size: 16px;
  right: 8px;
  top: 4px;
}

.sub-links-redes {
  background: #031937;
  font-size: 14px;
  position: relative;
  z-index: 1021;
}
.sub-links-redes ul {
  height: 46px;
}
.sub-links-redes ul li {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
}
@media (max-width: 375px) {
  .sub-links-redes ul li {
    padding: 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sub-links-redes ul li {
    padding: 0.5rem;
  }
}
.sub-links-redes ul li a {
  color: #D4E7FF;
}
.sub-links-redes ul li a:hover {
  text-decoration: none;
}
.sub-links-redes ul li a:hover span {
  text-decoration: underline;
}
.sub-links-redes ul li a img {
  margin-bottom: 3px;
  margin-right: 8px;
}
@media (max-width: 375px) {
  .sub-links-redes ul li a img {
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .sub-links-redes ul li a span {
    display: none;
  }
}
.sub-links-redes ul.list-sub-menu span {
  display: inline;
}
.sub-links-redes .drop-share .btn {
  color: #D4E7FF;
  height: 46px;
  padding: 0.5rem 1rem;
  text-decoration: none !important;
}
.sub-links-redes .drop-share .btn::after {
  display: none;
}
.sub-links-redes .drop-share .dropdown-menu {
  border-radius: 8px;
  padding: 10px;
}
.sub-links-redes .drop-share .dropdown-menu .dropdown-item {
  color: #0A2850;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 45px 8px 10px;
}
.sub-links-redes .drop-share .dropdown-menu .dropdown-item img {
  filter: brightness(0) invert(11%) sepia(16%) saturate(7416%) hue-rotate(198deg) brightness(96%) contrast(96%);
  width: 21px;
}
.sub-links-redes .drop-share .dropdown-menu .dropdown-item span {
  margin-left: 5px;
}

.cards-destaque .slick-list {
  margin: 0 -12px;
}
.cards-destaque .slick-dots {
  bottom: 0;
}
.cards-destaque .slick-dots li {
  margin: 0 1px;
}
.cards-destaque .slick-dots li button:before {
  content: "○";
  color: #0A2850 !important;
  font-size: 32px;
  opacity: 1 !important;
}
.cards-destaque .slick-dots li.slick-active button:before {
  content: "●" !important;
}
.cards-destaque .card {
  background: none;
  border: none;
  border-radius: 6px;
  box-shadow: 0px 0px 12px 0px rgba(3, 19, 47, 0.33);
  margin: 30px 12px;
  height: 410px;
  overflow: hidden;
}
.cards-destaque .card .card-body {
  background: #fff;
}
.cards-destaque .card .card-body .card-title {
  color: #0A2850;
  font-size: 21px;
  font-weight: 600;
  line-height: 27px;
}
.cards-destaque .card .card-body .card-text {
  color: #25282B;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.cards-destaque .card .card-body .btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #619EF3;
  font-weight: 600;
  line-height: 18px;
}
@media (max-width: 767px) {
  .cards-destaque .card .card-body .btn {
    position: relative;
    bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cards-destaque .card .card-body .btn {
    position: relative;
    bottom: 0;
  }
}
.cards-destaque .card .card-body .btn i {
  margin-left: 9px;
}

.navbar {
  margin: 0;
  position: absolute;
  width: 100%;
  transition: 0.3s;
  z-index: 3;
}
@media (max-width: 767px) {
  .navbar {
    background: #0A2850;
    min-height: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar {
    background: #0A2850;
    min-height: 60px;
  }
}
.navbar .container {
  position: relative;
}
.navbar .nav-logo-mobile {
  display: none;
  width: 145px;
}
@media (max-width: 767px) {
  .navbar .nav-logo-mobile {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .nav-logo-mobile {
    display: block;
  }
}
.navbar .navbar-nav {
  position: relative;
}
.navbar .navbar-nav .nav-item {
  margin: 12px;
  transition: 1s;
}
.navbar .navbar-nav .nav-item:hover::after {
  width: 100%;
}
.navbar .navbar-nav .nav-item::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  margin: auto;
}
.navbar .navbar-nav .nav-item.nav-logo::after {
  display: none;
}
@media (max-width: 767px) {
  .navbar .navbar-nav .nav-item {
    border-bottom: 1px solid #fff;
    margin: 0 5px;
    padding: 21px 15px;
  }
  .navbar .navbar-nav .nav-item:last-child {
    border: none;
  }
  .navbar .navbar-nav .nav-item::after {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    border-bottom: 1px solid #fff;
    margin: 0 5px;
    padding: 21px 15px;
  }
  .navbar .navbar-nav .nav-item:last-child {
    border: none;
  }
  .navbar .navbar-nav .nav-item::after {
    display: none;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #fff !important;
  font-size: 16px;
  padding: 18px 12px 12px;
}
@media (max-width: 767px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 18px 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 18px 3px;
  }
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  background: none;
}
.navbar .navbar-nav .nav-item.dropdown i {
  color: #fff !important;
  margin-left: 9px;
}
.navbar .navbar-nav .nav-item.show > a {
  border: none;
}
@media (max-width: 767px) {
  .navbar .nav-logo {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .nav-logo {
    display: none;
  }
}
.navbar.darkHeader {
  background: #0A2850;
  position: fixed;
  width: 100%;
}
.navbar .language {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .navbar .language {
    position: absolute;
    right: 54px;
    top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .language {
    position: absolute;
    right: 54px;
    top: 15px;
  }
}
.navbar .language option {
  color: #000;
}
.navbar .drop-lang {
  background: none;
  border: none;
  color: #fff;
  padding: 0;
}
@media (max-width: 767px) {
  .navbar .drop-lang {
    position: absolute;
    right: 54px;
    top: 9px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .drop-lang {
    position: absolute;
    right: 54px;
    top: 9px;
  }
}
.navbar .drop-lang .btn {
  margin-top: 5px;
  padding-top: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .drop-lang .btn {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .navbar .drop-lang .btn {
    margin: 0;
  }
}
.navbar .drop-lang .btn:focus {
  box-shadow: none;
}
.navbar .drop-lang .btn i {
  font-size: 21px;
}
.navbar .drop-lang .active {
  background: #B0D1F9 !important;
  font-weight: bold;
}
.navbar .drop-lang .dropdown-menu {
  background: #D4E7FF;
  padding: 0;
}
@media (max-width: 767px) {
  .navbar .drop-lang .dropdown-menu {
    position: absolute !important;
    top: 30px !important;
  }
}
.navbar .drop-lang .dropdown-menu .dropdown-item {
  padding: 0.75rem;
}
.navbar .drop-lang .dropdown-menu .dropdown-item:hover {
  background: #D4E7FF !important;
  text-decoration: none;
}
.navbar .drop-lang .dropdown-menu .dropdown-item img {
  width: 16px;
  margin-right: 6px;
}
.navbar .btn-link {
  color: #fff;
}
.navbar .search-container {
  position: relative;
  display: inline-block;
  margin: 4px 2px;
  height: 50px;
  width: 50px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .navbar .search-container {
    position: absolute;
    top: -3px;
    right: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .search-container {
    position: absolute;
    top: -3px;
    right: 100px;
  }
}
.navbar .search-container .button {
  display: inline-block;
  margin: 4px 2px;
  font-size: 14px;
  padding-left: 32px;
  padding-right: 32px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: white;
  text-decoration: none;
  cursor: pointer;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.navbar .search-container .button:hover {
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  color: #B4D3FF;
}
.navbar .search-container .searchbutton {
  position: absolute;
  font-size: 22px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.navbar .search-container .search {
  position: absolute;
  left: 49px;
  /* Button width-1px (Not 50px/100% because that will sometimes show a 1px line between the search box and button) */
  background-color: #E1E9F3;
  outline: none;
  border: none;
  padding: 0;
  width: 0;
  height: 100%;
  z-index: 10;
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
}
.navbar .search-container .search:focus {
  width: 363px;
  /* Bar width+1px */
  padding: 0 16px 0 0;
}
@media (max-width: 375px) {
  .navbar .search-container .search:focus {
    width: 150px !important;
  }
}
@media (max-width: 767px) {
  .navbar .search-container .search:focus {
    width: 210px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .search-container .search:focus {
    width: 330px;
  }
}
.navbar .search-container .search:focus + .searchbutton {
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  background-color: #E1E9F3;
  color: #619EF3;
}
.navbar .search-container .expandright {
  left: auto;
  right: 49px;
  /* Button width-1px */
}
.navbar .search-container .expandright:focus {
  padding: 0 0 0 16px;
}
.navbar .navbar-toggler {
  position: absolute;
  right: 0;
  top: 3px;
  border: none;
  font-size: 32px;
  color: #fff;
}

.hero-home {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}
.hero-home::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100px;
  background: rgb(13, 44, 98);
  background: linear-gradient(0deg, rgb(13, 44, 98) 0%, rgba(9, 9, 121, 0) 50%);
  bottom: 0;
}
@media (max-width: 767px) {
  .hero-home {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home {
    margin-top: 40px;
  }
}
.hero-home .banner-principal .banner {
  width: 100%;
  overflow: hidden;
}
.hero-home .banner-principal .banner .row {
  height: 555px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .banner-principal .banner .row {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .hero-home .banner-principal .banner .row {
    padding: 0 35px;
  }
}
.hero-home .banner-principal .banner img {
  display: block;
  width: 900px;
  position: absolute;
  min-height: 100%;
  opacity: 0.1;
  filter: contrast(3) brightness(3);
}
@media (max-width: 767px) {
  .hero-home .banner-principal .banner img {
    height: 100%;
    width: auto;
    margin-left: -9%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .banner-principal .banner img {
    width: 750px;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .hero-home .banner-principal .banner img {
    width: 900px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-home .banner-principal .banner img {
    width: auto;
  }
}
.hero-home .banner-principal .slick-prev::before,
.hero-home .banner-principal .slick-next::before {
  color: #fff;
}
.hero-home .banner-principal .slick-prev {
  left: 15px;
}
@media (max-width: 767px) {
  .hero-home .banner-principal .slick-prev {
    left: 0;
  }
}
.hero-home .banner-principal .slick-next {
  right: 15px;
}
@media (max-width: 767px) {
  .hero-home .banner-principal .slick-next {
    right: 0;
  }
}
.hero-home .banner-principal .slick-slide:not(.slick-active) img {
  opacity: 0;
}
.hero-home .video-hero {
  height: 555px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 375px) {
  .hero-home .video-hero {
    height: 150px !important;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .hero-home .video-hero {
    height: 200px;
    margin-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .video-hero {
    height: 360px;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .hero-home .video-hero {
    height: 420px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-home .video-hero {
    height: 450px;
  }
}
.hero-home .video-hero video {
  position: relative;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .video-hero video {
    height: 100%;
  }
}
.hero-home h3 {
  color: #A4C7F0;
  font-size: 44px;
  font-weight: 500;
  line-height: 54px;
  margin-bottom: 24px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .hero-home h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 375px) {
  .hero-home h3 {
    font-size: 24px;
    line-height: normal;
  }
}
.hero-home p {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.hero-home p.lead {
  font-size: 21px;
  font-weight: 700;
  line-height: 27px;
}
@media (max-width: 767px) {
  .hero-home p.lead {
    font-size: 16px;
    font-weight: 500;
  }
}
.hero-home .btn-custom {
  background: #D4E6FF;
  border-color: #2E61A2;
  color: #2E61A2;
}
.hero-home .scrollDown {
  bottom: 30px;
  right: 3%;
  padding: 8px;
}
@media (max-width: 767px) {
  .hero-home .scrollDown {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-home .scrollDown {
    display: none;
  }
}

.insights {
  scroll-margin-top: 100px;
}
.insights .titulo {
  color: #fff;
}
.insights .card {
  height: 420px;
}
@media (max-width: 767px) {
  .insights .card {
    margin: 30px auto;
    height: auto;
    width: 65%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .insights .card {
    margin: 30px auto;
    height: auto;
    width: 90%;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .insights .card {
    height: 390px;
  }
}

.lista-insights .cards-destaque .card-body {
  height: 410px;
}

.awards h2,
.awards h4 {
  color: #0A2850;
}
.awards p {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.awards .card {
  height: 175px;
  margin-bottom: 15px;
  padding: 15px;
  text-align: left;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .awards .card {
    height: 220px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .awards .card {
    height: 220px;
  }
}
@media (max-width: 767px) {
  .awards .card {
    height: auto;
  }
}
.awards .card h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}
.awards .card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 0;
}
.awards .card .number {
  color: #25282B;
  font-size: 42px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 16px;
}
.awards .card i {
  font-size: 24px;
  margin-bottom: 9px;
}
.awards .card img {
  max-width: 42px;
  margin-bottom: 9px;
}

.solutions h2,
.solutions h5 {
  color: #0A2850;
}
.solutions h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}
@media (max-width: 767px) {
  .solutions h5 {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 0;
  }
}
.solutions .number {
  color: #25282B;
  font-size: 42px;
  font-weight: 700;
  line-height: 40px;
}
.solutions .card {
  margin-bottom: 15px;
  padding: 24px 12px;
}
@media (max-width: 767px) {
  .solutions .card {
    height: 140px;
  }
}
@media (max-width: 375px) {
  .solutions .card {
    height: 115px;
    padding: 12px;
  }
}
.solutions .card img {
  max-width: 40px;
  margin-bottom: 9px;
}
.solutions.enderecos h5 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 767px) {
  .solutions.enderecos h5 {
    margin-bottom: 15px;
  }
}
.solutions.enderecos p:last-child {
  margin-bottom: 0;
}
.solutions.enderecos p i {
  border: 2px solid #A0A4A8;
  border-radius: 50%;
  display: inline-block;
  float: left;
  margin: -3px 10px 0px 0;
  padding-top: 3px;
  text-align: center;
  width: 32px;
  height: 32px;
}
.solutions.enderecos .card {
  height: auto !important;
}
.solutions.not-found {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .solutions.not-found .card {
    height: auto;
  }
  .solutions.not-found .card p {
    margin-bottom: 0;
  }
}

.unidades-vinculadas {
  padding-bottom: 0 !important;
}
.unidades-vinculadas .card {
  border: none;
  box-shadow: none;
  height: 100px;
  margin-bottom: 30px;
  padding: 5px 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .unidades-vinculadas .card {
    margin-bottom: 0;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .unidades-vinculadas .card {
    height: 120px;
    margin-bottom: 0;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .unidades-vinculadas .card {
    padding: 45px;
  }
}
.unidades-vinculadas .card img {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  filter: unset;
  max-width: 130px;
  max-height: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .unidades-vinculadas .card img {
    max-width: 100%;
    margin: auto;
    top: unset;
    transform: unset;
  }
}
.unidades-vinculadas .card:hover {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.unidades-vinculadas .card:hover img {
  filter: none;
}

.cases p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 auto 24px;
  max-width: 75%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cases p {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .cases p {
    max-width: none;
  }
}
.cases .btn-custom {
  background: none;
  border-color: #fff !important;
  color: #fff;
}
.cases .btn-custom:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
}
.cases .carousel-cases .card {
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  width: 90%;
  text-align: center;
  transition: 0.5s;
}
@media (min-width: 991px) and (max-width: 1023px) {
  .cases .carousel-cases .card {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cases .carousel-cases .card {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cases .carousel-cases .card {
    margin-bottom: 30px;
    width: 75%;
  }
}
.cases .carousel-cases .card:hover {
  box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.15) !important;
  transition: 0.5s;
}
.cases .carousel-cases .card .card-img {
  background: #fff;
  border-radius: 4px;
  padding: 30px;
  height: 205px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cases .carousel-cases .card .card-img img {
  width: auto;
  max-height: 100%;
  max-width: 100%;
}
.cases .carousel-cases .card .card-body {
  background: #fff;
  border-radius: 0 0 4px 4px;
  height: 180px;
  text-align: left;
  position: relative;
  padding: 24x;
}
@media (max-width: 767px) {
  .cases .carousel-cases .card .card-body {
    height: auto;
  }
}
.cases .carousel-cases .card .card-body h5 {
  color: #0A2850;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cases .carousel-cases .card .card-body h5 {
    font-size: 18px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .cases .carousel-cases .card .card-body h5 {
    font-size: 16px;
    line-height: normal;
  }
}
.cases .carousel-cases .card .card-body .btn {
  color: #619EF3;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .cases .carousel-cases .card .card-body .btn {
    position: relative;
    bottom: 0;
  }
}

.home .cases {
  background: #0A2850;
  color: #fff;
  text-align: center;
}
.home .cases .titulo {
  color: #fff;
}
.home .cases .btn-custom {
  background: none;
  border-color: #fff !important;
  color: #fff;
}
.home .cases .btn-custom:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
}
.home .cases .carousel-cases .slick-prev:before,
.home .cases .carousel-cases .slick-next:before {
  color: #fff;
}

.interna .cases {
  background: none;
}
.interna .cases .titulo {
  color: #0A2850;
}
.interna .cases .card p {
  color: #25282B;
  max-width: none;
}
.interna .cases .carousel-cases .slick-prev:before,
.interna .cases .carousel-cases .slick-next:before {
  color: #0A2850;
}
.interna .cases.case-interna {
  background: none;
}
.interna .cases.case-interna .titulo {
  color: #0A2850;
}
.interna .cases.case-interna .card p {
  color: #25282B;
  max-width: none;
}
.interna .cases.case-interna .carousel-cases .slick-prev:before,
.interna .cases.case-interna .carousel-cases .slick-next:before {
  color: #0A2850;
}

.contato {
  background: #D4E7FF;
  color: #0A2850;
  text-align: center;
}
.contato .titulo,
.contato p {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .contato .titulo,
  .contato p {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contato .titulo,
  .contato p {
    width: 100%;
  }
}
.contato p {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}
.contato .btn {
  background: #619EF3;
  border-color: #619EF3;
  color: #fff;
}
.contato .btn:hover {
  background: #2B7FF2 !important;
}

footer {
  background: #0A2850;
  color: #fff;
  padding: 0;
}
@media (max-width: 767px) {
  footer .links-rapidos .list-logo {
    display: block;
    text-align: center;
  }
}
footer .links-rapidos .nav-link {
  font-size: 14px;
  padding: 0.5rem 2rem;
}
@media (max-width: 767px) {
  footer .links-rapidos .nav-link {
    padding: 0.5rem;
  }
}
footer .contact {
  background: #031937;
  font-size: 14px;
  font-weight: 400;
  padding: 12px;
}
footer .contact img {
  margin-right: 6px;
}
footer .contact address {
  margin-bottom: 0;
}
footer .contact address a {
  display: inline-block;
  margin: 0;
}
footer .sub-links-redes {
  margin-top: 2px;
  padding: 12px 0;
}
@media (max-width: 767px) {
  footer .sub-links-redes {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .sub-links-redes {
    padding-top: 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  footer .sub-links-redes {
    padding-top: 10px;
  }
}
footer .sub-links-redes p {
  margin: 0;
}
@media (max-width: 767px) {
  footer .sub-links-redes p {
    margin-top: 15px;
  }
}
footer .sub-links-redes p a {
  text-decoration: underline;
}
footer .sub-links-redes a {
  margin: 0;
}
footer .sub-links-redes ul li {
  padding: 12px 15px;
}
@media (max-width: 767px) {
  footer .sub-links-redes ul li {
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .sub-links-redes ul li {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  footer .sub-links-redes ul li a img {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .sub-links-redes ul li a img {
    margin-bottom: 0;
  }
}
footer .grupo-alma {
  background: #1B3B68;
  padding: 30px 0;
}
footer .grupo-alma .container-fluid {
  position: relative;
}
footer .grupo-alma a {
  display: inline-block;
}
footer .grupo-alma img {
  filter: brightness(0) invert(1);
  margin: 30px 50px 0;
  max-width: 150px;
}
footer .grupo-alma .scrollTop {
  right: 3%;
  top: 45%;
}

.cookies {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #25282B;
  margin: 0;
  z-index: 9999;
}
.cookies p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 767px) {
  .cookies p {
    margin-bottom: 15px;
  }
}
.cookies p a {
  color: inherit;
  text-decoration: underline;
}
.cookies .btn {
  color: #25282B;
  margin: 0 5px;
  padding: 9px !important;
}
@media (max-width: 767px) {
  .cookies .btn {
    display: block;
    margin-bottom: 15px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cookies .btn {
    display: block;
    margin-bottom: 15px;
    width: 100%;
  }
  .cookies .btn:last-child {
    margin-bottom: 0;
  }
}
.cookies .btn-reject {
  background: none;
  border: none !important;
}
.cookies .btn-config {
  background: none;
  border-color: #25282B !important;
}
.cookies .btn-accept {
  background: #619EF3;
  color: #fff;
}
.cookies .btn-accept:hover {
  background: #2B7FF2 !important;
}

.modal .modal-header {
  border: none;
}
.modal .modal-header .modal-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
}
.modal .modal-header .close {
  color: #FF161F;
}
.modal .modal-body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.modal .modal-body p a {
  color: #25282B;
  text-decoration: underline;
}
.modal .modal-footer {
  border: none;
}
.modal .btn-custom {
  background: #0367F0;
  color: #fff;
  margin-top: 0;
  padding: 10px !important;
}
.modal .btn-custom:hover {
  background: #2B7FF2 !important;
}
.modal#modalCookies .list-group .content {
  padding-right: 15px;
}
.modal#modalCookies .list-group .content p {
  margin-bottom: 0;
}
.modal#modalCookies .list-group .custom-switch .custom-control-input:checked ~ .custom-control-label::before {
  background-color: rgba(75, 139, 68, 0.5);
  border-color: rgba(75, 139, 68, 0.5);
}
.modal#modalCookies .list-group .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: rgb(75, 139, 68);
}
.modal#modalCookies .list-group .custom-switch .custom-control-input:disabled ~ .custom-control-label {
  cursor: not-allowed;
}

div[vw] {
  top: 270px !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  div[vw] {
    top: 230px !important;
  }
}

.acessibilidade {
  position: fixed;
  margin: 10px;
  right: 0;
  top: 180px;
  z-index: 3;
}
@media (min-width: 768px) and (max-width: 991px) {
  .acessibilidade {
    top: 150px !important;
  }
}
.acessibilidade .ico {
  cursor: pointer !important;
}

.materia {
  width: 75%;
  margin: 25px auto 60px;
}
@media (max-width: 767px) {
  .materia {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .materia {
    width: 100%;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .materia {
    width: 100%;
  }
}
.materia .tags-conteudo .badge-tag {
  background: #619EF3;
  color: #fff;
}
.materia h1,
.materia h3 {
  color: #0A2850;
  margin-bottom: 24px;
}
.materia h3 {
  margin-top: 48px;
}
.materia .img-principal {
  margin-bottom: 48px;
}
.materia p {
  color: #25282B;
  font-weight: 500;
  margin-bottom: 20px;
}
.materia .card-topicos {
  margin-bottom: 30px;
}
.materia .card-topicos .slick-list {
  margin: 0 -15px;
}
.materia .card-topicos .card {
  border: none;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1490196078);
  margin: 15px;
  min-height: 360px;
  padding: 30px 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .materia .card-topicos .card {
    margin-left: auto;
    margin-right: auto;
    min-height: 0;
    width: 75%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .materia .card-topicos .card {
    margin-left: auto;
    margin-right: auto;
    min-height: 0;
    width: 90%;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .materia .card-topicos .card {
    min-height: 300px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .materia .card-topicos .card {
    min-height: 390px;
  }
}
@media (min-width: 1280px) and (max-width: 1600px) {
  .materia .card-topicos .card {
    min-height: 360px;
  }
}
.materia .card-topicos .card img {
  width: 64px;
  margin: 0 auto 24px;
}
.materia .card-topicos .card p {
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 991px) and (max-width: 1023px) {
  .materia .card-topicos .card p {
    font-size: 14px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .materia .card-topicos .card p {
    font-size: 14px;
  }
}

.tags-conteudo {
  margin-bottom: 15px;
}
.tags-conteudo .badge-tag {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  padding: 9px;
}
.tags-conteudo .badge-tag.active {
  background: #619EF3;
  color: #fff;
  border-color: #619EF3;
}

.grade-cards {
  margin-bottom: 30px;
}
.grade-cards h1 {
  color: #0A2850;
  margin-bottom: 24px;
}
.grade-cards > p {
  font-weight: 500;
  margin-bottom: 24px;
}
.grade-cards .cards-destaque .card {
  margin: 15px 0;
}
@media (max-width: 375px) {
  .grade-cards .cards-destaque .card {
    height: 210px;
  }
}
@media (max-width: 767px) {
  .grade-cards .cards-destaque .card {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .grade-cards .cards-destaque .card .card-body {
    padding: 12px;
  }
}
@media (max-width: 375px) {
  .grade-cards .cards-destaque .card .card-body .card-title {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .grade-cards .cards-destaque .card .card-body .card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .grade-cards .cards-destaque .card .card-body .card-text {
    display: none;
  }
}
@media (max-width: 767px) {
  .grade-cards .cards-destaque .card .card-body .btn {
    position: absolute;
    bottom: 15px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grade-cards .cards-destaque .card .card-body .btn {
    position: absolute;
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  .grade-cards#industria .card {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grade-cards#industria .card {
    height: 360px;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .grade-cards#industria .card {
    height: 375px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grade-cards#industria .card {
    height: 375px;
  }
}

.members .member {
  margin-bottom: 24px;
}
.members .member img {
  display: block;
  border: 3px solid #E0E0E0;
  margin: auto;
  padding: 3px;
}
.members .member .btn-custom {
  background: #619EF3;
  color: #fff;
  display: block;
  font-size: 14px !important;
  font-weight: 600;
  padding: 6px !important;
}
.members .member .btn-custom:hover {
  background: #2B7FF2 !important;
}
.members .member h5 {
  color: #0A2850;
  font-size: 26px;
  line-height: 32px;
}
.members .member .lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
.members .member p {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.politica p a {
  color: #25282B;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .politica p a {
    display: block;
  }
}

.carreiras.col-split {
  background: none !important;
  margin: 30px 0;
  padding: 0;
}
.carreiras.col-split p {
  font-weight: 500;
}
.carreiras.col-split p i {
  color: #619EF3;
}
.carreiras.col-split h1 {
  width: 75%;
}
@media (max-width: 767px) {
  .carreiras.col-split h1 {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .carreiras.col-split h1 {
    width: 100%;
  }
}
.carreiras.col-split .btn-custom {
  background: #619EF3;
  color: #fff;
  margin-top: 0;
}
@media (max-width: 767px) {
  .carreiras.col-split .btn-custom {
    display: block;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .carreiras.col-split .btn-custom {
    display: block;
    margin-bottom: 30px;
  }
}
.carreiras.col-split .btn-custom:hover {
  background: #0367F0 !important;
}
.carreiras#img-fullwidth {
  margin-top: 15px;
  padding: 0;
  position: relative;
}
.carreiras#img-fullwidth::before {
  content: "";
  display: block;
  background: #fff;
  width: 45%;
  height: 24px;
  position: absolute;
  top: 0;
  left: 30px;
}
@media (max-width: 767px) {
  .carreiras#img-fullwidth::before {
    display: none;
  }
}
.carreiras#solutions p {
  font-weight: 500;
}

.banner-cta .hero-banner {
  border-radius: 8px;
  color: #fff;
  height: 265px;
}
@media (max-width: 767px) {
  .banner-cta .hero-banner {
    height: auto;
    background: #000;
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-cta .hero-banner {
    height: auto;
    background: #000;
    padding-bottom: 30px;
  }
}
.banner-cta .hero-banner .image-banner {
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .banner-cta .hero-banner .image-banner {
    min-height: 100%;
    min-width: 100%;
    opacity: 0.6;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-cta .hero-banner .image-banner {
    min-height: 100%;
    min-width: 100%;
    opacity: 0.6;
  }
}
.banner-cta .hero-banner h3 {
  color: #fff;
  font-size: 30px;
  line-height: 32px;
  margin-top: 30px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .banner-cta .hero-banner h3 {
    font-size: 21px;
    line-height: 24px;
  }
}
.banner-cta .hero-banner p {
  margin-bottom: 0;
}
.banner-cta .hero-banner .btn {
  background: #619EF3;
  color: #fff;
  margin-top: 15px;
}
.banner-cta .hero-banner .btn:hover {
  background: #2B7FF2 !important;
}
@media (min-width: 991px) and (max-width: 1023px) {
  .banner-cta .hero-banner .btn {
    margin-top: 12px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .banner-cta .hero-banner .btn {
    margin-top: 12px;
  }
}

.split-bg {
  background-image: url("../../statics/img/solucoes/bg2.jpg") !important;
  background: right center;
  background-repeat: no-repeat;
  background-color: #0A2850;
  background-size: 50%;
  color: #fff;
  padding-bottom: 36px;
  padding-top: 36px;
}
@media (max-width: 767px) {
  .split-bg {
    background-image: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .split-bg {
    background-image: none !important;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .split-bg {
    background-size: auto 100% !important;
    background-position: center right -50% !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .split-bg {
    background-size: auto 100% !important;
    background-position: center right -50% !important;
  }
}
.split-bg h3 {
  color: #fff;
}
.split-bg p {
  font-weight: 500;
  margin-bottom: 24px;
}
.split-bg ul {
  overflow: hidden;
  position: relative;
}
.split-bg ul::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 3px;
  left: 15px;
  background: #D4E7FF;
  z-index: 1;
}
.split-bg ul li {
  list-style: none;
  position: relative;
  padding-left: 6px;
}
.split-bg ul li::before {
  content: url(../../statics/img/icones/bullet.png);
  position: absolute;
  top: 0;
  left: -39px;
  z-index: 1;
}
.split-bg ul li:last-child p {
  margin-bottom: 0;
}
.split-bg ul li p {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .split-bg ul li p {
    font-size: 16px;
  }
}
.split-bg ul li p small {
  display: block;
  font-size: 14px;
  line-height: 18px;
}
.split-bg.split2 {
  background-image: url("../../statics/img/solucoes/bg3.jpg") !important;
}
@media (max-width: 767px) {
  .split-bg.split2 {
    background-image: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .split-bg.split2 {
    background-image: none !important;
  }
}
@media (max-width: 767px) {
  .split-bg .container {
    padding: 0 15px;
  }
}
.split-bg.split3 {
  background-image: url("../../statics/img/industria/bg2.jpg") !important;
}
@media (max-width: 767px) {
  .split-bg.split3 {
    background-image: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .split-bg.split3 {
    background-image: none !important;
  }
}
@media (max-width: 767px) {
  .split-bg .container {
    padding: 0 15px;
  }
}

.split-color {
  background: #0A2850 !important;
}

.list-resultado-busca .list-group-item {
  padding: 12px 20px;
}
.list-resultado-busca .list-group-item p {
  margin-bottom: 0;
}
.list-resultado-busca .list-group-item i {
  font-size: 24px;
}

.login .carousel .carousel-item img {
  object-fit: cover;
  object-position: left;
}
.login .carousel .carousel-item .carousel-caption {
  text-align: left;
  bottom: 24%;
  width: 36%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .login .carousel .carousel-item .carousel-caption {
    width: 75%;
  }
}
.login .carousel .carousel-item .carousel-caption h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .login .carousel .carousel-item .carousel-caption h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
.login .carousel .carousel-item .carousel-caption p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.login .carousel .carousel-indicators {
  bottom: 20%;
  justify-content: start;
}
.login .btn-custom {
  background: #619EF3;
  color: #fff;
}
.login h5 {
  font-weight: 600;
}
.login .form-control {
  background: #F2F2F2;
  border: none;
}

.no-service {
  background-color: #001544;
  color: #fff;
}
.no-service a {
  color: #fff;
}
.no-service .list-group-item {
  background: none;
  border: none;
}
.no-service .list-group-item a img {
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .no-service .list-group-item a img {
    display: block;
    margin: auto;
  }
}
.no-service h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .no-service h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
.no-service p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
.no-service .bg-erro {
  background: url("/erro/statics/img/erro/bg.svg") no-repeat center;
  background-size: 100%;
  padding: 100px;
}
@media (max-width: 767px) {
  .no-service .bg-erro {
    padding: 90px 0px;
    background-size: 100%;
    height: 420px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .no-service .bg-erro {
    padding: 70px 110px;
  }
}
@media (max-width: 767px) {
  .no-service .bg-erro .img-gif {
    width: 50%;
    display: block;
    margin: 0 auto 30px;
  }
}
.no-service .bg-content {
  background: url("/erro/statics/img/erro/bg-content.png") no-repeat center top;
  background-size: 100%;
  padding: 60px 0 30px;
}
@media (max-width: 767px) {
  .no-service .bg-content {
    background: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .no-service .bg-content {
    background: none;
  }
}
.no-service .bg-content h1 {
  background: url("/erro/statics/img/erro/ondas.svg") no-repeat bottom 15px left 60px, url("/erro/statics/img/erro//ondas.svg") no-repeat bottom 15px right 60px;
}
@media (max-width: 767px) {
  .no-service .bg-content h1 {
    background-position: bottom 15px left 15px, bottom 15px right 15px;
  }
}
.no-service.game {
  background: url("/erro/statics/img/erro/bg-game.jpg") no-repeat center 21%;
  background-size: cover;
}
@media (max-width: 767px) {
  .no-service.game {
    background-size: 120vh;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .no-service.game {
    background-size: 120vh;
  }
}
.no-service.game h1 {
  font-size: 52px;
  font-weight: 300;
  line-height: 64px;
}
@media (max-width: 767px) {
  .no-service.game h1 {
    font-size: 42px;
    line-height: 50px;
  }
}
.no-service.game h5 {
  margin-bottom: 24px;
}
.no-service.game p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.no-service.game #space-invaders {
  background: transparent !important;
  margin: 30px auto;
  display: block;
}
.no-service.game .badge-game {
  background: #FF507C;
  font-size: 16px;
  font-weight: 500;
  margin: 0 5px;
  padding: 10px 20px;
  text-transform: uppercase;
}
.no-service.game .btn-custom {
  background: #619EF3;
  color: #fff;
  margin: 0 0 0 15px;
  padding: 5px 20px !important;
}
.no-service.geral h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 57px;
}
@media (max-width: 767px) {
  .no-service.geral .bg-erro {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .no-service.geral .bg-erro {
    margin-bottom: 30px;
  }
}
.no-service.geral .btn {
  background: #619EF3;
  margin: 30px 0;
}
.no-service.geral .bg-erro {
  padding: 60px 50px;
}