.wrapper {
  height: 260vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.element {
  display: flex;
  width: 70%;
    flex-direction: column;
    padding-right: 37px;
    /* width: 30%; Adjust the percentage as needed */
    box-sizing: border-box; /* Include padding in the element's total width */
  }
  
  
.element-title h3 {
  color: #338448;
  font-size: 1.2rem;
  text-align: left;
  font-weight: bolder;
}


h3{
  text-align: left !important;
}

.element-title p {
  color: #888888;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  padding: 0px 6px 0px 20px;

}
.element-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between !important;
  list-style-type: disc;
  padding: 0;
  font-weight: 700;
  font-size: 0.8rem;
  color: #888888;
  text-align: left;
}

.element-list ul li {
  flex: 1 1 50%;
  background-image: url("https://karolnowinski.pl/assets/checked.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-left: 5px;
  margin: 8px 0;
}


@media (max-width: 600px) {
  .wrapper {
    height: auto;
  }

  .wrapper::before {
    height: 100vh;
  }

  .card {
    width: 90%;
    max-width: 90%;
  }

  .text h2 {
    font-size: 1.7rem;
    margin-top: 20px;
  }

  .text p {
    font-size: 1.3rem;
    margin-top: 5px;
  }

  .image {
    margin: 15px 15px 0px 15px;
  }

  .price-ribbon {
    height: 20px;
    padding: 0 10px;
  }

  .price-ribbon::before {
    left: -10px;
    border-bottom: 10px solid #ffda06;
    border-top: 10px solid #ffda06;
    border-left: 10px solid transparent;
  }

  .price {
    font-size: 0.9rem;
  }

  .content {
    align-items: center;
  }

  .element {
    padding: 12px;
    width: 100%;
  }

  .element-title {
    padding-bottom: 5px;
  }

  .element-title h3 {
    font-size: 1rem;
  }

  .element-title p {
    font-size: 0.75rem;
    margin-top: 3px;
  }

  .element-list ul {
    justify-content: center;
  }

  .element-list ul li {
    padding-left: 3px;
    margin: 3px 0 0px 3px;
  }

  .element button {
    padding: 8px;
    font-size: 0.9rem;
  }
  .image img {
    width: 100%;
    height: auto;
  }
}

