/** Shopify CDN: Minification failed

Line 98:0 Unexpected "}"

**/
.contact img {
  max-width: 100%;
}

.contact .form__message {
  align-items: flex-start;
}

.contact .icon-success {
  margin-top: 0.2rem;
}

.contact .field {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 750px) {
  .contact .field {
    margin-bottom: 2rem;
  }
}

.contact__button {
  margin-top: 3rem;
}
.contact-banner {
    display: flex;
    width: 100%;
    height: 300px; /* Adjust the height as needed */
    overflow: hidden;
}

.banner-left {
    width: 50%; /* This can be adjusted to control the size of the left image */
    height: 100%;
}

.banner-left img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the full height and width of the div */
}

.banner-right {
    width: 50%; /* Adjust this to control how much space the text takes */
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center; /* Vertically aligns the content */
    justify-content: center; /* Centers the content horizontally */
    background-color: rgba(255, 255, 255, 0.7); /* Optional background for text */
}

.banner-right h2, .banner-right p {
    color: #333; /* Adjust the text color */
    text-align: center; /* Center the text */
}


@media only screen and (max-width: 768px) {
    .contact-banner img {
        height: 200px; /* Smaller height for mobile devices */
    }
}

@media screen and (min-width: 750px) {
  .contact__button {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 750px) {
  .contact__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
  }
}
/* Custom styles for the Contact Us page banner */
.contact-banner img {
    width: 100%;
    height: 300px; /* Default height for desktop */
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .contact-banner img {
        height: 200px; /* Smaller height for mobile devices */
    }
}

}
