/*
Theme Name: AU
Theme URI: https://www.akemiuchi.com/
Author: eJeeban Web Design Company
Author URI: https://www.ejeeban.com/
Description: Customized theme for Akemi Uchi Website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, light, one-column, flexible-width, custom-header, custom-menu, featured-images, post-formats, sticky-post
Text Domain: au

*/


/*  --------------------------------------------------
    Generic CSS Setup
    -------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    margin: 0;
}
body {
    font-size: 15px;
    color: var(--green);
    font-family: var(--lato);
    height: 100%;
    max-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg);
}
.smooth-scroll{
    overflow: hidden;
}
:root {
    --bg: #f6f2ee;
    --green: #144b55;
    --black: #1a1a1a;
    --border: #cacccb;
    --lato: 'Lato', sans-serif;
    --cormorant: 'Cormorant', serif;
    --sourcesans: 'Source Sans Pro', sans-serif;
    --padding: 0 9%;
    --top: 100px;
    --bottom: 100px;
    --fullheight:  100vh;
}
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
video {
    width: 100%;
}
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: none;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 500;
    font-family: var(--cormorant);
}
h1 {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 50px;
}
h1 span{
    display: block;
}
h2 {
    font-size: 55px;
    margin-bottom: 30px;
}
h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
h4 {
    font-size: 25px;
    margin-bottom: 25px;
}
h5 {
    font-size: 18px;
    margin-bottom: 20px;
}
h6 {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: var(--lato);
    text-transform: uppercase;
    margin-bottom: 0;
}
h6 span{
    font-size: 22px;
    position: relative;
    margin-left: 10px;
    top: 2px;
}
p{
    line-height: 2;
}
a,
a:hover {
    color: inherit;
    transition: .2s;
}
button {
    appearance: none;
    -webkit-appearance: none;
    transition: .2s;
}
button:focus, input:focus, select:focus, textarea:focus{
    outline: none;
}
form {
    width: 100%;
}
form label{
    margin-bottom: 0;
}
.input-row{
    display: flex;
    flex-wrap: wrap;
    margin: -14px;
}
.input-item{
    flex-basis: 50%;
    padding: 14px;
}
.input-item-full{
    flex-basis: 100%;
    padding: 14px;
}
input,
select,
textarea {
    color: var(--green);
    display: block;
    width: 100%;
    outline: 0;
    padding: 20px 0px;
    margin: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background-color: transparent;
}
textarea {
    height: 100px;
}
input[type="submit"] {
    margin: 0;
    padding: 0;
    width: auto;
    display: inline-block;
    border: none;
    border-radius: 20px;
    padding: 5px 60px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--cormorant);
    background-color: var(--green);
    margin-top: 70px;
    cursor: pointer;
    transition: .2s;
}
input[type="submit"]:hover{
    
}
select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--green) 50%),
        linear-gradient(135deg, var(--green) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(10px + 20px),
        calc(100% - 15px) calc(10px + 20px),
        calc(100% - 2.5em) 1.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
    cursor: pointer;
}


/*  --------------------------------------------------
    Preloader
    -------------------------------------------------- */
#preloader{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #bfcbc3;
    color: #1b424f;
}
#preloader .loader{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}
#preloader .loader img{
    height: 150px;
    margin-bottom: 20px;
}
#preloader.is-hidden{
    visibility: hidden;
    opacity: 0;
}
.is-loading{
    overflow: hidden;
}
#preloader .is-hidden{
    visibility: hidden;
    opacity: 0;
}


/*  --------------------------------------------------
    Nav
    -------------------------------------------------- */
header nav {
    position: fixed;
    z-index: 101 !important;
    top: 0;
    left: 0;
    height: 9vw;
    width: 100%;
    padding: 0 3%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    transition: all .3s;
}
header nav.is-hidden {
    top: -130px;
}
header nav.is-sticky {
    height: 7vw;
    background-color: var(--bg);
    transition: all 0.3s;
}
header nav.is-at-top {
    top: 0px;
}
.nav-logo img {
    height: 78px;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}
.btn-menu, .btn-close {
    height: 24px;
    width: 17px;
    position: relative;
    transition: all .25s ease-out;
    cursor: pointer;
}
.btn-close{
    position: absolute;
    top: 60px;
    right: 3%;
    height: 30px;
    width: 30px;
}
.btn-menu span, .btn-close span{
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--green);
    transition: all .25s ease-out;
    position: relative;
    will-change: transform;
}
.btn-menu span:nth-child(1){
    transform: translateY(0px);
}
.btn-menu span:nth-child(2){
    transform: translateY(9px);
}
.btn-menu span:nth-child(3){
    transform: translateY(18px);
}
.btn-close span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.btn-close span:nth-child(2){
    display: none;
}
.btn-close span:nth-child(3) {
    transform: translateY(8px) rotate(-45deg);
}
.btn-close span{
    position: absolute;
    background-color: white;
}
.nav-light .btn-menu span{
    background-color: white;
}
.is-hidden .btn-menu span,
.is-sticky .btn-menu span{
    background-color: var(--green);
}
.logo-white{
    display: none;
}
.logo-black{
    display: block;
}
.nav-light .logo-white{
    display: block;
}
.nav-light .logo-black{
    display: none;
}
.is-hidden .logo-white,
.is-sticky .logo-white{
    display: none;
}
.is-hidden .logo-black,
.is-sticky .logo-black{
    display: block;
}
.main-menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    background-color: var(--black);
}
.main-menu ul{
    list-style: none;
    padding-inline-start: 0px;
    margin-bottom: 0;
    margin: -40px -20px;
}
.main-menu ul li{
    position: relative;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
}
.main-menu ul li:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0px;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.3s;
}
.main-menu ul li:hover:after {
    width: 100%;
    transition: all 0.3s;
}
.main-menu ul li a{
    color: white;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    position: relative;
    padding: 10px;
    font-family: var(--cormorant);
    opacity: 0.8;
    transition: .2s;
}

/*  --------------------------------------------------
    Footer
    -------------------------------------------------- */
footer{
    position: fixed;
    color: white;
    padding: var(--padding);
    background-color: var(--black);
    position: relative;
    z-index: 50;
    clear: both;
}
footer p{
    margin-bottom: 0;
}
footer a {
    color: inherit;
}
footer h6{
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.footer-row{
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}
.footer-col{
    flex: 1;
    padding: 10px;
}
.footer-col:first-child{
    flex-basis: 18%;
}
.footer-col:last-child{
    flex-basis: 12%;
}
.footer-col ul{
    display: block;
}
.footer-col ul li{
    margin-bottom: 5px;
}
.footer-col ul li a{
    font-size: 14px;
}
.footer1{
    padding-top: 150px;
    padding-bottom: 50px;
    border-bottom: 1px solid black;
}
.footer2{
    padding-top: 45px;
    padding-bottom: 90px;
    justify-content: space-between;
}
.social, .copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
}
.social img {
    height: 20px;
    margin-right: 10px;
    transition: .2s;
}
.social img:hover{
    opacity: 0.7;
}
.copyright p{
    font-size: 13px;
    font-weight: 700;
}
.copyright p:last-child{
    display: flex;
}
.copyright p:last-child:before{
    content: "|";
    display: block;
    padding: 0 10px;
}


/*  --------------------------------------------------
    Breadcrumbs
    -------------------------------------------------- */
.breadcrumbs{
    position: absolute;
    top: 120px;
    right: -455px;
    z-index: 100;
    --h: 500px;
    width: var(--h);
    align-items: center;
    transform: rotate(90deg);
    transform-origin: 0 50%;
}
.breadcrumbs-row li{
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.breadcrumbs-row li:before{
    content: ">";
    display: block;
    font-size: 13px;
    line-height: 1;
    padding-right: 10px;
}
.breadcrumbs-row li:first-child:before{
    display: none;
}
.breadcrumbs p, 
.breadcrumbs a,
.breadcrumbs span{
    margin: 0;
    padding: 0 5px;
    color: var(--green);
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-light .breadcrumbs p, 
.nav-light .breadcrumbs a, 
.nav-light .breadcrumbs li:before,
.nav-light .breadcrumbs span{
    color: white;
}
.breadcrumbs.is-sticky p, 
.breadcrumbs.is-sticky a, 
.breadcrumbs.is-sticky li:before, 
.breadcrumbs.is-sticky span{
    color: var(--green);
}


/*  --------------------------------------------------
    Indicators
    -------------------------------------------------- */
.indicators {
    position: fixed;
    z-index: 10;
    bottom: 0;
    right: 3%;
    width: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 70px;
    z-index: 50;
}
.indicators a {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid white;
    background-color: transparent;
    margin-top: 15px;
    transition: .2s;
}
.indicators a.active{
    background-color: white;
}
.indicators.active a{
    border-color: var(--green);
}
.indicators.active a.active{
    background-color: var(--green);
}


/*  --------------------------------------------------
    Common
    -------------------------------------------------- */
.padding {
    padding: var(--padding);
}
.top{
    padding-top: var(--top);
}
.bottom{
    padding-bottom: var(--bottom);
}
.imgHolder{
    position: relative;
    overflow: hidden;
}
.imgHolder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.imgHolder:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.list-row {
    list-style: none;
    padding-inline-start: 0px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}
.btn-link{
    --h: 200px;
    width: var(--h);
}
.btn-link:hover {
    text-decoration: none;
}
.btn-link a{
    display: flex;
    align-items: center;
    position: relative;
    width: var(--height);
}
.btn-link a, .btn-link p {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    height: 25px;
}
.btn-link a:hover, .btn-link p:hover {
    text-decoration: none;
}
.btn-link span{
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid var(--green);
    position: relative;
    margin-right: 20px;
}
.btn-link span:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green);
    transition: .2s;
}
.btn-link a:hover span:after{
    width: 9px;
    height: 9px;
}
.slick-dots{
    list-style: none;
    padding-inline-start: 0px;
    margin-bottom: 0;
    display: flex;
    margin-top: 10px;
}
.slick-dots li{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--green);
    background-color: transparent;
    margin-right: 15px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.slick-dots li.slick-active{
    background-color: var(--green);
}
.slick-dots button{
    position: absolute;
    top: 0;
    opacity: 0;
}
.section {
    position: relative;
}
.scroll-txt{
    position: absolute;
    bottom: 100px;
    right: 0;
    color: var(--green);
    transform: rotate(90deg);
    transform-origin: 1% 74%;
    z-index: 10;
    font-size: 13px;
    letter-spacing: 2px;
}
.clear-both {
    clear: both;
}
.modal-dialog {
    max-width: 70%;
}
.modal-body {
    position:relative;
    padding:0px;
}
.close {
    position:absolute;
    right:-30px;
    top:0;
    z-index:999;
    font-size:2rem;
    font-weight: normal;
    color:#fff;
    opacity:1;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
#infinite-handle, 
#ctis-loading,
.ctis-finished-notice {
    width: 100%;
}
#infinite-handle span button, 
#infinite-handle span button:focus, 
#infinite-handle span button:hover {
    background: var(--green);
    border-radius: 50px;
    color: #ffffff;
    padding: 0 50px;
    cursor: pointer;
}


/*  --------------------------------------------------
    Tab Navigation
    -------------------------------------------------- */
.tab-navi {
    margin-bottom: 10px;
}
.tab-navi ul{
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}
.tab-navi li{
    margin-right: 40px;
    padding: 0;
    font-family: var(--cormorant);
    font-size: 25px;
    color: #144b55;
}
.tab-navi li:last-child {
    margin-right: o;
}
.tab-navi li a{
    font-family: var(--cormorant);
    font-size: 25px;
    text-decoration: none;
    color: #144b55;
    display: block;
}
.tab-navi li a.active{
    text-decoration: underline;
}

/*  --------------------------------------------------
    Product Listing
    -------------------------------------------------- */
.products,
.tile-listing {
    margin: 0 -10px;
    padding: 0;
    list-style: none;
    clear: both;
    display: flex;
    flex-wrap: wrap;
}
.products h3,
.tile-listing h3{
    font-weight: 400;
    margin-bottom: 0;
}
.products li,
.tile-listing li{
    position: relative;
    width: calc(33.3% - 20px);
    margin: 20px 10px;
    padding: 0;
    display: block;
}
.products li a,
.tile-listing li a{
    position: relative;
    display: block;
}
.products li a:hover,
.tile-listing li a:hover{
    text-decoration: none;
}
.tile-listing li .img-holder {
    position: relative;
    width: 100%;
    background-color: #e3dfdb;
    margin-bottom: 30px;
    overflow: hidden;
}
.tile-listing li .img-holder:after {
    content: "";
    display: block;
    padding-bottom: 125%;
}
.tile-listing li .img-holder img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
    pointer-events: none;
}
.products li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
    pointer-events: none;
    margin-bottom: 30px;
}
.products li .price,
.tile-listing li a .price-discount {
}
.tile-listing li a .price-original {
    font-size: 15px;
    color: #7e7e7e;
    text-decoration: line-through;
}


/*  --------------------------------------------------
    Article Listing
    -------------------------------------------------- */
.list-listing {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #d8ded7;
    counter-reset: my-sec-counter;
}
.list-listing h3{
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 0;
}
.list-listing h3 span{
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
}
.list-listing li{
    position: relative;
    padding-bottom: 35px;
    padding-top: 35px;
    opacity: 1;
    transition: all 0.8s ease-out;
    display: flex;
    justify-content: space-between;
}
.list-listing li:after{
    position: absolute;
    bottom: 0px;
    margin-bottom: 0px;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #d8ded7;
    display: block;
    transition: all 0.8s ease-out;
    transition-delay: 0.3s;
}
.list-listing li a{
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}
.list-listing li .ls-numbering::before {
    width: 150px;
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-right: 130px;
    counter-increment: my-sec-counter;
    content: "0" counter(my-sec-counter);
}
.list-listing li .ls-content {
    width: 100%;
}
.list-listing li .ls-arrow {
    width: 99px;
    margin-right: 50px;
    opacity: 0;
    transition: all 0.3s ease-out;
}
.list-listing li:hover .ls-arrow {
    margin-right: 0px;
    opacity: 1;
    transition: all 0.3s ease-out;
}


/*  --------------------------------------------------
    Map Listing
    -------------------------------------------------- */
.map-listing {
    margin: 0;
    padding: 0;
    list-style: none;
}
.map-listing h3{
    font-weight: 400;
    margin-bottom: 0;
}
.map-listing h3 span{
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
}
.map-listing li{
    position: relative;
    padding-bottom: 15px;
    padding-top: 15px;
    opacity: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.8s ease-out;
}
.map-listing li:hover{
    background-color: rgba(0, 0, 0, 0.05);
}
.map-listing li:after{
    position: absolute;
    bottom: 0px;
    margin-bottom: 0px;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #d8ded7;
    display: block;
    transition: all 0.8s ease-out;
    transition-delay: 0.3s;
}
.map-listing li a{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}
.map-listing li .ls-store {
    width: 25%;
    margin-right: 3%;
}
.map-listing li .ls-store img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
.map-listing li .ls-content {
    width: 72%;
}
.map-listing li .ls-content h4{
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 20px;
}
.map-listing li .ls-content .opening-hours {
    font-style: italic;
}


/*  --------------------------------------------------
    Section Sustainability
    -------------------------------------------------- */
.sustainable {
    padding-left: 27%;
    position: relative;
}
.sustainable-left {
    position: absolute;
    top: 50px;
    left: 0;
    width: 30%;
    z-index: 1;
}
.sustainable-right {
    position: relative;
}
.circle {
    width: 320px;
    height: 320px;
    position: absolute;
    top: -10vw;
    left: 37%;
    z-index: 2;
}
.circle1 p{
    color: var(--green);
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--cormorant);
}
.circle2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.circle2 p {
    color: var(--green);
    font-size: 17px;
    text-transform: uppercase;
    font-family: var(--lato);
}
.sustainable-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -18px;
}
.sustainable-img{
    flex-basis: 60%;
    padding: 0 18px;
}
.sustainable-img .imgHolder:after{
    padding-bottom: 120%;
}
.sustainable-txt{
    margin-top: 50px;
    flex-basis: 40%;
    padding: 0 18px;
}
.sustainable-txt .btn-link{
    --h: 180px;
    height: var(--h);
}
.sustainable-txt .btn-link a{
    width: var(--h);
    transform: rotate(90deg);
    transform-origin: 1% 74%;
}
.sustainable-txt .btn-link a:after{
    font-family: FontAwesome;
    font-size: 18px;
    content: "\00a0\f101";
}


/*  --------------------------------------------------
    Section Subscription
    -------------------------------------------------- */
.subscribe{
    display: flex;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.input-subscribe{
    flex-basis: 70%;
    padding: 0 30px;
    border-right: 1px solid var(--border);
}
.input-subscribe input{
    border: none; 
}
.btn-subscribe{
    flex-basis: 30%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-subscribe img{
    height: 10px;
}
.subscribe input[type="submit"]{
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}


/*  --------------------------------------------------
    Recommended Listing
    -------------------------------------------------- */
.recommended-slider{
    overflow: hidden;
}
.recommended-slider .slick-list{
    margin: 0 -6px;
}
.recommended-slider .product-item{
    padding: 0 6px;
}
.recommended-slider .product-item a{
    display: block;
    text-decoration: none;
}
.recommended-slider .product-item .imgHolder:after{
    padding-bottom: 130%;
}
.recommended-slider .item-txt{
    margin-top: 30px;
}
.recommended-slider .slick-prev {
    position: absolute;
    z-index: 33;
    right: 90px;
    bottom: -50px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0;
    margin: 0;
    color: #144b55;
}
.recommended-slider .slick-next {
    position: absolute;
    z-index: 33;
    right: 50px;
    bottom: -50px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0;
    margin: 0;
    color: #144b55;
}
.recommended-slider .slick-dots li:only-child{
        display: none;
}


/*  --------------------------------------------------
    wp leaflet maps
    -------------------------------------------------- */
.wpomp-map-2 .fc-item-box.fc-component-2.wpomp_locations,
.fc-item-default.fc-wait .wpomp_locations {
    background: #f6f2ee !important;
    border: 1px solid #d8ded7 !important;
    margin-bottom: 10px !important;
}
.wpomp-map-2 .fc-item-title.fc-item-primary-text-color,
.wpomp-map-2 .place_title {
    font-family: 'Cormorant', serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #144b55 !important;
}
.wpomp_listing_container .fc-item-acerra .fc-item-title,
.wpomp_listing_list .wpomp_locations .wpomp_location_title {
    margin-bottom: 0px !important;
}
.fc-component-content ul li.fc-component-thumb .fc-feature-img {
    width: 260px;
}
.wpomp-map-2 .fc-item-content.fc-item-body-text-color {
    font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: #144b55 !important;
    line-height: 23px !important;
}
.wpomp_filter_wrappers {
    background: #e9e6e2 !important;
    border-radius: 0px !important;
    margin-bottom: 0px !important;
}
.fc-component-content ul {
    margin-bottom: 0 !important;
}


/*  --------------------------------------------------
    Home
    -------------------------------------------------- */
#home .scroll-txt{
    right: auto;
    bottom: 120px;
    color: white;
    left: 3%;
}
#home .sec01:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 40%;
    width: 1px;
    height: 100%;
    background-color: white;
    opacity: 30%;
    z-index: 10;
}
#home .sec01:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 9%;
    width: 1px;
    height: 100%;
    background-color: white;
    opacity: 30%;
    z-index: 10;
}
#home .introHolder{
    position: relative;
    width: 100%;
    height: 100vh;
    color: white;
}
#home .introHolder h1{
    margin-bottom: 20px;
}
#home .introHolder h2{
    font-size: 70px;
}
#home .intro{
    width: 100%;
    height: 100vh;
    position: relative;
}
#home .intro-bg{
    height: 100%;
    position: relative;
    overflow: hidden;
}
#home .intro-bg img, 
#home .intro-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}
#home .intro-row{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--padding);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#home .intro-left{
    max-width: 50%;
    margin-right: auto;
}
#home .intro-right{
    max-width: 42%;
    position: relative;
}
#home .intro01 .intro-right{
    width: 38%;
    height: 200px
}
#home .intro01 .btn-link{
    position: absolute;
    top: -13px;
    left: 98%;
    z-index: 1;
}
#home .intro .btn-link a{
    color: white;
    transform: rotate(90deg);
    transform-origin: 1% 74%;
    text-align: center;
}
#home .intro .btn-link a span{
    margin-left: 20px;
    border-color: white;
}
#home .intro .btn-link a span:after{
    background-color: white;
}
#home .intro02 .intro-bg{
    background-color: var(--bg);
}
#home .intro02 .intro-bg img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}
#home .intro02 .intro-bg img.active{
    opacity: 1;
}
#home .intro02 .intro-right{
    z-index: 2;
}
#home .intro02 .btn-link{
    position: absolute;
    top: 90px;
    left: 92.5%;
    z-index: 1;
}
#home .style-title{
    width: 90%;
    height: 100px;
    margin-left: 10%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
#home .style-slider{
    left: 30px;
}
#home .style-slider .slick-prev {
    position: absolute;
    z-index: 33;
    right: 90px;
    bottom: -50px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0;
    margin: 0;
    color: #144b55;
}
#home .style-slider .slick-next {
    position: absolute;
    z-index: 33;
    right: 50px;
    bottom: -50px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0;
    margin: 0;
    color: #144b55;
}
#home .style-slider .slick-dots{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    padding: 15px 60px;
    margin: 0;
}
#home .style-slider .slick-dots:before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}
#home .style-slider .slick-dots li{
    border-color: white;
}
#home .style-slider .slick-dots li.slick-active{
    background-color: white;
}
#home .style-bg{
    display: none !important;
}
#home .style-item{
    --height: 360px;
    padding-right: 50px;
}
#home .style-box{
    height: var(--height);
    padding: 80px 60px 50px;
    background-color: #c2886d;
}
#home .style-box a{
    text-transform: uppercase;
    letter-spacing: 2px;
}
#home .style-box a:after{
    font-family: FontAwesome;
    content: " \f101";
}
#home .style-box h6{
    margin-bottom: 20px;
}
#home .style-box h3{
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--sourcesans);
    margin-bottom: 20px;
}
#home .style-item:nth-child(2) .style-box{
    background-color: #dbc88d;
}
#home .style-item:nth-child(3) .style-box{
    background-color: #8e5123;
}
#home .style-item:nth-child(4) .style-box{
    background-color: #d2745b;
}

#home .product-slider{
    overflow: hidden;
}
#home .product-slider .slick-list{
    margin: 0 -6px;
}
#home .product-item{
    padding: 0 6px;
}
#home .product-item a{
    display: block;
    text-decoration: none;
}
#home .product-item .imgHolder:after{
    padding-bottom: 130%;
}
#home .item-txt{
    margin-top: 30px;
}

#home .sec03{
    padding-right: 0;
}
#home .categories{
    padding-left: 25%;
    position: relative;
}
#home .categories-left{
    position: absolute;
    top: 30px;
    left: 0;
    width: 38%;
    z-index: 1;
}
#home .categories-left h2 span{
    display: block;
}
#home .categories-left p{
    width: 62%;
}
#home .categories-nav{
    position: absolute;
    bottom: 150px;
    left: 0;
    display: flex;
    font-size: 13px;
    letter-spacing: 2px;
    z-index: 10;
}
#home .categories-nav .prev{
    padding-right: 10px;
    cursor: pointer;
}
#home .categories-nav .next{
    padding-left: 10px;
    cursor: pointer;
}
#home .categories-slider .slick-list{
    padding-right: 18%;
    margin: 0 -35px;
}
#home .categories-item{
    padding: 0 35px;
}
#home .categories-item:nth-child(odd){
    padding-top: 100px;
}
#home .categories-item .imgHolder:after{
    padding-bottom: 160%;
}
#home .categories-item a{
    display: block;
    position: relative;
}
#home .categories-item a:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: .5s;
    z-index: 1;
}
#home .categories-item img{
    transition: .5s;
}
#home .categories-item a:hover img{
    transform: scale(1.05);
}
#home .categories-item a:hover:before{
    background-color: rgba(0, 0, 0, 0.4);
}
#home .categories-item a:hover .categories-txt{
    opacity: 1;
}
#home .categories-txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: .2s;
}
#home .categories-txt span{
    display: block;
    width: 100px;
    height: 100px;
    position: relative;
    margin-bottom: 25px;
}
#home .categories-txt span:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: white;
}
#home .categories-txt span:after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: white;
}

#home .sec04 .slick-dots {
    margin-top: 50px;
}

#home .sec05 {
    padding-top: 30px;
    padding-bottom: 80px;
}

#home .sec06 {
    margin-bottom: 30px;
}
#home .questionnaire {
    padding-left: 25%;
    position: relative;
}
#home .questionnaire-left{
    position: absolute;
    top: 150px;
    left: 0;
    width: 35%;
    z-index: 1;
}
#home .questionnaire-left h6{
    margin-bottom: 40px;
}
#home .questionnaire-left p{
    width: 50%;
}
#home .questionnaire-box{
    padding: 8vw 10vw;
    background-color: #ddded7;
    position: relative;
}
#home .questionnaire-box:before, .questionnaire-box:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    height: 80%;
    border: 1px solid #a7aa95;
}
#home .questionnaire-box:after{
    width: 85%;
    height: 75%;
}
#home .questionnaire-box .c-holder {
    position: relative;
    z-index: 10;
}
#home .questionnaire-box p{
    letter-spacing: 2px;
    margin-bottom: 0;
}
#home .quest-item{
    margin-top: 35px;
}
#home .quest{
    display: none;
}
#home .quest-1{
    display: block;
}
#home .btn-next {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--green);
    margin-top: 70px;
    cursor: pointer;
    transition: .2s;
}
#home .btn-submit {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 70px;
    transition: .2s;
}
#home .quest .btn-submit a:after{
    font-family: FontAwesome;
    font-size: 18px;
    content: "\00a0\f101";
}
#home .radio-item [type="radio"]:checked,
#home .radio-item [type="radio"]:not(:checked){
    position: absolute;
    opacity: 0;
    height: 0;
    cursor: pointer;
}
#home .radio-item{
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    line-height: 26px;
    display: inline-block;
    width: 100%;
    margin-bottom: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#home .radio-item span:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border: 1px solid var(--green);
    border-radius: 100%;
    background: transparent;
}
#home .radio-item span:after{
    content: '';
    width: 10px;
    height: 10px;
    background: var(--green);
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#home .radio-item [type="radio"]:not(:checked) + span:after{
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
#home .radio-item [type="radio"]:checked + span:after{
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#home .store{
    padding-left: 28%;
    position: relative;
    margin-bottom: 80px;
}
#home .store .circle{
    top: 0;
    left: 80%;
}
#home .store .circle1{
    font-size: 27px;
}
#home .large-txt{
    position: absolute;
    z-index: -3;
    bottom: 50%;
    left: -4vw;
    width: 150%;
    font-size: 19vw;
    line-height: 16vw;
    font-weight: 300;
    margin-bottom: 0;
    z-index: 1;
    pointer-events: none;
}
#home .large-txt span{
    display: block;
    margin-left: 60vw;
}
#home .store-left{
    position: absolute;
    top: -80px;
    left: 0;
    width: 24%;
}
#home .store-left .imgHolder:after{
    padding-bottom: 110%;
}
#home .store-right{
    position: relative;
}
#home .store-right .imgHolder:after{
    padding-bottom: 55%;
}
#home .store-txt{
    position: absolute;
    bottom: 20px;
    left: -39%;
    width: 35%;
}
#home .store-right .btn-link {
    width: 100%;
    margin-top: 30px;
}
#home .store-right .btn-link a {
    position: relative;
    z-index: 10;
    width: 100%;
}
#home .store-right .btn-link a:after{
    font-family: FontAwesome;
    font-size: 18px;
    content: "\00a0\f101";
}
#home .sec09 {
    margin-bottom: 90px;
}
#home .secCate {
    margin-top: 5vh;
}
#home .au-listing {
    display: none;
}
#home .secCate h4{
    text-transform: uppercase;
}
#home .social-holder {
    display: flex;
    justify-content: space-between;
}
#home .social-holder img{
    width: 25%;
}


/*  --------------------------------------------------
    Au Style
    -------------------------------------------------- */
#AUStyle .au-introHolder{
    position: relative;
    width: 100%;
    height: var(--fullheight);
    color: white;
}
#AUStyle .au-intro{
    width: 100%;
    height: var(--fullheight);
    position: relative;
    overflow: hidden;
}
#AUStyle .au-intro h1{
    font-size: 70px;
}
#AUStyle .au-intro p{
    width: 60%;
}
#AUStyle .au-intro-bg,
#AUStyle .au-intro-bg .img-holder{
    height: 100%;
    position: relative;
}
#AUStyle .au-intro-bg img, 
#AUStyle .au-intro-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(75%);
}
#AUStyle .au-intro-row{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--padding);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#AUStyle .au-intro-left{
    max-width: 55%;
    margin-right: auto;
}
#AUStyle .au-intro02 .au-intro-bg{
    background-color: var(--bg);
}
#AUStyle .au-intro02 .au-intro-bg img,
#AUStyle .au-intro03 .au-intro-bg img,
#AUStyle .au-intro04 .au-intro-bg img,
#AUStyle .au-intro05 .au-intro-bg img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: .5s;
    z-index: 1;
}
#AUStyle .au-intro02 .au-intro-bg img.active,
#AUStyle .au-intro03 .au-intro-bg img.active,
#AUStyle .au-intro04 .au-intro-bg img.active,
#AUStyle .au-intro05 .au-intro-bg img.active{
    opacity: 1;
}
#AUStyle .style-title{
    width: 90%;
    height: 100px;
    margin-left: 10%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
#AUStyle .the-indicator {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 9%;
    bottom: 0;
    width: 25px;
}
#AUStyle .the-indicator .line-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 35%;
    background-color: rgba(255, 255, 255, 0.3);
}
#AUStyle .the-indicator .line-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 35%;
    background-color: rgba(255, 255, 255, 0.3);
}
#AUStyle .the-indicator ul{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    list-style: none;
}
#AUStyle .the-indicator li{
    position: relative;
    margin: 0 0 10px 0px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid transparent;
}
#AUStyle .the-indicator li span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid #ffffff;
}
#AUStyle .the-indicator li.active{
    border: 1px solid #ffffff;
}
#AUStyle .the-indicator li.active span {
    background-color: #ffffff;
}
#AUStyle .scroll-txt {
    color: #ffffff;
}


/*  --------------------------------------------------
    WooCommerce & Products
    -------------------------------------------------- */
#products .sec-heading,
#products .sec-prod-desc {
    width: 100%;
    height: 100%;
    padding: var(--padding);
    padding-top: 35vh;
}
#products .sec-prod-desc {
}
#products .sec-heading h1{
    width: 75%;
    margin-bottom: 20px;
}
#products .sec-prod-desc .woocommerce-product-gallery {
    width: 45%;
    float: left;
}
#products .sec-prod-desc .summary {
    width: 50%;
    float: right;
    padding-top: 20px;
}
#products .sec-prod-desc .summary h1{
    width: 80%;
    margin-bottom: 30px;
    font-size: 45px;
}
#products .sec-prod-desc .summary h2{
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--lato);
}
#products .sec-prod-desc .product_description {
    width: 80%;
}
#products .sec-prod-desc .summary .price {
    color: #144b55;
}
#products .sec-prod-desc .btn-locatestore {
  margin-top: 30px;
}
#products .sec-prod-desc .btn-locatestore a{
  min-width: 200px;
  background-color: var(--green);
  padding: 10px 20px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  border-radius: 30px;
}
#products .sec-prod-desc .btn-locatestore a:hover{
  background-color: var(--black);
  text-decoration: none;
}
#products .sec-prod-desc .woocommerce-Tabs-panel h2{
    display: none;
}
#products .woocommerce .woocommerce-tabs {
    margin-bottom: 100px;
}
#products .woocommerce .tabs {
    padding: 0;
    margin-bottom: 50px;
}
#products .woocommerce .tabs li{
    border: none;
    background-color: transparent;
    padding: 0 35px 0 10px;
    font-weight: 400;
    font-family: var(--cormorant);
    font-size: 25px;
    color: #144b55;
}
#products .woocommerce .tabs li a{
    font-weight: 400;
    color: #144b55;
    text-decoration: none;
}
#products .woocommerce .tabs li.active a{
    text-decoration: underline;
}
#products .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
#products .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}
#products .woocommerce-result-count {
    display: none;
}
#products .woocommerce-ordering {
    display: none;
}
.woocommerce div.product div.images .flex-control-thumbs {
    margin: 0 -3px;
}
.woocommerce div.product div.images .flex-control-thumbs li{
    width: calc(25% - 6px);
    margin: 6px 3px 0 3px;
}
#products .woocommerce div.product form.cart {
    
}
#products .product_meta {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}
#products .product_meta .posted_in,
#products .product_meta .sku_wrapper {
    display: block;
    margin: 0 0 5px 0px;
}
#products .woocommerce-variation-availability {
    margin-top: -5px;
}
#products .woocommerce-variation-price {
    margin-top: 30px;
}
#products .woocommerce div.product form.cart .variations td.label {
    width: 20%;
}
#products .woocommerce div.product form.cart .variations label{
    padding-top: 5px;
}
#products .woocommerce div.product form.cart .reset_variations {
    position: absolute;
}
#products .single_variation_wrap {
    margin-left: 20%;
}
#products .woocommerce-variation-add-to-cart,
#products .woocommerce div.product form.cart .single_add_to_cart_button,
#products .woocommerce div.product form.cart div.quantity {
    display: none;
}
#products input, 
#products select, 
#products textarea {
    padding: 5px 10px;
    border: 1px solid var(--border);
}
#products select {
    background-position: calc(100% - 20px) calc(10px + 10px), calc(100% - 15px) calc(10px + 10px), calc(100% - 2.5em) 1.5em;
}
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    background-color: var(--green);
}
.woocommerce #respond input#submit.alt.disabled, 
.woocommerce #respond input#submit.alt.disabled:hover, 
.woocommerce #respond input#submit.alt:disabled, 
.woocommerce #respond input#submit.alt:disabled:hover, 
.woocommerce #respond input#submit.alt:disabled[disabled], 
.woocommerce #respond input#submit.alt:disabled[disabled]:hover, 
.woocommerce a.button.alt.disabled, 
.woocommerce a.button.alt.disabled:hover, 
.woocommerce a.button.alt:disabled, 
.woocommerce a.button.alt:disabled:hover, 
.woocommerce a.button.alt:disabled[disabled], 
.woocommerce a.button.alt:disabled[disabled]:hover, 
.woocommerce button.button.alt.disabled, 
.woocommerce button.button.alt.disabled:hover, 
.woocommerce button.button.alt:disabled, 
.woocommerce button.button.alt:disabled:hover, 
.woocommerce button.button.alt:disabled[disabled], 
.woocommerce button.button.alt:disabled[disabled]:hover, 
.woocommerce input.button.alt.disabled, 
.woocommerce input.button.alt.disabled:hover, 
.woocommerce input.button.alt:disabled, 
.woocommerce input.button.alt:disabled:hover, 
.woocommerce input.button.alt:disabled[disabled], 
.woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: var(--green);
}
#products .slick-slide img{
    display: block;
    width: 100%;
}


/*  --------------------------------------------------
    About Us
    -------------------------------------------------- */
#aboutUs .sec-heading {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(images/bg-heading-default.jpg) no-repeat;
    background-size: cover;
    padding: var(--padding);
    padding-top: 35vh;
    padding-bottom: 35vh;
    margin-bottom: 350px;
}
#aboutUs .sec-heading h1{
    width: 60%;
    margin-bottom: 20px;
}
#aboutUs .sec-heading .about-gallery{
    position: absolute;
    z-index: 2;
    bottom: -30%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 -15px;
}
#aboutUs .sec-heading .gallery-holder {
    flex-basis: 100%;
    flex-shrink: 0;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    overflow: hidden;
    padding: 0px;
}
#aboutUs .sec-heading .gallery-holder li{
    margin-right: 30px;
}
#aboutUs .sec-heading .gallery-holder li:nth-child(3){
    width: 30%;
}
#aboutUs .sec-heading .gallery-holder li:nth-child(2),
#aboutUs .sec-heading .gallery-holder li:nth-child(4){
    width: 25%;
}
#aboutUs .sec-heading .gallery-holder li:nth-child(1),
#aboutUs .sec-heading .gallery-holder li:nth-child(5){
    width: 20%;
}
#aboutUs .sec-heading .gallery-holder:nth-child(even) li:nth-child(1),
#aboutUs .sec-heading .gallery-holder:nth-child(even) li:nth-child(1){
    width: 30%;
}
#aboutUs .sec-heading .gallery-holder:nth-child(even) li:nth-child(3){
    width: 20%;
}
#aboutUs .sec-heading p{
    width: 30%;
}
#aboutUs .sec-story {
    width: 100%;
    height: 100%;
    padding: var(--padding);
    padding-bottom: 185px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#aboutUs .sec-story h4{
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#aboutUs .sec-story h2{
    letter-spacing: 5px;
    margin-bottom: 120px;
}
#aboutUs .sec-story .sec-left {
    width: 28%;
}
#aboutUs .sec-story .sec-right {
    position: relative;
    width: 50%;
}
#aboutUs .sec-story .sec-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
#aboutUs .sec-story .sec-right .img-float {
    position: absolute;
    z-index: 2;
    top: 25%;
    left: -25%;
    width: 50%;
}
#aboutUs .sec-story .sec-right .img-stamp {
    position: absolute;
    z-index: 3;
    top: -20%;
    right: -15%;
    width: 50%;
    -webkit-animation:spin 10s linear infinite;
    -moz-animation:spin 10s linear infinite;
    animation:spin 10s linear infinite;
}
#aboutUs .sec-highlight {
    width: 100%;
    height: 100%;
    background: url(images/bg-about-highlight.jpg) no-repeat;
    background-size: cover;
    padding: 200px 24%;
    margin-bottom: 150px;
}
#aboutUs .sec-highlight p{
    font-family: var(--cormorant);
    font-size: 35px;
    line-height: 1.35;
    margin-bottom: 30px;
}
#aboutUs .sec-highlight .btn-readmore {
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
#aboutUs .sec-highlight .btn-readmore span{
    position: relative;
    width: 10px;
    height: 10px;
    background-color: var(--green);
    border-radius: 50%;
    display: block;
    border: 1px solid var(--green);
    margin: 10px 25px 10px 10px;
    transition: all 0.2s;
}
#aboutUs .sec-highlight .btn-readmore span:before {
    position: absolute;
    left: -11px;
    top: -11px;
    content: "";
    width: 30px;
    height: 30px;
    border: 1px solid var(--green);
    display: block;
    border-radius: 50%;
}
#aboutUs .sec-highlight .btn-readmore:hover span{
    width: 5px;
    height: 5px;
    transition: all 0.2s
}
#aboutUs .sec-brand {
    width: 100%;
    height: 100%;
    padding: var(--padding);
    padding-bottom: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#aboutUs .sec-brand .img-holder {
    width: 48%;
}
#aboutUs .sec-brand .img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
#aboutUs .sec-brand .desc-holder {
    width: 45%;
}
#aboutUs .sustainable {
    margin-bottom: 195px;
}


/*  --------------------------------------------------
    Our Sustainabilty
    -------------------------------------------------- */
#ourSustainability {
    width: 100%;
    height: 100%;
}
#ourSustainability .sec-heading {
    position: relative;
    width: 100%;
    height: 110vh;
    background: url(images/bg-heading-default.jpg) no-repeat;
    background-size: cover;
    margin-bottom: 150px;
}
#ourSustainability .sec-heading h4 {
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#ourSustainability .sec-heading .desc-holder {
    position: absolute;
    top: 25vh;
    width: 60%;
    padding: var(--padding);
}
#ourSustainability .sec-heading .desc-holder p{
    width: 60%;
}
#ourSustainability .sec-heading .bg-holder {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#ourSustainability .sec-heading .bg-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
#ourSustainability .sec-positive-impact {
    position: relative;
    height: 100%;
    margin: 0 9% 35vh 9%;
}
#ourSustainability .sec-positive-impact h2 {
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.35;
    margin-bottom: 60px;
}
#ourSustainability .sec-positive-impact .img-group {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    height: var(--fullheight);
    display: none;
}
#ourSustainability .sec-positive-impact .img-group.active {
    display: block;
}
#ourSustainability .sec-positive-impact .img-group img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
#ourSustainability .sec-positive-impact .img-group .img-1 {
    position: absolute;
    top: 70px;
    left:  0;
    width: 12%;
}
#ourSustainability .sec-positive-impact .img-group .img-2 {
    position: absolute;
    top: 0;
    right:  0;
    width: 25%;
}
#ourSustainability .sec-positive-impact .img-group .img-3 {
    position: absolute;
    top: 49%;
    left:  8%;
    width: 18%;
}
#ourSustainability .sec-positive-impact .desc-holder {
    position: relative;
    z-index: 2;
    width: 30%;
    margin: 0 auto;
    padding-top: 15vh;
    text-align: center;
}
#ourSustainability .sec-positive-impact .ico-holder {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#ourSustainability .sec-positive-impact .collapse-content {
    position: relative;
}
#ourSustainability .sec-positive-impact .desc-holder .tab {
    margin-bottom: 20px;
}
#ourSustainability .sec-positive-impact .desc-holder .tab a{
    display: block;
    text-decoration: none;
}
#ourSustainability .sec-positive-impact .desc-holder .tab a h3{
    margin-bottom: 0;
    font-size: 30px;
    text-decoration: underline;
}
#ourSustainability .sec-positive-impact .desc-holder .tab a.collapsed h3{
    text-decoration: none;
}
#ourSustainability .sec-positive-impact .desc-holder .tab a.collapsed:hover h3{
    text-decoration: underline;
}
#ourSustainability .sec-positive-impact .desc-holder .tab .collapse-content{
    padding-top: 10px;
}
#ourSustainability .sec-positive-impact .desc-holder .tab p{
    margin-bottom: 0;
}
#ourSustainability .sec-positive-diff {
    width: 100%;
    height: 100%;
    padding: 0 0 0 9%;
    margin-bottom: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#ourSustainability .sec-positive-diff .sec-left {
    width: 35%;
}
#ourSustainability .sec-positive-diff .sec-right {
    width: 57%;
}
#ourSustainability .sustainable-slider {
    margin-bottom: 30px;
}
#ourSustainability .sustainable-slider .slick-list{
    padding-right: 25%;
    margin: 0 -35px;
}
#ourSustainability .item-listing {
    padding: 0 15px 35px 15px;
    overflow: hidden;
}
#ourSustainability .item-listing .imgHolder:after{
    padding-bottom: 100%;
}
#ourSustainability .item-listing a{
    display: block;
    position: relative;
}
#ourSustainability .item-listing a:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: .5s;
    z-index: 1;
}
#ourSustainability .item-listing img{
    transition: .5s;
}
#ourSustainability .item-listing a:hover img{
    transform: scale(1.05);
}
#ourSustainability .item-listing a:hover:before{
    background-color: rgba(0, 0, 0, 0.4);
}
#ourSustainability .label-txt{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url(images/shade-our-sustainability.png) repeat-x bottom left;
    padding: 80% 90px 45px 45px; 
    color: #ffffff;
    z-index: 2;
    transition: .2s;
}
#ourSustainability .item-listing a:hover .label-txt{
    padding-top: 60%;
    transition: .5s;
}
#ourSustainability .item-listing a p{
    opacity: 0;
    transition: .5s;
}
#ourSustainability .item-listing a:hover p{
    opacity: 1;
}
#ourSustainability .sec-rel-products {
    width: 100%;
    height: 100%;
    padding: var(--padding);
    margin-bottom: 185px;
}
#ourSustainability .sec-rel-products h4 {
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#ourSustainability .sec-rel-products .desc-holder {
    position: relative;
    width: 70%;
    margin: -60px auto 0 auto;
}
#ourSustainability .sec-rel-products .desc-holder .img-holder{
    position: relative;
    z-index: -1;
    width: 100%;
    margin-bottom: 30px;
}
#ourSustainability .sec-rel-products .desc-holder .img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
#ourSustainability .sec-rel-products .desc-holder .img-stamp {
    position: absolute;
    z-index: 2;
    top: -25%;
    right: -15%;
    width: 30%;
    -webkit-animation:spin 10s linear infinite;
    -moz-animation:spin 10s linear infinite;
    animation:spin 10s linear infinite;
}
#ourSustainability .sec-rel-products .desc-holder .txt-holder {
    width: 60%;
}
#ourSustainability .btn-readmore,
#ourSustainability .btn-readmore a {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
}
#ourSustainability .btn-readmore a:after{
    font-family: FontAwesome;
    font-size: 18px;
    content: "\00a0\f101";
}
#ourSustainability .btn-readmore span{
    position: relative;
    width: 10px;
    height: 10px;
    background-color: var(--green);
    border-radius: 50%;
    display: block;
    border: 1px solid var(--green);
    margin: 10px 25px 10px 10px;
    transition: all 0.2s;
}
#ourSustainability .btn-readmore span:before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    content: "";
    width: 30px;
    height: 30px;
    border: 1px solid var(--green);
    display: block;
    border-radius: 50%;
}
#ourSustainability .btn-readmore:hover span{
    transition: all 0.2s
}


/*  --------------------------------------------------
    Contact Us
    -------------------------------------------------- */
#contactUs .sec-heading {
    position: relative;
    width: 100%;
    background-color: #dfdcdb;
    margin-bottom: 150px;
    padding: var(--padding);
    padding-top: 35vh;
    padding-bottom: 120px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
#contactUs .sec-heading h4 {
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#contactUs .sec-heading .img-holder {
    position: relative;
    width: 28%;
    margin-right: 8%;
}
#contactUs .sec-heading .img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#contactUs .sec-heading .desc-holder {
    width: 64%;
}
#contactUs .sec-heading .img-stamp {
    position: absolute;
    z-index: 2;
    top: 8%;
    right: -15%;
    width: 200%;
    font-family: var(--cormorant);
    font-size: 50px;
}
#contactUs .sec-heading .add-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#contactUs .sec-heading .add-holder .ls-add {
  width: 48%;
}
#contactUs .sec-form {
    width: 100%;
    margin-bottom: 150px;
    padding: var(--padding);
}
#contactUs .sec-form input,
#contactUs .sec-form select,
#contactUs .sec-form textarea{
    margin-bottom: 30px;
}



/*  --------------------------------------------------
    Default
    -------------------------------------------------- */
#default .sec-heading {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url(images/bg-heading-default.jpg) no-repeat;
    background-size: cover;
    margin-bottom: 150px;
    overflow: hidden;
}
#default .sec-heading h1{
    margin-bottom: 25px;
}
#default .sec-heading h4 {
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#default .sec-heading .desc-holder {
    position: absolute;
    z-index: 2;
    bottom: 10vh;
    width: 80%;
    padding: var(--padding);
}
#default .sec-heading .desc-holder p{
    width: 70%;
}
#default .sec-heading .img-holder {
    position: relative;
    width: 35%;
    margin-right: 13%;
    float: left;
}
#default .sec-heading .img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#default .sec-heading .bg-holder {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#default .sec-heading .bg-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    pointer-events: none;
}
#default .sec-heading .btn-more {
    margin-top: 100px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#default .sec-heading .btn-more a:after{
    font-family: FontAwesome;
    font-size: 18px;
    content: "\00a0\f103";
}
#default .sec-listing,
#default .sec-content {
    padding: var(--padding);
    margin-bottom: 135px;
}
#default .sec-listing h3{
    margin-bottom: 50px;
}
#default .sec-listing .list-listing {
    margin-bottom: 100px;
}
#default .sec-listing .list-listing h3{
    margin-bottom: 0;
}
#default .sec-listing .list-listing li{
    align-items: unset;
}
#default .sec-listing .list-listing li a{
    margin-bottom: 40px;
}
#default .sec-listing .list-listing li .ls-arrow {
    width: 10px;
    margin-right: 0px;
    opacity: 1;
    transition: all 0.3s ease-out;
}
#default .sec-content h2,
#default .sec-content h3,
#default .sec-content h4,
#default .sec-content li{
    line-height: 1.75;
}
#default .sec-content p,
#default .sec-content ul{
    margin-bottom: 25px;
}
#default .map-holder {
    margin-bottom: 40px;
}
#default .map-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

/*  --------------------------------------------------
    Blog Listing & Details
    -------------------------------------------------- */
#blog .sec-heading {
    position: relative;
    width: 100%;
    padding: var(--padding);
    padding-top: 35vh;
    padding-bottom: 75px;
}
#blog .sec-heading h1,
#blog .sec-heading p{
    width: 75%;
    margin-bottom: 50px;
}
#blog .sec-inner-heading {
    position: relative;
    width: 100%;
    height: var(--fullheight);
    background: url(images/bg-heading-default.jpg) no-repeat;
    background-size: cover;
    margin-bottom: 150px;
    overflow: hidden;
    color: #ffffff;
}
#blog .sec-inner-heading h4 {
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#blog .sec-inner-heading .desc-holder {
    position: absolute;
    z-index: 2;
    top: 35vh;
    width: 60%;
    padding: var(--padding);
}
#blog .sec-inner-heading .bg-holder {
    position: relative;
    width: 100%;
    height: 100%;
}
#blog .sec-inner-heading .bg-holder img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    pointer-events: none;
}
#blog .sec-features {
    position: relative;
    padding: var(--padding);
    margin-bottom: 135px;
}
#blog .sec-features h4{
    font-family: var(--lato);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#blog .sec-features .img-holder {
    position: relative;
    width: 100%;
    margin-bottom: 35px;
    overflow: hidden;
}
#blog .sec-features .img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
#blog .sec-features .slick-prev {
    position: absolute;
    z-index: 33;
    left: -20px;
    top: 45%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--bg);
    border: 1px solid var(--bg);
    padding: 0;
    margin: 0;
    color: #144b55;
}
#blog .sec-features .slick-next {
    position: absolute;
    z-index: 33;
    right: -20px;
    top: 45%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--bg);
    border: 1px solid var(--bg);
    padding: 0;
    margin: 0;
    color: #144b55;
}
#blog .sec-features .slick-disabled {
    display: none !important;
}
#blog .sec-features ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
#blog .sec-features li{
    width: 32%;
    margin: 0;
    display: block;
}
#blog .sec-features li a{
    display: block;
    text-decoration: none;
}
#blog .sec-background {
    position: relative;
    width: 100%;
    height: var(--fullheight);
    margin-bottom: 135px;
    overflow: hidden;
}
#blog .sec-background img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 120%;
    height: 120%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
#blog .sec-listing {
    padding: var(--padding);
    margin-bottom: 135px;
}
#blog .sec-details {
    padding: 0 18%;
    margin-bottom: 135px;
}
#blog .sec-details p,
#blog .sec-details blockquote,
#blog .sec-details .img-holder {
    margin-bottom: 50px;
}
#blog .sec-details blockquote{
    text-align: center;
    font-family: var(--cormorant);
    font-size: 45px;
}
#blog .sec-details blockquote::before {
    content: "“";
}
#blog .sec-details blockquote::after {
    content: "”";
}
#blog .sec-details .img-holder {
    width: 100%;
}
#blog .sec-details .img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
#blog .sec-details .brief-holder {
    margin-bottom: 90px;
}
#blog .sec-details .rel-articles {
    margin-top: 90px;
}
#blog .sec-details .rel-articles h3{
    margin-bottom: 65px;
}


/*  --------------------------------------------------
    FAQ
    -------------------------------------------------- */
#default .sec-listing .accordion .list-listing li a{
    margin-bottom: 0;
}
.collapse-content{
    padding-top: 40px;
}


/*  --------------------------------------------------
    Large Screen
    -------------------------------------------------- */
@media only screen and (min-width: 1601px) {
    .breadcrumbs{
        top: 150px;
    }

    #aboutUs .sec-heading {
        padding-bottom: 45vh;
        margin-bottom: 450px;
    }
    #aboutUs .sec-heading h1{
        width: 60%;
        margin-bottom: 20px;
    }
    #aboutUs .sec-heading .about-gallery{
        position: absolute;
        z-index: 2;
        bottom: -30%;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        align-items: center;
        margin: 0 -15px;
    }
}


/*  --------------------------------------------------
    Ipad Pro Landscape
    -------------------------------------------------- */
@media only screen and (min-width: 1366px) and (min-height: 1024px) {

}

/*  --------------------------------------------------
    Ipad Landscape
    -------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    :root {
        --padding: 0 9%;
        --top: 80px;
        --bottom: 80px;
    }
    h1 {
        font-size: 60px;
        margin-bottom: 50px;
    }
    h2 {
        font-size: 45px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    h6 {
        font-size: 13px;
    }
    h6 span{
        font-size: 20px;
    }
    p{
        line-height: 1.75;
    }
    main{
        overflow: hidden;
    }
    
    header nav {
        height: 11vw;
    }
    header nav.is-hidden {
        top: -170px;
    }
    header nav.is-sticky {
        height: 9vw;
    }
    .nav-logo img {
        height: 75px;
    }

    .footer-col{
        flex-basis: 15%;
    }
    .footer-col:first-child{
        flex-basis: 15%;
    }
    .footer-col:last-child{
        flex-basis: 25%;
    }

    .breadcrumbs{
        right: 0;
        width: 35px;
        overflow: hidden;
        white-space: nowrap;
        overflow: visible;
    }
    .list-row {
        flex-wrap: nowrap;
    }

    .indicators {
        right: 3.2%;
        margin-bottom: 50px;
    }
    
    .scroll-txt{
        right: -2%;
    }

    .tab-navi li{
        margin-right: 30px;
        font-size: 20px;
    }
    .tab-navi li a{
        font-size: 20px;
    }

    .map-listing li .ls-store {
        width: 35%;
    }

    .sustainable {
        padding-left: 33%;
    }
    .sustainable-left {
        width: 32%;
    }
    .circle {
        top: -15vw;
        left: 30%;
    }
    .sustainable-row{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 0 -18px;
    }
    .sustainable-img{
        flex-basis: 62%;
        padding: 0 20px;
    }
    .sustainable-img .imgHolder:after{
        padding-bottom: 130%;
    }
    .sustainable-txt{
        margin-top: 60px;
        flex-basis: 35%;
        padding: 0 0px;
    }

    #home .scroll-txt{
        bottom: 110px;
    }
    #home .introHolder h2{
        font-size: 60px;
    }
    #home .intro02 .btn-link{
        left: 91%;
    }
    #home .style-title{
        padding: 0 30px;
    }
    #home .style-slider{
        left: 20px;
    }
    #home .style-slider .slick-dots{
        padding: 15px 40px;
    }
    #home .style-item{
        --height: 350px;
        padding-right: 50px;
    }
    #home .style-box{
        padding: 80px 40px 20px;
    }
    #home .style-box h6{
        margin-bottom: 30px;
    }
    #home .style-box h3{
        margin-bottom: 10px;
    }
    #home .categories{
        padding-left: 30%;
    }
    #home .categories-left{
        top: 40px;
    }
    #home .categories-left p{
        width: 55%;
    }
    #home .categories-nav{
        bottom: 50px;
    }
    #home .categories-slider .slick-list{
        padding-right: 18%;
        margin: 0 -35px;
    }
    #home .categories-item{
        padding: 0 10px;
    }
    #home .categories-item:nth-child(odd){
        padding-top: 100px;
    }
    #home .categories-item .imgHolder:after{
        padding-bottom: 160%;
    }
    #home .categories-txt{
        opacity: 1;
    }
    #home .categories-txt span{
        display: none;
    }
    #home .sec05{
        padding-top: 20px;
    }

    #home .questionnaire {
        padding-left: 25%;
        position: relative;
    }
    #home .questionnaire-left{
        top: 100px;
        width: 35%;
    }
    #home .questionnaire-left p{
        width: 60%;
    }
    #home .questionnaire-box{
        padding: 8vw 8vw;
    }
    #home .large-txt{
        font-size: 16vw;
        bottom: 55%;
        display: none;
    }
    #home .secCate {
        margin-top: 9vh;
    }
    
    #products .sec-prod-desc {
        padding-top: 130px;
    }
    #products .sec-heading h1{
        width: 75%;
        margin-bottom: 10px;
    }
    #products .sec-prod-desc .summary h1{
        font-size: 40px;
    }
    #products .woocommerce .tabs li{
        font-size: 20px;
    }

    #aboutUs .sec-heading {
        margin-bottom: 400px;
    }
    #aboutUs .sec-heading .gallery-holder {
        flex-basis: 120%;
    }
    #aboutUs .sec-heading .gallery-holder li{
        margin-right: 15px;
    }
    #aboutUs .sec-heading p{
        width: 30%;
    }
    #aboutUs .sec-story {
        padding-bottom: 135px;
    }
    #aboutUs .sec-story h4{
        font-family: var(--lato);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }
    #aboutUs .sec-story h2{
        margin-bottom: 60px;
    }
    #aboutUs .sec-story .sec-left {
        width: 35%;
    }
    #aboutUs .sec-story .sec-right {
        width: 50%;
    }
    #aboutUs .sec-story .sec-right .img-float {
        left: -21%;
        width: 45%;
    }
    #aboutUs .sec-story .sec-right .img-stamp {
        right: -25%;
    }
    #aboutUs .sec-highlight {
        padding: 150px 15%;
        margin-bottom: 110px;
    }
    #aboutUs .sec-brand {
        padding-bottom: 100px;
    }
    #aboutUs .sec-brand .img-holder {
        width: 55%;
    }
    #aboutUs .sec-brand .desc-holder {
        width: 40%;
    }
    #aboutUs .sustainable {
        margin-bottom: 135px;
    }

    #ourSustainability .sec-heading {
        margin-bottom: 120px;
    }
    #ourSustainability .sec-heading .desc-holder {
        top: 25vh;
        width: 70%;
    }
    #ourSustainability .sec-heading .desc-holder p{
        width: 70%;
    }
    #ourSustainability .sec-positive-impact {
        margin: 0 9% 20vh 9%;
    }
    #ourSustainability .sec-positive-impact .desc-holder {
        width: 35%;
        padding-top: 12vh;
    }
    #ourSustainability .sec-positive-diff {
        margin-bottom: 80px;
    }
    #ourSustainability .item-listing {
        padding: 0 10px 35px 10px;
        overflow: hidden;
    }
    #ourSustainability .item-listing a:hover .label-txt{
        padding-top: 40%;
    }
    #ourSustainability .sec-rel-products {
        margin-bottom: 120px;
    }
    #ourSustainability .sec-rel-products h4{
        margin-bottom: 10px;
    }
    #ourSustainability .sec-rel-products .desc-holder {
        width: 100%;
        margin: 0px auto 0 auto;
    }
    #ourSustainability .sec-rel-products .desc-holder .img-stamp {
        top: -20%;
        right: -10%;
        width: 25%;
    }
    #ourSustainability .btn-readmore span:before {
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }

    #contactUs .sec-heading {
        padding-top: 30vh;
    }
    #contactUs .sec-heading .img-holder {
        position: relative;
        width: 35%;
        margin-right: 8%;
    }
    #contactUs .sec-heading .desc-holder {
        width: 60%;
    }
    #contactUs .sec-form {
        margin-bottom: 120px;
    }

    #default .sec-heading {
        margin-bottom: 120px;
    }
    #default .sec-listing,
    #default .sec-content {
        margin-bottom: 125px;
    }

    #blog .sec-heading {
        padding-top: 35vh;
        padding-bottom: 75px;
    }
    #blog .sec-inner-heading .desc-holder {
        width: 80%;
    }
    #blog .sec-features {
        margin-bottom: 125px;
    }
    #blog .sec-background {
        margin-bottom: 125px;
    }
    #blog .sec-listing {
        margin-bottom: 125px;
    }
    #blog .sec-details {
        padding: 0 9%;
        margin-bottom: 125px;
    }
    #blog .sec-details p,
    #blog .sec-details blockquote,
    #blog .sec-details .img-holder {
        margin-bottom: 35px;
    }
    #blog .sec-details blockquote{
        font-size: 30px;
    }
}

/*  --------------------------------------------------
    Ipad Potrait
    -------------------------------------------------- */
@media only screen and (max-width: 991px) {
    body {
        font-size: 14px;
    }
    header nav, .menu-header{
        height: 80px;
    }
    .nav-logo img, .menu-logo img {
        height: 40px;
    }
    
    .main-menu ul li a{
        font-size: 20px;
        padding: 0;
    }

    h1{
        font-size: 35px;
    }
    h2{
        font-size: 25px;
        margin-bottom: 20px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    h5 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    h6 {
        margin-bottom: 10px;
    }
    p{
        line-height: 1.75;
    }
    :root{
        --padding: 0px 7%;
        --top: 0px;
        --bottom: 0px;
    }
    .freetxt p {
        margin-bottom: 20px;
    }
    .input-row{
        display: block;
        margin: -14px;
    }
    .input-item{
        flex-basis: 100%;
    }
    .input-item-full{
        flex-basis: 100%;
    }
    header nav {
        height: 100px;
        padding: 0 7%;
    }
    header nav.is-sticky {
        height: 100px;
    }
    header nav.is-at-top {
        top: 0px;
    }
    .nav-logo img {
        height: 70px;
    }
    .is-hidden .nav-logo img,
    .is-sticky .nav-logo img{
        height: 70px;
    }
    .btn-menu, .btn-close {
        height: 25px;
        width: 15px;
    }
    .btn-close{
        top: 30px;
        right: 7%;
        height: 30px;
        width: 30px;
    }
    .main-menu ul{
        list-style: none;
        padding-inline-start: 0px;
        margin-bottom: 0;
        margin: -40px -20px;
    }
    .main-menu ul li{
        position: relative;
        padding: 0px 20px;
        display: flex;
        justify-content: center;
    }
    .main-menu ul li a{
        color: white;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        position: relative;
        padding: 10px;
        font-family: var(--cormorant);
        opacity: 0.8;
        transition: .2s;
    }

    .footer-row{
        display: block;
    }
    .footer-col{
        margin-bottom: 50px;
    }
    .footer-col:first-child{
        flex-basis: 100%;
    }
    .footer-col:last-child{
        flex-basis: 100%;
    }
    .footer1{
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .copyright {
        display: block;
    }
    .social img {
        height: 20px;
        margin-right: 10px;
        transition: .2s;
    }
    .social img:hover{
        opacity: 0.7;
    }
    .copyright p{
        display: inline;
    }
    .copyright p:last-child{
        display: inline;
    }
    .copyright p:last-child:before{
        content: "|";
        display: inline;
        padding: 0 10px;
    }

    .list-row {
        list-style: none;
        padding-inline-start: 0px;
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;
    }
    .btn-link{
        --h: auto;
    }
    .btn-link span{
        width: 23px;
        height: 23px;
        margin-right: 10px;
    }
    .slick-dots li{
        width: 10px;
        height: 10px;
        margin-right: 25px;
    }
    .scroll-txt{
        right: -5%;
        display: none;
    }

    .breadcrumbs{
        display: none;
    }

    .indicators {
        display: none;
    }

    .tab-navi {
        margin-bottom: 30px;
    }
    .tab-navi ul{
        /*display: block;*/
        overflow-x: scroll;
    }
    .tab-navi li{
        font-size: 25px;
        white-space: nowrap;
    }
    .tab-navi li:last-child {
        margin-right: 0;
    }
    .tab-navi li a{
        font-size: 25px;
    }

    .tile-listing li .img-holder {
        margin-bottom: 20px;
    }
    .products li h3,
    .tile-listing li h3 {
        font-size: 20px;
    }
    .products li .price,
    .tile-listing li a .price-discount {
        font-size: 18px;
    }

    .list-listing li{
        padding-bottom: 30px;
        padding-top: 30px;
        align-items: unset;
    }
    .list-listing li h3 {
        font-size: 20px;
    }
    .list-listing li a{
        align-items: unset;
    }
    .list-listing li .ls-numbering::before {
        width: 30px;
    }
    .list-listing li .ls-arrow {
        display: none;
    }


    .map-listing li{
        display: block;
    }
    .map-listing li a{
        display: block;
    }
    .map-listing li .ls-store {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .map-listing li .ls-content {
        width: 100%;
    }

    .sustainable{
        padding-left: 0;
        position: relative;
    }
    .sustainable-left{
        position: static;
        top: 0px;
        width: 100%;
    }
    .sustainable-right{
        position: relative;
        overflow: hidden;
    }
    .circle{
        width: 320px;
        height: 320px;
        top: 35%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .circle1 p{
        color: #ffffff;
        font-size: 30px;
    }
    .circle2{
        display: none;
    }
    .sustainable-row{
        display: block;
        margin: 0 0px;
    }
    .sustainable-img{
        flex-basis: 100%;
        padding: 0px;
        margin-bottom: 30px;
    }
    .sustainable-txt{
        flex-basis: 100%;
        padding: 0px;
    }
    .sustainable-txt .btn-link{
        --h: auto;
    }
    .sustainable-txt .btn-link a{
        transform: none;
    }

    .subscribe{
        display: block;
        border-top: none;
        border-bottom: none;
    }
    .input-subscribe{
        flex-basis: 100%;
        padding: 0;
        border-right: none;
    }
    .input-subscribe input{
        border-bottom: 1px solid var(--border);
        margin-bottom: 20px;
    }
    .btn-subscribe{
        flex-basis: 100%;
        position: static;
        padding: 20px 0px;
        background-color: var(--green);
    }
    .btn-subscribe img{
        filter: brightness(1000%);
    }

    .recommended-slider{
        margin-bottom: 80px;
    }

    #home .scroll-txt{
        display: none;
    }
    #home .sec01 {
        margin-bottom: 100px;
    }
    #home .sec01:before{
        display: none;
    }
    #home .sec01:after{
        display: none;
    }
    #home .introHolder h1{
        margin-bottom: 20px;
    }
    #home .introHolder h2{
        font-size: 45px;
    }
    #home .intro-bg{
        height: 100%;
        position: relative;
    }
    #home .intro-row{
        top: 60%;
        transform: translateY(-50%);
        height: auto;
        display: block;
    }
    #home .intro-left{
        max-width: 100%;
        margin-right: auto;
        margin-bottom: 50px;
    }
    #home .intro-right{
        max-width: 100%;
        position: relative;
    }
    #home .intro01 .intro-right{
        width: auto;
        height: auto;
    }
    #home .intro01 .btn-link{
        position: static;
    }
    #home .intro .btn-link a{
        transform: none;
        text-align: left;
    }
    #home .intro .btn-link a span{
        margin-left: 10px;
    }
    #home .intro02 .intro-row{
        top: 50%;
    }
    #home .intro02 .intro-left {
        display: none;
    }
    #home .intro02 .intro-right{
        z-index: 2;
    }
    #home .intro02 .btn-link{
        position: static;
        margin-top: 20px;
    }
    #home .style-title{
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 0;
        display: block;
        border-top: none;
        border-bottom: none;
        margin-bottom: 20px;
    }
    #home .style-title h6{
        font-family: var(--cormorant);
        font-size: 45px;
        letter-spacing: 0;
        text-transform: capitalize;
        width: 80%;
    }
    #home .style-title h6 span{
        display: none;
    }
    #home .style-slider{
        left: 0px;
    }
    #home .style-slider .slick-dots{
        width: 100%;
        padding: 50px 0px;
        bottom: -90px;
    }
    #home .style-slider .slick-dots:before{
        display: none;
    }
    #home .style-item{
        --height: auto;
        padding: 0px;
    }
    #home .style-box{
        height: 250px;
        padding: 25px;
    }
    #home .style-box h6{
        margin-bottom: 20px;
    }
    #home .style-slider .slick-prev {
        right: 50px;
        bottom: -40px;
    }
    #home .style-slider .slick-next {
        right: 0px;
        bottom: -40px;
    }
    #home .product-slider{
        overflow: hidden;
    }
    #home .product-slider .slick-list{
        margin: 0 -6px;
    }
    #home .product-item{
        padding: 0 6px;
    }
    #home .sec02{
        margin-bottom: 80px;
    }
    #home .sec03{
        padding: 0;
        margin-bottom: 100px;
    }
    #home .sec03 .slick-dots {
        margin-top: 50px;
    }
    #home .categories{
        padding: var(--padding);
    }
    #home .categories-left{
        position: static;
        top: auto;
        width: 100%;
        margin-bottom: 30px;
    }
    #home .categories-left h2 span{
        display: inline;
    }
    #home .categories-left p{
        width: 100%;
    }
    #home .categories-nav{
        display: none;
    }
    #home .categories-nav{
        position: static;
        margin-top: 30px;
    }
    #home .categories-slider .slick-list{
        padding: 0;
        margin: 0 -5px;
    }
    #home .categories-item{
        padding: 0 5px;
    }
    #home .categories-item:nth-child(odd){
        padding-top: 0px;
    }
    #home .categories-item .imgHolder:after{
        padding-bottom: 130%;
    }
    #home .categories-item .categories-txt{
        opacity: 1;
    }
    #home .sec04{
        margin-bottom: 60px;
    }
    #home .sec05{
        padding-top: 20px;
        padding-bottom: 50px;
        margin-bottom: 80px;
    }
    #home .sec06{
        margin-bottom: 100px;
    }
    #home .questionnaire {
        padding-left: 0;
        position: static;
    }
    #home .questionnaire-left{
        position: static;
        top: 0px;
        width: 100%;
        margin-bottom: 50px;
    }
    #home .questionnaire-left h6{
        margin-bottom: 10px;
    }
    #home .questionnaire-left p{
        width: 100%;
    }
    #home .questionnaire-box{
        padding: 45px;
    }
    #home .questionnaire-box:before, .questionnaire-box:after{
        top: 20px;
        left: 20px;
        bottom: 20px;
        right: 20px;
        transform: none;
        width: auto;
        height: auto;
    }
    #home .questionnaire-box:after{
        width: auto;
        height: auto;
        top: 25px;
        left: 25px;
        bottom: 25px;
        right: 25px
    }
    #home .btn-next {
        margin-top: 50px;
    }
    #home .sec07{
        margin-bottom: 100px;
    }
    #home .sec08{
        margin-bottom: 100px;
    }
    #home .store{
        padding-left: 0;
        position: relative;
    }
    #home .store .circle{
        top: 0;
        left: 80%;
        display: none;
    }
    #home .large-txt{
        display: none;
    }
    #home .store-left{
        position: static;
        top: auto;
        left: 0;
        width: 100%;
        display: none;
    }
    #home .store-right{
        position: relative;
        padding-right: 0;
    }
    #home .store-right .imgHolder {
        margin-bottom: 20px;
    }
    #home .store-right .imgHolder:after{
        padding-bottom: 55%;
    }
    #home .store-txt{
        position: static;
        bottom: auto;
        left: auto;
        width: 100%;
    }
    #home .store-right .btn-link {
        --h: auto;
        margin-left: 0;
        margin-top: 30px;
    }
    #home .store-right .btn-link a {
        transform: none;
    }
    #home .sec09{
        margin-bottom: 100px;
    }
    #home .secCate {
        margin-top: 170px;
    }
    #home .secCate .categories-right {
        display: none;
    }
    #home .au-listing {
        display: flex;
    }

    #AUStyle .au-sec01 {
        margin-bottom: 100px;
    }
    #AUStyle .au-intro h1{
        font-size: 45px;
    }
    #AUStyle .au-intro p{
        width: 100%;
    }
    #AUStyle .au-intro-left{
        max-width: 8    0%;
    }
    #AUStyle .au-intro01 .au-intro-bg img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #AUStyle .the-indicator {
        display: none;
    }
    #AUStyle .sec-listing {
        padding-bottom: 80px;
    }

    #products .sec-listing {
        padding-bottom: 80px;
    }
    #products .products,
    #products .tile-listing {
        margin-bottom: 50px;
    }
    #products .sec-prod-desc {
    }
    #products .sec-heading {
        padding-top: 170px;
    }
    #products .sec-heading h1{
        width: 100%;
        margin-bottom: 50px;
    }
    #products .sec-prod-desc .woocommerce-product-gallery {
        width: 55%;
    }
    #products .sec-prod-desc .summary {
        width: 40%;
        padding-top: 0;
    }
    #products .sec-prod-desc .summary h1{
        width: 100%;
        margin-bottom: 30px;
        font-size: 45px;
    }
    #products .sec-prod-desc .product_description {
        width: 100%;
    }
    #products .sec-prod-desc .summary .price {
        position: static;
        top: auto;
        right: 0;
        font-size: 18px;
        color: #144b55;
    }
    #products .sec-prod-desc .woocommerce-Tabs-panel h2{
        display: none;
    }
    #products .woocommerce .woocommerce-tabs {
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid #d8ded7;
    }
    #products .woocommerce .tabs {
        width: auto;
        padding: 0;
        margin-bottom: 50px;
        overflow-x: scroll;
        display: flex;
    }
    #products .woocommerce .tabs li{
        border: none;
        background-color: transparent;
        padding: 0 35px 0 10px;
        font-weight: 400;
        font-family: var(--cormorant);
        font-size: 25px;
        color: #144b55;
        white-space: nowrap;
    }
    #products .woocommerce .tabs li a{
        font-weight: 400;
        color: #144b55;
        text-decoration: none;
    }
    #products .woocommerce .tabs li a.active{
        text-decoration: underline;
    }

    #aboutUs .sec-heading {
        min-height: 55vh;
        padding-top: 220px;
        padding-bottom: 70px;
        margin-bottom: 100px;
    }
    #aboutUs .sec-heading h1{
        width: 100%;
    }
    #aboutUs .sec-heading p{
        width: 100%;
    }
    #aboutUs .sec-heading .gallery-holder {
        position: absolute;
        z-index: 2;
        bottom: 0%;
        left: 0;
        right: 0;
        width: 200%;
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
        overflow-x: scroll;
        display: none;
    }
    #aboutUs .sec-heading .gallery-holder li{
        margin-right: 10px;
    }
    #aboutUs .sec-heading .gallery-holder li:nth-child(3){
        width: 100px;
    }
    #aboutUs .sec-heading .gallery-holder li:nth-child(2),
    #aboutUs .sec-heading .gallery-holder li:nth-child(4){
        width: 80px;
    }
    #aboutUs .sec-heading .gallery-holder li:nth-child(1),
    #aboutUs .sec-heading .gallery-holder li:nth-child(5){
        width: 50px;
    }
    #aboutUs .sec-heading .gallery-holder li:last-child{
        margin-right: 0px;
    }
    #aboutUs .sec-story {
        padding-bottom: 100px;
        display: block;
    }
    #aboutUs .sec-story h2{
        letter-spacing: 1px;
        margin-bottom: 30px;
    }
    #aboutUs .sec-story .sec-left {
        width: 100%;
        margin-bottom: 30px;
    }
    #aboutUs .sec-story .sec-right {
        position: relative;
        width: 100%;
    }
    #aboutUs .sec-story .sec-right .img-float {
        position: absolute;
        z-index: 2;
        top: 25%;
        left: -25%;
        width: 50%;
        display: none;
    }
    #aboutUs .sec-story .sec-right .img-stamp {
        top: -10%;
        right: -25%;
    }
    #aboutUs .sec-highlight {
        padding: 100px 7%;
        margin-bottom: 100px;
    }
    #aboutUs .sec-highlight p{
        font-family: var(--lato);
        font-size: 14px;
        line-height: 1.75;
    }
    #aboutUs .sec-highlight .btn-readmore span{
        margin: 10px 20px 10px 10px;
    }
    #aboutUs .sec-brand {
        padding-bottom: 100px;
        display: block;
    }
    #aboutUs .sec-brand .img-holder {
        width: 100%;
        margin-bottom: 50px;
    }
    #aboutUs .sec-brand .desc-holder {
        width: 100%;
    }
    #aboutUs .sustainable {
        margin-bottom: 100px;
    }

    #ourSustainability .sec-heading {
        margin-bottom: 100px;
        height: var(--fullheight);
    }
    #ourSustainability .sec-heading .desc-holder {
        top: 35vh;
        width: 100%;
    }
    #ourSustainability .sec-heading .desc-holder p{
        width: 60%;
    }
    #ourSustainability .sec-positive-impact {
        margin: 0 7% 100px 7%;
    }
    #ourSustainability .sec-positive-impact h2 {
        margin-bottom: 20px;
    }
    #ourSustainability .sec-positive-impact .img-group {
        visibility: hidden;
        display: none;
    }
    #ourSustainability .sec-positive-impact .img-group:nth-child(1) {
        display: none;
    }
    #ourSustainability .sec-positive-impact .desc-holder {
        width: 100%;
        margin: 0 auto;
        padding-top: 0;
        text-align: center;
    }
    #ourSustainability .sec-positive-diff {
        padding: 0 0 0 7%;
        margin-bottom: 100px;
        display: block;
    }
    #ourSustainability .sec-positive-diff .sec-left {
        width: auto;
        padding-right: 7%;
    }
    #ourSustainability .sec-positive-diff .sec-right {
        width: 100%;
        margin-left: -15px;
    }
    #ourSustainability .item-listing {
        padding: 0 10px 35px 10px;
        overflow: hidden;
    }
    #ourSustainability .item-listing .imgHolder:after{
        padding-bottom: 130%;
    }
    #ourSustainability .label-txt{
        padding: 15% 25px 25px 25px; 
    }
    #ourSustainability .item-listing a:hover .label-txt{
        padding-top: 15%;
    }
    #ourSustainability .item-listing a p{
        opacity: 1;
    }
    #ourSustainability .sec-rel-products {
        margin-bottom: 100px;
    }
    #ourSustainability .sec-rel-products .desc-holder {
        width: 100%;
        margin: 0;
    }
    #ourSustainability .sec-rel-products .desc-holder .img-holder{
        width: 100%;
        margin-bottom: 30px;
    }
    #ourSustainability .sec-rel-products .desc-holder .img-stamp {
        top: -15%;
        right: -35%;
        width: 50%;
    }
    #ourSustainability .sec-rel-products .desc-holder .txt-holder {
        width: 100%;
    }

    #contactUs .sec-heading {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    #contactUs .sec-heading h4 {
        margin-bottom: 10px;
    }
    
    #contactUs .sec-heading .img-stamp {
        right: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 80%;
        font-size: 30px;
        display: none;
    }
    #contactUs .sec-heading .img-stamp .circle-text {
        width: 100%;
        transform: scale(0.5);
    }
    #contactUs .sec-heading .add-holder {
        display: block;
    }
    #contactUs .sec-heading .add-holder .ls-add {
        width: 100%;
    }
    #contactUs .sec-form {
        margin-bottom: 100px;
    }

    #default .sec-heading {
        height: auto;
        min-height: 55vh;
        margin-bottom: 100px;
        padding-top: 120px;
    }
    #default .sec-heading h1{
        padding-top: 50px;
        margin-bottom: 20px;
    }
    #default .sec-heading h4 {
        margin-bottom: 10px;
    }
    #default .sec-heading .bg-holder {
        width: auto;
        position: static;
        margin: var(--padding);
    }
    #default .sec-heading .desc-holder {
        position: relative;
        top: auto;
        width: 100%;
        margin:  0 0 100px 0px;
        bottom: auto;
    }
    #default .sec-heading .img-holder {
        width: 100%;
        margin-right: 0;
        float: none;
    }
    #default .sec-heading .btn-more {
        margin-top: 35px;
    }
    #default .sec-listing,
    #default .sec-content {
        margin-bottom: 100px;
    }
    #default .sec-listing h3{
        margin-bottom: 30px;
    }
    #default .sec-listing .list-listing {
        margin-bottom: 100px;
    }
    #default .sec-listing .list-listing h3{
        margin-bottom: 0;
    }
    #default .sec-listing .list-listing li{
        align-items: unset;
        display: flex;
    }
    #default .sec-listing .list-listing li a{
        margin-bottom: 40px;
        display: flex;
    }

    #blog .sec-heading {
        height: auto;
        padding-bottom: 50px;
        padding-top: 170px;
    }
    #blog .sec-heading h1,
    #blog .sec-heading p{
        width: 100%;
        margin-bottom: 30px;
    }
    #blog .sec-inner-heading {
        margin-bottom: 100px;
    }
    #blog .sec-inner-heading .desc-holder {
        width: 100%;
    }
    #blog .sec-inner-heading .bg-holder {
        height: var(--fullheight);
    }
    #blog .sec-features {
        margin-bottom: 50px;
    }
    #blog .sec-features li h3{
        font-size: 20px;
    }
    #blog .sec-features .img-holder {
        margin-bottom: 20px;
    }
    #blog .sec-background {
        height: 50vh;
        margin-bottom: 70px;
    }
    #blog .sec-listing {
        margin-bottom: 100px;
    }
    #blog .sec-details {
        padding: var(--padding);
        margin-bottom: 100px;
    }
    #blog .sec-details blockquote{
        font-size: 25px;
    }
    #blog .sec-details .brief-holder {
        margin-bottom: 50px;
    }
    #blog .sec-details .rel-articles {
        margin-top: 100px;
    }
    #blog .sec-details .rel-articles h3{
        margin-bottom: 0px;
    }
}

/*  --------------------------------------------------
    Mobile Potrait
    -------------------------------------------------- */
@media only screen and (max-width: 600px) {
    h1{
        font-size: 40px;
        margin-bottom: 30px;
    }
    h2{
        font-size: 30px;
        margin-bottom: 20px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    h5 {
        font-size: 15px;
        margin-bottom: 20px;
    }
    h6 {
        margin-bottom: 10px;
    }
    p{
        line-height: 1.75;
    }

    #preloader .loader img {
        height: 90px;
    }
    .main-menu ul li a{
        font-size: 18px;
    }

    .scroll-txt {
        display: none;
    }

    #home .categories-txt span{
        display: none;
    }

    .products li,
    .tile-listing li{
        width: calc(50% - 20px);
        margin: 0 10px 15% 10px;
    }
    .tile-listing li .img-holder {
        margin-bottom: 20px;
    }

    .list-listing {
        border-top: 1px solid #d8ded7;
    }
    .list-listing h3 span{
        margin-bottom: 10px;
    }
    .list-listing li{
        padding-bottom: 30px;
        padding-top: 30px;
        display: block;
    }
    .list-listing li a{
        display: block;
    }
    .list-listing li .ls-numbering::before {
        width: auto;
        display: none;
    }
    .list-listing li .ls-content {
        width: 100%;
        margin-bottom: 10px;
    }

    #blog .sec-features {
        margin-bottom: 20px;
    }
    #blog .sec-features ul{
        display: block;
    }
    #blog .sec-features li{
        width: 100%;
        margin-bottom: 50px;
    }

    #home .introHolder h1,
    #home .introHolder h2{
        font-size: 40px;
    }
    #home .style-slider .slick-prev {
        right: 50px;
        bottom: -50px;
        width: 35px;
        height: 35px;
    }
    #home .style-slider .slick-next {
        right: 0px;
        bottom: -50px;
        width: 35px;
        height: 35px;
    }
    #home .style-title h6{
        font-size: 40px;
    }
    #home .au-listing {
        margin: 0;
    }
    #home .au-listing h3{
        font-weight: 800;
        margin-bottom: 15px;
    }
    #home .secCate .tile-listing li{
        width: 100%;
        margin: 0 0 15% 0px;
    }
    #home .secCate .tile-listing li .img-holder {
        margin-bottom: 20px;
    }

    #AUStyle .au-intro h1{
        font-size: 40px;
    }
    #AUStyle .au-intro-left{
        max-width: 100%;
    }

    #products .sec-prod-desc .woocommerce-product-gallery {
        width: 100%;
        float: none;
        margin-bottom: 50px;
    }
    #products .sec-prod-desc .summary {
        width: 100%;
        padding-bottom: 30px;
        padding-top: 0;
        float: none;
        border-bottom: 1px solid #d8ded7;
    }
    #products .sec-prod-desc .summary h1{
        font-size: 30px;
    }
    #products .sec-prod-desc .summary h2 {
        margin-bottom: 10px;
    }
    #products .sec-prod-desc .btn-locatestore a{
      width: 100%;
    }

    .rel-articles .list-listing li .ls-arrow{
        display: none;
    }

    #ourSustainability .sec-heading .bg-holder {
        display: none;
    }
    #ourSustainability .sec-heading .desc-holder p {
        width: 90%;
    }

    #contactUs .sec-heading {
        padding-top: 120px;
        padding-bottom: 120px;
        display: block;
    }
    #contactUs .sec-heading h4 {
        margin-bottom: 10px;
    }
    #contactUs .sec-heading .img-holder {
        position: relative;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    #contactUs .sec-heading .desc-holder {
        width: 100%;
        padding-top: 30px;
    }
    #contactUs .sec-heading .add-holder .ls-add:first-child {
      margin-bottom: 50px;
    }
}


/*  --------------------------------------------------
    Mobile Landscape
    -------------------------------------------------- */
@media only screen and (max-height: 600px) {
    h1{
        font-size: 35px;
    }

    .main-menu ul li a {
        padding: 5px;
    }

    #home .introHolder h2 {
        font-size: 35px;
    }
    #home .style-title h6 {
        font-size: 35px;
    }
    #home .style-box {
        height: 180px;
        padding: 15px;
    }
    #home .intro02 .btn-link {
        margin-top: 0px;
    }
    #home .style-slider .slick-dots {
        width: 100%;
        padding: 50px 0px;
        bottom: -80px;
    }

    #AUStyle .au-intro h1 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    #products .sec-prod-desc .summary h1 {
        font-size: 25px;
    }

    #ourSustainability .sec-heading {
        height: 150vh;
    }
    #ourSustainability .sec-heading .desc-holder {
        width: 75%;
    }
}