* {
    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: #FCEECB;
    --color-grey-trans: #111111b9;
    --color-grey-shade: #111111;

    --primary-gradient:linear-gradient(to top,rgba(48, 51, 61),#99645a, #fc9a84);
}
::-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: #fff;
    text-decoration: none;
}

body {
    background: rgb(0, 0, 0);
    font-family: "Poppins", serif;
    color: #fff;
}
.copy_rgt {
    margin: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.contacts {
    margin: 1rem auto;
    width: 95vw;
    padding: 0.75rem;
    background: var(--color-grey-shade);
    border: 1px solid rgb(90, 90, 90);
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary);
}


/* ------------------------------PRE-LOADER--------------------------------- */

.pre_loder {
    width: 100vw;
    height: 100vh;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    background: black;
    top: 2px;
    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: var(--color-primary);
    animation: loader1 1s linear infinite;
  }
  .pre_loder .ring:nth-child(2) {
    border-right-width: 8px;
    border-color: var(--color-primary);
    animation: loader2 1s linear infinite;
  }
  .pre_loder .ring:nth-child(3) {
    border-top-width: 8px;
    border-color: var(--color-primary);
    animation: loader3 1s linear infinite;
  }
  .pre_loder span {
    color: #fff;
    opacity: 0;
  }

  @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);
    }
  }

.home_pg .homepg_top {
    position: fixed;
    top: -3px;
    left: 0;
    z-index: 10;
    width: 100vw;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.95);
}
.home_pg .homepg_top img {
    width: 4rem;
    margin: 0 0.4rem;
}
.home_pg .homepg_top .title {
    font-size: 1.3rem;
    letter-spacing: 3px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}
.home_pg .homepg_top .title .sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 400;
}
.home_pg .homepg_top .menu {
    margin-left: auto;
    margin-right: 0.75rem;
    font-size: 1.5rem;
}
.home_pg .homepg_top .menu .fa-times,
.home_pg.pop_active .homepg_top .menu .fa-bars {
    display: none;
}
.home_pg .homepg_top .menu .fa-bars,
.home_pg.pop_active .homepg_top .menu .fa-times {
    display: block;
}

.home_pg .menu_pop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 2px;
    z-index: 1;
    display: none;
}
.home_pg.pop_active .menu_pop {
    display: block;
}
.home_pg .menu_pop .blur {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9;
}
.home_pg .menu_pop .container {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 92vw;
    background: var(--color-grey-shade);
    border-radius: 1rem;
    padding: 1rem;
}
.home_pg .menu_pop .menu_list {
    display: grid;
    gap: 1.5rem;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    margin-top: 0.25rem;
}
.home_pg .menu_pop .menu_list >* {
    border: 1px solid rgb(90, 90, 90);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}
.home_pg .menu_pop .contacts {
    margin: 1.5rem auto;
    margin-bottom: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--color-grey-shade);
    border: 1px solid rgb(90, 90, 90);
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary);
}

.home_pg .banner {
    width: 95vw;
    position: relative;
    margin: 1.5rem auto;
    margin-top: 4.35rem;
    background: var(--color-grey-trans);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgb(90, 90, 90);
    overflow: hidden;
}
.home_pg .banner::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/banner1.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
}
.home_pg .banner .title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 1rem 0;
}
.home_pg .banner .passage {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 300;
    text-align: justify;
}
.home_pg .banner .passage span {
    color: var(--color-primary);
    font-weight: 500;
}
.home_pg .banner .btns {
    margin: 1rem 0;
    display: flex;
    align-items: center;
}
.home_pg .banner .btns .service_btn {
    background: var(--color-primary);
    padding: 0.2rem 1rem;
    color: black;
    font-weight: 700;
    border-radius: 1rem;
    letter-spacing: 1px;
    height: fit-content;
}
.home_pg .banner .btns .video_play {
    margin-left: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
}


.home_pg .video_pop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 2px;
    z-index: 1;
    display: none;
}
.home_pg .video_pop.active {
    display: block;
}
.home_pg .video_pop .blur {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9;
}
.home_pg .video_pop .container {
    z-index: 10;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 95vw;
    background: var(--color-grey-shade);
    border-radius: 1rem;
    padding: 0.5rem;
}
.home_pg .video_pop iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0.75rem;
    border: 1px solid;
}

.home_pg .we_are,
.home_pg .process {
    width: 95vw;
    margin: auto;
    margin-bottom: 1.5rem;
}
.home_pg .process {
    margin-top: 1.5rem;
}
.home_pg .process span {
    font-weight: 500;
    color: var(--color-primary);
}
.home_pg .we_are .head,
.home_pg .process  .head {
    font-size: 1.4rem;
    font-weight: 600;
    margin: auto 0.5rem;
}
.home_pg .we_are .brief,
.home_pg .process .brief {
    margin: 0.5rem;
    text-align: justify;
    font-size: 0.9rem;
    font-weight: 300;
} 
.home_pg .process .btn {
    background: var(--color-primary);
    padding: 0.25rem 0;
    width: 85%;
    margin: auto;
    margin-top: 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    text-align: center;
    color: black;
}

.home_pg .book_pannel {
    display: grid;
    width: 95vw;
    margin: auto;
    padding: 1rem 0;
    grid-template-columns: 1fr;
    background: var(--color-grey-shade);
    border-radius: 1rem;
    border: 1px solid rgb(90, 90, 90);
}
.home_pg .book_pannel .icon {
    position: absolute;
    font-size: 2.25rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    background: var(--color-primary);
    color: #000;
    transform: translateX(1rem);
}
.home_pg .book_pannel .top {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-bottom: 2px solid rgb(90, 90, 90);
    padding-bottom: 0.25rem;
    padding-right: 1rem;
    text-align: right;
}
.home_pg .book_pannel .bottom {
    padding-top: 0.25rem;
    padding-right: 1rem;
    text-align: right;
    font-size: 0.65rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.home_pg .vis_mis {
    display: grid;
    grid-template-columns: 1fr;
    width: 95vw;
    margin: 1.5rem auto;
    padding: 0.25rem 0;
    background: var(--color-grey-shade);
    border-radius: 1rem;
    border: 1px solid rgb(90, 90, 90);
    letter-spacing: 1px;
}
.home_pg .vis_mis .cont>* {
    padding: 0.5rem;
    border-bottom: 1px solid rgb(90, 90, 90);
}
.home_pg .vis_mis .cont:last-of-type .brief,
.home_pg .vis_mis .cont:last-of-type .head  {
    border: none;
}
.home_pg .vis_mis .cont.active:last-of-type .head {
    border-bottom: 1px solid rgb(90, 90, 90);
}
.home_pg .vis_mis .cont .head {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.home_pg .vis_mis .cont .head i {
    margin-right: 0.75rem;
    margin-left: auto;
    font-size: 0.8rem;
    transform: rotate(90deg);
    transition: transform 0.7s ease;
}
.home_pg .vis_mis .cont.active .head i {
    transform: rotate(270deg);
}
.home_pg .vis_mis .cont .brief {
    font-size: 0.9rem;
    font-weight: 300;
    text-align: justify;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.7s ease;
}
.home_pg .vis_mis .cont.active .brief {
    padding: 0.5rem 0.7rem;
    height: fit-content;
}


.ser_Gal_pannel {
    width: 95vw;
    position: relative;
    overflow: hidden;
    margin: auto;
    background: var(--color-grey-trans);
    border-radius: 1rem;
    display: flex;
    padding: 1.5rem 0;
    border: 1px solid rgb(90, 90, 90);
}
.ser_Gal_pannel::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
}
.services_ban_pannel::before {
    background-image: url("assets/hall_setup.jpeg");
}
.gallery_ban_pannel::before {
    background-image: url("assets/firewalks.jpeg");
}
.ser_Gal_pannel .cover {
    width: 90%;
    margin: auto;
    height: fit-content;
    text-align: center;
    vertical-align: middle;
}
.ser_Gal_pannel .cover .passage {
    font-style: normal;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.ser_Gal_pannel .cover .btn {
    background: var(--color-primary);
    padding: 0.25rem 0;
    width: 90%;
    margin: auto;
    margin-top: 1.5rem;
    border-radius: 2rem;
    color: black;
    font-weight: 700;
}
.ser_Gal_pannel a {
    color: #000;
}

.user_log_pg {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-rows: 60% 40%;
}

.user_log_pg .particle_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color:rgb(0, 0, 0);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1;
}

.user_log_pg .banner_pannel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
}
.user_log_pg .banner_pannel .ban_cover {
    display: flex;
    flex-direction: row;
    gap: 10vw;
}
.user_log_pg .banner_pannel .clms {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.user_log_pg .banner_pannel .clms >* {
    background: #fceecbd5;
    width: 35vw;
    border-radius: 5rem;
    overflow: hidden;
    border: 2px solid transparent;
}
.user_log_pg .banner_pannel .clms .sml {
    height: 15vh;
}
.user_log_pg .banner_pannel .clms .len {
    height: 35vh;
} 
.user_log_pg .banner_pannel .clms img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.user_log_pg .contents_pannel {
    background: #1c1c1ce3;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    width: 100vw;
    overflow: hidden;
}
.user_log_pg .contents_pannel .info_cont{
    height: 40vh;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    transition: transform 0.7s ease;
}
.user_log_pg .contents_pannel.log_prt .info_cont{
    transform: translateY(-40vh);
}
.user_log_pg .info_holder {
    display: flex;
    transform: translateX(0vw);
    transition: transform 0.3s ease;
    width: fit-content;
    overflow: hidden;
}
.user_log_pg .info_cont.sec_cont .info_holder {
    transform: translateX(-100vw);
}
.user_log_pg .info_pannels {
    width: 100vw;
    padding: 0 1.25rem;
}
.user_log_pg .info_pannels .head {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.user_log_pg .info_pannels .brief {
    text-align: justify;
    font-weight: 300;
} 
.user_log_pg .info_pannels .brief span {
    color: var(--color-primary);
    font-weight: 500;
}
.user_log_pg .navg_pannel {
    margin-top: auto;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: row;
}
.user_log_pg .navg_pannel>* {
    align-items: center;
    justify-content: center;
}
.user_log_pg .navg_pannel .indi {
    display: flex;
    gap: 0.5rem;
}
.user_log_pg .navg_pannel .indi>* {
    width: 2.5rem;
    height: 0.5rem;
    background: var(--color-primary);
    border-radius: 0.25rem;
    transition: background 0.3s ease;
}
.user_log_pg .info_cont .sec_inti_cont,
.user_log_pg .info_cont.sec_cont .fst_inti_cont {
    background: #525763;
}
.user_log_pg .info_cont.sec_cont .sec_inti_cont {
    background: var(--color-primary);
}
.user_log_pg .navg_pannel .nav_bts {
    display: flex;
    margin-left: auto;
    gap: 0.75rem;
}
.user_log_pg .navg_pannel .nav_bts>* {
    background: var(--color-primary);
    padding: 0.25rem 1.25rem;
    border-radius: 1rem;
    color: black;
    font-weight: 600;
}
.user_log_pg .info_cont .fst_cont_btns,
.user_log_pg .info_cont.sec_cont .sec_cont_btns {
    display: block;
}
.user_log_pg .info_cont.sec_cont .fst_cont_btns,
.user_log_pg .info_cont .sec_cont_btns {
    display: none;
}

.user_log_pg .contents_pannel .login_info {
    width: 100vw;
    padding: 0 1.25rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.user_log_pg .contents_pannel.log_prt .login_info{
    transform: translateY(-40vh);
    transition: transform 0.7s ease;
}
.user_log_pg .login_info .head {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.user_log_pg .login_info .brief {
    text-align: justify;
    font-weight: 300;
} 
.user_log_pg .google_btn {
    display: flex;
    flex-direction: row;
    background: var(--color-primary);
    width: fit-content;
    margin: auto;
    margin-top: 1.5rem;
    padding: 0.55rem 0.55rem;
    gap: 0.75rem;
    border-radius: 2rem;
}
.user_log_pg .google_btn .g_logo {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px 0px;
    width: 2.8rem;
    height: 2.2rem;
}
.user_log_pg .google_btn .g_btn {
    display: flex;
    font-size: 1.1rem;
    width: 100%;
    color: #000000;
    font-weight: 800;
    letter-spacing: 1px;
    align-items: center;
    padding: 0 0.5rem;
}

.user_log_pg .copy_rgt {
    margin: 0;
    margin-top: auto;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.9rem;
}


.eventinfo .event_top {
    position: fixed;
    top: -3px;
    left: 0;
    width: 100vw;
    z-index: 10;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: row;
    padding: 0.75rem 1rem;
    font-size: 1.35rem;
    gap: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid rgb(90, 90, 90);
}
.eventinfo .event_top .to_home {
    margin-left: auto;
    margin-right: 0.5rem;
}
.eventinfo .event_main {
    width: 95vw;
    margin: auto;
}
.eventinfo .images {
    height: 30vh;
    margin: 1.5rem 0;
    margin-top: 4.5rem;
    width: 100vw;
    overflow: hidden;
    text-align: center;
}
.eventinfo .images img {
    height: 100%;
    width: 95%;
    margin: auto;
    border-radius: 1rem;
}
.eventinfo .images .swiper-pagination-bullet {
    background: var(--color-primary);
}
.eventinfo .images .swiper-pagination-bullet-active {
    background: var(--color-primary);
}
.eventinfo .event_main .typo {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}
.eventinfo .event_main .typo .type {
    background: var(--color-primary);
    padding: 0.2rem 1rem;
    color: black;
    font-weight: 800;
    border-radius: 1rem;
}
.eventinfo .event_main .typo .date {
    display: flex;
    align-items: center;
    font-weight: 600;
}
.eventinfo .event_main .head {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
.eventinfo .event_main .details {
    background: var(--color-grey-shade);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgb(90, 90, 90);
}
.eventinfo .event_main .details .topic {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    margin-bottom: 0.25rem;
}
.eventinfo .event_main .details .brief {
    font-size: 0.9rem;
    font-weight: 100;
    text-align: justify;
    letter-spacing: 0.05rem;
}


.services .service_top {
    position: fixed;
    top: -3px;
    left: 0;
    width: 100vw;
    z-index: 10;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: row;
    padding: 0.75rem 1rem;
    font-size: 1.35rem;
    gap: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid rgb(90, 90, 90);
}
.services .service_top .to_home {
    margin-left: auto;
    margin-right: 0.5rem;
}
.services .service_body {
    margin: 1rem auto;
    margin-top: 4.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.services article {
    width: 94vw;
    margin: auto;
    background: var(--color-grey-shade);
    padding: 0.5rem;
    padding-bottom: 0.75rem;
    border-radius: 1rem;
}
.services article .imgage {
    width: 100%;
    height: 12rem;
    background: black;
    opacity: 0.5;
    border-radius: 0.75rem;
    overflow: hidden;
}
.services article .imgage img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}
.services article .title {
    font-size: 1.2rem;
    margin: 0.5rem 0.25rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid rgb(255, 255, 255);
    padding-bottom: 0.25rem;
    margin-bottom: 0.75rem;
}
.services article .sub_details {
    margin: 0 0.35rem;
    margin-bottom: 0.2rem;
    display: flex;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.services article .sub_details .types {
    display: flex;
    gap: 0.5rem;
    font-weight: 500;
    align-items: center;
}
.services article .sub_details .types .prm {
    border-right: 2px solid #fff;
    padding-right: 0.5rem;
}
.services article .sub_details .enquire {
    margin-left: auto;
    background: var(--color-primary);
    padding: 0.2rem 1rem;
    color: #000;
    font-weight: 800;
    border-radius: 1rem;
    font-size: 0.8rem;
}


.gallery .gallery_top {
    position: fixed;
    top: -3px;
    left: 0;
    z-index: 100;
    width: 100vw;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: row;
    padding: 0.75rem 1rem;
    font-size: 1.35rem;
    gap: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid rgb(90, 90, 90);
}
.gallery .gallery_top .filter {
    display: flex;
    margin-left: auto;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    align-items: center;
}
.gallery .filer_pop {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 2px;
    z-index: 4;
}
.gallery .filer_pop.active {
    display: block;
}
.gallery .filer_pop .blur {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9;
}
.gallery .filer_pop .container {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 92vw;
    background: var(--color-grey-shade);
    border-radius: 1rem;
    padding: 1rem;
}
.gallery .filer_pop .container .head {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.gallery .intrest_cont {
    display: flex;
    flex-wrap: wrap;
}
.gallery .intrest_cont .box {
    margin: 0.4rem;
    background: var(--color-grey-shade);
    border: 1px solid rgb(90, 90, 90);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
}
.gallery .intrest_cont .box.active {
    background: var(--color-primary);
    color: black;
}

.gallery .filer_pop .container .btns {
    display: flex;
    font-size: 1rem;
    width: 98%;
    margin: auto;
    margin-top: 0.75rem;
    justify-content: space-between;
    align-items: center;
}
.gallery .filer_pop .container .btns >* {
    border: 1px solid rgb(90, 90, 90);
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
}
.gallery .filer_pop .container .btns .clear {
    margin: 0 auto;
}
.gallery .filer_pop .container .btns .apply {
    background: var(--color-primary);
    color: black;
}

.gallery .gallery_body {
    margin: 1rem auto;
    margin-top: 4.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.gallery a {
    width: 94vw;
    margin: auto;
    background: var(--color-grey-shade);
    padding: 0 0.5rem;
    padding-bottom: 0.75rem;
    border-radius: 1rem;
}
.gallery a .title {
    font-size: 1.2rem;
    margin: 0.75rem 0;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
}
.gallery a .imgage {
    display: flex;
    width: 100%;
    height: 13rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
}
.gallery a .imgage::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 0;
    opacity: 0.75;
}
.gallery a .sub_details {
    display: flex;
    padding: 0.75rem 1rem;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    margin: auto;
    margin-bottom: 0;
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 1;
}
.gallery a .sub_details .type {
    background: var(--color-primary);
    padding: 0.1rem 1rem;
    border-radius: 1rem;
    color: #000;
}
.gallery a .sub_details .date {
    margin-left: auto;
    display: flex;
    align-items: center;
}


.bookus .bookus_top {
    position: fixed;
    top: -3px;
    left: 0;
    width: 100vw;
    z-index: 10;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: row;
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
    gap: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid rgb(90, 90, 90);
}
.bookus .bookus_top span {
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: black;
    margin: 0 0.2rem;
}
.bookus .banner {
    width: 95vw;
    margin: auto;
    margin-top: 4rem;
    height: 13rem;
    background: var(--color-grey-trans);
    display: flex;
    text-align: center;
    border-radius: 1rem;
    padding: 0.25rem;
    position: relative;
    overflow: hidden;
}
.bookus .banner::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/setup.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
}
.bookus .banner span {
    margin: auto;
    width: 90%;
    font-size: 1.5rem;
    font-family: "Lobster", sans-serif;
    font-style: normal;
    font-weight: 100;
    z-index: 1;
    opacity: 0.75;
}
.bookus .contacts {
    margin: 1rem auto;
    width: 95vw;
    padding: 0.75rem;
    background: var(--color-grey-shade);
    border: 1px solid rgb(90, 90, 90);
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary);
}

.bookus .form {
    width: 95vw;
    margin: auto;
    padding: 0.75rem;
    background: var(--color-grey-shade);
    border: 1px solid rgb(90, 90, 90);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bookus .form >* {
    width: 100%;
}
.bookus .form .head {
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.75;
}
.bookus .form input,
.bookus .form .pin_location {
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #fff;
    padding: 0 0.75rem;
    padding-top: 0.25rem;
    font-size: 1.2rem;
    color: #fff;
    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 #fff;
    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 #fffffffa;
}
.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;
    margin-top: 0.5rem;
    font-weight: 700;
    border-radius: 0.25rem;
    background: var(--color-primary);
}
.bookus .form .event option {
    font-size: 1rem;
}
.bookus .form .types,
.bookus .form .budgets .covers {
    display: flex;
    flex-wrap: wrap;
    margin: 0.25rem 0;
    margin-bottom: 0;
}
.bookus .form .types .box,
.bookus .form .budgets .buds{
    margin: 0.35rem 0.2rem;
    background: var(--color-grey-shade);
    border: 1px solid rgb(90, 90, 90);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
}
.bookus .form .types .box.active,
.bookus .form .budgets .buds.active {
    background: var(--color-primary);
    color: black;
}
.bookus .form .book_now {
    width: fit-content;
    margin: auto;
    margin-bottom: 0.5rem;
    background: var(--color-primary);
    padding: 0.25rem 2rem;
    border-radius: 2rem;
    color: black;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.bookus .fill_all_error {
    display: none;
    margin: -0.5rem 0;
    margin-bottom: 0.25rem;
    text-align: center;
    font-weight: 400;
    color: rgb(241, 3, 3);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.bookus .booked_pop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 2px;
    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: var(--color-grey-shade);
    border-radius: 1rem;
    padding: 1rem;
}
.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: var(--color-primary);
    color: #000;
    border-radius: 1rem;
    font-weight: 700;
    margin-top: 0.75rem;
}

.aboutus .aboutus_top {
    position: fixed;
    top: -3px;
    left: 0;
    width: 100vw;
    z-index: 10;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: row;
    padding: 0.75rem 1rem;
    font-size: 1.35rem;
    gap: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid rgb(90, 90, 90);
}
.aboutus .aboutus_top .to_home {
    margin-left: auto;
    margin-right: 0.5rem;
}
.aboutus .founders {
    width: 95vw;
    margin: auto;
    margin-top: 4rem;
}
.aboutus .founders .head {
    text-align: center;
    font-family: "Lobster", sans-serif;
    font-style: normal;
    font-size: 1.75rem;
    font-weight: 100;
    margin-bottom: 0.5rem;
}
.aboutus .founders .cover {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.aboutus .founders article {
    background: var(--color-grey-shade);
    padding: 0.5rem;
    border-radius: 1rem;
    text-align: center;
    letter-spacing: 1px;
}
.aboutus .founders article .img {
    width: 100%;
    height: 12.5rem;
    border-radius: 0.7rem;
    background: rgba(0, 0, 0, 0.75);
}
.aboutus .founders article .details .name {
    margin: 0.4rem auto;
    margin-bottom: 0.25rem;
    font-weight: 600;
    letter-spacing: 2px;
}
.aboutus .founders article .details .title {
    font-size: 0.8rem;
    font-weight: 300;
}

.aboutus .knowus {
    width: 95vw;
    margin: 1.5rem auto;
    margin-top: 4rem;
}
.aboutus .knowus .head {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 0.25rem;
}
.aboutus .knowus .brief {
    text-align: justify;
    margin: 0.5rem 0.75rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
}
.aboutus .knowus .brief span {
    color: var(--color-primary);
    font-weight: 500;
}

