:root {
    --body-font-size: 18px;
    --body-font-family: 'Poppins';
    --headings-font-family: 'Poppins';
    --sg-color-primary: #02a0d9;
    --sg-color-secondary: #051e37;
    --sg-color-secondary_1: #ecf4fb;
    --sg-color-white: #fff;
    --sg-color-dark: #000;
}

body {
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
}

body.has-sticky-cta-footer {
    margin-bottom: 50px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--headings-font-family);
}

a {
    color: var(--sg-color-primary);
    text-decoration: none;
}
a:hover {
    color: var(--sg-color-secondary);
}
a label {
    cursor: pointer;
}

.form-group {
    display: block;
    margin-bottom: 15px;
}

/* backgrounds */
.bg-color-primary {
    background-color: var(--sg-color-primary);
}
.bg-color-secondary {
    background-color: var(--sg-color-secondary);
}
.bg-color-secondary-1 {
    background-color: var(--sg-color-secondary_1);
}

/* bs4 buttons */
.btn.btn-primary {
    background-color: var(--sg-color-primary);
    border-color: var(--sg-color-primary);
    color: var(--sg-color-dark) !important;
}

/* header */
header#masterhead {
    background-color: var(--sg-color-secondary);
    color: var(--sg-color-white);
    /* padding: 15px 0; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
header#masterhead .primary-navbar {
    padding: 0;
}
header#masterhead a:not(.btn),
header#masterhead .navbar-nav .nav-link {
    color: inherit;
}
header#masterhead .site-img-logo img {
    max-height: 75px;
}
header#masterhead .primary-navbar .navbar .navbar-brand img {
    max-height: 150px;
}
header#masterhead .navbar-wrapper {
    display: flex;
    margin-left: auto;
}
header#masterhead .navbar-nav .nav-item.has-child > .sub-menu a {
    position: relative;
    /* background-color: var(--sg-color-secondary); */
}
header#masterhead .navbar-nav .nav-item.has-child > .sub-menu a > span {
    position: relative;
}
header#masterhead .navbar-nav .nav-item.has-child > .sub-menu a:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: all 0.35s;
}
header#masterhead .navbar-nav .nav-item.has-child > .sub-menu a:hover:before {
    opacity: 1;
}

#mobile-nav > .inner {
    background-color: var(--sg-color-secondary);
    color: var(--sg-color-white);
}

/* footer */
footer#masterfoot {
    background-color: var(--sg-color-secondary);
    color: var(--sg-color-white);
    border-bottom: 1px solid;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
footer#masterfoot a:not(.btn),
footer#masterfoot .navbar-nav .nav-link {
    color: inherit;
}

/* copyright */
.copyright {
    background-color: var(--sg-color-secondary);
    color: var(--sg-color-white);
}
.copyright a:not(.btn),
.copyright ul > li a:not(.btn) {
    color: inherit;
}

/* section title */
.section h2.section-title {
    font-size: 40px;
}

/* section divider */
.section-divider {
    position: relative;
    margin: 50px 0;
    height: 2px;
    background-color: var(--sg-color-dark);
}

/* sections */
.section.section-home-banner {
    background-color: var(--sg-color-secondary);
    color: var(--sg-color-white);
    padding-top: 150px;
    padding-bottom: 150px;
}
.section.section-home-banner a:not(.btn) {
    color: inherit;
}
/* .section.section-home-3,
.section.section-home-5 {
    background-color: var(--sg-color-secondary);
    color: var(--sg-color-white);
}
.section.section-home-3 a:not(.btn),
.section.section-home-5 a:not(.btn) {
    color: inherit;
} */

/* section cta */
.section.section-cta {
    background-image: url('../img/cta-bg.jpg');
    background-color: #444;
    color: #fff;
}
.section.section-cta .cta-content {
    position: relative;
    display: flex;
    font-size: 18px;
    background-color: rgba(31,174,75,0.7);
    color: #fff;
    padding: 50px;
    max-width: 1000px;
    margin: 100px auto 0;
    border-radius: 15px;
}
.section.section-cta .cta-content > .thumb {
   margin-top: -150px;
   margin-left: -150px;
}
.section.section-cta .cta-content h4 {
    font-size: 42px;
    font-weight: bold;
}

/* block carousels */
.sg-blocks--carousel {
    position: relative;
    display: -ms-flex;
    display: flex;
    opacity: 0;
}

/* testimonial blocks */
.testimonial-blocks .item {
    position: relative;
}
.testimonial-blocks .item > .info {
    position: relative;
    background-color: #fff;
    color: #000;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    text-align: center;
    padding: 35px;
    margin: 0 auto 50px;
}
.testimonial-blocks .item > .info:before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    background-image: url('../img/quoteicon.png');
    background-size: contain;
    background-position: center;
    margin: 0 auto 15px;
}
.testimonial-blocks .item > .info > .thumb {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    background-color: #333;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    border: 0;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}
.testimonial-blocks .item > .info > .thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* hero slides */
.sg-hero--slides {
    position: relative;
}
.sg-hero--slides .item {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    padding: 150px 0;
}
.sg-hero--slides .item:before {
    
}
.sg-hero--slides .item .row > * {
    padding: 20px 40px;
}

/* icon list item */
.icon-list-item {
    position: relative;
    display: -ms-flex;
    display: flex;
    min-height: 50px;
    margin-bottom: 15px;
}
.icon-list-item > .thumb {
    display: inline-block;
    width: 50px;
    height: 50px;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    margin-right: 10px;
}
.icon-list-item > .thumb > img {
    object-fit: contain;
    object-position: center;
}

/* icon box item */
.icon-box-item {
    position: relative;
    display: block;
    text-align: center;
    padding: 50px;
    background-color: #fff;
    color: #000;
    height: 100%;
}
.icon-box-item.bordered {
    border-left: 2px solid #e3e3e3;
    border-right: 2px solid #e3e3e3;
}
.icon-box-item .info > .title {
    font-weight: bold;
    font-size: 22px;
}

/* location row */
.location-row {
    position: relative;
    display: -ms-flex;
    display: flex;
    min-height: 250px;
    background-color: var(--sg-color-secondary);
    color: #fff;
}
.location-row:not(:last-child) {
    margin-bottom: 25px;
}
.location-row:nth-child(even) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.location-row a {
    color: inherit;
}
.location-row .col-left {
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
}
.location-row .col-right {
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
    padding: 25px;
    text-align: left;
}
.location-row iframe {
    display: block;
    height: 100%;
    width: 100%;
}

/* grid cards */
.grid-cards {
    position: relative;
}
.grid-cards .grid-information {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fafafa;
    color: #000;
    height: 100%;
    padding: 50px;
}
.grid-cards .grid-item {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    color: #000;
    height: 100%;
    padding: 350px 50px 50px;
    text-align: center;
}
.grid-cards .grid-item > .thumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;;
    display: block;
    width: 100%;
    height: 300px;
    /* background-color: #fafafa; */
}
.grid-cards .grid-item > .thumb > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.grid-cards .grid-item > .title {
    font-weight: bold;
}

/* category blocks */
.category-blocks {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}
.category-blocks .item {
    position: relative;
    margin: 15px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px;
    border-radius: 15px;
    overflow: hidden;
}
.category-blocks > .item {
    -ms-flex: 0 0 calc(25% - 15px);
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    margin: 7.5px;
}
.category-blocks .item a.p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.category-blocks .item .thumb {
    position: relative;
    width: 100%;
    padding-bottom: 110%;
    border-radius: 15px;
    background-color: #000;
    overflow: hidden;
}
.category-blocks .item .thumb:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.category-blocks .item .thumb > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 5s;
}
.category-blocks .item a.p:hover ~ .thumb > img {
    transform: scale(1.2);
}
.category-blocks .item > .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    line-height: 1em;
    color: #fff;
    z-index: 2;
}
.category-blocks .item > .info > h6 {
    text-transform: uppercase;
    font-size: 17px;
    line-height: 1em;
    font-weight: 400;
    margin: 0;
}
.category-blocks .item > .info > h2 {
    font-size: 26px;
    line-height: 1em;
    font-weight: 600;
    margin: 0;
}

/* gallery */
.gallery .item {
    position: relative;
    padding-top: 100%;
}
.gallery .item img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* product blocks */
.product-blocks {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.product-blocks .item {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    padding: 20px;
    margin: 15px;
    background-color: #fff;
    color: var(--sg-color-dark);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px;
    border-radius: 15px;
}
.product-blocks > .item {
    -ms-flex: 0 0 calc(33.33% - 30px);
    flex: 0 0 calc(33.33% - 30px);
    max-width: calc(33.33% - 30px);
    margin: 15px;
}
.product-blocks.grid-5 > .item {
    -ms-flex: 0 0 calc(20% - 30px);
    flex: 0 0 calc(20% - 30px);
    max-width: calc(20% - 30px);
}
.product-blocks .item .thumb {
    position: relative;
    display: block;
    width: 100%;
}
.product-blocks .item .thumb > img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.product-blocks .item > .info {
    position: relative;
    text-align: center;
    margin-top: 15px;
}
.product-blocks .item > .info > .sub {
    opacity: 0.7;
}
.product-blocks .item > .info > h5.sub {
    font-size: 18px;
    margin: 0;
}
.product-blocks .item > .info > .product-title {
    font-size: 24px;
}
.product-blocks .item > .info > .product-price {
    color: var(--sg-color-secondary);
    font-weight: 600;
    font-size: 20px;
}
.product-blocks .item > .info > .product-price .sale_price ~ span.price {
    font-size: 80%;
    text-decoration: line-through;
    opacity: 0.6;
    color: var(--sg-color-dark);
    margin-left: 5px;
    font-weight: 600;
}
.product-blocks .item > .info > h6 {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
}
.product-blocks .item > .info > h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}
.product-blocks .item > .cta {
    margin-top: auto;
}

/* shop card */
.shop-card {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    padding: 25px;
    color: #fff;
    background-color: var(--sg-color-secondary);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    margin-top: 25px;
}
.shop-card > .thumb {
    margin-top: -25px;
    margin-left: -25px;
    margin-right: -25px;
}
.shop-card > .inner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.shop-card > .inner > .info {
    text-align: left;
}
.shop-card > .inner > .info > h4 {
    text-transform: uppercase;
}
.shop-card > .inner > .cta {
    padding-left: 10px;
    margin-left: auto;
}
.shop-card > .inner > .cta > .btn {
    padding: 8px 12px;
}
.shop-card .top-img {
    max-width: 90px;
    margin-top: -60px;
    margin-bottom: 15px;
}

/* location card */
.location-card {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    padding: 25px;
    color: #fff;
    background-color: var(--sg-color-secondary);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    margin-top: 25px;
}
.location-card .top-img {
    max-width: 90px;
    margin-top: -60px;
    margin-bottom: 15px;
}
.location-card .btn {
    margin-top: auto;
}

/* card item */
.card-item {
    position: relative;
}
.card-item a {
    color: inherit;
}
.card-item .thumb {
    position: relative;
    width: 100%;
    height: 250px;
}
.card-item .thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.card-item .title {
    color: inherit;
    text-align: center;
    font-size: 18px;
    margin-top: 15px;
}
.card-item .cta {
    text-align: center;
}

/* card item 1 */
.card-item-1 {
    position: relative;
    background-color: var(--sg-color-secondary);
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px;
}
.card-item-1 a {
    color: inherit;
}
.card-item-1 .thumb {
    position: relative;
    width: 100%;
    height: 250px;
}
.card-item-1 .thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.card-item-1 .title {
    color: inherit;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
}
.card-item-1 .cta {
    text-align: center;
}

/* contact block info */
.contact-block-info {
    position: relative;
    display: -ms-flex;
    display: flex;
    max-width: 1000px;
    background-color: #fff;
    color: #000;
    margin: 15px auto 50px;
}
.contact-block-info > .info,
.contact-block-info > .map {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}
.contact-block-info > .info {
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-justify-content: space-evenly;
    justify-content: space-evenly;
}
.contact-block-info > .info > .item {
    position: relative;
    display: block;
    padding: 25px 50px;
    padding-left: 120px;
}
.contact-block-info > .info > .item:not(:last-child) {
    border-bottom: 1px solid #e3e3e3;
}
.contact-block-info > .info > .item span {
    display: block;
    font-size: 24px;
    color: var(--sg-color-secondary);
}
.contact-block-info > .info > .item em.fa {
    position: absolute;
    top: 50%;
    left: 50px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    background-color: var(--sg-color-secondary);
    color: #fff;
    border-radius: 50px;
    transform: translateY(-50%);
}
.contact-block-info > .map iframe {
    display: block;
    margin: 0;
    min-height: 500px;
    height: 100%;
}

/* faqs accordion */
.faqs-accordion {
    position: relative;
}
.faqs-accordion > .accordion-item {
    background-color: var(--sg-color-white);
    color: var(--sg-color-dark);
    margin-bottom: 15px;
    border: 0;
}
.faqs-accordion > .accordion-item > .accordion-header > .accordion-button.collapsed {
    background-color: var(--sg-color-secondary);
    color: var(--sg-color-white);
    border-radius: 0;
}
.faqs-accordion > .accordion-item > .accordion-header > .accordion-button {
    background-color: var(--sg-color-primary);
    color: var(--sg-color-dark);
    line-height: 1.25em;
}
.faqs-accordion > .accordion-item > .accordion-header > .accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* contact ctas */
.contact-ctas {
    position: relative;
}
.contact-ctas > .item {
    display: block;
    margin-top: 7px;
    margin-bottom: 7px;
}
.contact-ctas > .item > a {
    position: relative;
    display: block;
    line-height: 2em;
    background-color: var(--sg-color-primary);
    color: var(--sg-color-white);
    padding: 30px 150px 30px 30px;
    text-decoration: none;
    transition: all 0.35s;
}
.contact-ctas > .item > a > span {
    display: block;
}
.contact-ctas > .item > a > span.subh {
    font-size: 16px;
}
.contact-ctas > .item > a > span.h {
    font-size: 32px;
    font-weight: bold;
}
.contact-ctas > .item > a > span.icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -ms-justify-content: center;
    justify-content: center;
    font-size: 40px;
}
.contact-ctas > .item > a > span.icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.15);
}
.contact-ctas > .item > a > span.icon > * {
    position: relative;
    z-index: 1;
}
.contact-ctas > .item > a:hover {
    background-color: var(--sg-color-primary);
    color: var(--sg-color-white);
}

/* rewards blocks */
.rewards-blocks {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.rewards-blocks > .item {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    margin: 10px;
}
.rewards-blocks .item {
    display: block;
    padding: 25px;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.rewards-blocks .item h2.title {
    font-size: 70px;
    font-weight: bold;
    line-height: 1em;
    margin: 0;
}
.rewards-blocks .item h4.subtitle {
    display: inline-block;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    background-color: var(--sg-color-primary);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1em;
    border-radius: 10px;
}



/* articles */
.sgposts-articles_list {
    position: relative;
}
.sgposts-articles_list a {
    color: inherit;
}
.sgposts-articles_list .article-item {
    position: relative;
    margin-bottom: 25px;
}
.sgposts-articles_list .article-item > .thumbnail {
    position: relative;
    margin-bottom: 10px;
}

.sgposts-articles_list.style_1 > .inner {
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.sgposts-articles_list.style_1 .article-item {
    position: relative;
    -ms-flex: 0 0 calc(33.33% - 30px);
    flex: 0 0 calc(33.33% - 30px);
    max-width: calc(33.33% - 30px);
    margin: 15px;
}
.sgposts-articles_list.style_1 .article-item > .thumbnail {
    height: 150px;
}
.sgposts-articles_list.style_1 .article-item > .thumbnail > img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.sgposts-articles_list.style_1 .article-item:first-child {
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 25px;
}
.sgposts-articles_list.style_1 .article-item:first-child > .thumbnail {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    height: 400px;
    margin-bottom: 15px;
}
.sgposts-articles_list.style_1 .article-item:first-child > .details {
    padding: 0 25px;
}
.sgposts-articles_list.style_1 .article-item:first-child > .details .title h5 {
    font-size: 36px;
}

.sgposts-articles_list.style_2 .article-item > .thumbnail {
    height: 80px;
}
.sgposts-articles_list.style_2 .article-item > .thumbnail > img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* icon lists */
ul.icon-list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.icon-list > li {
    position: relative;
    padding-top: 5px;
    padding-left: 30px;
    min-height: 30px;
}
ul.icon-list > li .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 0;
    left: 0;
}

.mapembed iframe {
    width: 100% !important;
}


@media only screen and (min-width: 768px) {
    .sticky-mobile-ctas {
        display: none;
    }
}

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

    header#masterhead .primary-navbar .navbar-wrapper {
        display: none;
    }

    header#masterhead .primary-navbar .navbar .navbar-brand img {
        max-height: 130px;
    }
    
    header#masterhead.sticky .primary-navbar .navbar .navbar-brand img {
        max-height: 80px;
    }

    .topbar {
        display: none;
    }

    .sg-hero--slides .item {
        padding: 50px 0;
    }

    .contact-block-info {
        display: block;
    }
    .category-blocks > .item {
        -ms-flex: 0 0 calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .section h2.section-title {
        font-size: 24px;
    }

    .location-row,
    .location-row:nth-child(even) {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .location-row > .col-left,
    .location-row > .col-right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-block-info > .info > .item {
        padding: 15px 50px 15px 70px;
    }
    .contact-block-info > .info > .item span {
        font-size: 18px;
        font-weight: bold;
    }
    .contact-block-info > .info > .item em.fa {
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
    }
    
    .sticky-mobile-ctas {
        position: fixed;
        display: -ms-flex;
        display: flex;
        background-color: var(--sg-color-secondary);
        bottom: 0;
        left: 0;
        right: 0;
        padding: 5px;
        z-index: 9999;
    }
    .sticky-mobile-ctas > a.btn {
        position: relative;
        -ms-flex: 1;
        flex: 1;
        font-family: var(--headings_1-font-family);
        padding: 10px 36px 10px 45px;
        margin: 0 5px;
        font-size: 12px;
        border-radius: 25px;
        height: 40px;
        border: 0;
        box-shadow: rgb(0 0 0 / 50%) 0px 10px 50px;
        -ms-flex: 0 0 calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
    .sticky-mobile-ctas > a.btn:nth-child(even) {
        padding: 10px 45px 10px 36px;
    }
    .sticky-mobile-ctas > a.btn > em {
        position: absolute;
        left: 2px;
        top: 2px;
        bottom: 2px;
        background-color: #111;
        color: #fff;
        border-radius: 5px;
        height: 36px;
        width: 36px;
        line-height: 36px;
        border-radius: 36px;
        text-align: center;
        z-index: 2;
    }
    .sticky-mobile-ctas > a.btn:nth-child(even) > em {
        left: auto;
        right: 2px;
    }
    .sticky-mobile-ctas.style-2 {
        padding-top: 15px;
    }
    .sticky-mobile-ctas.style-2 > a.btn > em {
        top: -8px;
        border-radius: 10px;
        transform: rotate(45deg);
    }
    .sticky-mobile-ctas.style-2 > a.btn > em:before {
        display: block;
        transform: rotate(-45deg);
    }
    .sticky-mobile-ctas.style-3 {
        padding-top: 15px;
        justify-content: center;
    }
    .sticky-mobile-ctas.style-3 > a.btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        -ms-flex: 0 0 calc(50% - 50px);
        flex: 0 0 calc(50% - 50px);
        padding: 10px 25px;
        margin: 0 auto;
    }
    .sticky-mobile-ctas.style-3 > a.btn:before {
        position: absolute;
        left: -14px;
        content: '';
        display: inline-block;
        width: 28px;
        height: 28px;
        border-top-left-radius: 10px;
        background-color: inherit;
        transform: rotate(-45deg);
    }
    .sticky-mobile-ctas.style-3 > a.btn:after {
        position: absolute;
        right: -14px;
        content: '';
        display: inline-block;
        width: 28px;
        height: 28px;
        border-bottom-right-radius: 10px;
        background-color: inherit;
        transform: rotate(-45deg);
    }
    .sticky-mobile-ctas.style-3 > a.btn > em {
        top: -8px;
        left: -15px;
        border-radius: 10px;
        transform: rotate(45deg);
    }
    .sticky-mobile-ctas.style-3 > a.btn:nth-child(even) > em {
        left: auto;
        right: -15px;
    }
    .sticky-mobile-ctas.style-3 > a.btn > em:before {
        display: block;
        transform: rotate(-45deg);
    }

    body.page-shop .section.section-page-banner, body.page-shop .sticky-mobile-ctas {
        display: none;
    }
    
    body.page-shop {
        padding-top: 50px;
    }
    body.page-shop header#masterhead {
        background-color: #fff;
        background-image: none;
    }
    body.page-shop header#masterhead .navbar-brand {
        display: none;
    }
    body.page-shop header#masterhead .mobile-toggler-burger {
        position: fixed;
        top: 15px;
        right: 15px;
        background-color: #fff;
        box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    }
    body.page-shop header#masterhead .mobile-toggler-burger > span {
        background-color: #000 !important;
    }
    body.page-shop footer#masterfoot,
    body.page-shop .copyright {
        display: none;
    }

}

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

    h4 {
        font-size: 18px;
    }

    header#masterhead .primary-navbar .navbar .navbar-brand img {
        max-height: 80px;
    }

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

    .section.section-home-banner {
        padding: 50px 0;
    }

    .event-blocks > .item,
    .rewards-blocks > .item {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 10px 0;
    }
    
    .sgposts-articles_list.style_1 .article-item {
        position: relative;
        -ms-flex: 0 0 calc(50% - 30px);
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
        margin: 15px;
    }
    .sgposts-articles_list.style_1 .article-item > .thumbnail {
        height: 100px;
    }
    .sgposts-articles_list.style_1 .article-item:first-child {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 0 25px;
    }
    .sgposts-articles_list.style_1 .article-item:first-child > .thumbnail {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        height: 400px;
    }
    .sgposts-articles_list.style_1 .article-item:first-child > .details {
        padding: 0;
    }

}