/** Shopify CDN: Minification failed

Line 223:1 Expected "}" to go with "{"

**/
.absolute_link__ {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block !important;
    z-index: 2;

}

[class^="sec-"] {
    p,h1,h2,h3,h4,h5, h6 {
        margin: 0;
    }
}

a {
    text-decoration: none;
}
p {
    letter-spacing: 0;
}
h1, .h1 {
  font-size: 48px;
  letter-spacing: calc(-48px * 1.5 / 100);
  line-height: 120%;
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 36px;
    letter-spacing: calc(-36px * 1 / 100);
    /* line-height: 38px; */
  }
}

h2, .h2 {
  font-size: 36px;
  line-height: 38px;
  letter-spacing: calc(-36px * 1.5 / 100);
}

@media (max-width: 768px) {
  h2, .h2 {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: calc(-30px * 1 / 100);
  }
}

h3, .h3 {
  font-size: 28px;
  line-height: 120%;
  letter-spacing: calc(-28px * 1.5 / 100);
}

@media (max-width: 768px) {
  h3, .h3 {
    font-size: 22px;
    /* line-height: 26px; */
    letter-spacing: calc(-22px * 1 / 100);
  }
}

h4, .h4 {
  font-size: 18px;
  line-height: 120%;
  letter-spacing: calc(-18px * 1.5 / 100);
}

@media (max-width: 768px) {
  h4, .h4 {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: calc(-16px * 1 / 100);
  }
}


.pl__ {
    font-size: 18px;
    line-height: 28px;
    @media(max-width: 768px) {
        font-size: 16px;
        line-height: 24px;
    }    
}
.pr__ {
    font-size: 15px;
    line-height: 24px;
    @media(max-width: 768px) {
        font-size: 14px;
        line-height: 22px;
    }    
}
.psm__ {
    font-size: 13px;
    line-height: 20px;
    @media(max-width: 768px) {
        font-size: 12px;
        line-height: 18px;
    }    
}
.solid__prrimary_btn {
    width: max-content;
    color: #000;
    background-color: #c09e6f;
    color: #000;
    padding: 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #c09e6f;
    transition: all 0.4s ease-in-out;
    &:hover {
      background-color: inherit;
      color: #c09e6f;
    }
}
.solid__secondary_btn {
    color: #c09e6f;
    text-transform: uppercase;
    font-size: 11px;
    /* font-weight: 700; */
    letter-spacing: 2px;
    width: max-content;
    padding: 10px 20px;
    transition: all 0.4s ease-in-out;
    border: 1px solid;
    &:hover {
      background-color: #c09e6f;
      color: #000;
    }    
}   
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }   
@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 8rem;
  }
  
}  
.btn__wrapper {
  display: flex;
  gap: 24px;
  @media (max-width: 768px) {
    gap: 12px;
    flex-wrap: wrap;
  }
  @media (max-width: 500px) {
    flex-wrap: wrap;
  }
.justify-center {
  justify-content: center;
}
.justify-left {
  justify-content: start;
}
.justify-right {
  justify-content: end;
}
.align--left {
  align-items: start;
}
.align--center {
  align-items: center;
}
.align--right {
  align-items: end;
}
.w-full {
  flex: 0 0 100% !important;
  width: 100% !important;
}
@media (max-width: 768px) {
  .desktop__only {
    display: none;
  }
  .mobile__only {
    display: block;
  }
  .mobile-center {
    text-align: center;
  }
  .mobile-left {
    text-align: left;
  }
  .mobile-right {
    text-align: right;
  }
  .mobile-justify-center {
    justify-content: center;
  }
  .mobile-justify-left {
    justify-content: start;
  }
  .mobile-justify-right {
    justify-content: end;
  }
  .align--mobile--left {
    align-items: start;
  }
  .align--mobile--center {
    align-items: center;
  }
  .align--mobile--right {
    align-items: end;
  }
}