/*
    Theme Name: Sperling Starter
    Theme URI: https://www.sperlinginteractive.com
    Description: Sperling Interactive WordPress Starter Theme
    Version: 1.0
    Author: Sperling Interactive
  Theme URI: https://www.sperlinginteractive.com
*/
/*------------------------------------*\

\*------------------------------------*/

/*------------------------------------*\
    ROOT
\*------------------------------------*/
:root {
    --darkblue: #121E26;
    --darkteal: #273043;
    --lightblue: #cdd2dc;
    --lightgray: rgba(205, 210, 220, 0.34);
    --gray: #f5f5f5;
    --brown: #886E57;
    --midbrown: #966A43;
    --lightbrown: #DAD3CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
    box-sizing: border-box;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: #273043;
    /* font: 400 11px/1.4 "nexa-text", sans-serif; */

    font-family: "nexa-text", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    background: #EEEBE8;
    overflow-x: hidden;
}

/* clear */
.clear:before,
.clear:after {
    content: " ";
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

/* Lightspeed Lazy load fade in */
img[data-lazyloaded] {
    opacity: 0;
}

img.litespeed-loaded {
    -webkit-transition: opacity 0.5s linear 0.2s;
    -moz-transition: opacity 0.5s linear 0.2s;
    transition: opacity 0.5s linear 0.2s;
    opacity: 1;
}

a {
    text-decoration: none;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.4s ease;
    color: var(--brown);
}

a:hover {
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input:focus {
    border: 1px solid #04a4cc;
    outline: 0;
}

p,
ul,
ol {
    font-size: 1.8rem;
    line-height: 1.6;
}

h1 {
    font-size: 3.8rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 2rem 0;
    font-family: orpheuspro, serif;
}

blockquote {
    margin: 25px 0;
    padding: 25px 0 25px 5vw;
    font-style: italic;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-weight: 700;
}

/*------------------------------------*\
    GLOBAL ELEMENTS
\*------------------------------------*/
.contactUs__global {
    position: fixed;
    z-index: 10;
    bottom: 30px;
    right: 35px;
    border-radius: 500px;
    padding: 4px;
    background-color: #121E26;
    box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.25);
    transition: scale 0.4s ease;
}

.contactUs__inner {
    background-color: #121E26!important;
    border: 1px solid #966A43;
    box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.25);
}

.contactUs__global:hover {
    scale: 1.03;
}
.contactUs__global:hover .contactUs__inner {
    color: #fff!important;
}


@media only screen and (max-width: 767px) {
    .contactUs__global {    
        right: 20px;
        bottom: 15px;
    }
    .contactUs__inner.button {
        font-size: 3.75vw;
        padding: 1rem 1.7em;
    }
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1280px;
    align-self: center;
    flex: 1 auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 2.5rem;
}


@media only screen and (max-width: 767px) {
    .container {
        padding: 0 1.3rem;
    }
}

.container.medium {
    max-width: 1450px;
}

.container.wide {
    max-width: 1600px;
}

.margined-section {
    margin: 5rem 0;
}

.padded-section {
    padding: 5rem 0;
}

.lightboxOverlay {
    width: 100% !important;
}

.overflow-hidden {
    overflow-x: hidden;
}

.row-reversed {
    flex-direction: column;
}

.desktop {
    display: none;
}

.tablet {
    display: block;
}

.section-title {
    font-size: 4rem;
}

.border-bottom {
    border-bottom: 1px solid var(--darkteal);
}

.rounded-image {
    border-radius: 50%;
}

.content.thin {
    max-width: 950px;
    margin: 0 auto;
}

.content.large-font * {
    font-size: 2.5rem;
}

.content.large-font li,
.content.large-font p,
.content.large-font a {
    padding: 1rem 0;
}

.content.bold * {
    font-weight: bold;
}

.blue-header h1,
.blue-header h2,
.blue-header h3,
.blue-header h4,
.blue-header h5,
.blue-header h6 {
    color: var(--brown);
    max-width: 1080px;
    margin: 2rem auto;
}

.brown-header h1,
.brown-header h2,
.brown-header h3,
.brown-header h4,
.brown-header h5,
.brown-header h6 {
    color: var(--brown);
    max-width: 1080px;
    margin: 2rem auto;
    font-weight: 600;
}

.box-shadow {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

.rounded {
    border-radius: 5px;
}

.rounded-10 {
    border-radius: 10px;
}

.line {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.line:after {
    content: "";
    position: relative;
    border-bottom: 1px solid var(--brown);
    flex: 1 0 auto;
    margin-left: 3rem;
}

/* Notification Banner */

#banner {
    background-color: var(--brown);
}

#banner * {
    color: #fff;
    text-align: center;
}

#banner a {
    color: #fff !important;
    opacity: 1;
    text-decoration: underline;
    transition: 0.4s ease;
}

#banner a:hover {
    opacity: 0.6;
}

/* header */
.header {
    display: flex;
    flex-direction: column;
    background-color: #121E26;
    color: #fff;
}


.header__top {
    display: flex;
    justify-content: space-between;
    padding: 25px 0px;
    min-height: 130px;
}

.header__top-left {
    display: flex;
    flex-direction: column;
    height: 120px;
    justify-content: space-between;
}

.header__top-right {
    display: flex;
    flex-direction: column;
    height: 120px;
    justify-content: space-between;
    align-items: flex-end;
}

.header__top-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header__top-link {
    color: #889298;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;

    font-family: "nexa-text", sans-serif;
}

.header__top-phone {
    display: flex;
    align-items: center;
}


.header__top-phone a {
    display: flex;
}

.logo-img {
    backface-visibility: hidden;
    object-fit: contain;
    vertical-align: super;
}

.header__top-logo a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
}

.custom-style-menu a {
    line-height: 30px!important;
}

@media screen and (max-width: 1200px) {
    .header {
        background: linear-gradient(180deg, #1F303B -10.79%, #121E26 27.99%);
    }

    .header .header-top-line {
        display: none;
    }

    .header .header__top {
        padding: 60px 0 25px;
    }

    .header .header__top-left {
        justify-content: center;
        height: 70px;
    }

    
    .header .header__top-left .header__top-phone .header__top-link { 
        display: none;
    }

    .header .header__top-left .header__top-phone svg { 
        width: 25px;
        height: 25px;
    }

    .header .header__top-logo a {
        width: 160px;
    }

    .header__top-right {
        display: none;
    }

    .header #responsive-menu-pro-button {
        width: 25px;
        height: 25px;
    }

    .header #responsive-menu-pro-button .responsive-menu-pro-inner, 
    .header #responsive-menu-pro-button .responsive-menu-pro-inner::before,
    .header #responsive-menu-pro-button .responsive-menu-pro-inner::after {
        background-color: #C6BDB5!important;
    }
}

/* nav */
.nav {
}

/* sidebar */
.sidebar {
}

.pagination {
    text-align: center;
    width: 100%;
    padding: 3rem 0;
}

.pagination .page-numbers {
    font-size: 2.4rem;
    padding: 0 0.3rem;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.white {
    color: #fff;
}

.darkteal {
    color: var(--darkteal);
}

.darkteal-bg {
    background-color: var(--darkteal);
}

.blue-bg {
    background-color: #121E26;
}

.blue-bg *:not(.button) {
    color: #fff;
}

.lightgray {
    color: var(--lightgray);
}

.lightgray-bg {
    background-color: var(--lightgray);
}

.lightblue-bg {
    background-color: #EEEBE8;
}

.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-block;
    padding: 1.4rem 3.2rem;
    /* font-size: 15px;
    font-weight: bold;
    text-transform: uppercase; */
    /* border-radius: 25px;
    color: #fff; */
    border-radius: 75px;

    color: #FFF;
    text-align: center;
    font-family: "nexa-text", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    background-color: #966A43;
}

.button.small {
    font-size: 1.4rem;
    padding: 1rem 2.5rem;
}

.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #fff;
    color: #966A43;
}

.button.wide {
    padding: 1rem 5rem;
}

/* .button.dark-teal {
    background-color: var(--darkteal) !important;
    color: #fff;
} */

.slick-slider,
.card-slider,
.gallery-slider-extended-offset {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    padding: 0 2.5rem;
}

.gallery-slider,
.gallery-slider-extended {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.slick-slider .slick-prev,
.slick-slider .slick-next,
.card-slider .slick-prev,
.card-slider .slick-next,
.gallery-slider-extended .slick-prev,
.gallery-slider-extended .slick-next,
.gallery-slider-extended-offset .slick-prev,
.gallery-slider-extended-offset .slick-next {
    z-index: 2;
    top: 45%;
    width: 40px;
    height: 50px;
}

.slick-prev {
    left: -15px;
}

.slick-next {
    right: -15px;
}

/* .card-slider .slick-prev,
.gallery-slider-extended .slick-prev, 
.gallery-slider-extended-offset .slick-prev {
    left: -5px;
}

.card-slider .slick-next,
.gallery-slider-extended .slick-next,
.gallery-slider-extended-offset .slick-next   {
    right: 15px;
} */

.slick-slider .slick-prev:before,
.card-slider .slick-prev:before,
.gallery-slider-extended .slick-prev:before,
.gallery-slider-extended-offset .slick-prev:before {
    content: "\f053";
    font-family: "Font Awesome 6 Pro";
    font-weight: bold;
}

.slick-slider .slick-next:before,
.card-slider .slick-next:before,
.gallery-slider-extended .slick-next:before,
.gallery-slider-extended-offset .slick-next:before {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    font-weight: bold;
}

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before,
.card-slider .slick-prev:before,
.card-slider .slick-next:before,
.gallery-slider-extended .slick-prev:before,
.gallery-slider-extended .slick-next:before,
.gallery-slider-extended-offset .slick-prev:before,
.gallery-slider-extended-offset .slick-next:before {
    opacity: 1;
    color: var(--brown);
    font-size: 5rem;
}

.slick-slider.slick-initialized,
.card-slider.slick-initialized,
.gallery-slider.slick-initialized,
.gallery-slider-extended.slick-initialized,
.gallery-slider-extended-offset.slick-initialized {
    opacity: 1;
    visibility: visible;
}

/* .gallery-arrows .slide {
    margin: 0 1rem;
} */

.card-slider .slick-track {
    display: flex;
}

.card-slider .card-slide {
    height: inherit !important;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    padding: 2rem 0;
}

.card-slide.thin .card p,
.card-slide.thin .card li {
    font-size: 1.5rem;
}

.card-slide.thin .card__description * {
    color: var(--darkteal);
}

.card-slide.thin .card__footer {
    border-top: none;
}

.card-slide.thin a {
    height: 100%;
}

.card-slide.thin .card .firmness-labels label {
    color: var(--brown);
    font-size: 1.4rem;
}

.card {
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin: 1rem 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card__image {
    position: relative;
}

/* .card__image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(205, 210, 220, .15);
    background-blend-mode: overlay;
}  */

.card__image:after {
    content: "";
    position: absolute;
    background: linear-gradient(183deg, #ffffff14 0%, #f0f1f225 65%, #2e3344 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card__image img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
}

.card__image h3 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: 0 auto;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    z-index: 2;
}

.card__description {
    padding: 1rem 2rem;
}

.card__footer {
    border-top: 1px solid #cccccc;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

.flexed-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.border-top {
    border-top: 3px solid var(--gray);
}

.border-right-lightblue {
    border-right: 2px solid var(--lightblue);
}

.gallery-slider .slick-dots {
    bottom: -35px;
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/

.header-top-line {
    background: #966A43;
    height: 4px;
}


.nav ul {
    list-style-type: none;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.nav ul li.menu-item-has-children {
    position: relative;
}

.nav ul.mega-sub-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    display: block !important;
}

#mega-menu-item-53071 ul.mega-sub-menu {
    padding-left: 0 !important;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
    margin: 0 !important;
}

.mega-menu-link {
    letter-spacing: 0.7px;
}

.mega-indicator {
    display: none !important;   
}

ul.mega-sub-menu .mega-menu-title {
    color: var(--brown);
    padding: 1rem 0;
}

.nav ul.mega-sub-menu li.widget_media_image {
    padding: 0 !important;
}

.nav-wrapper {
    margin-bottom: 0 !important;
    position: relative;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-end {
    justify-content: flex-end;
}

.search-block {
    /* position: relative; */
    /* opacity: 0; */
    /* visibility: hidden; */
    border-left: 1px solid var(--lightgray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.contact-block p {
    margin: 5px 0;
}

.search-wrapper {
    position: absolute;
    right: 50px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    width: calc(100% - 50px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.search-wrapper.active {
    width: calc(100% - 50px);
    opacity: 1;
    visibility: visible;
}

.search-input {
    width: 100%;
    min-height: 25px;
    font-size: 1.8rem;
    padding: 0.2rem 1.2rem;
}

.search-input form {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #fff;
    /* background-color: rgba(205, 210, 220, 1); */
}

.search-input form input {
    width: 100%;
    min-height: 30px;
    font-size: 1.8rem;
    padding: 1rem 1.2rem;
    border: none;
    color: #444;
    background-color: #fff;

    /* background-color: rgba(205, 210, 220, 1); */
}

.search-input form button {
    font-size: 1.6rem;
    min-height: 34px;
    background: none;
    border: none;
    color: var(--darkteal);
    padding: 0.8rem 1rem;
}

.search-input form button i {
    font-size: 2.5rem;
    color: var(--darkteal);
    font-weight: 900;
}

.search-toggle {
    font-size: 2.5rem;
    padding: 0 0 0 1.5rem;
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.search-toggle i {
    transition: 0.4s ease;
    font-weight: 400;
    font-size: 2.8rem;
}

.search-toggle.active i:before {
    content: "\f2ee";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
}

.sub-header {
    background-color: #fff;
}

.sub-header * {
    color: var(--darkteal);
}

.header-block {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.header-block p {
    color: #5B6267;
    font-family: "nexa-text", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.mobile-menu {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu .responsive-menu-pro-subarrow {
    display: flex;
    height: 100%;
    align-items: center;
}

.mega-menu-description {
    display: none !important;
}

/*------------------------------------*\
    COLLETIONS
\*------------------------------------*/

.collection-block {
}

.collection-block .content {
    max-width: 748px;
    margin: 0 auto;
}

.collection-block.wide .content {
    max-width: 100%;
    padding: 3rem 3rem 4rem;
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto;
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.cloud-accent {
    position: relative;
}

.cloud-accent:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 55%;
    background-image: url(img/cloud.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: -10%;
    left: 1%;
}

.history-image.second {
    position: relative;
    text-align: right;
    margin-top: -30%;
    right: -10%;
}

/*------------------------------------*\
    HANDCRAFTED
\*------------------------------------*/

.handcrafted-media {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 10px;
}

.handcrafted-media .img-hide {
    display: none;
    /* opacity: 0;
    visibility: hidden;
    transform: 0.4s ease; */
}

.handcrafted-media .image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* min-height: 500px; */
    height: 100%;
}

.handcrafted-media video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*------------------------------------*\
    SHOWROOMS
\*------------------------------------*/


section.showrooms {
    margin-top: auto;
    margin-bottom: 100px;
}


section.showrooms.showrooms--contact-us {
    margin: 5rem 0!important;
}

section.showrooms.showrooms--contact-us .lined-header {
    margin-bottom: 5rem;
}

section.showrooms .showrooms__inner {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #FFF;
    align-items: center;
    padding: 90px 65px 70px;
}


section.showrooms .showrooms__inner h2 {
    color: #000;
    text-align: center;
    font-family: orpheuspro, serif;
    font-size: 65px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    margin: 0;
}

section.showrooms .brown-header h3 {
    font-size: 2.4rem;
    margin: 4.8rem 0 5.1rem;
    font-weight: 600;
}

section.showrooms .content.brown-header {
    text-align: center;
}

.showrooms__grid {
    gap: 90px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.showroom-block {
    margin: 1rem 0 4rem;
}

.showroom-block--img img {
    max-height: 150px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 10px;
}

.showroom-block h3 {
    font-size: 2.4rem;
    margin: 32px 0;
}

.showroom-block a {
    color: var(--darkteal);
}

.contact-details h3 {
    color: #000;
    font-family: orpheuspro, serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.contact-details .content {
    display: flex;
}

.contact-details .contact-details--info {
    display: flex;
    flex-direction: column;
}


.contact-details .content .address-label,
.contact-details .content strong {
    color: #414141;
    font-family: "nexa-text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.48px;
}


.contact-details .content a, 
.contact-details .content p {
    color: #414141;
    font-family: "nexa-text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
    margin: 0;
}


.contact-details .content .link {
    text-decoration: none;
    line-height: 24px;
    text-wrap: balance;
}

.content--left,
.content--right {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.content--left {
    padding-right: 30px;
}
.content--right {
    gap: 20px;
}


.contact-details .content .fax {
    margin-top: 20px;
}

.contact-details .content .address {
    margin-bottom: 20px;
}

.showroom__container {
    padding: 5rem 0;
}

.showroom__wrapper .showroom__container:nth-of-type(even) .columns {
    flex-direction: row-reverse;
}

.location-wrapper {
    border-bottom: 2px solid var(--lightblue);
    border-right: none;
}

.location-block {
    padding-right: 0;
}

.location-block .contact-details {
    padding-right: 2rem;
}

.location-block .showroom-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and  (max-width: 991px) {
    section.showrooms .showrooms__inner {
        padding: 38px 28px;
    }

    section.showrooms .brown-header h3 {
        font-size: 19px;
        text-align: left;
        margin: 20px 0 50px;
    }

    .showrooms__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .showroom-block {
        margin: 1rem 0;
    }

    .showroom-block--img img {
        max-height: 110px;
    }

    section.showrooms {
        margin-bottom: 75px;
    }
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/

/* footer */
.footer {
    background: var(--darkblue);
    padding: 8px 0 40px;
}

.footer .logo-img {
    vertical-align: bottom;
}

.footer .container {
    padding: 0;
}

.footer-top-line {
    background: #966A43;
    height: 3px;
}
.footer .header__top {
    padding: 60px 0 25px;
}

.footer .header__top-left .footer__bottom-info {
    padding-left: 20px;
}

.copyright {
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
}

.copyright p {
    text-transform: uppercase;
}

.footer .footer-nav ul {
    display: inline-block;
    column-count: 4;
    width: 100%;
    list-style-type: none;
    margin: 0 0 2rem;
}

.footer .footer-nav ul li a {
    display: inline-block;
    padding: 1rem 1rem 2rem;
    color: var(--darkteal);
    font-weight: 600;
}

.footer .address {
    padding-left: 20px;
}

.footer .address .address-title {
    color: #FFF;
}

.footer .address p {
    color: #889298;
    font-family: "nexa-text", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer .footer__bottom-info {
    min-height: 55px;
}

.footer .social {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding-left: 20px;
}

.footer-block p {
    margin: 5px 0;
}

.footer-block a {
    color: var(--darkteal);
    opacity: 1;
}

.footer-block a:hover {
    opacity: 0.6;
}

.footer .social li {
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
}

.footer .social li:last-child {
    padding-right: 20px;
}

.footer .social li.facebook a {
    color: #4267b2;
}

.footer .social li.instagram a {
    color: #e1306c;
}

.footer .social li.twitter a {
    color: #000;
}

.footer .social li.youtube a {
    color: #ff0000;
}
.footer .social li a {
    font-size: 3rem;
    color: var(--darkteal);
    opacity: 1;
    display: flex;
}

.footer .social li a:hover {
    opacity: 0.6;
}

.footer .footer__top-link {
    color: #FFF;
    font-family: "nexa-text", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.footer-desktop {
    display: block;
}   

.footer-mobile {
    display: none;
}


.footer-mobile .container {
    max-width: 400px;
}

@media screen and (max-width: 1200px) {
    .footer-desktop {
        display: none;
    }
    .footer-mobile {
        display: block;
    }

    .footer .container {
        padding: 45px 2.5rem 0;
    }

    .footer .header__top-logo {
        justify-content: center;
    }

    .footer .header__top-logo a {
        position: static;
        transform: none;
    }

    .footer .footer__bottom-info {
        justify-content: center;
        min-height: 40px;
        padding: 50px 0;
    }

    .footer .footer__top-link {
        font-size: 20px;
    }

    .footer .mega-menu {
        display: flex!important;
        flex-direction: column!important;
    }

    .footer .header__top-left {
        flex-direction: row;
        height: auto;
        width: 100%;
    }

    .footer .header__top {
        justify-content: center;
        padding: 0;
    }

    .nav-footer {
        width: 50%;
    }

    .nav-footer .mega-menu-link {
        padding: 0!important;
        white-space: nowrap;
        text-wrap: nowrap;
    }

    .footer .header__top-left .footer__bottom-info {
        padding: 0;
    }

    .footer .footer__bottom-info div {
        width: 50%;
        padding: 0;
    }

    .footer .social {
        padding-left: 10px;
    }
}


@media screen and (max-width: 360px) {
    .footer .header__top-left {
        flex-direction: column;
    }

    .nav-footer {
        width: 100%;
    }

    .footer .footer__bottom-info {
        flex-direction: column-reverse;
    }

    .footer .footer__bottom-info div {
        width: 100%;
    }
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

/*------------------------------------*\
    HOME
\*------------------------------------*/

.hero.home {
    position: relative;
    width: 100%;
    height: 660px;
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
}

.hero.home .hero-partial-bg {
    width: 100%;
    height: 50%;
    opacity: 0.7;
    background: #C6BCB4;
    position: absolute;
}

.hero.home .video-wrapper:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(28, 21, 15, 0.65);
    background-blend-mode: multiply;
    z-index: 1;
    border-radius: 10px;
}

.hero.home .hero-wrapper {
    padding: 55px 2.5rem;
}

.hero.home .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
}

.hero.home .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero.home .hero-content .content-inner {
    width: 100%;
    text-align: center;
}

.hero.home .hero-content .content-inner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero.home .hero-content h1 {
    color: #FFF;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    font-family: orpheuspro, serif;
    max-width: 860px;
    margin: 0;
    margin-bottom: 2rem;
}

.hero.home .hero-content p {
    color: #BEAA99;
    text-align: center;
    font-family: "nexa-text", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero.home .hero-content ul.cta-buttons {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero.home .hero-content ul.cta-buttons li {
    margin: 10px;
}

.hero.home video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: 10px;
}

.hero .cta-buttons--mobile {
    display: none;
}

.hero .cta-buttons--mobile .button {
    text-wrap: nowrap;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .hero.home{
        height: auto;
    }

    .hero.home .hero-content h1 {
        font-size: 38px;
    }

    .hero .hero-wrapper {
        padding: 25px 1.3rem!important;
    }
    
    .hero .cta-buttons--desktop {
        display: none!important;
    }

    .hero .cta-buttons--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: fit-content;
    }

    .hero .cta-buttons--mobile .cta-buttons {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%;
        padding: 0;
    }

    .hero.home .hero-content .content-inner .container { 
        padding: 90px 2.5rem;
    }

    .hero.home .hero-content p {
        max-width: 200px;
        font-size: 14px;
    }

}


@media only screen and (max-width: 520px) {
    .hero .cta-buttons--mobile .button {
        padding: 1.4rem 1.7em;
    }
}

@media only screen and (max-width: 400px) {
    .hero .cta-buttons--mobile .button {
        font-size: 3.75vw;
    }
}


/*------------------------------------*\
    COLLECTIONS
\*------------------------------------*/

.home-collections {
    margin-top: 25px;
}

.home-collections .container {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.home-collections__collection {
    background: #fff;
    width: 50%;
    padding: 30px 30px 60px;
    border-radius: 10px;
}

.home-collections__collection-image img {
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
    max-height: 280px;
}

.home-collections__collection-content {
    padding: 0 25px;
}

.home-collections__collection-content h2 {
    color: #000;
    font-family: orpheuspro, serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 44px */
    margin: 50px 0 25px;
}

.home-collections__collection-content .content h3 {
    font-family: "nexa-text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%; /* 27px */
}

.home-collections__collection-content .content p {
    color: #414141;
    font-family: "nexa-text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%; /* 25.6px */
}

.home-collections__collection-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(auto-fit, minmax(min-content, 55px));
    gap: 30px;
    margin: 50px 0 75px;
    min-height: 230px;
}

.home-collections__collection-product-card {
    display: flex;
    gap: 20px;
}

.home-collections__collection-product-card__image img {
    width: 68px;
    min-width: 68px;
    height: 54px;
    border-radius: 5px;
    object-fit: cover;
}

.home-collections__collection-product-card__description h3 {
    color: #000;
    font-family: orpheuspro, serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 22px */
    margin: 0;
    margin-bottom: 8px;
} 

.home-collections__collection-product-card__description p {
    color: #6E767A;
    font-family: "nexa-text", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 15.4px */
    margin: 0;
}

@media only screen and (max-width: 1400px) {
    .home-collections .container {
        gap: 40px;
    }
}
@media only screen and (max-width: 1200px) {
    .home-collections .container {
        gap: 20px;
    }
}

@media only screen and (max-width: 1000px) {
    .home-collections .container {
        flex-direction: column;
    }

    .home-collections__collection {
        width: 100%;
    }
}

@media only screen and (max-width: 676px) {
    .home-collections__collection {
        padding: 15px 15px 40px;
    }

    .home-collections__collection-products {
        grid-template-columns: 1fr;
    }

    .home-collections__collection-content {
        padding: 0 13px;
    }

    .home-collections__collection-image img {
        max-height: 140px;
    }

    .home-collections__collection-content .button {
        display: block;
        width: 100%;
    }

    .home-collections__collection-content h2 {
        margin: 35px 0 25px;
        font-size: 34px;
    }
    .home-collections__collection-content .content h3 {
        font-size: 19px;
    }
    .home-collections__collection-content .content p {
        font-size: 15px;
    }
}

.cat-section:nth-of-type(odd) .cat-wrapper {
    flex-direction: row-reverse;
}

.rating ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.rating ul li {
    padding-right: 0.5rem;
}

/*Testimonial test*/
.testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5%;
    z-index: 0;
    width: 55%;
    height: 100%;
    background-color: var(--lightblue);
}

/*End Testimonial test*/

.testimonials {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    padding-bottom: 2rem;
}

.testimonials.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.testimonials .slick-track {
    display: flex !important;
}

.testimonial-slide {
    height: inherit !important;
}

.slick-slide .slick-dots,
.testimonials .slick-dots,
.cl-testimonials .slick-dots {
    bottom: -60px;
}

.slick-slider .slick-dots li,
.testimonials .slick-dots li,
.cl-testimonials .slick-dots li {
    position: relative;
    display: inline-block;
    width: 11px;
    height: 11px;
    padding: 0;
    margin: 0 10px;
    cursor: pointer;
}

.slick-slider .slick-dots li button,
.testimonials .slick-dots li button,
.cl-testimonials .slick-dots li button {
    width: 11px;
    height: 11px;
}

.slick-slider .slick-dots li button:before,
.testimonials .slick-dots li button:before,
.cl-testimonials .slick-dots li button:before {
    background-color: var(--lightbrown);
    color: transparent;
    border-radius: 50%;
    opacity: 1;
    width: 11px;
    height: 11px;
}

.slick-dots li.slick-active button:before {
    background-color: var(--midbrown);
}

.cl-testimonials .slick-dotted.slick-slider {
    margin-bottom: 0!important;
}

.testimonials:before {
    content: "";
    position: absolute;
    top: 0;
    left: -5%;
    z-index: 0;
    width: 55%;
    height: 100%;
    background-color: var(--lightbrown);
}

.testimonial-block {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.testimonial-slide p {
    font-size: 2.3rem;
    line-height: 1.2;
    margin: 1rem 0;
}

.product-reviews {
    overflow: hidden;
}

/*------------------------------------*\
    MATERIALS
\*------------------------------------*/

.materials-section .materials__inner {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #FFF;
    align-items: center;
    padding: 90px 0;
}

.materials-section .materials__header {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 35px;
}

.materials-section .materials__header h2 {
    color: #000;
    text-align: center;
    font-family: orpheuspro, serif;
    font-size: 65px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 71.5px */
}

.lined-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
.lined-header::before,
.lined-header::after {
  content: "";
  flex: 1;
  flex-grow: 1;
  height: 1px;
  background: #BCB6AF;
}
.lined-header span {
  white-space: nowrap;
}

.materials-section .materials__header .content {
    max-width: 800px;
}

.materials-section .materials__list {
    max-width: 1200px;
    margin: 30px 0;
}

.material-block {
    margin: 1rem 0;
}

.material-block h2 {
    color: var(--darkteal);
    font-size: 2.6rem;
}

.material-block h4 {
    color: #414141;
    text-align: center;
    font-family: "nexa-text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
    text-wrap: balance;
}

.material-image {
    position: relative;
    overflow: hidden;
}

.material-image img {
    transition: transform .5s ease;
    aspect-ratio: 1 / 1;
}

.material-image:hover img {
    transform: scale(1.25);
}


@media only screen and (max-width: 1000px) {
    .materials-section .materials__inner {
        padding: 38px 0;
    }

    .materials-section .materials__header  {
        padding: 0 28px;
    }

    .lined-header {
        justify-content: flex-start;
        gap: 0;
        font-size: 34px!important;
        margin: 0;
    }

    .lined-header span {
        white-space: normal;
        text-align: left;
    }

    .lined-header::before,
    .lined-header::after {
        display: none;
    }

    .materials-section .materials__header h2 {
        font-size: 42px;
    }

    .materials-section .materials__header .content {
        text-align: left;
    }

    
    .materials-section .materials__header .content h3 {
        font-size: 19px;
    }

    .materials-section .materials__header .content p {
        font-size: 15px;
    }

    .materials-section .materials__list {
        max-width: 100%;
    }

    .materials-section .materials__list .columns {
        overflow: scroll;
        scroll-snap-type: x mandatory;
        width: 100%;
        -ms-overflow-style: none;
        scrollbar-width: none;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        margin: 0;
        padding: 0 20px;
    }

    .materials-section .materials__list .column {
        scroll-snap-align: center;
        width: 125px;
        flex: 1;
        min-width: 125px;
        text-align: center;
        display: flex;
        justify-content: center;
        margin: 0 10px;
        padding: 0;
    }
}


/*------------------------------------*\
    Handcrafted
\*------------------------------------*/

.handcrafted-section .container {
    display: flex;
    margin: 100px auto;
    align-items: center;
}

.handcrafted-section .handcrafted-left {
    width: 50%;
    padding-right: 50px;
}
.handcrafted-left * {
    max-width: 600px;
}

.handcrafted-section .handcrafted-left p {
    color: #414141;
    font-family: "nexa-text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%; /* 25.6px */
}

.handcrafted-cta {
    margin-top: 60px;
}

.handcrafted-section .handcrafted-right {
    width: 50%;
    height: 600px;
}

.handcrafted-section h2 {
    color: #000;
    font-family: orpheuspro, serif;
    font-size: 65px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 71.5px */
}


.handcrafted-section img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


@media only screen and (max-width: 1000px) { 
    .handcrafted-section .container {
        flex-direction: column-reverse;
        margin: 50px 0;
    }

    .handcrafted-section .handcrafted-left {
        width: 100%;
        padding: 0 30px;
    }

    .handcrafted-section h2 {
        font-size: 34px;
    }

    .handcrafted-section .handcrafted-left h3 {
        font-size: 19px;
    }

    .handcrafted-section .handcrafted-left p {
        font-size: 15px;
    }

    .handcrafted-cta {
        margin-top: 30px;
    }

    .handcrafted-cta a {
        display: block;
        width: 100%;
    }

    .handcrafted-section .handcrafted-right {
        width: 100%;
        height: 260px;
    }
}


/*------------------------------------*\
    RESOURCES
\*------------------------------------*/

.resource-block.first-blog {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.resource-block.blog {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.resource-block {
    top: 0;
    position: relative;
    transition: 0.4s ease;
}

.resource-block:hover {
    top: -15px;
}

.resource-block.blog a.button {
    margin-top: auto;
}

.resource-block p.date {
    margin-bottom: 0px;
}

.resource-block.blog h3,
.resource-block.first-blog h3 {
    margin-top: 0px;
    font-size: 2.2rem;
}

.resource-block .with-image {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.resource-block .with-image img {
    filter: grayscale(0);
    transition: 0.4s ease;
}

.resource-block:hover .with-image img {
    filter: grayscale(1);
}

.resource-block .no-image {
    height: 100%;
    width: 100%;
    background-color: var(--lightblue);
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 360px;
    transition: 0.4s ease;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.resource-block .no-image img {
    padding: 0 2rem;
}

.resource-content {
    height: 100%;
    min-height: 500px;
    width: 100%;
    max-width: 100%;
    margin: 0 0 0 auto;
    padding: 2rem 3rem;
    right: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #886E57;
    background-blend-mode: overlay;
}

.resource-content *:not(button) {
    color: #fff;
}

/* .resource-block * {
    color: #273043;
} */

/*------------------------------------*\
    POST
\*------------------------------------*/

.post-header .date {
    font-size: 3rem;
    margin-bottom: 0;
    font-weight: 400;
}

.post-header h1 {
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

.post-excerpt {
    color: #4c607f;
}

.share {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.share p {
    margin: 1rem 0;
    font-size: 3rem;
    font-weight: bold;
    padding-right: 1.5rem;
    font-weight: 400;
}

.a2a_kit.a2a_kit_size_32.addtoany_list {
    line-height: 16px !important;
}

/*------------------------------------*\
    DELIVERY
\*------------------------------------*/
.delivery .ui-state-default {
    border: 0;
    background: var(--lightgray);
    font-size: 1.8rem;
}

.delivery .ui-state-active {
    border: 0;
    background: var(--brown);
}

.delivery .faq-answer.ui-widget-content a {
    color: var(--brown);
}

/*------------------------------------*\
    WOOCOMMERCE
\*------------------------------------*/

.product__container {
    margin: 1.5rem 0;
}

.product__block {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 2.5rem;
}

.product__block:after {
    content: "";
    position: absolute;
    background: linear-gradient(183deg, #ffffff14 0%, #f0f1f225 31%, #2e3344 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.product__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 3rem;
}

.product__content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.product__firmness {
    position: relative;
}

.firmness-labels {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.firmness-labels label {
    color: #fff;
    font-size: 1.4rem;
}

.product__firmness input {
    width: 100%;
    cursor: pointer !important;
}


.header .header-contact {
    display:flex;
    align-items:center;
}

.header .search-block {
    margin-left:15px;
}
.header .button {
    background-color: #8B0000;
    color:white;
}

.header .button:hover{
    background-color:var(--darkteal);
}


/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="range"] {
        /* overflow: hidden; */
        -webkit-appearance: none;
        background-color: transparent;
        border-radius: 10px;
        cursor: pointer !important;
    }

    input[type="range"]::-webkit-slider-runnable-track {
        height: 10px;
        -webkit-appearance: none;
        color: #13bba4;
        margin-top: -1px;
        cursor: pointer !important;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
        border-radius: 10px;
    }

    input[type="range"]::-webkit-slider-thumb {
        width: 24px;
        -webkit-appearance: none;
        border-radius: 50%;
        margin-top: -6px;
        height: 24px;
        cursor: ew-resize;
        /* background: #434343; */
        background-color: var(--brown);
        background: var(--brown);
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29), inset 0 4.5px 0 white, /* Top */ inset -4.5px 0 0 white, /* Right */ inset 0 -4.5px 0 white, /* Bottom */ inset 4.5px 0 0 white, /* Left */ inset -2px 2px 0 white, /* Top Right */ inset -2px -2px 0 white, /* Bottom Right */ inset 2px -2px 0 white, /* Bottom Left */ inset 2px 2px 0 white;
        /* Top Left */
        cursor: pointer !important;
    }
}

/** FF*/
input[type="range"]::-moz-range-progress {
    /* background-color: #43e5f7; */
    background-color: #fff;

    cursor: pointer !important;
}

input[type="range"]::-moz-range-track {
    cursor: pointer !important;
    height: 10px;
    background-color: #fff;
    cursor: pointer !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
    border-radius: 10px;
}

/* IE*/
input[type="range"]::-ms-fill-lower {
    background-color: var(--brown);

    cursor: pointer !important;
}

input[type="range"]::-ms-fill-upper {
    background-color: var(--brown);
    cursor: pointer !important;
}

input[type="range"]::-webkit-slider-runnable-track {
    background-color: #fff;
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    -webkit-appearance: none;
    border-radius: 50%;
    margin-top: -6px;
    height: 24px;
    /* background: #434343; */
    background-color: var(--brown);
    background: var(--brown);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29), inset 0 4px 0 white, /* Top */ inset -4px 0 0 white, /* Right */ inset 0 -4px 0 white, /* Bottom */ inset 4px 0 0 white, /* Left */ inset -2px 2px 0 white, /* Top Right */ inset -2px -2px 0 white, /* Bottom Right */ inset 2px -2px 0 white, /* Bottom Left */ inset 2px 2px 0 white;
    /* Top Left */
    cursor: pointer !important;
    border: none;
}

.product-hero {
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    background-blend-mode: overlay;
}

.product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 38vw;
    min-height: 450px;
    max-height: 650px;
    padding-top: 2%;
}

.product-header h1 {
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: center;
}

.product-header p.price {
    color: #fff;
    font-weight: 400;
    font-size: 2.8rem;
    margin-top: 0;
    line-height: 1;
}

.product-attritbute {
    max-width: 275px;
    margin: 3rem 0;
}

.woocommerce-product-attributes_label {
    margin-bottom: 0;
}

.woocommerce-product-attributes_options {
    margin-top: 0;
}

.product-material {
    height: 85px;
    width: 100%;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
    margin: 2rem 0;
    position: relative;
}

.product-material:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #966a4382;
    /* background: linear-gradient(90deg, rgba(101, 131, 190, 1) 0%, rgba(101, 131, 190, 0.5) 37%, rgba(51, 66, 95, 0.17) 100%); */
    background: linear-gradient(90deg, #966A43 0%, #966a4382 37%, rgb(51 66 95 / 21%) 100%);
    z-index: 0;
    top: 0;
    left: 0;
}

.product-material p {
    color: #fff;
    position: relative;
    font-size: 2.6rem;
}

.product-icon-block img {
    max-width: 60px;
    filter: hue-rotate(150deg);
}

.icon-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 1rem 0;
}

.icon-block p {
    padding-left: 2rem;
}

.product-contact {
    max-width: 452px;
    margin: 0 auto;
}

.product-gallery-wrapper {
    position: relative;
}

.product-gallery-wrapper .flex-grow video {
    flex: 1 0 auto;
    height: 100%;
    object-fit: contain;
}

.product-gallery-wrapper:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    top: -7%;
    left: 0;
    background-color: var(--lightblue);
    z-index: -1;
}

.grid {
    column-count: 3;
    column-gap: 10px;
}

.grid figure {
    display: grid;
    gap: 10px;
    grid-template-rows: 1fr auto;
    break-inside: avoid;
    margin: 0;
}

figure > img {
    grid-row: 1 / -1;
    grid-column: 1;
}

.flex-grow {
    display: flex;
    flex-direction: grow;
}

.product-range {
    border: 5px solid #fff;
    background: #ffffff;
    color: #333333;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
}

.ui-slider-horizontal .ui-slider-range {
    height: 100%;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: 0.7em;
    display: block;
    border: 0;
    background-position: 0 0;
    background-color: var(--brown);
    border: 5px solid var(--brown);
    top: -5px;
}

.ui-slider-range .ui-widget-header {
    border: 1px solid #dddddd;
    background: #e9e9e9;
    color: #333333;
    font-weight: bold;
}

.product-range .ui-state-default,
.product-range .ui-widget-content .ui-state-default,
.product-range .ui-widget-header .ui-state-default,
.product-range .ui-button,
html .ui-button.ui-state-disabled:hover,
.product-range html .ui-button.ui-state-disabled:active {
    width: 24px;
    -webkit-appearance: none;
    border-radius: 50%;
    margin-top: -6px;
    height: 24px;
    cursor: ew-resize;
    background-color: var(--brown);
    background: var(--brown);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29), inset 0 4.5px 0 white, inset -4.5px 0 0 white, inset 0 -4.5px 0 white, inset 4.5px 0 0 white, inset -2px 2px 0 white, inset -2px -2px 0 white, inset 2px -2px 0 white, inset 2px 2px 0 white;
    cursor: pointer !important;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -0.3em;
    margin-left: -0.6em;
}

/*------------------------------------*\
    FORMIDABLE
\*------------------------------------*/

#frm_form_1_container input,
#frm_form_1_container textarea,
.frm_forms input,
.frm_forms textarea,
.frm_forms select {
    background: none;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #4c607f !important;
    box-shadow: none !important;
    border-radius: 0px !important;
}

#frm_form_1_container .frm_form_field,
.frm_forms .frm_form_field {
    margin: 2rem 0;
}

#frm_form_1_container button.frm_button_submit.frm_final_submit,
.frm_forms button.frm_button_submit.frm_final_submit {
    display: inline-block;
    padding: 1.4rem 3.2rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 25px;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 25%);
    background-color: var(--brown);
    color: #fff;
    transition: 0.4s ease;
}

#frm_form_1_container button.frm_button_submit.frm_final_submit:hover,
.frm_forms button.frm_button_submit.frm_final_submit:hover {
    background-color: #fff;
    color: var(--brown);
}

/*------------------------------------*\
    ACF GOOGLE MAP
\*------------------------------------*/

.acf-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    border: #ccc solid 1px;
    margin: 20px 0;
}
.acf-map.contact {
    margin: 0;
    border-radius: 5px;
}

/* Fixes potential theme css conflict. */
.acf-map img {
    max-width: inherit !important;
}

/*------------------------------------*\
    TABS
\*------------------------------------*/

.tabs ul.ui-tabs-nav {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 3.5rem 0;
}

.tabs ul.ui-tabs-nav li {
    margin: 0 2rem;
}

.tabs ul.ui-tabs-nav li a {
    background-color: var(--lightgray);
    display: inline-block;
    padding: 1.3rem 2rem;
    font-size: 16px;
    border-radius: 25px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

.tabs ul.ui-tabs-nav li a:hover,
.tabs li.ui-tabs-active a {
    color: #fff;
    background-color: var(--brown) !important;
}

/*------------------------------------*\
    RESPONSIVE  MENU
\*------------------------------------*/

#responsive-menu-pro-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2.5rem !important;
}

#responsive-menu-pro-container #responsive-menu-pro li.responsive-menu-pro-item a .responsive-menu-pro-subarrow {
    padding-right: 5% !important;
}

/*------------------------------------*\
    404
\*------------------------------------*/

.search-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-form-container form {
    display: flex;
    flex-direction: row;
}

.search-form-container input {
}

.search-form-container .search {
    border: 1px solid var(--darkteal);
    display: flex;
    align-items: center;
}

.search-form-container .search input {
    border: none;
}

.search-form-container .search button {
    border: none;
    background-color: #fff;
    font-size: 2.2rem;
    padding: 0 1rem;
}

.search-form-container .search button i {
    font-weight: 900;
}


.service-areas .card-box a {
    position:relative;
    display:block;
}
.service-areas .card-box a:before{
    content:'';
    position:absolute;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
    background-color:#cdd2dc;
    opacity:0.5;
    z-index:0;
}
.service-areas .card-box a .title-box {
  position:absolute;
  z-index:1;
  top:0px;
  left:0px;
  display:flex;
  align-items: center;
  justify-content:center;
  flex-direction:column;
  width:100%;
  height:100%;
}

.service-areas .card-box a .title-box h2 {
    color:#273043;
}

.service-areas .card-box img.logo-img{
    max-width: 140px;
    height: unset !important;
}


.button.new-button {
    text-transform: capitalize;
}

.mgt-100 {
    margin-top: 100px !important;
}

.mgb-100 {
    margin-bottom: 100px !important;
}

.pdt-100 {
    padding-top: 100px !important;
}

.pdb-100 {
    padding-bottom: 100px !important;
}

.single-service-areas h1 {
    margin-top: 0px;
}
.single-service-areas .hero .image-box img  {
    border-radius: 15px;
}
.single-service-areas .hero .image-box {
    border-radius: 15px;
    overflow:hidden;
}

.single-service-areas .hero {
    position:relative;
}

.single-service-areas .hero:after{
    content:'';
    display:block;
    width:70%;
    height:calc(100% - 150px);
    background-color: var(--lightblue);
    position:absolute;
    top:0px;
    right:0px;
    z-index:0;
    border-radius: 0px 0px 0px 15px;
}
.single-service-areas .hero .container {
    position:relative;
    z-index:1;
}



.single-service-areas .slider-container {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 50px 0px;
}

.single-service-areas .slider-items {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.single-service-areas .slider-item {
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.single-service-areas .slider-indicator {
    position: relative;
    height: 5px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 7px;
}

.single-service-areas .indicator-circle {
    position: absolute;
    top: -7px;
    width: 20px;
    height: 20px;
    background-color: #4a5a73;
    border-radius: 50%;
    transition: left 0.3s ease;
    cursor:pointer;
    border: 3px solid white;
}

.single-service-areas .slider-container .slider-items .slider-item .mattress-box {
    background-color: var(--lightblue);
    border:2px solid #4C607F;
    width:54px;
    height:105px;
    border-radius: 5px;
    margin-bottom:15px;
}
.single-service-areas .slider-container .slider-items .slider-item:nth-child(2) .mattress-box {
    height:111px;
}
.single-service-areas .slider-container .slider-items .slider-item:nth-child(3) .mattress-box {
    width: 74px;
}
.single-service-areas .slider-container .slider-items .slider-item:nth-child(4) .mattress-box {
    width: 83px;
    height:111px;
}
.single-service-areas .slider-container .slider-items .slider-item:nth-child(5) .mattress-box {
    width: 104px;
    height:111px;
}
.single-service-areas .slider-container .slider-items .slider-item:nth-child(6) .mattress-box {
    width: 100px;
    height:117px;
}

.single-service-areas .slider-container .slider-item.active  .mattress-box  {
    background-color: #4C607F;
}

.single-service-areas .slider-container .slider-item span {
    display:block;
    margin-top:10px;
    font-size:16px;
    margin-top:auto;
}

.single-service-areas h3  {
    color: #4C607F;
}

.single-service-areas .materials-list {
    list-style:none;
    padding: 0px;
}
.single-service-areas .materials-list li {
    margin-bottom: 15px;
}
.single-service-areas .materials-list li a {
    display:block;
    width:100%;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    border-radius: 10px;
    text-align: center;
    padding: 25px 15px;
    position:relative;
    overflow:hidden;
}
.single-service-areas .materials-list li a span {
    position:relative;
    z-index:1;
    font-size:25px;
    color:white;
     
    font-weight:700;
}

.single-service-areas .materials-list li a:before{
    content:'';
    background-color: #000000;
    position:absolute;
    left:0px;
    top:0px;
    opacity:0.25;
    z-index:0;
    width:100%;
    height:100%;
    transition: 0.3s ease;
}

.single-service-areas .materials-list li a:hover:before{
    opacity:0.5;
}



.single-service-areas .product-categories-list  {
    padding-left:0px;
}

.single-service-areas .third-section {
    background-color: #E6E9EE;
    text-align:center;
}

.single-service-areas .third-section h2 {
    margin-bottom: 35px;
    color: #4C607F;
}
.pdt-50 {
    padding-top: 50px !important;
}

.pdb-50 {
    padding-bottom: 50px !important;
}


.single-service-areas .third-section .category-item a {
    border: 5px solid #4C607F;
    border-radius: 15px;
    display:block;
    overflow:hidden;
    background-color: #4C607F;
}

.single-service-areas .third-section h3 {
    background-color: #4C607F;
    margin: 0px;
    padding: 12px 0px;
    color:white;
    transition: 0.3s ease;
}

.single-service-areas .fourth-section {
    text-align:center;

}

.single-service-areas .fourth-section h2 {
    margin-top: 0px;
}

.single-service-areas .fourth-section * {
    color:white;
}

.single-service-areas .fourth-section  .button {
    background-color:white;
    color: #4C607F;
}

.single-service-areas .fourth-section  .button:hover{
    background-color: #4C607F;
    color:white;
}

.container.small {
    max-width:1000px;
}

.single-service-areas .testimonial-slider .background-box {
    background-color: #E6E9EE;
    border-radius:15px;
    padding-top:50px;
    padding-bottom:25px;
}

.single-service-areas ul.star-list {
    padding: 0px;
    margin: 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    list-style:none;
}

.single-service-areas ul.star-list li {
    max-width:21px;
    margin: 0px 5px;
    height:21px;
}

.single-service-areas  .testimonial-slider p {
    max-width: 800px;
    margin: 25px auto;
}

.single-service-areas  .testimonial-slider .slick-dots {
    position: static;
}

.single-service-areas .slick-slider .slick-dots li button:before, 
.single-service-areas .testimonials .slick-dots li button:before {
    background-color: #4C607F;
    border:2px solid #4C607F;
}

.single-service-areas .slick-dots li.slick-active button:before {
    background-color:white;
}
.single-service-areas .sixth-section {
    background-color: #4C607F;
}
.single-service-areas .image-box {
    border-radius: 15px;
    overflow: hidden;
}

.single-service-areas .sixth-section * {
    color:white;
}

.mgb-50 {
    margin-bottom: 50px !important;
}

.single-service-areas .form-box label {
    color: #000000;
    font-weight:600;
    padding-left: 0px;
    left: 0px;
}

.single-service-areas .form-box .with_frm_style input[type=text]::placeholder, 
.single-service-areas .form-box .with_frm_style input[type=email]::placeholder, 
.single-service-areas .form-box .with_frm_style input[type=tel]::placeholder,
.single-service-areas .form-box textarea::placeholder {
    color: #000000;
    font-weight:600;
}

.single-service-areas .form-box .frm_style_formidable-style.with_frm_style .form-field {
    margin: 10px 0px;
}

.single-service-areas .seventh-section .left-box { 
    position:relative;
}

.single-service-areas .seventh-section .left-box:after{
    content: "";
    width:1px;
    height:94%;
    background-color: #4C607F;
    position:absolute;
    right: -50px;
    top:19px;
}

.mgt-50 {
    margin-top: 50px !important;
}

.single-service-areas .seventh-section h2 {
    margin-top: 0px;
}

.single-service-areas .seventh-section .form-box #frm_field_31_container {
    margin-top: -22px;

}

.single-service-areas .map-box iframe {
    width:100%;
    border-radius: 15px;
}

.single-service-areas  .image-box.second-image  {
    position:relative;
    margin-top:25px;
    right:0px;
}


/*------------------------------------*\
    CUSTOM LANDING PAGE
\*------------------------------------*/
.cl-landing-page-wrapper {
    background: #F6F6F5;
    max-width: none;
}

.cl-header {
    background-image: url(https://www.gardnermattress.com/wp-content/uploads/2025/09/upscale-gardner-lg-face-upscale-2.4x-1.png);
    height: 350px;
    background-size: cover;
    background-position: center bottom;
    position: relative;
}

.cl-logo--wrapper {
    position: absolute;
    bottom: -75px;
    background-color: #2A3041;
    max-width: 320px;
    padding: 20px;
    border-radius: 12px;
}

.cl-main {
    background: #F6F6F5;
}

.cl-form-section {
    display: flex;
    align-items: flex-start;
}

.cl-form-container {
    width: 450px;
    height: 100px;
    position: relative;
}

.cl-form-wrapper {
    top: -75px;
    width: 450px;
    max-width: 450px;
    min-height: 300px;
    position: absolute;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 15px 55px 0 rgba(199, 202, 211, 0.70);
    text-align: left;
}

.cl-form--header {
    border-radius: 12px 12px 0 0;
    background: #2A3041;
    display: flex;
    height: 75px;
    justify-content: flex-start;
    align-items: center;
    padding: 0 40px;
}

.cl-form--header h2 {
    margin: 0;
    padding: 0;
    color: #FFF;
    font-family: "nexa-text", sans-serif;
    font-size: clamp(20px, 2.25vw, 28px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.6px;
}

.cl-form--subHeader {
    padding: 25px 40px;
}

.cl-form--subHeader h3 {
    color: #000;
    font-family: "nexa-text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.6px;
    margin: 0;
}

.cl-form--subHeader span {
    color: #fff;
    background: #b77f61;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 700;
}

.cl-form--content {
    padding: 0 40px;
}

.cl-landing-text {
    padding: 0 50px;
    margin-top: 130px;
    width: calc(100% - 450px);
    min-width: 600px;
}

.cl-landing-text h1 {
    color: #000;
    font-family: "nexa-text", sans-serif;
    font-size: clamp(30px, 4.5vw, 60px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.8px;
}

.cl-landing-text h2 {
    color: #784428;
    font-family: "nexa-text", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.9px;
}

.cl-landing-text p {    
    color: #000;
    font-family: "nexa-text", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -0.66px;
    max-width: 750px;
}

.cl-form--content form label {
    color: #000 !important;
    font-family: "nexa-text", sans-serif !important;;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: normal !important;
    letter-spacing: -0.6px !important;
}

.cl-form--content form input[type="text"],
.cl-form--content form input[type="email"],
.cl-form--content form input[type="tel"],
.cl-form--content form textarea,
.cl-form--content form select {
    background: #EBECEF;
    border-top: 1px solid #2A3041 !important;
    border-left: 1px solid #2A3041 !important;
    border-right: 1px solid #2A3041 !important;
    border-bottom: 1px solid #2A3041 !important;
    border: 1px solid #2A3041;
}


.cl-form--content form .form-field {
    margin: 0 0 25px 0 !important;
}

.cl-form--content form .form-field .frm_submit {
    margin-top: 15px;
}

.cl-form--content form .form-field .frm_submit button {
    border-radius: 0;
    background: #7083B9;
    color: #FFF;
    text-align: center;
    font-family: "nexa-text", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.72px;
    text-transform: capitalize;
}


.cl-footer {
    width: 100%;
}

.cl-footer-image {
    background-image: url(https://www.gardnermattress.com/wp-content/uploads/2025/09/landing-footer.png);
    height: 275px;
    background-size: cover;
    background-position: center;
}

.cl-testimonials {
    margin: 100px auto;
}

.cl-testimonials--wrapper {
    border-radius: 12px;
    background: #2A3041;
    color: #fff;
    padding: 17px 15px;
}


.cl-testimonials--inner {
    display: flex;
    padding: 45px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    gap: 10%;
}

.cl-testimonials--testimonial {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
    
.cl-testimonials--stars {
    display: flex;
    gap: 10px;
}

.cl-testimonials--text p {
    color: #FFF;
    font-family: "nexa-text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.6px;
}

.cl-testimonials--author {
    margin-top: auto;
}

.cl-testimonials--author p {
    color: #8990A2;
    font-family: "nexa-text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.6px;
}

.cl-testimonials--slider .cl-testimonials--inner {
    width: 100%;
    padding: 0;
    gap: 0;
}


.cl-testimonials--slider .cl-testimonials--inner .slick-track {
    display: flex !important;
}

.cl-testimonials--slider .cl-testimonials--testimonial {
    text-align: center;
    padding: 45px 30px;
    display: flex!important;
    justify-content: center;
    align-items: center;
    height: inherit !important;
}

.cl-testimonials--slider .cl-testimonials--text {
    max-width: 1100px;
}

.cl-testimonials--slider .cl-testimonials--text p {
    color: #FFF;
    text-align: center;
    font-family: "nexa-text", sans-serif;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px; /* 85.714% */
    letter-spacing: -1.05px;
}

.cl-testimonials--slider .cl-testimonials--stars {
    justify-content: center;
}

.cl-testimonials--slider .cl-testimonials--author {
    margin-top: 0;
}

@media only screen and (max-width: 1000px) {
    .cl-testimonials--slider .cl-testimonials--testimonial {
        min-width: auto;
    }
    .cl-testimonials--slider .cl-testimonials--text p {
        font-size: 22px;
        line-height: 28px;
    }

    .cl-testimonials--slider .slick-dots {
        display: none!important;
    }
}



.cl-stores {
    margin: 100px auto;
    padding: 0 10rem;
}

.cl-stores--header h2 {
    color: #000;
    font-family: "nexa-text", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.2px;
}

.cl-stores--inner {
    display: flex;
    padding: 45px 0;
    gap: 10%;
    justify-content: space-between;
}

.cl-stores--store {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cl-stores--title p {
    color: #784428;
    font-family: "nexa-text", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.75px;
    margin: 0;
}

.cl-stores--address {
    margin-bottom: 10px;
}

.cl-stores--address p {
    color: #000;
    font-family: "nexa-text", sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.63px;
}

.cl-stores--cta a {
    background: #7083B9;
    padding: 2rem 3rem;
    color: #FFF;
    text-align: center;
    font-family: "nexa-text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.6px;
    text-wrap: nowrap;
    white-space: nowrap;
}

.cl-footer {
    background: #2A3041;
}

.cl-footer--inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.cl-footer--inner a {
    color: #888EA0;
    font-family: "nexa-text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.48px;
}


.cl-form-container--mobile {
    display: none;
    width: 100%;
    height: auto;
}

.cl-form-container--mobile .cl-form-wrapper {
    position: static;
    width: 100%;
    max-width: none;
}

.cl-form-container--mobile .cl-form--header {
    padding: 0 30px;
}

.cl-form-container--mobile .cl-form--header h2 {
    font-size: 23px;
    color: #fff;
}

.cl-form-container--mobile .cl-form--subHeader {
    padding: 20px 30px;
}

.cl-form-container--mobile .cl-form--subHeader h3 {
    font-size: 18px;
    letter-spacing: -0.5px;
    line-height: 28px;
}

.cl-form-container--mobile .cl-form--content {    
    padding: 0 30px;
}



/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width: 1000px) {
    .cl-header {
        height: 125px;
        background-position: left;
    }

    .cl-logo--wrapper {
        max-width: 200px;
        aspect-ratio: 218 / 69;
        bottom: -40px;
    }

    .cl-form-section {
        width: 100%;
        overflow: hidden;
    }

    .cl-landing-text {
        padding: 0;
        width: 100%;
        margin-top: 50px;
        min-width: 0;
    }

    .cl-landing-text h1 {
        font-size: 30px;
        letter-spacing: -0.9px;
    }

    .cl-landing-text p {
        font-size: 17px;
        width: 100%;
        line-height: 26px;
    }

    .cl-form-container {
        display: none;
    }

    .cl-form-container--mobile {
        display: block;
    }

    .cl-testimonials {
        margin: 25px auto;
    }

    .cl-testimonials--inner {
        overflow: scroll;
        scroll-snap-type: x mandatory;
        width: 100%;
        padding: 0;
        gap: 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .cl-testimonials--inner::-webkit-scrollbar {
        display: none;
    }

    .cl-testimonials--testimonial {
        scroll-snap-align: center;
        width: 100%;
        flex: 1;
        min-width: 100%;
        text-align: center;
        padding: 45px 30px;
        justify-content: center;
    }

    .cl-testimonials--stars {
        justify-content: center;
    }

    .cl-testimonials--author {
        margin-top: 0;
    }

    .cl-stores {
        margin: 50px auto;
        padding: 0 2.5rem;
    }

    .cl-stores--header h2 {
        font-size: 28px;
    }

    .cl-stores--inner {
        flex-direction: column;
        gap: 100px;
        width: fit-content;
        margin: auto;
    }

    .cl-footer--image {
        height: 115px;
        background-position: left;
    }

    .cl-footer--inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cl-footer--inner img {    
        position: absolute;
        right: 2.5rem;
        bottom: 2.5rem;
    }
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width: 320px) {
}

@media only screen and (min-width: 480px) {
    .testimonial-slide p {
        font-size: 3rem;
    }
}

@media only screen and (min-width: 769px) {
    .hero.home .hero-content ul.cta-buttons li:first-child {
        margin-left: 0;
    }

    .card {
        margin: 0 2rem;
    }

    .card-slider .slick-prev {
        left: -15px;
    }

    .card-slider .slick-next {
        right: -10px;
    }

    .resource-content {
        right: 5%;
        max-width: 477px;
        background-color: #886E57;
    }

    section.showrooms .content.thin * {
        font-size: 2.4rem;
    }

    .handcrafted-media .img-hide {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    section.margined-section.single-product-product-detail {
        margin: 75px 0 75px;
    }
}

@media only screen and (min-width: 1024px) {
    .desktop {
        display: block;
    }

    .tablet {
        display: none;
    }

    .row-reversed {
        flex-direction: row-reverse;
    }

    .collection-block.wide .content {
        max-width: 775px;
        padding: 3rem 10rem 4rem 3rem;
        position: relative;
        left: 8%;
        top: -6vw;
        margin: 0;
    }

    .location-wrapper {
        border-right: 2px solid var(--lightblue);
        border-bottom: none;
    }

    .location-block {
        padding-right: 4rem;
    }

    .collection-block .content {
        max-width: 525px;
    }

    .single-post .blog-cont article{
        padding-right: 10%;
    }
}

@media only screen and (min-width: 1201px) {
    .mobile-menu {
        display: none;
    }
}

@media only screen and (min-width: 1280px) {
}

@media only screen and (min-width:1500px) {
    .single-service-areas  .image-box.second-image  {
        margin-top:25px;
    
        position:relative;
        right:125px;
    }
}

@media only screen and (max-width:1200px) {
    .single-service-areas .hero:after{
        height:calc(100% - 50px);
    }
}

@media only screen and (max-width:1023px) {
    .single-service-areas  .image-box.second-image {
        display:none; 
    }

    .sub-header .columns {
        overflow: scroll;
        scroll-snap-type: x mandatory;
        width: 100%;
        -ms-overflow-style: none;
        scrollbar-width: none;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }


    .sub-header .columns .column {
        scroll-snap-align: center;
        width: 100%;
        flex: 1;
        min-width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    } 
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {
}

.bypostauthor {
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .nav,
    .sidebar,
    .home-slider,
    #respond {
        display: none;
    }

    @page {
        margin: 2cm;
    }
}


@media only screen and (max-width: 768px) { 
    .single-service-areas h1 {
        font-size:3rem;
    }
    .single-service-areas .hero:after {
        display:none;
    }

    .pdb-100 {
        padding-bottom: 50px !important;
    }
    .pdt-100 {
        padding-top: 50px !important; 
    }

    .mgt-100 {
        margin-top: 50px !important;
    }
    .mgb-100 {
        margin-bottom: 50px !important;
    }

    .single-service-areas .hero.pdb-100 {
        padding-bottom: 0px !important; 
    }
    .single-service-areas .slider-items {
        flex-wrap:wrap;
    }

    .single-service-areas .slider-indicator {
        display:none;
    }
}