/*
Theme Name: MS Social
Theme URI: http://underscores.me/
Author: Pita
Author URI: http://www.montarsite.com.br
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mssocial
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

MS Social is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px;
}

textarea {
  padding-left: 3px;
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/* Search widget. */
.widget_search .search-submit {
  display: none;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/* MS */
.sem_margem {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.padrao {
  width: 100%;
  max-width: 1170px;
  display: block;
  margin: 0 auto;
}

a:hover, a:focus {
  outline: none;
  text-decoration: none;
}

.ms-animation {
  opacity: 0;
}

.ms-animation.animated {
  opacity: 1;
}

.navbar-toggle .icon-bar {
  background-color: #FFF;
  border: none;
}

nav.navbar button, nav.navbar button:hover, nav.navbar button:focus {
  box-shadow: none;
  border: none;
}

.carousel-control.left, .carousel-control.right {
  background-image: none;
  width: 22px;
  color: #FFF;
}

.fundo_ladrilho {
  background-repeat: repeat;
  background-position: left top;
}

.fundo_esticado {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

body {
  overflow-x: hidden;
  font-size: 18px;
}
body * {
  font-family: "Quicksand", sans-serif;
  height: auto;
}

p {
  word-wrap: break-word;
}

input[type="submit"] {
  background-color: transparent;
  box-shadow: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  text-shadow: none;
  padding: 22px;
  outline: none;
}
input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus, input[type="submit"]:visited {
  color: #FFF;
  box-shadow: none;
  outline: none;
  border: 2px solid;
}

hr {
  width: 100%;
  float: left;
  overflow: hidden;
  margin: 22px 0px 44px;
  border-bottom: 1px solid #cccccc;
  border-top: none;
  background: none;
}

a, a:hover, input[type="submit"], input[type="submit"]:hover, #servicos, .primeirobl .branco:hover .fa, .primeirobl .branco:hover h2.call_to_action, .primeirobl .branco .fa, .primeirobl .branco h2.call_to_action {
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

#video {
  width: 100%;
  display: block;
  z-index: 999 !important;
  overflow: hidden;
  display: block;
  position: relative;
  background-position: center top;
  background-attachment: fixed;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#video #my-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
#video:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: url("images/slider_overlay_textura4.png") repeat;
  content: '';
}

#slider {
  position: relative;
}
#slider #abertura_slider {
  margin: 0;
  width: 100%;
  height: auto;
}
#slider #abertura_slider .slide_item > .container {
  position: relative;
}
#slider #abertura_slider .slide_item > img {
  width: 100%;
}
#slider #abertura_slider .slide_info {
  margin: 0;
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.carousel.carousel-fade .carousel-inner {
  /*
  .left {
  	transition: opacity 1s ease-in-out !important;
  }
  */
}
.carousel.carousel-fade .carousel-inner .item {
  transition: opacity 2.5s ease-in-out;
  transform: none !important;
}
.carousel.carousel-fade .carousel-inner .item,
.carousel.carousel-fade .carousel-inner .active.left,
.carousel.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel.carousel-fade .carousel-inner .active,
.carousel.carousel-fade .carousel-inner .next.left,
.carousel.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel.carousel-fade .carousel-inner .next,
.carousel.carousel-fade .carousel-inner .prev,
.carousel.carousel-fade .carousel-inner .active.left,
.carousel.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}
.carousel.carousel-fade .carousel-control {
  z-index: 2;
}

#video-alt {
  width: 100%;
  height: auto;
}

.logotipo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
}
.logotipo img {
  display: inline-block;
  margin: 0 auto;
}
.logotipo #hashtag {
  display: block;
  vertical-align: middle;
  margin: 40px 0 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  text-shadow: 0px 0px 2px #FFF, 0px 0px 4px #FFF, 0px 0px 6px #FFF, 0px 0px 8px #FFF;
}
.logotipo #texto_video {
  display: block;
  margin: 1.2em 0 0;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: white;
}

.primeirobl {
  margin-top: -20px;
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 999;
}
.primeirobl h2.call_to_action,
.primeirobl h2.call_to_action_b {
  margin-top: -52px;
  font-size: 18px;
  font-weight: 700;
  padding: 18px;
  display: table;
  text-transform: uppercase;
  color: #FFF;
  width: 80%;
}
.primeirobl h2.call_to_action .fa,
.primeirobl h2.call_to_action_b .fa {
  display: none;
  position: absolute;
  right: 55px;
  top: -5px;
}
.primeirobl .branco:hover h2.call_to_action {
  padding-right: 20%;
  width: 100%;
}
.primeirobl .branco:hover .fa {
  display: block;
}
.primeirobl #conteudo h2 {
  margin-bottom: 25px;
  font-size: 28px;
}
.primeirobl #conteudo ul {
  padding: 0;
  margin-left: 0.25em;
  list-style-type: none;
  font-weight: 700;
}
.primeirobl #conteudo ul > li:before {
  display: inline-block;
  margin-right: 0.67em;
  font-family: 'Font Awesome', FontAwesome;
  content: '\f00c';
}
.primeirobl #conteudo ul > li {
  float: none;
  width: auto;
}

h2.call_to_action_b {
  margin-top: -52px;
  font-size: 18px;
  font-weight: 700;
  padding: 18px;
  display: none;
  text-transform: uppercase;
  color: #FFF;
  margin: 0;
  z-index: 999;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
h2.call_to_action_b a {
  display: block;
  color: #FFF;
}
h2.call_to_action_b .fa {
  display: none;
  position: absolute;
  right: 55px;
  top: 5px;
}

.fixed {
  position: fixed;
  bottom: 0;
  right: 22px;
  display: block !important;
}

.normaliza {
  margin-top: 20px;
}
.normaliza h1 {
  font-weight: 700;
  font-size: 22px;
  text-align: left;
  text-transform: uppercase;
  padding: 22px 0px;
}
.normaliza p {
  text-align: left;
}
.normaliza ul {
  margin-left: 0;
}

h5 {
  font-weight: 700;
  font-size: 16px;
}

.branco {
  background-color: #FFF;
  padding: 28px;
  color: #939393;
}
.branco input, .branco textarea {
  width: 100%;
  border-radius: 0;
  border: 1px solid #cccccc;
  padding: 8px 12px;
  text-align: left;
  font-size: 16px;
}
.branco textarea {
  height: 114px;
}
.branco label {
  float: left;
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
  width: 50%;
}
.branco label span {
  line-height: 22px;
  vertical-align: middle;
}
.branco input[type="checkbox"] {
  float: left;
  width: initial;
  margin-top: 6px;
}
.branco .wpcf7-list-item {
  display: block;
}
.branco p {
  overflow: hidden;
}
.branco p:last-of-type {
  margin-bottom: 0;
}
.branco p:last-of-type img {
  margin: 0 auto;
  text-align: center;
  display: block;
}

#conteudo ul > li {
  float: left;
  margin: 0;
  width: 50%;
  padding: 0;
}

#form_a {
  border-width: 5px;
  border-style: solid;
}
#form_a h3 {
  font-size: 22px;
}
#form_a .wpcf7-checkbox label,
#form_a .wpcf7-radio label {
  cursor: pointer;
}

#servicos {
  margin: 22px 0px;
  width: 100%;
  min-height: 360px;
  padding: 22px 0px;
  overflow: hidden;
}
#servicos h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  text-align: center;
  font-weight: 300;
  color: #FFF;
}
#servicos h2 b, #servicos h2 strong {
  font-weight: 700;
  font-family: "Lato", sans-serif;
}
#servicos h3 {
  text-align: center;
  font-size: 150px;
  color: white;
  font-weight: 700;
}
#servicos p {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: white;
  vertical-align: bottom;
  display: block;
}
#servicos .servicos-item1 h3,
#servicos .servicos-item1 p {
  color: cyan;
}
#servicos .servicos-item2 h3,
#servicos .servicos-item2 p {
  color: yellow;
}
#servicos .servicos-item3 h3,
#servicos .servicos-item3 p {
  color: magenta;
}

#fluxo {
  padding: 22px 0px;
  display: block;
  width: 100%;
  overflow: hidden;
  /*
  .fluxo_item2 {
  	.subicone > .fa,
  	.subicone > .glyphicon {
  		// bottom: 1.3em;
  		&:nth-child(1) {
  			right: 1.3em;
  			bottom: 1.3em;
  		}
  		&:nth-child(2) {
  			right: auto;
  			// left: 1.3em;
  			left: 1.6em;
  			bottom: 1.60em;
  			font-size: 0.43em !important;
  		}
  	}
  }
  .fluxo_item3 {
  	.subicone > .fa,
  	.subicone > .glyphicon {
  		bottom: 1.2em;
  		right: 1.45em;
  	}
  }
  .fluxo_item4 {
  	.subicone > .fa,
  	.subicone > .glyphicon {
  		margin-bottom: -0.6em;
  		bottom: 50%;
  		&:nth-child(1) {
  			right: 0.7em;
  		}
  		&:nth-child(2) {
  			right: auto;
  			left: 0.7em;
  		}
  	}
  }
  */
}
#fluxo h3 {
  margin-left: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}
#fluxo .col_p {
  line-height: 148px;
}
#fluxo p {
  margin: 0px 0 0 2em;
  display: inline-block;
  line-height: 1.42;
  vertical-align: middle;
  font-size: 14px;
}
#fluxo .fa,
#fluxo .glyphicon {
  position: relative;
  padding: 0;
  width: 148px;
  height: 148px;
  background: url("images/circulo.png") no-repeat;
  line-height: 148px;
  text-align: center;
  font-size: 3em;
  margin: 0 0.5em 0.2em 0;
}
#fluxo .fa:before,
#fluxo .glyphicon:before {
  text-shadow: 0 2px 0px rgba(0, 0, 0, 0.1);
}
#fluxo .subicone > .fa,
#fluxo .subicone > .glyphicon {
  position: absolute !important;
  bottom: 1.3em;
  right: 1.3em;
  left: auto;
  margin: 0px;
  width: auto !important;
  height: auto !important;
  background: transparent none !important;
  font-size: 0.5em !important;
  line-height: 1 !important;
}
#fluxo .fluxo_item1 .subicone > .fa,
#fluxo .fluxo_item1 .subicone > .glyphicon {
  bottom: 1.2em;
}
#fluxo .fluxo_item5 .subicone > .fa,
#fluxo .fluxo_item5 .subicone > .glyphicon {
  top: 1.5em;
  bottom: auto;
  left: 1.6em;
  right: auto;
  z-index: -1;
}

#parceiros {
  position: relative;
  margin: 0px;
  background: white center center no-repeat;
  background-size: cover;
  padding: 22px 0px;
  text-align: center;
  font-size: 0;
}
#parceiros .wp-caption {
  display: inline-block;
  float: none;
  vertical-align: middle;
  margin: 15px;
  max-width: calc( 25% - 30px );
  font-size: 18px;
}

#atendemos,
#enderecos {
  position: relative;
  border-bottom: solid black 10px;
  background-size: cover;
  background-attachment: fixed;
  padding: 6% 0px;
  font-size: 22px;
  color: white;
  text-shadow: 0 0 3px black, 0 0 9px rgba(0, 0, 0, 0.67);
}
#atendemos:before,
#enderecos:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.33);
  /* url('images/slider_overlay_textura4.png') repeat; */
  content: '';
}
#atendemos .padrao,
#enderecos .padrao {
  overflow: hidden;
}
#atendemos h2,
#enderecos h2 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 34px;
  text-transform: uppercase;
}
#atendemos p,
#enderecos p {
  margin-bottom: 0.5em;
  font-weight: 700;
}
#atendemos ul,
#enderecos ul {
  padding: 0;
  margin-left: 0.25em;
  list-style-type: none;
  font-weight: 700;
}
#atendemos ul > li:before,
#enderecos ul > li:before {
  display: inline-block;
  margin-right: 0.67em;
  font-family: 'Font Awesome', FontAwesome;
  content: '\f00c';
}

#depoimentos {
  position: relative;
  margin: 0px;
  width: 100%;
  min-height: 360px;
  border-width: 0 0 10px;
  border-style: solid;
  background: black center top fixed no-repeat;
  background-size: cover;
  padding: 22px 0px;
  overflow: hidden;
}
#depoimentos:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  /* url('images/slider_overlay_textura4.png') repeat; */
  content: '';
}
#depoimentos .com_foto > .topo_s {
  margin-top: 10%;
}
#depoimentos .sem_foto > .topo_s {
  margin-top: 7%;
}
#depoimentos p {
  font-size: 23px;
  font-weight: 700;
  font-style: italic;
  font-family: "Lora", serif;
  color: #FFF;
  text-shadow: 0 0 3px black;
  text-align: center;
}
#depoimentos img {
  display: block;
  margin: 14px auto;
  border-radius: 50%;
  max-height: 120px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.33);
}
#depoimentos small {
  display: block;
  text-align: right;
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: italic;
  color: #FFF;
  text-shadow: 0 0 3px black;
}

footer#colophon {
  padding-bottom: 40px;
}
footer#colophon p {
  text-align: center;
  color: #818181;
  font-size: 14px;
  width: 100%;
  display: inline-block;
  letter-spacing: 2px;
  margin-bottom: 0;
}
footer#colophon a {
  border-bottom: 1px dotted rgba(129, 129, 129, 0);
  color: inherit;
}
footer#colophon a:hover {
  border-bottom: 1px dotted #818181;
  text-decoration: none;
}
footer#colophon img {
  margin: 22px auto 0px;
  display: block;
}
footer#colophon .logorodape {
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 1169px) {
  .logotipo img {
    width: 380px;
  }

  .logotipo #texto_video {
    font-size: 24px;
  }

  .logotipo #hashtag {
    margin-top: 25px;
    font-size: 33px;
  }

  #fluxo p {
    margin-left: 3em;
  }

  footer#colophon img {
    width: 320px;
  }
}
@media screen and (max-width: 991px) {
  #conteudo ul {
    margin-left: 0;
    text-align: left;
  }

  #conteudo ul > li {
    float: none;
    width: auto;
  }

  .logotipo img {
    width: 340px;
  }

  .logotipo #hashtag {
    margin-top: 5px;
    font-size: 27px;
  }

  .logotipo #texto_video {
    font-size: 20px;
  }

  .carousel-indicators {
    display: none;
  }

  #atendemos,
  #enderecos {
    font-size: 20px;
  }

  #atendemos h2,
  #enderecos h2 {
    font-size: 30px;
  }

  footer#colophon {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #fluxo p {
    margin-left: 5.5em;
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  #video-alt {
    width: 200% !important;
    height: auto;
    max-width: none;
  }

  #video:after {
    display: none;
  }

  #video:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.67);
    content: '';
  }

  .logotipo {
    /*
    position: absolute;
    top: 0px;
    left: 15px;
    right: 15px;
    transform: none;
    */
    z-index: 2;
  }

  .logotipo img {
    width: auto;
    height: 230px;
  }

  .logotipo img,
  .logotipo #hashtag {
    opacity: 1;
  }

  .logotipo #hashtag {
    margin-top: 0;
    font-size: 16px;
  }

  .navbar-nav > li > a {
    width: 100%;
    float: left;
  }

  nav .navbar-nav > li > a:Hover {
    border: none;
  }

  .header_info {
    display: none;
  }

  nav.navbar ul li {
    width: 100%;
  }

  .navbar-nav {
    margin: 12px 0px 0px;
  }

  .primeirobl {
    margin-top: 0;
  }

  /*
  #conteudo .fa {
  	display: none;
  }
  */
  h2 {
    font-size: 24px;
  }

  #fluxo .col_p {
    line-height: 1;
  }
  #fluxo .col_p h3 {
    display: block;
    margin-left: 0;
  }
  #fluxo .col_p p {
    display: block;
    margin: 0;
  }

  #servicos h2 {
    font-size: 25px;
  }

  #servicos p {
    height: auto;
  }

  #parceiros .wp-caption {
    max-width: calc( 100% - 30px );
  }

  #colophon {
    padding-bottom: 50px;
  }
}
