/** Shopify CDN: Minification failed

Line 29:22 Expected identifier but found "!"
Line 45:12 Unexpected "{"
Line 45:21 Expected ":"
Line 164:13 Unexpected "{"
Line 164:22 Expected ":"

**/


/* CSS from section stylesheet tags */
.banner-feature-section {
  padding: 2rem 1rem;
  overflow:hidden;
}
  
.banner-feature-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-color, #f5f5f7);
  gap: 2rem;
  height: 100%;
  min-height:90vh;
}

.banner-feature-container.banner_rounded{
  border-radius: 10px;!important
}

.banner-feature-container.banner-box-shadow{
 box-shadow: 2px 4px 16px #00000029;
}

.banner-feature-wrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  min-height: calc(60vh - 60px);
}

  .section-{{ section.id }} .title-wrapper{
    display: flex;
    flex-direction: column;
  }

  .title__headline p {
    margin: 0 !important;
  }

  .banner-card{
    width:100%;
    text-align: start;
  }

  .banner-card h3{
    margin: 0 !important;
  }

  .banner-feature-text {
  flex: 1;
  text-align: center;
}


  
.banner-feature-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  flex-direction: row;
  gap:20px;
  width: 100%;
}

  .banner_feature-btn{
    min-width: initial !important;
  }

.button.banner_feature-btn-secondary{
  display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    padding: 0 1.5rem;
    cursor: pointer;
    font: inherit;
  text-decoration:none;
 background: transparent;
  color: #003B61;
}
  

.superposed-images {
  position: relative;
  width: 60%;
  height: auto;
  display: flex;
  align-items: center;
}

  .superposed-images img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.6s ease, rotate 0.6s ease;
  width: 100%;
  z-index: 1;
}

/*
  .banner-feature-container::after{
    content: '';
    background-image: url('/cdn/shop/files/test_animation2.svg?v=1750259145');
    height: 100%;
    width: 120px;
    display: block;
    position:absolute;
    left:0;
  }
*/

@media (min-width: 768px) {
  .banner-feature-container {
    flex-direction: row;
    justify-content: space-between;
     min-height:60vh;
  }

  .banner-feature-buttons {
    flex-direction: row;
  }
   .banner-feature-text {
    text-align: left;
  }

  .superposed-images {
    width: 50%;
  }

  .superposed-images img {
    max-width: 400px;
  }
}
  

@media (min-width: 1199px) {

  .banner-feature-wrapper{
    flex-direction: row;
    align-items: center;
    gap: 50px;
    padding-inline-start:clamp(0px, 6.25vw, 120px);
    padding-inline-end:clamp(0px, 6.25vw, 120px);
    min-height: calc(60vh - 60px);
  }

   .section-{{ section.id }} .title-wrapper{
    margin-bottom: 0 !important;
  }

  
  .banner-card{
    width:50%;
    text-align:left;
  }

  .banner-card p {
    max-width: 85%;
  }

  .banner-feature-buttons {
    justify-content: start;
  }

  .superposed-images {
    width: 100%;
    max-width: 400px;
  }

   .superposed-images img {
      top: initial;
     left: 46%;
    }
  
}

@media (min-width: 1499px) {

   .superposed-images img {
     left: 75%;
    }
  
}