<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 69:0 Unexpected "&lt;"
Line 152:0 Unexpected "&lt;"

**/


/* CSS from section stylesheet tags */
/* Import the fonts used */

/* Responsive Styling */
.legal-section {
    padding: 20px;
    margin: 100px auto;
    max-width: 1200px;
}

.legal-section h1 {
    font-family: 'Druk Wide Bold', Arial, sans-serif;
    font-size: 2em;
    color: white;
}

.legal-section p {
    font-family: "Rajdhani", sans-serif;
    font-size: 1em;
    color: #fff;
}

@media (max-width: 768px) {
    .legal-section h1 {
        font-size: 1.5em;
    }

    .legal-section p {
        font-size: 0.9em;
    }
}
/* Responsive Styling */
.license-section {
    padding: 20px;
    margin: 100px auto;
    max-width: 1200px;
}

.license-section h1 {
    font-family: 'Druk Wide Bold', Arial, sans-serif;
    font-size: 2em;
    color: white;
}

.license-section p {
    font-family: "Rajdhani", sans-serif;

    font-size: 1em;
    color: #fff;
}

@media (max-width: 768px) {
    .license-section h1 {
        font-size: 1.5em;
    }

    .license-section p {
        font-size: 0.9em;
    }
}
&lt;style&gt;
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}
.recent-projects-heading {
            font-family: 'Druk Wide Bold', Arial, sans-serif;
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.wrapper {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.carousel {
  display: flex;
  justify-content: center; /* Centers cards in the view */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 20px 0; /* Provides top and bottom padding */
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel .card {
  scroll-snap-align: start;
  flex: 0 0 auto; /* Flex-basis set to auto and does not grow or shrink */
  width: 300px; /* Fixed width for each card */
  height: 187px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-right: 15px; /* Space between cards */
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 20px;
}

.card h2 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 1.2rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0;
}

.card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .carousel {
    justify-content: flex-start; /* Aligns cards starting from the first one on small screens */
    margin: 0 0 0 15px;
  }
}
&lt;/style&gt;
/* Add additional custom styles here if needed */</pre></body></html>