* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---PAGINA EN PROCESO-----*/
#body-proceso {
  background: linear-gradient(rgba(5, 7, 12, 0.8), rgba(5, 7, 12, 0.8)), url(/imagenes/background-imagen.jpg);
  background-position: 200%;
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  animation: img-background 10s linear infinite alternate;
}
@keyframes img-background {
  from {
    background-position: top right;
  }
  to {
    background-position: bottom left;
  }
}

#main-proceso {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.logo-box {
  width: 110px;
}

#bienvenidos-contenedor {
  margin-top: 3%;
}
#bienvenidos-contenedor p {
  text-transform: uppercase;
  letter-spacing: 0.5em;
  display: flex;
  text-align: center;
  flex-direction: column;
  border: 4px double rgb(0, 0, 0);
  border-width: 5px 0;
  padding: 2rem 0;
}

#img-scroll-index {
  height: 150px;
  margin-top: 5%;
  margin-bottom: 10%;
}

#animacion-texto {
  font: bold 5rem "Oswald", sans-serif;
  padding: 5%;
  display: flex;
  justify-content: center;
  /*-----Background Imagen----------*/
  background: url(/imagenes/animated-text-fill.png) repeat-y;
  -webkit-background-clip: text;
  background-clip: text;
  /*-----Animacion Background-------*/
  -webkit-text-fill-color: transparent;
  animation: animacion 8s ease-in-out infinite alternate;
  /*-----Aceleracion de la animacion-----*/
}

@keyframes animacion {
  0% {
    background-position: 10% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
#article-inicio {
  margin-top: 10%;
  margin-bottom: 5%;
}
#article-inicio h1 {
  transition: 1.5s;
}
#article-inicio h1:hover {
  transform: scale(0.9);
}

#parrafo-inicio {
  margin-top: 1%;
  margin-bottom: 2%;
  color: rgba(255, 0, 0, 0.537);
}

#card-gral {
  width: 25rem;
  height: 600px;
  opacity: 40%;
  transition: 1s;
}
#card-gral:hover {
  opacity: 100%;
  transition: 0.5s;
  transform: scale(0.9);
}

#soporte-plataformas {
  box-shadow: 1px 1px 20px black;
  background: linear-gradient(rgba(5, 7, 12, 0.8), rgba(5, 7, 12, 0.8)), url(/imagenes/todos-los-dispositivos.jpg), fixed;
  background-size: 250%;
  background-repeat: no-repeat;
  animation: movimiento-dispositivos 10s linear alternate infinite;
  margin-top: 2%;
}
@keyframes movimiento-dispositivos {
  from {
    background-position: top right;
  }
  to {
    background-position: bottom left;
  }
}
#soporte-plataformas .progress {
  width: 35%;
  box-shadow: 1px 2px 8px 1px black;
  margin: 20px;
}

#barra-progreso-hotsale {
  margin-top: 1%;
  margin-bottom: 20%;
}

#aside-ofertas label {
  font-family: "Bungee Shade", cursive;
}

#article-sponsors img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: 0.7s;
}
#article-sponsors img:hover {
  transition: 0.1s;
  transform: scale(1.1);
}

#navega-map img {
  width: 120px;
  margin-top: 20px;
}

/* ------------Pagina index| Iframe-------- */
#article2-iframe iframe {
  opacity: 28%;
  margin-bottom: 10%;
  transition: ease-in-out;
  transition: 2s;
  transform: scale(1.1);
}
#article2-iframe iframe:hover {
  transition: 1s;
  opacity: 100%;
}

#article2-iframe {
  margin-top: 10rem;
  margin-bottom: 15%;
}

#soporte a {
  padding: 20px;
  text-decoration: none;
}

#parrafo-aside span {
  margin-bottom: 2%;
  margin-left: 10px;
  color: red;
}

/*-------------Pagina Index|  FOOTER------------ */
footer {
  overflow: hidden;
}
footer ul li {
  margin-bottom: 15px;
  list-style: none;
}

#ayuda-redes-img img {
  width: 80px;
  padding: 3px;
}

#imagen-footer {
  padding-top: 30px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.255);
}
#imagen-footer img {
  opacity: 0.4;
  transition: 1s;
}
#imagen-footer img:hover {
  border-bottom: 2px solid rgb(255, 255, 255);
  opacity: 1;
  transition: 1s;
}

#contenedor-footer {
  border-bottom: 2px solid white;
}

#footer-email-textarea {
  transition: 2s;
}
#footer-email-textarea:hover {
  background-color: rgb(250, 248, 248);
  transition: 1s;
  opacity: 0.5;
}

#ayuda-ayuda {
  transition: 0.5s;
  font-size: 20px;
}
#ayuda-ayuda ul li a {
  transition: 0.5s;
  font-size: 20px;
}

#copyright-footer p {
  font-size: 22px;
  padding-top: 10px;
  transition: 2s;
}
#copyright-footer:hover {
  color: gray;
  font-size: 16px;
  transition: 0.7s;
}

/* ---------PAGINA IMAGENES----- */
#parrafo-img {
  margin-top: 30px;
  align-self: center;
  color: black;
  transition: 1.5s;
}
#parrafo-img:hover {
  transition: 1.5s;
  transform: scale(1.1);
}

#parrafo-img span {
  color: red;
}

#imagenes {
  padding: 5px;
  margin-top: 30px;
  height: 450px;
}
#imagenes img {
  object-fit: cover;
  margin: 4px;
  transition: 1;
}
#imagenes img:hover {
  margin: 5px;
  transition: 1;
  transform: scale(1.1);
}

@keyframes movimiento-img {
  from {
    background-position: top right;
  }
  to {
    background-position: bottom left;
  }
}
#no-main {
  margin-top: 10%;
  margin-bottom: 17%;
}

#card-img {
  width: 35rem;
  height: 650px;
  opacity: 100%;
  transition: 2s;
}
#card-img:hover {
  opacity: 60%;
  transition: 0.5s;
  transform: scale(0.9);
}

#pq-elegirnos {
  margin-bottom: 5%;
  box-shadow: 1px 1px 5px black;
  background: linear-gradient(rgba(5, 7, 12, 0.5), rgba(5, 7, 12, 0.5)), url(/imagenes/backgroud-mercadolibre.png), fixed;
  background-size: 250%;
  background-repeat: no-repeat;
  animation: movimiento-img 10s ease-in-out infinite alternate;
}

@keyframes movimiento-img {
  from {
    background-position: top right;
  }
  to {
    background-position: bottom left;
  }
}
#article-recorrido {
  margin: 5% 0;
}

#card-recorrido {
  transition: 2s;
  box-shadow: 2px 2px 15px 5px black;
}
#card-recorrido p {
  font-size: 1.5rem;
}
#card-recorrido:hover {
  transition: 2s;
  transform: scale(1.1);
}

#article-recorrido img {
  transition: 1s;
}

#valoraciones {
  margin: 10% 0;
}
#valoraciones img {
  height: auto;
  margin: 8px;
  object-fit: contain;
  transition: 3s;
  box-shadow: 2px 5px 10px 1px black;
  border-radius: 20px;
  opacity: 40%;
}
#valoraciones img:active {
  opacity: 100%;
  transition: 1s;
  transform: scale(1.1);
}

#label-sub {
  font-size: 19px;
}

/* ----------Pagina Stock------ */
#section-img {
  margin-bottom: 20%;
}

#section-div {
  margin-top: 8%;
}

#section-div strong {
  color: red;
}

#span-section-div {
  font-size: 11px;
}

#section-div h1 {
  transition: 1s;
}
#section-div h1:hover {
  font-size: 2.7rem;
  transition: 1s;
}

#imagenes-section img {
  margin: 5px;
  object-fit: cover;
  height: 450px;
  transition: 1;
}
#imagenes-section img:hover {
  margin: 5px;
  transition: 1;
  transform: scale(1.1);
}

/* ---------Pagina Stock | PRODUCTOS------- */
#productos-div {
  margin-bottom: 10%;
}

#div-h2 {
  margin-bottom: 30px;
}

#productos-h2 {
  color: black;
}

#card-productos {
  margin: 10px 40px;
  transition: 1s;
}
#card-productos:hover {
  transform: scale(0.9);
  transition: 0.5s;
}

/* ------PAGINA SEDE---------- */
#article-main-sede {
  margin-top: 10%;
  margin-bottom: 5%;
}

#parada-sede {
  margin-top: 5%;
}

#tiempos-estimados {
  margin-top: 8%;
}

#p-sede p {
  transition: 1s;
}
#p-sede p:hover {
  color: rgba(255, 0, 0, 0.373);
  transform: scale(1.1);
  transition: 1s;
}

#parada-sede h1 {
  transition: 1s;
  font-size: 32px;
}
#parada-sede h1:hover {
  transition: 1s;
  transform: scale(1.1);
}

#ayuda-ayuda {
  margin-top: 4px;
}

/* --------------Pagina Contacto------------ */
#h1-main {
  margin-top: 12%;
}

#textarea-contacto {
  margin-top: 45px;
}

#archivo-contacto {
  margin-top: 14%;
}

#div-p {
  margin-top: 15%;
}

#img-scroll img {
  width: 180px;
  margin-top: 7%;
  margin-bottom: 5%;
}

#archivo-contacto label {
  font-size: 25px;
  text-align: center;
}

#article2-main {
  margin-top: 5%;
}

#valoranos {
  margin: 60px 0px;
  margin-bottom: 20%;
}

/*-------Componentes| Carousel--------*/
.carousel-inner {
  width: auto;
  height: auto;
}

#Slider-carousel {
  margin-bottom: 2%;
}

/*----Componentes| Botones-------*/
#busqueda-header {
  border-radius: 20px;
}

/*------Pagina index------------*/
@media screen and (min-width: 0px) and (max-width: 568px) {
  .logo-box {
    height: 80px;
    object-fit: contain;
  }
  #bienvenidos-contenedor {
    margin-bottom: 8%;
  }
  #bienvenidos-contenedor p {
    font-size: 11px;
  }
  #bienvenidos-contenedor #animacion-texto {
    /*-----Background Imagen----------*/
    background: black;
    -webkit-background-clip: text;
    background-clip: none;
    /*-----Animacion Background-------*/
    -webkit-text-fill-color: none;
    animation: none;
    font-size: 3rem;
  }
  #img-scroll-index img {
    height: 90px;
  }
  #article-ilustrativo #card-gral {
    width: 18rem;
    height: 450px;
  }
  #aside-ofertas label {
    font-size: 18px;
  }
  #aside-ofertas #flechas-negras {
    margin-bottom: 40px;
  }
  #aside-ofertas #flechas-negras img {
    width: 30px;
  }
  #Slider-carousel {
    width: 300px;
    height: 300px;
  }
  #article-sponsors div div {
    height: 40px;
  }
  #article-sponsors div div img {
    margin: 3px;
    width: 40px;
  }
  #article2-iframe #navega-map label {
    font-size: 13px;
  }
  #article2-iframe #navega-map img {
    width: 70px;
  }
  #article2-iframe h2 {
    font-size: 19px;
  }
  #article2-iframe iframe {
    width: 290px;
    height: 290px;
  }
  #imagen-footer img {
    width: 90px;
  }
  #soporte-plataformas {
    margin-bottom: 12rem;
  }
}
@media screen and (min-width: 569px) and (max-width: 768px) {
  #bienvenidos-contenedor {
    margin-bottom: 8%;
  }
  #bienvenidos-contenedor p {
    font-size: 14px;
  }
  #bienvenidos-contenedor #animacion-texto {
    font-size: 4rem;
  }
  #img-scroll-index img {
    height: 110px;
  }
  #article-sponsors div div {
    height: 70px;
  }
  #article-sponsors div div img {
    margin: 3px;
    width: 60px;
  }
  #aside-ofertas label {
    font-size: 22px;
  }
  #aside-ofertas #flechas-negras {
    margin-bottom: 30px;
  }
  #aside-ofertas #flechas-negras img {
    width: 40px;
  }
  #Slider-carousel {
    width: 400px;
    height: 410px;
  }
  #article2-iframe iframe {
    width: 500px;
    height: 250px;
  }
  #soporte-plataformas {
    margin-bottom: 15rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  #img-scroll-index img {
    height: 120px;
  }
  #article2-iframe iframe {
    width: 650px;
    height: 250px;
  }
  #Slider-carousel {
    width: 550px;
    height: 570px;
  }
  #aside-ofertas label {
    font-size: 30px;
  }
  #aside-ofertas #flechas-negras {
    margin-bottom: 30px;
  }
  #aside-ofertas #flechas-negras img {
    width: 45px;
  }
  #flechas-negras {
    margin-bottom: 30px;
  }
  #flechas-negras img {
    width: 40px;
  }
  #article-sponsors div div {
    height: 65px;
  }
  #article-sponsors div div img {
    margin: 3px;
    width: 60px;
  }
  #soporte-plataformas {
    margin-bottom: 15rem;
  }
}
@media screen and (min-width: 993px) {
  #aside-ofertas label {
    font-size: 35px;
  }
  #Slider-carousel {
    width: 750px;
    height: 770px;
  }
  #article-sponsors div div {
    height: 85px;
  }
  #article-sponsors div div img {
    margin: 3px;
    width: 80px;
  }
  #article2-iframe iframe {
    width: 850px;
    height: 250px;
  }
}
/*------------Pagina Imagenes-------------*/
@media screen and (min-width: 0px) and (max-width: 568px) {
  #imagenes img {
    height: 300px;
  }
  #pq-elegirnos label {
    font-size: 10px;
  }
  #card-recorrido {
    margin-top: 10%;
    width: 15rem;
  }
  #imagen-val {
    width: 220px;
  }
  #valoraciones img {
    width: 270px;
  }
  #valoraciones #label-sub {
    font-size: 12px;
  }
  #section-card #card-img {
    width: 18rem;
    height: 400px;
  }
}
@media screen and (min-width: 569px) {
  #section-card #card-img {
    width: 30rem;
    height: 550px;
  }
  #card-recorrido {
    margin-top: 10%;
    width: 25rem;
  }
  #imagen-val {
    width: 320px;
  }
  #valoraciones img {
    width: 370px;
  }
}
/*-------------Pagina Stock---------------*/
@media screen and (min-width: 0px) and (max-width: 568px) {
  #imagenes-section {
    width: 280px;
    margin-bottom: 10%;
  }
  #card-productos {
    width: 280px;
    height: 625px;
  }
  #imagen-val {
    margin-top: 5%;
  }
}
@media screen and (min-width: 569px) {
  #imagenes-section {
    width: 520px;
  }
  #card-productos {
    width: 400px;
    height: 725px;
  }
}
/*-----------Pagina Sede--------*/
@media screen and (min-width: 0px) and (max-width: 568px) {
  #parada-sede {
    font-size: 12px;
  }
  #parada-sede h1 {
    font-size: 17px;
  }
  #parada-sede h1:hover {
    transform: scale(0.9);
  }
  #p-sede p:hover {
    transform: scale(0.9);
  }
  #tiempos-estimados ul {
    font-size: 10px;
  }
  #h2-article {
    font-size: 21px;
  }
  #copyright-footer p {
    font-size: 15px;
  }
}
@media screen and (min-width: 569px) and (max-width: 993px) {
  #parada-sede {
    font-size: 16px;
  }
  #parada-sede h1 {
    font-size: 22px;
  }
  #parada-sede h1:hover {
    transform: scale(0.9);
  }
  #p-sede p:hover {
    transform: scale(0.9);
  }
}
/*-------Pagina Contacto-------*/
@media screen and (min-width: 0px) and (max-width: 568px) {
  #h1-main h1 {
    font-size: 23px;
  }
  #h2-contacto {
    font-size: 17px;
  }
  #archivo-contacto {
    margin-top: 40%;
  }
  #archivo-contacto label {
    font-size: 18px;
    text-align: center;
  }
  #img-scroll {
    margin-top: 5%;
    margin-bottom: 10%;
  }
  #img-scroll img {
    width: 100px;
  }
}

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