/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 119:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .four-column-section {
    padding: 40px 0;
    text-align: center;
    counter-reset: column-counter;
  }

  .four-column-section .columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }


   .four-column-section {
    padding: 40px 0;
    text-align: center;
    counter-reset: column-counter; /* Initialize the counter here */
  }

  .four-column-section .column {
    width: 23%;
    box-sizing: border-box;
    counter-increment: column-counter; /* Increment it here */
    position: relative;
    margin-bottom: 30px;
    border: 1px solid;
    border-radius: 10px;
    padding: 15px;
  }

  .column-counter::before {
    content: counter(column-counter, decimal-leading-zero);
    display: inline-block;
    background-color: #e8d6c1;
    color: #070b12;
    font-weight: bold;
    border-radius: 50%;
    width: 78px;
    height: 78px;
    line-height: normal;
    text-align: center;
    font-size: 50px;
    margin-bottom: 10px;
    padding: 10px;
  }
  
  .column-header {
    position: relative;
    margin-bottom: 15px;
  }
  .column-counter {
    display: block !important;
}
  .column-description {
    margin-top: 10px;
  }

  .four-column-section h3 {
    color: #e8d6c1;
}

.four-column-section h2 {
    color: #fff;
    font-weight: 500;
}

.additional_text_info {
    display: flex;
    /* align-content: center; */
    gap: 35px;
    margin-bottom: 50px;
    align-items: center;
}

.additional_text_info p {
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-style: italic;
    position: relative;
}

.additional_text_info p:before {
    content: "";
    width: 100px;
    height: 4px;
    background: #fff;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -6px;
    bottom: 0;
}

.duration-buttons {
    display: flex;
    gap: 20px;
}

.duration-buttons span.duration-btn {
    background: #e7d6c1;
    color: #070b12;
    font-size: 21px;
    padding: 5px 25px;
    border-radius: 30px;
}
</style>