

/* Add this CSS to make the slider responsive */
@media only screen and (max-width: 600px) {
    .slides {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .slide {
        text-align: center;
        width: 100%; /* Ensure the slide takes full width */
    }
    .slide img {
        max-width: 100%; /* Ensure the image fits within its container */
        height: auto;
    }
    .arrow {
        display: none;
    }
}


@media only screen and (max-width: 767px)
.inner-haed-2 img {
    width: 35% !important;
}




.Reservations-main-inner {
    position: relative;
    display: inline-block;
}
.fa-circle-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    cursor: pointer;
    z-index: 1;
}
.video-thumbnail {
    position: relative;
    width: 560px;
    height: 315px;
    cursor: pointer;
}
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 108%;
    height: 65%;
    z-index: 0;
}
.video-container iframe {
    width: 100%;
    height: 100%;
}
/* new css */
.about-inner-1 {
    width: 60% !important;
}

.about-inner-2 img {
    width: -200% !IMPORTANT;
}

.main-silled-sec-2 img {
    width: 100%;
}

.main-silled-sec {
    width: 105%;
}

.booka-tabel-inner2 input {
    color: white !important;
}


#time {
    /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Add custom arrow */
    background-repeat: no-repeat;
    background-position: right center;
    /* Add padding to accommodate the custom arrow */
    padding-right: 30px;
    /* Customize font, border, and other properties as needed */
    font-family: Arial, sans-serif;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 14px 29px;
    /* Add custom styles for when the select element is focused */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    color: white;
    background-color: #0b1214;
}


/* Style for when the select element is hovered */
#time:hover {
    border-color: #ffffff;
}

/* Style for when the select element is focused */
#time:focus {
    border-color: #ffffff; /* Change to your desired focus color */
}

/* Style for the dropdown arrow icon */
#time::after {
    content: '\25BC'; /* Unicode character for downward arrow */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none; /* Ensure the arrow doesn't interfere with clicking the select */
    color: #666; /* Change to your desired color */
}


.go3491326440.tm-overall-cta  {
    display: none !important;
}

h2.go2700838891.tm-title {
    display: none !important;
}
.go2048136271 {
    display: none !important;
}

p.typography_body-l__KUYFJ.typography_appearance-subtle__8_H2l {
    color: white;
    display: flex;
    justify-content: center;
    font-weight: bold;
}
span.typography_display-s__qOjh6.typography_appearance-default__AAY17.title_displayName__TtDDM {
    font-family: Oswald;
    color: white;
}
span.typography_body-l__KUYFJ.typography_appearance-subtle__8_H2l.title_rating__LANL_ {
    font-family: Oswald;
    color: #ad946c;
}
h1.typography_default__hIMlQ.typography_appearance-default__AAY17.title_title__i9V__ {
    display: flex;
    justify-content: center;
}

span.styles_tooltipWrapper__ZUQzl {
    display: none;
}
.typography_body-xs__FxlLP.typography_appearance-default__AAY17.typography_weight-heavy__E1LTj.styles_verificationIcon___X7KO {
    display: none !important;
}

button.styles_verificationLabel__kukuk
{
    display: none !important;
}
.star-rating_starRating__4rrcf.star-rating_medium__iN6Ty {
    display: flex;
    justify-content: center;
    height: 50px;
}



/* General styling for the slider */
.image-slider {
    position: relative;
    width: 100%; /* Full width for responsiveness */
    max-width: 90%; /* Optional max width */
    margin: auto;
    overflow: hidden; /* Hide overflow to display only visible slides */
}

/* Styling for the image slides container */
.image-slides {
    display: flex;
    transition: transform 0.5s ease;
}

/* Default setting to show two images at once for larger screens */
.image-slide {
    flex: 0 0 50%; /* Show two slides at once for larger screens */
    box-sizing: border-box;
    padding: 5px; /* Add some spacing between slides */
}

/* Image styling */
.image-slide img {
    width: 100%; /* Make images fit within their slide */
    max-height: 250px; /* Set a max height for the images */
    object-fit: cover; /* Ensure the image covers the slide */
}

/* Styling for the text below the images */
.image-slide h5 {
    color: #c9ab81;
    font-family: 'Tangerine', cursive;
    font-size: 24px; /* Adjust font size */
    text-align: center; /* Center the text */
    margin: 10px 0;
}

/* Media query for smaller devices to show images in rows without slider */
@media (max-width: 768px) {
    .image-slider {
        overflow: visible; /* Allow overflow for the gallery */
    }

    .image-slides {
        display: grid; /* Use grid layout */
        grid-template-columns: repeat(2, 1fr); /* Show two images in a row */
        gap: 10px; /* Space between images */
    }

    .image-slide {
        flex: 1 0 100%; /* Each image takes full width */
    }

    .image-slide img {
        max-height: 150px; /* Reduce the image height for smaller screens */
    }

    .image-slide h5 {
        font-size: 16px; /* Adjust text size for better readability on small screens */
    }
}


