* {
    -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;
}

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

@font-face {
    font-family: ClashGrotesk-Medium;
    src: url(../fontfamily/clash/ClashGrotesk-Medium.otf);
}

@font-face {
    font-family: ClashGrotesk-Regular;
    src: url(../fontfamily/clash/ClashGrotesk-Regular.otf);
}

.row {
    margin: 0 !important;
}

.col-md-9 {
    padding: 0 !important;
}

.col-md-3 {
    padding: 0 !important;
}

li {
    list-style: none;
}

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

p {
    font-size: 18px;
    font-weight: 100;
}

h1 {
    font-family: ClashGrotesk-Medium;
    font-size: 50px;
    font-weight: 100;
}

h2 {
    font-family: ClashGrotesk-Regular;
    font-size: 40px;
    font-weight: 100;
}


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

/* header  */

header {
    padding: 40px 0;
    width: 100%;
    position: relative;
    z-index: 2;

}

header .logo img {
    width: 200px;
}

header a {
    font-size: 16px;
}

.hd-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.fr-und-ln::after {
    content: "";
    width: 0%;
    height: 2px;
    display: block;
    position: absolute;
    margin-top: 2px;
    transition: all 0.3s ease-in-out;
}

.fr-und-ln {
    position: relative;
    transition: all 0.3s ease-in-out;

}

.fr-und-ln.active {
    color: #FD8204 !important;
    position: relative;
}

.fr-und-ln.active::after {
    content: "";
    width: 70%;
    height: 2px;
    display: block;
    position: absolute;
    border-radius: 5px;
    background-color: #FD8204;

}

.fr-und-ln:hover::after {
    content: "";
    width: 70%;
    height: 2px;
    display: block;
    position: absolute;
    border-radius: 5px;
    background-color: #FD8204;
    transition: all 0.3s ease-in-out;

}

.hdr-wht .nav ul li a {
    color: #000000;
}





/* nav */

/* HELPER CLASSES */
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/***********************/
/* NAVIGATION MENU */
/***********************/

/* OVERLAY */
.overlay {
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
}

.overlay-slide-right {
    transition: all 0.4s ease-in-out;
    transform: translateX(0);
}

.overlay-slide-left {
    transition: all 0.8s ease-in-out;
    transform: translateX(-100%);
}

/* NAV MENU ITEMS */
nav ul {
    height: 100vh;
    height: 100svh;
    list-style: none;
}

nav ul li {
    height: 14.3%;
}

nav li:nth-of-type(1) {
    background-color: #000000;
}

nav li:nth-of-type(2) {
    background-color: #000000;
}

nav li:nth-of-type(3) {
    background-color: #000000;
}

nav li:nth-of-type(4) {
    background-color: #000000;
}

nav li:nth-of-type(5) {
    background-color: #000000;
}

nav li:nth-of-type(6) {
    background-color: #000000;
}
nav li:nth-of-type(7) {
    background-color: #000000;
}

nav li a {
    letter-spacing: 0.4rem;
    font-size: 27px;
    color: rgb(255, 255, 255);
}

nav li a:hover,
nav li a:active {
    transform: scale(1.2);
}

/***********************/
/* NAV SLIDE IN ANIMATION */
/***********************/

.slide-in-1 {
    animation: slide-in 0.3s linear 0.2s both;
}

.slide-in-2 {
    animation: slide-in 0.3s linear 0.4s both;
}

.slide-in-3 {
    animation: slide-in 0.3s linear 0.6s both;
}

.slide-in-4 {
    animation: slide-in 0.3s linear 0.8s both;
}

.slide-in-5 {
    animation: slide-in 0.3s linear 1s both;
}

.slide-in-6 {
    animation: slide-in 0.3s linear 1.2s both;
}
.slide-in-7 {
    animation: slide-in 0.3s linear 1.4s both;
}


@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/***********************/
/* NAV SLIDE OUT ANIMATION */
/***********************/

.slide-out-1 {
    animation: slide-out 0.3s linear 0.6s both;
}

.slide-out-2 {
    animation: slide-out 0.3s linear 0.5s both;
}

.slide-out-3 {
    animation: slide-out 0.3s linear 0.4s both;
}

.slide-out-4 {
    animation: slide-out 0.3s linear 0.3s both;
}

.slide-out-5 {
    animation: slide-out 0.3s linear 0.2s both;
}

.slide-out-6 {
    animation: slide-out 0.3s linear 0.1s both;
}
.slide-out-7 {
    animation: slide-out 0.3s linear 0.0s both;
}


@keyframes slide-out {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/***********************/
/* HAMBURGER MENU ANIMATION */
/***********************/

.hamburger-menu {
    /* position: fixed; */
    position: relative;
    z-index: 11;
    cursor: pointer;
    display: none;
}

.hdr-wht .hamburger-menu .menu-bar1,
.hdr-wht .hamburger-menu .menu-bar2,
.hdr-wht .hamburger-menu .menu-bar3 {
    width: 34px;
    height: 3px;
    background-color: #000000;
    margin: 10.5px 0;
    transition: 0.4s;
}

.hdr-wht .hamburger-menu.active .menu-bar1 {
    background-color: #ffffff;
}

.hdr-wht .hamburger-menu.active .menu-bar3 {
    background-color: #ffffff;
}


/* ROTATE FIRST BAR */
.active .menu-bar1 {
    transform: rotate(-45deg) translate(-0.6rem, 0.6rem);
}

.menu-bar1,
.menu-bar2,
.menu-bar3 {
    width: 34px;
    height: 3px;
    background-color: #ffffff;
    margin: 10.5px 0;
    transition: 0.4s;
}

.menu-bar2 {
    width: 1.5rem;
    margin-left: auto;
}

/* ROTATE FIRST BAR */
.active .menu-bar1 {
    transform: rotate(-45deg) translate(-0.6rem, 0.6rem);
}

/* FADE OUT SECOND BAR */
.active .menu-bar2 {
    opacity: 0;
}

/* ROTATE LAST BAR */
.active .menu-bar3 {
    transform: rotate(45deg) translate(-0.6rem, -0.6rem);
}

.humb {
    display: flex;
    align-items: center;
}

.hdrbtn {
    margin-right: 20px;
}


/* nav close  */

/* header close  */

/* index */

.mn-bg-video {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;

}

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

.nav ul {
    display: flex;
    align-items: center;
}

.nav ul li {
    margin-left: 40px;
}

.nav ul li a {
    color: #fff;
    font-size: 18px;
}

.hdrbtn p a {
    padding: 11px 18px;
    background-color: #FD8204;
    border: 2px solid #FD8204;
    color: #ffffff;
    border-radius: 5px;
    font-size: 15px;
}

.hdrbtn p a:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transition: all 0.3s;
}

.mn-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    margin-top: -70px;
}

.mn-cont h1 {
    text-align: center;
    color: #fff;
    font-weight: 100;
}

.mn-cont p a {
    padding: 15px 35px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;

}

.mn-cont p a:hover {
    background-color: #FD8204;
    color: #ffffff;
    border: 2px solid #FD8204;
}

.mn-cont p {
    width: max-content;
    margin: 0 auto;
    margin-top: 30px;
}

.sldr .slick-arrow {
    padding: 12px 17px;
    background-color: rgba(221, 221, 221, 0.76);
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    z-index: 1;
}

.sldr .prev_button {
    top: 50%;
    left: -18px;
}

.sldr .next_button {
    top: 50%;
    right: -18px;
}

.in-scnd {
    margin-bottom: 50px;
}

.scnd {
    margin: 20px 0 90px 0;
}

.itm-img img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-radius: 15px;
}

.item {
    position: relative;
}

.itm-img {
    margin: 0 10px;
}

.itm-cont {
    position: absolute;
    bottom: 30px;
    margin-left: 30px;
    z-index: 1;
    color: #fff;
    width: 100%;
    padding-right: 50px;
}

.itm-cont h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.itm-cont p {
    font-size: 18px;
}

.itm-cont .p2 {
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    margin-top: 20px;
    width: max-content;
}

.itm-cont .p2:hover {
    background-color: #FD8204;
    color: #ffffff;
    border: 1px solid #FD8204;
    transition: all 0.3s;
}

.itm-cont a {
    color: #fff;
    font-size: 16px;
}

.trd-bg {
    height: 100%;
    width: 100%;
    background-color: #F5F5F5;
    margin-top: 100px;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.trd-vdo {
    height: 600px;
    width: 100%;
}

.trd-vdo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.wthtxt {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.trd-vd-txt {
    width: 200px;
    height: 200px;
    background-color: #FD8204;
    position: absolute;
    z-index: 1;
    bottom: -23px;
    right: -20px;
    border-radius: 10px;
    box-shadow: 0px 1px 10px 0px #00000050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trd-vd-txt p span {
    font-size: 64px;
    font-family: poppins;
}

.trd-vd-txt p {
    text-align: center;
    color: #fff;
    font-weight: 100;
    font-size: 19px;
}

.trd-rt-cont {
    margin-left: 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

.trd-rt-cont h2 {
    font-weight: 100;
    margin-bottom: 30px;
}

.trd-rt-cont p {
    line-height: 28px;
}

.p3 {
    position: relative;
    width: max-content;
    color: #062F6E;
}

.p3::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    background-color: #062F6E;
    margin-top: 4px;
    margin-bottom: 30px;
}

.sh-rnd img {
    height: 500px;
    position: absolute;
    z-index: 2;
    top: -100px;
    right: -200px;

}

.sh-rnd2 img {
    height: 500px;
    position: absolute;
    z-index: 2;
    bottom: -300px;
    right: 13%;

}

.sec-hdng-wth-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0 50px 0;
}

.sec-hdng-wth-btn a p {
    color: #ffffff;
    padding: 17px 20px;
    border-radius: 8px;
    background-color: #FD8204;
    border: 2px solid #FD8204;
    font-size: 16px;
}

.sec-hdng-wth-btn a p:hover {
    background-color: #ffffff;
    color: #FD8204;
    border: 2px solid #FD8204;
    transition: all 0.3s;
}

.sldr2 {
    position: relative;
}

.sldr2 .itm img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 10px;
}

.sldr2 .itm {
    margin: 0 10px;
    height: 100%;
}

.slick-arrow {
    cursor: pointer;
}

.sldr2 .slick-arrow {
    padding: 12px 17px;
    background-color: rgba(221, 221, 221, 0.76);
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    z-index: 1;
}

.sldr2 .prev_button {
    top: 50%;
    left: -18px;
}

.sldr2 .next_button {
    top: 50%;
    right: -18px;
}

.fth {
    margin-bottom: 50px;
}

.itm {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;


}

.hvr-txt {
    position: absolute;
    z-index: 1;
    bottom: -100%;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 30px 20px 30px 20px;
    background-color: #fd8104d8;
    transition: all 0.8s;
}

.itm:hover .hvr-txt {
    bottom: 0;
    transition-duration: 0.5s;
}

.hvr-txt h2 {
    font-size: 24px;
    font-size: 100;
}

.hvr-txt p {
    font-size: 16px;
}

.i {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.i-sb {
    display: flex;
    align-items: center;
}

.i i {
    margin-right: 10px;
}

.frth {
    margin-bottom: 100px;
}

.ffth {
    height: 800px;
    width: 100%;
    background-image: url(../imgs/92.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 350px;
    position: relative;
    margin-top: -200px;
}

.ffth::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.596);
    position: absolute;
    z-index: 1;
}

.ffth h2 {
    color: #fff;
    font-size: 50px;
    max-width: 650px;
    margin-bottom: 30px;
}

.ffth-conts {
    color: #fff;
    position: relative;
    z-index: 2;
}

.sldr3 {
    position: relative;
    z-index: 2;
}

.ffth-conts p {
    font-size: 20px;
    max-width: 700px;
}

.items {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    height: 100%;

}

.items img {
    /* height: 60px; */
    margin: 0 auto;
    object-fit: contain;
}

.sldr3 {
    padding: 40px 0;
    background-color: #f5f5f57e;
    border-radius: 10px;
    margin-top: 50px;
}

.sldr4 {
    margin: 50px 0 80px 0;
}

.sldr4 .itm2 img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 10px;
}

.sldr4 .itm2 {
    height: 100%;
}

.sldr4 .slick-arrow {
    padding: 12px 17px;
    background-color: rgba(221, 221, 221, 0.76);
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    z-index: 1;
}

.sldr4 .prev_button {
    top: 50%;
    left: -18px;
}

.sldr4 .next_button {
    top: 50%;
    right: -18px;
}

.sldr5 {
    margin-top: 50px;
}

.sldr5 .itm img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.sldr5 .itm {
    height: 100%;
}

.sldr5 .slick-arrow {
    padding: 12px 17px;
    background-color: rgba(221, 221, 221, 0.76);
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    z-index: 1;
}

.sldr5 .prev_button {
    top: 50%;
    left: -18px;
}

.sldr5 .next_button {
    top: 50%;
    right: -18px;
}

.svn {
    padding: 80px 0;
    margin-top: 130px;
    background-color: #F5F5F5;
}

.eight {
    margin: 100px 0;
}

.eight h2 {
    margin-bottom: 40px;
}

.p4 {
    font-size: 18px;
    padding: 18px 22px;
    background-color: #FD8204;
    border: 2px solid #FD8204;
    color: #fff;
    max-width: max-content;
    border-radius: 8px;
    cursor: pointer;
    height: max-content;
}

.p4:hover {
    color: #FD8204;
    background-color: transparent;
    border: 2px solid #FD8204;
    transition: all 0.5s;
}

.faq-2 {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 15px 25px;
    border: 1px solid #c7c7c7;
    cursor: pointer;
    border-radius: 8px;
}

.qustn header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.qustn p {
    font-size: 20px;
}

.faq.active i {
    transform: rotate(180deg);
}

.faq-2 .ansr-2 {
    height: 0;
    transition: all 0.3s linear;
    overflow: hidden;
}

.faq-2 .ansr-2 p {
    font-size: 16px;
    margin-top: 20px;
    line-height: 26px;
    cursor: auto;
}

.items img {
    height: 49px;
    width: 100%;
}
.ftr-btn{
    width: max-content;
}

/* index close */

/* about  */
.pg-hdr h1 {
    max-width: 800px;
    margin-top: 200px;
}

.abt-img {
    height: 700px;
    width: 100%;
    position: relative;
}

.abt-img-bnr {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    height: 200px;
    background-color: #FD8204;
    border-top-right-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.abt-img-bnr h1 {
    font-family: poppins;
    color: #fff;
    font-size: 60px !important;
    font-weight: 100 !important;
}

.abt-img-bnr h2 {
    color: #fff;
    font-weight: 100;
    font-size: 18px;
    margin-left: 10px;
}

.bnr-flx {
    display: flex;
    align-items: center;
}

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

.inabt p a:hover {
    background-color: transparent;
    color: #FD8204;
    border: 2px solid #FD8204;
    transition: all 0.3s;
}

.abt2 {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

.abt2 .rnd {
    width: 500px;
    position: absolute;
    left: -200px;
    top: -100px;
}

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

.abt2 p {
    text-align: justify;
    margin-bottom: 20px;
}

.abt2 .p4 {
    margin-top: 40px;
}

.abt2 .img14 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.col-lg-7.in-abt2 {
    padding-right: 80px;
}

.abt3 .col-md-5 {
    display: flex;
    justify-content: end;
    width: 100%;
}

.abt3 h2 {
    margin-bottom: 20px;
}

.ftrs-fst img {
    width: 50px;
}

.ftrs-fst {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ftrs .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 400px;
    text-align: center;
    padding: 20px 40px;
}

.abt4 {
    width: 100%;
    height: 100%;
    margin-bottom: 80px;
    padding: 80px 0;
}

.ftrs .col-md-4 img {
    width: 50px;
}

.ftrs {
    margin-top: 50px;
}

.ftrs-fst.in2 {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 25px;
}

.ftrs h3 {
    margin: 10px 0;
}

.ftrs p {
    font-size: 15px;
}

.abt3 {
    margin-bottom: 80px;
}

.abt4 {
    width: 100%;
    height: 100%;
    background-color: #fafafa;
    margin-bottom: 80px;
    padding: 80px 0;
}

.abt4 h2 {
    margin-bottom: 15px;
}

.abt4-flx img {
    width: 15px;
    height: 16px;
}

.abt4-flx h3 {
    margin-bottom: 10px;
    margin-top: -3px;
}

.abt4-flx p {
    line-height: 25px;
}

.abt4-flx {
    display: flex;
    margin: 30px 0;
    gap: 10px;
}

.scnd-con {
    margin-top: 50px;
}

.sldr6 .slick-arrow {
    padding: 12px 17px;
    background-color: rgba(221, 221, 221, 0.76);
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    z-index: 1;
}

.sldr6 .prev_button {
    top: 100%;
    left: 45%;
}

.sldr6 .next_button {
    top: 100%;
    right: 45%;
}

.sldr6 {
    padding-bottom: 50PX;
}

.item6 {
    height: 350px !important;
}

.snip *,
.snip *:before,
.snip *:after {
    box-sizing: border-box;
    transition: all 0.45s ease;
}

.snip {
    position: relative;
    overflow: hidden;
    /* width: 100%; */
    height: 100%;
    font-family: "Source Sans Pro", sans-serif;
    color: #fff;
    font-size: 16px;
    margin: 10px;
    text-align: left;
    transform: translateZ(0);
}

.snip:hover .snip__title,
.snip:hover .snip__text {
    transform: translateY(0);
    opacity: 0.9;
    transition-delay: 0.2s;
}

.snip::before,
.snip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FD8204;
    opacity: 0.5;
    transition: all 0.45s ease;
}

.snip::before {
    transform: skew(30deg) translateX(-80%);
}

.snip::after {
    transform: skew(-30deg) translateX(-70%);
}

.snip:hover::before {
    transform: skew(30deg) translateX(-20%);
    transition-delay: 0.05s;
}

.snip:hover::after {
    transform: skew(-30deg) translateX(-10%);
}

.snip:hover .snip__figcaption::before {
    transform: skew(30deg) translateX(-40%);
    transition-delay: 0.15s;
}

.snip:hover .snip__figcaption::after {
    transform: skew(-30deg) translateX(-30%);
    transition-delay: 0.1s;
}

.snip__image {
    backface-visibility: hidden;
    max-width: 100%;
    vertical-align: top;
}

.snip__figcaption {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    bottom: 0;
    padding: 25px 40% 25px 20px;
}

.snip__figcaption::before,
.snip__figcaption::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FD8204;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    content: "";
    opacity: 0.5;
    z-index: -1;
}

.snip__figcaption::before {
    transform: skew(30deg) translateX(-100%);
}

.snip__figcaption::after {
    transform: skew(-30deg) translateX(-90%);
}

.snip__title,
.snip__text {
    margin: 0;
    opacity: 0;
    letter-spacing: 1px;
}

.snip__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
}

.snip__text {
    font-size: 0.9em;
}

.snip__link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.abt5-sec {
    margin-bottom: 80px;
}

.hdng {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
}

.hdng p {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 10px;
}


/* about close  */

/* shops */
.pg-hdr {
    height: 100%;
    width: 100%;
    margin-top: -145px;
    margin-bottom: 100px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    position: relative;
}
.item7 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}
.item7{
    height: 220px !important;
    width: 100%;
    margin: 0 8px;
    
}
.sldr7{
    max-width: 700px;
    position: relative;
    margin-top: -100px;
    left: 250px;
}

.in-abt {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hdr-hdng {
    position: relative;
    z-index: 1;
}

.pg-hdr h2 {
    margin-top: 150px;
    color: #fff;
}

.pg-hdr h3 i {
    margin: 0 10px;
    color: #FD8204;
}

.pg-hdr h3 span {
    color: #FD8204;
}

.pg-hdr h3 {
    color: #fff;
    margin: 15px 0;
}

.pg-hdr h3 a {
    color: #fff;
}

.insp {
    background-image: url(../imgs/hd1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.inct {
    background-image: url(../imgs/cnt.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.ingal {
    background-image: url(../imgs/evnt.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.inflr {
    background-image: url(../imgs/flr.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.inevnt {
    background-image: url(../imgs/hd2.webp);
    background-size: cover;
    background-position: center;
    position: relative;
}

.inevnt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.6;
}
.fr-up{
    height: max-content;
    overflow: hidden;
}

.hvr-img2 {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;

}
.hvr-img2:hover{
    scale: 1.1;
    transition: all 0.8s;

}

.hvr-img2 img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: 50% 50%;
    left: 0;
    top: 0;
}

.hvr-img2::after {
    content: "";
    display: block;
    padding-top: 80%;
}

.hvr-img3 {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;

}
.hvr-img3:hover{
    scale: 1.1;
    transition: all 0.8s;
}

.hvr-img3 img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: 50% 50%;
    left: 0;
    top: 0;
}

.hvr-img3::after {
    content: "";
    display: block;
    padding-top: 100%;
}


.hvr-flx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: absolute;
    bottom: -100px;
    z-index: 1;
    width: 100%;
    padding: 15px 20px;
    background-color: #fd8104d8;
    transition: all 0.3s;
}

.fr-sps:hover .hvr-flx {
    bottom: 0;
    transition-duration: 0.5s;

}

.sp-img .col-md-4 {
    padding: 0 !important;
    margin: 0 !important;
}

.fr-sps {
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.hvr-flx h3 {
    font-size: 28px;
}

.frcntr {
    position: relative;
}

.hvr-img2 {
    position: relative;
    width: 100%;
}

.cntr-ic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.cntr-ic img {
    height: 60px;
}

.sp-img .row {
    margin-top: 10px !important;
}

.sp-img .row {
    margin-bottom: 20px !important;
}

/* shops close */

/* floor  */

.flr-hdng {
    margin-bottom: 30px
}

.flr-conts {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.flr-img-BX:hover{
    box-shadow: 0 0 10px 0 #ffffff;
    transition: all 0.3s;
    
}


.flr-img-BX {
    width: 15%;
    height: 115px;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 #ccc;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    
}
.flr-img-BX.atm {
    width: 20%;
    
}
.flr-img-BX.bsmnt {
    width: 46%;
    
}

.flr-img-BX img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.flx-wrp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.flr-hdng h2{
    font-size: 33px;
}

/* floor close  */

/* events */

.evnt-sec {
    margin-bottom: 80px;
}

.evnt-sec .row {
    margin-bottom: 20px !important;
}

/* Events Close  */

/* contact */

.cnt-sec h2 {
    margin-bottom: 15px;
}

.cnt-flx {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cnt-flx a p{
    color: #000000;
}

.ibx {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FD8204;
    border-radius: 10px;
}

.ibx i {
    font-size: 30px;
    color: #fff;
}

.cnt-cont {
    margin-top: 40px;
}


.cnt-flx {
    margin-top: 30px;
}

.img18 {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: 50% 20%;
    padding-right: 125px;
}

.in-cntct {
    margin-bottom: 100px;
}

.bg-bx {
    position: absolute;
    max-width: 500px;
    width: 100%;
    height: 100%;
    background-color: #414141;
    top: -25px;
    z-index: -1;
    left: 40px;
}


.map {
    width: 100%;
    height: 500px;
    margin-top: 100px;
}

.hlp-1 {
    height: 100%;
    width: 100%;
    background-color: #eeeeee;
    padding: 30px;
    border-radius: 10px;

}

.hlprw {
    margin-top: 80px;
}

.irnd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #FD8204;
    border-radius: 50%;
}

.irnd i {
    color: #fff;
}

.cnt-flx2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.fr-btm {
    margin-bottom: 30px !important;
}

/* contact close  */

/* gallery */
.text-center .col-md-4 {
    display: none;
}

.load-more {
    background-color: #FD8204;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 30px auto;
}

.load-more p {
    font-size: 15px;
}

.load-more:hover {
    background-color: #062F6E;
    transition: all 0.3s;
    text-decoration: none;
}

.ld-mr-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}


.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #000000;
    opacity: 1 !important;
}

.mfp-title {
    display: none !important;
}

img.mfp-img {
    max-height: 600px !important;
    cursor: auto !important;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder {

    cursor: auto !important;
}

.mfp-close {
    cursor: pointer !important;
}

.mfp-counter {
    display: none !important;
}

/* gallery close  */






/* footer  */

footer {
    background-color: #fafafa;
    width: 100%;
    height: 100%;
    padding: 80px 0 50px 0;
}

footer .copy-rt {
    display: flex;
    justify-content: center;
}

.copy-rt p {
    font-size: 15px;
    color: #797979;
    text-align: center;
}

.ftr-conts {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.ftr-logo img {
    width: 240px;
}

.ftr-conts h3 {
    margin-bottom: 20px;
}

.ftr-conts p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #797979;
}

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

.ftr-btn p {
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    padding: 17px 20px;
    background-color: #062F6E;
    border: 2px solid #062F6E;
    border-radius: 8px;
}

.ftr-btn p:hover {
    background-color: transparent;
    border: 2px solid #062F6E;
    transition: all 0.3s;
    color: #062F6E;
}

.ftr-txt ul li p {
    max-width: 200px;
}

.ftr-logo i {
    font-size: 30px;
    margin-right: 20px;
    color: #062F6E;
}

.scl {
    margin-top: 70px;
}


/* footer close  */