/** Shopify CDN: Minification failed

Line 18:2 Unexpected "#"
Line 18:4 Unexpected "{"
Line 18:16 Expected ":"
Line 18:20 Unexpected "{"
Line 26:2 Unexpected "#"
Line 26:4 Unexpected "{"
Line 26:16 Expected ":"
Line 37:2 Unexpected "#"
Line 37:4 Unexpected "{"
Line 37:16 Expected ":"
... and 63 more hidden warnings

**/
  @import url('https://fonts.googleapis.com/css2?family=Niconne&display=swap');
  
  #{{ section_id }} {
    background: var(--promise-bg);
    color: var(--promise-text);
    border-top: 1px solid var(--promise-border);
    border-bottom: 1px solid var(--promise-border);
    width: 100%;
  }

  #{{ section_id }} .about-promise__container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-top: var(--promise-spacing-top);
    padding-bottom: var(--promise-spacing-bottom);
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
  }

  #{{ section_id }} .about-promise__heading {
    margin: 0;
    text-align: center;
    font-size: 33px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--promise-text);
    font-family: 'Niconne', cursive;
  }

   #{{ section_id }} .about-promise__heading1 {
    margin: 0 0 58px;
    text-align: center;
    font-size: var(--promise-heading-size);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--promise-text);
  }

  #{{ section_id }} .about-promise__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 25px;
    align-items: start;
  }

  #{{ section_id }} .about-promise__item {
    min-width: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #{{ section_id }} .about-promise__icon {
    width: var(--promise-icon-size);
    height: var(--promise-icon-size);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--promise-icon);
    flex-shrink: 0;
  }

  #{{ section_id }} .about-promise__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  #{{ section_id }} .about-promise__title {
    width: 100%;
    font-size: var(--promise-item-title-size);
    line-height: 1.35;
    font-weight: 400;
    color: var(--promise-text);
    letter-spacing: -0.01em;
  }

  #{{ section_id }} .about-promise__text {
    margin-top: 7px;
    max-width: 190px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--promise-text);
    opacity: 0.75;
  }

  /* Tablet */
  @media screen and (max-width: 990px) {
    #{{ section_id }} .about-promise__container {
      padding-left: 25px;
      padding-right: 25px;
    }

    #{{ section_id }} .about-promise__heading1 {
      margin-bottom: 45px;
    }

    #{{ section_id }} .about-promise__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      row-gap: 45px;
    }
  }

  /* Mobile */
  @media screen and (max-width: 600px) {
    #{{ section_id }} .about-promise__container {
      padding-left: 18px;
      padding-right: 18px;
    }

    #{{ section_id }} .about-promise__heading1 {
      margin-bottom: 38px;
      font-size: 28px;
    }

     #{{ section_id }} .about-promise__heading {
    margin: 0;
    
    font-size: 25px;
   
  }

    #{{ section_id }} .about-promise__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 15px;
      row-gap: 38px;
    }

    #{{ section_id }} .about-promise__icon {
      margin-bottom: 16px;
    }

    #{{ section_id }} .about-promise__title {
      font-size: 14px;
      line-height: 1.35;
    }

    #{{ section_id }} .about-promise__text {
      font-size: 12px;
      max-width: 145px;
    }
  }

  /* Small Mobile */
  @media screen and (max-width: 380px) {
    #{{ section_id }} .about-promise__container {
      padding-left: 14px;
      padding-right: 14px;
    }

    #{{ section_id }} .about-promise__grid {
      column-gap: 10px;
    }

    #{{ section_id }} .about-promise__icon {
      width: 48px;
      height: 48px;
    }

    #{{ section_id }} .about-promise__title {
      font-size: 13px;
    }
  }

  /* ==========================================
   ACTION BUTTONS
   ========================================== */

.about-promise__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
}

/* DESIGN YOUR OWN JEWELRY BUTTON */

.about-promise__design-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 262px;
  height: 50px;

  background: #044b61;
  color: #ffffff;

  text-decoration: none;
  text-align: center;

  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;

  border: 1px solid #044b61;
;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.about-promise__design-button:hover {
  background: #ffffff;
  color: #044b61;
  border-color: #044b61;
}


/* CALL US BUTTON */

.about-promise__call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 25px;

  background: transparent;
  color: #044b61;

  text-decoration: none;

  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;

  border: none;
  padding: 0;

  transition: opacity 0.3s ease;
}

.about-promise__call-button:hover {
  opacity: 0.65;
}


/* PHONE ICON */

.about-promise__phone-icon {
  width: 22px;
  height: 22px;

  margin-right: 8px;

  flex-shrink: 0;
}


/* MOBILE */

@media screen and (max-width: 749px) {

  .about-promise__buttons {
    margin-top: 25px;
  }

  .about-promise__design-button {
    width: 260px;
    max-width: calc(100% - 30px);
    height: 50px;
    font-size: 15px;
  }

  .about-promise__call-button {
    margin-top: 23px;
    font-size: 15px;
  }

}