/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 16:29 Expected ")" to end URL token
Line 98:0 Unexpected "<"
Line 218:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:models_section (INDEX:0) */
<style>
.model-section {
    background-image: url({{ section.settings.background_image | asset_url }});
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; /* fixed on desktop */
    width: 100%;
    padding: 80px 20px;
    box-sizing: border-box;
    position: relative;
    min-height: 600px; /* ensure section shows even if content is small */
}

.secound_main_div {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* ensures content is above background */
}

.first_div, .studio_div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.chiled_div, .chiled_div1 {
    text-align: center;
    width: 48%;
    margin-bottom: 30px;
}

.s_title {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.button_link {
    border: 1px solid white;
    padding: 7px 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    font-family: "Roboto Mono", monospace;
    display: inline-block;
}

.main_div_button {
    width: 100%;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .first_div, .studio_div {
        flex-direction: column;
        align-items: center;
    }

    .chiled_div, .chiled_div1 {
        width: 100%;
        max-width: 320px;
        margin-bottom: 20px;
    }

    .s_title {
        font-size: 24px;
    }

    .button_link {
        font-size: 16px;
        padding: 10px 20px;
    }

    .model-section {
        padding: 50px 15px;
        background-size: cover;
        background-attachment: scroll; /* better on mobile */
    }
}
</style>
/* END_SECTION:models_section */

/* START_SECTION:about_custom_section (INDEX:1) */
<style>
.livework-section {
  padding: 60px 20px;
  font-family: "Rubik", sans-serif;
  color: #111;
 
}

.livework-main_section{
  border-top: 1px solid #ccc;
   border-bottom: 1px solid #ccc;
}

.livework-title {
  text-align: start;
  font-size: 64px;
  font-weight: 700;
  padding: 20px;
display: flex;
justify-content: start;
max-width: 1400px;
margin: 0 auto;
text-transform: uppercase;
font-family: var(--font-heading-family);
font-style: var(--font-heading-style);
font-weight: var(--font-heading-weight);
  
}

.livework-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;

  border-left: none;
  border-right: none;
  padding: 40px 0;
}

.livework-left, .livework-right {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 0 30px;
  position: relative;
}

.livework-left {
  border-right: 1px solid #ccc;
  
}

.livework-left p {
  font-size: 1.5rem;
  color:#757576;
  line-height: 1.6;
  margin: 0;
  width: 300px;
}

.livework-right p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  white-space: pre-line;
  margin: 0;

}

.livework-button {
    
  padding: 7px 32px;
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-weight: lighter;
  text-decoration: none;
  margin-top: 40px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-family: "Roboto Mono", monospace;
}

.livework-button:hover {
  background-color: #333;
}

@media (max-width: 767px) {
  .livework-left {
    border-right: none;
    border-bottom: 0px solid #000;
    margin-bottom: 20px;
    
  }

  .livework-left p {
  font-size: 17px;
  color:#4a494b;
  line-height: 1.6;
  width: calc(100vw - 40px);
  
}

.livework-right p {
  width: calc(100vw - 40px);
  

}

  .livework-button {
    position: static;
    display: block;
    margin: 30px auto 0;
  }
}
</style>
/* END_SECTION:about_custom_section */