/** Shopify CDN: Minification failed

Line 14:2 Unexpected "{"
Line 14:3 Expected identifier but found "%"
Line 14:35 Unexpected "{"
Line 14:36 Expected identifier but found "%"
Line 59:13 Expected identifier but found whitespace
Line 59:15 Unexpected "{"
Line 59:24 Expected ":"

**/
.golden-rum-section {
  width: 100%;
  {% comment %} min-height: 600px; {% endcomment %}
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;  
  background-position: center;
}
.d-flex.flex-colom {
    min-height: 600px;
    align-items: center;
    justify-content: right;
}
.d-flex{
display:flex;
}
/* Overlay for readability */
.golden-rum-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* adjust darkness */
  z-index: 1;
}

.golden-rum-content {
  position: relative;
  z-index: 2;    float: right;
  max-width:620px;    text-align: center;
  padding: 40px 20px;
}
.golden-rum-content h2, .golden-rum-content h1 {
    margin-bottom: 50px;
    color: #fef8e8;
    line-height: 1.4;
    letter-spacing: 6px;
    /* font-weight: 600; */
    /* width: 530px; */
    text-transform: uppercase;
}

.golden-rum-btn {
  display: inline-block;
  padding: 9px 40px 7px;
  text-transform: uppercase;
  transition: all 0.9s ease;
}
.golden-rum-btn:hover {
  background: {{ section.settings.button_bg_color }};
  color: #000;
}

/* Mobile background image */
@media (max-width: 768px) {
  .golden-rum-overlay { 
    background: rgb(0 0 0 / 84%); 
    display: block !important;
}
 .template-index .golden-rum-overlay {  
    display: none !important;
}
  .golden-rum-section {
    min-height: 400px;        background-position: -180px 0;
    background-image: url('{{ section.settings.mobile_image | img_url: '800x' }}');
  }
  .golden-rum-content {
    text-align: center;
    margin: 0 auto;
  }
}
