@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
:root {
    --primary-color: #e78714;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: #f2f2f2;
    margin: 0;
    font-family: "Poppins";
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar {
    background: white;
    padding: 1em;
}

.navbar .logo img {
    text-align: center;
    width: 100px;
    height: auto;
}

.navbar nav {
    display: none;
}

.navbar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-content: space-between;
}

.navbar .mobile-menu {
    cursor: pointer;
}

a {
    color: #444444;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

section {
    padding: 5em 2em;
}

.hero {
    background-image: url("../images/header-bg.jpg");
    background-size: cover;
    width: 100%;
}

section.product-single {
    padding: 0;
    margin: 2.2em auto;
}

.maintagline {
    padding: 0px auto;
    margin: 2px auto;
}

.productsingle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.productleft {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 40%;
}

.productleft img {
    border: 1px solid gray;
    padding: 0.3em;
}

.productright {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0.1em 1em;
    width: 60%;
}

.productright h3 {
    font-size: 1.5em;
    line-height: 1.2em;
    margin: 0.2em auto;
    text-align: left;
    color: var(--primary-color);
}

.productright h2 {
    font-size: 1.5em;
    line-height: 1.2em;
    margin: 0.3em 0;
    text-align: left;
    color: #333;
}

.productright p {
    font-size: 1em;
    text-align: left;
    line-height: 1.2em;
    color: gray;
    margin-top: 0em;
}

.productright .productsel {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border-radius: 0.3em;
    border: 1px solid gray;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.productright .cart-cta {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.4em 0.8em;
    font-size: 0.9em;
    border-radius: 0.6em;
    text-align: center;
    font-weight: bold;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
}

.left-col .subhead {
    font-weight: bold;
    text-align: left;
    color: gray;
}

.left-col h1 {
    font-size: 2em;
    line-height: 1.3em;
    margin-top: 0.2em;
}

.left-col .primary-cta {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.6em 1.3em;
    font-size: 1.4em;
    border-radius: 1.2em;
    text-align: center;
    font-weight: bold;
    display: block;
}

.left-col .sec-cta {
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    padding: 0.6em 1.3em;
    font-size: 1.4em;
    border-radius: 1.2em;
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
    display: block;
}

.hero-img {
    width: 50%;
    margin-top: 3em;
}

.login2 {
    text-align: center;
}

.loginform h1 {
    font-size: 2.5em;
    line-height: 1.3em;
    margin-top: 0.2em;
}

.loginform p {
    font-size: 1em;
    line-height: 1.2em;
    color: gray;
    margin-top: 1em;
}

.loginform a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.loginform .loginform img {
    display: block;
    text-align: center;
    margin: 20px auto;
}

.loginform .fb-cta {
    background: #367fc0;
    color: white;
    text-decoration: none;
    padding: 0.6em 1.3em;
    font-size: 1.4em;
    border-radius: 1.2em;
    text-align: center;
    font-weight: bold;
    display: block;
}

.loginform input,
.loginform textarea {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border-radius: 0.3em;
    border: 1px solid gray;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loginform select {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border-radius: 0.3em;
    border: 1px solid gray;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loginform input[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 1.3em;
    border: none;
    margin-bottom: 5em;
    border-radius: 5em;
    display: inline-block;
    padding: 0.8em 2em;
    width: unset;
    cursor: pointer;
}

.loginform .bar {
    background-color: black;
    width: 240px;
    margin: 30px auto 0px auto;
    text-align: center;
    height: 8px;
    border-radius: 5px;
}

.thankyou {
    text-align: left;
}

.thankyou2 h1 {
    font-size: 2.5em;
    line-height: 1.3em;
    margin-top: 0.2em;
}

.thankyou2 p {
    font-size: 1em;
    line-height: 1.2em;
    color: gray;
    margin-top: 1em;
    text-align: left;
}

.thankyou2 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thankyou2 .login-cta {
    background: #fdc305;
    color: white;
    text-decoration: none;
    padding: 0.6em 1.3em;
    font-size: 1.4em;
    border-radius: 1.2em;
    text-align: left;
    width: 250px;
    font-weight: bold;
    display: block;
}

.thankyou2 .bar {
    background-color: black;
    width: 240px;
    margin: 30px auto 0px auto;
    text-align: center;
    height: 8px;
    border-radius: 5px;
}

section.aboutus {
    background-image: url("../images/brick_bg.jpg");
    color: #fff;
    text-align: left;
}

.about {
    padding: 3em 1em;
    text-align: left;
}

.about h1 {
    font-size: 32px;
    line-height: 1em;
    margin: 0;
    color: var(--primary-color);
    text-align: left;
}

.about img {
    float: right;
    padding: 5px;
}

.about h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1em;
    text-align: left;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1em;
    text-align: left;
    letter-spacing: 3px;
}

.about p {
    margin: 0 0 20px 0;
    color: white;
    text-align: left;
}

.about .cta-button a {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.6em 1.3em;
    font-size: 1.4em;
    border-radius: 1.2em;
    text-align: center;
    font-weight: bold;
    display: block;
}

section.feature-products {
    background: #ffffff;
    color: #333;
    padding: 3em 1em;
}

section.cartpage {
    color: #333;
    padding: 3em 1em;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

.wrap {
    width: 75%;
    max-width: 960px;
    margin: 0 auto;
    padding: 5% 0;
    margin-bottom: 5em;
}

.projTitle {
    font-family: "Poppins", serif;
    font-weight: bold;
    text-align: center;
    font-size: 2em;
    padding: 1em 0;
    border-bottom: 1px solid #dadada;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.projTitle span {
    font-family: "Poppins", serif;
    font-weight: normal;
    font-style: italic;
    text-transform: lowercase;
    color: #777;
}

.heading {
    padding: 1em 0;
    border-bottom: 1px solid #d0d0d0;
}

.heading h1 {
    font-family: "Poppins", serif;
    font-size: 2em;
    float: left;
}

.heading a.continue:link,
.heading a.continue:visited {
    text-decoration: none;
    font-family: "Poppins", serif;
    letter-spacing: -0.015em;
    font-size: 0.75em;
    padding: 1em;
    color: #fff;
    background: var(--primary-color);
    font-weight: bold;
    border-radius: 50px;
    float: right;
    text-align: right;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.heading a.continue:after {
    content: "\276f";
    padding: 0.5em;
    position: relative;
    right: 0;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.heading a.continue:hover,
.heading a.continue:focus,
.heading a.continue:active {
    background: #f69679;
}

.heading a.continue:hover:after,
.heading a.continue:focus:after,
.heading a.continue:active:after {
    right: -10px;
}

.tableHead {
    display: table;
    width: 100%;
    font-family: "Poppins", serif;
    font-size: 0.75em;
}

.tableHead li {
    display: table-cell;
    padding: 1em 0;
    text-align: center;
}

.tableHead li.prodHeader {
    text-align: left;
}

.cart {
    padding: 1em 0;
}

.cart .items {
    display: block;
    width: 100%;
    padding: 1.5em;
    border-bottom: 1px solid #fafafa;
}

.cart .items.even {
    background: #fafafa;
}

.cart .items .infoWrap {
    display: table;
    width: 100%;
}

.cart .items .cartSection {
    display: table-cell;
    vertical-align: middle;
}

.cart .items .cartSection .itemNumber {
    font-size: 0.75em;
    color: #777;
    margin-bottom: 0.5em;
}

.cart .items .cartSection h3 {
    font-size: 1em;
    font-family: "Poppins", serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.cart .items .cartSection p {
    display: inline-block;
    font-size: 0.85em;
    color: #777777;
    font-family: "Poppins", serif;
}

.cart .items .cartSection p .quantity {
    font-weight: bold;
    color: #333;
}

.cart .items .cartSection p.stockStatus {
    color: var(--primary-color);
    font-weight: bold;
    padding: 0.5em 0 0 1em;
    text-transform: uppercase;
}

.cart .items .cartSection p.stockStatus.out {
    color: #f69679;
}

.cart .items .cartSection .itemImg {
    width: 4em;
    float: left;
}

.cart .items .cartSection.qtyWrap,
.cart .items .cartSection.prodTotal {
    text-align: center;
}

.cart .items .cartSection.qtyWrap p,
.cart .items .cartSection.prodTotal p {
    font-weight: bold;
    font-size: 1.25em;
}

.cart .items .cartSection input.qty {
    width: 2em;
    text-align: center;
    font-size: 1em;
    padding: 0.25em;
    margin: 1em 0.5em 0 0;
}

.cart .items .cartSection .itemImg {
    width: 8em;
    display: inline;
    padding-right: 1em;
}

.special {
    display: block;
    font-family: "Poppins", serif;
}

.special .specialContent {
    padding: 1em 1em 0;
    display: block;
    margin-top: 0.5em;
    border-top: 1px solid #dadada;
}

.special .specialContent:before {
    content: "\21b3";
    font-size: 1.5em;
    margin-right: 1em;
    color: #6f6f6f;
    font-family: "Poppins", serif;
}

a.remove {
    text-decoration: none;
    font-family: "Poppins", serif;
    color: #ffffff;
    font-weight: bold;
    background: #e0e0e0;
    padding: 0.5em;
    font-size: 0.75em;
    display: inline-block;
    border-radius: 100%;
    line-height: 0.85;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

a.remove:hover {
    background: #f30;
}

.promoCode {
    border: 2px solid #efefef;
    float: left;
    width: 35%;
    padding: 2%;
}

.promoCode label {
    display: block;
    width: 100%;
    font-style: normal;
    font-size: 1.15em;
    margin-bottom: 0.5em;
    letter-spacing: -0.025em;
}

.promoCode input {
    width: 85%;
    font-size: 1em;
    padding: 0.5em;
    float: left;
    border: 1px solid #dadada;
}

.promoCode input:active,
.promoCode input:focus {
    outline: 0;
}

.promoCode a.btn2 {
    float: left;
    width: 15%;
    padding: 0.75em 0;
    border-radius: 0 1em 1em 0;
    text-align: center;
    border: 1px solid var(--primary-color);
}

.promoCode a.btn2:hover {
    border: 1px solid #f69679;
    background: #f69679;
}

.btn2:link,
.btn2:visited {
    text-decoration: none;
    font-family: "Poppins", serif;
    letter-spacing: -0.015em;
    font-size: 1em;
    padding: 1em 3em;
    color: #fff;
    background: var(--primary-color);
    font-weight: bold;
    border-radius: 50px;
    float: right;
    text-align: right;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.btn2:after {
    content: "\276f";
    padding: 0.5em;
    position: relative;
    right: 0;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.btn2:hover,
.btn2:focus,
.btn2:active {
    background: #f69679;
}

.btn2:hover:after,
.btn2:focus:after,
.btn2:active:after {
    right: -10px;
}

.promoCode .btn2 {
    font-size: 0.85em;
    padding: 0.5em 2em;
}

.deliveryoption {
    float: left;
    width: 85%;
    display: block;
    padding: 2%;
}

.deliveryoption label {
    display: block;
    width: 100%;
    font-style: Normal;
    font-size: 1.15em;
    margin-bottom: 0.5em;
    letter-spacing: -0.025em;
}

.deliveryoption img {
    display: inline;
    width: 32px;
    height: auto;
    left: 50px;
}

.deliveryoption [type="radio"]:checked,
.deliveryoption [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.deliveryoption [type="radio"]:checked + label,
.deliveryoption [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.deliveryoption [type="radio"]:checked + label:before,
.deliveryoption [type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.deliveryoption [type="radio"]:checked + label:after,
.deliveryoption [type="radio"]:not(:checked) + label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #e78714;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.deliveryoption [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.deliveryoption [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* TOTAL AND CHECKOUT  */
.subtotal {
    float: right;
    width: 35%;
}

.subtotal .totalRow {
    padding: 0.5em;
    text-align: right;
}

.subtotal .totalRow.final {
    font-size: 1.25em;
    font-weight: bold;
}

.subtotal .totalRow span {
    display: inline-block;
    padding: 0 0 0 1em;
    text-align: right;
}

.subtotal .totalRow .label {
    font-family: "Poppins", serif;
    font-size: 0.85em;
    text-transform: uppercase;
    color: #777;
}

.subtotal .totalRow .value {
    letter-spacing: -0.025em;
    width: 35%;
}

@media only screen and (max-width: 39.375em) {
    .wrap {
        width: 98%;
        padding: 2% 0;
    }
    .projTitle {
        font-size: 1.5em;
        padding: 10% 5%;
    }
    .heading {
        padding: 1em;
        font-size: 90%;
    }
    .cart .items .cartSection {
        width: 90%;
        display: block;
        float: left;
    }
    .cart .items .cartSection.qtyWrap {
        width: 10%;
        text-align: center;
        padding: 0.5em 0;
        float: right;
    }
    .cart .items .cartSection.qtyWrap:before {
        content: "QTY";
        display: block;
        font-family: "Poppins", serif;
        padding: 0.25em;
        font-size: 0.75em;
    }
    .cart .items .cartSection.prodTotal,
    .cart .items .cartSection.removeWrap {
        display: inline;
        float: none;
    }
    .cart .items .cartSection .itemImg {
        width: 25%;
    }
    .promoCode,
    .subtotal {
        width: 100%;
    }
    a.btn2.continue {
        width: 100%;
        text-align: center;
    }
}

.product-carousel-header {
    color: var(--primary-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Poppins";
    font-size: 2em;
    font-weight: bold;
    padding: 10px 14px;
    width: 100%;
}

.product-carousel {
    background: #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Poppins";
    padding: 20px 40px;
    width: 100%;
}

.product-carousel .product {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 10px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.product-carousel .product-top {
    width: 100%;
}

.product-carousel p,
.product-carousel .product-image,
.product-carousel img.review-stars {
    margin: 0 0 10px 0;
}

.product-carousel .product-image {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 100%;
}

.product-carousel .product-name {
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
}

.product-carousel .product-bottom {
    margin-top: auto;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.product-carousel .product-prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    -ms-flex-item-align: center;
    align-self: center;
}

.product-carousel .product-prices span {
    width: 100%;
}

.shop-now {
    border: none;
    background-image: none;
    background-color: var(--primary-color);
    color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0.3em;
    text-decoration: none;
    padding: 0.2em 0.8em;
    font-size: 0.9em;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.product-carousel .product-prices span.price-now {
    font-weight: bold;
}

.product-carousel .product-prices span.price-now:before {
    content: "Now ";
}

.product-carousel button.shop-now {
    border: none;
    background-image: none;
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    font-size: 16px;
    padding: 8px 10px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

/** ARROWS **/
i {
    border: solid #000000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 12px;
    position: absolute;
    top: calc(50% - 12px / 2);
    cursor: pointer;
}

.right {
    right: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    left: 20px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

/** SLICK SLIDER CSS **/
/* Slider */
.slick-slider {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: 0;
    left: 0;
}

.slick-loading .slick-track {
    visibility: hidden;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

section.features-section {
    background: #20272e;
    color: white;
}

ul.features-list {
    margin: 0;
    padding-left: 0.1em;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(19rem, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}

ul.features-list li {
    font-size: 1.1em;
    margin-bottom: 1em;
    margin-left: 2em;
    position: relative;
}

ul.features-list li:before {
    content: "";
    left: -2em;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("../images/bullet.png");
    background-size: contain;
    margin-right: 0.5em;
}

.features-section img {
    display: none;
}

h2 {
    font-size: 2em;
}

label {
    display: block;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

input,
textarea {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border-radius: 0.3em;
    border: 1px solid gray;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 1.3em;
    border: none;
    margin-bottom: 5em;
    border-radius: 5em;
    display: inline-block;
    padding: 0.8em 2em;
    width: unset;
    cursor: pointer;
}

nav.menu-btn {
    display: block;
}

nav {
    position: fixed;
    z-index: 999;
    width: 66%;
    right: 0;
    top: 0;
    background: #20272e;
    height: 100vh;
    padding: 1em;
}

nav ul.primary-nav {
    margin-top: 5em;
}

nav li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.5em;
    font-size: 1.3em;
    text-align: right;
}

nav li a:hover {
    font-weight: bold;
}

.mobile-menu-exit {
    float: right;
    margin: 0.5em;
    cursor: pointer;
}

/*CSS Grid*/
.section-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px;
    margin-top: 10px;
    margin-bottom: 60px;
}

.mainheading {
    text-align: center;
    margin: 50px auto 0px auto;
}

.grid-prod {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.prod-grid {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    margin: 2%;
    padding: 12px;
    border: 2px solid #333;
}

.prod-grid img {
    width: 100%;
}

h3,
p {
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1px;
}

.btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    color: white;
    font-size: 22px;
    width: 200px;
    height: 40px;
    position: right;
    margin: 10px;
    letter-spacing: 1px;
    display: inline-block;
}

.btn a {
    text-decoration: none;
}

.btn:hover {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 22px;
    width: 200px;
    height: 40px;
    position: right;
    margin: 10px;
    letter-spacing: 1px;
    font-weight: bold;
    display: inline-block;
}

button {
    float: right;
}

button {
    float: right;
}

@media (min-width: 320px) and (max-width: 480px) {
    .section-list,
    .buttons {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .productsingle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .hero .container .left-col {
        width: 100%;
        float: left;
    }
    .hero .container .right-col {
        width: 100%;
        margin-top: 2rem;
        float: left;
    }
    .productleft {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        display: block;
        width: 100%;
    }
    .productleft img {
        border: 1px solid gray;
        padding: 0.3em;
        display: block;
        margin: 0px auto;
        width: auto;
        height: auto;
    }
    .productright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0.1em 1em;
        width: unset;
    }
    .productright p {
        font-size: 1em;
        text-align: left;
        line-height: 1.2em;
        color: gray;
        margin-top: 0em;
    }
    .productright .productsel {
        width: 100%;
    }
    .productright .cart-cta {
        max-width: 300px;
    }
}

@media only screen and (min-width: 768px) {
    .mobile-menu,
    .mobile-menu-exit {
        display: none;
    }
    .fb-cta {
        max-width: 320px;
    }
    input {
        width: 50% !important;
    }
    select {
        width: 50% !important;
    }
    .login2 {
        text-align: left;
    }
    .bar {
        text-align: left !important;
        margin: 0px !important;
    }
    .loginform p {
        text-align: left;
    }
    .loginform .bar {
        text-align: left;
    }
    .navbar .container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        justify-content: unset;
    }
    .navbar nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background: none;
        position: unset;
        height: auto;
        width: 100%;
        padding: 0;
    }
    .navbar nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .navbar nav a {
        color: black;
        font-size: 1em;
        padding: 0.1em 1em;
    }
    .navbar nav ul.primary-nav {
        margin: 0;
    }
    .navbar nav li.current a {
        font-weight: bold;
    }
    .navbar nav li.go-premium-cta a {
        color: var(--primary-color);
        border: 3px solid var(--primary-color);
        font-weight: bold;
        border-radius: 5em;
        margin-top: -0.2em;
    }
    .navbar nav li.go-premium-cta a:hover {
        background: var(--primary-color);
        color: white;
    }
}

@media only screen and (min-width: 1080px) {
    .container {
        width: 1080px;
        margin: 0 auto;
    }
    section {
        padding: 6em 4em;
    }
    .hero .container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: left;
    }
    .hero .container .left-col {
        width: 50%;
        float: left;
    }
    .hero .container .left-col h1 {
        font-size: 2em;
        width: 90%;
    }
    .hero .container .right-col {
        width: 50%;
        padding: 2rem;
        margin-top: 2rem;
        float: right;
    }
    .hero-img {
        width: 30%;
        margin-right: 8em;
    }
    ul.features-list {
        display: block;
        margin-left: 5em;
    }
    ul.features-list li {
        font-size: 1.4em;
    }
    ul.features-list li:before {
        width: 30px;
        height: 30px;
    }
    .features-section {
        position: relative;
    }
    .features-section img {
        display: block;
        position: absolute;
        right: 0;
        width: 350px;
        bottom: -2em;
    }
    .testimonials-section ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .testimonials-section ul li {
        margin: 0 1em;
    }
    .contact-section {
        position: relative;
    }
    .contact-section .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .contact-right {
        position: absolute;
        right: 0;
        top: 0;
        width: 45%;
        height: 100%;
    }
    .contact-right iframe {
        height: 100%;
    }
}

@media only screen and (min-width: 1450px) {
    .features-section:before {
        content: "";
        position: absolute;
        width: 10%;
        height: 20em;
        background: var(--primary-color);
        left: 0;
        top: -4em;
    }
    .features-section:after {
        content: "";
        position: absolute;
        width: 200px;
        height: 20em;
        background: url("../images/dots.svg") no-repeat;
        left: 4.5em;
        top: 2em;
    }
}

section.checkout {
    color: #333;
    padding: 3em 1em;
}

section.checkout h2 {
    margin-bottom: 0px;
    margin-top: 25px;
    text-align: center;
    font-weight: 200;
    font-size: 19px;
    font-size: 1.2rem;
}

section.checkout .container {
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

section.checkout .dropdown-select.visible {
    display: block;
}

section.checkout .dropdown {
    position: relative;
}

section.checkout ul {
    margin: 0;
    padding: 0;
}

section.checkout ul li {
    list-style: none;
    padding-left: 10px;
    cursor: pointer;
}

section.checkout ul li:hover {
    background: rgba(255, 255, 255, 0.1);
}

section.checkout .dropdown-select {
    position: absolute;
    background: var(--primary-color);
    text-align: left;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 90%;
    left: 2px;
    line-height: 2em;
    margin-top: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

section.checkout .thin {
    font-weight: 400;
}

section.checkout .small {
    font-size: 12px;
    font-size: 0.8rem;
}

section.checkout .half-input-table {
    border-collapse: collapse;
    width: 100%;
}

section.checkout .half-input-table td:first-of-type {
    width: 50%;
}

section.checkout .window {
    height: 100%;
    min-height: 600px;
    width: 90%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    z-index: 10;
}

section.checkout .order-info {
    height: 100%;
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

section.checkout .order-info2 {
    height: 100%;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

section.checkout .price {
    bottom: 0px;
    position: absolute;
    right: 0px;
    color: var(--primary-color);
}

section.checkout .order-table td:first-of-type {
    width: 25%;
}

section.checkout .order-table {
    position: relative;
}

section.checkout .line {
    height: 1px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #ddd;
}

section.checkout .order-table td:last-of-type {
    vertical-align: top;
    padding-left: 25px;
}

section.checkout .order-info-content {
    table-layout: fixed;
}

section.checkout .full-width {
    width: 100%;
}

section.checkout .pay-btn {
    border: none;
    background: #22b877;
    line-height: 2em;
    border-radius: 10px;
    font-size: 19px;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    position: absolute;
    bottom: 25px;
    width: calc(100% - 50px);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.checkout .pay-btn:hover {
    background: #22a877;
    color: #eee;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.checkout .total {
    font-size: 20px;
    font-size: 1.3rem;
    position: absolute;
    right: 27px;
    left: 35px;
}

section.checkout .dense {
    line-height: 1.2em;
    font-size: 16px;
    font-size: 1rem;
}

section.checkout .input-field {
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    margin-top: 3px;
    line-height: 1.5em;
    font-size: 20px;
    font-size: 1.3rem;
    border: none;
    padding: 5px 10px 5px 10px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

section.checkout .credit-info {
    background: #ecbc80;
    width: 50%;
    color: #333;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-size: 0.9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
}

section.checkout .dropdown-btn {
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    border-radius: 5px;
    text-align: center;
    line-height: 1.5em;
    cursor: pointer;
    position: relative;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

section.checkout .dropdown-btn:after {
    content: "\25BE";
    right: 8px;
    position: absolute;
}

section.checkout .dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

section.checkout .dropdown-select {
    display: none;
}

section.checkout .credit-card-image {
    display: block;
    max-height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    margin-bottom: 15px;
}

section.checkout .credit-info-content {
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

@media (max-width: 600px) {
    section.checkout .window {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 0px;
    }
    section.checkout .order-info {
        width: 100%;
        height: auto;
        padding-bottom: 100px;
        border-radius: 0px;
    }
    section.checkout .credit-info {
        width: 100%;
        height: auto;
        padding-bottom: 100px;
        border-radius: 0px;
    }
    section.checkout .pay-btn {
        border-radius: 0px;
    }
}

section.ordersumm {
    color: #333;
    padding: 3em 1em;
}

section.ordersumm h2 {
    margin-bottom: 0px;
    margin-top: 25px;
    text-align: center;
    font-weight: 200;
    font-size: 19px;
    font-size: 1.2rem;
}

section.ordersumm .container {
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

section.ordersumm .dropdown-select.visible {
    display: block;
}

section.ordersumm .dropdown {
    position: relative;
}

section.ordersumm ul {
    margin: 0;
    padding: 0;
}

section.ordersumm ul li {
    list-style: none;
    padding-left: 10px;
    cursor: pointer;
}

section.ordersumm ul li:hover {
    background: rgba(255, 255, 255, 0.1);
}

section.ordersumm .thin {
    font-weight: 400;
}

section.ordersumm .small {
    font-size: 12px;
    font-size: 0.8rem;
}

section.ordersumm .half-input-table {
    border-collapse: collapse;
    width: 100%;
}

section.ordersumm .half-input-table td:first-of-type {
    width: 100%;
}

section.ordersumm .window {
    height: 100%;
    min-height: 750px;
    width: 90%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    z-index: 10;
}

section.ordersumm .order-info {
    height: 100%;
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

section.ordersumm .order-info2 {
    height: 100%;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

section.ordersumm .price {
    bottom: 0px;
    position: absolute;
    right: 20%;
    color: var(--primary-color);
}

section.ordersumm .order-table td:first-of-type {
    width: 33%;
}

section.ordersumm .order-table {
    position: relative;
}

section.ordersumm .line {
    height: 1px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #ddd;
}

section.ordersumm .order-table td:last-of-type {
    vertical-align: top;
    padding-left: 25px;
}

section.ordersumm .order-info-content {
    table-layout: fixed;
    width: 90%;
}

section.ordersumm .full-width {
    width: 100%;
}

section.ordersumm .pay-btn {
    border: none;
    background: #22b877;
    line-height: 2em;
    border-radius: 10px;
    font-size: 19px;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    position: absolute;
    bottom: 25px;
    width: calc(100% - 50px);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.ordersumm .pay-btn:hover {
    background: #22a877;
    color: #eee;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section.ordersumm .total {
    font-size: 20px;
    font-size: 1.3rem;
    position: absolute;
    right: 20%;
    left: 10%;
}

section.ordersumm .dense {
    line-height: 1.2em;
    font-size: 16px;
    font-size: 1rem;
}

.generic-anchor {
    color: #e78714;
    text-decoration: none;
}

.generic-anchor:visited {
    color: #e78714;
}

.generic-anchor:hover {
    color: #ccc;
}

.flex-rw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Poppins";
    color: #9b9b9b;
    line-height: 1;
}

footer {
    background: #373737;
    margin-top: auto;
    width: 100%;
}

.footer-list-top {
    width: 33.333%;
}

.footer-list-top > p {
    font-size: 1em;
    line-height: 1.2em;
    color: white;
}

.footer-list-top > h6 {
    font-size: 1.5em;
    line-height: 1.6em;
    color: white;
    margin: 0;
    text-align: center;
}

.footer-list-top > li {
    text-align: center;
}

.footer-list-top img {
    text-align: center;
    margin: 5px auto;
    display: block;
}

.footer-list-header {
    padding: 10px 0 5px 0;
    color: #fff;
    font-family: "Poppins";
}

.footer-logo img {
    text-align: center;
    margin: 5px auto;
    display: block;
}

.footer-list-anchor {
    font: 1.3em "Poppins";
}

.footer-social-section {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: relative;
    margin-top: 5px;
}

.footer-social-section::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 10px;
    border-top: 1px solid #ccc;
    width: calc(100% - 20px);
}

.footer-social-overlap {
    position: relative;
    z-index: 2;
    background: #373737;
    padding: 0 20px;
}

.footer-social-connect {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font: 3.5em "Poppins";
    color: #fff;
}

.footer-social-small {
    font-size: 0.6em;
    padding: 0px 20px;
}

.footer-social-overlap > a {
    font-size: 3em;
}

.footer-social-overlap > a:not(:first-child) {
    margin-left: 0.38em;
}

.footer-bottom-section {
    width: 100%;
    padding: 10px;
    border-top: 1px solid #ccc;
    margin-top: 10px;
}

.footer-bottom-section > div:first-child {
    margin-right: auto;
}

.footer-bottom-wrapper {
    font-size: 18px;
    color: #fff;
}

.footer-address {
    display: inline;
    font-style: normal;
}

@media only screen and (max-width: 768px) {
    .footer-list-header {
        font-size: 2em;
    }
    .footer-list-anchor {
        font-size: 1.1em;
    }
    .footer-social-connect {
        font-size: 2.5em;
    }
    .footer-social-overlap > a {
        font-size: 2.24em;
    }
    .footer-bottom-wrapper {
        font-size: 1.3em;
    }
    .footer-list-top > p {
        font-size: 0.7em;
        line-height: 0.9em;
        color: white;
    }
    .footer-list-top > h6 {
        font-size: 1.2em;
        line-height: 1.3em;
        color: white;
    }
}

@media only screen and (max-width: 568px) {
    main {
        font-size: 5em;
    }
    .footer-list-top {
        width: 100%;
    }
    .footer-list-header {
        font-size: 3em;
    }
    .footer-list-anchor {
        font-size: 1.5em;
    }
    .footer-social-section {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-social-section::after {
        top: 25%;
    }
    .footer-social-connect {
        margin-bottom: 10px;
        padding: 0 10px;
    }
    .footer-social-overlap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-social-icons-wrapper {
        width: 100%;
        padding: 0;
    }
    .footer-social-overlap > a:not(:first-child) {
        margin-left: 20px;
    }
    .footer-bottom-section {
        padding: 0 5px 10px 5px;
    }
    .footer-bottom-wrapper {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .footer-social-overlap > a {
        margin: auto;
    }
    .footer-social-overlap > a:not(:first-child) {
        margin-left: 0;
    }
    .footer-bottom-rights {
        display: block;
    }
}

@media only screen and (max-width: 320px) {
    .footer-list-header {
        font-size: 2.2em;
    }
    .footer-list-anchor {
        font-size: 1.2em;
    }
    .footer-social-connect {
        font-size: 2.4em;
    }
    .footer-social-overlap > a {
        font-size: 2.24em;
    }
    .footer-bottom-wrapper {
        font-size: 1.3em;
    }
}

.embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/*# sourceMappingURL=style.css.map */
