/**
* ********************************************
*
* MOBILE / SMALL SCREEN (0px - 480px)
*
* ********************************************
*/

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* These selection rule sets have to be separate.
* Customize the background color to match your design.
*/

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
* A better looking default horizontal rule
*/

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
* Remove default fieldset styles.
*/

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
* Allow only vertical resizing of textareas.
*/

textarea {
  resize: vertical;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  max-width: none;
  max-height: none;
  background-color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: transform 160ms ease;
}

body.navbar-menu-active {
  transform: translateX(-250px);
}

a {
  color: #0069ab;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* Scrollbar - Início
/* ******************************************** */

::-webkit-scrollbar {}

::-webkit-scrollbar {
  width: 8px;
  height: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.2);
  visibility: hidden;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

::-webkit-resizer {
  background-color: transparent;
}

/* Scrollbar - Fim
/* ******************************************** */



/* Header - Início
/* ******************************************** */

.header {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0069ab;
  z-index: 500;
}

.header-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
}

.transparent-header .header {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}



/* Barra Integradora - Início
/* ******************************************** */

.barra-integradora {
  display: block;
  width: 100%;
  height: 50px;
  background-color: #004a70;
}

.barra-integradora-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto 0 auto;
}

.barra-integradora-left,
.barra-integradora-right {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  position: relative;
  width: auto;
  height: auto;
}

.barra-integradora-left {
  justify-content: flex-start;
  margin-left: 0;
}

.barra-integradora-right {
  justify-content: flex-end;
  margin-top: 5px;
  margin-right: 0;
}

.barra-integradora-items {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.barra-integradora-item {
  position: relative;
  color: #87CDFB;
  font-size: 10px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.barra-integradora-item:hover {
  color: #F6FBFF;
  text-decoration: none;
}

.barra-integradora-item.active {
  color: #F6FBFF;
}

.barra-integradora-left .barra-integradora-item {
  margin-right: 16px;
}

.barra-integradora-left .barra-integradora-item:nth-last-child(1) {
  margin-right: 0;
}

.barra-integradora-right .barra-integradora-item {
  margin-right: 16px;
  text-transform: uppercase;
}

.barra-integradora-right .barra-integradora-item:nth-last-child(1) {
  margin-right: 0;
}

.barra-integradora-item::after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  width: 1px;
  height: 12px;
  background-color: #87CDFB;
}

.barra-integradora-left .barra-integradora-item::after {
  right: -8px;
}

.barra-integradora-left .barra-integradora-item:nth-last-child(1)::after {
  display: none;
}

.barra-integradora-right .barra-integradora-item::after {
  left: -8px;
}

.barra-integradora-right .barra-integradora-item:nth-child(1)::after {
  display: none;
}

.transparent-header .barra-integradora {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.transparent-header .barra-integradora-item {
  color: rgba(255, 255, 255, .75);
}

.transparent-header .barra-integradora-item::after {
  background-color: rgba(255, 255, 255, .5);
}

.transparent-header .barra-integradora-item:hover {
  color: rgba(255, 255, 255, 1);
}

.transparent-header .barra-integradora-item.active {
  color: rgba(255, 255, 255, 1);
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .barra-integradora {
    height: 30px;
  }

  .barra-integradora-wrapper {
    flex-flow: row nowrap;
    justify-content: space-between;
  }

  .barra-integradora-left {
    margin-left: 15px;
  }

  .barra-integradora-right {
    margin-top: 0;
    margin-right: 15px;
  }

  .barra-integradora-right .barra-integradora-item {
    text-transform: none;
  }

  .barra-integradora-item {
    font-size: 12px;
    font-weight: 400;
  }

  .barra-integradora-item::after {
    top: 0;
    width: 1px;
    height: 15px;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .barra-integradora-wrapper {
    width: 1100px;
  }
}

/* Barra Integradora - Fim
/* ******************************************** */



/* Navbar - Início
/* ******************************************** */

.navbar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100px;
  margin: 0 auto 0 auto;
  background-color: #0069ab;
  z-index: 700;
}

.navbar ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 0;
  list-style-type: none;
}

.navbar-left,
.navbar-center,
.navbar-right {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  position: static;
  height: 100%;
}

.navbar-left {
  margin-left: 15px;
}

.navbar-center {
  position: absolute;
  justify-content: flex-start;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.navbar-right {
  margin-right: 15px;
}

.navbar .navbar-logo {
  display: block;
  position: relative;
  width: 110px;
  height: 50px;
}

.navbar .navbar-logo img,
.navbar .navbar-logo svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.navbar .navbar-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #004a70;
}

.navbar .navbar-menu {
  display: none;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 0 0 0;
  width: 100%;
  height: auto;
  margin: 0;
  opacity: 0;
  background-color: #0069ab;
  transform: translateY(60px);
  transition: all 140ms ease-out;
}

.navbar .navbar-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(100px);
}

.navbar .navbar-menu.active::before {
  transform: translateY(100px);
  background-color: transparent;
}

.navbar-menu ul {
  flex-flow: column nowrap;
}

.navbar-menu li {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  flex-grow: 0;
  flex-shrink: 0;
}

.navbar-menu li.with-submenu::before {
  content: '';
  display: block;
  position: absolute;
  top: 25px;
  right: 20px;
  width: 0; 
  height: 0; 
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}

.navbar-menu li.with-submenu.open::before {
  border-top: none;
  border-bottom: 6px solid #fff;
}

.navbar-menu a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 15px 20px;
  width: calc(100% - 40px);
  height: auto;
  color: #fff;
  font-weight: 300;
  text-align: left;
  text-decoration: none;
}

.navbar-menu li:not(:nth-last-child(1))::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

.navbar-menu .icon {
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
  margin-right: 6px;
}

.navbar-menu .icon svg {
  display: block;
  position: relative;
  width: 100%;
  height: auto
}

.navbar-menu .icon svg * {
  fill: #fff;
}

.navbar-menu .submenu {
  display: none;
  flex-flow: column nowrap;
  padding-left: 25px;
  background-color: rgba(0, 0, 0, 0.15);
}

.navbar-menu .submenu.open {
  display: flex;
}

.navbar-menu .submenu .title {
  text-transform: uppercase;
  font-weight: 700;
}

.navbar .social-icons {
  display: none;
}

.transparent-header .navbar {
  background-color: transparent;
}

.transparent-header .navbar .navbar-menu {
  background-color: transparent;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .navbar .navbar-menu::before {
    height: 30px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .navbar .navbar-menu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    top: initial;
    right: initial;
    padding: 0;
    width: auto;
    height: 100%;
    margin-left: 25px;
    opacity: 1;
    transform: none;  }

  .navbar .navbar-menu::before {
    display: none;
  }

  .navbar .navbar-menu.active {
    transform: translateY(0);
  }

  .navbar-menu li {
    display: block;
    position: relative;
    width: auto;
    height: 100%;
  }

  .navbar-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 15px;
    width: auto;
    height: 100%;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    border-right: 1px solid #2C86C0;
    transition: all 120ms ease-in;
  }

  .navbar-menu li:nth-child(1) a {
    border-left: 1px solid #2E83BA;
  }

  .navbar-menu li:hover .submenu {
    display: block;
  }

  .navbar-menu li:not(:nth-last-child(1))::after {
    display: none;
  }

  .navbar-menu li.with-submenu::before {
    display: none;
  }

  .navbar-menu a:hover {
    background-color: #2C86C0;
  }

  .navbar-menu .submenu::before {
    content: '';
    display: block;
    position: absolute;
    top: -18px;
    left: 15px;
    width: 0; 
    height: 0;
    border-top: none;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 18px solid #fff;
  }

  .navbar-menu .submenu {
    display: none;
    position: absolute;
    top: 110px;
    left: 0;
    padding: 20px;
    width: auto;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 15px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow:    2px 2px 15px 1px rgba(0, 0, 0, 0.25);
    box-shadow:         2px 2px 15px 1px rgba(0, 0, 0, 0.25);
  }

  .navbar-menu .submenu::after {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: transparent;
  }

  .navbar-menu .submenu.two-columns {
    width: 400px;
  }

  .navbar-menu .submenu.three-columns {
    width: 650px;
  }

  .navbar-menu .submenu ul {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 40px 0 0;
    float: left;
  }

  .navbar-menu .submenu ul:nth-last-child(1) {
    margin: 0;
  }

  .navbar-menu .submenu li {}

  .navbar-menu .submenu a {
    justify-content: flex-start;
    padding: 5px 5px;
    min-width: 165px;
    color: #000;
    font-size: 13px;
    text-transform: none;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.25);
  }

  .navbar-menu .submenu a:hover {
    background-color: #CAE9FD;
  }

  .navbar-menu .submenu li a {
    border-left: 0;
    border-right: 0;
  }

  .navbar-menu .submenu .title {
    margin-bottom: 5px;
    color: #6ac71e;
    border-bottom: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .navbar-menu .submenu .title:hover {
    background-color: transparent;
  }

  .navbar-menu .submenu .separator {
    display: block;
    position: relative;
    width: 100%;
    height: 20px;
  }

  .navbar-menu .submenu .separator::before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: -5px;
    width: calc(100% + 10px);
    height: 1px;
  }

  .navbar .social-icons {
    display: flex;
  }

  .transparent-header .navbar-menu a {
    border-right-color: rgba(255, 255, 255, .5);
  }

  .transparent-header .navbar-menu li:nth-child(1) a {
    border-left: 1px solid rgba(255, 255, 255, .5);
  }

  .navbar-menu a:hover {
    background-color: rgba(255, 255, 255, .20);
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .navbar {
    width: 1100px;
  }
}

/* Navbar - Fim
/* ******************************************** */



/* Social Icons - Início
/* ******************************************** */

.social-icons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.social-icons .social-icon {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  text-decoration: none;
}

.social-icons .social-icon:nth-child(1) {
  margin-left: 0;
}

.social-icons .social-icon svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.social-icons .social-icon svg * {
  fill: #00395A;
}

.social-icons .social-icon:hover svg * {
  fill: rgba(255, 255, 255, 1);
}

.transparent-header .social-icons .social-icon svg * {
  fill: #fff;
}

.transparent-header .social-icons .social-icon:hover svg * {
  fill: rgba(255, 255, 255, .5);
}

/* Social Icons - Fim
/* ******************************************** */



/* Hamburger Icon - Início
/* ******************************************** */

.hamburger {
  outline: none;
  margin-top: 7px;
}

.hamburger.is-active {}

.hamburger.is-active .hamburger-inner::before {
  background-color: #fff;
}

.hamburger.is-active .hamburger-inner {
  background-color: #fff;
}

.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .hamburger {
    display: none;
  }
}

/* Hamburger Icon - Fim
/* ******************************************** */



/* Hero - Início
/* ******************************************** */

.hero {
  display: block;
  position: relative;
  width: 100%;
  height: 465px;
  overflow: hidden;
}

.hero-background {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-background video {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-play-button::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #0069ab;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.hero-play-button {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  z-index: 100;
}

.hero-play-button::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #0069ab;
  border-radius: 50%;
  transition: all 200ms;
}

.hero-play-button:hover::after {
  background-color: darken(#0069ab, 10%);
}

.hero-play-button img {
  position: relative;
  max-width: 100%;
  width: auto;
  height: auto;
}

.hero-play-button span {
  display: block;
  position: relative;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  z-index: 100;
}

.hero-title {
  padding: 125px 0 0 0;
  width: 300px;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
}

/* IPHONE 6 (>370px) */
@media only screen and (min-width: 370px) {
  .hero-title {
    width: 350px;
  }
}

/* ANDROID 1080p (>420px) */
@media only screen and (min-width: 420px) {
  .hero-title {
    width: 400px;
  }
}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {
  .hero-title {
    width: auto;
    font-size: 32px;
  }
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .hero {
    height: 500px;
  }

  .hero-title {
    font-size: 38px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-content {
    z-index: auto;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.hero-frame {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: rgba(0,0,0,0.80);
  transition: all ease 500ms;
}

.hero-frame.open {
  position: fixed;
  opacity: 1;
  z-index: 600;
}

.hero-frame.open iframe {}

.hero-frame .close {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
  transition: all 200ms;
}

.hero-frame-close:hover {
  color: #0069ab;
  text-decoration: none;
}

.hero-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 15px rgba(0,0,0,0.75);
  transform: translateX(-50%) translateY(-50%);
}


/**
* ************
* Componente:
*   Section
* ********************
*/

.section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
}

.double-section {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: auto;
  height: auto;
  background-color: #f0f0f0;
}

.section-white {
  background-color: #FFF;
}

.section-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 0 0 15px 5px;
  width: calc(100% - 50px);
  height: auto;
}

.double-section .section-wrapper {
  margin-bottom: 25px;
}

.section-header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 25px 0;
  width: 100%;
  height: auto;
}

.section-title {
  color: #313131;
  padding: 10px 0;
  font-size: 18px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.section-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.section-banner {
  display: block;
  padding-top: 20px;
}

.section-banner .banner-picture {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-decoration: none;
}

.section-banner .banner-picture img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

/* ANDROID 1080p (>420px) */
@media only screen and (min-width: 420px) {
  .section-title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 767px) {
  .section-banner {
    padding-top: 25px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .section-wrapper {
    align-items: flex-start;
    width: 979px;
  }

  .section-content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
  }

  .double-section .section {
    width: 70%;
    margin-right: 25px;
  }

  .double-section .section:nth-last-child(1) {
    margin-right: 0;
  }

  .double-section .section.widget-revista-section {
    width: 30%;
    margin-right: 25px;
  }

  .double-section .section-wrapper {
    flex-flow: row nowrap;
  }

  .double-section .section-title {
    font-size: 20px;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .section-wrapper {
    width: 1100px;
  }

  .section-banner .banner-picture {
    width: 1100px;
  }
}




.decal {
  display: block;
  position: relative;
}

.decal svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}




.page {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.page-header {
  display: block;
  position: relative;
}

.page-wrapper {
  display: block;
  position: relative;
  margin: 0 auto;
}

.page-featured {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}


/* Page Model One
/* ******************************************** */

.page-model-one {}

.page-model-one .page-header {
  display: block;
  position: relative;
  width: 100%;
  height: 500px;  
}

.page-model-one .page-cover::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(191,191,191,0) 75%, rgba(255,255,255,0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.5)), color-stop(75%, rgba(191,191,191,0)), color-stop(100%, rgba(255,255,255,0)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(191,191,191,0) 75%, rgba(255,255,255,0) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(191,191,191,0) 75%, rgba(255,255,255,0) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(191,191,191,0) 75%, rgba(255,255,255,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(191,191,191,0) 75%, rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0 );
}

.page-model-one .page-cover {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 650px;
  background-size: cover;
  background-position: center center;
  background-image: url('../img/abhas-mishra-250509.jpg');
}

.page-model-one .page-header-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.page-model-one .page-title {
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  font-size: 54px;
  font-weight: 300;
}


/* Page Model Two
/* ******************************************** */

.page-model-two {}

.page-model-two .page-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.page-model-two .breadcrumbs {
  margin-top: 10px;
  margin-left: 5px;
}

.page-model-two .page-header {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto; 
  background-color: transparent;
}

.page-model-two .page-header-content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
}

.page-model-two .page-titles {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin: 25px 0;
}

.page-model-two .page-title {
  padding: 0;
  margin: 0 30px 0 0;
  color: #003957;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.page-model-two .page-title:not(:nth-child(1)) {
  margin-top: 0;
}

.page-model-two .decal-barras {
  display: block;
  position: relative;
  padding: 0 15px 0 0;
  width: 36px;
  height: 62px;
}

.page-model-two .decal-barras svg * {
  fill: #3aaebf;
}

.page-model-two .page-video {
  display: block;
  position: relative;
  width: 304px;
  height: 171px;
  margin: 15px auto 0 auto;
}

.page-model-two .page-video iframe {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.page-model-two .page-header-2 {
  height: auto;
  padding-bottom: 50px;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-model-two .page-header-2 .decal-barras {
  position: absolute;
  top: 20%;
  left: 0;
  height: 125px;
}

.page-model-two .page-header-2 .page-titles {
  align-items: center;
  padding: 35px 0 50px 0;
  width: 100%;
}

.page-model-two .page-header-2 .page-title {
  max-width: 200px;
  margin: 0;
  color: #004c73;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
}

.page-model-two .page-header-2 .page-title:nth-child(2) {
  text-transform: none;
  font-weight: 600;
}

.page-model-two .page-header-2 .page-video {
  width: 304px;
  height: 171px;
  margin: 0 auto;
}

.page-model-two .page-header-2 .page-video-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: all 240ms ease;
}

.page-model-two .page-header-2 .page-video-cover.hide {
  opacity: 0;
}

.page-model-two .page-header-2 .page-video-cover .play {
  cursor: pointer;
  display: block;
  position: relative;
  width: auto;
  height: 50px;
}

.page-model-two .page-header-2 .page-video-cover .play svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.page-model-two .page-header-2 .breadcrumbs {
  background-color: transparent;
}

.page-model-two .page-header-2 .breadcrumbs-item {
  cursor: pointer;
  color: #004c73;
}

.page-model-two .page-header-2 .breadcrumbs-item:hover {
  text-decoration: underline;
}

.page-model-two .page-header-2 .breadcrumbs-item::after {
  color: #004c73;
}

/* IPHONE 6 (>370px) */
@media only screen and (min-width: 370px) {
  .page-model-two .page-title {
    font-size: 20px;
  }

  .page-model-two .page-video {
    width: 368px;
    height: 207px;
  }

  .page-model-two .page-header-2 .page-title {
    max-width: 250px;
    font-size: 26px;
  }
}

/* ANDROID 1080p (>420px) */
@media only screen and (min-width: 420px) {
  .page-model-two .page-title {
    font-size: 22px;
  }

  .page-model-two .page-header-2 .page-video {
    width: 368px;
    height: 207px;
  }
}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {
  .page-model-two .page-title {
    font-size: 26px;
  }

  .page-model-two .page-video {
    width: 512px;
    height: 288px;
  }

  .page-model-two .page-header-2 .page-title {
    max-width: none;
    font-size: 28px;
  }
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .page-model-two .page-video {
    width: 752px;
    height: 423px;
  }

  .page-model-two .page-header-2 .page-title {
    font-size: 32px;
  }

  .page-model-two .page-header-2 .page-video {
    width: 512px;
    height: 288px;
  }

  .page-model-two .page-header-2 .page-video-cover .play {
    height: 75px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .page-model-two .page-header-2 .page-title {
    font-size: 38px;
  }

  .page-model-two .page-header-2 .page-video {
    width: 768px;
    height: 432px;
    margin: 0 auto;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .page-model-two .page-wrapper {
    width: 1100px;
  }
}


.page-model-two .page-featured-one::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 2px, #fff 0.1%) center, linear-gradient(rgba(0, 0, 0, .18) 2px, #fff 0.1%) center, transparent;
  background-size: 5px 5px;
  z-index: -1;
}

.page-model-two .page-featured-one {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.page-model-two .page-featured-one p {
  max-width: 520px;
  margin: 0 15px;
  padding: 40px 0;
  color: #093037;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
}

/* IPHONE 6 (>370px) */
@media only screen and (min-width: 370px) {
  .page-model-two .page-header-2 .decal-barras {
    left: 15px;
  }
}

/* ANDROID 1080p (>420px) */
@media only screen and (min-width: 420px) {}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .page-model-two .page-featured-one p {
    font-size: 26px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {}


.page-model-two .page-featured-two {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background-color: #d8e4e3;
}

.page-model-two .featured-card::before {
  content: '';
  display: none;
  position: absolute;
  top: 0.5%;
  left: 125px;
  width: calc(100% - 100px);
  height: 99%;
  background-color: #d8e4e3;
  z-index: -1;
}

.page-model-two .featured-card {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: auto;
  border-radius: 3px;
}

.page-model-two .featured-card .card-image {
  display: block;
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 200px;
  background-size: cover;
  flex-shrink: 0;
}

.page-model-two .featured-card .card-info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-left: 0;
}

.page-model-two .featured-card .card-title {
  margin: 25px 0;
  color: #093037;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
}

.page-model-two .featured-card .card-items {
  margin: 0 25px;
  padding: 0;
  list-style-type: none;
}

.page-model-two .featured-card .card-items li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  margin: 1px 0;
  max-width: 500px;
  padding: 0;
  color: #464646;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  text-align: left;
}

.page-model-two .featured-card .card-items li p {
  margin: 0;
}

.page-model-two .featured-card .card-items li .icon {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  margin-right: 8px;
  flex-shrink: 0;
}

.page-model-two .featured-card .card-items li .icon .ci0 {
  fill: rgba(172, 183, 182, 0.5);
}

.page-model-two .featured-card .card-items li .icon .ci1 {
  stroke: rgba(255, 255, 255, 0.6);
}

.page-model-two .featured-card .card-items li .icon svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}


/* IPHONE 6 (>370px) */
@media only screen and (min-width: 370px) {}

/* ANDROID 1080p (>420px) */
@media only screen and (min-width: 420px) {}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .page-model-two .page-featured-two {
    margin: 75px 0;
    background-color: transparent;
  }

  .page-model-two .featured-card .card-image {
    width: 300px;
    height: 300px;
  }

  .page-model-two .featured-card::before {
    display: block;
  }

  .page-model-two .featured-card {
    flex-flow: row nowrap;
  }

  .page-model-two .featured-card .card-info {
    align-items: flex-start;
    margin-left: 35px;
  }

  .page-model-two .featured-card .card-title {
    margin: 8px 0;
  }

  .page-model-two .featured-card .card-items {
    margin: 0;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {}




.page-model-two .page-featured-three {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  height: 400px;
  margin: 0;
  background-image: url('../img/bg_parallax.jpg');
  background-position: center center;
  background-attachment: fixed;
}

.page-model-two .page-featured-three .featured-title {
  max-width: 520px;
  margin: 0 50px 15px 50px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.page-model-two .page-featured-three .featured-text {
  max-width: 520px;
  margin: 0 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  text-align: center;
}



/* IPHONE 6 (>370px) */
@media only screen and (min-width: 370px) {}

/* ANDROID 1080p (>420px) */
@media only screen and (min-width: 420px) {}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .page-model-two .page-featured-three .featured-title {
    font-size: 26px;
  }

  .page-model-two .page-featured-three .featured-text {
    font-size: 18px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {}




.page-model-two .page-featured-four::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url('../img/Layer 6.png');
  background-position: center center;
}

.page-model-two .page-featured-four {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  height: auto;
  padding: 45px 0;
  margin: 0;
  overflow: hidden;
}

.page-model-two .page-featured-four .featured-title {
  position: relative;
  max-width: 520px;
  margin: 0 25px;
  color: #093037;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
}

.page-model-two .page-featured-four .featured-title::after {
  content: '';
  display: block;
  position: absolute;
  left: 2.5%;
  bottom: -15px;
  width: 95%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.20);
}

.page-model-two .page-featured-four .featured-solutions-title {
  max-width: 520px;
  margin: 45px 0 30px 0;
  color: #093037;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  transform: scale(1, 0.9);
}

.page-model-two .featured-solutions {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin: 0;
}

.page-model-two .featured-solution {
  display: block;
  position: relative;
  margin: 100px 0;
}

.page-model-two .featured-solution:nth-child(1) .solution-ball {
  background-color: #27bb8b;
}

.page-model-two .featured-solution:nth-child(1) .solution-ball:hover {
  background-color: #008559;
}

.page-model-two .solution-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.page-model-two .solution-name p {
  position: relative;
  max-width: 200px;
  color: #093037;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  z-index: 10;
}

.page-model-two .solutions {
  display: block;
  position: relative;
  width: 225px;
  height: 225px;
  border-radius: 250px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background-color: rgba(255, 255, 255, 0.35);
  animation: circle 30s linear infinite;
  z-index: 10;
}

.page-model-two .solution-ball {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 300px;
  background-color: #2aa49f;
  text-decoration: none;
  animation: inner-circle 30s linear infinite;
  z-index: 10;
}

.page-model-two .solution-ball {
  margin: 0 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}

.page-model-two .solution-ball:hover {
  background-color: #037672;
}

.page-model-two .solution-ball-small {
  top: calc((125px / 2) + 50px);
  left: calc((125px / 2) + 50px);
  width: 75px;
  height: 75px;
}

.page-model-two .solution-ball-medium {
  top: calc((125px / 2) - 25px);
  left: calc((125px / 2) - 25px);
  width: 100px;
  height: 100px;
}

.page-model-two .solution-ball-big {
  top: calc((125px / 2) + 10px);
  left: calc((125px / 2) + 10px);
  width: 115px;
  height: 115px;
}

@keyframes myOrbit {
    from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

@keyframes circle {
    from { transform:rotate(0deg); }
    to { transform:rotate(360deg); }
}

@keyframes inner-circle {
    from { transform:rotate(0deg); }
    to { transform:rotate(-360deg); }
}

/* IPHONE 6 (>370px) */
@media only screen and (min-width: 370px) {
  .page-model-two .page-featured-four .featured-title {
    margin: 0 50px;
  }

  .page-model-two .solutions {
    width: 275px;
    height: 275px;
  }
}

/* ANDROID 1080p (>420px) */
@media only screen and (min-width: 420px) {}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .page-model-two .page-featured-four .featured-title {
    font-size: 26px;
  }

  .page-model-two .page-featured-four .featured-solutions-title {
    font-size: 24px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .page-model-two .featured-solutions {
    flex-flow: row nowrap;
  }

  .page-model-two .featured-solution:nth-child(1) {
    margin-right: 200px;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .page-model-two .solutions {
    width: 325px;
    height: 325px;
  }

  .page-model-two .solution-ball p {
    font-size: 16px;
  }

  .page-model-two .solution-ball-small {
    top: calc((125px / 2) + 12px);
    left: calc((125px / 2) + 12px);
    width: 100px;
    height: 100px;
  }

  .page-model-two .solution-ball-medium {
    top: calc((125px / 2));
    left: calc((125px / 2));
    width: 125px;
    height: 125px;
  }

  .page-model-two .solution-ball-big {
    top: calc((125px / 2) - 10px);
    left: calc((125px / 2) - 10px);
    width: 145px;
    height: 145px;
  }
}




/**
* ************
* Componente:
*   Post Section
* ********************
*/

.post-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 15px 0;
  width: 100%;
  height: auto;
}

.post-section .post-title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
}

.post-section .post-description {
  margin: 0;
  color: #464646;
  font-size: 15px;
}

.post-section .post-content {
  margin: 15px 0 0 0;
  width: 100%;
  font-size: 15px;
}

.post-section .post-content img {
  display: block;
  position: relative;
  max-width: 100%;
}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {
  .post-section {
    width: 520px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .post-section {
    width: 800px;
  }
}


/**
* ************
* Componente:
*   Institucional Section
* ********************
*/

.institucional-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 15px 0;
  width: 100%;
  height: auto;
}

.institucional-section .institucional-title {
  color: #093037;
  margin: 0;
  margin-top: 10px;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 300;
}

.institucional-title.not-the-first {
  margin-top: 15px;
}

.institucional-section .institucional-title .bold {
  font-weight: 700;
  white-space: nowrap;
  word-break: keep-all;
}

.institucional-section .institucional-text {
  margin: 15px 0 0 0;
  font-size: 15px;
}

.institucional-section .institucional-list {
  padding: 0;
  list-style-type: none;
}

.institucional-section .institucional-list li::before {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url('../img/checkright.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.institucional-section .institucional-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
}

.institucional-section .institucional-list li:not(:nth-last-child(1)) {
  padding-bottom: 10px;
}

.institucional-section .institucional-image-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.institucional-section .institucional-image-item {
  display: block;
  position: relative;
  width: 180px;
  height: auto;
}

.institucional-section .institucional-image-item:not(:nth-last-child(1)) {
  margin-bottom: 35px;
}

.institucional-section .institucional-image-item:not(:nth-last-child(1))::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -25%;
  width: 5px;
  height: 25%;
  background-color: #e1e1e1;
}

.institucional-section .institucional-image-item img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .institucional-title.not-the-first {
    margin-top: 50px;
  }

  .institucional-section .institucional-text {
    width: 720px;
    line-height: 28px;
  }

  .institucional-section .institucional-image-list {
    flex-flow: row nowrap;
    width: auto;
  }

  .institucional-section .institucional-image-item {
    width: 160px;
  }

  .institucional-section .institucional-image-item:not(:nth-last-child(1)) {
    margin-right: 25px;
    margin-bottom: 0;
  }

  .institucional-section .institucional-image-item:not(:nth-last-child(1))::after {
    top: 50%;
    left: initial;
    right: -25%;
    bottom: initial;
    width: 25%;
    height: 5px;
  }
}

.institucional-divider {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin: 25px 0 25px 0;
  background-color: #e1e1e1;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}


/**
* ************
* Componente:
*   Institucional Campanha
* ********************
*/

.institucional-campanha-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.institucional-campanha {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding-bottom: 15px;
  width: 100%;
  height: auto;
}

.institucional-campanha:not([data-index="c1"]) {
  margin-top: 15px;
}

.institucional-campanha-title::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #000;
}

.institucional-campanha-title {
  display: block;
  position: relative;
  padding-left: 15px;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
}

.institucional-carousel {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.institucional-carousel-items {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 15px;
}

.institucional-carousel-item {
  display: block;
  position: relative;
  width: 250px;
  height: auto;
  background-color: transparent;
  margin: 0 25px 0 0;
}

.institucional-carousel-thumbnail {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center center;
  transition: all 140ms ease-in-out;
}

.institucional-carousel-thumbnail img {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  transition: all 160ms ease-in;
}

.institucional-carousel-thumbnail:hover img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  transform: scale(1.05);
}

.institucional-carousel-overlay {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  transition: all 140ms ease;
}

.institucional-carousel-overlay i {
  color: rgba(255, 255, 255, 0.75);
  font-size: 64px;
  transition: all 140ms ease;
}

.institucional-carousel-title {
  display: block;
  position: relative;
  margin: 10px 0;
  color: #828282;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.institucional-campanha-buttons {
  display: none;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .institucional-campanha-wrapper {
    height: 260px;
  }

  .institucional-campanha {
    position: absolute;
    margin-top: 15px;
  }

  .institucional-campanha:not([data-index="c1"]) {
    display: none;
  }

  .institucional-campanha .institucional-campanha-title {
    display: none;
  }

  .institucional-campanha-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    height: auto;
  }

  .institucional-campanha-buttons .btn-campanha {
    cursor: pointer;
    display: block;
    position: relative;
    padding: 20px 45px;
    width: 33%;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: rgba(0, 0, 0, 0.75);
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
  }

  .institucional-campanha-buttons .btn-campanha:hover {
    background-color: #AEDEFD;
  }

  .institucional-campanha-buttons .btn-campanha:not(:nth-last-child(1)) {
    margin-right: 15px;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .institucional-section {
    background-image: url('../img/insti_newbg.jpg');
    background-repeat: no-repeat;
    background-size: 650px;
    background-position: top right;
  }
}


/**
* ************
* Componente:
*   Page Section
* ********************
*/

.page-section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 15px 0;
  width: 100%;
  height: auto;
}

.page-section .page-title {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 600;
}

.page-section .page-filter {
  margin: 15px 0 0 0;
}

.page-section .page-description {
  margin: 0;
  color: #464646;
  font-size: 15px;
}

.page-section .page-content {
  margin: 15px 0 0 0;
  font-size: 15px;
}

.page-section .page-content p {
  margin: 0;
}

.social-networks-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  margin: 25px 0;
}

.social-network-group {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 235px;
  height: auto;
  margin-right: 25px;
  margin-bottom: 25px;
}

.social-network-info {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 5px 8px;
  width: calc(100% - 16px);
  height: auto;
}

.social-network-info::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.25);
}

.social-network-icon {
  display: block;
  position: relative;
  width: auto;
  height: 18px;
}

.social-network-icon svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.social-network-title {
  padding: 0;
  margin: 0 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.social-network-links {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
}

.social-network-links a::before {
  content: '\203A';
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: auto;
  height: auto;
  font-size: 18px;
}

.social-network-links a {
  display: block;
  position: relative;
  padding: 4px 8px 4px 15px;
  width: calc(100% - 8px - 15px);
  height: auto;
  margin: 2px 0;
  font-size: 14px;
  font-weight: 400;
}

.social-network-links a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.25);
}

.social-network-group.facebook .social-network-icon svg * {
  fill: #3b5998;
}

.social-network-group.facebook .social-network-title {}

.social-network-group.twitter .social-network-icon svg * {
  fill: #55acee;
}

.social-network-group.twitter .social-network-title {}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {
  .page-section {
    width: 580px;
  }

  .page-section .page-title {
    font-size: 32px;
  }
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .page-section .page-title {
    font-size: 32px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .page-section {
    width: 900px;
  }
}


/**
* ************
* Componente:
*   Unidades
* ********************
*/

.unidades::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #B2E0FE;
}

.unidades {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  margin: 50px 0 25px 0;
}

.unidades .unidades-header {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.unidades .unidades-header-left::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: #B2E0FE;
}

.unidades .unidades-header-left,
.unidades .unidades-header-right {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.unidades .unidades-header-left {}

.unidades .unidades-header-right {
  margin-top: 25px;
}

.unidades .unidades-title {
  font-size: 20px;
}

.unidades .unidades-description {
  color: #464646;
  font-size: 14px;
}

.unidades form {
  width: 100%;
}

.unidades .input {
  width: calc(100%);
}

.unidades .input select {
  padding: 10px;
  width: 100%;
  border-radius: 2px;
  border-bottom-color: #B2E0FE;
}

.unidades-items-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.unidade {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  max-height: 360px;
  margin: 0 0 25px 0;
  -webkit-box-shadow: 2px 2px 15px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow:    2px 2px 15px 1px rgba(0, 0, 0, 0.25);
  box-shadow:         2px 2px 15px 1px rgba(0, 0, 0, 0.25);
}

.unidade ::-webkit-scrollbar {
  width: 3px;
}

.unidade ::-webkit-scrollbar {
  background-color: #0078b4;
}

.unidade ::-webkit-scrollbar-thumb {
  background-color: #00A6F7;
}

.unidade.casa-da-industria ::-webkit-scrollbar {
  background-color: #008e84;
}

.unidade.casa-da-industria ::-webkit-scrollbar-thumb {
  background-color: #008e84;
}

.unidade .unidade-header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.unidade .unidade-header::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
}

.unidade .unidade-header-left,
.unidade .unidade-header-right {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  position: relative;
  padding: 10px 0;
  width: auto;
}

.unidade .unidade-header-left {
  justify-content: flex-start;
  margin-left: 10px;
}

.unidade .unidade-header-right {
  justify-content: flex-end;
  margin-right: 10px;
}

.unidade .unidade-logo {
  display: block;
  position: relative;
  width: 55px;
  height: 55px;
}

.unidade .unidade-logo svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.unidade.casa-da-industria .unidade-logo svg * {
  fill: #008e84;
}

.unidade .unidade-content {
  display: block;
  position: relative;
  width: 100%;
  max-height: 275px;
  overflow-y: scroll;
}

.unidade .unidade-content-header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 0 15px;
}

.unidade .unidade-content-icon {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.unidade .unidade-content-icon svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.unidade .unidade-content-icon svg * {
  fill: #0078b4;
}

.unidade.casa-da-industria .unidade-content-icon svg * {
  fill: #008e84;
}

.unidade .unidade-content-address {
  font-size: 16px;
  font-weight: 400;
}

.unidade .unidade-content-text {
  display: block;
  position: relative;
  padding: 0 15px;
  width: calc(100% - 30px);
  height: auto;
  font-size: 14px;
}

.unidade .unidade-footer::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
}

.unidade .unidade-footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.unidade .unidade-footer-left,
.unidade .unidade-footer-right {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  position: relative;
  padding: 10px 0;
  width: auto;
}

.unidade .unidade-footer-left {
  justify-content: flex-start;
  margin-left: 10px;
}

.unidade .unidade-footer-right {
  justify-content: flex-end;
  margin-right: 10px;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .unidades-items-wrapper {
    flex-flow: row wrap;
  }

  .unidade {
    width: 270px;
  }

  .unidade:nth-child(odd) {
    margin-right: 30px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .unidades .unidades-header {
    flex-flow: row nowrap;
    justify-content: space-between;
  }

  .unidades .unidades-header::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: #B2E0FE;
  }

  .unidades .unidades-header-left::after {
    display: none;
  }

  .unidades .unidades-header-right {
    flex-flow: row nowrap;
    justify-content: flex-end;
    margin-top: 0;
  }

  .unidades form {
    width: auto;
  }

  .unidades .input {
    width: 300px;
  }

  .unidades .input select {
    border-bottom-color: rgba(0, 0, 0, 0.15);
  }

  .unidade {
    margin-right: 30px;
  }
}


/**
* ************
* Componente:
*   Publicação
* ********************
*/

.publicacao {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 35px 0;
  width: 100%;
  height: auto;
}

.publicacao .publicacao-logo {
  display: block;
  position: relative;
  width: 150px;
  height: auto;  
}

.publicacao .publicacao-info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.publicacao .publicacao-date {
  margin: 15px 0 5px 0;
  color: #464646;
  font-size: 14px;
}

.publicacao .publicacao-title {
  margin: 0;
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.publicacao .publicacao-title:hover {
  color: #005F97;
}

.page-section .post-paginator-alpha {
  margin: 10px 0 0 0;
}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {
  .publicacao {
    flex-flow: row nowrap;
    align-items: flex-start;
  }

  .publicacao:not(:nth-last-child(2))::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.25);
  }

  .publicacao .publicacao-logo {
    margin-right: 25px;
  }

  .publicacao .publicacao-info {
    align-items: flex-start;
  }

  .publicacao .publicacao-date {
    margin: 15px 0 0 0;
    font-size: 15px;
  }

  .publicacao .publicacao-title {
    font-size: 20px;
  }
}



/**
* ************
* Componente:
*   Breadcrumbs
* ********************
*/

.breadcrumbs {
  display: none;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 5px;
  background-color: #f0f0f0;
}

.breadcrumbs-item {
  display: block;
  position: relative;
  font-size: 12px;
}

.breadcrumbs-item:not(:nth-last-child(1)) {
  margin: 0 20px 0 0;
}

.breadcrumbs-item::after {
  content: '\00BB';
  display: block;
  position: absolute;
  top: 0;
  right: -13px;
  width: auto;
  height: auto;
}

.breadcrumbs-item:nth-last-child(1)::after {
  display: none;
}

.breadcrumbs-item.active {
  color: #004D7A;
  font-weight: 600;
}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {
  .breadcrumbs {
    display: flex;
  }
}


/* **************** */
/* Extensão         */
/*  Section Videos  */
/* **************** */

.section-videos {
  padding: 0 0 15px 0;
  margin-bottom: 25px;
}

.section-videos .section-header {
  padding: 15px 0;
}

.section-videos .section-wrapper {
  padding: 0 0 25px 5px;
}

.section-header-right {
  flex-shrink: 0;
}


/**
* ************
* Componente:
*   Tabs
* ********************
*/

.tabs {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.tabs-controller {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
}

.tabs-controller.tab-fiep {
  background-color: #0B2B42;
}

.tabs-controller.tab-sesi {
  background-color: #10343a;
}

.tabs-controller.tab-senai {
  background-color: #0f4f74;
}

.tabs-controller.tab-iel {
  background-color: #0b404b;
}

.tabs-controller-item {
  cursor: pointer;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  border-top: 2px solid transparent;
  transition: all 120ms ease-in;
}

.tabs-controller-item::after {
  content: '';
  display: block;
  position: absolute;
  top: 30px;
  right: 20px;
  width: 0; 
  height: 0; 
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}

.tabs-controller-item svg {
  display: block;
  position: relative;
  padding: 15px;
  height: 28px;
  transition: all 120ms ease-in;
}

.tabs-controller-item svg * {
  fill: #fff;
}

.tabs-controller-item.active {
  border-top-color: #fff;
  border-bottom-color: #004970;
}

.tabs-controller-item.active::after {
  border-bottom: 6px solid #fff;
  border-top-width: 0;
}

.tabs-controller-item.active svg * {
  fill: #fff;
}

.tab-content {
  display: none;
  position: relative;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center center;
}

.tab-content-fallback {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #0B2B42;
}

.tabs-controller-item.active .tab-content {
  display: block;
}

.tab-content-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 25px 15px;
  width: calc(100% - 30px);
  height: auto;
  margin: 0 auto 0 auto;
}

.tab-content-left,
.tab-content-right {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  position: relative;
}

.tab-content-left {
  justify-content: flex-start;
  width: 100%;
}

.tab-content-right {
  display: none;
  justify-content: flex-end;
}

.tab-content-text {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.tab-content-picture {
  display: block;
  position: relative;
  width: auto;
  height: 300px;
}

.tab-content .social-icons {
  margin-top: 25px;
  flex-grow: 0;
  width: 250px;
}

.tab-content .social-icon {}

.tab-content .social-icon svg {
  padding: 0;
}

.tab-content .social-icon svg * {
  fill: #ededed;
}

.tab-content .social-icon:hover svg * {
  fill: #fff;
}

.tab-content .btn {
  font-size: 14px;
  margin-top: 20px;
}

.tab-fiep.active,
.tab-fiep.active .tab-content-fallback {
  background-color: #0B2B42;
}

.tab-sesi.active,
.tab-sesi.active .tab-content-fallback {
  background-color: #184854;
}

.tab-senai.active,
.tab-senai.active .tab-content-fallback {
  background-color: #0C6293;
}

.tab-iel.active,
.tab-iel.active .tab-content-fallback {
  background-color: #083346;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .tabs-content-text {
    width: 475px;
    font-size: 16px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .tabs-controller {
    position: static;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 475px;
  }

  .tabs-controller-item {
    justify-content: center;
    align-items: center;
    position: static;
    padding: 0 15px;
    min-width: 175px;
    width: auto;
    height: 60px;
    overflow: hidden;
    border-top: none;
  }

  .tabs-controller-item.active {
    border-top-color: transparent;
  }

  .tabs-controller-item::after {
    display: none;
  }

  .tabs-controller-item > svg {
    padding: 0;
    min-width: 120px;
    width: auto;
    height: 30px;
  }

  .tabs-controller-item svg * {
    fill: rgba(0, 0, 0, 0.4);
  }

  .tabs-controller-item:not(.active) svg:hover * {
    fill: rgba(0, 0, 0, 0.6);
  }

  .tab-content,
  .tab-content-wrapper,
  .tab-content-fallback {
    padding: 0;
    height: 475px;
  }

  .tab-content {
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
  }

  .tab-fiep.active,
  .tab-sesi.active,
  .tab-senai.active,
  .tab-iel.active {
    background-color: transparent;
  }

  .tabs-controller-item.tab-fiep .tab-content-fallback,
  .tabs-controller-item.tab-sesi .tab-content-fallback,
  .tabs-controller-item.tab-senai .tab-content-fallback,
  .tabs-controller-item.tab-iel .tab-content-fallback {
    background-color: rgba(0, 0, 0, 0.25);
  }

  .tab-content-wrapper {
    width: 979px;
  }

  .tab-content-left {
    display: flex;
    padding: 0 15px;
    width: calc(50% - 30px);
  }

  .tab-content-right {
    display: flex;
    padding: 0 15px;
    width: calc(50% - 30px);
  }

  .tab-content-text {
    font-size: 15px;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .tab-content-wrapper {
    width: 1100px;
  }
}


/**
* ************
* Componente:
*   Widget Notícias
* ********************
*/

.widget-noticias {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.widget-noticias-cover-tag {
  display: none;
}

.widget-noticias-items {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.widget-noticias-item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 15px 15px;
  margin-bottom: 50px;
  width: calc(100% - 30px);
  background-color: #fafafa;
}

.widget-noticias-item::after {
  content: '';
  display: block;
  position: absolute;
  left: 5%;
  bottom: -25px;
  width: 90%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.25);
}

.widget-noticias-item:nth-last-child(1)::after {
  display: none;
}

.widget-noticias-item-picture {
  display: block;
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center center;
}

.widget-noticias-item-category {
  padding: 5px 10px;
  background-color: #f0f0f0;
  color: #464646;
  font-size: 12px;
  text-transform: uppercase;
}

.widget-noticias-item-title {
  width: 100%;
  margin-top: 10px;
  color: #000D14;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
}

.widget-noticias-item-title:hover {
  color: #005F97;
}

.widget-noticias-item-description {
  width: 100%;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .widget-noticias-items {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    width: 585px;
    margin: 0 auto 0 auto;
  }

  .widget-noticias-item {
    width: 250px;
  }

  .widget-noticias-item:nth-last-child(1) {
    display: none;
  }

  .widget-noticias-item:nth-child(even) {
    margin-right: 25px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .widget-noticias {
    flex-flow: row nowrap;
    width: 100%;
    background-color: #f0f0f0;
    border-top: 20px solid #f0f0f0;
    border-bottom: 20px solid #f0f0f0;
  }

  .widget-noticias-cover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center center;
  }

  .widget-noticias-cover-tag {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 10px;
    background-color: #464646;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
  }

  .widget-noticias-items {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding-left: 60%;
    width: 40%;
    height: auto;
  }

  .widget-noticias-item {
    cursor: pointer;
    padding: 10px 20px;
    width: calc(100% - 40px);
    background-color: transparent;
  }

  .widget-noticias-item,  
  .widget-noticias-item:nth-child(1),
  .widget-noticias-item:nth-child(even) {
    margin: 0;
  }

  .widget-noticias-item:nth-last-child(1) {
    display: flex;
  }

  .widget-noticias-item:hover {
    background-color: #fafafa;
  }

  .widget-noticias-item.active:hover::before {
    border-right-color: #fafafa;
  }

  .widget-noticias-item::after {
    display: block;
    bottom: 0;
  }

  .widget-noticias-item:nth-last-child(2)::after {
    display: block;
  }

  .widget-noticias-item-picture {
    display: none;
  }

  .widget-noticias-item-category {
    display: none;
  }

  .widget-noticias-item-title {
    margin: 0;
    font-size: 16px;
  }

  .widget-noticias-item-description {
    margin: 5px 0 0 0;
    font-size: 13px;
  }

  .widget-noticias-item.active::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -20px;
    width: 0; 
    height: 0; 
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent; 
    border-right: 25px solid #f0f0f0; 
  }

  .widget-noticias-item.active .widget-noticias-item-title {
    font-weight: 600;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .widget-noticias-items {
    padding-left: 450px;
  }
}

/**
* ************
* Componente:
*   Widget Revista
* ********************
*/

.widget-revista-section .section-header-left {
  width: 100%;
  text-align: center;
}

.widget-revista {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
}

.widget-revista-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.widget-revista-title {
  color: #464646;
  font-size: 24px;
}

.widget-revista-info {
  display: none;
}

.widget-revista-preview {
  margin-top: 20px;
}

.widget-revista .btn-gamma {
  margin-top: 25px;
}

.widget-revista-preview img {
  width: 275px;
  height: auto;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .widget-revista-section .section-header-left {
    text-align: left;
  }

  .widget-revista {
    align-items: flex-start;
    padding: 0;
  }

  .widget-revista-title {
    font-size: 26px;
    font-weight: 600;
  }

  .widget-revista-content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 15px 25px;
    width: calc(100% - 50px);
  }

  .widget-revista-info {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    padding-left: 50px;
    width: calc(500px - 50px);
  }

  .widget-revista-info .widget-revista-title {
    width: 100%;
    font-size: 38px;
    font-weight: 300;
  }

  .widget-revista-info .widget-revista-description {
    width: calc(100% - 25px);
    margin: 0 25px 0 0;
    font-size: 22px;
    font-weight: 300;
  }

  .widget-revista-content > .btn-gamma {
    display: none;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .widget-revista-section .section-header-left {
    text-align: center;
  }

  .widget-revista {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 10px 25px;
    width: 200px;
    min-height: calc(325px - 50px);
    background-color: #fff;
  }

  .widget-revista-title {
    font-size: 20px;
  }

  .widget-revista-content {
    display: block;
    padding: 0;
  }

  .widget-revista-info {
    display: none;
  }

  .widget-revista-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 325px;
    height: auto;
    margin: 0 0 0 -15px;
    overflow: hidden;
  }

  .widget-revista-preview img {
    width: 325px;
    height: auto;
  }

  .widget-revista .btn-gamma {
    position: relative;
    margin-top: 15px;
  }

  .widget-revista .btn-gamma:hover {
    color: #fff;
    background-color: #464646;
  }

  .widget-revista-content > .btn-gamma {
    display: inline-block;
    width: auto;
    float: right;
  }
}



/**
* ************
* Componente:
*   Widget Videos
* ********************
*/

.widget-videos {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.widget-videos-items {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 15px;
}

.widget-videos-items::before {
  content: '';
  display: block;
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: rgba(0, 0, 0, 0.25);
}

.widget-videos-item {
  display: block;
  position: relative;
  width: 275px;
  height: auto;
  background-color: transparent;
  margin: 0 25px 0 0;
}

.widget-videos-thumbnail {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  transition: all 140ms ease-in-out;
}

.widget-videos-thumbnail img {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  transition: all 160ms ease-in;
}

.widget-videos-thumbnail:hover img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  transform: scale(1.05);
}

.widget-videos-overlay {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  transition: all 140ms ease;
}

/*
.widget-videos-thumbnail:hover .widget-videos-overlay {
background-color: rgba(0, 126, 204, 0.7);
}
*/

.widget-videos-overlay i {
  color: rgba(255, 255, 255, 0.75);
  font-size: 64px;
  transition: all 140ms ease;
}

.widget-videos-title {
  display: block;
  position: relative;
  margin: 10px 0;
  color: #828282;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .widget-videos-items {
    display: block;
    margin-top: 0;
    overflow: hidden;
  }

  .widget-videos-item {
    margin: 0 15px 0 0;
  }
}




.post-paginator-alpha {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: auto;
  height: 35px;
  margin: 25px auto 55px auto;
}

.post-paginator-alpha .post-paginator-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 30px;
  height: 100%;
  color: #0c5E99;
  border-top: 1px solid #0069ab;
  border-right: 1px solid #0069ab;
  border-bottom: 1px solid #0069ab;
  text-decoration: none;
  transition: all 0.16s ease-in;
}

.post-paginator-alpha .post-paginator-item:hover {
  color: #fff;
  background-color: #0069ab;
}

.post-paginator-alpha .post-paginator-item-active {
  color: #fff;
  background-color: #0069ab;
}

.post-paginator-alpha .post-paginator-item:nth-child(1) {
  border-left: 1px solid #0069ab;
}

.post-paginator-alpha .post-paginator-item-first {
  line-height: 1px;
}

.post-paginator-alpha .post-paginator-item-last {
  line-height: 1px;
}

.post-paginator-alpha .post-paginator-end {
  padding: 0 15px;
  width: auto;
  text-transform: uppercase;
}



/**
* ************
* Página:
*   Fale Conosco
* ********************
*/

.fale-conosco {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  margin: 25px 0;
}

.fale-conosco form {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.fale-conosco .inputs {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.fale-conosco .input {
  width: 100%;
  height: auto;
}

.fale-conosco .input label {
  color: #464646;
  font-size: 13px;
}

.fale-conosco .input input,
.fale-conosco .input textarea {
  width: 100%;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.fale-conosco .input textarea {
  min-height: 150px;
}

.fale-conosco .input:not(:nth-last-child(1)) {
  margin-bottom: 20px;
}

.fale-conosco .btn-gamma {
  margin-top: 20px;
  background-color: transparent;
  font-size: 14px;
}

.fale-conosco .btn-gamma:hover {
  background-color: #000;
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .fale-conosco .input.input-small,
  .fale-conosco .input.input-small input,
  .fale-conosco .input.input-small textarea,
  .fale-conosco .input.input-small select,
  .fale-conosco .input.input-small .input-preview {
    width: 125px;
  }

  .fale-conosco .input.input-midmid,
  .fale-conosco .input.input-midmid input,
  .fale-conosco .input.input-midmid textarea,
  .fale-conosco .input.input-midmid select,
  .fale-conosco .input.input-midmid .input-preview {
    width: 175px;
  }

  .fale-conosco .input.input-medium,
  .fale-conosco .input.input-medium input,
  .fale-conosco .input.input-medium textarea,
  .fale-conosco .input.input-medium select,
  .fale-conosco .input.input-medium .input-preview {
    width: 200px;
  }

  .fale-conosco .input.input-big,
  .fale-conosco .input.input-big input,
  .fale-conosco .input.input-big textarea,
  .fale-conosco .input.input-big select,
  .fale-conosco .input.input-big .input-preview {
    width: 300px;
  }

  .fale-conosco .input.input-monster,
  .fale-conosco .input.input-monster input,
  .fale-conosco .input.input-monster textarea,
  .fale-conosco .input.input-monster select,
  .fale-conosco .input.input-monster .input-preview {
    width: 500px;
  }

  .fale-conosco .input label {
    font-size: 14px;
  }

  .fale-conosco .input input {
    font-size: 18px;
  }
}






/* Início - Loading */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 240ms ease;
  z-index: -1;
}

.loading.visible {
  opacity: 1;
  z-index: 900;
}

.loading .loader {
  width: 75px;
  height: 75px;
  margin: 0;
}
/* Fim - Loading */


/* Início - Navigation Search */
.navsearch::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.20);
}

.navsearch {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  top: 50px;
  left: 0;
  padding: 20px 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: #0069AB;
  z-index: 600;
}

.navsearch form {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.navsearch-input {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
}

.navsearch-input::after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  bottom: 0;
  width: calc(100% - 20px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.20);
}

.navsearch-input input {
  display: block;
  position: relative;
  padding: 15px 20px 15px 20px;
  width: calc(100% - 40px);
  border: none;
  background-color: transparent;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 300;
  outline: none;
}

.navsearch-input input::placeholder {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 100;
}

.navsearch-input button {
  padding: 0 20px;
  margin: 0;
  border: none;
  background-color: transparent;
  outline: none;
}

.navsearch-input button .icon {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
}

.navsearch-input button .icon svg * {
  fill: #fff;
}

.navsearch-input button:hover .icon svg *,
.navsearch-input button:focus .icon svg * {
  stroke-width: 1px;
  stroke: #fff;
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .navsearch {
    padding: 10px 0;
  }

  .navsearch-input input {
    padding: 10px 15px 10px 15px;
    width: calc(100% - 30px);
    font-size: 20px;
  }

  .navsearch-input button .icon {
    width: 25px;
    height: 25px;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .navsearch::before {
    left: -3%;
    width: 106%;
  }

  .navsearch form {
    width: 1100px;
  }

  .navsearch-input::after {
    left: 0;
    bottom: 0;
    width: 100%;
  }
}
/* Fim - Navigation Search */


/* Início - Search */
.searchbar::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.20);
}

.searchbar {
  display: block;
  position: relative;
  padding: 20px 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: #0069AB;
  z-index: 100;
}

.searchbar form {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.searchbar-input {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
}

.searchbar-input::after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  bottom: 0;
  width: calc(100% - 20px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.20);
}

.searchbar-input input {
  display: block;
  position: relative;
  padding: 15px 20px 15px 20px;
  width: calc(100% - 40px);
  border: none;
  background-color: transparent;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 300;
  outline: none;
}

.searchbar-input input::placeholder {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 100;
}

.searchbar-input button {
  padding: 0 20px;
  margin: 0;
  border: none;
  background-color: transparent;
  outline: none;
}

.searchbar-input button .icon {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
}

.searchbar-input button .icon svg * {
  fill: #fff;
}

.searchbar-input button:hover .icon svg *,
.searchbar-input button:focus .icon svg * {
  stroke-width: 1px;
  stroke: #fff;
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .searchbar-input input {
    padding: 10px 15px 10px 15px;
    width: calc(100% - 30px);
    font-size: 38px;
  }

  .searchbar-input button .icon {
    width: 35px;
    height: 35px;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .searchbar::before {
    left: -3%;
    width: 106%;
  }

  .searchbar {
    width: 1100px;
  }

  .searchbar-input::after {
    left: 0;
    bottom: 0;
    width: 100%;
  }
}


.search {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #F0F0F0;
}

.search-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 0;
  width: 100%;
  margin: 0 auto;
}

.search-list.waiting {
  height: calc(100vh - 235px);
}

.search-list .loading {
  position: absolute;
  height: 100%;
  overflow: hidden;
}

.search-list .loader {
  margin: 0;
}

.search-list.no-query .no-query-message,
.search-list.no-results .no-results-message,
.search-list.unavailable .unavailable-message {
  display: flex;
}

.message {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: calc(100vh - 235px);
}

.message p {
  margin: 0;
  padding: 0 50px 50px 50px;
  color: #898989;
  font-size: 26px;
  font-weight: 300;
  text-align: center;
}

.search-result {
  cursor: pointer;
  display: block;
  padding: 20px 15px;
  width: calc(100% - 30px);
  height: auto;
  margin: 1px 0;
  background-color: #fff;
  text-decoration: none;
}

.search-result:hover {
  text-decoration: none;
}

.search-result:hover {
  background-color: #f0f0f0;
}

.search-result-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.search-result-title {
  margin: 0;
  color: #353839;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.search-result-title:hover {
  text-decoration: underline;
}

.search-result-snippet {
  margin: 5px 0 0 0;
  color: #696969;
  font-size: 13px;
  font-weight: 400;
}

.search-result-arrow {
  display: block;
  position: relative;
  width: auto;
  height: 40px;
  margin-left: 10px;
}

.search-result-arrow svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.search-result-arrow svg * {
  fill: #353839;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .message p {
    font-size: 36px;
  }

  .search-result {
    padding: 25px 15px;
  }

  .search-result-snippet {
    max-width: 75%;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .search-result {
    padding: 15px;
    height: 100px;
  }

  .search-result-title {
    font-size: 22px;
  }

  .search-result-snippet {
    font-size: 14px;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .search-result-wrapper {
    width: 1100px;
  }

  .search-result-left {
    margin-left: 15px;
  }

  .search-result-right {
    margin-right: 15px;
  }
}
/* Fim - Search */













/**
* ************
* Componente:
*   Footer
* ********************
*/

.footer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #004a70;
}

.footer-top,
.footer-bottom {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 25px 0;
  width: 100%;
}

.footer-top {
  align-items: center;
  background-color: #0069ab;
}

.footer-bottom {
  align-items: center;
  background-color: #004a70;
}

.footer-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 0 15px;
  width: calc(100% - 30px);
}

.footer-content-left,
.footer-content-right {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
}

.footer-content-left {}

.footer-content-right {}

.footer-content-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 20px 0 0 0;
}

.footer-menus {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.footer-menu {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 15px 0;
}

.footer-menu ul {
  display: none;
  padding-left: 0;
  margin: 10px 12px;
  list-style-type: none;
}

.footer-menu.open ul {
  display: block;
}

.footer-menu li {
  display: block;
  position: relative;
}

.footer-menu a {
  color: #FAFAFA;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.footer-menu a:not(.footer-menu-title):hover {
  text-decoration: underline;
}

.footer-menu .footer-menu-title::before {
  content: '';
  display: block;
  position: absolute;
  top: -2.5%;
  left: 0;
  width: 2px;
  height: 105%;
  border-radius: 1px;
  background-color: rgba(255, 255, 255, 0.75);
}

.footer-menu .footer-menu-title {
  position: relative;
  padding-left: 10px;
  width: calc(100% - 10px);
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}

.footer-menu .footer-menu-title[href^="javascript"]::after {
  content: '\203A';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  margin: 0;
  transform: rotateZ(90deg) scale(1.2);
  text-align: center;
}

.footer-menu.open .footer-menu-title::after {
  margin: 0 4px 0 0;
  transform: rotateZ(-90deg) scale(1.2);
}

.footer-casas {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
}

.footer-casa {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 15px 0;
  width: auto;
  height: auto;
  margin: 0 0 15px 0;
  border: 1px solid #19A7FB;
  text-decoration: none;
}

.footer-casa:nth-last-child(1) {
  margin: 0;
}

.footer-casa:hover {
  background-color: #2596DC;
  text-decoration: none;
}

.footer-casa-picture {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  width: 125px;
  height: 15px;
  overflow: hidden;
}

.footer-casa-picture img {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.footer-casa-description {
  color: #B2E0FE;
  font-size: 12px;
  font-weight: 300;
}

.footer-logo {
  display: block;
  position: relative;
  width: 110px;
  height: 35px;
  flex-shrink: 0;
}

.footer-logo img,
.footer-logo svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.footer-info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: 20px;
  padding: 0 10px;
  width: calc(310px - 20px);
}

.footer-info p {
  padding: 0;
  margin: 0 0 10px 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
  white-space: pre-wrap;
}

.footer-info p:nth-child(2) {
  width: 250px;
}

.footer .social-icons {
  margin: 20px 0 10px 0;
}

.footer .social-icon {
  height: 18px;
}

.footer .social-icon svg * {
  fill: #fff;
}

.footer .social-icon:hover svg * {
  fill: #87CDFB;
}

.footer .barra-integradora {
  display: block;
  margin-top: -15px;
  padding-bottom: 15px;
}

/* IPHONE 6 (>370px) */
@media only screen and (min-width: 370px) {
  .footer-casa {
    padding: 15px 10px;
  }
}

/* ANDROID 1080p (>420px) */
@media only screen and (min-width: 420px) {
  .footer-casa {
    padding: 15px 10px;
  }

  .footer-casa-picture {
    width: 175px;
    height: 20px;
  }
}

/* SMARTPHONE (>520px) */
@media only screen and (min-width: 520px) {
  .footer-casa {
    padding: 15px;
    width: 450px;
  }

  .footer-casa-picture {
    width: 175px;
    height: 20px;
  }

  .footer-casa-description {
    font-size: 12px;
  }
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .footer-bottom .footer-content {
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    width: calc(100% - 30px);
  }

  .footer-bottom .footer-content-left,
  .footer-bottom .footer-content-right {
    flex-flow: row nowrap;
    align-items: flex-end;
    width: auto;
  }

  .footer-bottom .footer-content-left {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .footer-bottom .footer-content-right {
    justify-content: flex-end;
  }

  .footer-info {
    align-items: flex-start;
    width: auto;
    margin: 0 0 0 5px;
  }

  .footer-info p {
    margin: 0;
    text-align: left;
  }

  .footer-info p:nth-child(2) {
    width: auto;
  }

  .footer .social-icons {
    margin: 0;
  }

  .footer .barra-integradora {
    display: flex;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 25px;
  }

  .footer .barra-integradora-wrapper {
    padding: 0 15px;
    width: calc(100% - 30px);
  }

  .footer .barra-integradora-left,
  .footer .barra-integradora-right {
    margin: 0;
  }

}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .footer-bottom .footer-content,
  .footer-content {
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    width: 979px;
  }

  .footer-content-left,
  .footer-content-right {
    flex-flow: row nowrap;
    align-items: flex-end;
    width: auto;
  }

  .footer-content-left {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .footer-content-right {
    justify-content: flex-end;
  }

  .footer-menus {
    flex-flow: row nowrap;
    width: auto;
  }

  .footer-menu {
    width: auto;
    margin: 0 65px 15px 0;
  }

  .footer-menu::before {
    content: '';
    display: block;
    position: absolute;
    top: -2%;
    left: -15px;
    width: 1px;
    height: 104%;
    background-color: rgba(255, 255, 255, 0.25);
  }

  .footer-menu ul {
    display: block;
    margin: 10px 0;
  }

  .footer-menu a {
    font-size: 12px;
  }

  .footer-menu .footer-menu-title::before {
    display: none;
  }

  .footer-menu .footer-menu-title {
    padding-left: 0;
    width: auto;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .footer-menu .footer-menu-title[href^="javascript"]::after {
    display: none;
  }

  .footer-casas {
    width: auto;
  }

  .footer-casa {
    width: 350px;
  }

  .footer-info {
    margin: 0 0 0 25px;
  }

  .footer .social-icons {
    margin: 0;
  }
}

/* LARGE SCREEN (>1199px) */
@media only screen and (min-width: 1199px) {
  .footer-bottom .footer-content,
  .footer-content {
    padding: 0 25px;
    width: 1100px;
  }

  .footer .barra-integradora-wrapper {
    padding: 0 25px;
    width: 1100px;
  }
}








.rise-modal img {
  max-width: 100%;
}
















/**
* ********************************************
*
* IPHONE 6 (>370px)
*
* ********************************************
*/
@media only screen and (min-width: 370px) {}


/**
* ********************************************
*
* ANDROID 1080p (>420px)
*
* ********************************************
*/
@media only screen and (min-width: 420px) {}


/**
* ********************************************
*
* SMARTPHONE (>520px)
*
* ********************************************
*/
@media only screen and (min-width: 520px) {}


/**
* ********************************************
*
* TABLET (>767px)
*
* ********************************************
*/
@media only screen and (min-width: 767px) {}


/**
* ********************************************
*
* DEFAULT (>979px)
*
* ********************************************
*/
@media only screen and (min-width: 979px) {}


/**
* ********************************************
*
* LARGE SCREEN (>1199px)
*
* ********************************************
*/
@media only screen and (min-width: 1199px) {}


/**
* ********************************************
* Helper Classes
* ********************************************
*/

/*
* Hide visually and from screen readers
*/
.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}


/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
http://www.phpied.com/delay-loading-your-print-css/
========================================================================== */

@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  *:first-line {
    background: transparent !important;
color: #000 !important; /* Black prints faster:
http://www.sanbeiji.com/archives/953 */
box-shadow: none !important;
text-shadow: none !important;
}

a,
a:visited {
  text-decoration: underline;
}

a[href]:after {
  content: " (" attr(href) ")";
}

abbr[title]:after {
  content: " (" attr(title) ")";
}

/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
  content: "";
}

pre,
blockquote {
  border: 1px solid #999;
  page-break-inside: avoid;
}

/*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
  display: table-header-group;
}

tr,
img {
  page-break-inside: avoid;
}

img {
  max-width: 100% !important;
}

p,
h2,
h3 {
  orphans: 3;
  widows: 3;
}

h2,
h3 {
  page-break-after: avoid;
}
}
