/** Shopify CDN: Minification failed

Line 180:12 Unexpected "{"

**/
/*===========================
=       FONT SETUP          =
===========================*/
.heading-font {
   font-family: 'Friends';
}
.body-font {
     font-family: 'Friends';
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
   font-family: 'Friends';
}
body h2,
body .h2 {
  font-size: 48px;
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0;
}
/*===========================
=        BUTTON STYLE       =
===========================*/
.dev-btn-group{
  display: flex;
}
.dev-btn {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.75px;
  line-height: 1;
  padding: 23px 30px;
  text-decoration: none;
  background: #702979;
  color: #FFFFFF;
  appearance: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
 font-family: 'Friends';
}
.dev-btn:hover {
  opacity: 0.85;
}

/*===========================
=     FONT WEIGHT UTILS     =
===========================*/
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
/*===========================
=      TEXT UTILITIES       =
===========================*/
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
/*===========================
=       FLEX UTILITIES      =
===========================*/
.d-flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
/*===========================
=     LAYOUT / DISPLAY      =
===========================*/
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.hidden {
  display: none !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.h-auto {
  height: auto !important;
}
/*===========================
=     POSITION / Z-INDEX    =
===========================*/
.relative {
  position: relative !important;
}
.absolute {
  position: absolute !important;
}
.fixed {
  position: fixed !important;
}
.sticky {
  position: sticky !important;
}
/*===========================
=     RESPONSIVE HEADINGS   =
===========================*/
@media (max-width: 1200px) {
  body h2,
  body .h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  body h2,
  body .h2 {
    font-size: 32px;
  }
  .dev-btn, {
     font-size: 12px;
  }
}








