:root {
    --body-font-size: 15px;
    --body-font-family: 'Poppins';
    --headings-font-family: 'Poppins';
    --sg-color-primary: #017244;
    --sg-color-secondary: #16fc8a;
    --sg-color-secondary_1: #14e97f;
    --sg-color-white: #fff;
    --sg-color-dark: #000;
    --bs-primary-rgb: 31,174,75;
}

p {
    margin-bottom: 1rem;
}

.container {
    max-width: 1250px;
}

/* buttons */
.btn {
    border-width: 2px;
    border-radius: 5px;
}
.btn.btn-styled {
    position: relative;
    background-color: var(--sg-color-secondary_1);
    color: #000;
    background: linear-gradient(90deg, var(--sg-color-secondary_1) 50%, var(--sg-color-secondary) 50%);
}
/* .btn.btn-styled:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--sg-color-primary);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: -1;
} */
.btn.btn-styled span {
    position: relative;
    z-index: 1;
}
.btn.btn-primary {
    color: #fff !important;
}
.btn.btn-outline-primary {
    background-color: transparent;
    border-color: var(--sg-color-primary);
    color: var(--sg-color-primary);
}
.btn.btn-secondary {
    color: #fff !important;
    background-color: var(--sg-color-secondary);
    border-color: var(--sg-color-secondary);
}
.btn.btn-outline-secondary {
    background-color: transparent;
    border-color: var(--sg-color-secondary);
    color: var(--sg-color-secondary);
}
.btn.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}
.btn.btn-outline-white {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

/* headings */
h1, .h1 {
    font-size: 60px;
    line-height: 60px;
    font-weight: bold;
}
h2, .h2 {
    font-size: 42px;
    line-height: 42px;
    font-weight: 600;
}

/* header */
header#masterhead {
    padding: 15px 0;
    background-color: var(--sg-color-primary);
}
header#masterhead .container {
    max-width: 1770px;
}
header#masterhead .navbar-wrapper {
    margin-left: 0;
    flex: 1;
}
header#masterhead .navbar-nav > li {
    position: relative;
    margin: 0 10px;
}
header#masterhead .navbar-nav > li a {
    padding: 10px 15px;
    text-transform: uppercase;
}
header#masterhead .navbar-nav > li.item.item-info {
    padding-left: 60px;
    font-size: 14px;
}
header#masterhead .navbar-nav > li.item.item-info > img.icon {
    position: absolute;
    max-width: 47px;
    left: 0;
}
header#masterhead .navbar-nav > li.item.item-info > h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px;
}
header#masterhead .navbar-nav > li .btn {
    padding: 10px 25px;
}
header#masterhead .navbar-nav > li .btn.btn-search {
    font-size: 24px;
    color: #fff;
}
header#masterhead.site-header--floating:not(.sticky) {
    position: absolute;
    left: 0;
    right: 0;
    background-color: transparent;
}
header#masterhead.site-header--floating + .site-content > .section:first-of-type {
    padding-top: 300px !important;
}
header#masterhead.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
header#masterhead.sticky .navbar .navbar-brand img {
    max-height: 100px;
}

/* home banner */
.section.section-home-banner {
    position: relative;
    height: 100vh;
    background-color: #000;
    color: #fff;
    background-image: url('../img/home-banner.jpg');
}
.section.section-home-banner .caption {
    padding: 30px;
    border-left: 5px solid var(--sg-color-secondary);
    margin-bottom: 50px;
}
.section.section-home-banner .caption h4 {
    font-size: 42px;
    margin-bottom: 10px;
}
.section.section-home-banner .caption h5 {
    font-size: 27px;
}
.section.section-home-banner .caption h2 {
    font-size: 90px;
    line-height: 60px;
}

/* section blogs */
.section.section-blogs {
    background-color: var(--sg-color-primary);
    color: #fff;
}

/* section locations */
.section.section-locations {
    background-color: #000;
    color: #fff;
}

/* section faqs */
.section.section-faqs {
    background-image: url('../img/faq-bg.jpg');
    background-position: top center;
    padding-top: 150px;
}

/* faq items */
.faqs-accordion > .accordion-item > .accordion-header > .accordion-button.collapsed {
    background-color: var(--sg-color-primary);
}
.faqs-accordion > .accordion-item > .accordion-header > .accordion-button {
    background-color: #000;
    color: #fff;
}

/* blog card */
.blog-card {
    position: relative;
}
.blog-card a.p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 22;
}
.blog-card > .thumb {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #000;
    overflow: hidden;
}
.blog-card > .thumb > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.35s;
}
.blog-card:hover > .thumb > img {
    transform: scale(1.1);
}
.blog-card > .info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.85) 80%);
}
.blog-card > .info > h2 {
    font-size: 18px;
    line-height: 1.25em;
}

/* category block */
.category-blocks .item > .info {
    top: 0;
    bottom: auto;
    text-align: center;
}

/* product blocks */
.product-blocks .item > .info > .product-title {
    font-size: 20px;
    font-weight: bold;
}
.product-blocks .item > .info > .product-price {
    color: var(--sg-color-primary);
}

/* footer */
footer#masterfoot {
    background-color: #000;
}

.copyright {
    background-color: var(--sg-color-primary);
}

/* mobile nav */
#mobile-nav > .inner {
    background-color: var(--sg-color-primary);
}


/* age verification popup */
.sg_age-verification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.90);
    z-index: 99999;
}
.sg_age-verification:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--sg-color-primary);
    opacity: 0.5;
}
.sg_age-verification > .inner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
    max-width: 700px;
    padding: 120px 50px 50px;
    color: #fff;
    /* background-color: #000;
    background-image: url('../img/age-verification-bg.jpg');
    background-size: cover;
    background-position: top center; */
    text-align: center;
}
.sg_age-verification > .inner h2 {
    font-weight: bold;
    font-size: 70px;
    line-height: 1em;
    text-transform: uppercase;
}
.sg_age-verification > .inner .actions {
    margin-top: 25px;
}
.sg_age-verification > .inner .actions > .btn {
    font-size: 24px;
    border-width: 3px;
    min-width: 220px;
}
.sg_age-verification > .inner .actions > .btn.btn-default {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

@media only screen and (max-width: 575px) {

    .sg_age-verification > .inner h2 {
        font-size: 42px;
    }
    
}

@media only screen and (max-width: 767px) {

    body {
        font-size: 14px;
    }

    h1,.h1 {
        font-size: 42px;
        line-height: 42px;
    }
    h2,.h2 {
        font-size: 36px;
        line-height: 36px;
    }

    header#masterhead.site-header--floating + .site-content > .section:first-of-type {
        padding-top: 200px !important;
    }

    #mobile-nav .navbar-brand img {
        max-height: 150px;
    }
    #mobile-nav > .inner > .navi > ul.nav li a {
        font-size: 15px;
        padding: 10px 15px;
    }

    .section.section-home-banner .caption h4 {
        font-size: 30px;
    }
    .section.section-home-banner .caption h2 {
        font-size: 60px;
        line-height: 1em;
    }
    .section.section-home-banner .caption h5 {
        font-size: 18px;
    }

}

@media only screen and (max-width: 600px) {
    
    .section.section-shop-info .sg_product-categories {
        margin: 25px 0;
    }

    .section.section-cta .cta-content h4 {
        font-size: 36px;
    }
    

}


@media only screen and (max-width: 575px) {

    header#masterhead {
        padding: 0;
    }
    

    .section.section-home-banner {
        height: auto;
        padding-bottom: 100px;
    }
    .section.section-home-banner .caption {
        padding: 20px;
    }
    .section.section-home-banner .caption h4 {
        font-size: 24px;
        margin-bottom: 0;
    }
    .section.section-home-banner .caption h2 {
        font-size: 42px;
    }

    .section.section-cta .cta-content {
        display: block;
    }
    .section.section-cta .cta-content > .thumb {
        margin: 0;
    }

    .category-blocks .item > .info > h6 {
        font-size: 16px;
    }
    .category-blocks .item > .info > h2 {
        font-size: 26px;
    }

    footer#masterfoot {
        text-align: center;
    }
    footer#masterfoot ul.icon-list > li {
        padding: 0;
    }
    footer#masterfoot ul.icon-list > li .icon {
        position: relative;
    }

}