/* @import "https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap";:root {
  --font-family: 'Roboto', sans-serif;
  --transition-time: 0.75s;
  --spiderman-light-background: #1ba5c7;
  --spiderman-dark-background: #1990ad;
  --spiderman-background: #26364b;
  --ironman-light-background: #8EAF16;
  --ironman-dark-background: #576E00;
  --ironman-background: #055426;
  --captain-background: #42658d;
  --captain-dark-background: #233046;
  --captain-light-background: #2b3c53
}

.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: 0 2px 10px rgba(0,0,0,.75);
  box-shadow: 0 2px 10px rgba(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: 3rem
}

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

.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: .1s;
  transition-delay: .1s
}

.marvel-container .name .title {
  font-weight: 700;
  font-size: 2.5rem
}

.marvel-container .overview .description {
  text-align: justify;
  font-size: 14px;
  opacity: .5
}

.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: 0
}

.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: .5;
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
  -webkit-transition: all ease var(--transition-time);
  transition: all ease var(--transition-time);
  -webkit-transition-delay: .15s;
  transition-delay: .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: .25s;
  transition-delay: .25s
}

.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(.75);
  transform: scale(.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
}

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

.marvel-container.spiderman .img-container .img-wrapper .background::after {
  background-color: var(--captain-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(--orange),var(--yellow))
}

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

.marvel-container.ironman .img-container .img-wrapper .background::after {
  background-color: var(--captain-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(--orange),var(--red))
}

.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(--cyan),var(--blue))
}

.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
}

.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) {
  .marvel-container {
      overflow:visible
  }

  .marvel-container .name .sub-title {
      font-size: 1.5rem
  }

  .marvel-container .name .title {
      font-size: 2.5rem
  }

  .marvel-container .img-container .img-wrapper img {
      max-width: 130%;
      position: absolute
  }
}

.love {
  color: #1c2b3c;
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  text-align: center;
  font-weight: 900;
  margin: auto
}

.love a {
  color: #212121
}

@media only screen and (min-width: 1440px) {
  .mr-l {
      margin-left:120px;
      margin-bottom: 50px
  }
}

@media only screen and (min-width: 1024px) {
  .mr-l {
      margin-left:50px;
      margin-bottom: 50px
  }
}

@media only screen and (max-width: 600px) {
  .swiper-container {
      padding-top:160px
  }
}

@media only screen and (min-width: 600px) {
  .mr-l {
      background:;
      margin-left: 235px;
      margin-top: 0
  }
}

@media only screen and (min-width: 768px) {
  .mr-l {
      background:;
      margin-left: 40px;
      margin-bottom: 90px
  }
}

@media only screen and (min-width: 992px) {
  .mr-l {
      background:;
      margin-bottom: 20px
  }
}

@media only screen and (min-width: 1200px) {
  .mr-l {
      background:;
      margin-bottom: 35px
  }
} */
@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: #1c2b3c;
  --spiderman-dark-background: #233046;
  --spiderman-background: #26364b;

  --ironman-light-background: #1c2b3c;
  --ironman-dark-background: #233046;
  --ironman-background: #26364b;

  --captain-background: #1c2b3c;
  --captain-dark-background: #233046;
  --captain-light-background: #26364b;

   /* Add styles for the fourth slider here */
   --thor-light-background: #1c2b3c; /* Replace with desired color */
   --thor-dark-background: #233046; /* Replace with desired color */
   --thor-background: #26364b; /* Replace with desired color */
}
.marvel-container {
  font-family: var(--font-family);
  border-radius: 10px;
  transition: all ease var(--transition-time);
  overflow: hidden;
  margin: 20px auto;
  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: 3rem;
}
.marvel-container .name .sub-title {
  color: var(--warning);
  font-weight: 600;
  margin-bottom: -0.5rem;
}

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



.marvel-container .name .title {
  font-weight: 700;
  font-size: 2.5rem;
}
.marvel-container .overview .description {
  text-align: left;
  font-size: 14px;
  opacity: 0.5;
}
.marvel-container .overview .title {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  display: flex;
  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;
  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: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.marvel-container .purchase .year {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  opacity: 0.5;
  transform: translateY(150%);
  transition: all ease var(--transition-time);
  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);
  transform: translateY(150%);
  transition: all ease var(--transition-time);
  transition-delay: 0.25s;
}


.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;
  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: flex;
  transition: all ease var(--transition-time);
}
.marvel-container .img-container .img-wrapper img {
  position: relative;
  bottom: 0;
  max-width: 100%;
  z-index: 4;
  transform: scale(0.75);
  opacity: 0;
  transition: all ease var(--transition-time);
}

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


.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: linear-gradient(90deg, var(--orange), var(--yellow));
}

.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: linear-gradient(90deg, var(--orange), var(--red));
}

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

.marvel-container .purchase .purchase-btn {
  background-image: linear-gradient(90deg, var(--orange), var(--red));
}

.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: linear-gradient(90deg, var(--cyan), var(--blue));
}

.marvel-container .swiper-pagination .swiper-pagination-bullet {
  background: var(--white);
  height: 6px;
  width: 6px;
  border-radius: 10px;
  transition: all ease var(--transition-time);
  outline:0;
}
.marvel-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
}


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

@media (min-width: 768px) {
  .marvel-container {
    margin: 150px auto 10px;
    overflow: visible;

  }
  .marvel-container .name .sub-title {
    font-size: 1.5rem;
  }
  .marvel-container .name .title {
    font-size: 2.5rem;
  }
  .marvel-container .img-container .img-wrapper img {
    max-width: 130%;
    position: absolute;
    height:100%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .marvel-container .img-container .img-wrapper img {
    height: 142% !important;
  }
  .work-slider-details{
    margin-top:92px;
  }
}
.createdby{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:var(--dark);
  padding:4px;
  color:var(--white);
  z-index:10000;
}
