body, html {
    margin: 0;
    padding: 0;
    overflow-x:hidden;
    width: 100%;
}

#relativelyPositioned {
    position: relative;
    z-index: 3;
}
  
button {
    z-index: 4;
}

.navbar {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.navbar .nav-link {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
  
.header {
    position: relative;
    min-height: auto;
    height: 550px;
    width: 100%;
    overflow: hidden;
    color: white;
}

#headerContent {
    font-size: 30px;
}

#headerTitle {
    font-size: 60px;
}
  
#background_photo {
    position: absolute;
    min-width: 100%;
    top: 0;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
    pointer-events: none;
}
  
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    object-fit: cover;
    z-index: 0;
}

.bg_gray {
    background-color: #faf2e3;
}

hr {
    height: 0px;
    border: none;
    border-top: 5px solid;
}

/* .carousel-indicators {
    bottom: -3%;
} */

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 10;
}

.carousel-control-prev {
    left: -5%;
}

.carousel-control-next {
    right: -5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

.rooms_css {
    width: 85%;
    margin: auto;
}

.carousel_inter_css {
    width: 29%;
    position: relative;
    overflow: visible;
}

.carousel_css {
    width: 50%;
    position: relative;
    overflow: visible;
}

.carousel_menu_css {
    width: 22%;
    position: relative;
    overflow: visible;
}

@media screen and (max-width: 1300px){
    .rooms_css {
        width: 100%;
    }
}

@media screen and (max-width: 991px){
    .carousel-indicators {
        display: none;
    }

    .carousel_inter_css {
        width: 90%;
    }

    .carousel_css {
        width: 90%;
    }

    .carousel_menu_css {
        width: 90%;
    }

    .header {
        height: 500px;
    }
}

@media screen and (max-width: 768px){
    .header {
        height: 400px;
    }

    #headerContent {
        font-size: 20px;
    }

    #headerTitle {
        font-size: 45px;
    }
}

@media screen and (max-width: 576px){
    .header {
        height: 320px;
    }

    #headerContent {
        font-size: 15px;
    }

    #headerTitle {
        font-size: 35px;
    }
}

