/* BASIC */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@import url(../fonts/stylesheet.css);
/* colors */
html,
body {
  font-family: "open_sansregular", monospace;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 19px;
  color: #6E6F72;
  width: 100%; }

.no_scroll {
  position: fixed;
  overflow-y: scroll; }

section {
  position: relative;
  background: #FFFFFF; }

section#home {
  min-height: 100vh; }

section#about-us {
  z-index: 2; }

section#services {
  z-index: 1; }

/* Styles */
.lg_title {
  font-size: 50px;
  letter-spacing: 2px;
  line-height: 68px;
  color: #2955a1;
  text-transform: uppercase;
  font-family: "open_sansbold", monospace; }

.lg_subtitle {
  font-size: 36px;
  letter-spacing: 1px;
  line-height: 68px;
  color: #2955a1;
  text-transform: uppercase;
  font-family: "open_sansbold", monospace; }

.lg_text {
  color: #6E6F72;
  font-family: "open_sansregular", monospace;
  font-size: 16px;
  line-height: 28px; }

.lg_button {
  color: #2955a1;
  border: 2px solid #2955a1;
  width: 138px;
  background: transparent;
  text-align: center;
  padding: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .lg_button:hover, .lg_button:active {
    color: #FFFFFF;
    background-color: #2955a1; }

.mt100 {
  margin-top: 100px; }

a {
  color: inherit;
  text-decoration: none; }
  a:hover, a:focus {
    color: inherit;
    text-decoration: none; }

/* Following the logo style, these cuts represent the (1)left polygon and (2)top right polygon */
.logo_cut_1 {
  -webkit-clip-path: polygon(66% 0, 100% 58%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(66% 0, 100% 58%, 100% 100%, 0 100%, 0 0); }

.logo_cut_2 {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 39% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 39% 100%); }

/* Side Menu */
.lg_side_menu {
  width: 80px;
  position: fixed;
  min-height: 600px;
  height: 100vh;
  right: 0;
  z-index: 3;
  background: #FFFFFF;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
  -khtml-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
  -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
  -ms-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
  -o-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
  box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0; }

.logo_navbar {
  max-width: 45px;
  margin: 80px auto 0; }

#menu_button {
  position: fixed;
  z-index: 5;
  cursor: pointer;
  top: 20px;
  right: 20px;
  text-align: -webkit-right; }
  #menu_button div {
    width: 35px;
    height: 1px;
    background-color: #2955a1;
    margin: 6px 0;
    border: 2px solid #2955a1;
    border-radius: 5px; }
  #menu_button div:nth-child(2) {
    width: 25px;
    -webkit-transition: all 0.6s ease-in-out;
    -khtml-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }
  #menu_button:hover div:nth-child(2) {
    width: 35px; }
  #menu_button.open {
    cursor: pointer;
    top: 30px;
    right: 55px;
    text-align: -webkit-right; }
    #menu_button.open div {
      position: absolute;
      width: 35px;
      height: 1px;
      background-color: #2955a1;
      margin: 6px 0;
      border: 2px solid #2955a1;
      border-radius: 5px; }
    #menu_button.open div:nth-child(1) {
      transform: rotate(45deg);
      -webkit-transition: all 0.6s ease-in-out;
      -khtml-transition: all 0.6s ease-in-out;
      -moz-transition: all 0.6s ease-in-out;
      -ms-transition: all 0.6s ease-in-out;
      -o-transition: all 0.6s ease-in-out;
      transition: all 0.6s ease-in-out; }
    #menu_button.open div:nth-child(2) {
      opacity: 0; }
    #menu_button.open div:nth-child(3) {
      transform: rotate(-45deg);
      -webkit-transition: all 0.6s ease-in-out;
      -khtml-transition: all 0.6s ease-in-out;
      -moz-transition: all 0.6s ease-in-out;
      -ms-transition: all 0.6s ease-in-out;
      -o-transition: all 0.6s ease-in-out;
      transition: all 0.6s ease-in-out; }

.menu_social {
  position: absolute;
  bottom: 330px; }
  .menu_social i {
    color: #2955a1;
    font-size: 28px;
    width: 80px;
    text-align: center;
    margin: 25px 0;
    cursor: pointer; }

.menu_contact {
  position: absolute;
  background: #2955a1;
  color: #FFFFFF;
  bottom: 0;
  width: 100%;
  height: 300px;
  overflow: hidden; }
  .menu_contact span {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -khtml-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%; }
  .menu_contact img {
    position: absolute;
    bottom: 30px;
    right: 17px; }

.lg_opened_menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s ease-in-out;
  -khtml-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  position: fixed;
  min-height: 100vh;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 4; }
  .lg_opened_menu.down {
    opacity: 1;
    visibility: visible; }
    .lg_opened_menu.down .lg_opened_menu_base {
      width: 700px;
      padding-left: 100px;
      overflow: auto;
      height: 100%;
      right: 0; }
  .lg_opened_menu .lg_opened_menu_base {
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
    -khtml-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
    -ms-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
    -o-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
    box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px 0;
    -webkit-transition: all 0.6s ease-in-out;
    -khtml-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    position: fixed;
    background: #FFFFFF;
    min-height: 100vh;
    width: 80px;
    padding-left: 0;
    right: -500px;
    display: table; }
  .lg_opened_menu .center_menu {
    display: table-cell;
    vertical-align: middle; }
  .lg_opened_menu .menu_logo {
    border-bottom: 1px solid rgba(110, 111, 114, 0.1);
    max-width: 368px;
    width: 100%; }
    .lg_opened_menu .menu_logo img {
      padding-top: 10px;
      padding-bottom: 10px; }
  .lg_opened_menu .menu_options {
    margin-top: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(110, 111, 114, 0.1);
    max-width: 368px;
    width: 100%; }
    .lg_opened_menu .menu_options ul {
      padding: 0; }
      .lg_opened_menu .menu_options ul li {
        text-decoration: none;
        list-style: none;
        margin-bottom: 20px; }
        .lg_opened_menu .menu_options ul li a {
          color: #2955a1;
          text-transform: uppercase;
          font-family: "open_sansbold", monospace;
          font-size: 28px;
          letter-spacing: 1px;
          line-height: 38px;
          -webkit-transition: all 0.6s ease-in-out;
          -khtml-transition: all 0.6s ease-in-out;
          -moz-transition: all 0.6s ease-in-out;
          -ms-transition: all 0.6s ease-in-out;
          -o-transition: all 0.6s ease-in-out;
          transition: all 0.6s ease-in-out; }
          .lg_opened_menu .menu_options ul li a:hover {
            color: inherit; }
  .lg_opened_menu .menu_address {
    margin-top: 50px;
    max-width: 368px;
    width: 100%;
    position: relative; }
    .lg_opened_menu .menu_address .menu_address_contact {
      margin-bottom: 15px;
      color: #2955a1;
      padding-left: 50px; }
      .lg_opened_menu .menu_address .menu_address_contact img {
        width: 30px;
        position: absolute;
        left: 0; }
    .lg_opened_menu .menu_address ul {
      padding: 0; }
      .lg_opened_menu .menu_address ul li {
        text-decoration: none;
        list-style: none;
        margin-bottom: 20px;
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 20px; }
        .lg_opened_menu .menu_address ul li p {
          margin: 0; }
  .lg_opened_menu .menu_address_social {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px; }
    .lg_opened_menu .menu_address_social i {
      color: #2955a1;
      font-size: 28px;
      width: 80px;
      text-align: center;
      margin: 50px 0 0;
      cursor: pointer; }

/* INTRO */
.lg_fixed_background {
  background: url("/skins/frontend/default/images/223759030.png") no-repeat center fixed;
  -webkit-background-size: cover;
  -khtml-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  overflow: hidden; }

.background_video {
  position: fixed;
  z-index: -99;
  width: 100%;
  height: 100%; }

.background_image_portrait,
.background_image_landscape {
  display: none;
  overflow: hidden; }
  .background_image_portrait img,
  .background_image_landscape img {
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    position: absolute; }

.lg_intro_text {
  z-index: 1;
  max-width: 937px;
  font-family: "open_sansextrabold", monospace;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 66px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 72px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.35);
  position: absolute;
  bottom: 100px;
  left: 60px;
  margin-right: 100px; }

/* ABOUT US */
.about_block {
  width: 100%;
  position: relative; }

.about_text {
  padding-top: 100px;
  max-width: 500px;
  z-index: 2;
  position: relative; }

.about_image {
  -webkit-filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.5)); }

.polygon_about_image {
  max-width: 700px;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  background: url("/skins/frontend/default/images/random.jpg") no-repeat center;
  -webkit-background-size: cover;
  -khtml-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.5)); }

/* SERVICES */
.services_block {
  padding-top: 100px;
  padding-bottom: 100px;
  width: 100%;
  position: relative; }

.service {
  display: table;
  height: 200px;
  padding: 0; }

.service_image {
  vertical-align: bottom;
  display: table-cell;
  height: 120px; }
  .service_image img {
    text-align: center;
    margin: 0 auto 20px; }

.service_text {
  display: table-row;
  margin: 20px auto;
  text-align: center;
  color: #6E6F72;
  font-family: "open_sansbold", monospace;
  font-size: 21px;
  line-height: 28px; }

#portfolio {
  /* avoid horizontal scroll */
  overflow-y: hidden; }

.portfolio_desc {
  max-width: 799px;
  margin-bottom: 40px; }

.portfolio_block {
  margin-top: 30px;
  margin-bottom: 100px;
  display: table;
  min-height: 100%;
  width: 100%; }

.portfolio_block_image img {
  height: 100%;
  max-height: 400px; }

.pentagonon_image {
  height: 400px;
  background: #FFFFFF; }
  .pentagonon_image img {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-opacity: 0.7;
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    -ms-opacity: 0.7;
    -o-opacity: 0.7;
    opacity: 0.7;
    -webkit-transition: all 0.6s ease-in-out;
    -khtml-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }
  .pentagonon_image:hover img {
    -webkit-filter: blur(0);
    filter: blur(0);
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1; }

.portfolio_block_text {
  padding-top: 70px;
  height: 400px; }

.portfolio_block_text .lg_button {
  display: table-cell;
  vertical-align: bottom;
  position: absolute;
  bottom: 0; }

.produtos_blocks {
  margin-bottom: 150px; }

.produto_block_image {
  max-width: 250px; }
  .produto_block_image:after {
    position: absolute;
    top: 26%;
    left: 26%;
    opacity: 0;
    background-image: url("/skins/frontend/default/images/produtos/More.png");
    background-size: 50px 50px;
    display: inline-block;
    width: 50px;
    height: 50px;
    content: "";
    -webkit-transition: all 0.6s ease-in-out;
    -khtml-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }
  .produto_block_image:hover:after {
    opacity: 1; }
  .produto_block_image img {
    -webkit-transition: all 0.6s ease-in-out;
    -khtml-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }
  .produto_block_image:hover img {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-opacity: 0.7;
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    -ms-opacity: 0.7;
    -o-opacity: 0.7;
    opacity: 0.7; }

.produto_block_text {
  max-width: 240px;
  color: #6E6F72;
  font-family: "open_sansbold", monospace;
  font-size: 21px;
  line-height: 28px;
  margin: 20px 0; }

.produtos_blocks .lg_title {
  margin-bottom: 40px; }

.produtos_blocks .lg_button {
  text-align: center;
  margin: 30px auto 0; }

/* CONTACTS */
.full_contact {
  background-color: #929497;
  color: #FFFFFF;
  width: 100%;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 19px;
  padding-top: 30px;
  padding-bottom: 50px; }

.contact_block {
  margin-bottom: 50px; }

.contact_logo {
  margin: 0 auto 50px;
  text-align: center;
  max-width: 150px; }
  .contact_logo img {
    width: 100%; }

.contact_tile {
  font-size: 21px;
  margin-bottom: 20px; }

.contact_block ul {
  padding-left: 20px; }
  .contact_block ul div {
    height: 20px;
    width: 20px;
    float: left;
    margin-right: 10px;
    text-align: center; }
    .contact_block ul div img {
      max-height: 100%;
      max-width: 100%;
      margin: 0 auto; }
  .contact_block ul li {
    margin: 20px 0;
    text-decoration: none;
    list-style: none; }
    .contact_block ul li p {
      margin-bottom: 0; }

.contact_form .form_half {
  width: 49%;
  margin-bottom: 15px; }
  .contact_form .form_half input {
    width: 100%;
    padding: 10px 20px 10px 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    color: #6E6F72; }
  .contact_form .form_half:nth-child(odd) {
    float: left; }
  .contact_form .form_half:nth-child(even) {
    float: right; }
.contact_form .form_full {
  width: 100%;
  margin-bottom: 15px; }
  .contact_form .form_full textarea,
  .contact_form .form_full input {
    padding: 10px 20px;
    width: 100%;
    border: none;
    color: #6E6F72;
    background-color: rgba(255, 255, 255, 0.8); }
.contact_form textarea {
  resize: none;
  height: 150px; }
.contact_form .input_name {
  background: url("/skins/frontend/default/images/User.png") no-repeat scroll 20px 8px;
  background-size: 23px 23px;
  background-color: rgba(255, 255, 255, 0.8);
  padding-left: 50px; }
.contact_form .input_email {
  background: url("/skins/frontend/default/images/EmailCinzento.png") no-repeat scroll 9px 8px;
  background-size: 34px 23px;
  background-color: rgba(255, 255, 255, 0.8);
  padding-left: 50px; }

label.error {
  color: #da4545;
  font-size: 12px;
  margin-bottom: 0; }

.lg_button2 {
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 138px;
  background: transparent;
  text-align: center;
  padding: 8px;
  cursor: pointer;
  float: right;
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .lg_button2:hover, .lg_button2:active {
    color: #929497;
    background-color: white; }

.footer_menu ul {
  text-align: center;
  margin: 0 auto 30px; }
  .footer_menu ul li {
    display: inline-block;
    text-decoration: none;
    margin: 0 25px;
    text-transform: uppercase;
    font-size: 16px; }
    .footer_menu ul li a {
      color: #FFFFFF; }

.footer_map {
  margin-top: 20px; }
  .footer_map #map {
    height: 300px; }

/* FOOTER */
.full_footer {
  color: #FFFFFF;
  width: 100%;
  min-height: 45px;
  background-color: #6E6F72;
  font-size: 12px;
  padding: 10px;
  position: relative;
  letter-spacing: 0; }
  .full_footer a {
    color: #FFFFFF; }

/* PRODUCTS PAGE */
.produtos_block {
  margin-top: 20px;
  margin-bottom: 50px; }

#product_close {
  position: absolute;
  cursor: pointer;
  top: 30px;
  right: 55px;
  text-align: -webkit-right; }
  #product_close div {
    position: absolute;
    width: 35px;
    height: 1px;
    background-color: #2955a1;
    margin: 6px 0;
    border: 2px solid #2955a1;
    border-radius: 5px; }
  #product_close div:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transition: all 0.6s ease-in-out;
    -khtml-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }
  #product_close div:nth-child(2) {
    transform: rotate(-45deg);
    -webkit-transition: all 0.6s ease-in-out;
    -khtml-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }

.produtos_block_image {
  max-width: 350px; }
  .produtos_block_image:after {
    position: absolute;
    top: 30%;
    left: 40%;
    opacity: 0;
    background-image: url("/skins/frontend/default/images/produtos/More.png");
    background-size: 50px 50px;
    display: inline-block;
    width: 50px;
    height: 50px;
    content: ""; }
  .produtos_block_image:hover:after {
    opacity: 1; }
  .produtos_block_image img {
    -webkit-transition: all 0.6s ease-in-out;
    -khtml-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }
  .produtos_block_image:hover img {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-opacity: 0.7;
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    -ms-opacity: 0.7;
    -o-opacity: 0.7;
    opacity: 0.7; }

.produtos_block_text {
  margin-top: 20px;
  color: #6E6F72;
  font-size: 21px;
  letter-spacing: 1px;
  line-height: 28px;
  min-height: 60px; }

.container_fullpage {
  position: relative;
  min-height: calc(100vh - 45px); }

.product_display {
  margin-top: 100px; }

.product_display_owl .product_display_image {
  text-align: center;
  margin-bottom: 50px; }
  .product_display_owl .product_display_image img {
    min-height: 320px;
    margin: 0 auto; }
.product_display_owl .product_display_text {
  text-align: center;
  margin-bottom: 30px; }

.product_example {
  margin-bottom: 50px; }
  .product_example .lg_subtitle {
    margin-bottom: 30px; }
  .product_example .product_example_block {
    width: 170px;
    min-height: 155px;
    background-color: #F5F5F5; }
    .product_example .product_example_block .product_example_title {
      color: #2955a1;
      padding: 10px; }
    .product_example .product_example_block .product_example_text {
      padding: 10px; }

.nav_produtos {
  position: relative;
  top: -250px; }
  .nav_produtos .previous_product,
  .nav_produtos .next_product {
    position: absolute;
    top: 50%;
    margin-top: -10px; }
  .nav_produtos .previous_product {
    left: 80px; }
  .nav_produtos .next_product {
    right: 80px; }

/* PORTFOLIO PAGE */
.portfolio_image {
  width: 100%; }
  .portfolio_image img {
    width: 100%; }

.portfolio_desc_title {
  margin-top: 50px; }

.portfolio_desc_text {
  max-width: 570px; }

.portfolios_multi_owl {
  margin-top: 100px;
  margin-bottom: 100px; }

.portfolio_multi_text {
  margin-top: 30px; }

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #2955a1; }

.portfolio_multi_image:after {
  position: absolute;
  top: 30%;
  left: 40%;
  opacity: 0;
  background-image: url("/skins/frontend/default/images/produtos/More.png");
  background-size: 50px 50px;
  display: inline-block;
  width: 50px;
  height: 50px;
  content: ""; }
.portfolio_multi_image:hover:after {
  opacity: 1; }
.portfolio_multi_image img {
  -webkit-transition: all 0.6s ease-in-out;
  -khtml-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out; }
.portfolio_multi_image:hover img {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  filter: alpha(opacity=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  -webkit-opacity: 0.7;
  -khtml-opacity: 0.7;
  -moz-opacity: 0.7;
  -ms-opacity: 0.7;
  -o-opacity: 0.7;
  opacity: 0.7; }

/* Custom Owl */
.owl-theme .owl-nav [class*=owl-] {
  background: transparent; }
  .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent; }

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  margin-top: -10px; }

.owl-prev {
  left: 80px; }

.owl-next {
  right: 80px; }

/* MEDIAQUERIES */
@media (max-width: 1300px) {
  .full_contact .container,
  .full_footer .container {
    padding-right: 85px; } }
@media (max-width: 1200px) {
  .polygon_about_image {
    max-width: 500px; } }
@media (max-width: 992px) {
  .polygon_about_image {
    max-width: 250px; }

  .pentagonon_image {
    height: 260px; }
    .pentagonon_image img {
      max-height: 260px;
      margin: 0 auto;
      -webkit-filter: blur(0px);
      filter: blur(0px);
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-opacity: 1;
      -khtml-opacity: 1;
      -moz-opacity: 1;
      -ms-opacity: 1;
      -o-opacity: 1;
      opacity: 1; }

  .lg_side_menu {
    display: none; }

  .produto_block_image:hover:after {
    left: 36%; }

  #contacts .container {
    padding-right: 15px; }

  .full_footer .container {
    padding-right: 15px; }
    .full_footer .container .row div {
      text-align: center;
      margin-top: 10px;
      clear: both; }

  .lg_opened_menu.down .menu_logo {
    height: 160px; }
    .lg_opened_menu.down .menu_logo img {
      padding-top: 50px; }
  .lg_opened_menu.down .lg_opened_menu_base {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px; }
  .lg_opened_menu.down .menu_address_social {
    position: relative;
    width: 100%; }
    .lg_opened_menu.down .menu_address_social i {
      margin: 20px 50px 20px 0;
      width: initial; }

  .owl-prev {
    left: 5px; }

  .owl-next {
    right: 5px; }

  .nav_produtos .previous_product {
    left: 5px; }
  .nav_produtos .next_product {
    right: 5px; }

  .portfolio_block_text {
    height: auto;
    padding-top: 10px; }
    .portfolio_block_text .lg_title {
      margin-bottom: 0; }
    .portfolio_block_text .lg_text {
      margin-bottom: 30px; }
    .portfolio_block_text .lg_button {
      position: relative;
      margin: 0 auto;
      display: block; } }
@media (max-width: 768px) {
  html, body {
    font-size: 15px; }

  .lg_title {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 30px;
    text-align: center; }

  .lg_subtitle {
    font-size: 20px;
    line-height: 28px;
    text-align: center; }

  .lg_intro_text {
    bottom: 70px;
    font-size: 30px;
    line-height: 42px; }

  .lg_text {
    font-size: 15px; }

  .polygon_about_image {
    max-height: 150px;
    max-width: 400px;
    display: none; }

  .about_text {
    max-width: 100%; }

  .services_block {
    padding-bottom: 50px; }

  .portfolio_block {
    margin-bottom: 20px;
    width: auto; }

  .produtos_block {
    margin-bottom: 20px; }

  .produto_block_text {
    font-size: 15px;
    line-height: 20px; }

  #product_close {
    left: 15px;
    right: initial; }

  .produtos_block_text {
    min-height: 90px; }

  .footer_menu ul li {
    margin: 0 5px; }

  .produtos_block_image:hover:after,
  .produto_block_image:hover:after {
    display: none; } }
@media (max-width: 450px) {
  .lg_intro_text {
    left: 10px; }

  .polygon_about_image {
    max-width: 50%; }

  ul {
    padding: 0; } }
@media only screen and (max-height: 768px) and (orientation: landscape) {
  .background_image_video,
  .background_image_portrait {
    display: none; }

  .background_image_landscape {
    display: block; } }
@media only screen and (max-height: 768px) and (orientation: portrait) {
  .background_image_video,
  .background_image_landscape {
    display: none; }

  .background_image_portrait {
    display: block; } }
@media only screen and (max-height: 700px) {
  /* to allow scroll on menu*/
  .lg_opened_menu .lg_opened_menu_base {
    display: block; } }

/*# sourceMappingURL=style.css.map */
