@font-face {
  font-family:"Montserrat-Regular";
  src:url("../fonts/Montserrat-Regular.eot?") format("eot"),
  url("../fonts/Montserrat-Regular.woff") format("woff"),
  url("../fonts/Montserrat-Regular.ttf") format("truetype"),
  url("../fonts/Montserrat-Regular.svg#Montserrat-Regular") format("svg");
  font-weight:normal;
  font-style:normal;
}

@font-face {
    font-family: "brandon_grotesquebold";
    src: url('../fonts/brandongrotesque-bold.eot');
    src: url('../fonts/brandongrotesque-bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/brandongrotesque-bold.woff') format('woff'),
         url('../fonts/brandongrotesque-bold.ttf') format('truetype'),
         url('../fonts/brandongrotesque-bold.svg#brandon_grotesquebold') format('svg');
    font-weight: normal;
    font-style: normal;

}

.escondido {
  display: none;
}

#container{
  width:100%;
  overflow:hidden;
  position:relative;
  color: #000;
  font-family:"Montserrat-Regular";
}

.pad{
  padding-left:0px;
  padding-right:0px;
}

#barra_menu{
  width: 100%;
  height: 55px;
  background-color: #646061;
}

.clear{
  clear:both;
}

.navbar-inverse{
  background-color:transparent;
}

#menu{
  min-height: 34px;
  width: 100%;
  float:left;
  position: relative;
  margin-bottom:0px;
  border: none;
  text-align: center;
  border-radius: 0;
  background-color: transparent;
}

.menu li{
  display: inline-block;
  margin: 16px 39px;
}

.menu a{
  color: #fff;
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "brandon_grotesquebold";
}

.menu a:hover{
  color: #01AEE8;
  text-decoration:none;
}

.menu .selec{
  color: #01AEE8;
  border-bottom: solid 3px #01AEE8;
}


 
 /*ESTILOS MENU CELULAR -------------------------------------------------------------------*/

.navbar-default .navbar-toggle .icon-bar{
  background-color: #fff;
}
  
nav .me{
  color:#fff;
  font-size: 16px;
}

.navbar-toggle .icon-bar{
    width: 46px;
    height: 2px;
    margin-top: 3px;
}


/*CIERRA MENU MOVIL-----------------------------------------------------------------------------------*/

#banner .carousel-indicators{
  text-align: right;
  left: 60%;
}

#banner .carousel-indicators li {
  background-color: #E6E1E1;
  border: 2px solid #EC350D;
  width: 16px;
  height: 16px;
}

#banner .carousel-indicators .active{
  background-color: #EC350D;
  border: 2px solid #fff;
}

.texto{
  position: absolute;
  bottom: 25%;
  color: #FFF;
  margin-left: 177px;
  padding: 45px 37px;
}

.texto h1{
  font-size: 64px;
  font-family: "brandon_grotesquebold";
}

.texto p{
  font-size: 18px;
  font-family:"Montserrat-Regular";
  line-height: 27px;
}

.texto a{
  background-color:#01AEE8;
  color: #fff;
  padding: 15px;
  float:left;
  margin-top: 15px;
}

#productos_home{
  padding: 70px 0px;
}

#productos_home h1{
  font-size: 62px;
  color: #635F60;
  font-family: "brandon_grotesquebold";
  text-align:center;
  padding-bottom:50px;
}

.productos_item{
  margin-top: 11%;
  padding-left: 10%;
}

.productos_item h2{
  font-family: "brandon_grotesquebold";
  color: #646061;
  font-size: 40px;
  padding-bottom: 15px;
}

.productos_item p{
  color: #909090;
  font-size: 20px;
  line-height: 25px;
  padding-bottom: 45px;
}

.productos_item a{
  border: 1px solid #01AEE8;
  color:#01AEE8;
  padding: 16px;
  text-transform: uppercase;
  float: left;
}

.productos_item a:hover{
  background-color:#01AEE8;
  color: #fff;
  text-decoration: none;
}

.productos_item2{
  margin-top: 8%;
  padding-right: 10%;
}

.productos_item2 h2{
  font-family: "brandon_grotesquebold";
  color: #646061;
  font-size: 40px;
  padding-bottom: 15px;
}

.productos_item2 p{
  color: #909090;
  font-size: 20px;
  line-height: 25px;
  padding-bottom: 45px;
}

.productos_item2 a{
  border: 1px solid #01AEE8;
  color:#01AEE8;
  padding: 16px;
  text-transform: uppercase;
  float: left;
}

.productos_item2 a:hover{
  background-color:#01AEE8;
  color: #fff;
  text-decoration: none;
}

#conoce{
  padding: 65px 0px;
}

.conoce{
  margin-top: 10%;
  background-color: #9b9b9b17;
  padding: 30px;
}

.conoce h1{
  font-size: 35px;
  text-transform: uppercase;
  padding-bottom: 5px;
  font-family: "brandon_grotesquebold";
  text-align: center;
  color: #626060;
  border-bottom: 1px solid #000;
}

.conoce p{
  font-family: "brandon_grotesquebold";
  font-size: 24px;
  color: #625E5FD6;
  padding-top: 30px;
  text-transform: uppercase;
  text-align: center;
  line-height: 33px;
}




@keyframes moveToRight {
 from {
      right: 0px;
   }
   to {
      right: 70%;
   }
}

.lineee{
  animation-name: moveToRight;
   animation-duration: 9s;
   animation-iteration-count: infinite;
   animation-direction: alternate;/*para que vuelva a su posicion inicial */
   width:70%;
   position: relative;
   float:left;
   border: 1px solid #bbb9b9;
}

/*
@keyframes moveToRight {
   100% {
                transform: translateX(500px);
            }
            0% {
                transform: translateX(0px);
            }
}

.line{
  width: 90%;
  border: 2px solid #f00;
            background: blue;
            animation: moveToRight 10s infinite;
            animation-delay: 2ms;
            float: left;

/*
   animation: moveToRight 10s infinite;
  animation-delay: 2s;
    position: relative;

animation: moveToRight 10s infinite;
  animation-delay: 2ms;
    position: relative;


  animation: mymove 5s infinite;
  animation-delay: 2s;

  width: 100px;
  position: relative;
  animation: mymove 5s infinite;
  animation-delay: 2s;

 }
  
*/



#conozca_home{
  padding: 93px 0px;
  background-size: cover;
}

.conozca_hometext {
  padding:0px 145px;
  margin-top: 5%;
}

.lines_conozca{
  background-image: url(../img/home/lines.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  width: 100%;
  height: 433px;
}

  

.conozca_hometext p{
  color: #909090;
  font-size: 20px;
  line-height: 25px;
}

.conozca_hometext h1{
  font-size: 40px;
  padding-bottom: 15px;
  font-family: "brandon_grotesquebold";
  color: #626060;
}

.conozca_hometext a{
  border: 1px solid #01AEE8;
  color:#01AEE8;
  padding: 16px;
  text-transform: uppercase;
  float: left;
  margin-top: 75px;
}

.conozca_hometext a:hover{
  background-color:#01AEE8;
  color: #fff;
  text-decoration: none;
}

#diseños_adaptados{
  padding: 157px 0px;
  background-image: url(../img/bg_home.jpg);
}

#diseños_adaptados h1{
  text-align: center;
  color: #fff;
  padding-bottom: 56px;
  font-size: 71px;
  font-family: "brandon_grotesquebold";
}

#diseños_adaptados p{
  color: #fff;
  font-size: 32px;
  text-align: center;
  line-height: 41px;
}

#home_accesorios{
  padding: 85px 0px;
}

#home_accesorios h1{
  font-family: "brandon_grotesquebold";
  font-size: 62px;
  color: #64605F;
  padding-bottom: 35px;
  text-align: center;
}

.text_accesorios{
  padding-top: 65px;
}

.text_accesorios h2{
  font-family: "brandon_grotesquebold";
  font-size: 40px;
  color: #64605F;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.text_accesorios p{
  line-height: 23px;
  color: #909090;
  font-size: 18px;
  text-align: justify;
}

.text_accesorios a{
  border: 1px solid #01AEE8;
  color: #01AEE8;
  padding: 16px;
  text-transform: uppercase;
  float: left;
  margin-top: 33px;
}

.text_accesorios a:hover{
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
  background-color: #eeba45;
}

.volver_acce{
  margin-top: 123px;
  float: left;
  position: relative;
  text-align: center;
}

.volver_acce a{
  color: #fff;
  padding: 17px 40px;
  background-color: #01AEE8;
  position: relative;
  text-transform: uppercase;
  font-size:16px;
  text-decoration: none;
}

.volver_acce a:hover{
  background-color:#eeba45;
}

.texto-link {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  padding: 11px 40px;
}

.texto-link h1{
  font-size:40px;
  color: #FFF;
  font-family: "brandon_grotesquebold";
  text-align: left;
  margin-top: 27%;
  text-shadow: 2px 3px 2px #0000008c;
}

.texto-link h2{
  font-size:20px;
  color: #d1d0d0;
  text-align: left;
  padding-top: 17px;
}

.link{
  width: 100%;
  float: left;
  position: relative;
}

.link:hover .texto-link{
  background:#EEBA457A;
}

.ampliar{
  border: 1px solid #fff;
  color: #fff;
  padding: 16px 51px;
  margin-top: 11%;
  float: left;
}

.link:hover .ampliar{
  background-color: #fff;
  color: #000;
}

footer{
  padding: 40px 0px;
  background-color: #646061;
}

footer p {
  color:#fff;
  font-size: 20px;
  line-height: 21px;
  padding-bottom:18px;
}

footer a{
  color: #fff;
}

footer a:hover{
  color: #fff;
  
}


footer span{
  float: left;
  width: 27px;
  height: 25px;
}

#web {
  background: url(../img/web.png) no-repeat right;
  color: #fff !important;
  padding-right: 146px;
  display: inline-block;
  text-decoration: none !important;
  float: left;
  font-family:"Roboto Bold";
  font-size: 13px;
}

#redes {
  text-align: center;
  position: relative;
  padding-bottom: 18px;
  border-bottom: 1px solid #fff;
}

#fb {
  display: inline-block;
  background: url(../img/redes.png) -2px -2px  no-repeat;
  width:45px;
  height: 45px;
  margin-right: 28px;
}

#twi{
  display: inline-block;
  background: url(../img/redes.png) -73px -2px no-repeat;
  width: 45px;
  height: 45px;
  margin-right: 28px;
}

#ins{
  display: inline-block;
  background: url(../img/redes.png) no-repeat right;
  width: 48px;
  height: 45px;
}


#web{
  background: #000;
  margin-top: 20px;
  padding: 2px 0px;
  text-align: right;
  text-transform: uppercase;
  border-top:1px solid #ffffff0f;
}

#copy{
  text-align: center;
  padding: 2px 0px;
}

#copy a {
  background: url(../img/web.svg) no-repeat right;
  color: #ffffff24;
  padding-right:131px;
  display: inline-block;
  font-size: 14px;
  text-decoration: none !important;
  margin-top: 28px;
}

#titulo {
  padding-top: 578px;
  padding-bottom: 102px;
  background-size: cover;
  text-align: left;
}

#titulo h1 {
  color: #FFF;
  text-align:left;
  font-family: "brandon_grotesquebold";
  font-size: 63px;
  text-transform: uppercase;
}

#titulo p {
  text-align: left;
  color: #fff;
  font-size: 18px;
  line-height: 25px;
}

.bg2 {
  background-image: url(../img/empresa/bg.jpg);
  background-size: cover;
}

.bg3 {
  background-image: url(../img/productos/bg.jpg);
  background-size: cover;
}

.bg3a{
  background-image: url(../img/banera-de-hielo/bg.jpg);
  background-size: cover;
}

.bg5{
  background-image: url(../img/servicios/bg.jpg);
  background-size: cover;
}

.bg4 {
  background-image: url(../img/bg_contacto.jpg);
  background-size: cover;
}

.bg6 {
  background-image: url(../img/beneficios/bg.jpg);
  background-size: cover;
}

.empresa {
  padding: 0px 145px;
  padding-bottom: 148px;
  margin-top: 5%;
}

.lines_empresa{
  background-image: url(../img/empresa/lines.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  width: 100%;
  height: 326px;
}

.empresa h1{
  font-family: "brandon_grotesquebold";
  font-size: 40px;
  color: #625E5F;
  padding-bottom: 20px;
}

.empresa p{
  color: #8c8d8d;
  font-size: 20px;
  line-height: 25px;
}

#experiencia h1{
  font-size: 20px;
  text-align: center;
  color: #8c8d8d;
}

#experiencia h2{
  font-size: 40px;
  font-family: "brandon_grotesquebold";
  color: #585657;
  text-align: center;
  padding-bottom: 45px;
}

#experiencia ul li{
  margin-top: 35px;
  padding-left: 108px;
  position: relative;
  clear: both;
  font-size:17px;
  line-height: 24px;
  margin-left: 45px;
  color: #8c8d8d;
  margin-bottom:84px;
}

#experiencia ul li span{
  font-family: "brandon_grotesquebold";
  font-size: 24px;
  color: #626060;
}

.ico{
  width: 93px;
  height: 93px;
  position: absolute;
  left: 0px;
  top: -10px;
}

.ico-1{
  background:url(../img/empresa/ico1.png) 0px 0px;
  background-repeat: no-repeat;
}

.ico-2{
  background:url(../img/empresa/ico2.png) 0px 0px;
  background-repeat: no-repeat;
}

.ico-3{
  background:url(../img/empresa/ico3.png) 0px 0px;
  background-repeat: no-repeat;
}

.ico-4{
  background:url(../img/empresa/ico4.png) 0px 0px;
  background-repeat: no-repeat;
}

.ico-5{
  background:url(../img/empresa/ico5.png) 0px 0px;
  background-repeat: no-repeat;
}

.ico-6{
  background:url(../img/empresa/ico6.png) 0px 0px;
  background-repeat: no-repeat;
}

#vision{
  padding: 125px 0px;
}

.vision{
  padding: 0px 115px;
}

.vision h1{
  font-size: 40px;
  font-family: "brandon_grotesquebold";
  color: #626060;
  padding-bottom: 15px;
}

.vision p{
  color: #8c8d8d;
  font-size:20px;
  line-height: 24px;
  padding-bottom: 65px;
}

.text-product2{
  background-color: #000000a8;
  position: absolute;
  padding: 57px;
  top: 0px;
  width: 100%;
}

.text-product2 h2{
  font-family: "brandon_grotesquebold";
  font-size: 40px;
  color: #fff;
  text-align: center;
}

.text-product3{
  width: 100%;
  background-color: #000000a8;
  position: absolute;
  padding: 40px 89px;
  bottom: 0px;
  text-align: center;
}

.text-product3 h3{
  font-size: 20px;
  color: #fff;
  margin-bottom: 51px;
  line-height: 28px;
}

.ampliar2{
  text-align: center;
  background-color: #01AEE8;
  color: #fff;
  padding: 15px 45px;
  text-transform: uppercase;
}

.ampliar2:hover{
  color: #fff;
  text-decoration: none;
  background-color: #eeba45;
}

#productos{
  padding: 85px 0px;
}

.productos_caja{
  margin-bottom: 28px;
}

#prod_item{
  padding: 107px 0px;
}

.prod_item{
  padding: 0px 140px;
  margin-top: 9%;
}

.lineas_prod{
  background-image: url(../img/productos/lines.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  width: 100%;
  position: absolute;
  bottom: -40px;
  height: 336px;
}

.prod_item h1{
  font-family: "brandon_grotesquebold";
  font-size: 40px;
  color: #5C5859;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.prod_item p {
  color: #8c8d8d;
  font-size: 19px;
  line-height: 25px;
}

.prod_item ul li{
  color: #8c8d8d;
  font-size: 18px;
  list-style: disc;
  margin-left: 45px;
  line-height: 25px;
}

#carouselitem .carousel-indicators{
  bottom: -42px;
  text-align: right !important;
}

#carouselitem .carousel-indicators li{
  background-color: #7D7972;
  border: 2px solid #FD3F0E;
  width: 16px;
  height: 16px;
}

#carouselitem .carousel-indicators .active{
  background-color:#FF3F0E;
  border: none;
}

.volver_prod{
  padding: 127px 0px;
  text-align: center;
  background-image: url(../img/productos/bg_volver.jpg);
  background-size: cover;
}

.volver_prod a {
  background-color: #01AEE8;
  color: #fff;
  padding: 15px 40px;
  top: 49%;
  position: relative;
  font-family: "brandon_grotesquebold";
  text-transform: uppercase;
  text-decoration: none;
}

.volver_prod a:hover{
  background-color: #FFC43A;
}

#formulario{
  padding: 98px 0px;
}

#formulario h1{
  font-family: "brandon_grotesquebold";
  font-size: 40px;
  text-transform: uppercase;
  color: #626060;
  padding-bottom: 15px;
}

#formulario p {
  text-align: left;
  color:#8c8d8d !important;
  padding-bottom: 17px;
  font-size: 20px;
  line-height: 25px;
}

#formulario h3{
  font-family: "brandon_grotesquebold";
  font-size: 19px;
  color: #6f6f6f;
  padding-top: 24px;
}

#formulario h4 {
  padding-top: 5px;
  text-align: left;
  float: left;
  color: #8c8d8d !important;
  font-size: 16px;
}

#formulario input {
  width: 100%;
  background-color:#06B3FF;
  color: #fff;
  border: 1px solid #000;
  font-size: 18px;
  padding: 8px;
  margin-top: 5px;
}

#formulario textarea {
  width: 100%;
  background-color:#06B3FF;
  color: #fff;
  border: 1px solid #000;
  padding: 8px;
  margin-top: 5px;
  height:198px;
}

#enviar {
  width: 100px !important;
  cursor: pointer;
  position: relative;
  float: right;
  color: #fff !important;
  text-align: center;
  font-size: 22px !important;
  font-family: "brandon_grotesquebold";
  margin-top: 20px !important;
  padding: 10px 0px !important;
  background:#646061 !important;
  margin-right: 15px;
  border: none !important;
}

#enviar:hover{
  background-color: #06B3FF !important;
}

#borrar {
  width: 100px !important;
  cursor: pointer;
  position: relative;
  float: right;
  color: #fff !important;
  text-align: center;
  font-size: 22px !important;
  margin-top: 20px !important;
  padding: 10px 0px !important;
  background:#646061 !important;
  font-family: "brandon_grotesquebold";
  border: none !important;
}

#borrar:hover{
  background-color: #06B3FF !important;
}

#map {
  height: 600px;
}

#ampliar {
  background-color: #636162;
  color: #FFF;
  text-align: center;
  padding: 8px 32px;
  position: absolute;
  right: 14%;
  bottom: 64px;
  text-decoration: none !important;
  font-size: 22px;
  font-family: "brandon_grotesquebold";
}

#ampliar:hover{
  background-color: #E94414;
}

#float_whatsapp {
  background-image: url(../img/whatsapp.svg);
  background-repeat: no-repeat;
  animation: pulse 2s infinite;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  position: fixed;
  right: 15px;
  z-index: 99999;
  bottom: 9%;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(1, 169, 1);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


/*cierra animacion boton de whatsapp*/


.proyecto{
  border-radius: 10px;
  float: left;
  position: relative;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
#proyectos p {
  line-height: 28px;
  margin-bottom: 30px;
  color: #292929;
}
.proyecto span{
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  font-family:"Open Sans Extrabold";
  align-items: center;
  color: #fff;
  font-size: 80px;
  height: 100%;
  background: rgba(99, 96, 96, 0.66);
}

.proyecto:hover .hover{
  opacity: 1;
}

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp{
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
  z-index:9999;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999999;
}

.fancybox-skin {
  position: relative;
  background:transparent;
  color: #444;
  text-shadow: none;
}

.fancybox-opened {
  z-index: 999999;
  }


.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url('../img/fancybox_sprite.png');
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 9999;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('../img/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 99999;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  z-index: 999999;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 99999;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index:9999;
  background: rgba(0, 0, 0, 0.9);
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: -25px;
  margin-left: -15px;
  z-index:99999;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  width: 100%;
  float: left;
  position: relative;
  padding: 2px 20px;
  background: transparent; /* Fallback for web browsers that doesn't support RGBa */
  background: #000;
  color: #4286b0;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, .8);
}

#beneficios{
  padding: 65px 0px;
}

.texto-beneficios {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  padding: 11px 40px;
}

.texto-beneficios h1{
  font-size:40px;
  color: #FFF;
  font-family: "brandon_grotesquebold";
  text-align:center;
  margin-top: 38%;
  text-shadow: 2px 3px 2px #0000008c;
}

.link-beneficios{
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 27px;
}

.link-beneficios:hover .texto-beneficios{
  background:#EEBA457A;
}

.ampliar-ben{
  border: 1px solid #fff;
  color: #fff;
  padding: 16px 51px;
  margin-top: 11%;
  float: left;
  text-align: center;
  width: 100%;
}

.link-beneficios:hover .ampliar-ben{
  background-color: #fff;
  color: #000;
}

#det-beneficios {
  padding: 85px 0px;
}

.det-beneficios p{
  color: #8c8d8d;
  font-size:17px;
  line-height:22px;
  padding-right: 45px;
  text-align: justify;
  margin-top: 7%;
}


/**-----------------------------------------------------------------------------------------------------------------*/

@media (max-width:800px) and (min-width:300px){

#navbar a{
    color: #fff;
    width: 100%;
    position: relative;
    display:block;
    padding: 9px 2px;
    text-decoration: none;
  }

  #navbar li{
    display: inline-block;
    margin: 0px;
    width: 100%;
    text-align: center;
  }

  #navbar a:hover{
    color: #01AEE8;
  }

  #navbar .selec{
    color: #01AEE8;
  }

  .navbar-header {
    float: none;
  }

  .navbar-inverse{
    background-color:#646061;
  }

  .navbar-left,.navbar-right {
    float: none !important;
  }

  .navbar-toggle {
    display: block;
    border: 1px !important;
    margin-top: -1px;
    margin-right: -1px;
  }

  .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-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus{
    background-color: transparent;
  }

  .navbar-nav {
    padding: 4px;
    border: none;
    font-size: 20px;
  }

  .navbar-nav>li {
    float: none;
  }

  .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form{
    border-color: #fdfdfd00;
  }

  .navbar-nav>li>a {
    padding-top: 10px ;
    padding-bottom: 10px;
  }

  .collapse.in{
    display:block !important;
  }
}



@media (max-width: 400px) and (min-width:300px){

  .img2 {
    width:130px;
  }

  #banner{
    margin-top: 7%;
  }

  #productos_home h1{
    font-size: 25px;
  }

  .productos_item{
    margin-top: 1%;
    padding-left: 4%;
  }

  .productos_item h2{
    font-size: 23px;
  }

  #productos_home{
    padding: 27px 0px;
  }

  .productos_item a{
    padding: 9px;
    margin-bottom: 23px;
  }

  .productos_item p{
    font-size: 16px;
    line-height: 19px;
    padding-bottom: 26px;
  }

  .productos_item2 h2{
    font-size: 23px;
  }

  .productos_item2 p{
    font-size: 16px;
    padding-bottom: 19px;
  }

  .productos_item2 a{
    padding: 9px;
    margin-bottom: 23px;
  }

  .conozca_hometext{
    padding: 0px 20px;
  }

  .conozca_hometext p{
    font-size: 15px;
    text-align: center;
    line-height: 21px;
  }

  .conozca_hometext h1{
    text-align: center;
    font-size: 24px;
  }

  #diseños_adaptados h1{
    font-size: 30px;
    padding-bottom: 27px;
  }

  #diseños_adaptados p{
    font-size: 17px;
    line-height: 23px;
  }

  #diseños_adaptados{
    padding: 122px 0px;
  }

  #home_accesorios h1{
    font-size: 34px;
  }

  .text_accesorios h2{
    font-size: 18px;
  }

  .text_accesorios{
    padding-top: 22px;
  }

  .text_accesorios p{
    font-size: 14px;
    line-height: 20px;
  }

  #titulo h1{
    font-size:32px;
  }

  #titulo p{
    font-size: 14px;
    line-height: 17px;
  }

  #titulo{
    padding-top: 164px;
    padding-bottom: 52px;
  }

  .empresa h1{
    font-size: 31px;
  }

  .empresa{
    padding: 0px 8px;
  }

  .empresa p{
    font-size: 15px;
    padding-bottom: 57px;
    line-height: 21px;
  }

  .prod_item{
    margin-top: 19%;
    padding: 0px 28px;
  }

  .prod_item p{
    font-size: 15px;
    line-height: 21px;
  }

  .volver_prod a{
    padding: 11px 9px;
    font-size: 14px;
  }

  .volver_prod{
    padding: 65px 0px;
  }

  #experiencia h2{
    font-size: 18px;
  }

  #formulario h1{
    font-size: 25px;
  }

  #experiencia ul li{
    margin-top: -6px;
    margin-bottom: 55px;
    margin-left: 8px;
    font-size: 15px;
    line-height: 20px;
  }

  .vision h1{
    font-size: 28px;
  }

  #vision{
    padding: 42px 0px;
  }

  .vision{
    font-size: 15px;
    padding: 0px 10px;
  }

  .vision p{
    font-size: 18px;
  }

  .text-product2{
    padding: 7px;
  }

  .text-product3{
    padding: 13px 9px;
  }

  .text-product3 h3{
    font-size: 11px;
    line-height: 13px;
    margin-bottom: 13px;
  }

  .text-product2 h2{
    font-size: 16px;
  }

  .ampliar2{
    padding: 8px 31px;
    font-size: 11px;
  }

  .prod_item h1{
    font-size: 16px;
    line-height: 22px;
  }

  #formulario p{
    font-size: 15px;
    line-height: 22px;
  }

  .texto-link h1{
    font-size:29px;
  }


}

/*--------------------------------------------------------------------------------------------*/

@media (max-width: 500px) and (min-width:401px){

  .img2 {
    width:155px;
  }

  #banner{
    margin-top: 7%;
  }

  #productos_home h1{
    font-size: 41px;
  }

  .productos_item{
    margin-top: 1%;
  }

  .productos_item h2{
    font-size: 31px;
  }

  .productos_item p{
    font-size: 16px;
    line-height: 19px;
  }

  .productos_item2 h2{
    font-size: 31px;
  }

  .productos_item2 p{
    font-size: 16px;
    padding-bottom: 19px;
  }

  .productos_item2 a{
    margin-bottom: 23px;
  }

  .conozca_hometext{
    padding: 0px 20px;
  }

  .conozca_hometext p{
    font-size: 16px;
  }

  .conozca_hometext h1{
    font-size: 31px;
  }

  #diseños_adaptados h1{
    font-size: 30px;
    padding-bottom: 27px;
  }

  #diseños_adaptados p{
    font-size: 19px;
    line-height: 23px;
  }

  #diseños_adaptados{
    padding: 122px 0px;
  }

  #home_accesorios h1{
    font-size: 43px;
  }

  .text_accesorios h2{
    font-size: 26px;
  }

  .text_accesorios{
    padding-top: 22px;
  }

  .text_accesorios p{
    font-size: 16px;
  }

  #titulo h1{
    font-size: 32px;
  }

  #titulo p{
    font-size: 15px;
    line-height: 21px;
  }

  .texto-beneficios h1{
    font-size: 33px;
  }

  #titulo{
    padding-top:126px;
    padding-bottom: 48px;
    margin-top: 8%;
  }

  .empresa{
    padding: 0px 8px;
  }

  .empresa p{
    font-size: 17px;
    padding-bottom: 65px;
  }

  .prod_item{
    margin-top: 19%;
    padding: 0px 28px;
  }

  .prod_item p{
    font-size: 18px;
  }

  .volver_prod{
    padding: 85px 0px;
  }

  #experiencia h2{
    font-size: 28px;
  }

  #experiencia ul li{
    margin-top: -6px;
    margin-bottom: 55px;
    margin-left: 8px;
  }

  #vision{
    padding: 42px 0px;
  }

  .vision{
    padding: 0px 10px;
  }

  .vision p{
    font-size: 18px;
  }

  .text-product2{
    padding: 9px;
  }

  .text-product3{
    padding: 17px 15px;
  }

  .text-product3 h3{
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 19px;
  }

  .text-product2 h2{
    font-size: 16px;
  }

  .ampliar2{
    padding: 8px 31px;
    font-size: 11px;
  }


  .prod_item h1{
    font-size: 30px;
  }

  #formulario p{
    font-size: 18px;
    line-height: 22px;
  }

  .texto-link h1{
    font-size: 31px;
  }

  .det-beneficios p{
    padding-bottom: 45px;
    margin-top: 0%;
    padding-right: 0px;
  }


}


/*------------------------------------------------------------------------------------*/

@media (max-width:600px) and (min-width:501px){

  .img2 {
    width:155px;
  }

  #banner{
    margin-top: 7%;
  }

  #productos_home h1{
    font-size: 35px;
  }

  .productos_item{
    margin-top: 1%;
  }

  .productos_item h2{
    font-size: 31px;
  }

  .productos_item p{
    font-size: 16px;
    line-height: 19px;
  }

  .productos_item2 h2{
    font-size: 31px;
  }

  .productos_item2 p{
    font-size: 16px;
    padding-bottom: 19px;
  }

  .productos_item2 a{
    margin-bottom: 23px;
  }

  .conozca_hometext{
    padding: 0px 20px;
  }

  .conozca_hometext p{
    font-size: 16px;
  }

  .conozca_hometext h1{
    font-size: 31px;
  }

  #diseños_adaptados h1{
    font-size: 30px;
    padding-bottom: 27px;
  }

  #diseños_adaptados p{
    font-size: 19px;
    line-height: 23px;
  }

  #diseños_adaptados{
    padding: 122px 0px;
  }

  #home_accesorios h1{
    font-size: 43px;
  }

  .text_accesorios h2{
    font-size: 26px;
  }

  .text_accesorios{
    padding-top: 22px;
  }

  .text_accesorios p{
    font-size: 16px;
  }

  #titulo h1{
    font-size: 37px;
  }

  #titulo p{
    font-size: 15px;
    line-height: 21px;
  }

  #titulo{
    padding-top: 167px;
    padding-bottom: 55px;
    margin-top: 8%;
  }

  .empresa{
    padding: 0px 8px;
  }

  .empresa p{
    font-size: 17px;
    padding-bottom: 65px;
  }

  .prod_item{
    margin-top: 19%;
    padding: 0px 28px;
  }

  .prod_item p{
    font-size: 18px;
  }

  .volver_prod{
    padding: 85px 0px;
  }

  #experiencia h2{
    font-size: 28px;
  }

  #experiencia ul li{
    margin-top: -6px;
    margin-bottom: 55px;
    margin-left: 8px;
  }

  #vision{
    padding: 42px 0px;
  }

  .vision{
    padding: 0px 10px;
  }

  .vision p{
    font-size: 18px;
  }

  .text-product2{
    padding: 9px;
  }

  .text-product3{
    padding: 17px 15px;
  }

  .text-product3 h3{
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 19px;
  }

  .text-product2 h2{
    font-size: 16px;
  }

  .ampliar2{
    padding: 8px 31px;
    font-size: 11px;
  }


  .prod_item h1{
    font-size: 30px;
  }

  #formulario p{
    font-size: 18px;
    line-height: 22px;
  }

  .texto-link h1{
    font-size: 31px;
  }

  #formulario h1{
    font-size: 33px;
  }

  .det-beneficios p{
    padding-bottom: 45px;
    margin-top: 0%;
    padding-right: 0px;
  }

}


/*------------------------------------------------------------------------------------*/

@media (max-width:700px) and (min-width:601px){

  .img2 {
    width:215px;
  }

  #banner{
    margin-top:11%;
  }

  #productos_home h1{
    font-size: 35px;
  }

  .productos_item{
    margin-top: 1%;
  }

  .productos_item h2{
    font-size: 31px;
  }

  .productos_item p{
    font-size: 16px;
    line-height: 19px;
  }

  .productos_item2 h2{
    font-size: 31px;
  }

  .productos_item2 p{
    font-size: 16px;
    padding-bottom: 19px;
  }

  .productos_item2 a{
    margin-bottom: 23px;
  }

  .conozca_hometext{
    padding: 0px 20px;
  }

  .conozca_hometext p{
    font-size: 16px;
  }

  .conozca_hometext h1{
    font-size: 31px;
  }

  #diseños_adaptados h1{
    font-size: 30px;
    padding-bottom: 27px;
  }

  #diseños_adaptados p{
    font-size: 19px;
    line-height: 23px;
  }

  #diseños_adaptados{
    padding: 122px 0px;
  }

  #home_accesorios h1{
    font-size: 43px;
  }

  .text_accesorios h2{
    font-size: 26px;
  }

  .text_accesorios{
    padding-top: 22px;
  }

  .text_accesorios p{
    font-size: 16px;
  }

  #titulo h1{
    font-size: 37px;
  }

  #titulo p{
    font-size: 15px;
    line-height: 21px;
  }

  #titulo{
    padding-top: 216px;
    padding-bottom: 72px;
    margin-top: 8%;
  }

  .empresa{
    padding: 0px 8px;
  }

  .empresa p{
    font-size: 17px;
    padding-bottom: 65px;
  }

  .prod_item{
    margin-top: 19%;
    padding: 0px 28px;
  }

  .prod_item p{
    font-size: 18px;
  }

  .volver_prod{
    padding: 85px 0px;
  }

  #experiencia h2{
    font-size: 28px;
  }

  #experiencia ul li{
    margin-top: -6px;
    margin-bottom: 55px;
    margin-left: 8px;
  }

  #vision{
    padding: 42px 0px;
  }

  .vision{
    padding: 0px 10px;
  }

  .vision p{
    font-size: 18px;
  }

  .text-product2{
    padding: 14px;
  }

  .text-product3{
    padding: 17px 15px;
  }

  .text-product3 h3{
    margin-bottom: 32px;
  }

  .text-product2 h2{
    font-size:28px;
  }

  .ampliar2{
    padding: 8px 31px;
    font-size: 11px;
  }


  .prod_item h1{
    font-size: 30px;
  }

  #formulario p{
    font-size: 18px;
    line-height: 22px;
  }

  .texto-link h1{
    font-size: 31px;
  }

  #formulario h1{
    font-size: 33px;
  }

  .det-beneficios p{
    padding-bottom: 45px;
    margin-top: 0%;
    padding-right: 0px;
  }

}




/*------------------------------------------------------------------------------------*/

@media (max-width:767px) and (min-width:701px){

  .img2 {
    width:230px;
  }

  #banner{
    margin-top:12%;
  }

  #productos_home h1{
    font-size: 44px;
  }

  .productos_item{
    margin-top: 1%;
  }

  .productos_item h2{
    font-size: 32px;
  }

  .productos_item p{
    font-size: 18px;
  }

  .productos_item2 h2{
    font-size: 31px;
  }

  .productos_item2 p{
    font-size: 16px;
    padding-bottom: 19px;
  }

  .productos_item2 a{
    margin-bottom: 23px;
  }

  .conozca_hometext{
    padding: 0px 20px;
  }

  .conozca_hometext p{
    font-size: 16px;
  }

  .conozca_hometext h1{
    font-size: 31px;
  }

  #diseños_adaptados h1{
    font-size: 30px;
    padding-bottom: 27px;
  }

  #diseños_adaptados p{
    font-size: 19px;
    line-height: 23px;
  }

  #diseños_adaptados{
    padding: 122px 0px;
  }

  #home_accesorios h1{
    font-size: 43px;
  }

  .text_accesorios h2{
    font-size: 29px;
  }

  .text_accesorios{
    padding-top: 22px;
  }

  .text_accesorios p{
    font-size: 16px;
  }

  #titulo h1{
    font-size: 42px;
  }

  #titulo p{
    font-size: 18px;
    line-height: 21px;
  }

  #titulo{
    padding-top: 212px;
    padding-bottom: 77px;
    margin-top: 8%;
  }

  .empresa{
    padding: 0px 8px;
  }

  .empresa p{
    font-size: 17px;
    padding-bottom: 65px;
  }

  .prod_item{
    margin-top: 19%;
    padding: 0px 28px;
  }

  .volver_prod{
    padding: 85px 0px;
  }

  #experiencia h2{
    font-size: 28px;
  }

  #experiencia ul li{
    margin-top: 8px;
    margin-bottom: 65px;
    margin-left: 51px;
  }

  #vision{
    padding: 42px 0px;
  }

  .vision{
    padding: 0px 10px;
  }

  .vision p{
    font-size: 18px;
  }

  .text-product2{
    padding: 14px;
  }

  .text-product3 h3{
    margin-bottom: 32px;
  }

  .text-product2 h2{
    font-size:35px;
  }

  .ampliar2{
    padding: 12px 31px;
  }

  .prod_item h1{
    font-size: 34px;
  }

  #formulario p{
    font-size: 18px;
    line-height: 22px;
  }

  .texto-link h1{
    font-size: 31px;
  }

  #formulario h1{
    font-size: 33px;
  }

  .det-beneficios p{
    padding-bottom: 45px;
    margin-top: 0%;
    padding-right: 0px;
  }

}



/*------------------------------------------------------------------------------------*/

@media (max-width:800px) and (min-width:768px){

  .img2 {
    width:230px;
  }

  #banner{
    margin-top: 11%;
  }

  .texto{
    bottom: 1%;
    margin-left: 12px;
  }

  .texto h1{
    font-size: 42px;
  }

  #productos_home h1{
    font-size: 42px;
  }

  .productos_item{
    margin-top: 2%;
    padding-left: 3%;
  }

  .productos_item h2{
    font-size: 22px;
  }

  .productos_item p{
    font-size: 15px;
    line-height: 21px;
    padding-bottom: 13px;
  }

  .productos_item2{
    margin-top: 4%;
    padding-right: 2%;
  }

  .productos_item2 h2{
    font-size: 22px;
  }

  .productos_item2 p{
    font-size: 15px;
    padding-bottom: 13px;
    line-height: 21px;
  }

  .productos_item2 a{
    padding: 10px;
    font-size: 13px;
  }

  .productos_item a{
    padding: 10px;
    font-size: 13px;
  }

  .conozca_hometext h1{
    font-size: 31px;
  }

  .conozca_hometext a{
    margin-top: 42px;
  }

  .conozca_hometext{
    padding: 0px 98px;
  }

  .conozca_hometext p{
    font-size: 17px;
    line-height: 26px;
  }

  #diseños_adaptados h1{
    font-size: 47px;
    padding-bottom: 35px;
  }

  #diseños_adaptados p{
    font-size: 23px;
    line-height: 30px;
  }

  #diseños_adaptados{
    padding: 119px 41px;
  }

  #home_accesorios h1{
    font-size: 47px;
  }

  .text_accesorios h2{
    font-size: 25px;
  }

  .text_accesorios p{
    font-size: 15px;
    line-height: 22px;
  }

  .text_accesorios a{
    padding: 11px;
    margin-top: 24px;
    font-size: 16px;
  }

  .texto-link{
    padding: 10px 22px;
  }

  .texto-link h1{
    font-size: 18px;
    margin-top: 20%;
  }

  .texto-link h2{
    font-size: 15px;
  }

  .ampliar{
    padding: 7px 22px;
    font-size: 13px;
  }

  #titulo{
    margin-top: 10%;
    padding-top: 179px;
    padding-bottom: 78px;
    font-size: 55px;
  }

  .texto-beneficios h1{
    font-size: 31px;
  }

  #titulo h1{
    font-size: 44px;
  }

  .prod_item{
    padding: 0px 88px;
  }

  .prod_item p{
    font-size: 17px;
    line-height: 21px;
  }

  .text-product2{
    padding: 37px;
  }

  .lines_empresa{
    height: 515px;
  }

  .empresa{
    padding: 0px 120px;
  }

  .empresa p{
    font-size: 18px;
  }

  #experiencia h2{
    font-size: 32px;
  }

  .vision{
    padding: 0px 65px;
  }

  .vision h1{
    text-align: center;
  }

  .vision p{
    text-align: center;
    font-size: 18px;
  }

  .prod_item h1{
    font-size: 34px;
  }

  .lineas_prod{
    height: 216px;
  }

  .volver_prod{
    padding: 102px 0px;
  }

  .det-beneficios p{
    padding-bottom: 45px;
    margin-top: 0%;
    padding-right: 0px;
  }

}



/*------------------------------------------------------------------------------------*/

@media (max-width:900px) and (min-width:801px){

  .menu li{
    margin: 19px 8px;
  }

  .menu a{
    font-size: 14px;
  }

  .texto{
    margin-left: 48px;
    bottom: -5%;
  }

  .texto h1{
    font-size: 36px;
  }

  .texto p{
    font-size: 16px;
    line-height: 21px;
  }

  #productos_home h1{
    font-size: 36px;
  }

  .productos_item{
    margin-top: 1%;
    padding-left: 3%;
  }

  .productos_item h2{
    font-size: 26px;
  }

  .productos_item p{
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 23px;
  }

  .productos_item a{
    padding: 12px;
  }

  .productos_item2 h2{
    font-size: 26px;
  }

  .productos_item2 p{
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 23px;
  }

  .productos_item2 a{
    padding: 12px;
  }

  .conozca_hometext p{
    font-size: 18px;
    text-align: center;
  }

  .conozca_hometext h1{
    font-size: 33px;
    text-align: center;
  }

  #diseños_adaptados h1{
    font-size: 40px;
  }

  #diseños_adaptados p{
    font-size: 24px;
    line-height: 24px;
  }

  #diseños_adaptados{
    padding: 157px 60px;
  }

  #home_accesorios h1{
    font-size: 45px;
  }

  .text_accesorios h2{
    font-size: 24px;
  }

  .text_accesorios p{
    font-size: 16px;
  }

  .texto-link{
    padding: 10px 22px;
  }

  .texto-link h1{
    font-size: 18px;
    margin-top: 20%;
  }

  .texto-link h2{
    font-size: 15px;
  }

  .ampliar{
    padding: 7px 22px;
    font-size: 13px;
  }

  #titulo{
    padding-top: 201px;
    padding-bottom: 68px;
  }

  .texto-beneficios h1{
    font-size: 30px;
  }

  #titulo h1{
    font-size: 46px;
  }

  .empresa{
    padding: 0px 114px;
  }

  .empresa p{
    font-size: 17px;
  }

  .vision h1{
    text-align: center;
  }

  .vision p{
    font-size: 18px;
    text-align: center;
  }

  .text-product2{
    padding: 34px;
  }

  .lineas_prod{
    height: 112px;
  }

  .prod_item h1{
    font-size: 32px;
  }

  .volver_prod{
    padding: 104px 0px;
  }

  .det-beneficios p{
    padding-bottom: 45px;
    margin-top: 0%;
    padding-right: 0px;
  }

  .prod_item{
    padding: 0px 100px;
  }

  .prod_item p{
    font-size: 18px;
    line-height: 24px;
  }

}

/*------------------------------------------------------------------------------------*/

@media (max-width:991px) and (min-width:901px){

  .menu li{
    margin: 19px 8px;
  }

  .menu a{
    font-size:15px;
  }

  .texto{
    margin-left: 48px;
    bottom: -5%;
  }

  .texto h1{
    font-size: 36px;
  }

  .texto p{
    font-size: 16px;
    line-height: 21px;
  }

  #productos_home h1{
    font-size: 41px;
  }

  .productos_item{
    margin-top: 1%;
    padding-left: 3%;
  }

  .productos_item h2{
    font-size: 26px;
  }

  .productos_item p{
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 23px;
  }

  .productos_item a{
    padding: 12px;
  }

  .productos_item2 h2{
    font-size: 26px;
  }

  .productos_item2 p{
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 23px;
  }

  .productos_item2 a{
    padding: 12px;
  }

  .conozca_hometext p{
    font-size: 18px;
  }

  .conozca_hometext h1{
    font-size: 33px;
  }

  #diseños_adaptados h1{
    font-size: 40px;
  }

  #diseños_adaptados p{
    font-size: 24px;
    line-height: 24px;
  }

  #diseños_adaptados{
    padding: 157px 60px;
  }

  #home_accesorios h1{
    font-size: 45px;
  }

  .text_accesorios h2{
    font-size: 24px;
  }

  .text_accesorios p{
    font-size: 16px;
  }

  .texto-link{
    padding: 10px 22px;
  }

  .texto-link h1{
    font-size: 18px;
    margin-top: 20%;
  }

  .texto-link h2{
    font-size: 15px;
  }

  .ampliar{
    padding: 7px 22px;
    font-size: 13px;
  }

  #titulo{
    padding-top: 235px;
    padding-bottom: 61px;
  }

  .prod_item p{
    font-size: 18px;
    line-height: 23px;
  }

  .prod_item{
    padding: 0px 89px;
  }

  #titulo h1{
    font-size: 46px;
  }

  .texto-beneficios h1{
    font-size: 34px;
  }

  .empresa{
    padding: 0px 114px;
  }

  .empresa p{
    font-size: 17px;
  }

  .vision h1{
    text-align: center;
    font-size: 34px;
  }

  .vision p{
    font-size: 14px;
    text-align: center;
  }

  .text-product2{
    padding: 34px;
  }

  .lineas_prod{
    height: 112px;
  }

  .prod_item h1{
    font-size: 35px;
  }

  .volver_prod{
    padding: 104px 0px;
  }

  .det-beneficios p{
    padding-bottom: 45px;
    margin-top: 0%;
    padding-right: 0px;
  }

}




/*------------------------------------------------------------------------------------*/


@media (max-width:1200px) and (min-width:992px){

  .menu li{
    margin: 19px 4px;
  }

  #experiencia ul li{
    margin-top: 4px;
    margin-bottom: 43px;
  }

  .menu a{
    font-size: 15px;
  }

  .texto{
    margin-left: 48px;
    bottom: -2%;
  }

  .img2{
    width: 222px;
  }

  .texto h1{
    font-size: 36px;
  }

  .texto p{
    font-size: 16px;
    line-height: 21px;
  }

  #productos_home h1{
    font-size: 41px;
  }

  .productos_item{
    margin-top: 1%;
    padding-left: 3%;
  }

  .productos_item h2{
    font-size: 26px;
  }

  .productos_item p{
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 23px;
  }

  .productos_item a{
    padding: 12px;
  }

  .productos_item2 h2{
    font-size: 26px;
  }

  .productos_item2 p{
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 23px;
  }

  .productos_item2 a{
    padding: 12px;
  }

  .conozca_hometext p{
    font-size: 18px;
  }

  .conozca_hometext h1{
    font-size: 33px;
  }

  #diseños_adaptados h1{
    font-size: 40px;
  }

  #diseños_adaptados p{
    font-size: 24px;
    line-height: 24px;
  }

  #diseños_adaptados{
    padding: 157px 60px;
  }

  #home_accesorios h1{
    font-size: 45px;
  }

  .text_accesorios h2{
    font-size: 24px;
  }

  .text_accesorios p{
    font-size: 16px;
  }

  .texto-link{
    padding: 23px 22px;
  }

  .texto-link h1{
    font-size: 22px;
    margin-top: 20%;
  }

  .texto-link h2{
    font-size: 15px;
  }

  .ampliar{
    padding: 7px 22px;
    font-size: 13px;
  }

  #titulo{
    padding-top: 232px;
    padding-bottom: 59px;
  }

  #titulo h1{
    font-size: 48px;
  }

  .empresa{
    padding: 0px 114px;
  }

  .empresa p{
    font-size: 17px;
  }

  .conoce{
    margin-top: 6%;
  }

  .conoce p{
    font-size: 17px;
    line-height: 24px;
  }

  .conoce h1{
    font-size: 27px;
  }

  .vision h1{
    text-align: center;
  }

  .vision p{
    font-size: 18px;
    text-align: center;
  }

  .text-product2{
    padding: 17px;
  }

  .text-product3{
    padding: 14px 15px;
  }

  .text-product2 h2{
    font-size: 25px;
  }

  .text-product3 h3{
    font-size: 16px;
    margin-bottom: 27px;
    line-height: 20px;
  }

  .ampliar2{
    padding: 6px 18px;
    font-size: 14px;
  }

  .prod_item h1{
    font-size: 35px;
  }

  .volver_prod{
    padding: 104px 0px;
  }

  .det-beneficios p{
    padding-bottom: 45px;
    margin-top: 0%;
  }

}


/*------------------------------------------------------------------------------------*/

@media (max-width:1350px) and (min-width:1201px){

  .menu li{
    margin: 16px 8px;
  }

  .menu a{
    font-size: 17px;
  }

  .img2 {
    width: 272px;
  }

  #titulo{
    padding-top: 271px;
  }

  #titulo h1{
    font-size: 47px;
  }

  .texto{
    bottom: 3%;
    margin-left: 100px;
  }

  .texto-beneficios h1{
    font-size: 31px;
  }

  #productos_home h1{
    font-size: 50px;
  }

  .productos_item{
    margin-top: 6%;
    padding-left: 4%;
  }

  .productos_item h2{
    font-size: 35px;
  }

  .productos_item2{
    margin-top: 4%;
    padding-right: 6%;
  }

  .productos_item2 h2{
    font-size: 35px;
  }

  #productos_home h1{
    font-size: 52px;
  }

  .productos_item p{
    font-size: 19px;
  }

  .conozca_hometext p{
    font-size: 19px;
  }

  .conozca_hometext a{
    margin-top: 34px;
  }

  #diseños_adaptados h1{
    font-size: 51px;
  }

  #diseños_adaptados p{
    font-size: 27px;
  }

  #home_accesorios h1{
    font-size: 50px;
  }

  .text_accesorios h2{
    font-size: 23px;
  }

  .text_accesorios p{
    font-size: 15px;
    line-height: 20px;
  }

  .text_accesorios a{
    padding: 13px;
    font-size: 14px;
  }

  .texto-link h1{
    font-size: 31px;
    margin-top: 18%;
  }

  .texto-link{
    padding: 11px 23px;
  }

  .ampliar{
    padding: 12px 32px;
  }

  .prod_item{
    padding: 0px 83px;
  }

  .prod_item p{
    font-size: 17px;
  }

  .prod_item h1{
    font-size: 32px;
  }

  #experiencia ul li{
    margin-left: 12px;
    line-height: 21px;
    font-size: 15px;
    margin-bottom: 62px;
  }

  .vision h1{
    text-align: center;
  }

  .vision p{
    text-align: center;
  }

  .text-product2 h2{
    font-size: 27px;
  }

  .text-product2{
    padding: 18px;
  }

  .text-product3 h3{
    font-size: 19px;
    line-height: 23px;
    margin-bottom: 30px;
  }

  .ampliar2{
    padding: 9px 32px;
  }

  .text-product3{
    padding: 25px 15px;
  }

  .volver_prod{
    padding: 109px 0px;
  }

  .conoce{
    margin-top: 6%;
  }

  .conoce p{
    font-size: 18px;
    line-height: 25px;
  }

  .conoce h1{
    font-size: 27px;
  }

  .det-beneficios p{
    margin-top: 0%;
    padding-right: 0px;
    font-size: 15px;
    line-height: 21px;
  }

}


/*------------------------------------------------------------------------------------*/

@media (max-width:1500px) and (min-width:1351px){

  .texto{
    bottom: 5%;
  }

  .img2 {
    width: 272px;
  }

  #titulo{
    padding-top: 325px;
  }

  #productos_home h1{
    font-size: 54px;
  }

  .menu li{
    margin: 16px 16px;
  }

  .productos_item2{
    margin-top: 5%;
  }

  .text-product3{
    padding: 40px 27px;
  }

  .productos_item2 h2{
    font-size: 38px;
  }

  .productos_item h2{
    font-size: 38px;
  }

  .productos_item{
    margin-top: 9%;
    padding-left: 5%;
  }

  .conozca_hometext p{
    font-size: 19px;
  }

  .conozca_hometext a{
    margin-top: 63px;
  }

  #diseños_adaptados h1{
    font-size: 59px;
  }

  #diseños_adaptados p{
    font-size: 27px;
  }

  .text_accesorios h2{
    font-size: 26px;
  }

  .text_accesorios p{
    font-size: 17px;
  }

  .texto-link h1{
    font-size: 33px;
  }

  .text-product2{
    padding: 29px;
  }

  .text-product2 h2{
    font-size: 31px;
  }

  #home_accesorios h1{
    font-size: 54px;
  }

  .conoce{
    margin-top: 5%;
  }

  .conoce p{
    font-size: 20px;
    line-height: 28px;
  }

  .conoce h1{
    font-size: 32px;
  }

  .det-beneficios p{
    padding-right: 0px;
  }

}



/*------------------------------------------------------------------------------------*/

@media (max-width:1720px) and (min-width:1501px){


  .texto{
    margin-left: 93px;
    bottom: 6%;
  }

  #productos_home h1{
    font-size: 56px;
  }

  .productos_item{
    padding-left: 5%;
  }

  .productos_item2{
    margin-top: 6%;
  }

  .conozca_hometext p{
    line-height: 26px;
    font-size: 19px;
  }

  .conozca_hometext a{
    margin-top: 52px;
  }

  #diseños_adaptados h1{
    font-size: 57px;
  }

  #diseños_adaptados p{
    font-size: 27px;
    line-height: 37px;
  }

  .text_accesorios h2{
    font-size: 26px;
  }

  #home_accesorios h1{
    font-size: 53px;
  }

  .texto-link h1{
    font-size: 34px;
  }

  .text-product2{
    padding: 39px;
  }

  .text-product2 h2{
    font-size: 33px;
  }

  .conoce p{
    font-size: 22px;
    line-height: 31px;
  }

  .menu li{
    margin: 16px 16px;
  }

  #titulo{
    padding-top: 368px;
  }

}


/*------------------------------------------------------------------------------------*/

@media (max-width:1820px) and (min-width:1721px){


  .texto{
    margin-left: 93px;
    bottom: 6%;
  }

  #productos_home h1{
    font-size: 56px;
  }

  .productos_item{
    padding-left: 5%;
  }

  .productos_item2{
    margin-top: 6%;
  }

  .conozca_hometext p{
    line-height: 26px;
    font-size: 19px;
  }

  .conozca_hometext a{
    margin-top: 52px;
  }

  #diseños_adaptados h1{
    font-size: 57px;
  }

  #diseños_adaptados p{
    font-size: 27px;
    line-height: 37px;
  }

  .text_accesorios h2{
    font-size: 26px;
  }

  #home_accesorios h1{
    font-size: 53px;
  }

  .texto-link h1{
    font-size: 34px;
  }

  .text-product2{
    padding: 39px;
  }

  .text-product2 h2{
    font-size: 33px;
  }

  .conoce p{
    font-size: 22px;
    line-height: 31px;
  }

  .menu li{
    margin: 16px 16px;
  }

  #titulo{
    padding-top: 401px;
  }

}


/*------------------------------------------------------------------------------------*/

@media (max-width:2000px) and (min-width:1821px){

  #titulo{
    padding-top:445px;
  }

}



/*------------------------------------------------------------------------------------*/

@media (max-width:2200px) and (min-width:2001px){

  #titulo{
    padding-top:475px;
  }

}