@import url("https://fonts.googleapis.com/css2?family=Muli:wght@400;600;700&display=swap");
a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

body {
  font-family: Muli, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: #000;
}
body.preload {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
body::after {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.5, 0.5, 0.5, 1);
  opacity: 0;
  z-index: 9999;
}
body.menu-active::after {
  opacity: 1;
  pointer-events: all;
}

main {
  position: relative;
  overflow: hidden;
}

.form-group + .form-group {
  margin-top: 15px;
}

.form-control {
  padding: 0.5em 1em;
  border: 1px solid;
  border-radius: 5px;
  width: 100%;
  display: block;
}
.form-control:disabled {
  background: #eee;
}

.container {
  max-width: 1600px;
}

.container-lg {
  max-width: 992px;
}

.top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
.top ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .meta {
  font-weight: 600;
}
.top .meta a {
  display: flex;
  align-items: center;
}
.top .meta i {
  color: #C51D1D;
  font-size: 1.25em;
}
.top .meta span {
  margin-left: 15px;
}
.top .meta li {
  margin-right: 75px;
}
.top .icons li {
  position: relative;
}
.top .icons li + li {
  margin-left: 30px;
}
.top .icons a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  color: #C51D1D;
}
.top .icons a:hover {
  color: #2D3C67;
}
.top .icons a i {
  font-size: 2em;
}

.header {
  padding: 15px 0;
  position: relative;
  z-index: 1;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  max-height: 100px;
  margin-bottom: -30px;
  background: #fff;
  padding: 0 10px 10px;
  border-bottom: 1px solid #eee;
}

.nav {
  font-weight: 600;
}
.nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav ul li {
  margin-left: 45px;
}
.nav ul li .nav-link {
  color: inherit;
}
.nav ul li .nav-link:hover, .nav ul li .nav-link.active {
  color: #C51D1D;
}

.divider hr {
  border-color: #eee;
  opacity: 1;
  margin: auto;
}

.w-100 {
  width: 100%;
}

.slider h1 {
  font-size: 4em;
  font-weight: bold;
  color: #fff;
}
.slider .content-html {
  font-weight: 600;
  margin-top: 30px;
  font-size: 1.25em;
}

#cart-full.busy {
  pointer-events: none;
  opacity: 0.15;
}
#cart-full ul li {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
#cart-full ul li:not(:first-child) {
  border-top: 1px solid;
  margin-top: 15px;
  padding-top: 15px;
}
#cart-full ul li > *:not(.input-number) {
  padding: 15px;
}
#cart-full .img-wrapper {
  width: 96px;
}
#cart-full h4 {
  font-weight: bold;
  font-size: 1.25em;
}
#cart-full h3 {
  color: #C51D1D;
}
#cart-full table p {
  color: #C51D1D;
  margin-top: 7.5px;
}

.cart-review {
  border-radius: 22.5px;
  border: 1px solid;
  padding: 30px;
  background: #fff;
  color: #000;
}
.cart-review:not(:first-child) {
  margin-top: 30px;
}
.cart-review h2 {
  font-weight: 600;
  font-size: 1.25em;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.25;
}
.cart-review p {
  margin-top: 7.5px;
}
.cart-review h3 {
  margin-top: 15px;
  font-size: 1.25em;
}
.cart-review .form-label {
  font-size: 0.75em;
  font-weight: 600;
  display: flex;
}
.cart-review .form-label:not(:first-child) {
  margin-top: 15px;
}
.cart-review .form-label span {
  margin-left: 7.5px;
}

.content-html {
  line-height: 1.5;
}
.content-html > *:not(:first-child) {
  margin-top: 1em;
}
.content-html blockquote {
  background: #eee;
  padding: 15px;
}

.bg-primary {
  background-color: #C51D1D !important;
}

.content {
  padding: 90px 0;
}
.content h1 {
  color: #C51D1D;
  margin-bottom: 1em;
  font-size: 2em;
}

.btn {
  color: #fff;
  font-size: 1.25em;
  font-weight: 600;
  padding: 0.75em 1em;
  background: #C51D1D;
  border-radius: 2.5em;
  display: inline-flex;
  transition: 0.3s cubic-bezier(0.5, 0.5, 0.5, 1);
  border: none;
  justify-content: center;
}
.btn:hover {
  background: #000;
  color: #fff;
}
.btn.btn-sm {
  font-size: 1em;
}
.btn.btn-alt {
  background: #000;
}
.btn.btn-alt:hover {
  background: #C51D1D;
}

.hero {
  color: #fff;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D3C67;
}
.hero img {
  opacity: 0.5;
}
.hero .icon-big {
  font-size: 4em;
  color: #C51D1D;
  margin-bottom: 15px;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
}
.hero .content-html {
  font-size: 1.25em;
}
.hero .before {
  margin-top: 30px;
}
.hero .btn-container {
  margin-top: 60px;
}

.has-shadow {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  overflow: hidden;
}

.card {
  line-height: 1.5;
  transition: 0.3s cubic-bezier(0.5, 0.5, 0.5, 1);
  position: relative;
}
.card:hover {
  transform: translateY(-7.5px);
}
.card .img-holder {
  margin-bottom: 15px;
}
.card h3 {
  font-size: 1.25em;
  font-weight: 600;
  color: #C51D1D;
  margin-bottom: 7.5px;
}
.card h4 {
  font-weight: 600;
}

.table th, .table td {
  vertical-align: middle;
}

#tbody {
  counter-reset: section;
}
#tbody tr {
  counter-increment: section;
}
#tbody tr td:first-child::before {
  content: counter(section);
}

.footer {
  background: #C51D1D;
  color: #fff;
  line-height: 1.5;
  padding: 30px 0;
  border-top: 1px solid #fff;
}
.footer .before {
  height: 100px;
  background: url("../images/footer.svg") bottom center no-repeat;
  background-size: cover;
}
.footer .footer-logo {
  width: 50%;
  max-width: 180px;
}
.footer h6 {
  font-weight: 600;
  margin-bottom: 15px;
}
.footer h6:not(:first-child) {
  margin-top: 30px;
}
.footer .social {
  margin-top: 15px;
  display: flex;
  align-items: center;
  font-size: 1.5em;
}
.footer .social a + a {
  margin-left: 15px;
}
.footer .copyright {
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.footer .map-container {
  position: relative;
  padding-bottom: 80%;
  margin-top: -70px;
}
.footer .map-container > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pagination {
  display: flex;
}

.page-link {
  position: relative;
  display: block;
  color: #C51D1D;
  text-decoration: none;
  padding: 0.5em;
  transition: 0.3s cubic-bezier(0.5, 0.5, 0.5, 1);
}
.page-link:hover {
  z-index: 2;
  color: #fff;
  background-color: #C51D1D;
  border-color: #C51D1D;
}

.page-item:not(:first-child) .page-link {
  margin-left: 0;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #C51D1D;
  border-color: #C51D1D;
}
.page-item.disabled .page-link {
  pointer-events: none;
}

.has-margin .slick-slide {
  margin: 0 30px;
}

.slick-slider {
  display: flex;
  align-items: center;
  position: relative;
}
.slick-slider .slick-list {
  flex: 1;
}
.slick-slider .slick-arrow {
  font-size: 3em;
  width: 1em;
  height: 1em;
  text-align: center;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.5, 0.5, 0.5, 1);
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.slick-slider .slick-arrow.slick-left {
  left: 30px;
}
.slick-slider .slick-arrow.slick-right {
  right: 30px;
}
.slick-slider .slick-arrow:hover {
  opacity: 0.5;
}

.alert {
  color: #C51D1D;
  font-weight: 600;
  border: 2px solid;
  text-align: center;
  margin-bottom: 30px;
  padding: 1em;
}

#cuenta h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

.home-slider {
  position: relative;
}
.home-slider .after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url("../images/slider.svg") bottom center no-repeat;
  background-size: cover;
}

.productos {
  padding: 75px 0;
  background: #FCFAF8;
}
.productos .after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 25%;
  margin: auto;
}
.productos h1 {
  font-size: 2.5em;
  font-weight: bold;
  color: #C51D1D;
}
.productos h2 {
  font-size: 1.75em;
  font-weight: bold;
  color: #C51D1D;
}
.productos .grid {
  margin-top: 75px;
}
.productos .slick-slider .slick-arrow {
  font-size: 1.5em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.5, 0.5, 0.5, 1);
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 60px;
  margin: auto;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.5;
}
.productos .slick-slider .slick-arrow.slick-left {
  left: 0;
}
.productos .slick-slider .slick-arrow.slick-right {
  right: 0;
}
.productos .slick-slider .slick-arrow:hover {
  opacity: 1;
}
.productos .slick-slider .card {
  padding-bottom: 75px;
}
.productos .slick-slider .card:hover {
  transform: none;
}
.productos .slick-slider .card .img-holder.has-shadow {
  box-shadow: none;
  border-radius: 0;
}
.productos .slick-slider .card .card-body {
  position: absolute;
  top: calc(100% - 75px);
}

.sidebar-nav {
  margin-top: 90px;
}
.sidebar-nav h3 {
  text-transform: uppercase;
}
.sidebar-nav li + li {
  margin-top: 30px;
}
.sidebar-nav li a:hover, .sidebar-nav li a.active {
  color: #C51D1D;
}

.sectores {
  margin: 120px auto;
  text-align: center;
}
.sectores h1 {
  font-size: 1.5em;
  margin: 0 auto;
  max-width: 768px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 90px;
}
.sectores .after {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 25%;
}
.sectores .before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  max-width: 25%;
  margin: auto;
}
.sectores h3 {
  font-size: 1.5em;
  color: #C51D1D;
  font-weight: 600;
  margin-top: 30px;
}

.logos {
  margin: 120px auto;
}
.logos h1 {
  font-weight: bold;
  text-align: center;
  font-size: 2.5em;
  color: #C51D1D;
  margin-bottom: 30px;
}

.articles .img-holder {
  padding-bottom: 66.66666666%;
  width: 100%;
}
.articles .inner-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.articles h3 {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 7.5px;
}
.articles .relative {
  color: #fff;
  padding: 30px;
  background: #21303F;
  margin: -30px 30px auto;
  flex: 1;
  transition: 0.3s cubic-bezier(0.5, 0.5, 0.5, 1);
}
.articles a:hover .relative {
  background: #C51D1D;
}

.related {
  background: #FCFAF8;
}
.related h1 {
  text-align: center;
  margin-bottom: 45px;
  font-size: 1.5em;
  font-weight: 600;
}

small {
  font-weight: normal;
  font-size: 0.5625em;
}

.product-info .inner-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-info .flex-1 {
  max-width: 576px;
  padding: 45px 75px;
}
.product-info .content-html {
  font-size: 0.75em;
  margin-top: 15px;
}
.product-info h1 {
  font-size: 2.5em;
  color: #C51D1D;
  font-weight: 600;
  line-height: 1.25;
}
.product-info h4 {
  font-size: 1.75em;
  font-weight: 600;
  margin-top: 15px;
}
.product-info h5 {
  font-weight: normal;
}
.product-info .btn {
  font-size: 1em;
}
.product-info .product-colors {
  margin-top: 15px;
  color: #C51D1D;
}
.product-info .product-colors ul {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.product-info .product-colors ul li + li {
  margin-left: 15px;
}
.product-info .product-colors ul li a {
  display: block;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.product-info .product-form {
  margin-top: 15px;
}
.product-info .product-form span {
  color: #C51D1D;
}

.cart-count {
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  width: 1.75em;
  line-height: 1.75em;
  height: 1.75em;
  text-align: center;
  font-weight: bold;
  background: #2D3C67;
  color: #fff;
  border-radius: 50%;
  font-size: 0.5625em;
}

.btn-whatsapp {
  margin-top: 15px;
  display: block;
  color: #fff;
  background: #66C17F;
  padding: 15px;
  text-align: center;
  transition: 0.3s cubic-bezier(0.5, 0.5, 0.5, 1);
}
.btn-whatsapp:hover {
  color: #fff;
  background: #307744;
}

.input-number {
  border: 1px solid;
  border-radius: 3em;
  display: inline-flex;
  align-items: center;
  text-align: center;
}
.input-number a {
  padding: 0.5em 1em;
}
.input-number input {
  width: 45px;
  padding: 0.5em 0;
  height: 1em;
  text-align: center;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #C51D1D;
  color: #fff;
  padding: 15px;
  z-index: 10000;
  overflow: auto;
  text-transform: uppercase;
  visibility: hidden;
  transition: 0.3s cubic-bezier(0.5, 0.5, 0.5, 1);
  transform: translateX(-100%);
  width: 66.66666666%;
  max-width: 360px;
  font-size: 1.25em;
}
.mobile-menu.menu-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-menu .mobile-logo {
  max-height: 90px;
  max-width: 75%;
  filter: brightness(0) invert(1);
}
.mobile-menu ul li {
  margin-top: 1em;
}
.mobile-menu ul li.active {
  color: rgba(255, 255, 255, 0.5);
}
.mobile-menu .dropdown-menu {
  display: none;
  text-transform: initial;
}
.mobile-menu .dropdown-menu ul li {
  margin-top: 0.5em;
}
.mobile-menu form {
  border: 1px solid #ccc;
  border-radius: 3em;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83333333em;
  margin-top: 1em;
}
.mobile-menu form input {
  border: none;
  outline: none;
  width: 100%;
}
.mobile-menu form button {
  margin-left: 1em;
}

@media screen and (max-width: 1366px) {
  .container {
    max-width: 1600px;
  }
}
@media screen and (max-width: 1200px) {
  .nav ul li {
    margin-left: 30px;
  }
}
@media screen and (max-width: 992px) {
  .nav ul li {
    margin-left: 30px;
  }

  .top .meta span {
    display: none;
  }
  .top .meta li {
    margin-right: 30px;
  }

  .header .logo {
    max-height: 70px;
    margin-bottom: auto;
    padding: 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .top .container {
    display: block;
  }
  .top .meta {
    display: none;
  }

  .row-grid-big {
    margin: -15px;
  }
  .row-grid-big > * {
    padding: 15px;
  }

  .slider h1 {
    font-size: 3em;
  }

  .footer .map-container {
    margin-top: auto;
  }

  .product-info .flex-1 {
    padding: 45px 15px;
    margin: auto;
  }
}
@media screen and (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .has-margin .slick-slide {
    margin: 0 15px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .row-grid {
    margin: -7.5px;
  }
  .row-grid > * {
    padding: 7.5px;
  }

  .slider h1 {
    font-size: 2.5em;
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .content {
    padding: 45px 0;
  }

  .sectores, .logos {
    margin: 45px auto;
  }

  .sectores h1 {
    margin-bottom: 45px;
  }

  .logos h1 {
    font-size: 2em;
  }

  .productos .grid {
    margin-top: 45px;
  }

  .slick-slider {
    display: flex;
    align-items: center;
    position: relative;
  }
  .slick-slider .slick-list {
    flex: 1;
  }
  .slick-slider .slick-arrow {
    font-size: 2em;
  }
  .slick-slider .slick-arrow.slick-left {
    left: 15px;
  }
  .slick-slider .slick-arrow.slick-right {
    right: 15px;
  }
}

/*# sourceMappingURL=style.css.map */
