* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tisa Sans Pro';
    line-height: 1.5;
    letter-spacing: 0.60px;
    color: var(--dark-color);
}

:root {
    --primary-color: #F78F1E;
    --secondary-color: #FCC975;
    --layout-color: #F2F2F2;
    --dark-color: #414141;
    --white-color: #fff;
    --font-size-h1: 64px;
    --font-size-h2: 48px;
    --font-size-h3: 36px;
    --font-size-paragraph: 14px;
    --font-size-link: 16px;
    --heading-font: 'Noto Sans Devanagari Condensed';
    --heading-font2: 'Trajan Pro';
    --paragraph-font: 'Tisa Sans Pro';
}

h4 {
    font-size: calc(var(--font-size-h3) - 8px);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--paragraph-font)
}

a {
    color: var(--dark-color);
}

p {
    line-height: 24px;
}


.pt-lg {
    padding-top: 75px;
}

.pb-lg {
    padding-bottom: 75px;
}

img {
    max-width: 100%;
    height: auto;
}



.fill-btn {
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--paragraph-font);
    border: 1px solid transparent !important;
    border-radius: 0.25rem;
}

.fill-btn:hover {
    color: var(--dark-color);
    background: var(--secondary-color);
}

.outline-btn {
    color: var(--primary-color);
    display: inline-block;
    border: 1px solid var(--primary-color) !important;
    padding: 8px 16px;
    font-family: var(--paragraph-font);
    background: transparent;
    border-radius: 0.25rem;
}

.outline-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.bg-warning {
    background: var(--primary-color) !important;
}

.bg-dark {
    background: var(--dark-color) !important;
}

.main-banner {
    position: relative;
    overflow: hidden;

}

/* h2 {
    text-transform: capitalize;
} */


section {
    padding: 0 16px;
}



/* Navbar Start */
/* .nav-bg {
    background: #fa7d09;
    width: 100%;
  }
  
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    border-radius: 0px;
    background: black;
    margin-top: 0;
  }
  
  .dropdown-menu {
    padding:  0px !important;
  }
  
  .dropdown-item:hover {
    background: #faf9f9 !important;
    color: black !important;
  }
  
  .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 10px;
  }
  
  .navbar-brand img {
    height: 80px; 
  }
  
  .navbar-nav .nav-link {
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    color: #fff !important;
    font-weight: bold;
  }
  
  .navbar-nav {
    margin-left: auto;
  }
  
  .header-navbar .nav-item {
    padding: 0 15px;
  }
  
  
  @media (max-width: 992px) {
    .navbar-nav {
      text-align: center;
    }
  
    .navbar-nav .nav-item {
      padding: 10px 0;
    }
  
    .navbar-toggler {
      border: none;
      outline: none;
    }
  }
  
  @media (max-width: 576px) {
    .navbar-brand img {
      height: 50px;
    }
  } */

/* Navbar End */
  


.slick-prev:before,
.slick-next:before {
    background: var(--primary-color);
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    visibility: hidden;
    transition: 0.2s all ease;
    box-shadow: 0px 0px 10px var(--dark-color);

}

.slick-prev:before {
    content: "\F27F";
    font-family: bootstrap-icons !important;
}

.slick-next:before {
    content: "\F280";
    font-family: bootstrap-icons !important;
}

.main-banner:hover .homeslider .slick-prev:before,
.main-banner:hover .homeslider .slick-next:before {
    visibility: visible;
}

.slick-next {
    right: 20px;
    z-index: 112;
}

.slick-prev {
    left: 0px;
    z-index: 112;

}

.user {
    border: 1px solid var(--white-color);
    margin-right: 10px;
}

.user i {
    width: 18px;
    height: 18px;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;
}

.user:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.category {
    background: var(--layout-color);
    position: relative;

}

.main-banner::before {
    content: "";
    display: block;
    background: url(../images/homebanner.png);
    position: absolute;
    z-index: 111;
    left: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
    height: 400px;
    width: 100%;
    transform: translate(-50%, -50%);
    background-position: bottom;
    bottom: -201px;

}


.category-card {
    background: linear-gradient(179deg, #CF772E, #B55089);
    height: 200px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 10px;
    border-radius: 12px;
    text-decoration: none !important;
    color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: transform 0.5s ease;
    transform: scale(1);
}

.category-card img {
    filter: invert(1);
}

.category-card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transform: scale(1.1);
}

.category-card h3 {
    font-family: var(--paragraph-font);
    font-size: calc(var(--font-size-h3) - 16px);
}

.category .slick-prev:before,
.category .slick-next:before {
    visibility: visible;
}

.freedam-fighter {
    background: url("../images/food-background-scaled.jpg");
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    z-index: 0;
}

.freedam-fighter::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #3218187d;
    z-index: 1;
}

.fighter-content {
    color: #fff;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding-right: 60px;
}

.fighterslider img {
    height: 400px;
    width: 400px;
    aspect-ratio: 2/2;
    object-fit: contain;
}

.fighter-content h4 {
    font-size: calc(var(--font-size-h3) - 10px);
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: capitalize;

}

.fighter-content p {
    font-size: calc(var(--font-size-link) + 3px);
}

.fighterslider .slick-dots li {
    margin: 0 1px;
}

.fighterslider .slick-dots li button:before {
    font-size: 65px;
    opacity: 1;
}

.fighterslider .slick-dots li.slick-active button:before {
    color: var(--primary-color) !important;
}

.fighterslider .slick-prev:before,
.fighterslider .slick-next:before {
    visibility: visible;
}

.fighterslider .slick-dots {
    bottom: -108px;
}

.Addition {
    /* background-image: url("../images/Frame\ 51\ \(1\).png"); */
    background-color: white !important;
    background-size: cover;
    background-position: center;

}

.recipes {
    background-image: url("../images/banner.png");

}

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

.stores-box {
    position: relative;
    z-index: 0;
    display: block;
    min-height: 400px;
    height: 100%;
    overflow: hidden;
}

.stores-box::before,
.footer-bootmbg::after {
    content: "";
    background: url(../images/stories-design.png);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-position: center;
    background-size: cover;
}

a.stores-box img {
    aspect-ratio: 2 / 2.7;
    object-fit: cover;
    object-position: center;
}


.stores-box-content {
    display: flex;
    background: var(--primary-color);
    height: 60px;
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white-color);
    transition: all 0.2s linear;
}

.topstores {
    height: 100%;
}

.gallary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0px;

}

.gallary a {
    flex: 0 0 auto;
    width: 18.19%;
}

.gallary img {
    width: 100%;
    box-shadow: 0 0 10px;
}



.inner-banner h2 {
    color: var(--layout-color);
}

.inner-banner {

    background: url('../images/forts page banner.png');
    background-position: center;
    height: 230px;
    background-size: cover;
    background-origin: content-box;
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.4;
    z-index: -1;
}

.breadcrumb {
    position: absolute;
    left: 16px;
    margin-top: -16px;
}


li.breadcrumb-item a {
    font-size: var(--font-size-paragraph) !important;
    color: var(--white-color) !important;
    text-decoration: none !important;
    vertical-align: super;
}

.breadcrumb-item::before {
    filter: invert(1);
}

.breadcrumb-item.active {
    color: var(--secondary-color) !important;
    font-size: var(--font-size-paragraph) !important;


}






.event .card {
    text-align: left !important;
    max-width: 49%;
    min-width: 150px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    border-radius: 12px;
}





.pagination .page-item .page-link {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 0px !important;
    margin: 0 4px;

}

.pagination .page-item.disabled .page-link {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.page-item.active .page-link,
.page-item:hover .page-link {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
}



.event .card {
    max-width: 100%;
}

.event .card img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: top;
    border-bottom: 1px solid var(--primary-color);
}


/* forts */
.forts .card {
    overflow: hidden;
    text-align: left;
    color: #fff !important;
    border: none !important;
}

.fort-img-box {
    overflow: hidden;
}

.forts .card img:hover {
    transform: scale(1.1);


}

.forts .card p {
    height: 70px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.forts .card img {
    aspect-ratio: 2/2;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px !important;
    transition: transform 0.5s ease;
}

.forts .container-fluid .row .col-lg-3:nth-child(odd) .card {
    background: var(--dark-color) !important;
}

.forts .container-fluid .row .col-lg-3:nth-child(even) .card {
    background: #000 !important;
}

.tapmle-card {
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 684px;
}

.tapmle-card img {
    min-height: 100%;
    min-width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.tample-content {
    visibility: hidden;
    color: var(--white-color);
    height: 100%;
    width: 100%;
    padding: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%, -50%) rotateY(-90deg);
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.5s ease-out;
}

.tapmle-card:hover .tample-content {
    backface-visibility: visible;
    cursor: pointer;
    visibility: visible;
    transform: translate(-50%, -50%) rotateY(0deg);

}

.tapmle-card:hover.tapmle-card .d-flex img+.d-flex h2 {
    display: none;
}

.tamples .container-fluid .row .tapmle-card:nth-child(1) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(5) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(10) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(14) .tample-content {
    background: linear-gradient(to right, #4bc6b3b4, #4bc6b3ce), url("../images/tample design.png"), #f78e1e73;
    background-size: 100% 100%;
    background-position: center;

}

.tamples .container-fluid .row .tapmle-card:nth-child(2) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(6) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(11) .tample-content {
    background: linear-gradient(to right, #7d15bdb2, #7d15bdb2), url("../images/tample design.png"), #f78e1e73;
    background-size: 100% 100%;
    background-position: center;

}

.tamples .container-fluid .row .tapmle-card:nth-child(3) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(8) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(9) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(13) .tample-content {
    background: linear-gradient(to right, #eb8c2093, #eb8c2093), url("../images/tample design.png"), #f78e1e73;
    background-size: 100% 100%;
    background-position: center;

}

.tamples .container-fluid .row .tapmle-card:nth-child(4) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(7) .tample-content,
.tamples .container-fluid .row .tapmle-card:nth-child(12) .tample-content {
    background: linear-gradient(to right, #df1163a1, #df1163ad), url("../images/tample design.png"), #f78e1e73;
    background-size: 100% 100%;
    background-position: center;

}

.cities {
    background: var(--white-color);
    padding: 0 !important;
}

.feature-cities {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cities-baner-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.feature-city-image img {
    min-height: 495px;
}


.feature-city-content {
    background: linear-gradient(45deg, #fffffffc, #ffffff5c), url("../images/citiesinfo-bg.webp");
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: visible !important;
    height: 100%;
    background-position: center;
    background-size: cover;


}

.feature-city-content:before {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: -21px;
    border: 22px solid transparent;
    border-right-color: #fff;
    height: 0;
    width: 0;
    z-index: 1;

}


.citie-img-box {
    display: block;
    overflow: hidden;

    border: 1px solid #fff;
    text-decoration: none;
    position: relative;
}


.citie-img-box h4 {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 2;
    font-weight: 900;
    color: var(--layout-color) !important;
    font-size: calc(var(--font-size-h3) - 14px);
}

.citie-img-box img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
    height: 300px;
    overflow: hidden;

}

.citie-img-box:hover.citie-img-box h4 {
    color: var(--secondary-color) !important;
}

.citie-img-box:hover.citie-img-box>img {
    transform: scale(1.1);
}

.citie-img-box::after {
    content: "";
    background: #14245c6e;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.bottom-grid {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 0;
}

/* forest */


.forests {
    background: linear-gradient(45deg, #0000009e, #0000005e), url("../images/forestbg.jpg");

    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.forest-wrapper {
    background: #fff;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
    text-align: center;
    -webkit-box-shadow: 0 3px 12px -1px rgba(7, 10, 25, 0.05), 0 22px 27px -20px rgba(7, 10, 25, 0.05);
    box-shadow: 0 3px 12px -1px rgba(7, 10, 25, 0.05), 0 22px 27px -20px rgba(7, 10, 25, 0.05);
    transition: all 0.5s ease;
    height: 95%;
}

.forest-wrapper:hover {
    transform: translateY(-12px);
}

/* .forest-wrapper-header {
    overflow: hidden;
    max-height: 300px;
    height: 300px;
    width: 100%;


} */

/* .forest-wrapper-header img {
    width: 100%;
    border-radius: 15px 15px 0px 0px !important;
    aspect-ratio: 1.5/1;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
} */

span.tag {
    background: var(--primary-color);
    padding: 10px 28px;
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 25px;
    color: #fff;
    box-shadow: 0 0 16px 0px #644d4d;
}

.forest-wrapper-body {
    padding: 20px 15px 34px 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;

}

.forest-wrapper-body h2 {
    font-size: calc(var(--font-size-h2) - 22px);
}



.slider-cavs {
    box-shadow: 0 0 10px #0000005e;
    height: 100%;
}

.slider-cavs p {
    height: 87px !important;
}



.slider-cavs img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 300px;
}

/* 
.Festival .container-fluid .row .col-lg-3:nth-child(even) .card {
    background: #f1891bb4 !important;

}

.Festival .container-fluid .row .col-lg-3:nth-child(odd) .card {
    background: #000 !important;
} */

.Festival .container-fluid .row .col-lg-3 .card .card-body {
    position: relative;
    padding: 30px 16px;
}

.fest-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    position: absolute;
    right: 16px;
    gap: 4px;
    top: -20px;
    padding: 4px 8px;
    border-radius: 4px;
    background: #fff;
    border: 2px solid var(--primary-color);
}

.Social-Workers .fort-img-box {
    overflow: hidden;
    border-radius: 50%;

    margin: 0 auto;
}

.Social-Workers .fort-img-box img {
    height: 100%;
}

.Social-Workers .card {
    border-radius: 0 60px !important;
    padding: 12px;
    height: 100%;
    text-align: center !important;
    background: gray;

}

.Social-Workers .card img {
    object-fit: cover !important;
}

.Social-Workers .card .card-body {
    padding: 8px;
}

.Social-Workers .card .card-body .card-title {

    font-weight: 900;
}

.Social-Workers .row .col:nth-child(odd) .card {
    background: #272727;
}

.Actors {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.Actors .card,
.Notable-Person .card {
    box-shadow: 0 0 10px #0000005e;
    border: none !important;
    height: 100%;
}

.Actors .card img,
.Notable-Person .card img {
    aspect-ratio: 2 / 2.5;
    overflow: hidden;
    object-fit: cover;

}

.Actors .card .card-title,
.Notable-Person .card .card-title {
    height: 44px;
    font-size: calc(var(--font-size-h3) - 19px) !important;
}

.actside-bg {
    z-index: 1010;

    overflow: hidden;
}

.actside-bg::before {
    content: "";
    height: 100%;
    width: 100%;
    background: #28191942;
    z-index: 11;
    position: absolute;
    left: 0;
    top: 0;
}

.figures-btn {
    font-size: calc(var(--font-size-h3) - 12px);
    /* font-family: var(--heading-font2); */

    border: none !important;
    padding: 17px;
    background: #fff;
    border-bottom: 0.5px solid #ffe5e5 !important;
}

.figures-btn:last-child {
    border-bottom: none !important;
}

.figures-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.ngo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    padding: 10px 0px;
}

.ngo-card:hover.ngo-card img {
    box-shadow: 0 0 10px #f78e1e88;
}

.ngo-card img {
    aspect-ratio: 2/2;
    object-fit: contain;
    max-width: 300px;
    width: 100%;
    max-height: 300px;
    height: 100%;
    box-sizing: border-box;
    padding: 12px 8px;
    margin: 12px;
    box-shadow: 0 0 10px #0000005e;
}


.ngo-card .ngo-title {
    font-size: calc(var(--font-size-h3) - 19px);
    text-align: center;
    word-break: break-word;
    font-weight: 900;
}

.stores-box::before {
    background: none !important;
}


.songs-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    justify-content: center;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 0.5rem;
    color: var(--dark-color) !important;
}
.songs-card > .songs-category-banner{
    width: 30%;
}
.songs-card >  .songs-category-details {
    max-width: 70%;
    width: 70%;
    padding: 0px;
    position: static !important;
    background: transparent;
    color: #000;
}
.songs-category-banner {
    height: auto;
    max-width: 100%;
    position: relative;

}

.songs-card > .songs-category-banner::before {
    content: "";
    position: absolute;
    display: block;
    background: #f78f1e;
    width: 93%;
    height: 90%;
    z-index: -1;
    transform: translate(-50%, -50%);
    top: 41%;
    left: 50%;
    border-radius: 0.5rem;
}

.songs-category-banner img {
    object-fit: cover;
    aspect-ratio: 2/2;
    border-radius: 0.5rem;
    border: 0.5px solid #644d4d3d;
}

.songs-category-details {
    max-width: 100%;
    padding: 16px;
    position: absolute;
    bottom: -58px;
    backdrop-filter: blur(5px);
    background: #11111154;
    color: #fff;
    transition: 0.2s all linear;
}

.songs-category-details p {
    margin-bottom: 8px;
}

.songs-category-details h5 {
    font-weight: 600;

}


.songs .slick-prev {
    left: -10px;
    top: 35%;
}

.songs .slick-next {
    right: 10px;
    top: 35%;
}

.songs-slider:hover.songs-slider .slick-prev:before,
.songs-slider:hover.songs-slider .slick-next:before {
    visibility: visible;
}

.songs-banner {
    height: 350px;
}

.songs-banner iframe {
    position: absolute;
    z-index: -1;
    height: 1000px;
    object-fit: contain;
}

.songs-list-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    column-gap: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
    border-radius: 12px;
}

.songs-list-card:hover .songs-category-details {
    bottom: 0;
}

#mobilesonglist {
    background: #fff;
    width: 100%;
    height: 0;
    transition: height 0.2s linear;
    margin-bottom: 16px;
}

.listshow {
    height: 100% !important;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    line-height: 10px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: var(--white-color) !important;
}

.play-btn:hover {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.Albums-link {
    display: flex;
    font-size: 14px;
    text-transform: capitalize;
    font-family: 'Tisa Sans Pro';
    margin: 6px;
    width: 100%;
    font-weight: 800;
    gap: 10px;
    max-height: 40px;
    align-items: center;
    justify-content: flex-start;

}

.Albums-link img {
    max-height: 40px;
    border: 1px solid #b3acac;
}

.track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    text-decoration: none;
    background: #ffffff;
    color: var(--dark-color);

}




.song-list {
    margin: 24px 0px;
}

.treck-img {
    height: 40px;
    display: inline-block;
    width: 40px;
    border-radius: 4px !important;
    position: relative;
    overflow: hidden;
}

.treck-img:after {
    content: "\F4F3";
    font-family: bootstrap-icons !important;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 111;
    color: #fff;
    background: #00000075;
    font-size: 28px;
    height: 100%;
    width: 100%;
    visibility: hidden;

}

.track:hover {
    background: #e6e5e546;
}

.track:hover.track .treck-img:after {
    visibility: visible;
}

.track-col {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.track-col-1 {
    width: 20%;
}

.track-col-2 {
    width: 60%;
}

.track-col-3 {
    width: 20%;
}

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

audio {
    width: 100%;
}

audio::-webkit-media-controls-enclosure {

    border-radius: 0px !important;
    background: rgb(255, 255, 255);
}

audio::-webkit-media-controls-timeline {
    background: rgb(255, 255, 255);
}

audio::-webkit-media-controls-volume-control-container {
    background-color: var(--primary-color);
    color: var(--white-color) !important;

}

audio::-webkit-media-controls-volume-control-container.closed {
    background-color: gray;
}


audio::-webkit-media-controls-volume-slider {
    background-color: var(--primary-color);

}

.addition-card {
    position: relative;
    z-index: 1;
}


.addition-card::before,
.addition-card::after {
    content: "";
    position: absolute;
    display: block;
    background: #f78f1e;
    width: 93%;

    z-index: -1;
    transform: translate(-50%, -50%);
    top: 0px;
    height: 10px;
    left: 50%;
    border-radius: 0.5rem;
    transition: height 0.2s linear;
}

.addition-card:hover.addition-card::before {
    height: 0px;
}

.addition-card::after {
    top: auto;
    bottom: -52px;
    height: 4px;
    width: 0;
    visibility: hidden;
    transition: width 0.2s linear;
}

.addition-card:hover.addition-card::after {
    width: 100%;
    visibility: visible;
}

.fighter .card {
    text-align: center;
}

.fighter .card img {
    aspect-ratio: 2/2;
    object-fit: cover;
}

.fighter .card h5 {
    height: 44px;
    font-size: calc(var(--font-size-h3) - 19px);
}

.fighter .frist-subdiv.tample-content {
    background: linear-gradient(to right, #eb8c2093, #eb8c2093), url("../images/tample design.png"), #f78e1e73 !important;
    background-size: 100% 100% !important;
    background-position: center !important;
}

.centerflower {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background: url("../images/ping-star-img.png") no-repeat center;
    height: 40px;
    width: 40px;
    z-index: 111;
}

.Recipes-card {
    background: #fff;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px 0px 10px;
    flex-direction: column;
    text-align: center;
    margin: 40px 0px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    gap: 16px;
    overflow: hidden;
}



.recipes-img {
    display: block;
    width: 100%;
}

.recipes-img img {
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #00000038;
    max-height: 300px;
    border-radius: 10px 10px 0px 0px;
}

.recipes-content {

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 10px 0px 0px;
    min-height: 120px;
}

.movies-banner {

    background: url(../images/container-bg-img.jpg);
    background-position: 3px -39px;
    background-size: cover;
}

.movies-banner h2 {
    background: url(../images/header-bg.png);
    background-size: 342px 38px;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px 117px 0px;
}

.movie-card {
    background: var(--dark-color) !important;
    height: 100%;
}

.movies .movie-content {
    padding: 18px;
    color: #fff;
}

.movie-img img {
    aspect-ratio: 4/2;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}

.movies .movie-card.mc2 {
    background: #000 !important;
}

.bg-details {
    height: 56vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.caves-details {
    height: 85vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.caves-details:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}

.cavesinfo img {


    object-fit: cover;

    border-radius: 10px !important;
}

.cavesinfo .cavesinfo-img {
    aspect-ratio: 2/2;
    overflow: hidden;
    width: 100%;
}

.cavesinfo .slick-slide {
    transform: scale(0.95);


}

.cavesinfo .slick-slide img {
    border-radius: 10px !important;
    overflow: hidden;
    height: 450px;
    width: 100%;

}

.cavesinfo .slick-slide.slick-center {
    transform: scale(1);
    opacity: 1;

}



.cavesinfo .slick-prev,
.cavesinfo .slick-next {
    z-index: 2;

}

.cavesinfo .slick-prev:before,
.cavesinfo .slick-next:before {
    visibility: visible;
}

.gallary-slider img {
    aspect-ratio: 2/2;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.gallary-slider .slick-prev:before,
.gallary-slider .slick-next:before {
    visibility: visible !important;
}

.gallary-slider .slick-prev {
    z-index: 112;
    left: 92%;
    top: -33px;
}

.gallary-slider .slick-next {
    right: 23px;
    z-index: 112;
    top: -33px;
}

.multiimg img {
    aspect-ratio: 3 / 2;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.eventdetails-baner {
    position: relative;
    background: #ffffff;
    max-width: 80%;
    margin: 0 auto;
    top: -105px;
    border-radius: 16px;


}

.eventdetails-baner ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-list>span {
    padding: 4px 8px;
    font-size: 14px;
    line-height: 14px;
    color: var(--dark-color);
    border: 1px solid #8f8a8a;
    border-radius: 25px;
    display: inline-block;

}

span.event-tag {
    white-space: nowrap;
    min-width: 105px;
}

span.event-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.event-gallery img {
    aspect-ratio: 2/1.5;
    object-fit: cover;
    width: 100%;
}

.form-group .form-control {
    height: 50px;
}

.contact-info-item:not(:last-child) {
    margin-bottom: 30px;
}

.contact-info-item.style-two {
    padding: 35px 40px;
    background: #f0f6ff;
}

.contact-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
}

.contact-info-item.style-two .icon {
    margin-bottom: 10px;
    background: var(--primary-color);
}

.contact-info-item.style-two .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    line-height: 60px;
    margin-right: 25px;
    border-radius: 100px;
}

.contact-info-item.style-two .icon {
    font-size: 24px;
    line-height: 60px;
    color: white;
    text-align: center;
}

.fsocial a {
    color: #fff;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    line-height: 37px;
    font-size: 18px;
}

.contact-info-item.style-two .content .title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
    display: block;
}

.fsocial a:hover {
    background-color: var(--secondary-color);
}

/* .f-nav a {
    text-decoration: none;
}

.f-nav a:hover {
    text-decoration: underline;
    color: var(--primary-color) !important;
} */

.grid:after {
    content: '';
    display: block;
    clear: both;
}

.grid>a {
    margin: 10px;
    display: block;
    height: auto;
    clear: both;
    overflow: hidden;
}

.grid>a:hover img {
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.grid>a img {
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.subs {
    border: dashed 1px #fff;
    border-radius: 5px;
    padding: 10px;
}

.text-warning {
    color: var(--primary-color) !important;
}

.managelist {
    list-style: none;
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
    margin: 10px;
    /* display: grid;
  grid-template-columns: repeat(6,1fr); */
    padding: 0;
}

.managelist li {
    height: 100%;
    display: table;
    width: 100%;
}

.pagination {
    align-items: center;
    justify-content: center;
}
