/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
@font-face {
    font-family: 'arial_narrow';
    src: url('/public/css/fonts/Arial Narrow.ttf');
}

html {
  font-family: arial_narrow;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@media screen and (min-width: 768px) {
  [data-animation="slide-down"] {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity= 0);
    -moz-transform: translate(0, -100px);
    -ms-transform: translate(0, -100px);
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
    -moz-transition: ease-in-out 0.5s 0.1s;
    -webkit-transition: ease-in-out 0.5s;
    -webkit-transition-delay: 0.1s;
    transition: ease-in-out 0.5s 0.1s;
  }
  [data-animation="slide-down"].animate {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity= 100);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -moz-transition: ease-in-out 0.5s 0.1s;
    -webkit-transition: ease-in-out 0.5s;
    -webkit-transition-delay: 0.1s;
    transition: ease-in-out 0.5s 0.1s;
  }

  [data-animation="slide-left"] {
    -moz-transform: translate(-1500px, 0);
    -ms-transform: translate(-1500px, 0);
    -webkit-transform: translate(-1500px, 0);
    transform: translate(-1500px, 0);
    -moz-transition: ease-in-out 0.5s 0.1s;
    -webkit-transition: ease-in-out 0.5s;
    -webkit-transition-delay: 0.1s;
    transition: ease-in-out 0.5s 0.1s;
  }
  [data-animation="slide-left"].animate {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -moz-transition: ease-in-out 0.5s 0.1s;
    -webkit-transition: ease-in-out 0.5s;
    -webkit-transition-delay: 0.1s;
    transition: ease-in-out 0.5s 0.1s;
  }

  [data-animation="slide-right"] {
    -moz-transform: translate(1500px, 0);
    -ms-transform: translate(1500px, 0);
    -webkit-transform: translate(1500px, 0);
    transform: translate(1500px, 0);
    -moz-transition: ease-in-out 0.5s 0.1s;
    -webkit-transition: ease-in-out 0.5s;
    -webkit-transition-delay: 0.1s;
    transition: ease-in-out 0.5s 0.1s;
  }
  [data-animation="slide-right"].animate {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -moz-transition: ease-in-out 0.5s 0.1s;
    -webkit-transition: ease-in-out 0.5s;
    -webkit-transition-delay: 0.1s;
    transition: ease-in-out 0.5s 0.1s;
  }

  [data-animation="opacity"] {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity= 0);
    -moz-transition: ease-in-out 1s 0.1s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.1s;
    transition: ease-in-out 1s 0.1s;
  }
  [data-animation="opacity"].animate {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity= 100);
    -moz-transition: ease-in-out 1s 0.1s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.1s;
    transition: ease-in-out 1s 0.1s;
  }

  [data-animation][data-delay="2"] {
    -moz-transition: ease-in-out 1s 0.2s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.2s;
    transition: ease-in-out 1s 0.2s;
  }
  [data-animation][data-delay="3"] {
    -moz-transition: ease-in-out 1s 0.3s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.3s;
    transition: ease-in-out 1s 0.3s;
  }
  [data-animation][data-delay="4"] {
    -moz-transition: ease-in-out 1s 0.4s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.4s;
    transition: ease-in-out 1s 0.4s;
  }
  [data-animation][data-delay="5"] {
    -moz-transition: ease-in-out 1s 0.5s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.5s;
    transition: ease-in-out 1s 0.5s;
  }
  [data-animation][data-delay="6"] {
    -moz-transition: ease-in-out 1s 0.6s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.6s;
    transition: ease-in-out 1s 0.6s;
  }
  [data-animation][data-delay="7"] {
    -moz-transition: ease-in-out 1s 0.7s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.7s;
    transition: ease-in-out 1s 0.7s;
  }
  [data-animation][data-delay="8"] {
    -moz-transition: ease-in-out 1s 0.8s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.8s;
    transition: ease-in-out 1s 0.8s;
  }
  [data-animation][data-delay="9"] {
    -moz-transition: ease-in-out 1s 0.9s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 0.9s;
    transition: ease-in-out 1s 0.9s;
  }
  [data-animation][data-delay="15"] {
    -moz-transition: ease-in-out 1s 1.5s;
    -webkit-transition: ease-in-out 1s;
    -webkit-transition-delay: 1.5s;
    transition: ease-in-out 1s 1.5s;
  }
}
[data-animation="que-funcionam"].animate {
  -webkit-animation: play 1s 1.5s steps(25) 1 forwards;
  -moz-animation: play 1s 1.5s steps(25) 1 forwards;
  -ms-animation: play 1s 1.5s steps(25) 1 forwards;
  -o-animation: play 1s 1.5s steps(25) 1 forwards;
  animation: play 1s 1.5s steps(25) 1 forwards;
}

@-webkit-keyframes play {
  100% {
    background-position: -5252px;
  }
}
@-moz-keyframes play {
  100% {
    background-position: -5252px;
  }
}
@-ms-keyframes play {
  100% {
    background-position: -5252px;
  }
}
@-o-keyframes play {
  100% {
    background-position: -5252px;
  }
}
@keyframes play {
  100% {
    background-position: -5252px;
  }
}
.clearfix {
  clear: both;
  list-style: none !important;
  margin: 0;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.hide {
  display: none;
}

::selection {
  background: #fff;
  color: #313946;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  
}

hr {
  margin: 30px 0;
  height: 41px;  
  border: none;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

.container {
  position: relative;
  margin: 0 auto;
  max-width: 980px;
}
.container:after {
  display: table;
  content: "";
  clear: both;
}

.container-fluid {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
}
.container-fluid:after {
  display: table;
  content: "";
  clear: both;
}

.visible-mobile {
  display: none !important;
}

.visible-desktop {
  display: inherit !important;
}

.hidden-mobile {
  display: none !important;
}

.hidden-desktop {
  display: inherit !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}
.content-box img {
    max-width: 100%;
  }

.btn {
  display: inline-block;
  padding: 0.3em 1em;
  font-size: 23px;
  font-size: 1.4375rem;
  border: 3px solid #fff;
  background: none;
  color: #fff;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
}
.btn:hover {
  border-color: #d9d9d9;
}

.btn_enviar{
    background: none;
    border: 0 none;    
    background-color: #FF0000;
    color: #ffffff;
    font-size:16px;
    font-weight:bold;
    line-height:120%;
    text-align:center;
    text-decoration: none;
    padding: 5px;
    width: 100%;
}

.btn[disabled] {
  cursor: default;
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity= 50);
}

.input {
  padding: 0.3em 0.4em;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: Arial, sans-serif;
  border: 1px solid transparent;
  color: #1E1E1E;
  background-color: #cccccc;
  /*-moz-border-radius: 0.3em;
  -webkit-border-radius: 0.3em;
  border-radius: 0.3em;*/
}
.input:hover {
  background: #e1e1e1;
}

textarea.input {
  resize: none;
}

.form-result2{
     padding-left: 25px; 
     color:#D01B1B; 
     font-size:22px; 
     font-weight: bold;
}

.form-group {
  margin: 0 0 5px;
}
.form-group:after {
  display: table;
  content: "";
  clear: both;
}
.form-group label {
  float: left;
  width: 100%;
  margin: 0 10px 0 0;
  text-align: right;
  opacity: 0.6;
  -moz-opacity: 0.6;
  font-family:"arial_narrow",serif;
  font-size:22px;
  line-height:120%;
  color:#4B4B4B;
  text-align:left;
}
.form-group .input {
  float: left;
}

.header {
  margin: 0;
  padding: 30px 0 0 0;
  height: 150px;
  color: #fff;
  text-align: center;
}

.header_fonepai{
    float:left;
    width: 25%; 
    padding-top: 25px;
}

.header_fone{
    display: table;
    font-family:"arial_narrow";
    font-size:18px;
    line-height:120%;
    color:rgb(153,153,153);
    text-align:left;
}

.header-logo {
  margin: 0;
  text-align: left;
  float: left; 
  width: 35%;
}

.header-logo-link {
  text-decoration: none;
}

.header-logo-img {
  max-width: 90%;
}

.redessociais{
    float:right; 
    width: 25%;
    padding-top: 25px;
}

.menu{
  position: absolute;
  z-index: 11;
  top: 175px;
  left: 0;
  width: 100%;
  background: transparent;
}

.menu-list {
  display: table;
  margin: 0 auto;
  padding: 0;
}
.menu-list:after {
  display: table;
  content: "";
  clear: both;
}

.menu-list-item a{
    color: #666666;
}
.menu-list-item {
  float: left;
  list-style: none;
  /*margin: 0 0.8em;*/
  color: #666666;
}
.menu-list-item.menu-list-item-active .menu-list-link {
  opacity: 0.4;
  -moz-opacity: 0.4;
  filter: alpha(opacity= 40);
}

.menu-list-link {
    display: block;
    height: 35px;    
    line-height: 35px;    
    text-decoration: none;
    -moz-transition: linear 0.2s;
    -webkit-transition: linear 0.2s;
    transition: linear 0.2s;
    width:100%;
    font-family:"arial_narrow",'tahoma','arial',serif;
    font-size:18px;
    line-height:120%;
    text-align:left;
    
}

.menu-list-link:hover {
  opacity: 0.4;
  -moz-opacity: 0.4;
  filter: alpha(opacity= 40);
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}

.menu-fixed {
  display: none;
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  font-family: "arial_narrow", sans-serif, Arial, sans-serif;
  background: #fff;
  -moz-box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1);  
}

.menu-fixed:after {
  display: table;
  content: "";
  clear: both;
}
@media screen and (max-width: 768px) {
  .menu-fixed {
    display: none !important;
  }
}
.menu-fixed .container {
  width: 980px;
}
.menu-fixed .menu-list {
  display: block;
  float: left;
  margin: 0;
  padding-top: 20px;
}

.menu-fixed-logo {
  float: left;
  margin: 0 5px 0 0;
  width: 230px;
  height: 60px;
  text-indent: -99999px;   
}

.content-box {
  padding: 50px 0 30px 0;
  color: #fff;
}
.content-box.content-box-first {
  padding-top: 100px;
}
.content-box.content-box-clean {
  color: #1f3c72;
}

@media screen and (max-width: 768px) {
  .content-box {
    padding: 30px 0;
  }
}

.content-box-page-identifier {
  margin: 0 0 30px;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1em;
  text-align: center;
  opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity= 60);
}

.content-box-title { 
  font-family:"arial_narrow",arial,sans-serif;
  font-size:30px;
  line-height:120%;
  color:#990000;
  text-align:left;
  padding-left: 20px;
  margin: 0 0 55px;
  -webkit-animation: slide-left 1s linear 1s 0.2s ease both;
  -moz-animation: slide-left 1s linear 1s 0.2s ease both;
  -ms-animation: slide-left 1s linear 1s 0.2s ease both;
  -o-animation: slide-left 1s linear 1s 0.2s ease both;
  animation: slide-left 1s linear 1s 0.2s ease both;
  border-bottom:1px solid rgb(204,204,204);
}

@media screen and (max-width: 768px){
  .content-box-title{
    margin: 0 0 35px;
    font-size: 40px;
    font-size: 1.5rem;
    line-height: 0.95em;
  }
}

.content-box-text{
  font-family:"arial_narrow",'tahoma','arial',serif;
  font-size:16px;
  line-height:120%;
  color:rgb(102,102,102);
  text-align:left;
}

.content-box-text strong {
  color:rgb(102,102,102);
}
.content-box-text p {
  margin: 0 0 30px;
}
.content-box-text .text-center {
  text-align: center;
}

.company .company-text {
  float: right;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .company .company-text {
    float: none;
    width: auto;
  }
}
.company .company-video {
  float: left;
  margin: 0 0 0 12%;
}
@media screen and (max-width: 768px) {
  .company .company-video {
    float: none;
    width: 260px;
    margin: 0 auto 40px;
  }
}
.company .company-video-link {
  position: relative;
  display: block;
  margin: 0 0 50px;
  width: 254px;
  height: 173px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  text-indent: -99999px;
}
.company .company-video-link::before {
  position: absolute;
  content: "";
  top: 25px;
  left: 65px;
  width: 130px;
  height: 126px;
  text-decoration: none;  
}
.company .company-slogan {
  position: relative;
  float: left;
  margin: 0 0 0 20px;
  color: #fff;
  font-family: "arial_narrow", sans-serif, Arial, sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  opacity: 0.9;
  -moz-opacity: 0.9;
  filter: alpha(opacity= 90);
}
@media screen and (max-width: 768px) {
  .company .company-slogan {
    display: table;
    float: none;
    width: auto;
    margin: 0 auto 120px;
  }
}
.company .company-slogan span {
  opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity= 60);
}
.company .company-slogan strong {
  position: absolute;
  top: 45px;
  right: -40px;
  width: 202px;
  height: 90px;
  text-indent: -999999px;
}
@media screen and (max-width: 768px) {
  .company .company-slogan strong {
    right: auto;
    left: 25px;
    top: 45px;
    background-position: 0 0;
  }
}

.ideia-who-works-1 {
  position: relative;
  z-index: 1;
  height: 250px;
  background: url(../../images/site/mareg/bg-ideia-que-funciona.jpg) bottom center repeat;
}

.ideia-who-works-2 {
  height: 175px;
  background: url(../../images/site/mareg/bg-ideia-que-funciona-2.jpg) top center repeat;
}
@media screen and (max-width: 768px) {
  .ideia-who-works-2 {
    height: auto;
  }
}

.ideia-who-works-2-text {
  display: block;
  margin: 0;
  padding: 40px 0 0 0;
  font-family: "arial_narrow", sans-serif, Arial, sans-serif;
  font-style: italic;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.1em;
  text-align: center;
  color: #fff;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity= 80);
}
@media screen and (max-width: 768px) {
  .ideia-who-works-2-text {
    padding: 30px 0;
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    width: auto;
    padding: 0 15px;
  }
  .container img {
    max-width: 100%;
  }

  .header-logo{
      float: left; 
      width: 70%;
  }
  .menu {
    text-align: center;    
  }
  .menu .container {
    padding: 0;
    background-color: #070d1b;
    margin-bottom: 25px;
  }
  #example{
      margin-top: 20px;
  }
  .menu .menu-list {
    display: none;    
  }
  .menu .menu-list-item a{
      color:#fff;
  }
  .menu .menu-list-item a{
    float: none;
    display: block;
    background-color: #070D1B;    
  }
  .menu-list-link{
      color:#fff;
  }
  .home-about-slogan img{
      max-width: 300px;
  }
  

  .menu .menu-btn-mobile {
    margin: 5px;
    width: 37px;
    height: 33px;
    color: #1f3c72;
    border: none;
    background: url('../../images/site/mareg/btn_menu.png');
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -999999px;
  }

  .visible-mobile {
    display: inherit !important;
  }

  .hidden-desktop {
    display: none !important;
  }
  
  .header_fonepai{
    display: table;
    margin-bottom: 20px;
  }

  .div_video, .div_grafico, .div_foto, .div_publicacoes{
      width:250px;
      margin: 0;
      margin-bottom: 25px;      
  }
  .home-clients-list-item{
      width: 100%;
  }
}

.welcome-player .welcome-player-overlay {
  display: none;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity= 70);
}
.welcome-player .welcome-player-modal {
  display: none;
  position: fixed;
  z-index: 21;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border: 4px solid #fff;
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.jobs-list {
  margin: 0 0 20px;
  padding: 0;
}
.jobs-list:after {
  display: table;
  content: "";
  clear: both;
}

.jobs-list-item {
  float: left;
  list-style: none;
  margin: 0 1.5% 30px;
  width: 30%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .jobs-list-item {
    display: block;
    float: none;
    margin: 0 auto 25px;
    max-width: 400px;
    width: auto;
  }
}

.jobs-list-item-link {
  display: block;
  color: #fff;
  text-decoration: none;
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.jobs-list-item-link:hover {
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity= 50);
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}

.jobs-list-item-img-box {
  display: block;
  margin: 0 0 15px;
  text-align: center;
}

.jobs-list-item-img {
  max-width: 100%;
  border: 2px solid transparent;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
  
}

.jobs-list-item-title {
  margin: 0;
  font-family: "arial_narrow", sans-serif, Arial, sans-serif;
    font-size:20px;
    line-height:120%;
    color:rgb(102,102,102);
    text-align:center;
    

}

.jobs-list-item-text {
  margin: 0;
  font-family: "arial_narrow", sans-serif, Arial, sans-serif;
font-size:14px;
line-height:120%;
font-weight:bold;
color:rgb(102,102,102);
text-align:center;

}

.jobs-list-btn-load {
  position: relative;
  display: table;
  margin: 0 auto;
  padding: 0 0 35px;
  font-family: "arial_narrow", sans-serif, Arial, sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  background: none;
  border: none;
  color: #fff;
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.jobs-list-btn-load:after {
  position: absolute;
  content: "";
  width: 75px;
  height: 34px;
  bottom: -10px;
  left: 50%;
  margin-left: -32px;
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.jobs-list-btn-load:hover {
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity= 50);
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.jobs-list-btn-load:hover:after {
  bottom: -15px;
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}

.solucoes_hidden{
    display: none;
}

.img_hidden{
    display: none;
}
#mostracli{
    width: 100%;
    text-align: center;
    display: table;    
}
#mostracli a div{
    width: 36px;
    height: 36px;
    background: url(../../images/site/mareg/seta_bottom.png) bottom center repeat;
}
.titulo_peq{
    font-family:"arial_narrow",serif;
    font-size:25px;
    line-height:120%;
    color:rgb(255,102,0);
    text-align:left;
}
.item_vaga{
    float: left;
    padding-left: 15px;
    background: url(../../images/site/mareg/ball.png) center left no-repeat;
    padding-right: 25px;
    font-family:"arial_narrow";
    font-size:18px;
    font-weight:bold;
    line-height:120%;
    color:rgb(102,102,102);
    text-align:left;
    margin-bottom: 35px;
}

.footer {
  position: relative;
  padding:  0;
  color: #fff;
}
.footer:after {
  display: table;
  content: "";
  clear: both;
}
.footer:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  -moz-opacity: 0.3;
  filter: alpha(opacity= 30);
  filter: alpha(opacity=30);
}
.footer .container {
  z-index: 1;
}

.footer-map {
  float: left;
  margin: 0;
}
.footer-map:after {
  display: table;
  content: "";
  clear: both;
}
@media screen and (max-width: 768px) {
  .footer-map {
    float: none;
    margin: 0 0 0;
  }
}
.footer-map .footer-map-img {
  display: block;
  margin: 0;
}

.footer-social {
  margin: 25px 0 0 0;
}
.footer-social:after {
  display: table;
  content: "";
  clear: none;
}
@media screen and (max-width: 768px) {
  .footer-social {
    display: table;
    margin: 25px auto 35px;
  }
}

.footer-social-item {
  float: left;
  margin: 0 7px 0 0;
  height: 38px;
  text-indent: -999999px;
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}

.footer-social-item:hover {
  opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity= 60);
  -moz-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.footer-social-item.footer-social-item-facebook {
  width: 32px;
  background: url('../../images/site/mareg/facebook.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-social-item.footer-social-item-twitter {
  width: 32px;
  background: url('../../images/site/mareg/link_twitter.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-social-item.footer-social-item-instagram {
  width: 32px;
  background: url('../../images/site/mareg/instagram2.png');  
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-social-item.footer-social-item-youtube {
  width: 32px;
  background: url('../../images/site/mareg/link_youtube.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-social-item.footer-social-item-mail {
  width: 32px;
  /*background: url('../../images/site/mareg/link_email.png');
  background-repeat: no-repeat;*/
}
.footer-social-item.footer-social-item-whatsapp{
  width: 32px;
  background: url('../../images/site/mareg/whatsapp.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-social-item.footer-social-item-linkedin {
  width: 32px;
  background: url('../../images/site/mareg/linkedin.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-social-google-partner {
  float: left;
  margin-top: -33px;
  margin-left: 25px;
}
.footer-social-google-partner img {
  width: 200px;
}

.logo_rodape{  
  margin: 0 auto;  
  width: 320px;
  height:70px;  
  background: url('../../images/site/mareg/logo_rodape.png');
  background-repeat: no-repeat;
  background-position: center bottom;
}

.btn_lermais{
  width:98px;
  height:32px;  
  background: url('../../images/site/bt.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

.btn_ver_outra{
  width:251px;
  height:32px;  
  background: url('../../images/site/bt2.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

.logo_rodape div{
    font-family:"arial_narrow",arial,serif;
    font-size:12px;
    line-height:120%;
    font-weight:bold;
    color:#ffffff;
    text-align:center;
    padding-top: 95px;
}

.footer-contact {
  /*float: right;*/
  display: table;
  width: 100%;
}
.mapa_contato{
    float: right; 
    max-width: 440px; 
    padding-right: 30px;
}

@media screen and (max-width: 520px) {
   .mapa_contato{
      max-width: 320px;
   }
}

@media screen and (max-width: 768px) {
  .footer-contact {
    float: none;
    width: auto;
  }
}

.footer-contact-form{
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .footer-contact-form {
    width: auto;
  }
}
.footer-contact-form:after {
  display: table;
  content: "";
  clear: both;
}
.footer-contact-form .form-actions {
  float: right;
  margin: 5px 0 0 0;
}

.footer-contact-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.footer-contact-fieldset .input {
  float: left;
  width: 435px;
}
@media screen and (max-width: 768px) {
  .footer-contact-fieldset .form-group {
    margin-bottom: 10px;
  }
  .footer-contact-fieldset label {
    display: block;
    margin: 0 0 3px;
    text-align: left;
  }
  .footer-contact-fieldset .input {
    float: none;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.footer-contact-legend {
  display: block;
  margin: 0 0 35px;
  font-size: 60px;
  font-size: 3.75rem;
}
@media screen and (max-width: 768px) {
  .footer-contact-legend {
    margin: 0 0 20px;
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.footer-address {
  padding: 0;
  font-family: "arial_narrow", sans-serif, Arial, sans-serif;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .footer-address {
    padding-left: 0;
  }
}
.footer-address strong {
  font-weight: normal;
}

.footer-address-opacity {
  /*opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity= 60);*/
  font-family: "arial_narrow", sans-serif, Arial, sans-serif;
    font-size:20px;
    line-height:120%;
    color:#333333;
    text-align:left;

}

.footer-address-phone {
  display: block;
}
.footer-address-phone small {
  font-size: 18px;
}

.footer-address-email {
  display: block;
  margin: 0 0 30px;
  text-decoration: none;
}
.footer-address-email:hover {
  text-decoration: underline;
}

.footer-address-city {
  display: block;
  font-size: 16px;
}

.footer-bar {
  padding-bottom: 10px;
}

.footer-bar-text {
  position: relative;
  width: 455px;
  padding: 20px 0;
  margin: 0 auto;
}
.footer-bar-text span {
  opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity= 60);
}
.footer-bar-text strong {
  position: absolute;
  top: 0;
  right: -35px;
  width: 202px;
  height: 90px;
    text-indent: -999999px;
}
@media screen and (max-width: 768px) {
  .footer-bar-text strong {
    right: auto;
    left: 25px;
    top: 55px;
  }
  .redessociais{
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer-bar-text {
    display: table;
    width: auto;
    padding: 0;
    margin: 0 auto 70px;
  }
}
	