/*Dummy variables ,edit ones in theme.css for updating it*/
:root {
    --font-prim: Bodoni;
    --font-secondary: Poppins;

    --color-bg-prim: #fffbf5;
    --color-bg-secondary: #3a1f10;
    --color-dark: #211815
}

/*Initialize site style properties*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

img {
    max-width: 100%;
}

input,
textarea {
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

a {
    text-decoration: none;
}

/*Preset classes*/
.section-title {
    font-family: var(--font-prim);
    font-size: clamp(3rem, 1.5vw + 1rem, 8rem);
    font-weight: 300;
    max-width: 24ch;
    line-height: 1.1;
    color: #63473f;
}

.section-title-med {
    font-family: poppins;
    font-size: clamp(1.25rem, .5vw + 1rem, 3rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.5rem, .75vw + 1rem, 3rem);

}

h2.section-title {
    max-width: 42ch;
}

h3 {
    font-family: var(--font-secondary);
    font-size: clamp(1.5rem, 1vw + 0.5rem, 2.25rem);
    font-weight: 300;

}

h4 {
    font-family: var(--font-secondary);
    font-size: clamp(.5rem, 0.8vw + 0.5rem, 1rem);
    font-weight: 300;
}

.section-para {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 0.5vw + 0.5rem, 1.25rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-bg-secondary);
}

button {
    touch-action: manipulation;
}

.button {
    width: 100%;
    font-family: var(--font-secondary);
    font-size: 1rem;
    background-color: var(--color-bg-prim);
    color: #4c2a10;
    border: none;
    border-radius: 150rem;
    padding: 1.25rem 1.5rem;
    transition: background-color .1s cubic-bezier(0.075, 0.82, 0.165, 1);
    touch-action: manipulation;

}

/* decorative*/

.prop-bg-stroke-left {
    position: absolute;
    left: -50%;
    top: 90%;
    width: 35rem;
    height: 35rem;

    background-image: url(../images/stroke.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 40%;
    pointer-events: none;
}

.prop-bg-stroke-right {
    position: absolute;
    left: 50%;
    top: 1rem;

    width: 35rem;
    height: 30rem;

    background-image: url(../images/stroke.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 40%;
    pointer-events: none;
}

.prop-mod-top {
    bottom: 0;
    top: 0%;
}

.prop-mod-bottom {
    top: 90%;
}

.scale-inverted-x {
    transform: scaleX(-1)translateY(90%);
}

/*Utils*/

/*For when switching orientation*/
.util-flex-order-first {
    order: -1;
}

/**************************************************************/
html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;

    height: 100%;
    align-items: center;

    color: var(--color-bg-prim);
    background-color: var(--color-bg-prim);

    scroll-behavior: smooth;
}

body.active,
body.active main {
    overflow: clip;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100dvh;
    position: relative;
    overflow-x: clip;
    scroll-behavior: smooth;

}

/* Customized scrollbar */
body,
main {
    scrollbar-width: thin;
    scrollbar-color: #1e140e #fffbf5;
}

body::-webkit-scrollbar,
main::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track,
main::-webkit-scrollbar-track {
    background: #fffbf5;
}

body::-webkit-scrollbar-thumb,
.main::-webkit-scrollbar-thumb {
    background: #1e140e;
    border-radius: 10px;
}

/*Header and nav links*/
header {
    display: flex;
    position: absolute;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: fit-content;

    background-color: rgb(30, 29, 25);
    background-color: rgb(32, 28, 28);

    z-index: 1;
}

.logo {
    display: flex;
    width: 8rem;
    margin: 1.35rem auto;
    justify-content: center;
    z-index: 1;
}

.logo img {
    width: 100%;
    object-fit: cover;
}

.nav-icon-social {
    display: flex;
    justify-content: start;
    margin: 0;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.75rem;
    aspect-ratio: 1;
    padding: .25rem;
    margin-right: .25rem;
    border-radius: 3rem;

}

.social-icon img {
    filter: invert(1);
    opacity: .8;
}

#social-icon-whatsapp {
    background-color: rgb(87, 129, 78);
    cursor: pointer;
}

#social-icon-insta {
    background-color: rgb(180, 65, 88);
    cursor: pointer;
}

#social-icon-fb {
    background-color: #1877F2;
    cursor: pointer;
}

.nav-contact {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-left: .75rem;
    z-index: 1;
}

.nav-contact h3 {
    font-family: poppins;
    font-weight: 300;
    font-size: .75rem;
    color: black;
    margin-bottom: 0;
}

.nav-contact::before {
    position: absolute;
    content: '';
    width: 120%;
    height: 2.25rem;
    border-radius: 3rem;

    background-color: rgb(203, 209, 208);
    z-index: -1;
}


.nav-icon-social img {
    width: 80%;
    height: 80%;
    position: relative;
}


.nav-button-conatiner {
    display: flex;
    position: absolute;
    height: 5rem;
    justify-content: end;
    z-index: 2;
}

.hamburger_menu-btn {
    position: relative;
    width: 2rem;
    height: 2.5rem;
    align-self: center;
    padding: .25rem 0;
    margin: 1rem 1.25rem;
}

.hamburger_menu-btn span {
    position: absolute;

    width: 2.25rem;
    height: .1rem;
    max-height: 1.5px;
    background-color: #ffffff;

    top: 30%;
    left: 0%;
    transform: translateY(-50%);
    transition: all .1s ease-out;
}

.hamburger_menu-btn span:nth-child(1) {
    top: 60%;
    transform: translateY(-50%);
}

.hamburger_menu-btn span:nth-child(3) {
    top: 90%;
    transform: translateY(-50%);
}

.nav-menu {
    display: none;
    position: fixed;
    flex-direction: column;

    width: 100%;
    max-width: 700px;
    height: calc(100dvh - 4rem);
    inset: 0;
    top: 4rem;
    align-items: stretch;
    justify-content: start;
}

.nav-menu.active {
    display: flex;
    min-height: fit-content;
    background-color: rgb(32, 28, 28);
}

.nav-menu-ul {
    display: flex;
    flex-direction: column;

    flex: 1;
    padding: 3rem;
    justify-content: start;
    align-items: start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
}

.nav-menu-ul a img {
    width: 1rem;
    height: 1rem;
}

.nav-menu li {
    display: flex;
    position: relative;
    height: 4rem;

    margin: 1rem 0;

    justify-content: center;
    align-items: center;

    list-style-type: none;
}

.nav-menu .nav-menu-li a::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(198, 119, 59);
    transition: width .35s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.nav-menu .no-hover a::after {
    content: none;
}

.nav-menu a {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1.25rem;
    letter-spacing: 0px;
    user-select: none;
    color: var(--color-bg-prim);
    user-select: none;
}

.nav-menu-li .dropdown {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.nav-menu-li .dropdown_list {
    position: absolute;
    top: 100%
}

.nav-menu-li .btn-dropdown {
    border: none;
    padding: 0;
    margin: 0;
}

.nav-menu-li .btn-dropdown img {
    filter: invert(1);
    pointer-events: none;
}

.nav-menu-li .dd_item {
    height: 4rem;
    margin: 0;
}

/*Dropdown*/

.dropdown {
    position: relative;
}

.dropdown .dropdown_list {
    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 0;

    top: 100%;
    left: 0%;
    width: 100%;
    height: auto;
    overflow-y: scroll;
    background-color: #27211d00;
    backdrop-filter: blur(10rem);
    box-shadow: inset 0 8px 5px -9px rgba(0, 0, 0, 0.35);
}

.btn-dropdown {
    display: flex;
    height: 4.5rem;
    padding: 0 .75rem;

    border-bottom: #000 1px solid;

    justify-content: center;
    align-items: center;

    font-family: var(--font-secondary);
    color: var(--color-bg-secondary);
    font-size: 1.25rem;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
}

.btn-dropdown img {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 3px;
    margin-left: 8px;
    opacity: 60%;
}

.dropdown_list.active {
    display: flex;
    z-index: 2;
    background-color: rgb(186, 180, 178);
}


.btn-dropdown li::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 2px;
    top: 100%;
    background-color: #131d0c;
    transition: width ease-out .1s .02s;
    z-index: 2;
}

.dropdown_list {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    justify-content: center;
    align-items: center;
}

.dropdown_list li {
    display: flex;
    position: relative;
    width: 100%;
    height: 4.5rem;
    padding: 0 .75rem;
    border-bottom: #000 1px solid;

    margin: 0;
    justify-content: center;
    align-items: center;

    font-family: var(--font-secondary);
    color: var(--color-bg-secondary);
    font-size: 1.25rem;
    justify-content: start;
    align-items: center;
    font-weight: 300;
}

.dropdown_list li::after {
    content: '';
    width: 0;
}

.dropdown_list a {
    display: flex;

}

.btn-dropdown h3 {
    margin-right: auto;
    margin-left: 1rem;
    font-family: var(--font-secondary);
    font-size: .5em;
    font-weight: 300;
    align-self: center;
}

#footer {
    display: flex;
    width: 100%;
    height: 70px;
    min-height: 650px;
    background-color: #211815;
    scroll-snap-align: end;
    padding-bottom: 15rem;

}

.footer-about {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-headline {
    display: flex;
    width: 100%;

    justify-content: start;
    align-items: center;
}

.footer-headline img {
    width: 8rem;
}

.footer-headline h2 {
    position: relative;
    align-self: center;
    justify-self: center;
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: .8rem;
    letter-spacing: 1px;
    margin-left: 3rem;
}

.footer-headline h2::before {
    content: '';
    position: absolute;
    height: 200%;
    width: 1px;
    left: -1.5rem;
    top: -0%;
    background-color: white;
    transform: translateY(-25%);
}

#footer .section-para {
    width: 100%;
    font-size: .9rem;
    font-family: var(--font-secondary);
    font-weight: 300;
    color: var(--color-bg-prim)s;
    margin: 1.75rem 0;
}

.footer-nav {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: start;
    overflow-y: visible;

    font-family: var(--font-secondary);
    color: var(--color-bg-prim);
}

.footer-lists {
    display: flex;
    width: 100%;
    margin: auto 0;
    justify-content: center;
    align-items: start;
}

.footer-nav ul {
    margin: 0 1.25rem;
    height: auto;
}

.footer-nav h3 {
    font-family: Poppins;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 900;

    margin-bottom: .35rem;
}

.footer-nav li {
    list-style: none;

}

.footer-nav a {
    text-decoration: none;
    color: var(--color-bg-prim);
}

/*Layout classes*/

.page-section {
    display: flex;
    position: relative;
    flex-direction: column;
    position: relative;

    width: 100%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;

    animation: fadein .35s;
}

.section_divider_graphic,
.section_divider_graphic_inverted {
    display: none;
}

.col {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    width: 95%;
    height: 100%;
    max-width: 1400px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    z-index: 0;
}

.row {
    display: flex;

    width: 100%;
    height: 100%;
    padding: 2rem 0rem;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

/*Sections*/
#section-banner {
    position: relative;
    width: 100%;
    height: clamp(675px, 60svh, 1500px);
    overflow: hidden;
    background-image: url('../images/stock/bg_hero.jpeg');
    background-size: cover;
    background-position: 40% 50%;
}

#section-banner .col {
    width: 100%;
}

#section-banner .col {
    width: 100%;

}

#section-banner .row {
    max-width: 1500px;
    align-items: start;
    margin: auto;
}

.section-coming-title {
    position: absolute;
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-family: var(--font-prim);
    color: #ffffffbd;
    text-align: center;

    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.674);
}


.banner-img-scroll {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 1800px;

    overflow: auto hidden;
    scroll-behavior: smooth;

    transition: left .1s ease-in;
    z-index: auto;
}

#section-banner img {
    object-fit: cover;

}

.scrolly-content {
    position: relative;
    min-width: 100%;
    min-height: 100%;

    left: -3%;
    overflow: visible hidden;
}

#scrolly-infoCards .scrolly-content {
    display: flex;
    flex-direction: column;
    min-width: 140%;
    z-index: auto;
}


.scrolly-infoCards img {
    object-fit: cover;
    height: 100%;
    inset: 0;
    opacity: 0;
}

#section-banner .col::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;

    background-color: #0a0501aa;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;

}

#section-banner .col::before {
    position: absolute;
    content: '';
    width: 110%;
    height: 100%;

    background: linear-gradient(0deg, rgba(1, 1, 1, 0) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    overflow: hidden;

}

.content-hero {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
    max-width: 900px;
    z-index: 2;
    padding: 1rem;

}

#section-banner .section-title {
    font-weight: 300;
    text-align: left;
    pointer-events: none;
    font-size: clamp(2.75rem, 2vw + 1rem, 8rem);
    max-width: 14ch;
    color: rgb(255, 252, 240);
    text-shadow: 1px 1px 10px #201d1d81;
    transition: opacity .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

#section-banner .section-title-med {
    max-width: 40ch;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: rgb(234, 232, 224);
    text-shadow: 1px 1px 10px #201d1d81;
    padding: 1rem 0;
    transition: opacity .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.content-hero .button {
    max-width: 15ch;
    padding: .75rem;
    margin: 1rem 0;
}

#section-banner .section-title.active {
    opacity: 100%;
}

.info-popup-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    overflow: visible hidden;
    z-index: 2;
}

.btn-popup {
    position: absolute;
    width: 4rem;
    height: 4rem;
    top: 0;
    left: 0;
}

#btn-info-1 {
    top: 40%;
    left: 17%;
}

#btn-info-2 {
    top: 40%;
    left: 40%;
}

#btn-info-3 {
    top: 40%;
    left: 80%;
}

.info-card {
    display: flex;
    width: 240px;
    aspect-ratio: 4/3;
    display: flex;
    padding: 1rem;

    background-image: url('../images/card.png');
    background-repeat: no-repeat;
    background-size: contain;
    overflow: visible;
    line-height: 1.2;
    letter-spacing: 1px;
}

.info-card-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 90%;
}

.info-card .section-title-med {
    font-family: poppins;
    font-size: 1rem;
    font-weight: 900;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.info-card .section-para {
    font-family: var(--font-secondary);
    font-size: .8rem;
    color: var(--color-bg-prim);
    margin-left: 1rem;

}

.btn-info-card {
    width: 4rem;
    height: 2rem;
}

/*Features*/
#section-features .col {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

#section-features .row {
    width: 100%;
    margin: 0;
    padding: 0;
}

.feature-card {
    position: relative;
    display: flex;
    width: 100%;
    height: clamp(300px, 40svh, 300px);
}

.feature-card button {
    align-self: flex-end;
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/feature_1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: sepia(.1) saturate(.9) brightness(70%);
    z-index: -1;
}

.fCard-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3rem 1rem;
    margin: 0%;
}

.fCard-content h2 {
    font-family: var(--font-secondary);
    text-align: left;
    align-self: flex-start;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-bg-prim);
    text-shadow: 1px 2px 5px rgba(36, 30, 30, 0.25);
}

.fCard-content button {
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    font-family: var(--font-secondary);
    background-color: var(--color-bg-prim);
    border: none;
}

.fCard-content .btn_explrService a {
    color: var(--color-bg-secondary);
}

.fCard-content .btn_explrService {
    color: var(--color-bg-secondary);
}

#fCard-services.feature-card::before {
    background-image: url('../images/feature_1.webp');
}

#fCard-tech.feature-card::before {
    background-image: url('../images/feature_2.webp');
    background-position: 50% 70%;

}

#fCard-products.feature-card::before {
    background-image: url('../images/feature_3.webp?v=1');
    background-position: 50% 90%;

}

/*Services card grid gallery*/
#section-services {
    height: fit-content;
    padding: clamp(2rem, 5vw, 6rem) 2rem;
    color: var(--color-bg-secondary);
}

#section-services .col {
    justify-content: space-between;
}

.service-txt-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: s;
    align-items: center;
}

.service-txt-container h2 {
    text-align: center;
}

.service-txt-container h3 {
    margin: 1rem auto;
    text-align: center;
}

.service-txt-container .section-para {
    text-align: center;
    margin: 1rem 0;
}

.btn_explrService {
    display: flex;
    min-width: 12rem;
    min-height: 4rem;

    justify-content: center;
    align-items: center;

    border: none;
    border-radius: 15rem;

    background-color: var(--color-bg-secondary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-bg-prim);
    overflow: hidden;
    transition: all .5s cubic-bezier(0.23, 1, 0.320, 1);
    align-self: center;
}

.btn_explrService.active {
    white-space: nowrap;
    font-size: 0;
    color: rgba(245, 222, 179, 0);
}

#section-services .btn_explrService {
    max-width: 10rem;
}

.btn_explrService a {
    display: flex;
    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;
    text-align: left;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-bg-prim);
    text-decoration: none;
    transition: background-color .1s cubic-bezier(0.23, 1, 0.320, 1);

}



.gallery {
    display: grid;
    grid-template-columns: repeat(2, 8rem);
    grid-auto-rows: 12rem;
    grid-gap: 1rem;
}

.gallery-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery .image {
    width: 100%;
    height: 100%;
    border-right: 0;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-position: 50% 25%;
    object-fit: cover;
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);

    filter: hue-rotate(-5deg) contrast(.9)brightness(.9);
}

.gallery-item {
    transition: .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(145deg, #2a2a2a, #383838);
}

.service-title {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%);
    font-family: poppins;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgb(243, 243, 243);
    text-shadow: 0px 1px 5px rgba(36, 34, 32, 0.4);
    z-index: 2;
}

.txt-white {
    color: white;
}

.g-margin {
    margin-top: 2rem;
}

.g-sml {
    height: 240px;

}

#section-treatments {
    width: 100%;
    height: clamp(450px, 60dvh, 700px);
    padding: clamp(2rem, 5vw, 4rem) 2rem;
    margin-bottom: clamp(3rem, 5dvh, 4rem);
}

#section-treatments .row {
    padding: 0;
    height: fit-content;
}

#section-treatments .section-title {
    text-align: center;
    max-width: 15ch;
}

#section-treatments .section-para {
    width: 100%;
    text-align: center;
}

#section-inHouseProduct {
    height: fit-content;
    background-color: rgb(61, 58, 55);
}

#section-inHouseProduct .col {
    width: 100%;
    max-width: none;
    flex-direction: column;

}

#section-inHouseProduct .row {
    padding: 0;
}

#section-inHouseProduct .row-50 {
    width: 100%;
}

.inHouseProduct-txt-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 4rem 2rem;
    justify-content: center;
    align-items: center;
    color: var(--color-bg-prim);
}

.inHouseProduct-txt-container .section-title {
    color: #f0e1de;
    margin: 1.5rem 0;
}

#section-inHouseProduct .section-para {
    width: 100%;
    max-width: 400px;
    line-height: 1.5;
    color: rgb(181, 159, 117);
}


.btn_explrProd {
    max-width: 15rem;
    margin-top: 2rem;

}

.inHouseProduct-img {
    display: flex;
    position: relative;
    overflow: hidden;
    max-width: 1500px;
}

.inHouseProduct-img::before {
    content: '';
    position: absolute;
    background-image: url('../images/products.webp');
    background-size: cover;
    background-position: left;
    filter: blur(10px);
    width: 110%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.inHouseProduct-img img {
    width: 100%;
    height: 100%;

    align-self: flex-end;

    z-index: 1;

}

#section-aboutStore {
    padding: clamp(2rem, 2vw, 4rem) 2rem;
    height: fit-content;
}

.aboutStore-txt-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.aboutStore-txt-container .section-title {
    width: 100%;
    text-align: left;

    color: var(--color-bg-secondary);
    margin: 3rem 0;

    line-height: 1;
}

.aboutStore-txt-container .button {
    width: 50%;
    align-self: flex-end;
    background-color: var(--color-bg-secondary);
}

.btn_bookNow {
    display: flex;
    width: 100%;
    justify-content: end;
    margin-top: 2rem;
}

.btn_bookNow .button {
    width: fit-content;
    padding: 1.25rem 2rem;

    font-family: poppins;
    font-weight: 300;
    font-size: 1.15rem;

    color: var(--color-bg-prim);
    background: linear-gradient(289deg, rgba(235, 193, 120, 1) 0%, rgb(143, 109, 84) 100%);
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);

}

.store-socials {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
}

.store-socials .social-icon {
    padding: .35rem;
}

/*Find us*/

#find-us {
    position: relative;
    display: flex;
    width: 100%;
    padding: 5rem 0;
    height: fit-content;
    background-image: url(../images/stock/contact-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    filter: sepia(20%);

    z-index: 0;

}

#find-us::before {
    content: '';
    position: absolute;

    width: 100%;
    height: 100%;
    z-index: -1;

    background-size: contain;
}

#find-us .col {
    width: 100%;
    height: 100%;
    justify-content: end;

    max-width: 100%;
    margin: 0;
}

#find-us .row {
    padding: 0;
}


.contact-container {
    display: flex;
    position: relative;
    width: fit-content;
    min-width: 380px;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem;
    background-color: #f3efe8;
    color: var(--color-bg-secondary);
    z-index: 1;
}


/* Form */
.contact-form {
    display: flex;
    position: relative;
    width: fit-content;

    justify-content: space-between;
    align-items: center;
    align-self: center;
    flex-direction: column;
}

/* Heading */
.contact-heading {
    width: 100%;
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 300;
    color: #1c1818;
    margin-bottom: 1rem;
}

.form_tag {
    font-family: poppins;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
    justify-self: start;
    align-self: flex-start;
    margin: 0 .25rem;
}

/* Inputs & Textarea */
.contact-input {
    width: 100%;
    max-width: 490px;
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #000;
    font-family: var(--font-secondary);
    font-weight: 300;
    padding: .75rem;
    background-color: #ddd9c3;
}

.contact-textarea {
    width: 100%;
    max-width: 490px;
    margin: 0.25rem 0;
    font-size: 1rem;
    color: #000;
    font-family: var(--font-secondary);
    font-weight: 300;
    padding: .5rem;
    background-color: #ddd9c3;
    overflow: scroll;
}

.contact-input {
    height: 2.75rem;
}

.contact-textarea {
    height: 5rem;
    font-size: 1rem;
    resize: none;
}

/* Submit Button */
.contact-button {
    display: flex;
    width: 100%;
    max-width: 150px;
    margin: 1rem 0;
    padding: 1.15rem 3rem;
    align-self: flex-end;
    font-family: poppins;
    font-weight: 300;
    font-size: 1.15rem;
    align-content: center;
    justify-content: center;
    color: var(--color-bg-prim);
    background: linear-gradient(289deg, rgba(235, 193, 120, 1) 0%, rgb(143, 109, 84) 100%);
    transition: all .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    box-shadow: 0px 2px 2px rgba(75, 60, 50, 0.398);
}

#section-storeHours {
    min-height: 30dvh;
    margin-bottom: clamp(2rem, 2vw, 3rem);
    justify-content: center;
    align-items: center;
    color: rgba(39, 17, 10, 0.7);
}

#section-storeHours .col {
    height: fit-content;
}

.store-clock {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 100%;
    min-width: 430px;
    margin-top: 5rem;
}

.info-hours {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-size: .8rem;
    color: #0a0402;

}

.store-status {
    display: none;
}

.store-status.active {
    display: block;
}

.clock {
    position: absolute;
    width: 20%;
    aspect-ratio: 1;
    left: 50%;
    top: 0;

    margin-left: -10%;

    border: 1.5px solid rgb(37, 31, 31);
    border-radius: 50%;
    top: 0;
    z-index: 0;

}

.hour-hand {
    position: absolute;
    width: 4px;
    height: 35%;

    top: calc(50% - 2px);
    left: calc(50% - 2px);
    transform-origin: 2px 2px;
    border-radius: 15rem;

    background: rgb(75, 58, 58);
}

.mint-hand {
    position: absolute;

    width: 2px;
    height: 45%;

    top: calc(50% - 1px);
    left: calc(50% - 1px);

    transform-origin: 1px 1px;
    background: rgb(34, 28, 28);
    border-radius: 15rem;

    z-index: 1;
}

.sec-hand {
    position: absolute;

    width: 1px;
    height: 45%;

    top: calc(50% - 1px);
    left: 50%;

    transform-origin: 0px 1px;
    background: rgb(34, 28, 28);
    border-radius: 15rem;
    z-index: 1;
}

.store-clock img {
    width: 100%;
}

.container_storeHours {
    display: flex;
    width: 100%;
    height: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-contact,
.info-location {
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}

.info-contact .section-title {
    margin: .5rem 0;
}

.info-phone,
.info-email {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.info-email .section-title,
.info-phone .section-title {
    font-family: var(--font-secondary);
    letter-spacing: 1px;
}

.info-phone h3::before,
.info-email h3::before {
    content: '';
    position: absolute;
    width: 95%;
    height: 1px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    background-color: rgba(165, 42, 42, 0.7);
}

.info-contact h3 {
    font-family: poppins;
    font-size: .75rem;
    opacity: 90%;
    margin: .25rem 0;
}



.info-location .section-title {
    height: fit-content;
    font-size: 3rem;
    letter-spacing: 3px;
    max-width: 250px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 3rem;
}

.info-address {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    text-align: center;
    font-family: var(--font-secondary);
    background-color: rgb(79, 72, 62);
    color: rgb(255, 239, 233);
}

.address-detail {
    width: 100%;
    padding: 1.5rem;
}

.address-gmap {
    width: 100%;
    padding: .5rem 0;
    border-top: black 1px solid;

    transition: background-color .3s cubic-bezier(0.19, 1, 0.22, 1);
}

#section-aboutPage-a {
    width: 100%;
    height: clamp(fit-content, 70dvh, 900px);
    margin-top: clamp(4rem, 30dvh, 12rem);

}

#section-aboutPage-a .col {
    justify-content: center;
    width: 100%;
    max-width: 1900px;
}

.aboutPage-a-img,
.aboutPage-b-img {
    height: 100%;
    max-width: 340px;
    margin: 3rem;
}

.aboutPage-a-content,
.aboutPage-b-content {
    width: 100%;
    height: 100%;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.aboutPage-a-img img,
.aboutPage-b-img img {
    width: 100%;
}

.aboutPage-a-txt-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}


.aboutPage-a-txt-container .section-title {
    line-height: .8;
    margin-bottom: 2rem;
    text-align: center;
    max-width: none;
}

.aboutPage-a-txt-container .section-para {
    max-width: 26ch;
    text-align: center;
    line-height: 1.6;
    max-width: none;

}

#section-aboutPage-b {
    height: clamp(fit-content, 50dvh, 700px);
    margin-bottom: clamp(3rem, 5dvh, 4rem);

}

#section-aboutPage-b .col {
    justify-content: center;
}

.aboutPage-b-txt-container {
    display: flex;
    flex-direction: column;
    height: fit-content;

}

.aboutPage-b-txt-container .section-title {
    line-height: .9;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3.25rem;
}

.aboutPage-b-txt-container .section-para {
    max-width: 500px;
    line-height: 1.7;
    text-align: center;

}




/*Media querries*/
@media screen and (min-width:720px) {
    html {
        font-size: 17px;
    }

    .prop-bg-stroke-right {
        left: auto;
        right: -15%;
        top: 0%;
        width: 40%;
        height: 40%;
        transform: translateX(25%);

    }

    .prop-bg-stroke-left {
        left: -10%;
        top: 90%;
        width: 40%;
        height: 40%;
        transform: translateX(-25%);

    }

    .prop-mod-top {
        bottom: 0;
        top: -10%;
    }

    .prop-mod-bottom {
        top: 80%;
    }


    /*Footer*/
    #footer {
        display: flex;
        height: 70dvh;
    }

    #footer .section-para {

        text-align: left;
    }

    .footer-about {

        justify-content: start;
        align-items: start;
    }

    /* .footer-headline h2::before {
        min-height: 2rem;
        width: 1px;
        left: -2rem;
        top: -0%;
        transform: translatey(-25%);
    } */

    .page-section {
        justify-content: space-around;
    }

    .col {
        justify-content: space-between;
        flex-direction: row;
        width: 90%;
    }

    .row {
        width: fit-content;
        height: 100%;
        padding: 2rem 0;
    }

    .row-100 {
        display: flex;
        width: 100%;
    }

    .row-70 {
        display: flex;
        width: 70%;
    }

    .row-50 {
        display: flex;
        width: 50%;
    }

    .row-30 {
        display: flex;
        width: 33%;
    }

    /*Utils*/
    /*Reset for horizontal*/
    .util-flex-order-first {
        order: 0;
    }

    .section-coming-title {
        font-size: 4rem;
    }

    /*Sections*/

    #section-banner .col {
        max-width: none;
        max-height: fit-content;
    }

    #section-banner .col::before {
        width: 100%;

        background: linear-gradient(-90deg, rgba(1, 1, 1, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(0, 0, 0, 0.7) 100%);
    }

    .content-hero {
        margin-left: clamp(5rem, 4dvw, 7rem);
    }

    #section-banner .section-title {
        max-width: 25ch;
        font-size: clamp(4rem, 2vw + 1rem, 8rem);
        font-weight: 300;
        align-self: auto;
        text-align: left;
    }

    .scrolly-content {
        width: 100%;
        height: 100%;
        overflow: hidden;

        bottom: auto;
        left: auto;
    }

    #scrolly-infoCards .scrolly-content {
        min-width: 100%;
    }


    .info-popup-container {
        margin-left: 0;
    }

    .feature-card {
        height: clamp(600px, 90vh, 800px);
    }

    .feature-card::before {

        filter: sepia(.1) saturate(.9) brightness(90%);
    }

    .fCard-content button {
        width: 50%;
        min-width: 13rem;
        align-self: center;
    }

    .fCard-content h2 {
        text-align: center;
        align-self: center;
        color: var(--color-bg-secondary);
        text-shadow: 1px 1px 10px rgba(169, 159, 159, 0.648);
    }

    #section-services {
        padding: 2rem;
    }

    #section-treatments {
        height: fit-content;
        min-height: 275px;
        padding: 0rem;

    }

    #section-treatments .row {
        padding: 1rem 2rem;
    }


    .g-margin {
        margin-top: 2rem;
    }

    .g-sml {
        height: 260px;
    }


    #section-services .col {
        justify-content: space-evenly;
    }

    #section-treatments .section-title {
        text-align: left;
        line-height: 1.2;
        max-width: 24ch;

    }

    .service-txt-container {
        width: 80%;
        height: 80%;
        margin-bottom: 15rem;
    }

    .service-txt-container .section-para {
        align-self: flex-start;
        text-align: left;
        max-width: 20ch;
    }

    .service-txt-container h2 {
        align-self: flex-start;
        text-align: left;
        width: 100%;
    }

    .service-txt-container h3 {
        margin: 1rem auto;
        text-align: center;
    }

    .btn_explrService {
        align-self: flex-start;

    }

    #section-inHouseProduct {
        max-height: 600px;
    }


    .inHouseProduct-txt-container {
        width: 90%;
    }

    .inHouseProduct-txt-container {
        align-items: start;
    }

    .inHouseProduct-txt-container .section-title,
    .inHouseProduct-txt-container .section-para {
        max-width: 60ch;
    }

    .inHouseProduct-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .btn_explrService {
        min-width: none;
    }

    .aboutStore-txt-container {
        width: 100%;
    }

    .aboutStore-txt-container .section-title {
        text-align: center;
        margin: auto;
        margin-bottom: 3rem;
    }

    .aboutStore-txt-container .section-para {
        margin: auto;
    }

    .contact-container {
        width: fit-content;
    }

    .info-hours {
        margin-bottom: 1.75rem;
        font-size: 1rem;
    }

    .store-status {
        margin: 0.25rem 0;
    }

    #section-storeHours .col {
        width: clamp(700px, 50%, 1200px);
    }

    .info-contact,
    .info-location {
        flex-direction: row;
        width: 90%;
    }

    .info-location .section-title {
        text-align: start;
    }

    .info-location .section-title {
        margin-bottom: 0;
    }

    .info-address {
        width: fit-content;
    }

    .aboutPage-a-content,
    .aboutPage-b-content {
        width: 90%;
        height: 100%;
        flex-direction: row;
    }

    .store-socials {
        justify-content: end;
        margin-top: 1rem;
    }



    .aboutPage-a-txt-container .section-title,
    .aboutPage-b-txt-container .section-title {
        text-align: start;
    }

    .aboutPage-a-txt-container .section-para,
    .aboutPage-b-txt-container .section-para {
        text-align: start;

    }


}



@media screen and (min-width:920px) {
    html {
        font-size: 18px;
    }

    header {
        height: fit-content;
    }

    .nav-menu {
        top: auto;
    }


    .btn-dropdown {
        font-size: 1.3em;

    }

    .btn-dropdown h3 {
        margin-right: auto;
        margin-left: 1rem;
        font-family: var(--font-secondary);
        font-size: .75em;
        font-weight: 300;
        align-self: center;
    }

    .col {
        width: 85%;
    }



    .fCard-content button {
        width: 60%;
    }


    .gallery {
        display: grid;
        grid-template-columns: repeat(2, 11rem);
        grid-gap: 2rem;
    }

    .g-sml {
        height: 340px;
    }

    #section-inHouseProduct .col {
        flex-direction: row;
    }

    #section-inHouseProduct .row-50 {
        width: 50%;
    }

    .contact-input,
    .contact-textarea {
        max-width: 15rem;
    }

    .contact-input {
        height: 2.1rem;
    }

    #section-aboutPage-a .col {
        justify-content: center;
        width: 90%;
        max-width: 1300px;
    }

    .aboutPage-a-img,
    .aboutPage-b-img {
        height: 100%;
        max-width: 400px;
    }
}

@media screen and (min-width:1500px) {

    .hamburger_menu-btn {
        display: none;
    }

    .logo {
        display: flex;
        justify-content: center;
        margin: 0 1.5rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;

        position: relative;

        height: auto;
        max-width: 100%;
        overflow: visible;

        align-items: center;
        justify-content: center;
    }

    .nav-menu-ul {

        width: 100%;
        margin-top: 0;
        margin-left: 0;
        padding: 0;

        flex-direction: row;
        justify-content: end;
        align-items: center;
        overflow-y: visible;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu-ul li {
        margin: 0 1rem;

    }

    .nav-menu li::after {
        height: 1px;
        width: 0%;

    }

    .nav-menu a {
        position: relative;
        font-weight: 300;
        font-size: .8rem;
        margin: 0;
        width: 100%;
        height: fit-content;
        text-align: center;
        align-items: center;
        justify-content: center;
    }


    .prop-bg-stroke-left {
        top: 10%;
        left: -20%;
    }

    .prop-mod-bottom {
        top: 70%
    }

    .col {
        flex-direction: row;
        width: 95%;
        max-width: 1200px;
    }

    #section-services {
        padding: 4rem;
    }

    #section-inHouseProduct {
        height: fit-content;
    }

    #section-inHouseProduct .inHouseProduct-txt-container {
        width: fit-content;
    }

    .btn_explrProd {
        align-self: flex-start;
    }

    .info-contact,
    .info-location {
        width: 100%;
    }


}

@media screen and (min-width:1920px) {
    html {
        font-size: 20px;
    }

    .feature-card {
        height: clamp(600px, 90vh, 1100px);
    }


    .gallery {
        display: grid;
        grid-template-columns: repeat(2, 17rem);
        grid-auto-rows: 21rem;
        grid-gap: 2.5rem;
    }

    #section-inHouseProduct {
        max-height: 900px;
    }
}

@media screen and (min-width:3840px) {
    html {
        font-size: 24px;
    }

    .col {
        max-width: 2000px;
    }

    .prop-bg-stroke-right {
        left: auto;
        width: 50%;
        height: 50%;
    }

    .prop-bg-stroke-left {
        width: 50%;
        height: 50%;
    }

    .fCard-content h2 {
        font-size: 2.75rem;
    }

    .fCard-content button {
        width: 50%;
        height: 7rem;
    }


    #section-treatments {
        min-height: 600px;
    }

    #section-aboutStore {
        height: 60dvh;
        min-height: 600px;
    }

    #section-features {
        height: 80dvh;
        max-height: 900px;
    }

    .aboutPage-a-img,
    .aboutPage-b-img {
        height: 100%;
        max-width: 685px;
    }
}

/* ===========================
   Hover-only styles (pointer devices)
   =========================== */
@media (hover: hover) {

    .button:hover {
        cursor: pointer;
        color: var(--color-bg-secondary);
        background-color: #dc9f66;
        box-shadow: 1px 1px 12px rgba(255, 198, 162, 0.276);
    }

    body::-webkit-scrollbar-thumb:hover,
    .main::-webkit-scrollbar-thumb:hover {
        background: #1e140e;
    }

    /* this was odd in your CSS; if you meant the button itself, use .hamburger_menu-btn:hover */
    .hamburger_menu-btn .hamburger_menu-btn:hover {
        cursor: pointer;
    }

    .hamburger_menu-btn:hover span {
        background-color: rgb(251, 255, 219);
    }

    .nav-menu .nav-menu-li:hover a::after {
        width: 100%;
    }

    .nav-menu a:hover {
        cursor: pointer;
    }

    .dd_item:hover {
        background-color: #dedad6;
        cursor: pointer;
    }

    .btn-dropdown:hover {
        background-color: rgb(186, 180, 178);
        user-select: none;
        cursor: pointer;
    }

    .btn_explrService:hover {
        white-space: nowrap;
        font-size: 0;
        color: rgba(245, 222, 179, 0);
    }

    .nav-menu-li .btn-dropdown:hover {
        background-color: #00000000;
    }

    .fCard-content .btn_explrService a:hover {
        color: var(--color-bg-secondary);
        background-color: #dc9f66;
    }

    .btn_explrService a:hover {
        background-color: #dfb25fec;
    }

    .gallery img:hover {
        transform: scale(1.25);
    }

    .gallery-item:hover {
        box-shadow: 2px 2px 15px rgba(60, 42, 34, 0.312);
        transform: scale(1.1) skew(-1deg);
    }

    .footer-nav a:hover {
        cursor: pointer;
        color: rgb(135, 94, 65);
    }

    .btn_bookNow .button:hover {
        cursor: pointer;
        color: #fbe7b3;
        background: none;
        background-color: #dfb25fec;
        scale: 1.05;
        box-shadow: 1px 1px 22px rgba(255, 198, 162, 1);
    }

    .address-gmap:hover {
        cursor: pointer;
        background-color: rgba(141, 128, 121, 0.928);
    }
}