@charset "UTF-8";
@import url(animate.css);
@import url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500,700);
@import url(material-icons.css);
/*========================================================
                      Main Styles
=========================================================*/
body {
  color: #0a0c23;
  font: 400 20px/1.5 "Roboto", sans-serif;
  -webkit-text-size-adjust: none;
  background: #0A1923;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

/*================     Typography     ===================*/
h1, h2, h3, h4, h5, h6, .heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
  color: #000000;
}

h1, .heading-1 {
  font-size: 120px;
  line-height: 120px;
}

h2, .heading-2 {
  font-size: 108px;
  line-height: 1.11111111;
  font-weight: 300;
}
@media (max-width: 1199px) {
  h2, .heading-2 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  h2, .heading-2 {
    font-size: 70px;
  }
}
@media (max-width: 479px) {
  h2, .heading-2 {
    font-size: 40px;
  }
}

h3, .heading-3 {
  font-size: 40px;
  line-height: 1.125;
}
@media (max-width: 479px) {
  h3, .heading-3 {
    font-size: 30px;
  }
}

h4, .heading-4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

h5, .heading-5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

h6, .heading-6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

p .fa, .marked-list .fa, .list .fa {
  text-decoration: none;
}

small, .small {
  font-size: .8em;
  line-height: 1.25;
}

.big {
  font-size: 1.5em;
}

time {
  display: block;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:focus {
  outline: none;
}
a:active {
  background-color: transparent;
}

a[href^="tel:"],
a[href^="callto:"],
a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
  position: relative;
}
a[href^="tel:"]:after,
a[href^="callto:"]:after,
a[href^="mailto:"]:after {
  background: #eb3d43;
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 1px;
  content: "";
  opacity: 0;
  transition: height 0.2s ease 0s, opacity 0.2s ease 0s, transform 0.2s ease 0s;
  transform: translateY(-10px);
}
a[href^="tel:"]:hover:after,
a[href^="callto:"]:hover:after,
a[href^="mailto:"]:hover:after {
  height: 2px;
  opacity: 1;
  transform: translateY(0px);
}

.fa {
  line-height: inherit;
}

[class*='fa-']:before {
  font-weight: 400;
  font-family: "FontAwesome";
}

.page {
  overflow: hidden;
  min-height: 500px;
}
.lt-ie9 .page {
  min-width: 1200px;
}

/*=======================================================
                       Main Layout
=========================================================*/
/*==================    Offsets      ======================*/
* + p {
  margin-top: 30px;
}

h4 + p {
  margin-top: 18px;
}

* + .btn {
  margin-top: 58px;
}

* + .btn-md {
  margin-top: 112px;
}

* + .inline-list {
  margin-top: 20px;
}

* + .flex-list {
  margin-top: 83px;
}

* + .subscribe-form {
  margin-top: 32px;
}

* + .offset-1 {
  margin-top: 10px;
}

/*==================    Postfix      ======================*/
/*==================    Preffix      ======================*/
/*==================    Insets      ======================*/
.inset-1 {
  padding-top: 103px;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .inset-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.inset-2 {
  padding-top: 35px;
}
.inset-3 {
  padding-top: 43px;
  padding-right: 100px;
}
@media (max-width: 991px) {
  .inset-3 {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .inset-3 {
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }
}
.inset-4 {
  padding-left: 100px;
  padding-top: 30px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .inset-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 479px) {
  .inset-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.inset-5 {
  padding-top: 32px;
}
.inset-6 {
  padding-top: 43px;
  padding-bottom: 70px;
}

/*==================      Well     ======================*/
.well {
  padding: 120px 0 100px;
}

.well-2 {
  padding: 70px 0 70px;
}

/*=======================================================
                        Helpers
=========================================================*/
/*================    Basic Helpers    ==================*/
.round {
  border-radius: 50%;
}

.full {
  width: 100%;
}

/*==================    Text Styling      ======================*/
.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.strike {
  text-decoration: line-through;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.text-lowercase {
  text-transform: lowercase;
}

.thin {
  font-weight: 100;
}

.light {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sbold {
  font-weight: 600;
}

strong, .bold {
  font-weight: 700;
}

.ubold {
  font-weight: 900;
}

/*==================     Text Align    ======================*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media (max-width: 1199px) {
  .text-md-center {
    text-align: center;
  }

  .text-md-right {
    text-align: right;
  }

  .text-md-left {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .text-sm-center {
    text-align: center;
  }

  .text-sm-right {
    text-align: right;
  }

  .text-sm-left {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .text-xs-center {
    text-align: center;
  }

  .text-xs-right {
    text-align: right;
  }

  .text-xs-left {
    text-align: left;
  }
}
@media (max-width: 479px) {
  .text-xxs-center {
    text-align: center;
  }

  .text-xxs-right {
    text-align: right;
  }

  .text-xxs-left {
    text-align: left;
  }
}
/*================      Floating      =================*/
.pull-left {
  float: left;
}

.pull-none {
  float: none;
}

.pull-right {
  float: right;
}

@media (max-width: 1199px) {
  .pull-md-none {
    text-align: center;
  }

  .pull-md-right {
    text-align: right;
  }

  .pull-md-left {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .pull-sm-none {
    text-align: center;
  }

  .pull-sm-right {
    text-align: right;
  }

  .pull-sm-left {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .pull-xs-none {
    text-align: center;
  }

  .pull-xs-right {
    text-align: right;
  }

  .pull-xs-left {
    text-align: left;
  }
}
/*================       Colors       ==================*/
.text-default {
  color: #000;
}

.text-contrast {
  color: #fff;
}

.text-primary {
  color: #eb3d43;
}

/*==================  Backgrounds  ======================*/
.bg-primary {
  background: #eb3d43;
}

.bg-contrast {
  background: #fff;
}

.bg-contrast--after {
  position: relative;
}
.bg-contrast--after:after {
  content: '';
  position: absolute;
  background: #FFFFFF;
  height: 100%;
  width: 5000px;
  left: 100%;
  top: 0;
}
@media (max-width: 991px) {
  .bg-contrast--after:after {
    display: none;
  }
}

.bg-contrast--before {
  position: relative;
}
.bg-contrast--before:before {
  content: '';
  position: absolute;
  background: #FFFFFF;
  height: 100%;
  width: 5000px;
  right: 100%;
  top: 0;
}
@media (max-width: 991px) {
  .bg-contrast--before:before {
    display: none;
  }
}

.bg-img {
  -webkit-background-size: cover;
  background-size: cover;
  background: url("../images/bg-img.jpg") no-repeat fixed;
}
@media (max-width: 1199px) {
  .bg-img {
    background: url("../images/bg-img.jpg") no-repeat scroll center center;
  }
}

/*=======================================================
                        Components
=========================================================*/
/*==================     Brand     ======================*/
.brand {
  display: inline-block;
  background: #ffffff;
  padding: 24px 15px;
}
.brand_name {
  font-weight: 500;
  overflow: hidden;
  font-variant: small-caps;
  color: #FFFFFF;
  font-size: 35px;
  line-height: 35px;
}

/*==================    Images     ======================*/
.image-wrap-1 {
  position: relative;
}
.image-wrap-1 img {
  max-width: none;
  position: absolute;
  left: 100%;
  bottom: 0;
}
@media (max-width: 991px) {
  .image-wrap-1 img {
    position: static;
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
  }
}

/*==================     Icons     ======================*/
.icon {
  display: inline-block;
}

.icon.fa-facebook,
.icon.fa-twitter,
.icon.fa-google-plus,
.icon.fa-skype,
.icon.fa-instagram {
  font-size: 20px;
  line-height: 20px;
}
.icon.fa-facebook:hover,
.icon.fa-twitter:hover,
.icon.fa-google-plus:hover,
.icon.fa-skype:hover,
.icon.fa-instagram:hover {
  color: #ff0000;
}

/*==================    Buttons    ======================*/
.btn {
  display: inline-block;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 1;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.btn:before {
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transform: scale3d(0.7, 1, 1);
  transition-property: transform, opacity;
  transition-duration: 0.7s, 0.4s;
  transition-delay: 0s, 0s;
}
.btn:hover:before {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.btn-md {
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  padding: 17.5px 88px;
  overflow: hidden;
}
.btn-md--mod {
  padding: 17.5px 30px;
  overflow: visible;
}

.btn-lg {
  overflow: hidden;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  padding: 37.5px 63px;
}
@media (max-width: 479px) {
  .btn-lg {
    padding: 30px 50px;
    font-size: 25px;
    line-height: 30px;
  }
}

.btn-primary {
  color: #FFFFFF;
  background: #eb3d43;
}
.btn-primary:before {
  background: #ED9197;
}
.btn-primary:active {
  -webkit-box-shadow: 0 0 5px #eb3d43;
  -moz-box-shadow: 0 0 5px #eb3d43;
  box-shadow: 0 0 5px #eb3d43;
}

/*==================   Flex List   ======================*/
.flex-list {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.flex-list li {
  display: table-cell;
  text-align: center;
}
.flex-list li a:hover {
  opacity: 0.7;
}
@media (max-width: 991px) {
  .flex-list, .flex-list li {
    display: block;
  }
  .flex-list li + li {
    margin-top: 30px;
  }
}

/*==================  Inline List  ======================*/
.inline-list li {
  display: inline-block;
}
.inline-list li + li {
  margin-left: 25px;
}

/*==================  Contact-info   ======================*/
.contact-info {
  display: inline-block;
}
.contact-info address + dl {
  margin-top: 27px;
}
.contact-info dl {
  font-size: 16px;
  line-height: 20px;
}
.contact-info dl dt, .contact-info dl dd {
  display: inline-block;
}
.contact-info dl dt + dd {
  margin-left: -4px;
}
.contact-info dl a[href^="callto:"]:after {
  background: #fff;
}
.contact-info dl a[href^="callto:"]:hover:after {
  height: 1px;
}
.contact-info dl a[href^="mailto:"] {
  color: #5d65d0;
}
.contact-info dl a[href^="mailto:"]:after {
  background: #5d65d0;
}
.contact-info dl.email dt + dd {
  margin-left: 0px;
}

/*==================  Thumb wrap   ======================*/
@media (max-width: 991px) {
  .thumb-wrap:before, .thumb-wrap:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .thumb-wrap:after {
    clear: both;
  }
}
.thumb-wrap .thumb {
  display: inline-block;
}
@media (max-width: 991px) {
  .thumb-wrap .thumb {
    float: left;
    width: 50%;
  }
  .thumb-wrap .thumb:first-child {
    width: 100%;
  }
}

/*==================  Product   ======================*/
.product_img {
  overflow: hidden;
  width: 100%;
}
.product_img img {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product_caption {
  color: #FFFFFF;
  background: #eb3d43;
  padding: 25px 30px 35px;
  height: 110px;
}
.product_caption h1, .product_caption h2, .product_caption h3, .product_caption h4, .product_caption h5, .product_caption h6, .product_caption .heading-1, .product_caption .heading-2, .product_caption .heading-3, .product_caption .heading-4, .product_caption .heading-5, .product_caption .heading-6 {
  color: #FFFFFF;
}
.product:hover .product_img img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*=======================================================
                     Script Modules
=========================================================*/
/*==================     ToTop     ======================*/
.toTop {
  width: 60px;
  height: 60px;
  font-size: 40px;
  line-height: 55px;
  color: #fff;
  background: #ff0000;
  border-radius: 50%;
  position: absolute;
  bottom: 27px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 20;
}
.toTop:hover {
  color: #fff;
  background: #ED9197;
  text-decoration: none;
}

.mobile .toTop,
.tablet .toTop {
  display: none !important;
}

/*==================  RD Parallax    ======================*/
.parallax {
  position: relative;
  overflow: hidden;
}
.parallax_image, .parallax_pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-position: center center;
  will-change: transform;
}
.parallax_image {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.parallax_pattern {
  background-repeat: repeat;
}
.parallax_cnt {
  position: relative;
}

/*==================   Thumbnail    ======================*/
.thumb {
  display: block;
  position: relative;
  overflow: hidden;
}
.thumb img {
  width: 100%;
  height: auto;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.thumb_overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #fff;
  background: transparent;
}
.thumb_overlay:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  font: 400 40px "Material Icons";
  line-height: 40px;
  margin-top: -20px;
  text-align: center;
}
.lt-ie9 .thumb_overlay:before {
  display: none;
}
.thumb:hover .thumb_overlay {
  opacity: 1;
  background: rgba(46, 54, 157, 0.5);
}
.lt-ie9 .thumb:hover .thumb_overlay {
  background: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#802E369D', endColorstr='#802E369D')";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#802E369D', endColorstr='#802E369D');
  zoom: 1;
}
.lt-ie9 .thumb:hover .thumb_overlay:before {
  display: block;
}
.thumb:hover img {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/*==================  cbp-so-scroller   ======================*/
.cbp-so-scroller {
  overflow: hidden;
}

.cbp-so-section {
  position: relative;
  overflow: hidden;
}

/* Initial state (hidden or anything else) */
.cbp-so-init .cbp-so-side {
  opacity: 0;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.cbp-so-init .cbp-so-side-left {
  -webkit-transform: translateX(-80px);
  -moz-transform: translateX(-80px);
  transform: translateX(-80px);
}

.cbp-so-init .cbp-so-side-right {
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  transform: translateX(80px);
}

/* Animated state */
/* add you final states (transition) or your effects (animations) for each side */
.cbp-so-section.cbp-so-animate .cbp-so-side-left,
.cbp-so-section.cbp-so-animate .cbp-so-side-right {
  -webkit-transition: -webkit-transform .7s, opacity 0.5s;
  -moz-transition: -moz-transform .7s, opacity 0.5s;
  transition: transform .7s, opacity 0.5s;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

/* For example, add a delay for the right side:*/
.cbp-so-section.cbp-so-animate .cbp-so-side-right {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/*========================================================
                     HEADER  Section
=========================================================*/
header {
  background: #FFF;
}
header .brand {
  float: left;
}
header .header-right {
  overflow: hidden;
  height: 90px;
  text-align: center;
  background: #FFFFFF;
  padding: 24px 10px 0 24px;
}

@media (max-width: 780px) {
    header .header-right {
        padding: 24px 0px 0 0px;
    }
  }

header .header-right address {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 26px;
  color: #eb3d43;
}
header .header-right address a {
  display: inline-block;
}

/*========================================================
                     CONTENT  Section
=========================================================*/
main {
  display: block;
  background: #facfc8;
}

/*========================================================
                     FOOTER  Styles
=========================================================*/
footer {
  padding-top: 70px;
  padding-bottom: 44px;
  background: #665555;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  footer {
    padding-bottom: 120px;
  }
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #f3e1e1;
}
footer h4 {
  letter-spacing: 1.2px;
}
footer .brand {
  background: #000000;
}
footer .copyright {
  margin-top: 15px;
  font-size: 16px;
}
@media (max-width: 1199px) {
  footer .copyright {
    margin-top: 60px;
  }
}



/* menu superior y lateral */
ul.nav li{
  float: left;
  font-size: 16px;
  position: relative;
  display: block;
}


ul.nav li a{
  font-weight: 400;
  color: #ff0000;
  padding: 15px 20px;
  line-height: 20px;
  display: block;
}

@media (max-width: 780px) {
    ul.nav li a {
        padding: 15px 6px;
    }
  }

.navbar-nav>li>a:before {
  position: absolute;
  display: block;
  content: "";
  background-color: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  -webkit-transition: height ease .3s;
  transition: height ease .3s;
  z-index: -1;
}

.navbar-nav>li.active a:before {
  height: 4px;
}

.navbar-nav>li>a:hover {
  color: #E8413F;
  background-color: #FACFC8;
}


#ms-slidebar{
  background-color: #FFF;
}
ul.mnulateral li {
  width: 100%;
}
.btn-ms-menu{display: none;}
@media (max-device-width: 480px) {
  .navbar{
    display: none;
  }
  .btn-ms-menu{
    display: inline;
    float: right;
    margin-top: 20px;
  }
  header .brand {
    width: 60%;
  }
}




/* animacion menu superior fixed */
@-webkit-keyframes fadeInDownPerso {
  from {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
to {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
}@keyframes fadeInDownPerso {
  from {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
to {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
}.ms-navbar .fadeInDownPerso {
  -webkit-animation-name: fadeInDownPerso;
  animation-name: fadeInDownPerso;
}
.ms-navbar.shrink {
  -webkit-animation: fadeInDownPerso;
  animation: fadeInDownPerso;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.ms-navbar.shrink .btn-navbar-menu {
  display: block;
}
.ms-navbar.shrink .navbar-brand {
  display: inline-block;
}
.ms-navbar.shrink .btn-menu {
  display: none;
}

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}




.navbar-fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}


.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}


/* menu superior fixed */
.navbar-fixed-top {
  background: #ffffff;
  width: 100%;
  padding-left: 30%;
  height: 51px;
  border-bottom: 1px solid #ff0000 ;
}

.logomini {
  display: none;
}

.navbar-static-top .logo {
  display: block;
}
.navbar-static-top .logomini {
  display: none;
}
.navbar-fixed-top .logo {
  display: none;
}
.navbar-fixed-top .logomini {
  display: block;
}

.navbar-static-top .brand {
  padding: 24px 15px;
}
.navbar-fixed-top .brand {
  padding: 5px 5px;
}

.navbar-fixed-top .header-right{
  padding: 2px 10px 0 14px;
  height: 50px;
}

.titulo-producto{
  font-size: 41px;
}

.box-nosotros{
  background-color: #FCC7CD99;
  padding: 40px;
}

.box-home .item{
  background-color: #FCC7CD99;
  padding: 40px;
  min-height: 350px
}

.box-home .item ul li{
  line-height: 35px;
  width: 300px;
  margin: 10px
}

.box-home .item ul li i {
  width: 34px;
  height: 34px;
  font-size: 15px;
  line-height: 34px;
  color: #fff;
  background: #ff0000;
  border-radius: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  text-decoration: none;
}


@media (max-width: 767px){
    .subscribe-form .mfControls {
        margin-top: 48px !important;
        display: block !important;
    }
    #btnreset{
        margin-top: 28px !important;
    }
}