/** Shopify CDN: Minification failed

Line 178:1 Expected "}" to go with "{"

**/
html, body {
    overflow-x: hidden;
  max-width: 1980px;
    margin: 0 auto; /* Centers the content */
}

.rounded-image-barley2 {
    background-image: url('https://farmngshopify.s3.us-east-2.amazonaws.com/Rectangle+1+(1).png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    width: 60%;
    height: 80vh;
   margin: 50px auto 50px;
    display: flex;
    flex-direction: column;  /* Vertical stacking */
    justify-content: flex-end;  /* Push content to the bottom */
    align-items: flex-start;  /* Align content to the left */
}

.headline-1 {
  max-width: 45%;
  padding-top: 30px;
}

.headline-1-subtext {
  max-width: 55%;
}

.headline-1, .headline-1-subtext{
  text-align: center;
}

.headline-1-subtext{
  font-size: 20px;
}

.card-list-title h2 {
  padding-top: 78.6px;
  padding-bottom: 20px;
}

.headline-1, .headline-1-subtext, .card-list-title, .card-wrapper {
  width: 60%;
  height: auto;
  margin: auto;
}

.card-wrapper {
    background-color: #F7F7F7;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px; /* Adjust padding as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
  margin-bottom: 40px;
}

.card-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.card-text {
    flex-basis: 50%;
    text-align: left;
    display: flex; /* Make card-text a flex container */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically */
    align-items: flex-start; /* Align items to the start (left) horizontally */
  padding:40px;
}

.card-text p {
  font-size: 20px;
}

.card-image {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.card-image img {
    width: 100%; /* Adjust if needed */
    height: auto;
    border-radius: 15px; /* Optional: if you want the image itself to have rounded corners */
  object-fit: contain;
}

/* Apply hover effect only on non-touchscreen devices (typically desktops) */
@media (hover: hover) and (pointer: fine) {
  .card-image img {
    transition: transform 0.3s ease; /* Smooth transition for scaling */
  }

  .card-image img:hover {
    transform: scale(1.05); /* Slightly scale up the image on hover */
  }
}
@media (max-width: 768px) {
    .rounded-image-barley2 {
        width: 90%;
      background-image: url('https://farmngshopify.s3.us-east-2.amazonaws.com/Slide+16_9+-+45.png');
      height: 55vh;
    }

    .headline-1, .headline-1-subtext {
      width: 90%;
      max-width: 90%;
    }

  .card-list-title{
    width:90%;
    margin: auto;
  }

  .card-list-title h2{
    padding-top: 10px !important;
  }
  
  .card-wrapper {
        flex-direction: column; /* Stack items vertically */
        max-width: 90%; /* Adjust the width to 90% */
        width: 90%;
    }

    .card-content {
        flex-direction: column-reverse;
    }

    .card-text, .card-image {
        flex-basis: auto; /* Reset flex-basis */
        width: 100%; /* Full width of the container */
      padding: 16px !important;
    }

    .card-text {
        margin-top: 20px; /* Space between image and text */
    }

  .headline-1, .headline-1-subtext, .card-wrapper {
    width: 90%;
    margin: 0 auto 30px !important; /* Center these elements */
  }

   .headline-1, .headline-1-subtext{
  text-align: left;
    margin-left: 20px;
}

@media (max-width: 480px) {

    .rounded-image-barley2 {
        width: 90%;
      background-image: url('https://farmngshopify.s3.us-east-2.amazonaws.com/Slide+16_9+-+45.png');
      height: 55vh;
      margin-bottom: 0px;
      margin-top: 10px;
    }


  .headline-1, .headline-1-subtext{
  text-align: left;
    margin-left: 20px;
}
}