/** Shopify CDN: Minification failed

Line 140:2 Unexpected ","

**/
.page-title {
  margin-top: 0;
}

.main-page-title {
  margin-bottom: none;
}

.page-placeholder-wrapper {
  display: flex;
  justify-content: center;
}

.page-placeholder {
  width: 52.5rem;
  height: 52.5rem;
}

.page-title:first-of-type {
  display: none;
}

.image-banner-container {
  margin: 0;
  padding: 0;
}

.image-banner {
  display: flex;
  align-items: stretch;
  padding-top: 0; /* Remove any padding around the banner */
  margin-top: -3%;
  width: 100%; /* Make the banner span the full viewport width */
  height: 700px;
}

.image-banner__image {
  flex: 1; /* Ensure both images take up equal width */
  margin: 0; /* Remove any gaps between images */
  padding: 0; /* Remove padding */
}

.image-banner__image img {
  width: 100%; /* Stretch the images to fill their containers */
  height: 100%; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure the images cover their containers */
  display: block;

}
.page-heading {
  margin-top: 2%;
  text-align: center;
}

.slideshow-and-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40rem;
  width: 100%;
}

.slideshow-container {
  position: relative;
  transform: translateY(0);
  width: 50%;
  margin-left: 10%;
  padding: 0;
}

.slide img {
  width: 80%;
  height: auto;
}

.pricing-details {
  width: 80%;
  padding: 10px;
  margin-right: -30%;
  margin-top: 7%;
}

.pricing-details h2 {
  font-size: 30px;
  margin-bottom: 1rem;
}

.pricing-details p {
  font-size: 25px;
  margin-bottom: 1rem;
}

.pricing-details ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.start-designing-button {
  display: inline-block;
  background-color: #E5B4E1; 
  color: white; 
  padding: 0.8rem 1.7rem; /* Adjust padding */
  border-radius: 5px; /* Rounded corners */
  font-family: 'Libre Franklin', sans-serif;
  text-decoration: none;
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
  margin-left: 25px;
  transition: background-color 0.3s ease;
}

.start-designing-button:hover {
  background-color: #D498CF; 
}

@media screen and (max-width: 768px) {
  .header {
    margin: none;
  }
  
  .slideshow-and-details {
    flex-direction: column;
    align-items: center; /* Center-align for better aesthetics */
    width: 100%;
  }

  .slideshow-container {
   width: 100%;
   margin-left: 22%;
    padding: none;
  }

  ,slide img {
    width: 100%;
    height: auto;
  }
  
  .pricing-details {
    width: 50%;
    margin: 0;
    text-align: center;
  }

  .pricing-details h2 {
  font-size: 17px;
}

.pricing-details p {
  font-size: 10px;
}

  .pricing-details ul {
font-size: 10px;
}
  
  .image-banner {
  flex-direction: column; /* Stack the images vertically */
  justify-content: flex-start;
  height: auto;
  margin-top: -14%;
  }

  .image-banner__image {
    width: 100%; /* Make the images take up full width */
    margin: 0;
    padding: 0;
  }

    .image-banner__image img {
    width: 100%; /* Ensure images stretch to fill their containers */
    height: auto; /* Adjust height proportionally for stacked images */
  }

  .start-designing-button {
    margin-left: -4%;
  }
}

