body {
    position: relative;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    color: #343434;
}
.preload {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}
a,
a:hover {
    color: initial;
    text-decoration: none;
}
ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-content ol, ul{
    list-style: disc !important;
    list-style-position: inside;
}
:root {
    /* (fullwidth - left padding - right padding) divide into grids of 6 and multiply into 4 */
    /* --single-grid: calc((100vw - 80px - 80px) / 6); */

    /* content area is 0.666 of page width. while single grid is 1/4 of content area */
    --single-grid: calc((100vw * 0.666) / 4);
    --side-gutter: calc((100vw * 0.334) / 2 - 80px - 8px);
    --scrollbar-width:
    calc(100vw - 100%);
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.flex-wrap.product-with-gap {
    gap: 30px;
}
.flex-wrap.img-flex {
    gap: 10px;
}
.flex-wrap.img-flex img {
    flex: 1;
    overflow: auto;
}
section {
    margin-bottom: 50px;
}
.section-bg {
    background-color: #fafafa;
    padding: 20px 0px;
}
.section-product .section-content {
    margin-top: -85px;
}
.section-left .section-image {
    margin-right: auto;
    margin-left: 0;
}
.section-right .section-image {
    margin-left: auto;
    margin-right: 0;
}
.section-image {
    position: relative;
    width: calc(100vw - 80px - var(--side-gutter));
    z-index: -1;
    overflow: hidden;
}
.section-image img {
    width: 100%;
    object-fit: cover;
}
.section-image.hero-img {
    width: 100%;
}
.section-image.hero-img img {
    height: 100vh;
}
.section-image.hero-img.short-banner img {
    height: 40vh;
}
.section-image:not(.no-fade):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vw;
    z-index: 1;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0.01) 95%);
    pointer-events: none;
}
.section-content .pretitle {
    font-size: 20px;
}
.section-flex,
.section-flex-reverse {
    display: flex;
    align-items: center;
}
.section-flex > div,
.section-flex-reverse > div {
    width: 50%;
}
.section-flex-reverse {
    flex-direction: row-reverse;
}
.section-flex-image {
    width: 100%;
}
.section-flex-image img {
    width: 100%;
    object-fit: cover;
}
.section-flex-content {
    padding: 45px;
}
.section-content .title {
    font-size: 120px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    line-height: 1;
}
.section-content .description {
    font-size: 16px;
}
.section-cta-btn {
    background-color: #5d853f;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid #5d853f;
    transition: 0.3s background-color ease-in-out;
}
.section-cta-btn span {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #fff;
    transition: 0.3s filter ease-in-out;
}
.section-cta-btn:hover {
    background-color: #fff;
}
.section-cta-btn:hover span {
    color: #5d853f;
}
.max-grid {
    width: calc(var(--single-grid) * 4);
    max-width: 1706px;
    margin: 0 auto;
}
.max-wide-grid {
    width: calc(var(--single-grid) * 5);
    max-width: 1706px;
    margin: 0 auto;
}
.padding-80 {
    padding: 0 80px;
}
.margin-bot-30 {
    margin-bottom: 30px;
}
.section-feature > .section-content {
    display: flex;
    flex-wrap: wrap;
}
.single-index-feature {
    width: 50%;
    margin-bottom: 75px;
    text-align: center;
}
.double-index-feature {
    width: 100%;
    margin-bottom: 75px;
    text-align: center ;
}
.feature-title {
    margin-bottom: 30px;
    font-size: 50px;
    font-family: 'Playfair Display', serif;
    color: #5d853f;
}
.feature-description {
    font-size: 16px;
}
.single-product-grid {
    position: relative;
    width: calc((var(--single-grid) * 1) - 22.5px);
    margin-bottom: 80px;
}
.product-grid-img {
    position: relative;
    width: 100%;
    margin: 0px;
}
.product-grid-img img {
    width: 100%;
    object-fit: cover;
}
.product-grid-detail {
    padding-top: 30px;
    width: 100%;
    text-align: center;
}
.product-grid-detail .product-category {
    display: block;
    color: #cdcdcd;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.product-grid-detail .product-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.04px;
}
.product-grid-detail .product-price {
    font-size: 16px;
    letter-spacing: -0.04px;
}
.section-before-grid {
    margin-bottom: 100px;
}
.section-product-grid {
    margin-bottom: 200px;
}
.section-product-showcase {
    margin-bottom: 200px;
}
.section-product-showcase img {
    height: 640px;
}
.section-video {
    width: 100%;
    height: 720px;
}


/*========================================*\
    Media Query
\*========================================*/
/* 1440px */
@media (max-width: 1724px) {
    .padding-80 {
        padding: 0 60px;
    }
    .max-grid {
        width: calc(var(--single-grid) * 2);
    }
    .max-wide-grid {
        width: calc(var(--single-grid) * 2);
    }
    :root {
        --single-grid: calc((100vw * 0.7) / 2);
        --side-gutter: calc((100vw * 0.3) / 2 - 60px);
    }
    .section-content .pretitle {
        font-size: 16px;
    }
    .section-content .title {
        font-size: 100px;
    }
    .section-image {
        width: calc(100vw - 60px - var(--side-gutter));
    }
    .section-product .section-content {
        margin-top: -120px;
    }
    .feature-title {
        font-size: 45px;
    }
    .single-product-grid {
        width: calc((var(--single-grid) * 0.5) - 22.5px);
    }
}

/* 1024px */
@media (max-width: 1300px) {
    .padding-80 {
        padding: 0 40px;
    }
    .flex-wrap.product-with-gap {
        gap: 15px;
    }
    .single-product-grid {
        width: calc((var(--single-grid) * 0.666) - 10px);
    }
}

/* tablet */
@media only screen and (max-width: 876px) {
    .padding-80 {
        padding: 0 25px;
    }
    .max-grid {
        width: var(--single-grid);
    }
    .max-wide-grid {
        width: var(--single-grid);
    }
    .section-flex,
    .section-flex-reverse {
        flex-direction: column;
    }
    .section-flex-content {
        padding: 20px 0px;
    }
    .section-flex > div,
    .section-flex-reverse > div {
        width: 100%;
    }
    :root {
        --single-grid: calc(100vw - 50px);
        --side-gutter: 0;
    }
    .section-content .title {
        font-size: 60px;
    }
    .section-image {
        width: calc(var(--single-grid) + 25px);
    }
    .section-product .section-content {
        margin-top: -90px;
    }
    .section-image:after {
        height: 120px;
    }
    .single-index-feature,
    .double-index-feature {
        width: 100%;
        text-align: left;
    }
    .feature-title {
        font-size: 36px;
    }
    .flex-wrap.product-with-gap {
        gap: 10px;
    }
    .single-product-grid {
        width: calc((var(--single-grid) * 0.5) - 5px);
    }
    .product-grid-detail .product-category, .product-grid-detail .product-name {
        font-size: 16px;
    }
    .product-grid-detail .product-price {
        font-size: 14px;
    }
    .section-image.hero-img img {
        height: 100vw;
    }
    .section-content .section-video {
        height: 400px;
    }
    .flex-wrap.img-flex {
        gap: 5px;
    }
}

/* smartphone */
@media (max-width: 603px) {
    .section-product .section-content {
        margin-top: -70px;
    }
    .single-product-grid {
        width: calc((var(--single-grid) * 0.5) - 5px);
    }
}
