* {
  box-sizing: border-box;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.wrapper {
  height: 260vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  background-image: linear-gradient(
      to bottom,
      rgba(22, 107, 33, 0.7),
      rgba(34, 238, 16, 0.5)
    ),
    url("../img/1-1291215.webp");
  background-position: 50% 70%;
  height: 90vh;
  width: 100%;
}

.wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50vh;
  background-color: white;
  z-index: -1;
  transform: skew(0deg, 5deg);
  width: 100%;
  max-width: 1200px;
}

.text {
  color: white;
  margin: 74px;
  text-align: center;
}

.text h2 {
  font-size: 3rem;
  margin-top: 120px;
  font-weight: bolder;
}

.text p {
  margin-top: 10px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: bolder;
}

.card {
  background-color: white;
  box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 1.1);
  border-radius: 20px;
  width: 900px;
}

.image {
  margin: 25px 25px -50px 25px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.price-ribbon {
  background-color: #ffda06;
  padding: 0 15px;
  width: auto;
  height: 40px;
  bottom: 0;
  right: 0;
  z-index: 1;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-ribbon::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -20px;
  bottom: 0;
  border-bottom: 20px solid #ffda06;
  border-top: 20px solid #ffda06;
  border-left: 20px solid transparent;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.image img {
  width: 65%;
  height: 50vh;
  margin: auto;
}

.content {
  display: flex;
  margin: 0px 25px 25px 25px;
  justify-content: space-between;
  max-width: 100%;

}

.element {
display: flex;
width: 70%;
  flex-direction: column;
  padding-right: 39px;
  /* width: 30%; Adjust the percentage as needed */
  box-sizing: border-box; /* Include padding in the element's total width */
}


.element-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #efefef;
}

.element-title h3 {
  color: #338448;
  font-size: 1.3rem;
  text-align: right;
  font-weight: bolder;
}


h3{
  text-align: right !important;
}
.element-title p {
  color: #888888;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: right;
}

.element > * {
  margin: 10px 0;
}

.element-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style-type: disc;
  padding: 0;
  font-weight: 700;
  font-size: 0.8rem;
  color: #888888;
  text-align: right;
}
.mark, mark {
  padding: .2em;
  background-color: #ace1a8;
}
.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: 25px;
  margin: 8px 0;
}

.element button {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 0;
  background-color: #42923c;
  border: none;
  border-radius: 8px;
  color: white;
  position: relative;
  box-shadow: 0 5px 0 0 #59c451;
}

.element button:hover {
  cursor: pointer;
  transform: translateY(1px);
  background-color: #30692c;
}


.container {
  /* display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  position: relative; */
  scroll-snap-type: mandatory !important;
}
@media (min-width: 992px){
.container {
    max-width: 100%;
}}
/* Rest of your CSS remains unchanged */
@media (max-width: 600px) {
  .wrapper {
    /* height: auto; */
  }

  .wrapper::before {
    height: 80vh;
  }

  .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;
  }

  .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: 15px;
    margin: 3px 0 0px 3px;
  }

  .element button {
    padding: 8px;
    font-size: 0.9rem;
  }
  .image img {
    width: 100%;
    height: auto;
  }
}



#footer {
  background: #42923c;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #fff;
  padding: 60px 0 0px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}


#footer .footer-top img{
  display: block;

  width: 250px;
  height: 165px;
  margin: auto;
}


#footer .copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  #footer .footer-top img {
    width: 80%;
    height: auto;
  }

  #footer .copyright {
    font-size: 0.8rem; /* Adjust font size for smaller screens */
  }
}


@media (max-width: 600px) {
  .wrapper {
    height: auto;
  }

  .wrapper::before {
    height: 60vh;
  }

  .card {
    width: 90%;
    max-width: 90%;
  }

  .text h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .text p {
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: -20px;

  }

  .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: flex-start;
    flex-wrap: wrap;
  }

  .element {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .element-title {
    width: 100%;
    padding-bottom: 5px;
  }

  .element-title h3 {
    font-size: 1rem;
    font-weight: 900;
  }

  .element-title p {
    font-size: 0.75rem;
    margin-top: 3px;
  }

  .element-list ul {
    width: 100%;
    justify-content: flex-start;
  }

  .element-list ul li {
    width: 48%; /* Adjust width as needed */
    padding-left: 15px;
    margin: 3px 0;
  }

  .element button {
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
  }
  .image img {
    width: 100%;
    height: auto;
  }
  h3{
    font-size: 1rem;
    font-weight: bolder;
  }
}

.language {
  position: fixed;
  bottom: 85px;
  right: 5px;
  text-align: center;
}

.language img {
background-color: #42923c;
width: 50px;
height: 50px;
}
