/** Shopify CDN: Minification failed

Line 363:0 Unexpected "}"

**/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --font-lato: "Lato", sans-serif;
    --black: #050505;
    --white: #ffffff;
    --yellowBrown: #BC8C62;
    --lighterGrey: #888888;
}

body {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    font-size: 16px;
    font-family: var(--font-lato);
    font-weight: 300;
    line-height: 1.5;
}

.font-lato {
    font-family: var(--font-lato);
}

:target {
    scroll-margin-block: 10rlh;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 32px;
    font-weight: 300;
    color: var(--black);
    line-height: 1.5;
}

.heading {
    font-size: 40px;
    font-weight: 400;
    color: #888888;
}
.newsletter__wrapper p{
  font-size: 16px;
}

form label,
p {
    font-size: 18px;
    color: var(--black);
}

a {
    cursor: pointer;
    text-decoration: none;
    color: var(--black);
}

img {
    display: block;
    width: 100%;
    height: auto;
}

ul li {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.close-popup{
  top: -20px !important;
  right: 4px !important;
}

button {
    width: fit-content;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin: 20px 0;
}

/* common css */
.container {
    max-width: 1300px;
    width: 100%;
    margin: 30px auto;
    padding-inline: 50px;
}

.float-right {
    float: right;
}
.yellow-brown{
    color: var(--yellowBrown);
}
.light-grey{
    color: var(--lighterGrey);
}

/* padding classes  */
.pt-0 {
    padding-top: 0px;
}

.pt-1 {
    padding-top: 10px;
}

.pt-4 {
    padding-top: 40px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-3{
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.pt-7 {
    padding-top: 70px;
}

.pt-8 {
    padding-top: 80px;
}

/* padding top & bottom  */
.p-0 {
    padding: 0px;
}

.ptb-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ptb-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ptb-3 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.ptb-4 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.ptb-8 {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* end padding classe */

/* flex layout css */
.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.flex-none {
    display: none;
}

.flex-row {
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.container-gap {
    gap: 40px;
}

.flex-column {
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-col-center {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-align-center{
    align-items: center;
}

.flex-justify-center {
    justify-content: center;
}

.flex-justify-around {
    justify-content: space-around;
}

.flex-justify-between {
    justify-content: space-between;
}

.flex-justify-evenly {
    justify-content: space-evenly;
}

/* background and color-text */
.bg-red {
    background-color: var(--darkRed);
}

.bg-black {
    background-color: var(--lightBlack);
}

.bg-darkBlack {
    background-color: var(--black);
    color: var(--white);
}

.grey-text {
    color: var(--lightGrey) !important;
}

.white-text {
    color: var(--white);
}

.darkGrey-text {
    color: var(--grey);
}

.italic-text {
    font-style: italic;
}

.center-align,
section>.section-title {
    text-align: center;
}

.bold-text {
    font-size: 20px;
    font-weight: 500;
}

.mt {
    margin-top: 50px;
}

@media (max-width: 600px) {

    h1,
    h2,
    h4,
    h5,
    h6 {
        font-size: 28px;
        line-height: 30px;
    }

    .heading {
        font-size: 40px;
        font-weight: 32px;
        color: #888888;
    }

    form label,
    p {
        font-size: 16px;
        color: var(--black);
    }

    .container {
        margin: 15px auto;
        padding-inline: 20px;
    }
}

@media (max-width: 480px) {
    
    h3,
    h4,
    h5,
    h6 {
        font-size: 18px;
    }
    h1,h2{
      font-size:21px;
    }
    .heading {
        font-size: 40px;
        font-weight: 32px;
        color: var(--yellowBrown);
    }

    form label,
    p {
        font-size: 14px;
        color: var(--black);
    }

    .container {
        margin: 15px auto;
        padding-inline: 20px;
    }
  
  }
}

