.res-1 {
  display: grid;
  gap: 20px;
}
.res-1 label {
  display: flex;
  gap: 10px;
  align-content: center;
  align-items: center;
}

.res-1-3 {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 959px) {
  .res-1-3 {
    grid-template-columns: 1fr;
  }
}

.res-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  row-gap: 50px;
}
@media screen and (max-width: 599px) {
  .res-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .res-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .res-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.res-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  row-gap: 50px;
}
@media screen and (max-width: 599px) {
  .res-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .res-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .res-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.res-3-2-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  row-gap: 50px;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .res-3-2-1 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .res-3-2-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .res-3-2-1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.res-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 599px) {
  .res-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .res-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .res-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.res-4-2-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 599px) {
  .res-4-2-1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .res-4-2-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .res-4-2-1 {
    grid-template-columns: repeat(3, 1fr);
  }
}

body {
  font-family: sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: auto;
  overflow: auto;
  -webkit-animation: taadaa 0.3s;
          animation: taadaa 0.3s;
}

@-webkit-keyframes taadaa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes taadaa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.contenedor {
  max-width: 1220px;
  margin: auto;
  width: 100%;
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .contenedor {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 959px) {
  .contenedor {
    width: 90%;
    margin: auto;
  }
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.doble {
  gap: 0;
}
.doble .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  align-self: stretch;
  justify-content: center;
  align-content: center;
  padding: 15%;
}
.doble .info h3 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 600;
  letter-spacing: 0px;
}
.doble .info p {
  font-size: 20px;
}

.bgcover {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
}

.deg1 {
  background: #E01947;
}

.deg2 {
  background: #ED1A4B;
}

.deg3 {
  background: #C7163F;
}

.deg4 {
  background: #A11233;
}

.menu-transparente {
  width: 100%;
  background: rgba(255, 255, 255, 0);
  transition: 0.5s;
}
.menu-transparente .mid {
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid #e5e5e5;
}
.menu-transparente .mid .contenedor {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-areas: "logo item1 item2 item3 buscador";
  grid-template-columns: 275px auto auto auto;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 959px) {
  .menu-transparente .mid .contenedor {
    grid-template-columns: 160px auto auto;
    grid-template-areas: "logo . buscador";
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.menu-transparente .mid .contenedor .logo {
  grid-area: logo;
  margin: auto;
  width: 100%;
}
.menu-transparente .mid .contenedor .logo .logonegro {
  display: none;
}
@media screen and (max-width: 959px) {
  .menu-transparente .mid .contenedor .item1,
.menu-transparente .mid .contenedor .item2,
.menu-transparente .mid .contenedor .item3,
.menu-transparente .mid .contenedor .item4 {
    display: none;
  }
}
.menu-transparente .mid .contenedor .item1 p,
.menu-transparente .mid .contenedor .item2 p,
.menu-transparente .mid .contenedor .item3 p,
.menu-transparente .mid .contenedor .item4 p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}
.menu-transparente .mid .contenedor .item1 p a,
.menu-transparente .mid .contenedor .item2 p a,
.menu-transparente .mid .contenedor .item3 p a,
.menu-transparente .mid .contenedor .item4 p a {
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}
.menu-transparente .mid .contenedor .item1 {
  grid-area: item1;
}
.menu-transparente .mid .contenedor .item2 {
  grid-area: item2;
}
.menu-transparente .mid .contenedor .item3 {
  grid-area: item3;
}
.menu-transparente .mid .contenedor .buscador {
  grid-area: buscador;
  border-radius: 5px;
  color: #414141;
  width: 100%;
  border: 2px solid #e5e5e5;
}
.menu-transparente .mid .contenedor .buscador .uk-search-icon {
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 1.1875rem;
  border-radius: 2px;
}
.menu-transparente .mid .contenedor .buscador .uk-search-icon:hover {
  background-color: #f02757;
  color: #ffffff;
  transition: 0.5s;
}
.menu-transparente .mid .contenedor .buscador .uk-search-input:focus {
  background-color: rgba(0, 0, 0, 0);
  border-color: #e5e5e5;
}
.menu-transparente .bot {
  background: rgba(255, 255, 255, 0);
  padding-top: 10px;
  padding-bottom: 20px;
}
.menu-transparente .bot .contenedor {
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 5px;
  display: grid;
  align-items: center;
  grid-template-columns: 205px auto auto;
  grid-template-areas: "menu-categoria menu-principal buscador";
}
@media screen and (max-width: 959px) {
  .menu-transparente .bot .contenedor {
    display: grid;
    gap: 10px;
    grid-template-columns: 200px auto auto;
    grid-template-areas: "menu-categoria menu-categoria boton-phone";
  }
}
@media screen and (max-width: 599px) {
  .menu-transparente .bot .contenedor {
    grid-template-columns: auto auto;
    grid-template-areas: "menu-categoria  boton-phone";
  }
}
.menu-transparente .bot .contenedor .menu-categoria {
  grid-area: menu-categoria;
  background: #f02757;
  color: white;
  border-radius: 10px;
  transition: 0.5s;
  width: 200px;
}
.menu-transparente .bot .contenedor .menu-categoria .uk-navbar-toggle {
  min-height: inherit;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 14px 30px;
}
.menu-transparente .bot .contenedor .menu-categoria:hover {
  background: #f02757;
}
.menu-transparente .bot .contenedor .menu-categoria .menu-catego {
  width: 275px;
  padding: 0;
  list-style: none;
  left: 0 !important;
}
.menu-transparente .bot .contenedor .menu-categoria .menu-catego > li {
  width: 100%;
  height: auto;
  float: none;
  border-bottom: 1px solid #eee;
}
.menu-transparente .bot .contenedor .menu-categoria .menu-catego > li a {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-content: center;
  color: black;
  font-size: 14px;
  padding: 10px 15px;
  font-weight: 500;
  line-height: 25px;
  transition: 0.5s;
  text-decoration: none;
  background: transparent;
  border: none;
  justify-content: space-between;
}
.menu-transparente .bot .contenedor .menu-categoria .menu-catego > li a:hover {
  color: #f02757;
}
.menu-transparente .bot .contenedor .menu-categoria .menu-catego > li a span:nth-child(3n) {
  margin-left: auto;
}
.menu-transparente .bot .contenedor .menu-categoria .menu-catego > li .subitem {
  border-top: 2px solid #f02757;
  top: 0px !important;
}
.menu-transparente .bot .contenedor .menu-principal {
  grid-area: menu-principal;
  display: flex;
  gap: 30px;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 0;
}
@media screen and (max-width: 959px) {
  .menu-transparente .bot .contenedor .menu-principal {
    display: none;
  }
}
.menu-transparente .bot .contenedor .menu-principal li > a {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  font-weight: 700;
  transition: all 350ms ease-out;
  line-height: 14px;
  position: relative;
}
.menu-transparente .bot .contenedor .boton-phone {
  grid-area: boton-phone;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 959px) {
  .menu-transparente .bot .contenedor .boton-phone {
    display: block;
  }
}
.menu-transparente .uk-offcanvas-bar .menu-principal {
  list-style: none;
  padding: 0;
  text-transform: capitalize;
  display: grid;
  gap: 15px;
}
.menu-transparente .uk-offcanvas-bar .menu-principal li a {
  text-decoration: none;
}
.menu-transparente .uk-offcanvas-bar .menu-principal li a:hover {
  text-decoration: none;
}

.menu2 {
  width: 100%;
  background: #ffffff;
}
.menu2 .mid {
  transition: 0.5s;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid #e5e5e5;
}
.menu2 .mid .contenedor {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-areas: "logo item1 item2 item3 buscador";
  grid-template-columns: 275px auto auto auto;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 959px) {
  .menu2 .mid .contenedor {
    grid-template-columns: 160px auto auto;
    grid-template-areas: "logo . buscador";
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.menu2 .mid .contenedor .logo {
  grid-area: logo;
  margin: auto;
  width: 100%;
}
.menu2 .mid .contenedor .logo .logonegro {
  display: block;
}
.menu2 .mid .contenedor .logo .logoblanco {
  display: none;
}
@media screen and (max-width: 959px) {
  .menu2 .mid .contenedor .item1,
.menu2 .mid .contenedor .item2,
.menu2 .mid .contenedor .item3,
.menu2 .mid .contenedor .item4 {
    display: none;
  }
}
.menu2 .mid .contenedor .item1 p,
.menu2 .mid .contenedor .item2 p,
.menu2 .mid .contenedor .item3 p,
.menu2 .mid .contenedor .item4 p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
.menu2 .mid .contenedor .item1 p a,
.menu2 .mid .contenedor .item2 p a,
.menu2 .mid .contenedor .item3 p a,
.menu2 .mid .contenedor .item4 p a {
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
.menu2 .mid .contenedor .item1 {
  grid-area: item1;
}
.menu2 .mid .contenedor .item2 {
  grid-area: item2;
}
.menu2 .mid .contenedor .item3 {
  grid-area: item3;
}
.menu2 .mid .contenedor .buscador {
  grid-area: buscador;
  border-radius: 5px;
  color: #414141;
  width: 100%;
  border: 2px solid #e5e5e5;
}
.menu2 .mid .contenedor .buscador .uk-search-icon {
  border: none;
  background: transparent;
  color: #000000;
  font-size: 1.1875rem;
  border-radius: 2px;
}
.menu2 .mid .contenedor .buscador .uk-search-icon:hover {
  background-color: #f02757;
  color: #ffffff;
  transition: 0.5s;
}
.menu2 .mid .contenedor .buscador .uk-search-input:focus {
  background-color: rgba(0, 0, 0, 0);
  border-color: #e5e5e5;
}
.menu2 .bot {
  background: rgba(255, 255, 255, 0);
  padding-top: 10px;
  padding-bottom: 20px;
}
.menu2 .bot .contenedor {
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 5px;
  display: grid;
  align-items: center;
  grid-template-columns: 205px auto auto;
  grid-template-areas: "menu-categoria menu-principal buscador";
}
@media screen and (max-width: 959px) {
  .menu2 .bot .contenedor {
    display: grid;
    gap: 10px;
    grid-template-columns: 200px auto auto;
    grid-template-areas: "menu-categoria menu-categoria boton-phone";
  }
}
@media screen and (max-width: 599px) {
  .menu2 .bot .contenedor {
    grid-template-columns: auto auto;
    grid-template-areas: "menu-categoria  boton-phone";
  }
}
.menu2 .bot .contenedor .menu-categoria {
  grid-area: menu-categoria;
  background: #f02757;
  color: white;
  border-radius: 10px;
  transition: 0.5s;
  width: 200px;
}
.menu2 .bot .contenedor .menu-categoria .uk-navbar-toggle {
  min-height: inherit;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 14px 30px;
}
.menu2 .bot .contenedor .menu-categoria:hover {
  background: #f02757;
}
.menu2 .bot .contenedor .menu-categoria .menu-catego {
  width: 275px;
  padding: 0;
  list-style: none;
  left: 0 !important;
}
.menu2 .bot .contenedor .menu-categoria .menu-catego > li {
  width: 100%;
  height: auto;
  float: none;
  border-bottom: 1px solid #eee;
}
.menu2 .bot .contenedor .menu-categoria .menu-catego > li a {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-content: center;
  color: black;
  font-size: 14px;
  padding: 10px 15px;
  font-weight: 500;
  line-height: 25px;
  transition: 0.5s;
  text-decoration: none;
  background: transparent;
  border: none;
  justify-content: space-between;
}
.menu2 .bot .contenedor .menu-categoria .menu-catego > li a:hover {
  color: #f02757;
}
.menu2 .bot .contenedor .menu-categoria .menu-catego > li a span:nth-child(3n) {
  margin-left: auto;
}
.menu2 .bot .contenedor .menu-categoria .menu-catego > li .subitem {
  border-top: 2px solid #f02757;
  top: 0px !important;
}
.menu2 .bot .contenedor .menu-principal {
  grid-area: menu-principal;
  display: flex;
  gap: 30px;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 0;
}
@media screen and (max-width: 959px) {
  .menu2 .bot .contenedor .menu-principal {
    display: none;
  }
}
.menu2 .bot .contenedor .menu-principal li > a {
  text-decoration: none;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  font-weight: 700;
  transition: all 350ms ease-out;
  line-height: 14px;
  position: relative;
}
.menu2 .bot .contenedor .boton-phone {
  grid-area: boton-phone;
  background: transparent;
  border: none;
  color: #000000;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 959px) {
  .menu2 .bot .contenedor .boton-phone {
    display: block;
  }
}
.menu2 .uk-offcanvas-bar .menu-principal {
  list-style: none;
  padding: 0;
  text-transform: capitalize;
  display: grid;
  gap: 15px;
}
.menu2 .uk-offcanvas-bar .menu-principal li a {
  text-decoration: none;
}
.menu2 .uk-offcanvas-bar .menu-principal li a:hover {
  text-decoration: none;
}

.fixed {
  position: fixed;
  z-index: 111;
}

.formulariogoogle {
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  border-style: solid;
  border-color: #484848;
  border-width: 2px 2px 2px 2px;
  border-radius: 24px 24px 24px 24px;
  margin-bottom: 40px;
  background: white;
  display: grid;
  grid-template-columns: 1fr;
  background: transparent;
  gap: 30px;
}
.formulariogoogle .inputBox {
  position: relative;
  padding: 10px;
  border-bottom: 0.5px solid #bbbbbb;
}
.formulariogoogle .inputBox input, .formulariogoogle .inputBox textarea {
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.062rem;
  background: transparent;
  border-radius: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
  color: white;
}
.formulariogoogle .inputBox input:focus, .formulariogoogle .inputBox textarea:focus {
  outline: none;
}
.formulariogoogle .inputBox input:focus ~ label, .formulariogoogle .inputBox textarea:focus ~ label {
  top: -1.125rem;
  left: 10px;
  font-size: 0.75rem;
  height: 10px;
  padding-left: 5px;
  padding-right: 5px;
}
.formulariogoogle .inputBox input:valid ~ label, .formulariogoogle .inputBox textarea:valid ~ label {
  top: -1.125rem;
  left: 10px;
  font-size: 0.75rem;
  height: 10px;
  padding-left: 5px;
  color: #ffffff;
  padding-right: 5px;
}
.formulariogoogle .inputBox input:not([value=""]) ~ label, .formulariogoogle .inputBox textarea:not([value=""]) ~ label {
  top: -1.125rem;
  left: 10px;
  font-size: 0.75rem;
  height: 10px;
  padding-left: 5px;
  color: #ffffff;
  padding-right: 5px;
}
.formulariogoogle .inputBox label {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 0.625rem 0;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  pointer-events: none;
  transition: 0.5s;
}
.formulariogoogle input[type=submit] {
  border: none;
  outline: none;
  color: #fff;
  background-color: #000000;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  border-radius: 0.312rem;
  font-size: 1rem;
  float: right;
}
.formulariogoogle input[type=submit]:hover {
  background-color: #000000;
}

.gallery-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  gap: 20px;
  max-height: 600px;
}
@media screen and (max-width: 959px) {
  .gallery-container {
    max-height: 160px;
  }
}
.gallery-container .gallery-main {
  width: 65%;
}
@media screen and (max-width: 959px) {
  .gallery-container .gallery-main {
    width: 75%;
  }
}
.gallery-container .gallery-main .swiper-button-prev, .gallery-container .gallery-main .swiper-button-next {
  position: absolute;
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  height: 75px;
  width: 40px;
  color: #e9e9e9;
  background: #1e1e1e;
}
@media screen and (max-width: 959px) {
  .gallery-container .gallery-main .swiper-button-prev, .gallery-container .gallery-main .swiper-button-next {
    width: 40px;
    height: 20px;
  }
}
.gallery-container .gallery-main .swiper-button-prev::after, .gallery-container .gallery-main .swiper-button-next::after {
  font-size: 12px;
}
.gallery-container .gallery-main .swiper-button-prev {
  right: 40px;
}
.gallery-container .gallery-thumbs {
  order: -1;
  width: 35%;
}
@media screen and (max-width: 959px) {
  .gallery-container .gallery-thumbs .info {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .gallery-container .gallery-thumbs {
    width: 25%;
  }
}
.gallery-container .gallery-thumbs .swiper-slide-active {
  opacity: 0.9;
}
.gallery-container .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  /*img {
        margin-left: -15px;
      }*/
}
.gallery-container .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
}

.swiper1 .swiper-wrapper {
  height: 80vh;
  min-height: 700px;
}
.swiper1 .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper1 video.fullscreen {
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper1 video.fullscreen::-webkit-media-controls {
  display: none !important;
}
.swiper1 .info {
  z-index: 1;
}
.swiper1 .info h1 {
  font-size: 56px;
  line-height: 1;
  white-space: normal;
  word-break: break-word;
  color: #fff;
  z-index: 100;
  text-transform: uppercase;
  font-weight: bold;
}
.swiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper2 {
  margin-bottom: 50px;
}
.swiper2 .swiper-wrapper {
  margin-bottom: 50px;
}

.swiper3 {
  margin-bottom: 50px;
}
.swiper3 .swiper-wrapper {
  margin-bottom: 80px;
}

.producto {
  display: grid;
  gap: 50px;
  align-items: start;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1919px) {
  .producto {
    grid-template-columns: 430px auto;
  }
}
@media screen and (max-width: 1279px) {
  .producto {
    grid-template-columns: 400px auto;
  }
}
@media screen and (max-width: 959px) {
  .producto {
    grid-template-columns: 1fr;
  }
}
.producto article {
  position: relative;
  display: grid;
  gap: 30px;
}
.producto article .imagen-producto {
  width: 100%;
}
.producto article .zoomWrapper img {
  width: 100% !important;
}
.producto .info h1 {
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.producto .info .precio {
  display: flex;
}
.producto .info .precio p {
  padding: 0;
  margin: 0;
  gap: 10px;
}
.producto .info .precio p:nth-child(1) {
  text-decoration: line-through;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #bcbcbc;
  margin-right: 0.625rem;
}
.producto .info .precio p:nth-child(2) {
  font-weight: 400;
  line-height: 24px;
  font-size: 24px;
  color: #000;
  letter-spacing: 0.6px;
}
.producto .info .descripcion {
  font-size: 14px;
  color: #797979;
  font-weight: 400;
  line-height: 24px;
}
.producto .info .boton-compra {
  padding: 30px 0;
  border-width: 1px 0;
  border-style: dashed;
  border-color: #ddd;
  margin: 30px 0;
}
.producto .info .boton-compra .item1 {
  display: flex;
  gap: 20px;
}
.producto .info .boton-compra .item1 p {
  font-size: 15px;
  line-height: 50px;
  color: #656565;
}
.producto .info .boton-compra .item1 .masmenos {
  display: grid;
  border-radius: 30px;
  background: rgb(255, 255, 255);
  grid-template-columns: 30px auto 30px;
  max-width: 120px;
  overflow: hidden;
  height: 50px;
}
.producto .info .boton-compra .item1 .masmenos button {
  background: transparent;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}
.producto .info .boton-compra .item1 .masmenos button:hover {
  background: #f02757;
}
.producto .info .boton-compra .item1 .masmenos input {
  border: none;
  background: #fff;
  text-align: center;
}
.producto .info .boton-compra .item1 .masmenos input:focus-visible {
  outline: 0px dotted #333;
}
.producto .info .boton-compra .item1 .add button {
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  background: #f02757;
  line-height: 50px;
  padding: 0 30px;
  color: #fff;
  height: 50px;
  text-transform: capitalize;
  width: 100%;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}
.producto .info .boton-compra .item3 {
  display: flex;
  gap: 20px;
}
.producto .info .boton-compra .item3 button {
  background: transparent;
  color: #4d4d4d;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
  border: none;
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
}
.producto .info .boton-compra .item3 button:hover {
  color: #f02757;
}
.producto .info .boton-compra .item4 {
  padding-top: 30px;
  display: grid;
  gap: 20px;
}
.producto .info .boton-compra .item4 .cuadros {
  display: grid;
  gap: 10px;
  grid-template-columns: 35px auto;
}
.producto .info .boton-compra .item4 .cuadros p,
.producto .info .boton-compra .item4 .cuadros h6 {
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000000;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/*.quitafixed{
    .img{
        display: none;
        @include lt-md {
            display: block;
        }
    }
    .img2{
        @include lt-md {
            display: none;
        }
    }

}*/
.zoom {
  background: #f02757;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  z-index: 11;
  right: 20px;
  border-radius: 50%;
  top: 20px;
  transition: 0.5s;
}

.zoom:hover {
  background: #000000;
  color: #ffffff;
}

.filtrar {
  display: grid;
  grid-template-columns: 300px auto;
  align-items: start;
  gap: 50px;
}
@media screen and (max-width: 959px) {
  .filtrar {
    grid-template-columns: 1fr;
  }
}
.filtrar .filtrar-btn {
  display: none;
}
.filtrar .filtrar-btn button {
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  background: #f02757;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 10px;
  align-content: center;
  display: flex;
}
.filtrar .filtrar-btn button h3 {
  font-size: 18px;
  color: white;
  margin: 0;
}
@media screen and (max-width: 959px) {
  .filtrar .filtrar-btn {
    display: flex;
  }
}
.filtrar .aside {
  display: grid;
  gap: 30px;
}
@media screen and (max-width: 959px) {
  .filtrar .aside {
    display: none;
  }
}
.filtrar .aside article {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 30px;
}
.filtrar .aside article h4 {
  background: none;
  color: #01213a;
  text-transform: capitalize;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  line-height: 35px;
  border-radius: 0;
  margin-bottom: 10px;
}
.filtrar .aside article p {
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  display: block;
  margin: 0;
  line-height: 36px;
  color: black;
  text-transform: capitalize;
  cursor: pointer;
}
.filtrar .aside article p:hover {
  color: #f02757;
}
.filtrar .main .filtros {
  width: 100%;
  height: 100px;
  background: red;
  margin-bottom: 20px;
}

.colores {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.colores p {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  font-size: 0 !important;
}
.colores .rojo {
  background: red;
}
.colores .negro {
  background: black;
}
.colores .verde {
  background: green;
}
.colores .azul {
  background: blue;
}
.colores .celeste {
  background: skyblue;
}
.colores .rosado {
  background: pink;
}

.tab1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 30px 0;
  background: #fff;
  border-radius: 5px;
}
.tab1 ul:nth-child(1) {
  border: none;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 30px;
  text-align: center;
  justify-content: center;
}
.tab1 ul:nth-child(1) li a {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #797979;
  background: transparent;
  border-radius: 0;
  position: relative;
  padding: 8px 0;
  margin-right: 30px;
}
.tab1 ul:nth-child(1) li a:before {
  content: "";
  background: #01213a;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.tab1 ul:nth-child(1) .uk-active a {
  color: #000000;
}
.tab1 ul:nth-child(1) .uk-active a:before {
  content: "";
  transform: scale(1);
}
.tab1 ul:nth-child(2) {
  padding: 30px;
}

.card-1 {
  position: relative;
}
.card-1 .acciones {
  display: grid;
  gap: 10px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}
.card-1 .acciones .icon {
  width: 38px;
  height: 38px;
  background: #f2f2f2;
  border-radius: 5px;
  position: relative;
  text-align: center;
  margin: auto;
  padding: 0;
  line-height: 38px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.4s ease-in-out;
  color: #797979;
}
.card-1 .acciones .icon:hover {
  background: black;
  cursor: pointer;
}
.card-1 .acciones .icon:hover span {
  color: white;
}
.card-1 .acciones :nth-child(1n) {
  transition: 0.5s;
}
.card-1 .acciones :nth-child(1n) {
  transition: 0.55s;
}
.card-1 .acciones :nth-child(3n) {
  transition: 0.7s;
}
.card-1 img {
  width: 100%;
}
.card-1 .img {
  position: relative;
}
.card-1 .img .img-adicional {
  position: absolute;
  top: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.4s;
  transition: all 0.4s;
  transform: scale3d(0, 1, 0);
}
.card-1 .info {
  display: grid;
  gap: 10px;
  background: #fff;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .card-1 .info {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.card-1 .info .categoria {
  font-size: 12px;
  line-height: 14px;
  color: #999;
  text-transform: uppercase;
}
.card-1 .info a {
  text-decoration: none;
}
.card-1 .info a h4 {
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
  margin: 0;
  padding: 0%;
}
.card-1 .info .precio {
  display: flex;
  gap: 10px;
}
.card-1 .info .precio .old {
  text-decoration: line-through;
  color: #bcbcbc;
}
.card-1 .info .precio p {
  margin: 0 5px 0 0;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  margin: 0;
}
.card-1 .info .precio p b {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
.card-1 .bot {
  position: absolute;
  background: white;
  opacity: 0;
  width: 100%;
  z-index: 0;
  left: 0;
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.card-1:hover .bot{
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .card-1 .bot {
    opacity: 1;
  }
}
.card-1 .bot .botones {
  background: #f02757;
  border-radius: 5px;
  justify-content: space-between;
  display: flex;
  transition: 0.5s;
  padding: 6px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 20px;
  justify-content: center;
}
.card-1 .bot .botones a {
  color: white;
  text-decoration: none;
}
.card-1 .bot .botones2 {
  border-radius: 5px;
  justify-content: space-between;
  display: flex;
  gap: 10px;
  transition: 0.5s;
  padding: 6px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 20px;
  justify-content: center;
}
.card-1 .bot .botones2 a {
  color: white;
  text-decoration: none;
}
.card-1:hover .icon {
  display: block;
  right: 0;
  opacity: 1;
  transform: translateX(0px);
}
.card-1:hover h4 {
  color: #f02757;
}
.card-1:hover .img-adicional {
  visibility: visible;
  opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  transform: scale3d(1, 1, 1);
}
.card-1:hover .bot {
  opacity: 1;
}

.card-2 {
  box-shadow: none;
  padding: 0;
  position: relative;
  transition: height 1s;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-2 .img {
  position: relative;
  height: 100%;
}
.card-2 .img .img-adicional {
  position: absolute;
  top: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.4s;
  transition: all 0.4s;
  transform: scale3d(0, 1, 0);
}
.card-2 .info {
  display: grid;
  gap: 10px;
  background: #fff;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
  align-content: center;
}
.card-2 .info .categoria {
  font-size: 12px;
  line-height: 14px;
  color: #999;
  text-transform: uppercase;
}
.card-2 .info a {
  text-decoration: none;
}
.card-2 .info a h4 {
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
  margin: 0;
  padding: 0%;
}
.card-2 .info .precio {
  display: flex;
  gap: 10px;
}
.card-2 .info .precio .old {
  text-decoration: line-through;
  color: #bcbcbc;
}
.card-2 .info .precio p {
  margin: 0 5px 0 0;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  margin: 0;
}
.card-2 .info .precio p b {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
.card-2:hover .icon {
  display: block;
  right: 0;
  opacity: 1;
  transform: translateX(0px);
}
.card-2:hover h4 {
  color: #f02757;
}
.card-2:hover .img-adicional {
  visibility: visible;
  opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  transform: scale3d(1, 1, 1);
}
.card-2:hover .bot {
  opacity: 1;
}

.card-3 {
  display: grid;
  grid-template-columns: 70px auto;
  gap: 20px;
  align-items: center;
}

.card-4 {
  display: grid;
  gap: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  align-items: center;
}
.card-4 .info {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
.card-4 .info .botones h5 {
  margin-bottom: 20px;
}
.card-4 .imagen {
  height: auto;
}
.card-4 .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 959px) {
  .card-4 .imagen {
    height: 150px;
  }
}
@media screen and (max-width: 959px) {
  .card-4 {
    grid-template-columns: 1fr;
  }
}

.card-5 {
  background: white;
  border-radius: 16px;
  overflow: hidden;
}
.card-5 .imagen {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .card-5 .imagen {
    height: 200px;
  }
}
.card-5 .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.4);
  transition: 0.5s;
}
.card-5 .imagen .cover {
  background: rgba(0, 0, 0, 0.216);
  height: 100%;
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
  left: 0;
}
.card-5 .info {
  padding: 20px;
}
.card-5 .info h5 {
  color: rgb(0, 0, 0);
}
.card-5 .info a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.card-5:hover {
  cursor: pointer;
}
.card-5:hover .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
}

.card6 .img {
  width: 50px;
  height: 78px;
  margin: auto;
  margin-bottom: 10px;
}
.card6 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card6 .info {
  text-align: center;
}
.card6 .info a {
  text-decoration: none;
}
.card6 .info h6 {
  color: #000000;
  transition: 0.5s;
}
.card6:hover {
  border-bottom: 2px solid #f02757;
}
.card6:hover h6 {
  color: #f02757;
}

.card7 {
  height: 100%;
  position: relative;
}
.card7 img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card7 .info {
  position: absolute;
  width: 50%;
  height: 100%;
  display: grid;
  align-items: center;
  justify-items: start;
  align-content: center;
}
.card7 .info a {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  border-bottom: 2px solid;
  transition: all 0.3s ease;
  text-decoration: none;
}
.card7 .info .titulo-m {
  font-size: 36px;
  color: rgb(0, 0, 0);
  line-height: 41px;
  text-transform: uppercase;
}
@media screen and (max-width: 959px) {
  .card7 .info .titulo-m {
    font-size: 16px;
    line-height: 1;
  }
}
.card7 .info .titulo-s {
  font-size: 26px;
  color: rgb(0, 0, 0);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 959px) {
  .card7 .info .titulo-s {
    font-size: 14px;
    line-height: 1;
  }
}
.card7 .info p {
  color: black;
}
@media screen and (max-width: 959px) {
  .card7 .info p {
    font-size: 10px;
  }
}
@media screen and (max-width: 959px) {
  .card7 .info {
    padding: 10px;
  }
}
.card7 .blanco a {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: rgb(255, 255, 255);
  border-bottom: 2px solid;
  transition: all 0.3s ease;
  text-decoration: none;
}
.card7 .blanco .titulo-m {
  font-size: 36px;
  color: rgb(255, 255, 255);
  line-height: 41px;
  text-transform: uppercase;
}
@media screen and (max-width: 959px) {
  .card7 .blanco .titulo-m {
    font-size: 16px;
    line-height: 1;
  }
}
.card7 .blanco .titulo-s {
  font-size: 26px;
  color: rgb(255, 255, 255);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 959px) {
  .card7 .blanco .titulo-s {
    font-size: 14px;
    line-height: 1;
  }
}
.card7 .blanco p {
  color: white;
}
.card7 .left {
  left: 20px;
}
.card7 .derecha {
  right: 20px;
}

.res-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
  overflow-y: auto;
}

.card-9 {
  background-color: #3b3b3b;
  border-radius: 12px 12px 12px 12px;
  padding-top: 35px;
  padding-right: 35px;
  padding-bottom: 35px;
  padding-left: 35px;
  transition: 1s;
}
.card-9 .imagen {
  width: 70px;
  margin: auto;
}
.card-9 .imagen img {
  width: 100%;
}
.card-9 .info {
  text-align: center;
}
.card-9 .info h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0px;
}
.card-9 .info p {
  font-size: 16px;
  line-height: 24px;
  color: #ababab;
}

.recomendacion h5 {
  font-weight: 700;
  font-size: 30px;
  color: #01213a;
  line-height: 40px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 60px;
  text-align: center;
}
.recomendacion p {
  font-size: 14px;
  color: #797979;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.titulos {
  height: 300px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f02757;
}
.titulos #particles-js,
.titulos #parallax,
.titulos .layer,
.titulos .some-space,
.titulos .some-more-space {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.titulos #particles-js {
  opacity: 0.6;
}
.titulos h1 {
  color: white;
  font-size: 3.5em;
  font-weight: 100;
  letter-spacing: 0.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  border: 1px solid white;
  transition: all 200ms ease;
}
.titulos .some-space {
  animation: rotate 18s 0.5s infinite linear reverse;
}
.titulos .some-more-space {
  -webkit-animation: rotate 15s 0.1s infinite linear;
  animation: rotate 15s 0.1s infinite linear;
}
@-webkit-keyframes rotate {
  0% {
    transform: rotateZ(0deg) translate3d(0, 1.5%, 0) rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg) translate3d(0, 1.5%, 0) rotateZ(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotateZ(0deg) translate3d(0, 1.5%, 0) rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg) translate3d(0, 1.5%, 0) rotateZ(-360deg);
  }
}

.titulo {
  text-align: center;
  max-width: 700px;
  margin: auto;
}
.titulo h4 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  letter-spacing: -1px;
}
@media screen and (max-width: 959px) {
  .titulo h4 {
    font-size: 40px;
    line-height: 1;
  }
}
.titulo .blanco {
  color: #ffffff;
}
.titulo p {
  font-size: 20px;
  color: #585858;
}

.hero-parallax {
  text-align: center;
}
.hero-parallax img {
  width: 100%;
}
.hero-parallax .small {
  max-width: 1050px;
  margin: auto;
}

.btn1,
.btn2,
.btn3 {
  text-align: center;
}
@media screen and (max-width: 959px) {
  .btn1,
.btn2,
.btn3 {
    line-height: 1;
  }
}

.btn1 {
  min-height: inherit;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding: 14px 30px;
  background: #f02757;
  color: white;
  border-radius: 10px;
  transition: 0.5s;
}
@media screen and (max-width: 959px) {
  .btn1 {
    padding: 10px;
  }
}
.btn1:hover {
  background: black;
  text-decoration: none;
  color: white;
}

.btn2 {
  min-height: inherit;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding: 14px 30px;
  background: black;
  color: white;
  border-radius: 10px;
  transition: 0.5s;
}
@media screen and (max-width: 959px) {
  .btn2 {
    padding: 10px;
  }
}
.btn2:hover {
  background: #f02757;
  text-decoration: none;
  color: white;
}

.btn3 {
  min-height: inherit;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding: 14px 30px;
  background: #f02757;
  color: white;
  border-radius: 10px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 20px;
}
.btn3:hover {
  background: black;
  text-decoration: none;
  color: white;
}

.botones {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .botones {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.contacto {
  display: grid;
  gap: 20px;
}
.contacto a {
  display: grid;
  gap: 10px;
  grid-template-columns: 40px auto;
  font-size: 20px;
  color: #000000;
  align-items: center;
  text-decoration: none;
}
.contacto a .icon {
  width: 40px;
  height: 40px;
  background: #f02757;
  color: #ffffff;
  display: flex;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
}

footer {
  background: #262626;
  padding-top: 50px;
  padding-bottom: 50px;
  color: white;
  display: grid;
  gap: 20px;
}
footer .contacto {
  display: grid;
  gap: 20px;
}
footer .contacto a {
  display: grid;
  gap: 10px;
  grid-template-columns: 40px auto;
  font-size: 20px;
  color: #ffffff;
  align-items: center;
  text-decoration: none;
}
footer .contacto a .icon {
  width: 40px;
  height: 40px;
  background: #f02757;
  color: #ffffff;
  display: flex;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
}
footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li a {
  display: grid;
  gap: 10px;
  grid-template-columns: 40px auto;
  font-size: 20px;
  color: #ffffff;
  align-items: center;
  text-decoration: none;
  text-transform: capitalize;
}
footer ul li a .icon {
  width: 40px;
  height: 40px;
  background: #f02757;
  color: #ffffff;
  display: flex;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
}
footer ul li a:hover {
  text-decoration: none;
  color: #ffffff;
}

.modificarcontrol .swiper-nav-wrapper {
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: auto;
  padding-top: 20px;
}
.modificarcontrol .swiper-nav-wrapper .swiper-button-next,
.modificarcontrol .swiper-nav-wrapper .swiper-button-prev {
  top: 0;
  top: auto;
  left: auto;
  right: auto;
  position: relative !important;
}
.modificarcontrol .swiper-nav-wrapper .swiper-button-next:after,
.modificarcontrol .swiper-nav-wrapper .swiper-button-prev:after {
  display: none;
}
.modificarcontrol .swiper-nav-wrapper .swiper-button-next,
.modificarcontrol .swiper-nav-wrapper .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' fill='%23000000' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}
.modificarcontrol .swiper-nav-wrapper .swiper-button-prev,
.modificarcontrol .swiper-nav-wrapper .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' transform='translate(4.508789, 7.870605) rotate(-180.000000) translate(-4.508789, -7.870605) translate(-0.000000, -0.000000)' fill='%23000000' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}
.modificarcontrol .swiper-pagination {
  margin: 0;
  padding: 0;
  width: auto;
  position: relative !important;
  display: block;
  width: auto;
}
.modificarcontrol .swiper-pagination .swiper-pagination-bullets {
  margin: 0;
}
.modificarcontrol .swiper-pagination .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  background: rgb(0, 0, 0) !important;
}
.modificarcontrol .swiper-pagination-bullet {
  background: rgb(0, 0, 0) !important;
  transition: all 0.2s ease-in-out;
}
.modificarcontrol .swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  bottom: 0;
  top: 0;
  bottom: 0;
  width: auto;
  padding: 0 10px;
}
.modificarcontrol .swiper-pagination-bullet-active {
  transform: scale(1.5);
}

.modificarcontrol2 .swiper-nav-wrapper {
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: auto;
  padding-top: 20px;
  position: absolute;
  bottom: 20px;
}
.modificarcontrol2 .swiper-nav-wrapper .swiper-button-next,
.modificarcontrol2 .swiper-nav-wrapper .swiper-button-prev {
  top: 0;
  top: auto;
  left: auto;
  right: auto;
  position: relative !important;
}
.modificarcontrol2 .swiper-nav-wrapper .swiper-button-next:after,
.modificarcontrol2 .swiper-nav-wrapper .swiper-button-prev:after {
  display: none;
}
.modificarcontrol2 .swiper-nav-wrapper .swiper-button-next,
.modificarcontrol2 .swiper-nav-wrapper .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}
.modificarcontrol2 .swiper-nav-wrapper .swiper-button-prev,
.modificarcontrol2 .swiper-nav-wrapper .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' transform='translate(4.508789, 7.870605) rotate(-180.000000) translate(-4.508789, -7.870605) translate(-0.000000, -0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}
.modificarcontrol2 .swiper-pagination {
  margin: 0;
  padding: 0;
  width: auto;
  position: relative !important;
  display: block;
  width: auto;
}
.modificarcontrol2 .swiper-pagination .swiper-pagination-bullets {
  margin: 0;
}
.modificarcontrol2 .swiper-pagination .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  background: rgb(255, 255, 255) !important;
}
.modificarcontrol2 .swiper-pagination-bullet {
  background: rgb(255, 255, 255) !important;
  transition: all 0.2s ease-in-out;
}
.modificarcontrol2 .swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  bottom: 0;
  top: 0;
  bottom: 0;
  width: auto;
  padding: 0 10px;
}
.modificarcontrol2 .swiper-pagination-bullet-active {
  transform: scale(1.5);
}

/*--------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6784313725);
  z-index: 111112;
  display: none;
}
.modal .itemcerrar {
  width: 100%;
  height: 100%;
  display: grid;
}
.modal .itempadre {
  max-width: 900px;
  margin: auto;
  max-height: 700px;
  overflow-y: scroll;
  background: white;
}
@media screen and (max-width: 959px) {
  .modal .itempadre {
    width: 90%;
    max-height: 450px;
  }
}
.modal .info {
  padding: 30px;
}
.modal .contenedor-slide {
  display: grid;
  grid-template-columns: auto 160px;
}
@media screen and (max-width: 959px) {
  .modal .contenedor-slide {
    grid-template-columns: auto 90px;
  }
}
.modal .contenedor-slide .item1 {
  width: 100%;
  text-align: center;
}
.modal .contenedor-slide .item1 img {
  width: 100%;
  margin: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal .contenedor-slide .item2 {
  width: 100%;
  margin-top: 20px;
  height: 600px;
}
@media screen and (max-width: 959px) {
  .modal .contenedor-slide .item2 {
    max-height: 300px;
  }
}
.modal .contenedor-slide .item2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal.active {
  display: flex;
}

.btn-close {
  border-radius: 50%;
  display: flex;
  position: absolute;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 40px;
  text-align: center;
  color: #fff;
  transition: all 0.25s ease-in-out;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
}

.btn-close:hover {
  transform: rotate(180deg);
}

@font-face {
  font-family: GT Walsheim Pro;
  src: url(../font/GTWalsheimPro-Medium.woff2);
}
@font-face {
  font-family: BRSonoma;
  src: url(../font/BRSonoma-Regular.woff2);
}
a {
  font-family: "BRSonoma";
}

body {
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-family: "GT Walsheim Pro";
  font-weight: 700;
  line-height: 1.1;
}

.inicio .contenedor {
  margin-bottom: 60px;
}

.beneficios {
  margin-top: 40px;
}
.beneficios article {
  display: grid;
  grid-template-columns: 72px auto;
  gap: 20px;
  justify-content: start;
  text-align: left;
  align-items: center;
}
.beneficios article .imagen {
  background-color: #ffffff;
  width: 72px;
  height: 72px;
  border-radius: 12px 12px 12px 12px;
}
.beneficios article .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.beneficios article .info h6 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0px;
  color: black;
  margin-bottom: 5;
}
.beneficios article .info p {
  padding: 0;
  margin: 0;
}

.copy {
  text-align: center;
}

.contacto-page {
  padding-top: 50px;
  padding-bottom: 120px;
  background-color: #262626;
  background-position: bottom left;
  background-size: auto;
  background-repeat: no-repeat;
  height:1500PX;
  
}
.contacto-page .max500 {
  max-width: 500px;
  margin: auto;
}

.fondogris {
  border-radius: 24px 24px 24px 24px;
  background-color: #434343;
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  margin-bottom: 300px;
  display: grid;
  gap: 20px;
  row-gap: 30px;
}
.fondogris .item1 {
  display: grid;
  gap: 20px;
}
.fondogris .item1 a {
  display: grid;
  gap: 10px;
  grid-template-columns: 40px auto;
  font-size: 20px;
  align-items: center;
  text-decoration: none;
}
.fondogris .item1 a .icon {
  width: 40px;
  height: 40px;
  background: #f02757;
  color: #ffffff;
  display: flex;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
}

.blanco {
  color: white;
}

.cardslide {
  padding-top: 0px;
  padding-bottom: 90px;
}

.portafolio-nav {
  gap: 10px;
}
.portafolio-nav li {
  width: 150px;
  padding: 0px;
  height: 100px;
}
.portafolio-nav li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 959px) {
  .uk-tab h3 {
    font-size: 18px;
  }
}
.uk-tab .uk-active a {
  color: #f02757;
  border-color: #f02757;
}
.uk-tab .uk-active a h3 {
  color: #f02757;
}

.zoomproducto {
  display: block;
}
@media screen and (max-width: 959px) {
  .zoomproducto {
    display: none !important;
  }
}

.zoomproducto-m {
  display: none !important;
}
@media screen and (max-width: 959px) {
  .zoomproducto-m {
    display: grid !important;
  }
}
.zoomproducto-m .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.zoomproducto-m .slidezoompro {
  width: 100%;
  height: 350px;
}
.zoomproducto-m .slidezoompro-bot {
  width: 100%;
  height: 60px;
}/*# sourceMappingURL=index.css.map */