@import url(../../css2);
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p {
    margin: unset;
}
.preloader,
img {
    width: 100%;
}
.preloader .loader,
.preloader .loader::after {
    box-sizing: border-box;
    width: 115px;
    height: 115px;
}
.preloader,
.search-box {
    place-items: center;
    place-content: center;
}
.payment-loader,
.preloader,
.search-box {
    place-content: center;
}
:root {
    --primary: #1e2a38;
    --black: #141414;
    --white: #fff;
    --gray: #e7a652;
    --light-gray: #f7f7f7;
}
* {
    padding: unset;
    box-sizing: border-box;
    /* font-family: Montserrat, sans-serif; */
    /* font-family: "Raleway", sans-serif; */
      font-family: 'Poppins', sans-serif;


    font-weight: 500;
    color: var(--black);
}
body {
    background-color: var(--light-gray);
    padding-top: 4rem;
    overflow-x: hidden;
}
a {
    text-decoration: unset;
    color: var(--primary);
}
#calendar > .body > .date.disabled > p,
.text-gray,
label {
    color: var(--gray);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: unset;
    font-weight: bolder;
}
label {
    font-size: 0.9rem;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px var(--light-gray) inset;
    transition: background-color 5000s ease-in-out;
}
.shadow {
    box-shadow: 0 0 6px 0 #dfdfdf70 !important;
}
.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.downloadReceiptBtn {
    display: block;
    background-color: var(--primary);
    outline: 2px dashed var(--gray);
    outline-offset: 2px;
    border-radius: 0.5rem;
    color: #fff;
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
}
.downloadReceiptBtn:hover {
    color: #fff;
}
#successModal .btn-close {
    top: 1rem;
}
.glowing-background {
    font-size: 10px;
    line-height: 12px;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--primary);
    box-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
    animation: 1s ease-in-out infinite background-glow;
    display: inline-block;
    text-align: center;
}
@keyframes background-glow {
    0%,
    100% {
        box-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
    }
    50% {
        box-shadow: 0 0 10px var(--primary), 0 0 15px var(--primary);
    }
}
.preloader {
    position: fixed;
    top: 0;
    background-color: #fff;
    height: 100vh;
    display: grid;
    z-index: 99999;
}
.preloader img {
    position: absolute;
    width: 100px;
    border-radius: 100px;
    transform: scale(1);
    opacity: 1;
}
.preloader .loader {
    border: 5px solid #fff;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: 1s linear infinite rotation;
}
.preloader .loader::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 5px solid transparent;
    border-bottom-color: var(--gray);
}
@keyframes rotation {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}
.slick-slide {
    padding: 0 10px;
}
.slick-slide img {
    /* border-radius: 1.5rem; */
}

main{
    margin-top: 20px;
}
.slick-next,
.slick-prev {
    background-color: #14141490;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
    border-radius: 2rem;
    z-index: 1;
}
.slick-next:before,
.slick-prev:before {
    line-height: normal;
    opacity: 1;
}
.slick-next {
    right: 1.5rem;
}
.slick-prev {
    left: 1.5rem;
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    background: #14141490;
}
.slick-dots li {
    margin: 0;
}
.slick-dots li button:before {
    font-size: 2.5rem;
}
.gallery .slick-slide img {
    aspect-ratio: 10/7;
}
.uv-checkbox-wrapper {
    display: inline-block;
    width: 100%;
    background-color: var(--light-gray);
    border: 2px dashed var(--black);
    padding: 8px 15px;
    border-radius: 0.5rem;
}
.dropdown-toggle::after,
.uv-checkbox {
    display: none;
}
.uv-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
header,
header nav {
    align-items: center;

}
header nav > a
{
      font-family: 'Raleway', sans-serif;
}
.uv-checkbox-icon {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fff;
    border: 2px dashed var(--black);
    border-radius: 50%;
    transition: border-color 0.3s, border-radius 0.3s;
}
.uv-checkmark {
    position: absolute;
    top: 0.2em;
    left: 0.2em;
    width: 0.9rem;
    height: 0.9rem;
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.uv-checkbox-text {
    font-weight: 600;
    line-height: 1.1rem;
    margin-left: 0.8rem;
    transition: color 0.3s;
}
.uv-checkbox:checked + .uv-checkbox-label .uv-checkbox-icon {
    border-color: var(--primary);
    border-radius: 50%;
    background-color: var(--primary);
}
.uv-checkbox:checked + .uv-checkbox-label .uv-checkmark {
    stroke-dashoffset: 0;
}
#calendar > .body > .date.current > p,
#calendar > .body > .date:hover p,
.uv-checkbox:checked + .uv-checkbox-label .uv-checkbox-text,
header nav > a:hover {
    color: var(--primary);
}
.text-primary {
    color: var(--primary) !important;
}
.btn {
    background-color: var(--primary);
    color: var(--white);
    border: unset;
    text-transform: uppercase;
    border-radius: 0.5rem;
}
.card,
.form-control,
.form-control:focus,
.form-group label {
    background-color: var(--light-gray);
}

.dropdown-item,
.form-control,
.google-login,
header nav > a {
    color: var(--black);
}
.accordion-button,
.booking .summary table tr th,
.btn.btn-bold,
.btn.btn-bold > span {
    font-weight: 700;
}
button:focus:not(:focus-visible) {
    outline: unset;
}
.dropdown-menu {
    inset: 0.5rem auto auto 0px !important;
    padding: unset;
    border: 2px dashed;
    border-radius: 0.5rem;
}
.dropdown-item {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}
.google-login,
.receipt p {
    font-size: 0.8rem;
}
.btn-close:focus {
    outline: unset;
    box-shadow: unset;
    opacity: 0;
}
.row-gap {
    row-gap: calc(var(--bs-gutter-x) * 1);
}
.card {
    border-radius: 2rem;
}
.form-group {
    position: relative;
    margin-bottom: 1.8rem;
}
.form-group label {
    position: absolute;
    top: -10px;
    left: 1.3rem;
    padding-inline: 0.4rem;
}
.form-control {
    border: 1px solid var(--gray);
    border-radius: 0.5rem;
    padding-top: 0.8rem;
    padding-bottom: 0.6rem;
    padding-inline: 1rem;
}
#heroCarousel .slick-slide,
.btn-close {
    padding: unset;
}
.form-control:focus {
    color: var(--black);
    border-color: var(--primary);
    box-shadow: unset;
}
.excludes,
.form-control.invalid {
    border-color: #dc3545;
}
.enquiry-lead .form-control,
.enquiry-lead .form-control:focus,
.enquiry-lead .form-group label {
    background-color: var(--white);
}
header .activity > .login:hover,
header .booknow:hover,
header nav > a.active {
    background-color: var(--primary);
}
.destination .info .details,
header {
    background-color: var(--light-gray);
}
.modal {
    backdrop-filter: blur(4px);
}
.modal-content {
    border: unset;
    border-radius: 1rem;
}
.modal-body {
    border: 2px dashed var(--gray);
    border-radius: 1rem;
}
.btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-size: 0.7rem auto;
}
.destination,
.mobile-menu,
.mobile-menu ul > li,
.trip-info,
footer {
    padding: 1rem;
}
.nav-pills .nav-link {
    font-size: 0.9rem;
    padding: 0.3rem 1.1rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    /* outline: 2px dashed var(--black); */
    outline-offset: 2px;
    border-radius: 3rem;
}
.accordion-item {
    margin-bottom: 1rem;
    box-shadow: 0 0 6px 0 #cccccc90;
}
.accordion-button:focus {
    z-index: 0;
    border-color: var(--primary);
    box-shadow: unset;
}
.google-login {
    width: 100%;
    background: 0 0;
    border: 1px solid var(--gray);
    position: relative;
}
.google-login > svg {
    position: absolute;
    left: 1rem;
    top: 0;
    height: 100%;
}
header {
    height: 5rem;
    display: flex;
    position: relative;
}
header .logo {
    width: 4.5rem;
    border-radius: 5px;
}
header nav {
    gap: 1.5rem;
    height: 100%;
    font-family: 'Raleway', sans-serif;

}
header nav > a {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
header nav > a.active {
    color: var(--white);
    /* outline: 2px dashed var(--black); */
       /* outline: 2px dashed var(--gray); */
    outline-offset: 2px;
    border-radius: 1rem;
    padding: 0.2rem 1rem;
}
header .activity {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
header .activity > .search > svg path {
    stroke-width: 2;
    transition: 0.2s ease-in;
}
header .activity > .search > svg:hover path {
    stroke: var(--primary);
}
header .activity > .location > p:first-child {
    font-size: small;
    font-weight: 700;
    line-height: 0.8rem;
    color: var(--gray);
}
header .activity > .login,
header .booknow {
    background-color: var(--primary);
    color: var(--white);
    border: unset;
    border-radius: 1.1rem;
    outline: 2px dashed var(--black) !important;
    outline-offset: 2px;
    padding: 0.4rem 1.2rem;
    transition: 0.2s ease-in;
}
.mobile-menu {
    position: fixed;
    bottom: -100%;
    right: 0;
    width: auto;
    background-color: var(--white);
    border-top-left-radius: 1rem;
    transition: 0.5s ease-in;
    z-index: 9;
}
.mobile-menu.show {
    bottom: 0;
}
.mobile-menu ul {
    list-style: none;
    padding-left: unset;
}
.mobile-menu ul > li > a {
    color: var(--black);
}
.mobile-menu ul > li > a > img {
    width: 20px;
    height: 20px;
}
header.fixed-top {
    animation: 0.8s ease-in-out headerScrollDown;
}
@keyframes headerScrollDown {
    0% {
        top: -30%;
    }
    100% {
        top: 0;
    }
}
.search-box {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    display: none;
    background-color: #6f6f6f94;
    backdrop-filter: blur(6px);
    z-index: 9999;
}
.attraction-card,
.booking,
.bottom-bar > .nav,
.cost-card,
.destination,
.search-box .search,
.trip-info {
    background-color: var(--white);
}
.search-box.show {
    display: grid;
}
.search-box .search {
    position: fixed;
    top: 2rem;
    border-radius: 5rem;
    padding: 0.5rem;
    cursor: pointer;
}
.search-result {
    width: 30rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.search-box.show .search-result {
    height: 65vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
.search-result::-webkit-scrollbar {
    display: none;
}
.bottom-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}
.bottom-bar > .nav {
    justify-content: space-between;
    padding: 0.6rem 2rem;
}
.bottom-bar > .nav > a,
.transaction-failed {
    text-align: center;
}
.bottom-bar > .nav > a.active::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 30px;
    height: 5px;
    background-color: var(--white);
}
.bottom-bar > .nav > a > img {
    width: 1.8rem;
    aspect-ratio: 1/1;
}
.bottom-bar > .nav > a > p {
    font-size: 0.7rem;
    line-height: normal;
}
footer {
    /* background-color: var(--black); */
    background-color: var(--gray);
}

footer a {
    text-decoration: unset;
    color: #0d6efd;
}

#calendar > .body > .date.active > p,
.receipt > .total > h6,
footer p {
    color: var(--white);
}
.destination .location > p,
.destination .ticket-price > p,
.trip-info > .details > p:first-child {
    color: var(--gray);
    font-size: smaller;
}
footer .links {
    display: flex;
    justify-content: end;
    gap: 1rem;
}
#hero #heroCarousel img {
    /* border-radius: 1.5rem; */
    aspect-ratio: 1440/460;
}
.destination {
    /* border: 2px dashed var(--gray); */
    border-radius: 1rem;
}
.destination img {
    border-radius: 0.5rem;
    aspect-ratio: 7/5;
}
.destination .video-btn > svg {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background-color: #00000050;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    padding: 0.2rem;
}
.destination .location {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.destination .info .details {
    position: absolute;
    right: 0;
    top: 2.9rem;
    z-index: 1;
    border: 1px solid var(--gray);
    border-radius: 0.5rem;
    padding: 0.5rem;
    visibility: hidden;
    opacity: 0;
}
.destination .info .details.show {
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease-in;
}
.destination .info .details > p {
    font-size: 0.7rem;
}
.destination .ticket-price > p {
    font-weight: 600;
}
.destination .book-ticket {
    display: block;
    color: var(--white);
    font-size: smaller;
    text-align: center;
    padding: 0.4rem 1rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
}
#videoModal .btn-close {
    background-color: #fff;
    top: -10px;
    right: -10px;
    padding: 0.5rem;
    border-radius: 10rem;
    opacity: 1;
}
#videoModal iframe {
    width: 100%;
    height: 500px;
}
.destination-details div {
    gap: 0.3rem;
}
.destination-details h6 {
    color: var(--gray);
    font-weight: 500;
}
.overview p {
    margin-bottom: 0.5rem;
}
.attraction-card ul,
.cost-card ul {
    padding-left: 0;
    margin-bottom: unset;
    list-style: none;
}
.trip-info {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 0.5rem;
}
.trip-info > img {
    width: 3rem;
    height: 3rem;
}
.attraction-card,
.cost-card {
    /* border: 2px dashed; */
    border-radius: 1rem;
    padding: 1rem 2rem;
}
.attraction-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 1rem;
}
.attraction-card,
.includes {
    border-color: #198754;
}
.cost-card ul > li {
    line-height: 2rem;
}
.booking {
    width: 90%;
    margin-inline: auto;
    /* border: 2px dashed var(--gray); */
    border-radius: 1rem;
    padding: 2rem;
}
.booking .guest,
.booking .summary,
.ticket {
    background-color: var(--light-gray);
    border-radius: 1rem;
}
.booking .guest,
.booking .summary {
    padding-block: 0.8rem;
    padding-inline: 1rem;
}
.booking .guest .label {
    font-size: medium;
    font-weight: 700;
}
.booking .guest .label > span {
    font-size: small;
    font-weight: 400;
    color: var(--gray);
}
.booking .guest .add-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.booking .guest .add-sub > button {
    background-color: var(--black);
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 1rem;
    display: grid;
    place-content: center;
}
.booking .summary table tr td,
.booking .summary table tr th {
    padding-block: 0.4rem;
}
.collaboration-image img {
    border-radius: 2rem;
}
.description p {
    margin-bottom: 1rem;
}
.ticket {
    padding: 1rem;
    border: 2px dashed;
}
.ticket img {
    border-radius: 0.5rem;
}
.ticket .booking-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ticket .booking-id,
.ticket .visit-date p:first-child {
    color: var(--gray);
    font-size: x-small;
    font-weight: 600;
}
.ticket .resort-name {
    font-size: 1.2rem;
}
.receipt {
    border-radius: 1rem;
}
.receipt > .image > img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.receipt > .total {
    background-color: var(--primary);
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
.payment-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: #ffffff61;
    backdrop-filter: blur(4px);
    z-index: 9;
}
.payment-loader .binding {
    content: "";
    width: 60px;
    height: 4px;
    border: 2px solid var(--primary);
    margin: 0 auto;
}
.payment-loader .pad {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    padding: 6px;
    margin: 0 auto;
}
.payment-loader .chip {
    width: 12px;
    height: 8px;
    background: var(--primary);
    border-radius: 3px;
    margin-top: 4px;
    margin-left: 3px;
}
.payment-loader .line,
.payment-loader .line2 {
    margin-top: 6px;
    margin-left: 3px;
    height: 4px;
    background: var(--primary);
    border-radius: 100px;
    opacity: 0;
}
.payment-loader .line {
    width: 52px;
    -webkit-animation: 3s ease-in infinite writeline;
    -moz-animation: 3s ease-in infinite writeline;
    -o-animation: 3s ease-in infinite writeline;
    animation: 3s ease-in infinite writeline;
}
.payment-loader .line2 {
    width: 32px;
    -webkit-animation: 3s ease-in infinite writeline2;
    -moz-animation: 3s ease-in infinite writeline2;
    -o-animation: 3s ease-in infinite writeline2;
    animation: 3s ease-in infinite writeline2;
}
.payment-loader .line:first-child {
    margin-top: 0;
}
.payment-loader .line.line1 {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}
.payment-loader .line.line2 {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.payment-loader .loader-text {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    line-height: 16px;
    color: #5f6571;
    font-weight: 700;
}
@keyframes writeline {
    0% {
        width: 0;
        opacity: 0;
    }
    33% {
        width: 52px;
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes writeline2 {
    0% {
        width: 0;
        opacity: 0;
    }
    33% {
        width: 32px;
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
#influencer .description,
#privacy .description,
#terms-conditions .description {
    width: 75%;
    margin-inline: auto;
}
#influencer .description ol,
#influencer .description ul,
#privacy .description ol,
#privacy .description ul,
#terms-conditions .description ol,
#terms-conditions .description ul {
    list-style: none;
}
@media (max-width: 575.98px) {
    .summary p,
    footer a,
    footer p {
        font-size: 0.9rem;
    }
    footer {
        padding-bottom: 5rem;
    }
    footer p {
        text-align: center;
    }
    footer .links {
        justify-content: center;
    }
    .social-icons svg {
        width: 40px;
        height: 40px;
    }
    .search-box {
        padding: 1rem;
    }
    .search-box input,
    .search-result {
        width: 90vw;
    }
    #hero #heroCarousel img,
    .slick-slide img {
        /* border-radius: 1rem; */
    }
    .destination {
        padding: 0.6rem;
    }
    .destination .location,
    .destination .ticket-price > p,
    .destination .title {
        font-size: 0.8rem;
    }
    .destination .info .details {
        top: 2.4rem;
    }
    .trip-info {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
    .attraction-card ul {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .destination .book-ticket {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        line-height: normal;
    }
    .destination .ticket-price {
        margin-bottom: 0.3rem;
    }
    .booking {
        width: 100%;
        padding: 1.5rem;
    }
}
@media (max-width: 767.98px) {
    #influencer .description,
    #privacy .description,
    #terms-conditions .description {
        width: 100%;
    }
}

#paymentForm .form-control {
    padding-top: 0.6rem;
    padding-bottom: 0.4rem;
    padding-inline: 1rem;
}
#paymentForm .form-control,
#paymentForm .form-control:focus,
#paymentForm .form-group label {
    background-color: white;
}
#paymentForm .form-group label {
    left: 0.7rem;
}

#calendar {
    background-color: var(--primary);
    border-radius: 1rem;
}
#calendar .calendar-table {
    border-radius: 0.8rem;
}
#calendar table > thead > tr > th {
    font-size: 14px;
    font-weight: 600;
}
#calendar table > tbody > tr > td {
    line-height: 14px;
    font-size: 12px;
    padding: 5px;
    cursor: pointer;
}
#calendar table > tbody > tr > td > .date {
    font-weight: 600;
}
#calendar table > tbody > tr > td.disabled > span {
    color: #ccc;
    cursor: not-allowed;
}
/*#calendar table>tbody>tr>td.today>span {
    color: var(--primary);
}*/
#calendar table > tbody > tr > td.selected {
    background-color: var(--primary);
    border-radius: 0.6rem;
    outline: 2px dashed var(--primary);
    outline-offset: 1px;
}
#calendar table > tbody > tr > td.selected > span {
    color: white !important;
}
#calendar #calendar-head button:disabled {
    opacity: 0.5;
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/carousel-1.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #141414;
}


    /*** Carousel Hero Header Start ***/
    .header-carousel .header-carousel-item img {
        object-fit: cover;
    }


    /*** Attractions Start ***/
    .attractions {
        position: relative;
        overflow: hidden;
    }

    .attractions::after {
        content: "";
        width: 100%;
        height: 70%;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
        background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url('../images/carousel-2.jpg') center center no-repeat;
        background-size: cover;
        z-index: -2;
        animation-name: attraction-image-zoom;
        animation-duration: 10s;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transition: 1s;
    }

    @keyframes attraction-image-zoom {
        0% {
            width: 100%;
        }

        25% {
            width: 115%;
        }

        50% {
            width: 130%;
        }

        75% {
            width: 120%;
        }

        100% {
            width: 100%;
        }
    }

    .attractions .attractions-section {
        position: relative;
        z-index: 3;
    }

    .attractions .attractions-item {
        position: relative;
        border-radius: 10px;
        transition: 0.5s;
        z-index: 1;
    }

    .attractions .attractions-item::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        border-radius: 10px;
        background: rgba(0, 0, 0, .7);
        transition: 0.5s;
        z-index: 2;
    }

    .attractions .attractions-item:hover:after {
        height: 100%;
    }

    .attractions .attractions-item .attractions-name {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        color: var(--bs-white);
        font-size: 24px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 3;
        opacity: 0;
    }

    .attractions .attractions-item:hover .attractions-name {
        opacity: 1;
    }

    .attractions-carousel .owl-stage-outer {
        margin-top: 58px;
    }

    .attractions .owl-nav .owl-prev {
        position: absolute;
        top: -58px;
        left: 0;
        background: var(--bs-primary);
        color: var(--bs-white);
        padding: 6px 35px;
        border-radius: 30px;
        transition: 0.5s;
    }

    .attractions .owl-nav .owl-prev:hover {
        background: var(--bs-white);
        color: var(--bs-primary);
    }

    .attractions .owl-nav .owl-next {
        position: absolute;
        top: -58px;
        right: 0;
        background: var(--bs-primary);
        color: var(--bs-white);
        padding: 6px 35px;
        border-radius: 30px;
        transition: 0.5s;
    }

    .attractions .owl-nav .owl-next:hover {
        background: var(--bs-white);
        color: var(--bs-primary);
    }


@media (min-width: 1200px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 500px;
    }
}

    @media (max-width: 1199px) {

        .header-carousel .header-carousel-item,
        .header-carousel .header-carousel-item img {
            height: 1200px;
        }
    }

    .header-carousel .owl-nav .owl-prev {
        display: none;
    }

  .header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%,-50%);
    /* margin-right: -60px; */
    border-radius: 60px;
    /* background: var(--bs-primary); */
    background: #1e2a38;
    /* color: var(--bs-white); */
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

    .header-carousel .owl-nav .owl-next:hover {
        box-shadow: inset 0 0 100px 0 var(--bs-light);
        color: var(--bs-primary);
    }

    .header-carousel .owl-nav .owl-next i {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation-name: carousel-next-btn;
        animation-duration: 4s;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        transition: 1s;
        color: #e7a652;
    }

    @keyframes carousel-next-btn {
        0% {
            margin-top: 35%;
        }

        50% {
            margin-bottom: 70%;
        }

        100% {
            margin-top: 35%;
        }
    }

    .header-carousel .header-carousel-item .carousel-caption {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, .4);
        display: flex;
        align-items: center;
    }

    .carousel-caption .ticket-form {
        background: rgba(255, 255, 255, 0.4);
        border-radius: 10px;
    }

    .header-carousel .header-carousel-item img {
        animation-name: image-zoom;
        animation-duration: 10s;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        transition: 1s;
    }

    @keyframes image-zoom {
        0% {
            width: 100%;
            height: 100%;
        }

        25% {
            width: 115%;
            height: 115%;
        }

        50% {
            width: 130%;
            height: 130%;
        }

        75% {
            width: 120%;
            height: 120%;
        }

        100% {
            width: 100%;
            height: 100%;
        }
    }


    
/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.feature-item .feature-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    bottom: 0; 
    left: 0;
    margin-top: 0;
    margin-right: 0; 
    background: rgba(0, 0, 0, 0.7); 
    border-radius: 10px;
    z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;
}


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .4);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    width: 100%;
    height: 100%;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/


@media (max-width: 768px) {
.header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
    height: 400px;
}
}

/*** Feature End ***/

@media (max-width: 375px) {
    .booking {
        padding: 1rem;
    }
    #calendar table > tbody > tr > td {
        line-height: 12px;
        font-size: 10px;
        padding: 4px;
    }
    #calendar table > thead > tr > th {
        font-size: 12px;
        font-weight: 600;
    }
}
