/*! HTML5 Boilerplate v5.0.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}
html a,body a{
    text-decoration:none !important;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* MENU STYLES NEW*/
.dropdown-menu > li.kopie > a {
    padding-left:5px;
}
 
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
   top:0;left:100%;
   margin-top:-6px;margin-left:-1px;
   -webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;
 }
  
.dropdown-submenu > a:after {
  border-color: transparent transparent transparent #333;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  content: " ";
  display: block;
  float: right;  
  height: 0;     
  margin-right: -10px;
  margin-top: 5px;
  width: 0;
  display:none;
}
 
.dropdown-submenu:hover>a:after {
    border-left-color:#555;
 }

.dropdown-menu > li > a:hover, .dropdown-menu > .active > a:hover {
  text-decoration: underline;
} 
/*--------------------------------*/

/*modal estilos*/
.modal-body{
    padding: 0px;
    font-size: 0px;
}
.modal-search{
    text-align: center;
    padding: 0!important;
    z-index: 9999999;
}
.cerrar{
    position: absolute;
    right: -18px;
    top: -25px;
    opacity: 1 !important;
    z-index: 3;
    color: #fff;
    font-size: 34px;
    background:transparent;
    border:0px;
    outline: none;
}
.modal-search:before{
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}
.modal-search .modal-dialog{
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}
.modal-search .modal-content{
    background: transparent;
    color: #fff;
    padding: 0px;
    border-radius: 0px;
    width: 100%;
}
.modal-search .modal-header{
    border-bottom: 0px;
}
.modal-search .modal-footer button{
    position: relative;
    background: transparent;
    width: 142px;
    height: 50px;
    border: 0px;
    color: #fff;
    font-size: 21px;
    border-radius: 5px;
    text-align: center;
}
.container-modal{
    width: 850px;
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.embed-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*checkbox custom style*/
.checkbox1 {
    position:relative;
    text-align: right;
}
.checkbox1 label {
    display: inline-block;
    position: relative;
    padding-right: 30px;
    color:#000;
    font-family: 'Open Sans', sans-serif;
    font-size:17px; 
    cursor: pointer;
    font-weight:400;
}
.checkbox1 label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    /* margin-left: -38px; */
    border: 1px solid #cccccc;
    border-radius: 3px;
    background: #f7f7f7;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    right: 0;
    top: 4px;
}
.checkbox1 label::after {
    display: inline-block;
    position: absolute;
    width: 18px;
    height: 20px;
    right: 2px;
    top: 3px;
    margin-left: -16px;
    padding-left: 2px;
    padding-top: 1px;
    font-size: 14px;
    color: #555555; 
}
.checkbox1 input[type="checkbox"] {
    opacity: 0; 
}
.checkbox1 input[type="checkbox"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; 
}
.checkbox1 input[type="checkbox"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c";
}
.checkbox1 input[type="checkbox"]:disabled + label {
    opacity: 0.65; 
}
.checkbox1 input[type="checkbox"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed; 
}
.checkbox1.checkbox-circle label::before {
    border-radius: 50%; 
}
.checkbox1.checkbox-inline {
    margin-top: 0; 
}

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #428bca;
    border-color: #428bca; 
}
.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff; 
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f; 
}
.checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff; 
}
.checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de; 
}
.checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff; 
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e; 
}
.checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff; 
}

.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c; 
}
.checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff; 
}
/*-------------------------------------*/
/*pagination*/
.pagination-news-list {
    width: 100%;
    margin-bottom: 100px;
}
.page-numbers {
    margin: 0;
    padding: 0;
    text-align: center;
}
.page-numbers li {
    position: relative;
    margin: 61px 3px 0px 3px;
    display: inline-block;
    color: #6e6e6e;
    font-family: 'Titillium-Regular';
    font-size: 23px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    vertical-align: top;
    line-height: 36px;
}
.page-numbers li span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    border-radius: 100px;
    color: #2956a1;
    font-family: 'Titillium-Bold';
    background: #fff;
}
.page-numbers li a {
    color: #6e6e6e;
    text-decoration: none;
}
/*------------------------------*/
/* header styles */
header{
    width: 100%;
    height: 174px;
    display: table;
    position: relative;
    padding: 10px 0px;
    z-index: 999999;
    background: linear-gradient(white, #ffffff00);
    /*background-image: url(../img/back-header.png);*/
    background-size: cover;
    padding-left: 0px !important;
    padding-right: 0px !important;
    background-repeat: no-repeat;
}
.logo-link{
    display: inline-block;
    margin-top: 30px;
    position: absolute;
    width: 170px;
}
.logo-link img{
    width:100%;
}
.wrapper-nav{
    margin:0px;
    padding:0px;
}
.navigation-header{
    background: transparent;
    border: 0px;
    width: 1180px;
    margin: 0 auto;
}
.navbarR{
    padding: 0px;
}
.navigation-header .navbar-nav>li>a{
    color:#2956a1;
    font-family: 'Titillium-Bold';
    font-size:18px;
    font-weight:700;
    padding: 10px 40px;
}
.menu-list .dropdown-menu{
    right: inherit;
    left: inherit;
    padding: 5px 7px;
    border: 0px;
    border-radius: 0px;
    background:#fff;
    color:#006241;
}
.menu-list .dropdown-menu>li>a{
    color:#fff;
    font-family: 'Titillium-Bold';
    font-size:18px;
    font-weight:700;
    border-left: 0px solid #dddddd;
}

/*.menu-list .dropdown-menu > li > a:hover,.menu-list .dropdown-menu > .active > a:hover,.menu-list .dropdown:hover{
    background:#5d0957;
    color:#fff;
}*/
.list-clear{
    padding:0;
    margin:0;
    list-style:none;
}
.social-list{
    text-align: right;
    padding-right: 22px;
    padding-bottom:20px;
}
.social-list li{
    display:inline-block;
    margin:5px;
}
.menu-list .dropdown:hover > a,.menu-list .dropdown-menu li:hover a{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b7deed+0,71ceef+33,21b4e2+54,b7deed+100 */
    background: #315ca4 !important; /* Old browsers */
    background: -moz-linear-gradient(top, #315ca4 0%, #71ceef 33%, #21b4e2 54%, #315ca4 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #315ca4 0%,#71ceef 33%,#21b4e2 54%,#315ca4 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #315ca4 0%,#71ceef 33%,#21b4e2 54%,#315ca4 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#315ca4', endColorstr='#b7deed',GradientType=0 ); /* IE6-9 */
    color:#fff !important;
    text-decoration:none;
}
.menu-list .dropdown-menu li{
    margin:0;
    display: block;
}
.current-menu{    
    background: #315ca4 !important; /* Old browsers */
    background: -moz-linear-gradient(top, #315ca4 0%, #71ceef 33%, #21b4e2 54%, #315ca4 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #315ca4 0%,#71ceef 33%,#21b4e2 54%,#315ca4 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #315ca4 0%,#71ceef 33%,#21b4e2 54%,#315ca4 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#315ca4', endColorstr='#b7deed',GradientType=0 ); /* IE6-9 */
    color: #fff !important;
}
.menu-list .dropdown-menu li a{
    margin: 0;
    padding: 8px 17px;
    color:#2956a1;
    border-radius:none;
    border-radius: 0px !important;
}
.menu-list{
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
    /*margin-top: 60px;*/
    border-bottom-left-radius: 33px;
    border-top-left-radius: 33px;
}
.menu-list li{
    position:relative;
    display:inline-block;
    vertical-align:middle;
    color:#0a21f0;
}
.menu-list li a{
    position:relative;
    color:#2956a1;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ededed+51,f3f3f3+52,f3f3f3+52,ffffff+100;White+Gloss+%232 */
    background: #efeeee; /* Old browsers */
    background: -moz-linear-gradient(top, #efeeee 0%, #ededed 51%, #f3f3f3 52%, #f3f3f3 52%, #efeeee 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #efeeee 0%,#ededed 51%,#f3f3f3 52%,#f3f3f3 52%,#efeeee 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #efeeee 0%,#ededed 51%,#f3f3f3 52%,#f3f3f3 52%,#efeeee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efeeee', endColorstr='#efeeee',GradientType=0 ); /* IE6-9 */
    border-left:1px solid #dddddd;
}
.menu-list li:nth-of-type(1) a{
    border-bottom-left-radius: 33px;
    border-top-left-radius: 33px;
    border-left:1px solid #dddddd;
}
.logo{
    width:120px;
}
.menu-list li:nth-last-of-type(1) a{
    border-bottom-right-radius: 33px;
    border-top-right-radius: 33px;
    border-left:1px solid #dddddd;
}

/* slider style*/
.container-slider{
    position: relative;
    width:100%;
}
.container-slider .items{
    display:table;
    width:100%;
    background-size: cover;
    background-position: center center;
}
.middle{
    vertical-align:middle;
    display:table-cell; 
}
.text-slider{
    width:80%;
    margin:auto;
    text-align:right;
    margin-top: 170px;
}
.wrapper-text{
    display:block;
}
.text-slider a{
    font-family: 'NexaLight';
    font-size: 19px;
    background: #006aaf;
    color: #fff;
    border-radius: 26px;
    text-decoration: none;
    padding: 10px 36px 8px;
    display: inline-block;
    margin-top: 16px; 
}
.container-slider .owl-dots{
    width: 400px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3%;
    margin: auto;
    text-align: center;
}
.back-color{
    display:table;
    position:absolute;
    width:100%;
    height:100%;
    /*background:rgba(0,0,0,0.8);*/
}
.container-slider .owl-carousel .owl-dot,
.container-slider .owl-carousel .owl-nav .owl-next,
.container-slider .owl-carousel .owl-nav .owl-prev{
    position: relative;
    width: 20px;
    height: 20px;
    background: #f4f7f6;
    border-radius: 100px;
    display: inline-block;
    margin: 8px;
    vertical-align: middle;
    display:none;
}
.container-slider .items{
    position:relative;
    padding:0px 10px; 
    padding-top:100px;
    padding-bottom:100px;
}
.container-slider .owl-dot:nth-last-of-type(1):after{
    display:none;
}
.container-slider .owl-dot.active{
    background: #f05a0a;
}

.container-slider .arrow-prev,.container-slider .arrow-next,.big-image .arrow-next,.big-image .arrow-prev{
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 0px;
    top: 0;
    margin: auto;
    z-index: 10;
    cursor:pointer;
}
.slider-home{
    position: relative;
    width:100%;
    margin-top: -100px;
}
.slider-home h2{
    position:relative;
    font-family: 'Titillium-BoldItalic';
    color:#fefeff;
    font-size:50px; 
    text-align:center;
    margin-bottom:40px;
    color:#00acec;
}
.slider-home h2 span{
    color:#2956a1;
}
.text-house{
    text-align:center;
    width:400px;
    margin:auto;
    margin-bottom:50px;
}
#powerTip{
    background-color: transparent;
    width: 450px;
}
#powerTip div.image{
    width: 100%;
    background: rgba(255,255,255,10);
    padding-top: 20px;
    border-radius: 10px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
#powerTip img{
    text-align: center;
    display: inherit;
    margin:auto;
}
#powerTip:before{
    display:none;
    background-color: #286eab;
}
.box_view_html{
    overflow:inherit;
    background-image:url(../img/back-popup.png);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    box-sizing: border-box;
    padding: 0px 0px 7px 0px;
    border-radius:10px;
}
#powerTip p{
    font-family: 'Titillium-Semibold';
    font-size: 20px;
    color: #fff;
    margin-top:20px;
    margin-bottom:20px;
    padding: 16px 40px 0px 40px;
}
#powerTip a{
    font-family: 'Titillium-Light';
    font-size: 20px;
    color: #fff !important;
    text-decoration: none !important;
    padding: 5px 45px;
    border-radius: 10px;
    display: inherit;
    left: 0;
    right: 0;
    margin: auto;
    width: 171px;
    text-align: center;
    margin-bottom: 26px;
    background: #2956a1;
}
#powerTip h2{
    background: #01abea;
    position: relative;
    width: 103.2%;
    padding: 10px 30px;
    left: -1.6%;
    display: block;
    text-align: center;
    margin: auto;
    font-family: 'Titillium-BoldItalic';
}
#powerTip h2:before{
    content:'';
    position:absolute;
    width: 0;
    height: 0;
    left: 0;
    top: -9px;
    border-bottom: 9px solid #3d8eab;
    border-left: 9px solid transparent;
}
#powerTip h2:after{
    content:'';
    position:absolute;
    width: 0;
    height: 0;
    right: 0;
    top: -9px;
    border-bottom: 9px solid #3d8eab; 
    border-right: 9px solid transparent;  
}
.back-home,.next-home,.back-sol,.next-sol{
    width: 30px;
    height: 30px;
    font-size: 36px;
    position: absolute;
    bottom: -10%;
    top: 0;
    margin: auto;
    z-index:2;
    color:#2956a1;
}
.back-sol,.next-sol{
    bottom:0;
}
.back-home i,.next-home i,.back-sol i,.next-sol i{
    cursor:pointer;
}
.back-home,.back-sol{
    left:5%;
}
.back-sol{
    left:0;
}
.next-home{
    right:5%;
}
.next-sol{
    right:0;
}
.text-house p{
    font-family: 'Titillium-Semibold';
    font-size: 20px;
    color: #6e6e6e;
}
body .point_style a img, body .point_style img{
    width:55px !important;
}
.big-image .arrow-next,.big-image .arrow-prev{
    top: -30%;
}
.big-image .arrow-next img,.big-image .arrow-prev img{
    width:100%;
}
.container-slider .arrow-prev,.big-image .arrow-prev{
    left:-60px;
}
.container-slider .arrow-next,.big-image .arrow-next{
    right:-60px;
}
.slider-mini{
    padding:0;
}
.product-slide{
    position:relative;
    width: 100%;
    height: 141px;
    border: 2px solid #006241;
    background:#fff;
    padding-right:100px;
}
.product-slide .image-mini{
    position: absolute;
    right: 7px;
    top: -19%;
    width: 79px;
}
.product-slide .image-mini img{
    max-width:100%;
}
.text-mini{
    width:100%;
    height:100%;
    display:table;
    padding:10px 25px;
}


/* home styles*/
.banner-home{
    width:100%;
    height: 950px;
    margin-top: -175px;
    background-image:url(../img/back-hero-home.jpg);
    background-size:cover;
    background-position:center;
    display:table;
}
.hero{
    height:100%;
    display:table;
}
.product-hero{
    position: relative;
    width:100%;
    display: table-cell;
    vertical-align: middle;
    text-align:center;
}
.product-hero h1{
    font-family: 'Titillium-RegularItalic';
    font-size:67px;
    color:#02adec;
    margin-bottom:77px;
}
.product-hero h1 span{
    font-family: 'Titillium-BoldItalic';
    color:#2956a1;
}
.product-hero img{
    width: 80%;
    margin: auto;
    display: block;
}

.section-soluciones-home{
    background-image:url(../img/back-2.jpg);
    background-size:cover;
    background-position: center;
    border-top: 50px solid #0156a5;
    border-bottom: 50px solid #1755a1;
    background-repeat: no-repeat;
}
.soluciones{
    margin-top: 25px;
    margin-bottom: 60px;
    width:600px;
    text-align:center;
}
.title-taxo-first{
    text-align:center;  
}
.soluciones h2,.content-novedades h1,.content-trucos h1,.title-taxo-first h1{
    position:relative;
    font-family: 'Titillium-BoldItalic';
    color:#2956a1;
    font-size:50px; 
}
.title-taxo-first h1{
    color:#00acec;
}
.image-banner-tax{
    width: 750px;
    position: absolute;
    left: 0;
    right: 0;
    padding:0 15px;
    margin: auto;
    bottom: -29px;
    z-index: 9;
}
.image-banner-tax img{
    width:100%;
}
.soluciones img{
    max-width: 100%;
    width: 100% !important;
    margin: auto;
}
.text-slider-middle{
    width: 80%;
    margin: auto;
}
.soluciones h2{
    margin-bottom:50px;
}
.soluciones-slider {
    width: 100%;
    position: relative;
}
.soluciones h3{
    position:relative;
    font-family: 'Titillium-Bold';
    color:#2956a1;
    font-size:25px;
}
.soluciones p{
    font-family: 'Titillium-Semibold';
    font-size:20px;
    color:#6e6e6e;
}
.title-deco:after{
    content: '';
    position: absolute;
    width: 52px;
    height: 9px;
    left: 0;
    right: 0;
    bottom: -21px;
    margin: auto;
    background-image: url(../img/title-deco.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.btn-link{
    font-family: 'Titillium-Light';
    font-size: 20px;
    color: #2956a1 !important;
    text-decoration: none !important;
    border: 1px solid #2956a1 !important;
    padding: 5px 45px;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
}
.last-sections{
    background: #f6f9fe;
}
.content-video{
    margin-top:100px;
    margin-bottom: 120px;
}
.content-video h2{
    position:relative;
    font-family: 'Titillium-BoldItalic';
    color:#fefeff;
    font-size:50px; 
}
.decoration-title{
    background: #2956a1;
    padding: 10px 41px;
    display: inline-block;
    margin-left: -24px;
}
.decoration-title:before{
    content:'';
    position:absolute;
    width: 0;
    height: 0;
    left: 0;
    top: -9px;
    border-bottom: 9px solid #2956a1;
    border-left: 9px solid transparent;
}
.video-wrapper{
    height:383px;
    background:#ffffff;
}
.video-wrapper p{
    position:relative;
    font-family: 'Titillium-Semibold';
    font-size:20px;
    color: #6e6e6e;
    margin: 50px 66px 30px 19px;
}
.video-wrapper p:before{
    content: '';
    position: absolute;
    width: 52px;
    height: 9px;
    left: 0;
    top: -21px;
    margin: auto;
    background-image: url(../img/title-deco.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.video-wrapper .col-vid{
    height:100%;
}
.video-image{
    position:absolute;
    width:100%;
    height:100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor:pointer;
}
.video-image button{
    background: transparent;
    width: 79px;
    height: 79px;
    border: 0px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    outline:none; 
}
.video-image button img{
    width:100%;
}
.social-section{
    margin-bottom:50px;
}
.social-section h2{
    position:relative;
    font-family: 'Titillium-BoldItalic';
    color:#fefeff;
    font-size:40px; 
}
.col-social{
    background:#fff;
    border-radius:10px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0px 0px 42px 7px rgba(0,0,0,0.2);
    height: 470px;
}
.column-s:nth-of-type(1),.column-s:nth-of-type(3){
    padding:0;
}
.col-social .decoration-title{
    margin-left: -29px;
}
.red .decoration-title{
    background:#e62117;
}
.red .decoration-title:before{
    border-bottom: 9px solid #e62117;
    border-left: 9px solid transparent;
}
.blue-light .decoration-title{
    background:#d3105f;
}
.blue-light .decoration-title:before{
    border-bottom: 9px solid #d3105f;
    border-left: 9px solid transparent;
}
.col-social img{
    max-width:100%;
    margin-top:10px;
    margin-bottom:10px;
}
.info-social p{
    font-family: 'Titillium-Semibold';
    font-size:16px;
    color:#6e6e6e;
}
.section-trucos h2{
    position:relative;
    font-family: 'Titillium-BoldItalic';
    color:#fefeff;
    font-size:50px; 
    text-align:center;
    color:#00acec;
}
.section-trucos h2 span{
    color:#2956a1;
}
.section-trucos .items-tips{
    text-align: center;
    font-size: 0;
}
.section-trucos .col-trucos{
    float: none;
    display: inline-block;
    text-align: left;
    font-size: 13px;
}
.last{
    padding-top:10px;
    background-image: url(../img/floor.png);
    background-size: cover;
    background-position: center 0px;
    background-repeat: no-repeat;
    padding-bottom:150px;
    background-color: #f6f9fe;
}
.items-tips{
    margin-top:50px;
}
.items-tips img{
    width:95%;
    margin:auto;
    display:block;
    box-shadow: 0px 0px 42px 7px rgba(0,0,0,0.2);
}
.section-trucos h3{
    font-family: 'Titillium-Bold';
    font-size:30px;
    color:#00acec;
    text-align:center;
}
/*-----------------------*/

/* productos estilos */
.wrapper-product,.wrapper-novedades,.wrapper-novedad-interna,.wrapper-trucos{
    padding-top: 250px;
    padding-bottom: 100px;
    background: #eaedf2;
    margin-top: -175px;
    background-image: url(../img/floor.png);
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}
.tax-int-p{
    padding-top: 200px;
}
.wrapper-trucos{
    padding-top:170px;
    background-image: url(../img/floor.png);
}
.wrapper-relacionadas{
    padding-bottom: 100px;
    background-color: #eaedf2;
    margin-top: -170px;
    background-image: url(../img/floor.png);
    background-size: cover;
    background-position: center 0px;
    background-repeat: no-repeat;
}
.wrapper-single-pro{
    background-color:#f6f9fe;
}
.links-column h3{
    font-family: 'Titillium-Bold';
    font-size:25px;
    color:#2956a1;
    margin-bottom: 4px;
}
.links-column ul{
    list-style:none;
    padding: 0px 20px;
}
.links-column ul li{
    position:relative;
    margin-bottom: 6px;
}
.links-column .current-li:before{
    content:'';
    position:absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width:7px;
    height:12px;
    background-image: url(../img/current-li.png);
    background-size:cover;
}
.links-column ul li a{
    font-family: 'Titillium-Bold';
    font-size: 20px;
    text-decoration: none;
    color: #6e6e6e;
    position: relative;
}
.links-column ul li a{
    padding: 5px 10px;
}
.slider-links li{
    display: inline-block;
    margin: 5px 16px;
}
.slider-links .current-li:before{
    background-image:none;
}
.slider-links .current-li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: -44px;
    margin: auto;
    width: 101%;
    height: 3px;
    /* background-image: url(../img/current-li.png); */
    background-size: cover;
    background: #2956a1;
}
.slider-links ul li a{
    font-size:25px;
}
.item-product{
    width:100%;
    background:#fff;
    border-radius:5px; 
    height:400px;
    text-align:center;
    margin-bottom: 35px;
}
.item-tax-pro{
    background:transparent;
}
.item-product .img-product{
    position:relative;
    width:80%;
    height:60%;
    margin-top:10px;
    display:table;
    margin:auto;
}
.item-product .img-product:after{
    content:'';
    width:40%;
    height:1px;
    background:#6e6e6e;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
}
.item-product .img-product img{
    max-width: 100%;
}
.item-product .title-product{
    height: 25%;
    width: 100%;
    display: table;
}
.type-left h2,.type-right h2{
    font-family: 'Titillium-BoldItalic';
    font-size:40px;
    color:#00acec;
    text-align:left;
}
.type-right h2{
    text-align:right;
}
.type-left p,.type-right p{
    text-align: left;
    font-family: 'Titillium-Semibold';
    font-size: 20px;
    color: #6e6e6e;
    line-height: 30px;
    padding-bottom: 25px;
    padding-top: 3px;
}
.type-right .title-product,.type-right p{
    text-align:right;
}
.partner-table .title-product{
    background: #fff;
    padding-top: 20px;
    padding-bottom: 46px;
    padding-left: 50px;
    padding-right: 50px;
}
.partner-table{
    margin-bottom:70px;
}
.partner-table img{
    width:85%;
    border-radius: 10px;
}

.type-left .title-product{
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
.type-right .title-product{
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
.type-left .image-type{
    text-align: right;
}
.type-right .image-type{
    text-align: left;
}
.item-product .title-product h2{
    font-family: 'Titillium-Bold';
    font-size: 20px;
    color: #2956a1;
    line-height: 30px;
}
.item-tax-pro .title-product h2{
    color:#00acec;
}
.btn-link-span{
    font-size: 14px;
    padding: 5px 24px;
    margin-top: 0px;
}
/*------------------------*/

/* novedades estilos */
.wrapper-novedades{
    padding-top:200px;
}
.item-novedad,.item-truco{
    width:100%;
    border-radius:5px; 
    height:400px;
    text-align:left;
    margin-bottom: 35px;
}
.item-truco{
    height:auto;
}
.item-novedad img,.item-truco img{
    max-width: 100%;
    width: 100%;
    border-radius: 5px;
}
.item-novedad .info-novedad,.item-truco .info-truco{
    height: 120px;
    width: 100%;
    display: table;
}
.item-truco .info-truco{
    height: 100%;
}
.item-novedad .info-novedad h2,.item-truco .info-truco h2{
    font-family: 'Titillium-Bold';
    font-size: 25px;
    color: #2956a1;
    line-height: 30px;
}
.item-truco .info-truco h2{
    margin-top: 0px;
}
.slider-links{
    position:relative;
    width:100%;
    margin:auto;
    text-align:center;
    margin-bottom: 80px;
    margin-top: 20px;
}
.category-next{
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    margin:auto;
    height: 18px;
    z-index: 8;
    cursor: pointer;
}
.category-slider{
    display:none;
}
.category-back{
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    margin:auto;
    height: 18px;
    z-index: 8;
    cursor: pointer;
}
.item-tip{
    width:100%;
    height: 230px;
}
.item-tip .column-tip,.item-tip .row{
    height:100%;
}
.item-tip .column-tip{
    display:table;
}
.item-novedad .info-novedad p,.item-truco .info-truco p,.item-truco .info-truco ul li{
    font-family: 'Titillium-Semibold';
    color:#6e6e6e;
    font-size:16px;
}
.content-novedades .title-deco,.content-trucos .title-deco,.relacionadas .title-deco{
    text-align: center;
    margin-bottom:70px;
}
/*------------------------*/
/*interna diseño*/
.banner-interna{
    position:relative;
    width:100%;
    height:700px;
    margin-top:-174px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 0px;
}
.banner-interna:after{
    content: '';
    position: absolute;
    bottom: -70px;
    width: 100%;
    height: 230px;
    background-image: url(../img/floor-banner.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center 0px;
}
.relacionadas h2{
    position: relative;
    font-family: 'Titillium-BoldItalic';
    color: #2956a1;
    font-size: 50px; 
}
.relacionadas h2 span{
    color:#00acec;
}
.content-interna{
    text-align:left;
    margin-bottom:100px;
}
.content-interna h1{
    position:relative; 
    display:block;
    font-family: 'Titillium-BoldItalic';
    font-size:49px;
    color:#2956a1;
    margin-bottom:77px;
}
.wrapper-novedad-interna{
    padding-top: 140px;
    margin-bottom:60px;
    background: #f6f9fe;
    background-image:none;
}
.content-interna h1 span{
    color:#02adec;
    display:block;
}
.content-interna p strong{
    font-family: 'Titillium-BoldItalic';
    font-size:19px;
    color:#2956a1;
}
.content-interna iframe{
    margin: auto;
    display: block;
    width: 50%;
    margin-top: 50px;
}
.content-interna h2,.content-interna h3,.content-interna h4,.content-interna h5{
    font-family: 'Titillium-Bold';
    font-size: 40px;
    color: #2956a1;
    line-height: 30px;
}
.content-interna h3{
    font-size: 35px;
}
.content-interna h4{
    font-size: 30px;
}
.content-interna h5{
    font-size: 25px;
}
.content-interna img{
    width: 90%;
    height: inherit;
    margin: auto;
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
}
.content-interna ul,.content-interna ol{
    list-style:none;
    margin: 30px;
    padding:0;
}
.content-interna ul li,.content-interna ol li{
    margin-bottom:10px;
    position:relative;
}
.content-interna ul li:before{
    content:'';
    width:5px;
    height:5px;
    left:-10px;
    background:#2956a1;
    position:absolute;
    top:0;
    bottom:0;
    margin:auto;
    border-radius:100px;
}
.title-truco span{
    color:#00acec;
}
.content-interna ul li,.content-interna ol li,.content-interna ol li a,.content-interna ul li a{
    font-family: 'Titillium-Regular';
    font-size: 19px;
    color: #6e6e6e;
}
.content-interna p {
    font-family: 'Titillium-Regular';
    font-size:19px;
    color:#6e6e6e;
}
.content-interna h1:after{
    content: '';
    position: absolute;
    width: 52px;
    height: 9px;
    left: 0;
    bottom: -21px;
    margin: auto;
    background-image: url(../img/title-deco.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.relacionadas-trucos img{
    width:100%;
}
.relacionadas-trucos .item-truco .info-truco {
    height: 140px;
}
.interna-trucos p{
    margin-bottom:40px;
}
.btn-link-video{
    position: relative;
    font-size: 20px;
    padding: 6px 60px;
    margin-top: 0px;
    padding-right: 40px;
    cursor:pointer;
}
.btn-link-video:before{
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 18px;
    background-image: url(../img/play-video-mini.png);
    background-size: cover;
}
/*-----------------------*/
/* interna producto */
.wrapper-producto-interna{
    padding-top: 0px;
    margin-bottom: 120px;
    background: #f6f9fe;
    margin-top: 0px;
    background-image:none;
}

.partner-table {
    display: table;
    width:100%;
    height: 100%;
}
.partner {
    display: table-cell;
    vertical-align: middle;
    /* en mobile cambiar esto a float:left;*/
    float: none;
    padding:0;
}
.wrapper-producto-interna .content-interna{
    margin-bottom: 15px;
}
.banner-product-int{
    height: 657px;
    background-position: center -73px;
}
.title-int{
    width:100%;
    height:100%;
    display:table;
}
.title-int .container{
    height:300px;
}
.title-int .container .row{
    height:100%;
}
.title-product-int{
    text-align:right;
    height:100%;
    display:table;
    padding-right:100px;
}
.title-int h1{
    position:relative; 
    display:block;
    font-family: 'Titillium-BoldItalic';
    font-size:49px;
    color:#2956a1;
    margin-bottom:77px;
}
.title-int h1:after{
    content: '';
    position: absolute;
    width: 52px;
    height: 9px;
    right: 0;
    bottom: -21px;
    margin: auto;
    background-image: url(../img/title-deco.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.title-int h1 span{
    color:#02adec;
    display:block;
}
.img-product-int{
    height:100%;
}
.container-slider-interna{
    position:relative;
}
.slider-interna{
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
}
.interna-big-image .image-slide{
    width: 97%;
}
.slider-interna .owl-nav{
    display:none;
}
.slider-interna .thumbs{
    width: 88%;
    margin-top: 20px;
    position: relative;
    /* margin: auto; */
    margin-left: 20px;
    margin-bottom: 50px;
}
.thumbs .owl-nav{
    display:none;
}
.slider-interna .thumbs .items{
    cursor:pointer;
}
.slider-interna .thumbs img{
    margin-bottom:0px;
}
.slider-interna .thumbs .back-sol,.slider-interna .thumbs .next-sol{
    font-size:18px;
}
.slider-interna .thumbs .back-sol{
    background: #fff;
    left: -20px;
    width: 20px;
    height: 100%;
}
.thumbs img{
    margin-top:25px;
}
.slide-mobile{
    display:none;
}
.slide-desk{
    display:block;
}
.slider-interna .thumbs .next-sol{
    background: #fff;
    right: -20px;
    width: 20px;
    height: 100%;
}
.soluciones-slider .next-sol, .soluciones-slider .back-sol{
    top:50%;
}
.table-slide{
    display:table;
    width:100%;
    height:100%;
    text-align:center;
}
.content-product-int{
    margin-bottom: 20px;
}
.content-product-int h2,.content-product-int h3,.content-product-int h4{
    color:#2956a1;
    font-size:19px;
    font-family: 'Titillium-BoldItalic';
    margin-top:0px;
}
.content-product-int p,.content-product-int ul li{
    font-family: 'Titillium-Regular';
    font-size:19px;
    color:#6e6e6e;
    margin-bottom: 25px;
}
.content-product-int ul li{
    margin-bottom: 10px;
}
.content-product-int ul li:before{
    display:none;
}
.content-product-int ul{
    list-style:none;
    padding: 0px;
    margin:0;
}
.youtube_channel h3.ytc_title{
    position: relative;
    font-family: 'Titillium-Bold';
    color: #2956a1;
    font-size: 25px;
}
.youtube_channel p.ytc_description{
    position: relative;
    font-family: 'Titillium-Semibold';
    font-size: 14px;
    color: #6e6e6e;
}
.content-product-int ul li span,.content-product-int ul li strong{
    font-family: 'Titillium-SemiboldItalic';
    color:#00acec;
    font-size:19px;
}
.interna-big-image .image-slide img{
    max-width:100%;
    width:inherit;
    display:inline-block;
    margin-bottom:0px;
    margin-top: 10px;
}
.container-breadcrumb{
    width:1000px;
    margin:auto;
    padding: 3px 17px;
    font-family: 'Ubuntu';
    font-size:16px;
    color:#555555;
}
.breadcrumb-receta{
    width:100%;
    padding:0px;
}
.container-breadcrumb a,.container-breadcrumb span{
    font-family: 'Titillium-RegularItalic';
    font-size:14px;
    color:#6e6e6e;
    text-decoration:none;
}
.slider-interna .thumbs img{
    margin-top:0px;
}
.color-span{
    margin-top:25px;
}
.color-span span{
    font-family: 'Titillium-Light';
    font-size: 12px;
    border: 1px solid;
    padding: 5px 10px;
    border-radius: 5px;
    display:inline-block;
    margin: 5px 10px 10px 0px;
}
/*--------------------------------------*/

.form-container{
    max-width:1000px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.form-container p{
    font-size: 20px;
    color: #555555;
    font-family: 'Titillium-Bold';
    margin-bottom: 20px;    
}
.inputs label{
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5;
    font-size: 15px;
    color: #555555;
    font-family: 'Titillium-Semibold';
    text-align: left;
}
.inputs input{
    border-radius: 0px;
    height: 40px;
    outline:none;
}
.inputs textarea{
    width:100%;
    height:200px;
    resize:none;
    outline:none;
    border-radius: 0px;
}
.puts button{
    border:0px;
    width: 205px;
    height: 61px;
    font-family: 'Titillium-Bold';
    font-size: 28px;
    display: inline-block;
    text-align: center;
    text-decoration: none !important;
    outline: none;
}
.info-contact{
    width: 100%;
    padding-top: 15px;
    background: ;
    padding-bottom: 25px;
    background: #2956a1;
    text-align: center;
}
.info-contact h3{
    font-size:22px;
    font-family: 'Titillium-Bold';
    color:#fff;
}
.numbers{
    width: 230px;
    height: 111px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    background-image: url(../img/back-contacto.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-left: 50px;
    padding-top: 20px;
}
.modal-footer{
    padding:0px 15px;
}
.info-contact a{
    font-family: 'Titillium-Regular';
    font-size:17px;
    color:#fff;
}
.numbers h4{
    margin-top:0px;
}
.numbers h4,.numbers a{
    font-family: 'Titillium-Regular';
    font-size:12px;
    color:#fff;
    display:block;
}
.info-contact .mail{
    display:block;
    margin-bottom:15px;
}
.logo-contacto{
    margin-top: 20px;
}
/*----- fin contacto-------*/

/*footer style*/
footer{
    width: 100%;
    padding-top: 74px;
    margin-top: -100px;
    /* padding-bottom: 50px; */
    background-image: url(../img/footer-back.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 0px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
}
.foo-all{
    margin-bottom:0px;
}
.list-foo{
    padding-left:20px;
}
.icon-social a{
    margin-right:10px;
}
.middle-foo{
    padding-left: 20px;
    padding-right: 42px;
}
.middle-foo:after{
    content:'';
    background-image:url(../img/line-foo.png);
    background-size:100%;
    height:90%;
    width:2px;
    position:absolute;
    right:0;
    top:0;
    bottom:0px;
    margin:auto;

}
footer p{
    font-family: 'Titillium-Semibold';
    margin-top:20px;
    font-size:20px;
}
footer .col-footer{
    text-align:left;
}
footer .col-footer ul li{
    margin-bottom:15px;
}
footer .col-footer ul li a{
    font-family: 'Titillium-Bold';
    font-size: 18px;
    text-decoration:none !important;
    color:#fff !important;
}
footer .copyright{
    width: 100%;
    padding: 25px;
    color: #fff;
    text-align: center;
    background: #000;
    position: relative;
    z-index: 4;
}
.info-foo{
    padding-bottom: 25px;
    padding-top: 0px;
}
.person-img img{
    position:absolute;
}
footer .copyright small{
    font-family: 'Ubuntu-Light';
    font-size:15px;
}
/*------------------------*/
/* placeholder custom */
.placeholdercustom::-webkit-input-placeholder{   
    font-size:17px;
    font-family: 'Open Sans', sans-serif;
    color:#000;
}

.placeholdercustom::-moz-placeholder{
    font-size:17px;
    font-family: 'Open Sans', sans-serif;
    color:#000; 
}

.placeholdercustom::-o-input-placeholder{
    font-size:17px; 
    font-family: 'Open Sans', sans-serif;
    color:#000; 
}
.placeholdercustom:-ms-input-placeholder{ 
    font-size:17px; 
    font-family: 'Open Sans', sans-serif;
    color:#000; 
}
.messages_errors_news{
    color:#fff;
    font-size:14px; 
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
    display:block;
    margin-top:0px;
    padding-left:3px;
    padding-right:3px;
    background:#db1d45;
    width: 107.6%;
}
.messages_errors{
    color:#fff;
    font-size:14px; 
    font-family: 'Open Sans', sans-serif;
    font-weight:700;
    display:block;
    margin-top:0px;
    padding-left:3px;
    padding-right:3px;
    background:#db1d45;
    width: 100%;
}
.error_form{
    display: none;
    margin-bottom: 10px;
    padding: 9px;
    text-align: center;
}
.success_msn{
    display: none;
    margin-bottom: 10px;
    padding: 9px;
    background:#00623D;
    text-align: center;
}
.btn-link2,.youtube_channel .ytc_link a{
    font-family: 'Titillium-Light';
    font-size: 20px;
    text-decoration: none !important;
    padding: 5px 45px;
    color:#fff;
    background:#2956a1;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
    height:40px;
}
.youtube_channel .ytc_link a{
    width:100%;
    text-align:center;
}
.btn-link2 a{
    color:#fff;
}
.button-style,.button-style2,.youtube_channel .ytc_link a{
    -webkit-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); 
    -moz-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); 
    -o-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); 
    transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.button-style:hover{
    color:#fff !important;
    background:#2956a1;
}
.button-style2:hover,.youtube_channel .ytc_link a:hover{
    color: #2956a1 !important;
    background:transparent;
    border: 1px solid #2956a1 !important;
}
.button-style2 a:hover{
    color: #2956a1 !important;
}

.partner-table .btn-link2{
    padding:5px 30px; 
}
@media(min-width:2000px){
    header {
        width: 100%;
        height: 204px;
    }
    .banner-home {
        width: 100%;
        height: 1300px;
        margin-top: -179px;
        background-image: url(../img/back-hero-home.jpg);
        background-size: cover;
        background-position: center -360%;
    }
}
@media(min-width:2200px){
    header {
        height: 274px;
    }
}
@media(max-width:1700px){
    .banner-interna:after {
        bottom: -93px;
    }
    .social-list {
        padding-bottom: 35px;
    }
    .title-int .container {
        margin-top: 27px;
    }
    .back-home{
        left:2%;
    }
    .next-home{
        right:2%;
    }
}
@media(max-width:1500px){
    .logo-link {
        display: inline-block;
        margin-top: -7px;
        position: absolute;
        bottom: -48%;
    }
    .logo-link img{
        width:100%;
    }
    .dropdown:nth-last-of-type(1) {
        padding-right: 0px;
    }
    .logo-link{
        bottom: -31%;
    }
    header{
        background-size: 100%;
    }
    .social-list {
        padding-bottom: 10px;
    }
    .banner-home {
        height: 749px;
    }
    .product-hero h1 {
        font-size: 50px;
    }
    .product-hero img {
        width: 57%;
    }
    .banner-interna {
        height: 565px;
    }
    .banner-interna:after {
        bottom: -22%;
    }
    .banner-product-int:after {
        bottom: -17%;
    }
    .banner-product-int {
        height: 640px;
    }
}
.no-desk{
    display:none;
}

@media(max-width: 1280px){
    footer .col-footer ul li a {
        font-size: 15px;
    }
    .links-column h3 {
        font-size: 20px;
    }
    .links-column ul li a{
        font-size:18px;
    }
    .logo-foo{
        width: 250px;
        display: inline-block;
    }
    .logo-foo img{
        width:100%;
    }
    .item-product .title-product h2 {
        font-size: 22px;
    }
    footer p {
        font-size: 19px;
    }
}
@media (max-width: 1100px) {
    .category-slider{
        display:block;
    }
    .category-desk{
        display:none;
    }
    #powerTip{
        width:inherit;
    }
    .slider-home {
        margin-top: -35px;
    }
    .no-desk{
        display:block;
    }
    .slider-links .current-li a:before{
        bottom: -34px;
        height: 2px;
    }
    .no-mobile{
        display:none;
    }
    .navbar-header {
        float: none;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
        display:block !important;
    }
    .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse{
        height: auto;
        padding: 0;
        max-height: inherit;
    }
    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #333;
    }
    .navbar-toggle{
        background:transparent !important;
    }
    .navbar-toggle,.wrapper-nav .navbar-header{
        margin:0;
    }
    .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form{
        border:0;
    }
    .navbar-toggle {
        display: block;
        margin-top: 25px !important;
        margin-right: 20px;
    }
    .navigation-header{
        width:100%;
    }
    
    /* estilos mobile */
    .container-slider,.container-slider .items {
        height: 500px;
    }
    .logo-link{
        position:relative;
        margin-top: 0px;
        margin-left: 22px;
        width: 140px;
    }
    header{
        height:auto;
        background:#fff;
        background-image:none;
    }
    .banner-home{
        margin-top:0px;
        height: 516px;
    }
    .product-hero h1{
        margin-top:0px;
        margin-bottom:30px;
    }
    .person-img img {
        position: absolute;
        width: 237px;
    }
    .banner-interna:after {
        bottom: -31%;
    }
    .banner-product-int:after {
        bottom: -22%;
    }
    .banner-interna{
        margin-top:0px;
        height: 478px;
    }
    .banner-interna .middle {
        display: block;
        margin-top: 37px;
    }
}
@media (max-width: 767px) {
    .navbar-nav  {
        display: inline;
    }
    .image-banner-tax{
        width:100%;
    }
    .navbar-default .navbar-brand {
        display: inline;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
    }
    .navbar-default .navbar-nav .dropdown-menu > li > a {
        color: red;
        background-color: #ccc;
        border-radius: 4px;
        margin-top: 2px;   
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #333;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        background-color: #ccc;
    }

    .navbar-nav .open .dropdown-menu {
        border-bottom: 1px solid white; 
        border-radius: 0;
    }
    .dropdown-menu {
        padding-left: 10px;
    }
    .dropdown-menu .dropdown-menu {
        padding-left: 20px;
    }
    .dropdown-menu .dropdown-menu .dropdown-menu {
        padding-left: 30px;
    }
    li.dropdown.open {
        border: 0px solid red;
    }
    

}
 
@media (min-width: 768px) {
    ul.nav li:hover > ul.dropdown-menu {
        display: block;
    }
    #navbar {
        text-align: center;
    }
} 
@media(max-width:960px){
    header{
        padding-bottom: 10px;
    }
    #powerTip h2:before,#powerTip h2:after{
        display:none;
    }
    .person-img{
        display:none;
    }
    .video-image{
        position:relative;
    }
    .menu-list li {
        display: block;
        margin-bottom: 14px;
    }
    .menu-list li:nth-of-type(1) a {
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0px;
        border-left: 1px solid #dddddd;
    }
    .menu-list li:nth-last-of-type(1) a {
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
        border-left: 1px solid #dddddd;
    }
    .back-home, .next-home{
        bottom:-30%;
    }
    .image-slide img{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .img-product-int img {
        max-width: 84%;
        width: 48%;
        margin-top: 20px;
    }
    .banner-interna:after {
        bottom:-8%;
        height: 92px;
    }
    .content-interna iframe{
        width:79%;
    }
    .partner-table img{
        width:100%;
    }
    .form-container {
        max-width: 100%;
    }
    .slide-mobile{
        display:block;
    }
    .slide-desk{
        display:none;
    }
}
@media(max-width:680px){
    .partner{
        float:left;
    }
    .type-left .title-product {
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    .type-right .title-product {
        border-bottom-left-radius: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .partner-table{
        display: inline-block;   
    }
    .partner-table .title-product{
        padding-left: 25px;
        padding-right: 25px;
    }
    .type-left h2, .type-right h2{
        font-size:25px;
    }
    .type-left p, .type-right p{
        font-size:18px;
    }
    .item-truco .info-truco h2 {
        margin-top: 15px;
    }
    .slider-links{
        width:100%;
    }
    .slider-links{
        margin-bottom:0px;
    }
    .slider-links .current-li a:before{
        bottom: -34px;
        height: 2px;
    }
    .soluciones,.text-house{
        width:100%;
    }
    .soluciones img{
        max-width: 74%;
        margin: 47px 0px 9px 0px;
        width: 80% !important;
        margin:auto;
    }
    .banner-home {
        height: 379px;
    }
    .product-hero {
        position: relative;
        width: 100%;
        display: block;
        vertical-align: middle;
        text-align: center;
        margin-top: 50px;
    }
    .product-hero h1 {
        font-size: 34px;
    }
    .product-hero img {
        width: 90%;
    }
    .soluciones h2, .content-novedades h1, .content-trucos h1 {
        font-size: 31px;
    }
    .soluciones p {
        font-family: 'Titillium-Semibold';
        font-size: 18px;
    }
    .video-wrapper .col-vid:nth-of-type(2){
        padding:0;
    }
    .video-wrapper{
        height:auto;
    }
    .column-s{
        margin-bottom:20px;
    }
    .col-trucos{
        margin-bottom:50px;
    }
    .list-foo {
        padding-left: 0px;
    }
    .banner-interna:after {
        height:47px;
        bottom: -4%;
    }
    .video-wrapper .col-vid:nth-of-type(2) .video-image{
        height: 281px;
    }
    .content-interna iframe {
        width: 100%;
    }
    .content-interna img {
        width: 100%;
    }
    .banner-interna {
        height: 265px;
    }
    .links-column ul {
        padding: 0px 0px;
    }
    .banner-interna:after {
        bottom: -5%;
    }
    .item-truco {
        height: auto;
    }
    .content-interna p {
        font-size: 18px;
    }
    .img-product-int{
        display:none;
    }
    .title-product-int{
        padding-right:15px;
    }
    .banner-product-int {
        height: 315px;

    }
    .banner-product-int:after {
        bottom: 16%;
    }
    .banner-product-int .middle {
        display: block;
        margin-top: 18px;
    }
    .interna-big-image .image-slide {
        width: 100%;
    }
    .banner-product-int{
        background-position: center 0px;
    }
    .wrapper-trucos{
        padding-top: 180px;
    }
    .form-container {
        padding-left: 0px;
        padding-right: 0px;
    }
    .info-contact {
        margin-top: 40px;
    }
}
@media(max-width:480px){
    .banner-product-int:after {
        bottom: -3%;
    }
    .soluciones-slider .next-sol, .soluciones-slider .back-sol{
        top:30%;
    }
    .soluciones-slider .next-sol{
        right:-20px;
    }
    .soluciones-slider .back-sol{
        left:-20px;
    }
    .title-taxo-first h1{
        font-size:30px;
    }
}
@media(max-width:380px){
    .back-home, .next-home{
        bottom: -45%;
    }
    .links-column ul {
        list-style: none;
    }
    .content-video h2 {
        font-size: 30px;
    }
    .video-wrapper p {
        font-size: 17px;
        margin: 50px 19px 30px 19px;
    }
    .section-trucos h2 {
        font-size: 38px;
    }
    .items-tips img {
        width: 100%;
    }
    .logo-link {
        margin-left: 13px;
        width: 124px;
    }
    .content-interna h1,.title-int h1 {
        font-size: 35px;
    }
    .banner-interna {
        height: 184px;
    }
    
    .banner-interna:after {
        bottom: -12%;
    }

}
/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 * http://juicystudio.com/article/screen-readers-display-none.php
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
