.wersje{
  background-color: white;
  padding: 80px 0;
}

.wersjeOuter{
  position: relative;
  height: 670px;
  width: 930px;
  margin: 0 auto;
}

.wersja{
  position: absolute;
  border-radius: 40px;
  box-shadow: 0 2px 19px rgba(0, 0, 0, 0.17);
}

.wersja h3{
  text-align: center;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 32px;
}

.standard h3{
  color: #FFBB35;
}

.custom h3{
  margin-bottom: 24px;
}

.premium ul li, .premium h3{
  color: white;
}

.premium h3{
  margin-bottom: 22px;
}

.standard{
  z-index: 3;
  width: 465px;
  left: 0;
  top: 40px;
  padding: 40px 20px;
  background-color: #fff;
}
.premium{
  z-index: 2;
  right: 0;
  top: 0;
  width: 545px;
  background: rgb(116,40,158);
background: linear-gradient(180deg, rgba(255,123,182,1) 0%, rgba(207,55,122,1) 100%);
  padding: 50px 20px;
}
.custom{
  z-index: 1;
  bottom: 0;
  width: 780px;
  background-color: #FFBB35;
  padding: 90px 20px 40px;
  left: 90px
}

.custom p{
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
}

.wersja ul li{
  font-size: 18px;
  margin-bottom: 10px;
  list-style-type: none;
  position: relative;
  line-height: 1.25;
}
.premium ul{
  margin-left: 80px;
  
}




.wersja ul li:before{
  display: block;
  content: '';
  position: absolute;
  background-image: url('../image/punkt_zolty.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  left: -34px;
  top: 1px;
}

.wersja.standard ul li:before{

  background-image: url('../image/punkt_purple.svg');
  
}


.premium ul li:first-child{
  margin-bottom: 20px;
  list-style-type: none;
  
}
.premium ul li:first-child:before{
  display: none;
}

@media only screen and (max-width: 992px){
  .wersjeOuter{
    position: static;
    width: 100%;
    height: auto;
  }
  .wersja{
    position: static;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    padding: 20px;
    margin-bottom: 10px;
  }

  .premium ul{
    margin-left: 0;
  }
}