/** Shopify CDN: Minification failed

Line 46:8 Expected identifier but found whitespace
Line 46:10 Unexpected "{"
Line 46:19 Expected ":"

**/
.two-column__section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row; 
}

.left-column {
  flex: 1;
}

.left-column-content-container {
  max-width: 640px;
  margin: 0 auto; 
  padding: 45px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.left-column .two-col__title {
  font-family: Oswald;
  font-size: 70px;
  line-height: 74px;
  text-align: left;
  text-transform: uppercase; 
  margin: 0 auto 10px;
}

.left-column .two-col__subtitle {
  font-family: Oswald;
  font-size: 70px;
  line-height: 74px;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  color: {{ section.settings.subtitle_color }};
}

.left-column .two-col__title p, .left-column .two-col__subtitle p {
  margin: 0;
}

.left-column a {
  padding: 18px 20px;
  border: none;
  cursor: pointer;
  margin-top: 30px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none; 
}

.right-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 682px;
  overflow: hidden;
}

.right-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1300px) {
    .left-column-content-container {
      padding: 0 20px;
    }
    .right-column {
      height: 682px;
    }
}

@media (max-width: 768px) {
    .two-column__section {
      flex-direction: column-reverse;
    }
    .left-column {
      height: 100%;
    }
    .left-column a {
      margin-top: 10px;
      width: 100%;
    }
    .left-column-content-container {
      padding: 10px;
    }
    .left-column .two-col__title, .left-column .two-col__subtitle {
      font-size: 38px;
      line-height: 40px;
    }
    .right-column {
      flex: none;
      height: 350px;
    }
}