/** Shopify CDN: Minification failed

Line 18:18 Expected identifier but found whitespace
Line 18:20 Unexpected "{"
Line 18:29 Expected ":"
Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:24 Expected ":"

**/


/* CSS from section stylesheet tags */
.background-text-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: {{ section.settings.text_alignment }};
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: {{ section.settings.text_alignment }};
}

.background-text-section{height: 800px;}

.background-text-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

.background-text-section__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.background-text-section__subheading {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 0px;
  color: #fff;
}

.background-text-section__heading {
  font-size: 64px;
  font-weight: bold;
  margin:0 0 10px;
  text-transform: uppercase;
  color: #fff;
}

.background-text-section__description {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 300;
  max-width: 440px;
  line-height: 1.2;
}
.background-text-section__description p{margin: 0;}

.background-text-section__button {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}
.background-text-section__button:hover{
  background-color: #fff;
  color: #000;
}