* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
}

/* -----custom scrollbar----- */
/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 10px; /* width of the scrollbar */
}
::-webkit-scrollbar-track {
    background: #f0ebeb; /* color of the track (the area behind the scrollbar) */
}
::-webkit-scrollbar-thumb {
    background: #1f1e1f; /* color of the thumb (the draggable part of the scrollbar) */
    border-radius: 4px;
    border: 1px solid #f0ebeb;
}
::-webkit-scrollbar-thumb:hover {
    background: #555; /* color of the thumb on hover */
}
/* -----custom scrollbar----- */

/* ---------navbar-------------- */
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #1f1e1f;
}

body {
    background: #1f1e1f;
    overflow-x: hidden;
    font-size: calc(15px + 0.390625vw);
}

header {
    width: 100%;
    z-index: 101;
}

/* .solid-nav {
  box-shadow: 0 4px 64px rgba(14, 14, 28, 0.1);
  background: #1f1e1f;
  border-radius: 20px;
  top: 50px;
} */

.navbar {
    padding: 0.5em 0;
    width: 90%;
    height: auto;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#profile-image {
    border-radius: 50%;
    display: flex;
    margin: 5px 0;
    align-items: center;
    justify-content: center;
    height: 50px;
    object-fit: cover;
    aspect-ratio: 1/1;
    cursor: pointer;
    margin-right: 2rem;
}

.logout-symbol {
    color: white;
    font-size: 30px !important;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-height: 50px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (width <= 425px) {
    .logo img {
        max-height: 40px;
    }
}
.navbar .links {
    display: flex;
    gap: 0.1rem;
    align-items: center;
}

.navbar .toggle_btn,
#fixed-nav .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}
#fixed-nav .business {
    background-color: transparent;
}
.business {
    border-radius: 6px;
    padding: 0.8em 2.4em;
    font-size: 1rem;
    font-weight: 600;
    background-color: #1f1e1f;
    color: #fff;
    cursor: pointer;
    border: none;
}
.action_btn {
    background-color: #fff;
    color: #000 !important;
    font-weight: 600;
    padding: 0.8rem 2.4rem;
    border-radius: 6px;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    transition: scale 0.2 ease;
    border: none;
}
.highlight-text {
    background: linear-gradient(#845ec2, #d65db1, #ff6f91, #ff9671, #ffc75f);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    font-weight: 500;
}
form .business:hover {
    scale: 1.05;
}
form .business:active {
    scale: 0.95;
}
.business .fa-search {
    display: inline;
}
/* ---dropdown menu---- */

#fixed-dropdown,
.dropdown_menu {
    display: none;
    max-height: 0;
    border-radius: 10px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.dropdown_menu {
    width: 90%;
    margin: auto;
}

.dropdown_menu.open,
#fixed-dropdown.open {
    max-height: 100vh;
    z-index: 100;
}

.dropdown_menu li,
#fixed-dropdown li {
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown_menu .action_btn,
#fixed-dropdown .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}
.dropdown_menu .action_btn {
    max-width: 400px;
}
.dropdown_menu a,
#fixed-dropdown a {
    color: #fff;
}
.dropdown_menu .business,
#fixed-dropdown .business {
    padding: 0;
}

#fixed-nav-links {
    display: flex;
    align-items: center;
}

/* ----------responsive navbar----------- */
@media (max-width: 1500px) {
    .navbar .links,
    .navbar .business,
    .navbar .action_btn,
    #fixed-nav-links {
        display: none;
    }

    .navbar .toggle_btn,
    #fixed-content .toggle_btn {
        display: block;
    }

    .dropdown_menu,
    #fixed-dropdown {
        display: block;
    }
}
@media (max-width: 576px) {
    .navbar .logo a {
        font-size: 1rem;
    }
}
/* ----------responsive navbar----------- */
/* ---------navbar-------------- */

/* ----fixed navbar------- */
#fixed-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(34, 34, 34, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 6px;
    width: 60vw;
}

#fixed-nav img {
    height: 40px;
}
#fixed-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 576px) {
    #fixed-nav {
        width: 95%;
    }
}
/* ----fixed navbar------- */

h1 {
    font-size: 2.4em;
    font-weight: 400;
}

#typed {
    font-weight: 700;
}
h2 {
    font-size: 2em;
    font-weight: 400;
    letter-spacing: -2px;
}
h3 {
    font-size: 1.6rem;
}
p {
    font-size: 16px;
}
.main-card {
    position: relative;
    width: 98vw;
    height: auto;
    margin: auto;
    background-color: #f8f8f8;
    border-radius: 1.5em;
    overflow: hidden;
}
/* ------landing-page------- */
#landing-page {
    margin: 3vw;
    position: relative;
    height: auto;
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
}

#leaves-top-right {
    position: absolute;
    width: 27%;
    rotate: 90deg;
    z-index: 1;
    right: -6vw;
    top: -3vw;
}

#beauty-tools {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}
#beauty-tools img {
    object-fit: cover;
    width: 100%;
    z-index: 2;
    filter: brightness(1);
}

#landing-page-container {
    width: 100%;
    margin: auto;
    gap: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#landing-page h1 {
    color: #1f1e1f;
    letter-spacing: -1px;
}
@media screen and (max-width: 990px) {
    #landing-page {
        flex-direction: column;
    }
    #leaves-top-right {
        display: none;
    }
}

#landing-text {
    width: 95%;
}
/* ------landing-page------- */
/* ------form----------- */
.form-inline {
    width: 95%;
    position: relative;
    display: flex;
    justify-content: space-around;
    gap: 25px;
    padding: 24px 20px;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.31);
    z-index: 10;
}
.filter-input {
    position: sticky;
    top: 0;
    width: 96%;
    margin: 0px 2% 10px;
    padding: 8px 4px;
    box-shadow: 0px 0px 0 10px #fff;
}
.select {
    position: relative;
    width: 100%;
}

.select-text {
    position: relative;
    background-color: transparent;
    width: 100%;
    padding: 10px 10px 10px 0;
    font-size: 18px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

/* Remove focus */
.select-text:focus {
    outline: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

/*custom arrow */
.select .select-text {
    appearance: none;
    -webkit-appearance: none;
}

.select.-treatment::after {
    position: absolute;
    top: 18px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

/* LABEL ======================================= */
.select-label {
    color: rgba(0, 0, 0, 0.26);
    font-size: 18px;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 10px;
    transition: max-width 0.2s ease all;
}

/* active state */
/* .select-text:hover ~ .select-label, */

.select.active > .select-label {
    color: #1f1e1f;
    top: -18px;
    transition: 0.5s ease all;
    font-size: 15px;
    font-weight: 600;
}

/* BOTTOM BARS ================================= */
.select-bar {
    position: relative;
    display: block;
    width: 100%;
}

.select-bar:before,
.select-bar:after {
    content: "";
    height: 2px;
    bottom: 1px;
    position: absolute;
    background: #1f1e1f;
    width: 0;
    transition: width 0.5s ease;
}

.select-bar:before {
    left: 50%;
    transform-origin: right;
}

.select-bar:after {
    right: 50%;
    transform-origin: left;
}

/* active state */
.select.active > .select-bar:before,
.select.active > .select-bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.selector-options {
    padding: 5px 0;
    margin: 0;
    border-radius: 10px;
    overflow-y: auto;
    max-height: 240px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50px;
    background: rgb(255, 255, 255);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.2px);
    -webkit-backdrop-filter: blur(7.2px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 11;
}

.selector-options li {
    font-size: 16px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 4px 15px;
    cursor: pointer;
    color: #1f1e1f;
    text-transform: capitalize;
    z-index: 11;
}
.selector-options li:hover {
    background: #ddd;
}
@media screen and (max-width: 1500px) {
    .form-inline {
        flex-direction: column;
        align-self: flex-start;
        max-width: 500px;
    }
}
@media screen and (max-width: 990px) {
    .form-inline {
        align-self: center;
        max-width: 100%;
    }
}
/*-----------------------------*/

/* ----------us----------- */
#us {
    margin: 5vw auto;
    gap: 3vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1400px;
}
#us h2 {
    color: #1f1f1f;
    text-align: center;
}
#us h3 {
    color: #1f1f1f;
    font-weight: 400;
    letter-spacing: -1px;
    text-align: center;
    font-size: 1.2em;
}
.us-container {
    margin-top: 4vh;
    display: flex;
    gap: 2.2rem;
}
.us-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1rem;
    border-radius: 6px;
    color: #2b2b2b;
    overflow: none;
    flex: 1;
    flex-wrap: wrap;
    padding: 1.5rem;
    border-radius: 3rem;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 40ch;
}
.us-card div p {
    font-size: 1.1rem;
}
.us-card img {
    max-width: 100px;
    width: 100%;
}
@media screen and (max-width: 760px) {
    .us-container {
        flex-direction: column;
    }
}
/* -----get the app----- */

#get-the-app {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5vw auto;
    gap: 4rem;
    max-width: 1400px;
    width: 90vw;
}

.app-text {
    width: 100%;
    color: #010116;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    color: #fff;
}
.app-text p {
    font-size: 1em;
    opacity: 0.9;
}
.download-btns {
    display: flex;
    gap: 1rem;
}
.download-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 6px;
    padding: 10px;
    background-color: #fff;
    font-size: 1rem;
}
.download-btns img {
    object-fit: cover;
    height: auto;
    filter: drop-shadow(1px 1px 0 #1f1e1f);
    margin-right: 0.4em;
}
#mobile-display video {
    max-width: 350px;
    width: 55%;
}
#mobile {
    object-fit: cover;
    width: 35%;
    /* filter: drop-shadow(10px 10px 20px #3b3b3b); */
}
#mobile-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: auto;
    max-width: 500px;
}

@media screen and (max-width: 1200px) {
    #get-the-app {
        flex-direction: column;
    }
}
/* -----get the app----- */

/* ---reviews--- */
#reviews {
    display: flex;
    align-items: center;
    margin: 7vw;
    /* width: 100%; */
    height: 100%;
    gap: 2em;
}
#reviews-text {
    width: 100%;
    height: min-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5em;
}
#reviews-bubbles {
    width: 100%;
    height: 350px;
    position: relative;
    display: flex;
    /* padding: 100px; */
}
.bubble {
    position: absolute;
    width: fit-content;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: inset 0 5px 32px 12px #ffffff52, inset 0 1px 4px #ffffff70;
    padding: 23px;
    border-radius: 100px;
    transition: all 0.5s;
    overflow: hidden;
    /* font-size: 1rem; */
}
.bubble:hover {
    transform: scale(1.1);
    z-index: 10;
}
.bubble.no1 {
    background-color: #ff6500;
    top: -30px;
    left: 220px;
    rotate: 4deg;
    z-index: 1;
}

.bubble.no2 {
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #ff60ee;
    rotate: -4deg;
    z-index: 2;
}

.bubble.no3 {
    position: absolute;
    top: 150px;
    left: 100px;
    background-color: #8c64ff;
    rotate: 4deg;
}

.bubble.no4 {
    position: absolute;
    top: 220px;
    left: 0;
    background-color: #0045f9;
    rotate: 4deg;
}

.bubble.no5 {
    position: absolute;
    top: 270px;
    left: 200px;
    background-color: #ff0f0f;
    rotate: -4deg;
}
@media screen and (max-width: 1100px) {
    #reviews {
        flex-direction: column;
    }
}
@media screen and (max-width: 575px) {
    .bubble.no1,
    .bubble.no5 {
        left: 120px;
    }
}
@media screen and (max-width: 480px) {
    .bubble {
        font-size: 0.9em;
        padding: 20px;
    }
    .bubble.no1 {
        top: 0;
        left: 20px;
    }
    .bubble.no2 {
        top: 70px;
    }
    .bubble.no3 {
        top: 130px;
        left: 20px;
    }
    .bubble.no4 {
        top: 190px;
    }
    .bubble.no5 {
        left: 20px;
        top: 240px;
    }
}
@media screen and (max-width: 330px) {
    .bubble {
        padding: 20px;
    }
}
/* -------featured----- */
#featured {
    /* margin: 15vw auto 0; */
    /* padding-bottom: 5vw; */
    padding: 5vw 0;
    width: 100%;
    height: auto;
}

#featured h2 {
    text-align: center;
}

.swiper {
    margin: 5vh auto;
    width: 100%;
    height: auto;
}

.swiper-slide {
    max-width: 320px;
    max-height: 400px;
}

.card {
    position: relative;
    width: 320px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.card .imgBx img {
    position: relative;
    width: 100%;
    height: 240px;
    border-bottom: 1px solid #fff;
    object-fit: cover;
    overflow: none;
}

.card .content {
    position: relative;
    width: 100%;
    height: 150px;
    background: #1f1e1f;
    border-radius: 0 0 10px 10px;
    display: flex;
}

.card .content .card-rating {
    position: absolute;
    padding: 0.5em;
    top: 0;
    right: 0;
    color: #fff;
}
.card i {
    color: rgb(196, 136, 25);
}
.card-rating {
    font-size: 0.9em;
}

.card .content .business-logo {
    position: absolute;
    top: -40px;
    left: 20px;
    width: 80px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
}

.card .content .business-info {
    color: #fff;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 0 8px 10px;
}
.business-info h5 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
}
.business-info address.shop-address {
    font-size: 14px;
    opacity: 0.85;
}
.business-info p.shop-kind {
    font-size: 14px;
    letter-spacing: -0.5px;
    margin-top: auto;
    width: fit-content;
    border-radius: 4px;
    padding: 0.25rem;
    background-color: rgba(255, 255, 255, 0.3);
}
.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    max-width: fit-content;
}
/* -------featured----- */

/* -------blog----- */
#blog {
    margin: 5vw auto;
    width: 90%;
    max-width: 1400px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3vh;
}
#blog h2 {
    text-align: center;
}

#blog h3 {
    color: #1f1f1f;
    font-weight: 400;
    letter-spacing: -1px;
    text-align: center;
    font-size: 1.2em;
}

.blog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    flex-wrap: wrap;
    margin-top: 2rem;
    width: 100%;
}

.blog-container .blog-card-link {
    flex: 1 1 30%; /* grow/shrink, base size */
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
}

@media (max-width: 700px) {
    .blog-container .blog-card-link {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .us-card {
        max-width: 100%;
    }
}

.blog-card img {
    aspect-ratio: 16/9;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
}

.blog-card .blog-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-card .address {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 16px;
}

.blog-btn {
    margin-top: 2rem;
    border-radius: 6px;
    padding: 0.8em 2.4em;
    font-size: 1rem;
    font-weight: 600;
    background-color: transparent;
    border: 1px solid #1f1e1f;
    color: #1f1e1f;
    cursor: pointer;
}

/* -------blog----- */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 4rem 0 1rem;
    color: #fff;
    gap: 5em;
    width: 100%;
}
#footer-links a {
    color: #fff;
}
#download {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}
#footer-links {
    width: 90%;
    display: flex;
    /* align-items: center; */
    justify-content: space-evenly;
    font-size: 15px;
    line-height: 1.1em;
    flex-wrap: wrap;
    gap: 1em;
}
.footer-col:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6em;
}

#copyright {
    font-size: 14px;
}

.footer-col a {
    display: block;
    margin-bottom: 0.3em;
}
.footer-col h4 {
    margin-bottom: 0.5em;
    color: rgb(100, 112, 132);
}

.footer-col h3 {
    margin-bottom: 0.5em;
    color: rgb(100, 112, 132);
}

.footer-col hr {
    width: 70%;
    margin: 0 auto;
}
.footer-col .footer-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}
.footer-col .footer-icons i {
    font-size: 25px;
}

@media (width < 465px) {
    #footer-links {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
