* {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #000000;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: #707070;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #611C65;
    background-image: -webkit-linear-gradient(90deg,
            transparent,
            rgba(0, 0, 0, 0.4) 50%,
            transparent,
            transparent)
}

input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


/* font family */

@font-face {
    font-family: Copperplate-Gothic-Bold-Regular;
    src: url(../assets/fonts/Copperplate-Gothic-Bold-Regular.ttf);
}

@font-face {
    font-family: Inter-Medium;
    src: url(../assets/fonts/inter/Inter-Medium.ttf);
}

@font-face {
    font-family: Inter-Regular;
    src: url(../assets/fonts/inter/Inter-Regular.ttf);
}


/* animations */





.fade-in {
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    font-family: Inter-Regular;
}

p {
    font-family: Inter-Regular;
    font-size: 15px;
    line-height: 23px;
    font-weight: 100;
}

h3,
h4,
h5,
h6 {
    font-family: Inter-Regular;
}

h1 {
    font-family: Copperplate-Gothic-Bold-Regular;

}


h2 {
    font-family: Copperplate-Gothic-Bold-Regular;
    font-size: 35px;
    font-weight: 100;
    line-height: 37px;
}

/* header */


.fr-und-ln.active {
    color: #652368 !important;
    font-family: inter-medium;
    position: relative;
}

.fr-und-ln.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    right: 0;
    left: 0;
    border-radius: 10px;
    bottom: -3px;
    margin: 0 auto;
    position: absolute;
    background: #652368;
}


.fl {
    height: 100%;
    width: 100%;
}

.fl ul li {
    list-style: none;
    margin: 40px 0;
}

.fl span {
    display: inline-block;
}

.mb-menu a {
    text-decoration: none;
    color: #fff;
    transition: all .3s;
}

.mb-menu li a {
    font-size: 20px;
    /* font-weight: bold; */
    /* padding: 10px 0; */
}

.nv-container,
.nv-menu-wrapper {
    height: 100%;
}

.hamburger-init {
    /* width: 35px; */
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 3;
    display: none;
}

.bar {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    transition: all .3s;
}



.hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    width: fit-content;
}

.hamburger .line {
    fill: none;
    stroke: #000000;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}


.hamburger .line1 {
    stroke-dasharray: 55 207;
    stroke-width: 4;
}

.hamburger .line2 {
    stroke-dasharray: 55 60;
    stroke-width: 4;
}

.hamburger .line3 {
    stroke-dasharray: 55 207;
    stroke-width: 4;
}

.hamburger.open .line1 {
    stroke-dasharray: 60 160;
    stroke-dashoffset: -140;
    stroke-width: 4;
    stroke: #ffffff;
}

.hamburger.open .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 4;
}

.hamburger.open .line3 {
    stroke-dasharray: 60 207;
    stroke-dashoffset: -142;
    stroke-width: 4;
    stroke: #ffffff;
}




.nv-menu-wrapper {
    background: rgb(0, 0, 0);
    transition: all .3s;
    transform: scale(0);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nv-menu-wrapper.visible {
    transform: scale(1);
    border-radius: 0;
}

.mb-menu {
    position: absolute;
    max-width: 400px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nv-menu-wrapper li {
    opacity: 0;
    cursor: pointer;
    transition: all .3s;
}

.mb-menu.menu-active li:nth-child(1) {
    animation: moveItems 0.5s linear 0s forwards;
}

.mb-menu.menu-active li:nth-child(2) {
    animation: moveItems 0.5s linear 0.2s forwards;
}

.mb-menu.menu-active li:nth-child(3) {
    animation: moveItems 0.5s linear 0.5s forwards;
}

.mb-menu.menu-active li:nth-child(4) {
    animation: moveItems 0.5s linear 0.8s forwards;
}

.mb-menu.menu-active li:nth-child(5) {
    animation: moveItems 0.5s linear 0.9s forwards;
}

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

.ct-brs {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    z-index: 4;
}

.hdr-btm {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 50px;
}

.pages {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pages a p {
    color: #000000;
}

.ct-brs p {
    padding: 7px 30px;
    background: linear-gradient(to bottom, #942368, #611C65);
    border-radius: 5px;
    color: #fff;
}

.hdr-btm {
    margin-top: 24px;
}



/* Animations */

@keyframes rotateHamburger {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes moveItems {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    30% {
        transform: translateY(-15px);
        opacity: .2;
    }

    50% {
        transform: translateY(-10px);
        opacity: .3;
    }

    80% {
        transform: translateY(-5px);
        opacity: .4;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes showClickGuide {
    0% {
        opacity: 0;
        transform: scale(.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.header {
    padding: 15px 0 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.226);
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 4;
}

.header-conts {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 4;
}

.header-conts .logo img {
    width: 190px;
    object-fit: contain;
}

.hdr-tp-bg {
    width: 65vw;
    height: 45px;
    background: linear-gradient(to bottom, #942368, #611C65);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40px 100%, 0 0);
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.hdr-tp-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr-tp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: -7px;
    color: #fff;
}

.hdr-tp p {
    color: #fff;
}

.hdr-tp i {
    color: #fff;
}

.hdr-tp-flx-rt {
    display: flex;
    gap: 50px;
    align-items: center;
}

.hdr-rt {
    width: 60%;
    margin-left: auto;
}

/* header close */

.fr-up {
    overflow: hidden;
    padding-left: 50px;
    margin-left: -50px;
}

.msk {
    position: relative;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    visibility: hidden;
}



/* index */
.mn-bg {
    height: 87vh;
    width: 100%;
    background-image: url(../assets/imgs/mn-bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* z-index: -1; */

}

.mn-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #00000000, #000000eb);
}

.mn-cont {
    color: #fff;
    position: absolute;
    z-index: 2;
    width: fit-content;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.mn-cont h1 {
    text-align: center;
    font-weight: 100;
    font-size: 47px;
    max-width: 690px;
    line-height: 45px;
    margin: 0 auto;
}

.mn-cont .p {
    text-align: center;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    margin-top: 5px;
}

.loc-gap {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.loc-gap p {
    font-size: 13px;
    color: #652368;
}


#timeControl li {
    display: inline-block;
    font-size: 15px;
    font-family: Inter-Regular;
    list-style-type: none;
    padding: 12px 15px;
    margin: 0 10px;
}

#timeControl li span {
    display: block;
    font-size: 27px;
    font-weight: 600;
}

.count-bx ul {
    background-color: #00000044;
    padding: 0px 10px;
    border-radius: 10px;
    margin-top: 13px;
    width: fit-content;
    border: 1px solid #ffffff71;
    min-height: 78px;
}

.count-bx {
    width: fit-content;
    margin: 0 auto;
    backdrop-filter: blur(4px);
}

.mn-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.mn-btns p {
    padding: 8px 30px;
    border: 1px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.mn-btns p:hover {
    background-image: linear-gradient(to bottom, #942368, #611C65);
    color: #ffffff;
    transition: all .3s ease-in-out;
}

.goto-flx {
    display: flex;
    gap: 55px;
}

.gap-ln {
    width: 2px;
    height: 100%;
    background-color: #fff;
}

.wth-pls {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;

}

.count2 span {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.goto {
    display: flex;
    gap: 20px;
    width: 750px;
    background-image: linear-gradient(to bottom, #942368, #430F46);
    /* border-radius: 10px; */
    margin-top: 50px;
    padding: 22px 70px;
    margin: -30px auto 0 auto;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.wth-pls span .sqm {
    font-size: 16px !important;
}

.wth-pls .sqm-flx {
    display: flex;
    gap: 5px;
}

.spnsr-sec {
    width: 100%;
    height: 100%;
    background-color: #F9F5F9;
    padding: 100px 0 50px 0;
    margin-top: -50px;
}

.goto .count {
    font-size: 31px !important;
    font-weight: 600;
    color: #fff;
}

.goto .counts {
    font-size: 31px !important;
    font-weight: 600;
    color: #fff;
}

.wth-pls span p {
    font-size: 26px !important;
    font-weight: 600;
    color: #fff;
}

.count2 p {
    margin-top: 8px !important;
    max-width: 166px;
    font-size: 14px !important;
    line-height: 22px;
    color: #fff;
}

.count2 {
    margin: 10px 0;
}

.count2 h2 {
    font-size: 45px;
}

.spnsr-flx {
    display: flex;
    justify-content: space-between;
}

.spnsr h3 {
    position: relative;
    width: fit-content;
    color: #652368;
    margin-bottom: 30px;
}

.spnsr h3::after {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    left: 0px;
    bottom: -6px;
    position: absolute;
    background: #652368;
}

.spnsr.mnspnsr img {
    width: 300px;
    object-fit: contain;
}

.spnsr.orgnzr img {
    width: 195px;
    object-fit: contain;
    margin-top: 17px;
}


.inv-flx {
    display: flex;
    gap: 30px;
}

.inv-flx img {
    width: 137px;
    object-fit: contain;
    margin-top: 17px;
}

.ind2-bg {
    max-width: 75%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
}

.ind2 {
    width: 100%;
    position: relative;
    height: 100%;
    padding: 150px 0 80px 0;
}

.ind2-left-img-lft {
    width: 400px;
    height: 580px;
    position: relative;
}

.ind2-left-img-lft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind2-left-img-rgt {
    width: 290px;
    height: 400px;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-10%);
    border-left: 8px solid #ffffff;
    border-top: 8px solid #ffffff;
}

.ind2-left-img-rgt::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    right: -20px;
    top: -20px;
    border: 2px solid #652368;
    z-index: -1;
}

.ind2-left-img-lft::after {
    content: "";
    display: block;
    width: 200px;
    height: 100%;
    position: absolute;
    left: -20px;
    top: -20px;
    border: 2px solid #652368;
    z-index: -1;
}

.ind2-left-img-lft::before {
    content: "";
    display: block;
    width: 80px;
    height: 100px;
    position: absolute;
    right: -27px;
    top: -27px;
    border: 10px solid #652368;
}

.ind2-left-img-rgt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind2-left {
    position: relative;
}

.ind2-tp-bg {
    width: 200px;
    height: 300px;
    position: absolute;
    left: 40px;
    top: -150px;
    background-color: #F6EFF6;
    z-index: -1;
}

.ind2-lft-bg2 {
    width: 20vw;
    height: 200px;
    position: absolute;
    left: 0px;
    top: 50%;
    background-color: #652368;
    z-index: -1;
}

.ind2 .container {
    position: relative;
}

.wth-ln {
    display: flex;
    align-items: end;
    gap: 5px;
    width: fit-content;
}

.wth-ln h4 {
    color: #652368;
    font-size: 18px !important;
    margin-bottom: 0 !important;
}

.wth-ln .ln {
    height: 2px;
    width: 70px;
    background-color: #652368;
    margin-bottom: 3px;
}

.ind2-rgt h2 {
    max-width: 500px;
    margin: 15px 0;
}

.ind2-rgt h4 {
    font-size: 18px;
    color: #652368;
    margin-bottom: 10px;
}

.ind2-rgt h3 {
    color: #652368;
    margin-top: 30px;
}

.exhib-dt {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 13px;
    padding: 15px 36px;
    background-color: #F5F5F5;
    width: fit-content;
}

.exhib-day h3 {
    margin-top: 0;
    font-size: 30px;
}

.exhib-day i {
    color: #652368;
}

.exhib-day h3 sup {
    font-size: 17px;
}

.exhib-dt h4 {
    margin-bottom: 0;
    font-size: 20px;
}

.exhib-day {
    display: flex;
    align-items: center;
    gap: 20px;
}

.exb-location {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 15px 30px;
    background-image: linear-gradient(#942368, #430F46);
    width: fit-content;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    position: relative;

}

.exb-location:hover {
    scale: 1.01;
    top: -4px;
}

.exb-location p {
    max-width: 400px;
}

.ind3-tp h2 {
    max-width: 610px;
    margin-bottom: 10px;
}

.ind3-tp h2 span {
    color: #707070;
}

.ind3 {
    padding: 120px 0 80px 0;
    position: relative;
}

.ind3-tp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ind3-tp p {
    max-width: 700px;
}

.ind3-tp-img {
    width: 250px;
    height: 100%;
    margin-top: -100px;
}

.ind3-tp-img img {
    width: 100%;
    object-fit: contain;
}

.ind3-btm {
    margin-top: 130px;
}

.ind3-lft {
    padding-right: 30px;
}

.ind3-lft-hdng {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ind3-lft h2 {
    font-size: 60px;
    color: #652368;
    width: fit-content;
}

.ind3-lft h2 span {
    font-size: 80px;
}

.ind3-lft-ln {
    height: 4px;
    width: 105px;
    background-color: #652368;
    margin-top: 5px;
    border-radius: 4px;
}

.ind3-lft h3 {
    margin-top: 20px;
    color: #652368;
}

.ind3-lft-flx-cont-fl {
    margin-top: 40px;
}

.ind3-lft-flx {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 20px;
}

.ind3-lft-flx h4 {
    margin-bottom: 7px;
}

.ind3-lft-flx img {
    width: 27px;
    object-fit: contain;
    top: 5px;
    position: relative;
}

.ind3-lft-hdng2 {
    font-size: 70px !important;
    color: #f1f1f1 !important;
    position: absolute;
    z-index: -1;
    top: -31px;
    right: 110px;
}

.ind3-rgt p {
    max-width: 400px;
    text-align: end;
    margin-left: auto;
}

.ind3-rgt {
    position: relative;
    border-left: 2px solid #e0e0e0;
    padding-left: 50px;
}

.ind3-rgt .ind3-rgt-brdr-bx {
    content: "";
    position: absolute;
    bottom: -54px;
    left: 60px;
    width: 156px;
    height: 85px;
    border: 10px solid;
    border-image: linear-gradient(#E27430, #EA344D) 1;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind3-rgt .ind3-rgt-brdr-bx h3 {
    width: fit-content;
    font-weight: 600;
    font-size: 30px;
}

.ind3-rgt .ind3-rgt-brdr-bx h3 span {
    font-size: 15px;
}

.ind3-rgt-img {
    width: 85%;
    height: 300px;
    margin-left: auto;
    margin-top: 50px;
    position: relative;
}

.ind3-rgt-img-anm {
    width: 100%;
    height: 100%;
}

.ind3-rgt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0px 0px, 100% 0, 100% 100%, -34% 100%, 13% 0);
}

.ind3-rgt-img::after {
    content: "";
    position: absolute;
    top: -23px;
    right: -11px;
    width: 74%;
    height: 90%;
    background-color: #652368;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0% 0);
    z-index: -1;
}

.ind3-bg-rt {
    width: 24vw;
    height: 400px;
    background-color: #F5F5F5;
    position: absolute;
    bottom: 150px;
    right: 0;
    z-index: -1;
}

.ind4 {
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
    padding: 80px 0;
    margin: 80px 0 30px 0;
    position: relative;
}

.ind4-hdng {
    width: fit-content;
    position: relative;
}

.ind4-hdng1 {
    position: relative;
    z-index: 2;
}

.ind4-hdng2 {
    font-size: 70px;
    color: #eeeeee;
    position: absolute;
    top: -20px;
    right: -130px;
    z-index: 1;
}

.ind4-bg {
    width: 200px;
    height: 360px;
    background-color: #f5f5f5;
    position: absolute;
    left: 280px;
    top: 0;
}

.ind4-img-flx {
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    height: 580px;
    position: relative;
    z-index: 2;
}

.ind4-img-flx-lft {
    width: 50%;
    height: 100%;
    position: relative;
}

.ind4-img-flx-lft::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #784e7a);
}

.ind4-img-flx-rgt {
    width: 50%;
    height: 100%;
}

.ind4-img-flx-lft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind4-img-flx-rgt-flx {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ind4-img-flx-rgt-flx-lft {
    width: 50%;
    height: 100%;
}

.ind4-img-flx-rgt-flx-rgt {
    width: 50%;
    height: 100%;
}

.ind4-img-flx-rgt-flx-lft-tp {
    height: 40%;
    width: 100%;
    position: relative;
}

.ind4-img-flx-rgt-flx-lft-tp::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #784e7a);
}

.ind4-img-flx-rgt-flx-lft-btm {
    height: 58%;
    width: 100%;
    margin-top: 10px;
    position: relative;
}

.ind4-img-flx-rgt-flx-lft-btm::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #784e7a)
}

.ind4-img-flx-rgt-flx-rgt-btm {
    height: 40%;
    width: 100%;
    margin-top: 10px;
    position: relative;
}

.ind4-img-flx-rgt-flx-rgt-btm::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #784e7a);
}

.ind4-img-flx-rgt-flx-rgt-tp {
    height: 58%;
    width: 100%;
    position: relative;
}

.ind4-img-flx-rgt-flx-rgt-tp::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #784e7a);
}

.ind4-img-flx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prdct-cat-fl{
    position: relative;
    z-index: 2;
    margin-top: 50px;
}
.prdct-cat-flx-mn {
    width: 100%;
    height: 100%;
}
.prdct-cat-flx-mn{
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
   height: 300px;
   margin-top: 15px;
}
.prdct-cat-flx-mn img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s ease-in-out;
    border-radius: 10px;
}

.prdct-cat-flx {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 50%;
    height: 100%;


}
.prdct-cat-flx-big {
    width: 60%;
    height: 100%;
    border: 1px solid #b9b9b9;
    position: relative;
    transition: all .2s ease-in-out;
    overflow: hidden;
    border-radius: 10px;
}
.prdct-cat-flx-big:hover img,
.prdct-cat-flx-sml:hover img{
    transform: scale(1.1);
    transition: all .2s ease-in-out;

}
.prdct-cat-flx-big::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #784e7a);
}
.prdct-cat-flx-sml::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #784e7a);
}
.prdct-cat-flx-sml {
    width: 40%;
    height: 100%;
    border: 1px solid #b9b9b9;
    position: relative;
    transition: all .2s ease-in-out;
    overflow: hidden;
    border-radius: 10px;
}

.inner-txt {
    width: fit-content;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;

}

.inner-txt h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 100;
}

.ind5 {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 80px 0 120px 0;
}

.ind5-cont {
    max-width: 1000px;
}

.ind5 .ind4-hdng {
    margin-bottom: 10px;
}

.ind5-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 75%;
    object-fit: contain;
    z-index: -1;
}

.ind5-cont-flx {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-top: 30px;
}

.ind5-cont-flx h4 {
    margin-bottom: 7px;
    font-size: 18px;
}

.ind5-flx-cont {
    margin-top: 30px;
}

.ind6 {
    margin-bottom: 80px;
}

.ind6-hdng {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 30px;
    position: relative;
}

.ind6-hdng2 {
    font-size: 65px !important;
    color: #f1f1f1 !important;
    position: absolute;
    z-index: -1;
    top: -22px;
    right: -112px;
}

.ind6-cont-img-sec {
    margin-top: 50px;
    height: 600px;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;

}

.ind6-cont-img-lft {
    width: 30%;
    height: 100%;
}

.ind6-cont-img-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind6-cont-img-rgt {
    width: 68%;
    height: 100%;
}

.ind6-cont-img-rgt-tp {
    height: 49%;
    width: 100%;
    display: flex;
    gap: 10px;
}

.ind6-cont-img-rgt-tp-lft {
    width: 50%;
    height: 100%;
}

.ind6-cont-img-rgt-tp-rgt {
    width: 49%;
    height: 100%;
}

.ind6-cont-img-rgt-btm {
    display: flex;
    gap: 10px;
    height: 49%;
    width: 100%;
    margin-top: 12px;
}

.ind6-cont-img-rgt-btm-lft {
    width: 38%;
    height: 100%;
}

.ind6-cont-img-rgt-btm-cntr {
    width: 38%;
    height: 100%;
}

.ind6-cont-img-rgt-btm-rgt {
    width: 23%;
    height: 100%;
}

.ind6-btns p {
    padding: 8px 30px;
    background-image: linear-gradient(#942368, #430F46);
    border: 2px solid #652368;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    width: fit-content;
    margin: 30px auto 0 auto;
}

.ind6-btns p:hover {
    background-image: linear-gradient(#ffffff, #ffffff);
    color: #000000;
    border: 2px solid #652368;
    cursor: pointer;
}

/* index close  */

/* about  */

.abt1-ttle {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 30px;
    position: relative;
}

.abt1 {
    padding: 80px 0 0 0;
}

.abt1-ttle h3 {
    color: #652368;
    width: fit-content;
    margin: 0 auto;
    font-size: 20px;
}

.abt1-ttle h2 {
    max-width: 460px;
    text-align: center;
    margin: 10px auto;
}

.abt1-ttle p {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.abt1 .goto {
    margin-top: 60px;
}

.abt2 {
    height: 100%;
    width: 100%;
    background-color: #FBF8FB;
    margin-top: -30px;
    padding: 150px 0 80px 0;
}

.abt2-lft img {
    width: 300px;
    height: 100%;
    object-fit: contain;
}

.abt2-rgt h2 {
    margin-bottom: 20px;
}

.abt2-rgt h2 span {
    font-size: 70px;
}

.abt2-rgt {
    max-width: 700px;
}

.abt2-flx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1000px; */
    /* margin: 0 auto; */
}

.abt3-cont {
    max-width: 1100px;
    margin: 0 auto;
}

.abt3-cont p {
    max-width: 420px;
    margin-left: auto;
    text-align: end;
}

.abt3 {
    padding: 80px 0;
}

.abt3-video {
    height: 520px;
    width: 100%;
    margin-top: 30px;
}

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

.abt4 {
    width: 100%;
    height: 100%;
    padding: 80px 0;
    background-image: linear-gradient(#942368 0%, #430F46 100%);
    color: #fff;
}

.ind4-cont-flx {
    display: flex;
    justify-content: center;
}

.ind4-cont-flx-lft h2 {
    margin-bottom: 10px;
}

.ind4-cont-flx-lft p {
    max-width: 400px;
}

.ind4-cont-flx-lft {
    padding-right: 20px;
    height: 100%;
    position: sticky;
    top: 150px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.ind4-cont-flx-rgt {
    padding-left: 40px;
    border-left: 2px solid #cecece;
}

.ind4-cont-flx-rgt h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.ind4-cont-flx-rgt p {
    max-width: 600px;
}

.ind4-cont-flx-rgt-inr {
    margin: 30px 0;
}

.abt5 {
    padding: 50px 0;
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
    margin: 30px 0;
}

.abt5-cont h2 {
    font-size: 22px;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 5px;
    position: relative;
}

.abt5-cont p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}


/* about close  */


/* story  */

.stry1-cont h3 {
    color: #652368;
    width: fit-content;
    margin: 0 auto;
    font-size: 20px;
}

.stry1 {
    padding: 80px 0 50px 0;

}

.stry1-cont-btns {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 auto;
    margin-top: 30px;
    width: fit-content;
}

.stry1-cont-actv-btn {
    min-width: 80px;
    width: fit-content;
    height: 40px;
    padding: 0 30px;
    border-radius: 5px;
    background-color: #652368;
    border: 2px solid #652368;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stry1-cont-btn {
    min-width: 80px;
    width: fit-content;
    height: 40px;
    padding: 0 30px;
    border-radius: 5px;
    border: 2px solid #652368;
    color: #652368;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
}

.stry1-cont-btn:hover {
    background-color: #652368;
    color: #fff;
    transition: all .2s ease-in-out;
}

.stry-btn-fl {
    width: 100%;
}

.stry2 {
    width: 100%;
    height: 100%;
    padding: 80px 0;
    background-color: #FBFBFB;
    position: relative;
    margin-bottom: 30px;
}

.stry2-bg {
    width: 75%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);

}

.stry2-cont {
    position: relative;
    z-index: 1;
}

.stry2-cont h2 {
    max-width: 800px;
    margin-bottom: 10px;
}

.stry2-cont p {
    max-width: 1200px;
    margin-bottom: 10px;
}

.stry2-cont h2 span {
    font-size: 40px;
    color: #652368;
}

.stry-dt-loc {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.stry-dt-loc-inr-flx {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #652368;
}

.stry-video {
    width: 700px;
    height: 400px;
    margin-top: 50px;
    position: relative;

}

.stry-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.stry-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.play-button-wrapper .play-gif {
    cursor: pointer;
    pointer-events: auto;
}

.play-button-wrapper .play-gif svg {
    width: 50px;
    height: 50px;
    fill: #fff;
    stroke: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9;
}

.stry3 {
    width: 100%;
    height: 100%;
    padding: 80px 0;
    background-color: #FBF8FB;
    margin-bottom: 30px;
}

.stry3-hdng {
    position: relative;
    width: fit-content;
}

.stry3-hdng2 {
    font-size: 60px;
    color: #eaeaea;
    position: absolute;
    top: -20px;
    right: -211px;
    z-index: -1;
}

.stry3-hdng {
    position: relative;
    z-index: 2;
}

.sldimg {
    margin-top: 50px;
}

.sldimg .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sldimg .item {
    width: 100%;
    height: 270px;
    margin: 0 5px;
}

/* story close  */

/* gallery  */
.gal1-cont h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    color: #652368;
}

.gal1 {
    padding: 80px 0;
}

.gal1-cont h2 {
    max-width: 870px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

.gal-btn-flx {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 30px;
}

.gal-btn {
    height: 35px;
    min-width: 80px;
    width: fit-content;
    border: 2px solid #652368;
    border-radius: 5px;
    display: flex;
    color: #652368;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.gal-btn:hover {
    background-color: #652368;
    color: #fff;
}

.gal-btn.actv {
    height: 35px;
    min-width: 80px;
    width: fit-content;
    border: 2px solid #652368;
    background-color: #652368;
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.gal-mg {
    height: 300px;
    width: 100%;
    margin-bottom: 15px;
}

.gal-mg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gal2-cont {
    margin-bottom: 60px;
}

.gal2-cont .row {
    justify-content: left;
}

.gal2-cont {
    margin-bottom: 30px;
}

/* gallery close  */

/* blog */
.blog {
    padding: 80px 0;
}

.blog-h3 {
    color: #652368;
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-cont-img {
    width: 100%;
    height: 250px;
}

.blog-cont-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-cont .row {
    justify-content: left;
}

.blog-cont {
    margin-top: 50px;
}

.blog-cont-img-cont h3 {
    margin-bottom: 10px;
}

.blog-cont-img-cont {
    margin-top: 10px;
    padding: 0 10px;
}

.blog-fl {
    width: 100%;
    border: 1px solid #8e4092;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.see-mr {
    color: #611C65;
    margin-top: 10px;
}

/* blog close  */

/* blog inr  */

.blog-inr {
    padding: 80px 0;
}

.blg-inr-flx {
    display: flex;
    gap: 30px;
}

.blg-inr-mn-img {
    width: 100%;
    height: 450px;

}

.blg-inr-mn-img img {
    height: 100%;
    width: 90%;
    object-fit: cover;
    border-radius: 10px;
}

.blg-inr-lft {
    width: 900px;
    height: 100%;
}

.blg-inr-cont {
    margin-top: 20px;
}

.blg-inr-cont h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blg-inr-cont h4 {
    margin: 10px 0;
    font-size: 18px;
}

.blg-inr-cont p {
    margin-top: 10px;
    margin-bottom: 20px;
}

.blg-inr-rgt {
    padding-left: 30px;
    border-left: 2px solid #dbdbdb;
    width: 360px;
}

.blg-inr-rgt-hdng {
    width: 100%;
}

.blg-inr-rgt-hdng h3 {
    padding-bottom: 10px;
    border-bottom: 1px solid #dbdbdb;
}

.blg-inr-rgt-cont {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #dbdbdb;
    display: flex;
    gap: 10px;
    margin-top: 20px;

}

.blg-inr-rgt-cont-fl {
    margin-top: 30px;
}

.blg-inr-rgt-cont-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blg-inr-rgt-cont-img {
    width: 100px;
    height: 80px;
}

.blg-inr-rgt-cont-img-cont h4 {
    font-size: 13px;
    margin-bottom: 7px;
    max-width: 200px;
}

.blg-inr-rgt-cont-img-cont p {
    font-size: 12px;
    color: #652368;
}

.contact-inr h2 {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 10px;
}


/* blog inr close  */

/* contact  */


.contact {
    padding: 80px 0;
}

.contact-inr p {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cnt-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.cnt-btn1 p {
    padding: 8px 30px;
    border: 1px solid #652368;
    border-radius: 5px;
    color: #ffffff;
    background-image: linear-gradient(to bottom, #942368, #611C65);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.cnt-btn2 p {
    padding: 8px 30px;
    border: 1px solid #652368;
    border-radius: 5px;
    color: #000000;

    cursor: pointer;
    transition: all .2s ease-in-out;
}

.cnt-btn1 p:hover {
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
    color: #652368;
    border: 1px solid #652368;
}

.cnt-btn2 p:hover {
    background-image: linear-gradient(to bottom, #942368, #611C65);
    color: #ffffff;

}

.cnt-detls {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 120px;
}

.cnt-detls h2 {
    text-align: start;
    margin: 0;
    width: fit-content;
    position: relative;
    font-size: 25px;
}

.cnt-detls h2::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: #652368;
    bottom: -8px;
    left: 0;
}

.cnt-detl-lft {
    width: 700px;
    height: 100%;
    padding-right: 30px;
    border-right: 2px solid #dbdbdb;
}

.cnt-detl-rgt {
    width: 500px;
    height: 100%;
    padding-left: 20px;
}

.frm-flx {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.frm-flx-inr {
    width: 50%;
    position: relative;
    transition: all .2s ease-in-out;
}

.frm-flx-inr input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #dbdbdb;
    position: relative;
    /* border-radius: 5px; */
}

.frm-flx-inr input:focus {
    outline: none;
    border-bottom: 2px solid #652368;
}

.frm-flx textarea:focus {
    outline: none;
    border-bottom: 2px solid #652368;
}

.frm-flx-inr::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0px;
    left: 0;
    border-bottom: 2px solid #652368;
    transition: all .2s ease-in-out;
}

.frm-flx.inr {
    position: relative;
}

.frm-flx.inr::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0px;
    left: 0;
    border-bottom: 2px solid #652368;
    transition: all .2s ease-in-out;
}

.frm-flx-inr:hover::after {
    width: 100%;
    transition: all .2s ease-in-out;
}

.frm-flx.inr:hover::after {
    width: 100%;
    transition: all .2s ease-in-out;
}

.cnt-detl-lft-cont {
    margin-top: 50px;
}

.frm-flx textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 70px;
    max-height: 140px;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #dbdbdb;
    font-family: Inter-Regular;
    /* border-radius: 5px; */
}

.cnt-detl-lft-cont-btn {
    width: 100%;
    height: 40px;
    background-color: #652368;
    border-radius: 5px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.cnt-detl-rgt-cont {
    margin-top: 50px;
}

.cnt-detl-rgt-cont p {
    margin: 0;
    max-width: 100%;
    text-align: left;
    color: #000000;
}

.cnt-detl-rgt-cont i {
    color: #000000;
}

.cntct-scl {
    margin-top: 50px;
}

.cntct-scl h2 {
    font-size: 20px;
}

.cntct-scl h2::after {
    display: none;
}

.cntct-scl-flx {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

.cntct-scl-flx i {
    font-size: 25px;
    color: #652368;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.cntct-scl-flx i:hover {
    scale: 1.2;
    transition: all .2s ease-in-out;
}

.cnt-map {
    width: 100%;
    height: 450px;
}

/* contact close  */



/* footer  */

footer {
    background-color: #fafafa;
    padding: 80px 0 30px 0;
    color: #000000;
    height: 100%;
    position: relative;
    /* margin-top: 80px; */

}

.footer-cont {
    display: flex;
    justify-content: space-between;
}

.ftr-lft-flx {
    display: flex;
    justify-content: space-between;
    width: 42%;
}

.ftr-rgt-flx {
    display: flex;
    justify-content: space-between;
    width: 44%;
}

.ftr-lft-flx p {
    max-width: 300px;
}

.ftr-logo {
    height: 110px;
    margin-bottom: 20px;
}

.ftr-logo img {
    height: 100%;
    object-fit: contain;
}

.footer-cont h3 {
    margin-bottom: 20px;
}

.ftr-lft-flx-inr p {
    margin-top: 10px;
    color: #000000;
}

.ftr-lft-flx-inr-flx {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 15px;

}

.ftr-lft-flx-inr-flx i {
    color: #000000;
}

.ftr-rgt-flx-inr p {
    max-width: 300px;
}

.ftr-scl {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ftr-scl i {
    font-size: 25px;
}

.copy-rt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 80px;
}

.copy-rt img {
    height: 16px;
    object-fit: contain;
    margin-top: 2px;
    position: relative;
    top: 3px;
}

.copy-rt p {
    font-size: 13px;
    text-align: center;
}

.bk-tp-btn {
    position: fixed;
    right: 60px;
    bottom: 8%;
    z-index: 3;

}

.wtsapp {
    width: 50px;
    object-fit: contain;
    position: fixed;
    right: 30px;
    bottom: 170px;
    z-index: 3;
}

.bk-tp-btn button {
    background-image: linear-gradient(#942368, #430F46);
    padding: 8px 10px;
    color: #FFFFFF;
    border: none;
    border-radius: 7px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;

}

.srv-img-an2 {
    transform: translatey(0px);
    -webkit-animation: float2 3s ease-in-out infinite;
    animation: float2 3s ease-in-out infinite;
}

@keyframes float2 {
    0% {

        transform: translatey(0px);
    }

    50% {

        transform: translatey(-15px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* footer close  */
