/**
 * Page
 *
 * Author: Carlos Eduardo (carlosedba@outlook.com)
 * Notes: Default styles
 */


/**
 * ********************************************
 *
 * 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: #f0f0f0;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


/**
 * ************
 * Componente:
 *  Scrollbar
 * ********************
 */

::-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;
}


/**
 * ************
 * Componente:
 *  Header
 * ********************
 */

.header {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
}


/**
 * ************
 * Componente:
 *  Navbar
 * ********************
 */

.navbar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 75px;
  background-color: transparent;
}

.navbar ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.navbar-left,
.navbar-center,
.navbar-right {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  position: relative;
  height: 100%;
}

.navbar-left {
  margin-left: 15px;
}

.navbar-center {
  position: absolute;
  justify-content: flex-start;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ul.navbar-main-menu {
  display: none;
}

.navbar-main-menu li {
  display: block;
  position: relative;
}

.navbar-main-menu a::before {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -8px;
    height: 2px;
    background-color: #00f1d7;
    transition: all 0.16s ease-in-out;
    -webkit-transition: all 0.16s ease-in-out;
    z-index: 1;
}

.navbar-main-menu a:hover::before {
    right: 25%;
    left: 25%;
}

.navbar-main-menu a {
  cursor: pointer;
  position: relative;
  padding: 2px 6px;
  color: #464646;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  text-decoration: none;
  text-transform: lowercase;
  transition: all 0.16s ease;
}

.navbar-main-menu a:hover {
  color: #00f1d7;
  font-weight: 500;
}

/*
.navbar-main-menu a::after {
  content: attr(title);
  display: block;
  padding: 0 5px;
  height: 1px;
  font-weight: 500;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
  background-color: rgba(0, 0, 0, 0.5);
}
*/

.navbar-main-menu .submenu {
  display: none;
  flex-flow: column nowrap;
  position: absolute;
  top: 22px;
  left: -50px;
  padding: 22px 0 0 0;
  width: 210px;
  height: auto;
  z-index: 1;
  background-color: #fff;
  transition: all 0.16s ease;
}

.navbar-main-menu li:hover .submenu {
  display: flex;
}

.navbar-main-menu .submenu li {
  width: 100%;
  text-align: center;
}

.navbar-main-menu .submenu a::before {
  display: none;
}

.navbar-main-menu .submenu a {
  display: block;
  padding: 10px 0;
  width: 100%;
  height: auto;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: all 0.16s ease-in;
}

/*
.navbar-main-menu .submenu a:hover {
  color: #fff;
  background-color: #00f1d7;
}
*/

.navbar-main-menu .submenu a:hover {
  color: #00a3a1;
  border-bottom-color: #00a3a1;
}

.navbar-main-menu.navbar-main-menu-active {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10;
}

.navbar-main-menu.navbar-main-menu-active li {
  display: block;
  margin: 10px 0;
}

.navbar-main-menu.navbar-main-menu-active a {
  color: #fff;
  font-size: 24px;
}

.navbar-main-menu.navbar-main-menu-active .submenu {
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  background-color: transparent;
}

.navbar-main-menu.navbar-main-menu-active .submenu li {
  margin: 5px 0;
}

.navbar-main-menu.navbar-main-menu-active .submenu a {
  padding: 5px;
  font-size: 14px;
}

.navbar-main-menu.navbar-main-menu-active .submenu a:hover {
  color: #fff;
  border-bottom-color: #00f1d7;
}

.navbar-right {
  margin-right: 15px;
}

.navbar-logo {
  display: block;
  position: relative;
  width: auto;
  height: 65px;
  z-index: 10;
}

.navbar-logo img,
.navbar-logo svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

ul.navbar-search-wrapper {
  display: none;
  padding-left: 5px;
}

.navbar-search {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.navbar-search button {
  background-color: transparent;
  border: none;
  outline: none;
}

.navbar-search input {
  display: block;
  position: relative;
  padding: 0 10px;
  width: calc(150px - 20px);
  height: 22px;
  background-color: #F0F0F0;
  border: none;
  border-radius: 15px;
  outline: none;
  border: 2px solid #F0F0F0;
  color: #464646;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
    transition: all 0.16s ease-in-out;
    -webkit-transition: all 0.16s ease-in-out;
}

.navbar-search input:focus {
  border: 2px solid #DDDDDD;
}

.navbar-search-icon {
  height: 30px;
}

.logo-fiep {
  display: none;
  position: relative;
  width: auto;
  height: 30px;
}

.logo-fiep svg {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}

.hamburger {
  margin-top: 7px;
}

.hamburger.is-active {
  z-index: 10;
}

.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger.is-active .hamburger-inner {
  background-color: #fff;
}

.hamburger.is-active .hamburger-inner::before {
  background-color: #fff;
}


/**
 * ************
 * Componente:
 *  Header Cover
 * ********************
 */

.header-cover {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: 110px;
  background-size: cover;
  background-position: center;
}

.header-cover.header-cover-home {
  height: 200px;
}

.header-cover.header-cover-big {
  height: 175px;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .header-cover.header-cover-home {
    height: 300px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .header-cover.header-cover-home {
    height: 400px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 1199px) {
}



/**
 * ************
 * Componente:
 *  Header Wrapper
 * ********************
 */

.header-wrapper {
  display: block;
  position: relative;
  width: auto;
  margin: 0 auto 0 auto;
}


/**
 * ************
 * Componente:
 *  Destaque Home
 * ********************
 */

.destaque-home {
  display: block;
  position: absolute;
  top: 30%;
  left: -100px;
  width: auto;
  height: 65px;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {
  .destaque-home {
    top: 30%;
    left: -100px;
    height: 100px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .destaque-home {
    top: 34%;
    left: -50px;
    height: 120px;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 1199px) {
  .destaque-home {
    left: 0;
  }
}


/**
 * ************
 * Componente:
 *  Header Setor
 * ********************
 */

.header-setor-container {
  display: block;
  position: relative;
  padding: 0 20px;
  width: calc(100% - 40px);
  height: 100px;
}

.header-setor {
  display: block;
  position: relative;
  width: 125px;
  height: auto;
}


/**
 * ************
 * Componente:
 *  Header Title
 * ********************
 */

.header-title-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: 75px;
  background-color: #00f1d7;
}

.header-title-container.header-title-with-content {
  height: auto;
  background-color: #0c443f;
}

.header-title-container .header-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 20px;
  width: calc(100% - 40px);
  height: 100%;
  margin: 0 auto 0 auto;
}

.header-title-container.header-title-with-content .header-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}

.header-title-container .header-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: -15px;
  left: 30px;
  width: 0; 
  height: 0; 
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom-width: 16px;
  border-bottom-style: solid;
  border-bottom-color: #00f1d7;
}

.header-title-container.header-title-with-content .header-wrapper::before {
  border-bottom-color: #0c443f;
}

.header-wrapper-left,
.header-wrapper-right {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  height: auto;
}

.header-category {
  padding: 0 5px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}

.header-title {
  width: 280px;
  color: #fff;
  font-size: 28px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  text-align: center;
}

.header-description {
  width: 260px;
  margin: 25px 0 0 0;
  color: #fff;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  text-transform: none;
  text-align: center;
}

.header-date {
  margin: 25px 0 0 0;
  color: #fff;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  text-transform: none;
  text-align: center;
}



/**
 * ************
 * Componente:
 *  Section
 * ********************
 */

.section {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
}

.section-white {
  background-color: #FFF;
}

.section-title {
  color: #464646;
  margin: 30px 0;
  font-size: 26px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  text-transform: lowercase;
}

.section-description {
  color: #464646;
  margin: -20px 0 30px 0;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  text-transform: lowercase;
}

.between-sections-button {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 0 50px 0;
  width: auto;
  height: auto;
  margin: 0 auto;
}


/**
 * ************
 * Componente:
 *  Sindicatos
 * ********************
 */

.sindicatos {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 175px;
  background-color: #00F1D7;
}

.sindicatos .carousel {
  width: 100%;
}

.sindicato::before {
  content: '';
  display: block;
  position: absolute;
  top: -10%;
  left: 0;
  width: 1px;
  height: 120%;
  background-color: #1F6163;
}

.sindicato {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0;
  width: 300px;
  height: 100px;
  margin: 0;
  background-color: transparent;
}

.sindicato::after {
  content: '';
  display: block;
  position: absolute;
  top: -10%;
  right: 0;
  width: 1px;
  height: 120%;
  background-color: #5EC4C6;
}


.sindicato-title {
  margin: 0;
  color: #1F6163;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.sindicato-description {
  margin: 0;
  color: #1F6163;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .sindicatos .carousel {
    width: 875px;
  }
}


/**
 * ************
 * Componente:
 *  Post Card
 * ********************
 */

.post-card {
  display: flex;
  justify-content: flex-start;
  align-items: safe;
  position: relative;
}

.post-card-alpha {
  flex-flow: column nowrap;
  width: 280px;
  height: auto;
  background-color: #F0F0F0;
}

.post-card-beta {
  flex-flow: column nowrap;
  width: 260px;
  height: auto;
  background-color: transparent;
}

.post-card-picture {
  display: block;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.post-card-alpha .post-card-picture {
  width: 100%;
  height: 150px;
}

.post-card-beta .post-card-picture {
  width: 100%;
  height: 150px;
}

.post-card-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.post-card-alpha .post-card-content {
  padding: 15px;
  width: calc(100% - 30px);
}

.post-card-beta .post-card-content {
  padding: 15px 0;
  width: 100%;
  text-align: center;
}

.post-card-beta .post-card-title {
  width: 100%;
  text-align: center;
}

/* 00f1d7 */

.post-card-title {
  width: 100%;
  cursor: pointer;
  color: #02b6a3;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.post-card-title:hover {
  text-decoration: underline;
}

.post-card-description {
  width: 100%;
  color: #464646;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
}

.post-card-beta .post-card-title {
  color: #06606b;
}

.post-card-beta .post-card-description {
  padding: 0 10px;
  width: calc(100% - 20px);
}


/**
 * ************
 * Componente:
 *  Post Alpha
 * ********************
 */

.post-list-alpha {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  margin: 15px auto 0 auto;
}

.post-alpha {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 40px 15px;
  width: calc(300px - 30px);
  height: auto;
  margin: 0 auto 25px auto;
  background-color: #FFF;
  transition: all 0.16s ease-in;
}

.post-alpha-title:hover {
  color: #02D5BE;
}

.post-alpha-date {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  width: auto;
  height: 24px;
  margin: 0 0 25px 0;
  border: 1px solid #00f1d7;
}

.post-alpha-day {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  width: auto;
  height: 100%;
  line-height: 1px;
  margin: 0;
  border-right: 1px solid #00f1d7;
  color: #00f1d7;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.post-alpha-month {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  width: 100%;
  height: 100%;
  line-height: 1px;
  margin: 0;
  color: #00f1d7;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.post-alpha-title {
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
}

.post-alpha-description {
  display: block;
  position: relative;
  padding: 0 15px;
  width: calc(100% - 30px);
  margin: 15px 0 0 0;
  color: #464646;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.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: #02D5BE;
  border-top: 1px solid #02D5BE;
  border-right: 1px solid #02D5BE;
  border-bottom: 1px solid #02D5BE;
  text-decoration: none;
  transition: all 0.16s ease-in;
}

.post-paginator-alpha .post-paginator-item:hover {
  color: #fff;
  background-color: #02D5BE;
}

.post-paginator-alpha .post-paginator-item-active {
  color: #fff;
  background-color: #02D5BE;
}

.post-paginator-alpha .post-paginator-item:nth-child(1) {
  border-left: 1px solid #02D5BE;
}

.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;
}


/**
 * ************
 * Componente:
 *  Post Beta
 * ********************
 */

.post-list-beta {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  margin: 15px auto 0 auto;
}

.post-beta {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 40px 15px;
  width: calc(300px - 30px);
  height: auto;
  margin: 0 auto 25px auto;
  background-color: #FFF;
  transition: all 0.16s ease-in;
}

.post-beta-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.post-beta-date {
  padding: 2px 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto 0 auto;
}

.post-beta-title:hover {
  color: #02D5BE;
}

.post-beta-title {
  display: block;
  position: relative;
  padding: 0;
  width: 100%;
  margin: 15px 0 0 0;
  color: #000;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
}

.post-beta-description {
  display: block;
  position: relative;
  padding: 0 15px;
  width: calc(100% - 30px);
  margin: 15px 0 0 0;
  color: #464646;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}


.setores {
  display: block;
  padding-bottom: 40px;
  padding: 0 0 40px 0;
  width: 100%;
  height: auto;
}

/* TABLET (>767px) */
@media only screen and (min-width: 767px) {}

/* DEFAULT (>979px) */
@media only screen and (min-width: 979px) {
  .setores {
    width: 900px;
    margin: 0 auto;
  }
}

/* DEFAULT (>979px) */
@media only screen and (min-width: 1199px) {
  .setores {
    width: 1100px;
  }
}

.post-card-delta {
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 225px;
  height: 225px;
  margin: 0 10px;
  background-size: cover;
  background-position: top center;
}

.post-card-delta .post-card-overlay {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0);
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(0,0,0,0.85) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(40%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,0.85)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(0,0,0,0.85) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(0,0,0,0.85) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(0,0,0,0.85) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(0,0,0,0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}

.post-card-delta .post-card-title {
  position: absolute;
  left: 15px;
  bottom: 50px;
  width: calc(100% - 15px - 25px);
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
}

.post-card-delta .btn-home {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 4px 0;
  width: 100%;
  height: auto;
  line-height: initial;
  background-color: #00f1d7;
  color: #fff;
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}


/**
 * ************
 * Componente:
 *  Post Gamma
 * ********************
 */

.post-list-gamma {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  margin: 15px auto 0 auto;
}

.post-gamma {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 25px 15px;
  width: auto;
  height: auto;
  margin: 0 0 25px 0;
  background-color: #FFF;
  transition: all 0.16s ease-in;
}

.post-gamma-content {
  display: block;
  position: relative;
  margin-left: 20px;
}

.post-gamma-title {
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  text-align: left;
}

.post-gamma-title:hover {
  color: #02D5BE;
}

.post-gamma-date {
  display: block;
  position: relative;
  margin: 5px 0 0 0;
  color: #464646;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
}

.post-gamma-icon {
  display: block;
  position: relative;
  width: 65px;
  height: auto;
}

.post-gamma-icon img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.post-paginator-gamma {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: auto;
  height: 35px;
  margin: 25px 0 55px 15px;
}

.post-paginator-gamma .post-paginator-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 30px;
  height: 100%;
  color: #02D5BE;
  border-top: 1px solid #02D5BE;
  border-right: 1px solid #02D5BE;
  border-bottom: 1px solid #02D5BE;
  text-decoration: none;
  transition: all 0.16s ease-in;
}

.post-paginator-gamma .post-paginator-item:hover {
  color: #fff;
  background-color: #02D5BE;
}

.post-paginator-gamma .post-paginator-item-active {
  color: #fff;
  background-color: #02D5BE;
}

.post-paginator-gamma .post-paginator-item:nth-child(1) {
  border-left: 1px solid #02D5BE;
}

.post-paginator-gamma .post-paginator-item-first {
  line-height: 1px;
}

.post-paginator-gamma .post-paginator-item-last {
  line-height: 1px;
}

.post-paginator-gamma .post-paginator-end {
  padding: 0 15px;
  width: auto;
  text-transform: uppercase;
}


/**
 * ************
 * Componente:
 *  Post Content
 * ********************
 */

.post-content {
  display: block;
  position: relative;
  padding: 15px;
  width: calc(100% - 30px);
  margin: 0 auto 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 15px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow:    2px 2px 15px 1px rgba(0, 0, 0, 0.05);
  box-shadow:         2px 2px 15px 1px rgba(0, 0, 0, 0.05);
}

.post-content a {
  color: #0c443f;
  text-decoration: none;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content-text {
  color: #000;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  white-space: pre-wrap;
}



/**
 * ************
 * Página:
 *  Em Destaque
 * ********************
 */

.em-destaque {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 40px;
  padding: 0 0 40px 0;
  width: 100%;
  height: auto;
}

.em-destaque .post-card-alpha {
  margin-bottom: 25px;
}


/**
 * ************
 * Página:
 *  O Setor na Imprensa
 * ********************
 */

 .setor-na-imprensa {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-bottom: 40px;
  width: 100%;
  height: auto;
}

.setor-na-imprensa .post-card-beta {
  margin-bottom: 25px;
}


/**
 * ************
 * Página:
 *  Fale Conosco
 * ********************
 */

 .fale-conosco {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 0 0 40px 0;
  width: 100%;
  padding-bottom: 35px;
}

.fale-conosco form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
}

.fale-conosco .inputs {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 30px;
  width: calc(100% - 60px);
  height: auto;
  margin: 0 auto 35px auto;
  background-color: #fff;
}

.fale-conosco .input {
  width: 100%;
  margin-bottom: 10px;
}

.fale-conosco .input input {
  width: 100%;
}

.fale-conosco .input textarea {
  width: 100%;
  height: 100px;
}

.fale-conosco .btn {
  font-size: 16px;
}


/**
 * ************
 * Componente:
 *  Google Map
 * ********************
 */

.google-map-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 1;
}

.google-map-overlay.clicked {
  pointer-events: none;
}

.google-map {
  display: block;
  position: relative;
  width: 100%;
  height: 400px;
}

.google-map iframe {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}


/**
 * ************
 * Componente:
 *  Footer
 * ********************
 */

 .footer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: auto;
}

.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 {
  background-color: #00f1d7;
}

.footer-bottom {
  align-items: center;
  background-color: #00a3a1;
}

.footer-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 25px;
  width: calc(100% - 50px);
}

.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::before {
  content: '';
  display: block;
  position: absolute;
  left: 25px;
  bottom: -25px;
  width: calc(100% - 50px);
  height: 1px;
  background-color: #00a3a1;
}

.footer-content-right {
  margin-top: 50px;
}

.footer-content-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin: 20px 0 0 0;
}

.footer-text-concat {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  text-align: center;
  max-width: 200px;
  margin-bottom: 10px;
}

.footer-content-title {
  padding: 0;
  max-width: 275px;
  margin: 0;
  color: #387279;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.footer-content-description {
  width: 100%;
  padding: 0;
  max-width: 275px;
  margin: 20px 0 0 0;
  color: #43878f;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.footer-content-text {
  padding: 0;
  max-width: 275px;
  margin: 0;
  color: #43878f;
  font-size: 12px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

span.footer-content-text-white,
p.footer-content-text-white,
.footer-content-text-white span,
.footer-content-text-white p {
  color: #fff;
}

.footer-content-text-bold {
  font-weight: 700;
}

.footer-logo {
  display: block;
  position: relative;
  width: 125px;
  height: auto;
}

.footer-logo svg {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.footer-bottom .footer-content {
  align-items: center;
}

.footer-bottom .footer-content-left,
.footer-bottom .footer-content-right {
  width: auto;
}


/**
 * ********************************************
 *
 * IPHONE 6 (>370px)
 *
 * ********************************************
 */
@media only screen and (min-width: 370px) {
/**
   * ************
   * Componente:
   *  Header Cover
   * ********************
   */

  .header-title {
    width: 330px;
  }

  .header-description {
    width: 310px;
  }


  /**
   * ************
   * Componente:
   *  Post Card
   * ********************
   */

  .post-card-alpha {
    width: 310px;
  }

  .post-card-beta {
    width: 290px;
  }


  /**
   * ************
   * Componente:
   *  Post Alpha
   * ********************
   */

  .post-alpha {
    width: calc(350px - 30px);
  }


  /**
   * ************
   * Componente:
   *  Post Beta
   * ********************
   */

  .post-beta {
    width: calc(350px - 30px);
  }
}


/**
 * ********************************************
 *
 * ANDROID 1080p (>420px)
 *
 * ********************************************
 */
@media only screen and (min-width: 420px) {
  /**
   * ************
   * Componente:
   *  Header Cover
   * ********************
   */

  .header-title {
    width: 380px;
  }

  .header-description {
    width: 360px;
  }


  /**
   * ************
   * Componente:
   *  Post Card
   * ********************
   */

  .post-card-alpha {
    width: 360px;
  }

  .post-card-alpha .post-card-picture {
    height: 200px;
  }

  .post-card-beta {
    width: 340px;
  }

  .post-card-beta .post-card-picture {
    height: 200px;
  }

  .fale-conosco .inputs label {
    font-size: 14px;
  }


  /**
   * ************
   * Componente:
   *  Post Alpha
   * ********************
   */

  .post-alpha {
    width: calc(400px - 30px);
  }


  /**
   * ************
   * Componente:
   *  Post Beta
   * ********************
   */

  .post-beta {
    width: calc(400px - 30px);
  }


  /**
   * ************
   * Componente:
   *  Post Content
   * ********************
   */

  .post-content {
    padding: 15px 35px 20px 25px;
    width: calc(100% - 60px);
  }
}


/**
 * ********************************************
 *
 * SMARTPHONE (>520px)
 *
 * ********************************************
 */
@media only screen and (min-width: 520px) {
  /**
   * ************
   * Componente:
   *  Header Cover
   * ********************
   */

  .header-title {
    width: 420px;
  }

  .header-description {
    width: 380px;
  }


  /**
   * ************
   * Componente:
   *  Post Card
   * ********************
   */

   .post-card-alpha {
    flex-flow: row nowrap;
    width: 420px;
    height: 260px;
   }

   .post-card-alpha .post-card-picture {
    width: 45%;
    height: 100%;
   }

  .post-card-alpha .post-card-content {
    width: calc(55% - 30px);
  }

  .post-card-alpha .btn {
    position: absolute;
    left: 15px;
    bottom: 15px;
  }


  /**
   * ************
   * Componente:
   *  Post Alpha
   * ********************
   */

  .post-alpha {
    width: calc(475px - 30px);
  }


  /**
   * ************
   * Componente:
   *  Post Beta
   * ********************
   */

  .post-beta {
    width: calc(475px - 30px);
  }


  /**
   * ************
   * Componente:
   *  Post Content
   * ********************
   */

  .post-content {
    padding: 15px 45px 20px 35px;
    width: calc(100% - 90px);
  }
}


/**
 * ********************************************
 *
 * TABLET (>767px)
 *
 * ********************************************
 */
@media only screen and (min-width: 767px) {
   /**
   * ************
   * Componente:
   *  Header Cover
   * ********************
   */

  .header-cover.header-cover-big {
    height: 300px;
  }

  .header-title {
    width: 520px;
    font-size: 30px;
  }

  .header-description {
    width: 480px;
  }

  /**
   * ************
   * Componente:
   *  Post Card
   * ********************
   */

  .post-card-alpha {
    flex-flow: row nowrap;
    width: 330px;
    height: 260px;
   }

  .post-card-alpha .post-card-picture {
    width: 45%;
    height: 100%;
   }

  .post-card-alpha .post-card-content {
    width: calc(55% - 30px);
  }

  .post-card-description {
    font-size: 13px;
  }

  .post-card-beta {
    width: 300px;
  }

  .post-card-beta .post-card-picture {
    height: 180px;
  }


  /**
   * ************
   * Componente:
   *  Post Alpha
   * ********************
   */

  .post-alpha {
    flex-flow: row nowrap;
    align-items: flex-start;
    padding: 25px 15px;
    width: calc(475px - 30px);
  }

  .post-alpha-date {
    flex-flow: column nowrap;
    width: 100px;
    height: auto;
    margin: 0 25px 0 0;
  }

  .post-alpha-day {
    display: block;
    line-height: initial;
    font-size: 52px;
    font-weight: 100;
    border: none;
  }

  .post-alpha-month {
    display: block;
    padding: 2px 0;
    width: 100%;
    height: auto;
    margin: 0;
    line-height: initial;
    font-size: 16px;
    font-weight: 300;
    border-top: 1px solid #00f1d7;
  }

  .post-alpha-title {
    text-align: left;
  }

  .post-alpha-description {
    padding: 0 50px 0 0;
    width: calc(100% - 75px);
    margin: 15px 0 0 0;
    text-align: left;
  }


  /**
   * ************
   * Componente:
   *  Post Beta
   * ********************
   */

  .post-beta {
    flex-flow: row nowrap;
    align-items: flex-start;
    padding: 25px 15px;
    width: calc(475px - 30px);
  }

  .post-beta-date {
    padding: 2px 11px 2px 1px;
    margin: 0;
  }

  .post-beta-title {
    text-align: left;
  }

  .post-beta-description {
    padding: 0 50px 0 0;
    width: calc(100% - 50px);
    margin: 15px 0 0 0;
    text-align: left;
  }


  /**
   * ************
   * Página:
   *  O Setor na Imprensa
   * ********************
   */

  .setor-na-imprensa {
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 25px 40px 25px;
    width: calc(100% - 50px);
   }


  /**
   * ************
   * Página:
   *  Em Destaque
   * ********************
   */

   .em-destaque {
    flex-flow: row wrap;
    justify-content: space-around;
    width: 700px;
   }


  /**
   * ************
   * Página:
   *  O Setor na Imprensa
   * ********************
   */

   .setor-na-imprensa {
    width: 700px;
   }


  /**
   * ************
   * Página:
   *  Fale Conosco
   * ********************
   */

  .fale-conosco .inputs {
    padding: 15px;
    width: calc(600px - 30px);
    -webkit-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow:    2px 2px 10px 1px rgba(0, 0, 0, 0.15);
    box-shadow:         2px 2px 10px 1px rgba(0, 0, 0, 0.15);
  }

  .footer-text-concat {
    text-align: left;
  }
}


/**
 * ********************************************
 *
 * DEFAULT (>979px)
 *
 * ********************************************
 */
@media only screen and (min-width: 979px) { 
  /**
   * ************
   * Componente:
   *  Header
   * ********************
   */

  .header-cover {
    height: 170px;
  }

  .header-setor {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 150px;
  }

  .header-title-container .header-wrapper::before {
    left: 20px;
  }


  /**
   * ************
   * Componente:
   *  Navbar
   * ********************
   */

  .navbar {
    width: 979px;
    margin: 0 auto 0 auto;
  }

  .navbar-center {
    padding: 0 65px 0 0;
    width: calc(100% - 65px);
    justify-content: flex-end;
  }

  .navbar-search input {
    display: none;
  }

  div ul.navbar-main-menu {
    display: flex;
    justify-content: center;
  }

  div ul.navbar-search-wrapper {
    display: flex;
  }

  .hamburger {
    display: none;
  }


  /**
   * ************
   * Componente:
   *  Header Cover
   * ********************
   */

  .header-setor-container .header-wrapper {
    width: 950px;
  }

  .header-title-container .header-wrapper {
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 950px;
  }

  .header-title-container.header-title-with-content .header-wrapper {
    padding: 15px 0;
  }

  .header-title-container .header-wrapper-left,
  .header-title-container .header-wrapper-right {
    justify-content: center;
    align-items: flex-start;
    height: 100%;
  }

  .header-title-container.header-title-with-content .header-wrapper-left {
    margin-left: 15px;
  }

  .header-title-container.header-title-with-content .header-wrapper-right {
    margin-right: 15px;
  }

  .header-title {
    width: auto;
    margin: 0 50px 0 0;
    text-align: left;
  }

  .header-title-container.header-title-with-content .header-title {
    font-size: 24px;
  }

  .header-description {
    width: auto;
    margin: 5px 50px 0 0;
    font-size: 15px;
    text-align: left;
  }

  .header-date {
    margin: 6px 0 0 0;
  }


  /**
   * ************
   * Componente:
   *  Post Card
   * ********************
   */

  .post-card-alpha {
    flex-flow: row nowrap;
    width: 400px;
    height: 245px;
   }

  .post-card-beta {
    padding: 0 15px;
   }


  /**
   * ************
   * Componente:
   *  Post Alpha
   * ********************
   */

  .post-list-alpha {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 1015px;
  }


  /**
   * ************
   * Componente:
   *  Post Beta
   * ********************
   */

  .post-list-beta {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 950px;
  }

  .post-beta {
    padding: 25px 15px 0 0;
    width: calc(475px - 15px);
  }


  /**
   * ************
   * Componente:
   *  Post Gamma
   * ********************
   */

  .post-list-gamma {
    align-items: flex-start;
    padding: 0;
    width: 940px;
  }

  .post-gamma {
    padding: 25px 15px 25px 0;
  }

  .post-paginator-gamma {
    margin-left: 0;
  }


  /**
   * ************
   * Componente:
   *  Post Content
   * ********************
   */

  .post-content {
    padding: 20px 15px;
    width: calc(979px - 30px);
  }

  .post-content-text {
    margin: 0 20px 0 10px;
  }


  /**
   * ************
   * Página:
   *  Em Destaque
   * ********************
   */

   .em-destaque {
    width: 900px;
   }


  /**
   * ************
   * Página:
   *  O Setor na Imprensa
   * ********************
   */

   .setor-na-imprensa {
    width: 700px;
   }


  /**
   * ************
   * Página:
   *  O Setor na Imprensa
   * ********************
   */

   .setor-na-imprensa {
    width: 800px;
   }


   /**
   * ************
   * Componente:
   *  Footer
   * ********************
   */

  .footer-content {
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 979px;
  }

  .footer-content-left {
    align-items: flex-start;
    margin-right: 45px;
  }

  .footer-content-right {
    align-items: flex-end;
    margin-top: 0;
  }

  .footer-content-left::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: -25px;
    bottom: auto;
    width: 2px;
    height: 100%;
    background-color: #00a3a1;
  }

  .footer-top .footer-content-left,
  .footer-top .footer-content-right {
    width: 465px;
  }

  .footer-top .footer-content-right {
    align-items: flex-start;
  }

  .footer-bottom .footer-content {
    align-items: center;
  }

  .footer-bottom .footer-content-left,
  .footer-bottom .footer-content-right {
    width: auto;
  }

  .footer-content-wrapper {
    align-items: flex-start;
    margin: 10px 0 0 0;
  }

  .footer-text-concat {
    display: inline-block;
    max-width: none;
    margin: 0;
    line-height: initial;
  }

  .footer-content-title {
    max-width: none;
    text-align: left;
  }

  .footer-content-description {
    max-width: none;
    margin-top: 10px;
    text-align: left;
  }

  .footer-content-text {
    max-width: none;
    margin: 0;
    font-size: 14px;
    text-align: left;
  }
}


/**
 * ********************************************
 *
 * LARGE SCREEN (>1199px)
 *
 * ********************************************
 */
@media only screen and (min-width: 1199px) {
  /**
   * ************
   * Componente:
   *  Navbar
   * ********************
   */

  .navbar {
    width: 1100px;
    margin: 0 auto 0 auto;
  }

  .navbar-center {
    padding: 0;
    width: 100%;
    justify-content: center;
  }

  .navbar-search input {
    display: flex;
  }

  .logo-fiep {
    display: block;
  }


  /**
   * ************
   * Componente:
   *  Header Cover
   * ********************
   */

  .header-setor-container .header-wrapper {
    width: 1075px;
  }

  .header-title-container .header-wrapper {
    width: 1060px;
  }

  .header-title-container.header-title-with-content .header-wrapper-left {
    margin-left: 0;
  }

  .header-title-container.header-title-with-content .header-wrapper-right {
    margin-right: 0;
  }

  .header-description {
    font-size: 16px;
  }


  /**
   * ************
   * Componente:
   *  Post Card
   * ********************
   */

  .post-card-alpha {
    width: 415px;
    height: 220px;
  }

  .post-card-beta {
    padding: 0;
    width: 200px;
  }

  .post-card-beta .post-card-picture {
    height: 150px;
  }

  .post-card-beta .post-card-content {
    text-align: left;
  }

  .post-card-beta .post-card-title {
    text-align: left;
  }

  .post-card-beta .post-card-description {
    padding: 0;
    width: 100%;
  }


  /**
   * ************
   * Componente:
   *  Post Alpha
   * ********************
   */

  .post-list-alpha {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 1100px;
  }


  /**
   * ************
   * Componente:
   *  Post Beta
   * ********************
   */

  .post-list-beta {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 1060px;
  }

  .post-beta {
    width: calc(530px - 15px);
  }


  /**
   * ************
   * Componente:
   *  Post Gamma
   * ********************
   */

  .post-list-gamma {
    align-items: flex-start;
    width: 1060px;
  }


  /**
   * ************
   * Componente:
   *  Post Content
   * ********************
   */

  .post-content {
    padding: 20px 15px;
    width: calc(1050px - 30px);
  }

  .post-content-text {
    margin: 0 20px 0 15px;
  }


  /**
   * ************
   * Página:
   *  O Setor na Imprensa
   * ********************
   */

   .setor-na-imprensa {
    justify-content: center;
    padding: 0;
    width: 100%;
   }

  .setor-na-imprensa .post-card-beta {
    margin-right: 25px;
  }

  .setor-na-imprensa .post-card-beta:nth-last-child(1) {
    margin-right: 0;
  }


  /**
   * ************
   * Componente:
   *  Footer
   * ********************
   */

  .footer-top::before {
    content: '';
    display: block;
    position: absolute;
    top: 15%;
    left: 0;
    width: 50px;
    height: 70%;
    background-image: url('../img/barras_sistema_bold.png');
    background-size: 100% 100%;
  }

  .footer-content {
    padding: 0 25px;
    width: 1100px;
  }

  .footer-content-left::before {
    right: -50px;
    width: 3px;
  }

  .footer-top .footer-content-left,
  .footer-top .footer-content-right {
    width: 500px;
  }
}


/**
 * ********************************************
 * 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;
  }
}
