@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
:root {
  --font-family: 'Roboto', sans-serif;
  --transition-time: 0.75s;
  --spiderman-light-background: #6c1d45;
  --spiderman-dark-background: #a82165;
  --spiderman-background: #a61519;
  --ironman-light-background: #6c1d45;
  --ironman-dark-background: #a82165;
  --ironman-background: #540b05;
  --captain-background: #1c2b3c;
  --captain-dark-background: #a82165;
  --captain-light-background: #6c1d45;
}

.container__galeria{
  /*En los 2 eran 70*/
  margin-top: -19px;
    padding: 0 5%;
  }

.marvel-container {
  font-family: var(--font-family);
  border-radius: 10px;
  -webkit-transition: all ease var(--transition-time);
  transition: all ease var(--transition-time);
  overflow: hidden;
  margin: 20px auto;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.75);

}

.marvel-container .swiper-wrapper {
  margin-bottom: 40px;
}

.marvel-container .swiper-slide {
  z-index: 5;
}

.marvel-container .name .sub-title,
.marvel-container .name .title,
.marvel-container .overview .title {
  text-transform: uppercase;
}

.marvel-container .name .title,
.marvel-container .overview .description,
.marvel-container .overview .title {
  color: var(--white);
}

.marvel-container .name {
  margin-bottom: .5rem;
}

.marvel-container .name .sub-title {
  color: var(--warning);
  font-weight: 600;
  margin-bottom: -0.5rem;
}

/*single elements animation*/
.marvel-container .text-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.marvel-container .text-wrapper span {
  position: relative;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  display: inline-block;
  -webkit-transition: all ease var(--transition-time);
  transition: all ease var(--transition-time);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  color: #fff;
}

/****************************/
.marvel-container .name .title {
  font-weight: 700;
  font-size: 1.2rem;
}

.marvel-container .overview .description {
  text-align: justify;
  font-size: 1rem;
  /*opacity: 0.5;*/
  color: rgb(255, 255, 255);
}

.marvel-container .overview .title {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.marvel-container .overview .title::after,
.marvel-container .overview .title::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 10px;
  background-color: var(--warning);
  border-radius: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.marvel-container .overview .title::before {
  width: 20px;
  top: 8px;
  left: 0px;
}

.marvel-container .overview .title::after {
  bottom: 8px;
  left: 10px;
}

.marvel-container .purchase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
}

.marvel-container .purchase .year {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  opacity: 0.5;
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
  -webkit-transition: all ease var(--transition-time);
  transition: all ease var(--transition-time);
  -webkit-transition-delay: 0.15s;
   transition-delay: 0.15s;
}

.marvel-container .purchase .purchase-btn {
  padding: 10px 40px;
  text-transform: uppercase;
  outline: 0;
  margin: 0;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
  -webkit-transition: all ease var(--transition-time);
  transition: all ease var(--transition-time);
  -webkit-transition-delay: 0.25s;
   transition-delay: 0.25s;
}

/*images*/
.marvel-container .img-container {
  height: 100%;
  position: relative;
  min-height: 250px;
}

.marvel-container .img-container .img-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all ease var(--transition-time);
  transition: all ease var(--transition-time);
}

.marvel-container .img-container .img-wrapper.active {
  opacity: 1;
}

.marvel-container .img-container .img-wrapper .background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 3;
}

.marvel-container .img-container .img-wrapper .background {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.marvel-container .img-container .img-wrapper .background::after {
  content: '';
  position: absolute;
  height: 400px;
  width: 400px;
  bottom: 0;
  right: 0;
  border-radius: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all ease var(--transition-time);
  transition: all ease var(--transition-time);
}

.marvel-container .img-container .img-wrapper img {
  position: relative;
  bottom: 0;
  max-width: 100%;
  z-index: 4;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  opacity: 0;
  -webkit-transition: all ease var(--transition-time);
  transition: all ease var(--transition-time);
}

.marvel-container .img-container .img-wrapper.active img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/*colors*/
.marvel-container.spiderman {
  background-color: var(--spiderman-light-background);
}

.marvel-container.spiderman .img-container .img-wrapper .background::after {
  background-color: var(--spiderman-dark-background);
}

.marvel-container.spiderman .purchase .purchase-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(var(--orange)), to(var(--yellow)));
  background-image: linear-gradient(90deg, var(--captain-light-background), var(--captain-dark-background));
}

.marvel-container.ironman {
  background-color: var(--ironman-light-background);
}

.marvel-container.ironman .img-container .img-wrapper .background::after {
  background-color: var(--ironman-dark-background);
}

.marvel-container.ironman .purchase .purchase-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(var(--orange)), to(var(--red)));
  background-image: linear-gradient(90deg, var(--captain-light-background), var(--captain-dark-background));
}

.marvel-container.captain {
  background-color: var(--captain-light-background);
}

.marvel-container.captain .img-container .img-wrapper .background::after {
  background-color: var(--captain-dark-background);
}

.marvel-container.captain .purchase .purchase-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(var(--cyan)), to(var(--blue)));
  background-image: linear-gradient(90deg, var(--captain-light-background), var(--captain-dark-background));
}

/*pagination*/
.marvel-container .swiper-pagination .swiper-pagination-bullet {
  background: var(--white);
  height: 6px;
  width: 6px;
  border-radius: 10px;
  -webkit-transition: all ease var(--transition-time);
  transition: all ease var(--transition-time);
}

.marvel-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
}

/*active states*/
.marvel-container .swiper-slide-active .text-wrapper span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.marvel-container .swiper-slide-active .purchase .year,
.marvel-container .swiper-slide-active .purchase .purchase-btn {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (min-width: 768px) {
  .container__galeria{
    margin-top: -90px;
      padding: 0 5%;
    }
    
  .marvel-container {
    margin: 150px auto 10px;
    overflow: visible;
  }
  .marvel-container .name .sub-title {
    font-size: 1.5rem;
    color: #fff;
  }
  .marvel-container .name .title {
    font-size: 2.5rem;
    color: #fff;
  }
  .marvel-container .img-container .img-wrapper img {
    max-width: 130%;
    position: absolute;
  }
}
/*# sourceMappingURL=style.css.map */







