/** Shopify CDN: Minification failed

Line 30:15 Expected identifier but found whitespace
Line 30:17 Unexpected "{"
Line 30:26 Expected ":"
Line 30:55 Expected ":"
Line 35:17 Expected identifier but found whitespace
Line 35:19 Unexpected "{"
Line 35:28 Expected ":"
Line 35:56 Expected ":"
Line 53:15 Expected identifier but found whitespace
Line 53:17 Unexpected "{"
... and 86 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:animated-image-bar (INDEX:0) */
.animated-image-bar {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: {{ section.settings.height_desktop }}px;
  }

  @media (max-width: 768px) {
    .animated-image-bar {
      min-height: {{ section.settings.height_mobile }}px;
    }
  }

  .animated-image-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, {{ section.settings.overlay_opacity | divided_by: 100.0 }});
    z-index: 1;
  }

  .animated-image-bar-content {
    position: relative;
    z-index: 2;
    text-align: {{ section.settings.text_alignment }};
    color: {{ section.settings.text_color }};
    max-width: {{ section.settings.width_desktop }}px;
    padding: 40px 20px;
    width: 100%;
  }

  @media (max-width: 768px) {
    .animated-image-bar-content {
      max-width: {{ section.settings.width_mobile }}px;
      padding: 30px 15px;
    }
  }

  .animated-image-bar-heading {
    font-size: {{ section.settings.heading_font_size }}px;
    font-weight: {{ section.settings.heading_font_weight }};
    margin: 0 0 15px 0;
    line-height: 1.2;
    animation: {{ section.settings.animation_type }} {{ section.settings.animation_duration }}s ease-in-out;
  }

  .animated-image-bar-heading-image {
    display: block;
    margin: 0 0 15px 0;
    animation: {{ section.settings.animation_type }} {{ section.settings.animation_duration }}s ease-in-out;
    {% if section.settings.heading_image_position_x == 'left' %}
      margin-left: 0;
      margin-right: auto;
    {% elsif section.settings.heading_image_position_x == 'right' %}
      margin-left: auto;
      margin-right: 0;
    {% else %}
      margin-left: auto;
      margin-right: auto;
    {% endif %}
    {% if section.settings.heading_image_width > 0 %}
      max-width: {{ section.settings.heading_image_width }}px;
    {% else %}
      max-width: 100%;
    {% endif %}
    height: auto;
  }

  .animated-image-bar-text {
    font-size: {{ section.settings.text_font_size }}px;
    margin: 0;
    line-height: 1.6;
    animation: {{ section.settings.animation_type }} {{ section.settings.animation_duration }}s ease-in-out 0.2s both;
  }

  .animated-image-bar-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: {{ section.settings.button_background }};
    color: {{ section.settings.button_text_color }};
    text-decoration: none;
    border-radius: {{ section.settings.button_radius }}px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid {{ section.settings.button_background }};
    animation: {{ section.settings.animation_type }} {{ section.settings.animation_duration }}s ease-in-out 0.4s both;
  }

  .animated-image-bar-button:hover {
    background-color: transparent;
    color: {{ section.settings.button_background }};
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
  }

  @keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }

  @keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
    to { opacity: 1; transform: rotate(0) scale(1); }
  }
/* END_SECTION:animated-image-bar */