* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
    line-height: 1.5;
}

:root {
    --color-primary: #101010;
    --color-gold: #D4AF37;
    --color-copper: #5C3033;
    --color-secoundary: #EEE5E9;

    --color-gradient: linear-gradient(to right, #0093D9, #8BDAFF, #0093D9);

    --color-text: #2E2E2E;

    --primary-gradient: linear-gradient(to top, rgba(48, 51, 61), #99645a, #fc9a84);

    --image-score: #33333369;
}

::-webkit-scrollbar {
    width: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    color: var(--color-text);
    text-decoration: none;
}

body {
    background: #fff;
    font-family: "Poppins", serif;
    color: #2E2E2E;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ------------------------------PRE-LOADER--------------------------------- */

.pre_loder {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 8.5rem;
    position: fixed;
    justify-content: center;
    align-items: center;
    background: black;
    top: 0;
    left: 0;
    z-index: 2000;
    transition: display 1s ease;
}

.pre_loder .loder_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pre_loder .ring {
    width: 12rem;
    height: 12rem;
    border: 0px solid black;
    border-radius: 50%;
    position: absolute;
}

.pre_loder .ring:nth-child(1) {
    border-bottom-width: 8px;
    border-color: #0093D9;
    animation: loader1 1s linear infinite;
}

.pre_loder .ring:nth-child(2) {
    border-right-width: 8px;
    border-color: #0093D9;
    animation: loader2 1s linear infinite;
}

.pre_loder .ring:nth-child(3) {
    border-top-width: 8px;
    border-color: #0093D9;
    animation: loader3 1s linear infinite;
}

.pre_loder .name {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pre_loder .name span {
    width: fit-content;
    font-optical-sizing: auto;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes loader1 {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes loader2 {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes loader3 {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

.meta_to_crm {
    width: 100vw;
    height: 100vh;
    z-index: 1000000;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
}
.meta_to_crm .continer {
    padding: 1rem;
    width: 90vw;
    margin: auto;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    text-align: center;
    border-radius: 1rem;
}
.meta_to_crm .continer .top {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.meta_to_crm .continer .sub {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.75;
}
.meta_to_crm .continer .btn {
    width: fit-content;
    padding: 0.25rem 1.5rem;
    margin: 0.75rem auto;
    margin-top: 1.25rem;
    background: #0093D9;
    color: #fff;
    border-radius: 3rem;
    font-weight: 700;
}
.meta_to_crm .continer p {
    opacity: 0.75;
    text-align: center;
}


nav {
    position: fixed;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    background: #000;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    z-index: 110;
    box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.5);
    height: 2.75rem;
    overflow: hidden;
}

nav .nav_head {
    font-size: 1.4rem;
    text-align: center;
    margin: 0.5rem 2rem;
    font-weight: 600;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    transition: transform 0.5s ease;
    overflow: hidden;
}

nav .nav_head.poped {
    transform: translateY(-2.17rem);
}

nav .nav_head aside {
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

nav .nav_head aside:first-of-type {
    margin-bottom: 0.5rem;
}

nav .nav_head span {
    font-size: 1.1rem;
}

.nav_pop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
    z-index: 100;
    color: #000;
}

.nav_pop.visible {
    display: block;
    opacity: 1;
}

.nav_pop .cover_pop {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
}

.nav_pop .logo_pannel {
    width: 90vw;
    margin: auto;
    margin-bottom: 2rem;
}

.nav_pop .logo_pannel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nav_pop .container {
    display: grid;
    gap: 1.5rem;
    width: 93%;
    margin: auto;
}

.nav_pop .container a {
    margin: auto;
    width: 100%;
    padding-left: 0.75rem;
    padding-bottom: 0.3rem;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    border-bottom: 2px solid #000;
    border-image: var(--color-gradient);
    border-image-slice: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav_pop .container a i {
    margin-right: 0.75rem;
}

.nav_pop .container a .arrow {
    margin-left: auto;
}

.nav_pop .contacts {
    margin: 3rem auto;
    width: 93%;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid #000;
    /*  border-image: var(--color-gradient);
    border-image-slice: 1; */
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    font-size: 2.15rem;
}

.nav_pop .contacts a {
    color: #0093D9;
}

.order_flot {
    position: fixed;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: top;
    z-index: 5;
    box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.75);
}

.order_flot .icon {
    font-size: 1.65rem;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotateZ(0deg);
}

.order_flot .icon.animate {
    animation: order_flot 1s ease-in-out;
}

@keyframes order_flot {
    0% {
        transform: rotateZ(0deg);
    }

    25% {
        transform: rotateZ(25deg);
    }

    75% {
        transform: rotateZ(-25deg);
    }

    100% {
        transform: rotateZ(0deg);
    }
}

.home_banner {
    width: 100vw;
}

.home_banner.mob {
    display: block;
}
.home_banner.desk {
    display: none;
}


.home_banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

.home_banner .top_spacer {
    width: 100%;
    height: 2.5rem;
    background: #1a2d3b;
}

.home_banner aside {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.home_banner .top_head {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
    width: 95%;
    margin: auto;
    letter-spacing: 0.05rem;
    text-shadow: 0 0 1.5px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.home_banner .sub_head {
    margin: 1rem 0;
    font-family: "Lobster", sans-serif;
    font-style: normal;
    font-size: 1.4rem;
    text-shadow: 0 0 1.5px rgba(0, 0, 0, 0.5);
}

.home_banner .logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0093D9;
    background: linear-gradient(to right, #0070a3, #0093D9, #004d70);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wrap_moments {
    margin: auto;
    margin-top: 2rem;
    width: 92.5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 0.5rem;
}

.wrap_moments aside {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.wrap_moments aside .img {
    width: 95%;
    height: 6.5rem;
    background: #33333369;
    border-radius: 0.5rem;
    overflow: hidden;
}

.wrap_moments article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.wrap_moments article .head {
    font-size: 1.25rem;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.2;
}

.wrap_moments article .head .styl {
    font-family: "Lobster", sans-serif;
    font-style: normal;
    font-weight: 100;
}

.wrap_moments article .cont {
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
}

.wrap_moments article .btn {
    letter-spacing: 2px;
    background: black;
    padding: 0.2rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0.25rem;
}

.wrap_moments article .btn span {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.best_seller {
    margin: auto;
    margin-top: 2rem;
    width: 92.5vw;
    text-align: center;
}

.best_seller .head {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.best_seller .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.best_seller .container article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.best_seller .container article .img {
    width: 9rem;
    height: 9rem;
    background: #33333369;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
}

.best_seller aside {
    display: flex;
    align-items: center;
}

.best_seller aside .topic {
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 1px solid var(--color-text);
    width: fit-content;
    margin: auto;
    margin-bottom: 0.25rem;
    color: #004d70;
}

.best_seller aside .cont {
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
}


.cate_hmpg {
    margin: auto;
    margin-top: 2rem;
    width: 92.5vw;
    text-align: center;
}

.cate_hmpg .head {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.cate_hmpg .pannel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.cate_hmpg a {
    position: relative;
    overflow: hidden;
}

.cate_hmpg a .img {
    width: 97.5%;
    height: 8rem;
    margin: auto;
    background: var(--image-score);
    border-radius: 0.5rem;
    overflow: hidden;
}

.cate_hmpg a .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: fit-content;
    background: rgb(0, 0, 0);
    padding: 0 0.5rem;
    border-top-right-radius: 0.5rem;
}

.cate_hmpg a .title span {
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cate_hmpg .see_mr_btn {
    margin: auto;
    margin-top: 1rem;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid;
    font-size: 0.9rem;
}

.passage_hmpg {
    margin: auto;
    margin-top: 2rem;
    width: 91vw;
}

.passage_hmpg .hmpg_img img{
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.passage_hmpg .head {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.passage_hmpg .cont {
    font-size: 0.8rem;
    line-height: 1.7;
    letter-spacing: 0.05rem;
    text-align: justify;
}

.passage_hmpg .pannel {
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    letter-spacing: 0.05rem;
}

.passage_hmpg .pannel .top {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.passage_hmpg .pannel .sub {
    font-size: 0.8rem;
}

.passage_hmpg .about_mr_btn {
    margin: auto;
    margin-top: 1rem;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid;
    font-size: 0.9rem;
}

.bookus {
    position: relative;
}

.bookus .go_back {
    position: absolute;
    left: 1.5rem;
    top: -2.5rem;
    font-size: 1.15rem;
}

.bookus .banner {
    width: 95vw;
    margin: auto;
    margin-top: 3.5rem;
    height: 13rem;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    text-align: center;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.bookus .banner::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/index/contsct_banner.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
}

.bookus .banner span {
    margin: auto;
    width: 100%;
    font-size: 1.5rem;
    font-family: "Lobster", sans-serif;
    font-style: normal;
    font-weight: 100;
    z-index: 1;
    color: #fff;
    background: #006fa38a;
    padding: 0.25rem 5%;
}

.bookus .contacts,
.contacts_uni {
    margin: 1rem auto;
    width: 92.5%;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 0.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    font-size: 2rem;
}

.contacts_uni.cate {
    width: 97.5%;
    margin-top: 2rem;
}

.contacts_uni.index {
    margin-top: 2rem;
}

.bookus .contacts {
    width: 95%;
    border-radius: 0.75rem;
}

.contacts_uni a,
.bookus .contacts a {
    color: #0093D9;
    font-size: 2.15rem;
}

.bookus .form {
    width: 95vw;
    margin: auto;
    padding: 0.75rem;
    background: #fff;
    border: 1.5px solid rgb(0, 0, 0);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bookus .form>* {
    width: 100%;
}

.bookus .form .head {
    font-weight: 400;
    letter-spacing: 1px;
}

.bookus .form input,
.bookus .form .pin_location {
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #000000;
    padding: 0 0.75rem;
    padding-top: 0.25rem;
    font-size: 1.2rem;
    color: var(--color-text);
    letter-spacing: 1px;
}

.bookus .form .mobile span {
    display: flex;
    letter-spacing: 5px;
}

.bookus .form .mobile span input {
    letter-spacing: 5px;
}

.bookus .form .mobile span label {
    border-bottom: 1px solid #000000;
    padding-top: 0.25rem;
    padding-left: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.75;
}

.bookus .form .pincode input {
    letter-spacing: 5px;
}

.bookus .form .pin_location {
    border-bottom: 1px solid #0000;
}

.bookus .pincode_error {
    display: none;
    margin: -0.5rem 0;
    margin-left: 0.5rem;
    font-weight: 600;
    color: rgb(241, 3, 3);
    letter-spacing: 1px;
}

.bookus .form .event {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.2rem 0.5rem;
    font-weight: 700;
    background: transparent;
    margin-top: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid black;
    color: #000000;
    letter-spacing: 1px;
}

.bookus .form .event option {
    font-size: 1rem;
}

.bookus .form .types {
    display: flex;
    flex-wrap: wrap;
    margin: 0.25rem 0;
    margin-bottom: 0;
}

.bookus .form .types .box {
    margin: 0.35rem 0.2rem;
    background: transparent;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
}

.bookus .form .types .box i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.bookus .form .types .box_null {
    font-weight: 800;
    margin-left: 0.75rem;
}

.bookus .form .book_now {
    width: fit-content;
    margin: auto;
    margin-bottom: 0.5rem;
    background: black;
    padding: 0.25rem 2rem;
    border-radius: 0.5rem;
    color: black;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.bookus .form .book_now span {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bookus .fill_all_error {
    display: none;
    margin: -0.5rem 0;
    margin-bottom: 0.25rem;
    text-align: center;
    font-weight: 600;
    color: rgb(241, 3, 3);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.bookus .booked_pop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1;
    display: none;
}

.bookus .booked_pop.active {
    display: block;
}

.bookus .booked_pop .blur {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9;
}

.bookus .booked_pop .container {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92vw;
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
}

.bookus .booked_pop .container.loading {
    display: block;
}

.bookus .booked_pop .container.loaded_order {
    display: none;
}

.bookus .booked_pop .container .brief {
    text-align: justify;
    font-weight: 300;
}

.bookus .booked_pop .container .btn {
    width: fit-content;
    padding: 0.2rem 1.5rem;
    margin: auto;
    background: black;
    color: #fff;
    border-radius: 0.5rem;
    font-weight: 700;
    margin-top: 0.75rem;
}


.cate_ctpg {
    margin: auto;
    margin-top: 3.5rem;
    width: 92.5vw;
    text-align: center;
    min-height: 90vh;
}

.cate_ctpg .head {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.cate_ctpg .pannel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.cate_ctpg a {
    position: relative;
    overflow: hidden;
}

.cate_ctpg a .img {
    width: 97.5%;
    height: 8rem;
    margin: auto;
    background: var(--image-score);
    border-radius: 0.5rem;
    overflow: hidden;
}

.cate_ctpg a .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: fit-content;
    background: rgb(0, 0, 0);
    padding: 0 0.5rem;
    border-top-right-radius: 0.5rem;
}

.cate_ctpg a .title span {
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.sec_ctpg {
    margin: auto;
    margin-top: 3.5rem;
    width: 92.5vw;
    text-align: center;
}

.sec_ctpg .head {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    width: 100%;
    position: relative;
}

.sec_ctpg .head .go_back {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.sec_ctpg .pannel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.sec_ctpg article {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sec_ctpg article .img {
    width: 97.5%;
    height: 9rem;
    margin: auto;
    background: var(--image-score);
    border-radius: 0.5rem;
    overflow: hidden;
}

.sec_ctpg article .title {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 97.5%;
    background: rgba(0, 0, 0, 0.8);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.sec_ctpg article .title span {
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec_ctpg .product_pop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 20;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sec_ctpg .product_pop.active {
    display: block;
    opacity: 1;
}

.sec_ctpg .product_pop .blur {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9;
}

.sec_ctpg .product_pop .container {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92vw;
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
}

.sec_ctpg .product_pop .container .img {
    width: 12rem;
    height: 12rem;
    background: var(--image-score);
    margin: auto;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.sec_ctpg .product_pop .container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sec_ctpg .product_pop .container .p_name {
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.sec_ctpg .product_pop .container .brief {
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sec_ctpg .product_pop .container .brief p {
    text-align: initial;
    font-size: 0.9rem;
}

.sec_ctpg .product_pop .container .close_btn {
    width: 2rem;
    height: 2rem;
    background: transparent;
    color: #000000;
    font-size: 1.3rem;
    font-weight: 900;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sec_ctpg .product_pop .container .btn_toggle {
    height: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin: auto;
    margin-top: 0.5rem;
    background: black;
    width: fit-content;
    border-radius: 0.35rem;
    width: 85%;
    overflow: hidden;
    cursor: pointer;
}

.sec_ctpg .product_pop .container .add_to_btn {
    height: 2rem;
    padding: 0.2rem 2.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.sec_ctpg .product_pop .container .btn_toggle.added .add_to_btn {
    transform: translateY(-2rem);
}

.sec_ctpg .product_pop .container .add_to_btn span {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}


.about_pg .logo_banner {
    margin: auto;
    margin-top: 2.5rem;
    width: 90vw;
    padding: 1rem;
}

.about_pg .logo_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about_pg article {
    width: 92.5%;
    margin: 2rem auto;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.45);
    border-radius: 0.5rem;
    overflow: hidden;
}

.about_pg article .head {
    text-align: center;
    font-family: "Lobster", sans-serif;
    font-style: normal;
    font-size: 1.85rem;
    padding: 0.25rem 0;
    background: black;
}

.about_pg article .head span {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about_pg article .content {
    text-align: justify;
    padding: 0.75rem 1rem;
    opacity: 0.9;
}

.about_pg .story {
    margin-top: 0.5rem;
    padding-top: 0;
}

.about_pg span {
    font-weight: 600;
}

.about_pg .vis_mis span {
    letter-spacing: 1px;
}


.track_order {
    margin: auto;
    margin-top: 3.5rem;
}

.track_order .head {
    font-size: 1.25rem;
    letter-spacing: 1px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.track_order .order_pannel {
    margin: 1rem auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 95vw;
}

.track_order .order_pannel .no_order {
    margin: 1rem auto;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 0.75rem 0.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.45);
    font-size: 1rem;
    text-align: center;
    width: 100%;
    letter-spacing: 2px;
}

.track_order .order_pannel article {
    display: grid;
    grid-template-columns: 1fr;
    background: rgba(0, 0, 0);
    color: #fff;
    padding: 0.75rem 0.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.45);
    font-size: 0.9rem;
    height: 4.1rem;
    overflow: hidden;
}

.track_order .order_pannel article.active {
    height: fit-content;
}

.track_order .order_pannel .pannel {
    display: grid;
    grid-template-columns: 20% 55% 25%;
    padding-bottom: 0.75rem;
}

.track_order .order_pannel article .date {
    text-align: center;
    letter-spacing: 1px;
}

.track_order .order_pannel article .details {
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.track_order .order_pannel article .details .booked_type {
    font-weight: 600;
}

.track_order .order_pannel article .status {
    text-align: center;
}

.track_order .order_pannel .ext_container {
    background: #fff;
    color: #000;
    height: max-content;
    margin: 0 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.track_order .order_pannel .ext_container .topic {
    font-weight: 600;
}

.track_order .order_pannel .ext_container .products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.track_order .order_pannel .ext_container .products .span {
    background: transparent;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    border-radius: 0.35rem;
    width: fit-content;
}


footer {
    background: white;
    padding-bottom: 3.25rem;
    color: #000;
    margin-top: 2.5rem;
}

footer a {
    color: #000;
}

footer .comp_prl {
    width: 90%;
    margin: auto;
    margin-bottom: 2rem;
}

footer .comp_prl .logo {
    width: 90%;
    margin: auto;
}

footer .comp_prl .content {
    font-size: 0.9rem;
    text-align: justify;
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.95);
}

footer .comp_prl .content span {
    color: rgba(255, 255, 255);
    font-weight: 600;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .links,
footer .need_hlp {
    text-align: center;
    margin-bottom: 2.5rem;
}

footer .links .head,
footer .need_hlp .head {
    font-size: 1.25rem;
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 1.2;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .links .container,
footer .need_hlp .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0.75rem 0;
    letter-spacing: 1px;
}

footer .links .container a {
    width: fit-content;
    border-bottom: 1px solid #fff;
    margin: auto;
    padding: 0 0.5rem;
    letter-spacing: 2px;
}

footer .need_hlp .container p {
    letter-spacing: 2px;
}

footer .designer_info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
}

footer .designer_info .sub_links {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

footer .designer_info .sub_links .st_mp {
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    padding: 0 0.5rem;
    margin: 0 0.5rem;
}

footer .promo {
    margin-bottom: 2.5rem;
    text-align: center;
}

footer .promo .top {
    font-size: 1.5rem;
    font-family: "Lobster", sans-serif;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .promo .comp {
    font-size: 1.25rem;
    font-weight: 600;
}


/*----------------- FOR DESKTOP LAPTOPS ----------------------*/

@media (min-width: 768px) {
    .nav_pop .logo_pannel {
        width: 28vw;
        margin: auto;
        margin-bottom: 0.5rem;
    }

    .nav_pop .container {
        width: 65%;
    }

    .nav_pop .container a {
        font-size: 1rem;
    }

    .nav_pop .contacts {
        margin: 0.75rem auto;
        width: 65%;
        font-size: 1.75rem;
    }

    .order_flot {
        top: 1rem;
        right: 1rem;
    }

    .home_banner {
        width: 80vw;
        height: fit-content;
        margin: auto;
    }

    .home_banner.mob {
       display: none;
    }
    .home_banner.desk {
       display: block;
    }
    

    .home_banner .logo {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .home_banner .top_head {
        font-size: 1.5rem;
    }

    .home_banner .sub_head {
        margin: 1.5rem 0;
        font-size: 1.75rem;
    }

    .hm_desk_bc {
        width: 80vw;
        margin: auto;
        margin-top: 4rem;
        display: grid;
        grid-template-columns: 69% 29%;
        gap: 2%;
    }

    .contacts_uni.index {
        margin: 0 auto;
        height: 100%;
        width: fit-content;
        padding: 0.75rem 2rem;
        grid-template-columns: 1fr;
        gap: 1rem;
        font-size: 2rem;
    }

    .contacts_uni.index a {
        display: flex;
        align-items: center;
        height: 100%;
    }


    .wrap_moments {
        margin-top: 0;
        width: 100%;
        gap: 3rem;
    }

    .wrap_moments article {
        gap: 2rem;
        width: fit-content;
    }

    .wrap_moments aside .img {
        width: 95%;
        height: 11rem;
    }

    .wrap_moments article .head {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .wrap_moments article .cont {
        font-size: 1rem;
    }

    .wrap_moments article .btn {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }


    .best_seller {
        margin: auto;
        margin-top: 4rem;
        width: 80vw;
        text-align: center;
    }

    .best_seller .head {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .best_seller .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .best_seller aside .topic {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-bottom: 0.25rem;
    }

    .best_seller aside .cont {
        font-size: 0.8rem;
        letter-spacing: 0.05rem;
    }

    .cate_hmpg {
        margin-top: 3rem;
        width: 80vw;
    }

    .cate_hmpg .head {
        font-weight: 800;
    }

    .cate_hmpg .pannel {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
    }

    .cate_hmpg a .img {
        width: 100%;
        height: 10rem;
    }

    .cate_hmpg a .title {
        width: fit-content;
    }

    .cate_hmpg a .title span {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .recent_works {
        margin-top: 3%;
        width: 50vw;
    }

    .recent_works .head {
        margin-bottom: 1.5rem;
    }

    .swiper-slide {
        padding: 10rem;
    }

    .passage_hmpg {
        margin: auto;
        margin-top: 3.5rem;
        width: 80vw;
    }

    .passage_hmpg .hmpg_img img{
        width: 100%;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    .passage_hmpg .head {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .passage_hmpg .cont {
        font-size: 1rem;
    }

    .passage_hmpg .pannel {
        margin-top: 2rem;
        margin-left: 2rem;
        gap: 1.5rem;
    }

    .passage_hmpg .pannel .top {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .passage_hmpg .pannel .sub {
        font-size: 1rem;
    }

    .passage_hmpg .about_mr_btn {
        margin-top: 1.5rem;
        gap: 1rem;
        font-size: 1.1rem;
    }

    .about_pg .logo_banner {
        margin-top: 3rem;
        width: 60vw;
    }

    .about_pg article {
        width: 80%;
        margin: 3.5rem auto;
        line-height: 2;
    }

    .about_pg article .head {
        font-size: 2rem;
        padding: 0.45rem 0;
        background: black;
    }

    .about_pg article .content {
        padding: 1rem 1.5rem;
    }

    .contacts_uni.abt {
        width: 80vw;
        margin-bottom: 2.5rem;
    }

    .cate_ctpg {
        width: 80vw;
    }

    .cate_ctpg .pannel {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }

    .cate_ctpg a .img {
        height: 10rem;
    }

    .cate_ctpg a .title span {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 2px;
    }


    .sec_ctpg {
        margin-top: 3rem;
        width: 80vw;
    }

    .sec_ctpg .pannel {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
    }

    .sec_ctpg article .img {
        height: 15rem;
    }

    .sec_ctpg article .title {
        padding: 1rem 0;
    }

    .sec_ctpg article .title span {
        font-size: 1rem;
    }

    .sec_ctpg .product_pop .container {
        width: 75vw;
        padding: 1rem;
    }

    .sec_ctpg .product_pop .container .grid_cont {
        display: grid;
        grid-template-columns: 40% 57%;
        gap: 3%;
    }

    .sec_ctpg .product_pop .container .grid_asid {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .grid_a_in {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .sec_ctpg .product_pop .container .img {
        width: 20rem;
        height: 20rem;
        margin: 0.65rem auto;
    }

    .bookus {
        width: 60vw;
        margin: auto;
    }

    .bookus .banner {
        width: 100%;
        height: 13rem;
    }

    .bookus .form {
        width: 90%;
    }


    .track_order .order_pannel {
        gap: 2rem;
        width: 60vw;
    }

    .contacts_uni.cate.d_cont_to {
        width: 60vw;
    }

    .footer {
        background: white;
        padding: 2.75rem 0;
        padding-bottom: 3.25rem;
        color: #000;
        margin-top: 2.5rem;
    }

    footer .footer_top {
        width: 75%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-items: center;
        gap: 3rem;
    }

    footer .comp_prl {
        width: 80%;
        margin: 0;
        margin-right: auto;
    }

    footer .comp_prl .logo {
        width: 75%;
        margin: auto;
    }

    footer .comp_prl .content {
        margin-top: 0;
        font-weight: 300;
        letter-spacing: 1px;
        color: rgba(0, 0, 0, 0.95);
    }

}