@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed: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');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

* {
    padding: 0;
    margin: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 10px;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 0px;
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #D2AC85; 
    border-radius: 0px;
  }
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #D2AC85; 
  }
a{
    text-decoration: none;
}
.navbar {
    -webkit-box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
    box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
    -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    overflow-x: hidden;
    background-color: #FBFAF4;
    /* background-image: linear-gradient(45deg, black 30%, blue 70%); */
}
.navbar-nav a {
    margin-left: 10px;
    font-size: 22px;
    /* color: rgb(117, 113, 113); */
}
.nav-link img {
    width: 25px;
    height: 15px;
}
.navbar-nav a {
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    color: #000000bd;
    border-bottom: 1px solid transparent;
}

.navbar-nav a:hover {
    color: #A37344;
    /* border-bottom: 1px solid #000000; */
}

.navbar-nav a.active {
    /* border-bottom: 1px solid #000000; */
    color: #A37344!important;
}
.btn2 a{
color: white !important;
}
.btn2 {
    position: relative;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 25px;
    display: inline-block;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: black;
    background-color: #A37344;
   }
   
   .btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   }
   
   .btn2:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
   }
   
   .btn2::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
   }
   
   .btn2::after {
    background-color: #A37344;
   }
   
   .btn2:hover::after {
    transform: scaleX(1.2) scaleY(1.4);
    opacity: 0;
   }
  .btn1 a {
    color: white !important;
    text-decoration: none;
}
  .btn1 {
    background-color: #BF9463;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
  }
  
  .btn1:after {
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  
  .btn1:hover:after {
    animation: ripple_401 1s ease-out;
  }
  

  .footer_wrapper {
    background-color:#1B1106;
}

.footer_wrapper h5 {
    color:white;
    margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
    margin-bottom: .5rem;
    list-style: none;
}

.footer_wrapper .contact-info li a{
    color:white
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
    color: white;
    font-size: 14px;
    padding-left:1.5rem;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    
}

.footer_wrapper .link-widget li a:hover {
    margin-left: .625rem;
    color:#DD9858;
}

.footer_wrapper .social-network a {
    width: 2.1rem;
    height: 2.1rem;
    margin: .6rem;
    line-height:2rem;
    font-size: .875rem;
    display: inline-block;
    border: .125rem solid var(--text-gray);
    color: var(--text-gray);
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
    background-color: #DD9858;
    border-color: #DD9858;
    color: var(--text-white);
    box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
    transform: translateY(-0.1875rem);
}

.footer_wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.footer_wrapper .copyright-section {
    background-color:  #dddddd;
    padding: 1.25rem 0 .3125rem;
    text-align: center;
}


.footer_wrapper .copyright-section a {
    color: var(--secondary-text);
}
.head-home {
    position: relative;
   background-color: #83572A;
}
.HeadText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width:900px;
}
/* .triangle-bg{
    position: absolute;
    clip-path: polygon(0 0, 50% 0, 11% 100%, 0% 100%);
} */
.carousel1 {
    width: 100% !important;
    background: url('../img/deluxe-1.jpg') rgba(0, 0, 0, 0.459);
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 700px;
}

.carousel2 {
    width: 100% !important;
    background: url('../img/single-4.jpg')rgba(0, 0, 0, 0.459);
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 700px;
}

.carousel3 {
    width: 100% !important;
    background: url('../img/deluxe-2.jpg')rgba(0, 0, 0, 0.342);
    background-position: center 30%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 700px;
}
.Seaction-About-1{
    position: relative;
    /* background: linear-gradient(90deg, white 50%, rgba(48, 49, 49, 0.151) 50%); */
}
.Seaction-About-bg{
    position: absolute;
    clip-path: inset(0 57% 0 22%);
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    right: 0;
    background-color: #D2AC85;
    z-index: -1;
}
.About-Section-col{
    position: relative;
}
.About-Section-img-3{
z-index: 100 !important;
box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.Facilites-Section{
    background: url('../img/deluxe-b-3.jpg') rgba(0, 0, 0, 0.452);
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
}
.Icons{
    background-color: white;
}
.Icons .Icons8{
    background-color: #D2AC85;
    margin: auto !important;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.Icons8 img{
    width:50px;
    color: white;
    margin-top: 10px;
}
.Icons h6{
    color: #3D3C3C; 
    font-size: 20px;
    font-weight: 600; 
    margin-top: 15px;
}
.Icons p{
    padding: 10px 30px 10px 30px;
}

.Icons:hover h6{
    color: #D2AC85;
}
.room-container {
    position: relative;
    overflow: hidden;
}
.room-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.26);
    z-index: 1;
}
.initial-text {
    position: absolute;
    top: 85%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: white;
    display: flex;
    z-index: 2;
    font-weight: 700;
    text-align: left;
    font-size: 25px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    text-shadow: 3px 3px 4px #1e1e1f;
}
.overlay {
    position: absolute;
    bottom: 0;
    left: -20%;
    width: 100%;
    height: 20%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 3;
}
.room-text {
    color: white;
}
.room-container:hover .overlay {
    opacity: 1;
    transform: translateY(-30%);
    transition: all 0.3s;
}
.room-container:hover .initial-text{
    top: 60%;
    transition: 0.3s;
    
}
.room-container:hover .dark-overlay{
    backface-visibility: hidden;
    transition: all 0.3s ease;
    background: transparent;
    background: -webkit-linear-gradient(top, transparent, #000);
    background: linear-gradient(to bottom, transparent, #000);
}
.Restaurant-Section{
    position: relative;
}
.Seaction-Restaurant-bg{
    position: absolute;
    clip-path: inset(0 0 0 57%);
    width: 100%;
    height: 120%;
    bottom: -10px;
    top: -10px;
    right: 0;
    background-color: #D2AC85;
    z-index: -1;
}
.Restaurant-Section-restaurant{
    padding: 20px 30px 20px 30px;
}
.Restaurant-Section h2{
    background-color: #D2AC85;
    padding: 8px 15px;
    width: 70%;
    color: white;
}
.Slogan{
    background: url('../img/deluxe-1.jpg') rgba(0, 0, 0, 0.459);
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
}
.Slogan2{
    background: url('../img/restaurant1.jpg') rgba(0, 0, 0, 0.459);
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
}
.Testimonials{
    background: url('../img/double-1.jpg') rgba(0, 0, 0, 0.425);
    background-position: center 80%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}
.Testimonials .card {
    border-bottom: 3px #D2AC85 solid !important;
    transition: 0.5s;
    margin-top: 60px;
  }
  .Testimonials .card i {
    background-color: #D2AC85;
    color: #ffffff;
    width: 75px;
    height: 75px;
    line-height: 75px;
    margin: -40px auto 0 auto;
  }
  .title-head{
    font-size: 40px;
    font-family: Cinzel ,serif;
    font-weight: 300px;
    color: white;
    text-align: center;
    text-transform: uppercase !important;
    padding: 200px 0px !important;
  }
  .Rooms-head {
    background: url('../img/single-4.jpg')rgba(0, 0, 0, 0.397);
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
   
}
.rooms-section-text h1{
    color: #29292be7;
    font-size: 27px; 
    font-family: Cinzel; 
    font-weight: 500;
}
.rooms-section-text h3{
    color: #29292bb7;
    font-size: 16px; 
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 20px;
}
.rooms-card{
    border: #00000034 1px solid;
    padding: 10px 15px 10px 15px;
    margin-bottom: 20px;
    background-color: white;
}
.rooms-card:hover{
    border: #00000034 1px solid;
    padding: 10px 15px 10px 15px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: 0.5s all;
}
.Restaurant-head{
    background: url('../img/restaurant1.jpg')rgba(0, 0, 0, 0.473);
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    
}

.Menu-element-border{
    border-bottom: #16171ba1 2px dotted;
}
.Gallery-head{
    background: url('../img/single-3.jpg')rgba(0, 0, 0, 0.582);
    background-position: center 140%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    
}
.transition {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transition: all 0.5s;
}

.thumb img{
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.read-btn {
    background: none;
    border: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    letter-spacing: 2px;
    font-weight: bold;
}


.About-head{
    background: url('../img/deluxe-1.jpg')rgba(0, 0, 0, 0.425);
    background-position: center 110%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    
}
.About-Section-img-1{
    width: 300px;
    height: 200px;
    margin-bottom: 10px;
}
.About-Section-img-2{
    width: 300px;
    height: 200px;
}
.About-Section-img-4{
    margin-left: 10px;
    width: 300px;
    height: 200px;
}
.About-Section-img-5{
    margin-left: 10px;
    width: 300px;
    height: 200px;
}
.Contact-head{
    background: url('../img/deluxe-b-3.jpg')rgba(0, 0, 0, 0.411);
    background-position: center 150%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    
}
.Contact-Section-text{
    padding-top:80px;
    padding-bottom:30px;
}
.Contact-Section-location{
    background-color: #A37344;
    width: 500px;
    padding: 10px 30px 10px 30px;
    margin-bottom: 30px;
    margin-left: -50px;
    box-shadow: 5px 5px rgba(1, 19, 19, 0.356);
}
.Contact-Section-location:hover{
    background-color: #A37344;
    width: 500px;
    padding: 10px 30px 10px 30px;
    margin-bottom: 30px;
    margin-left: -50px;
    box-shadow: none;
    transition: all 0.5s;
}
.Contact-Section-location:hover h5{
    font-weight: 700;
    transition: all 0.1s ease-in;
}
.Contact-Section-location:hover p{
    font-weight: 600;
    transition: all 0.1s ease-in;
}
/* animation */
.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
  }
  .fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
  }
  .fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
  }
  .fadeinup{
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s ease-out;
  }
  .fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
  }
  .active-left,.active,.active-right,.active-down,.active-up{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
  }
  .fadein{
  opacity: 0;
  }



@media only screen and (max-width: 1200px) {

    footer iframe {
        width: 280px;
    }
.HeadText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 800px;
}
.About-Section-img-1{
    width: 250px;
    height: 200px;
    margin-bottom: 10px;
}
.About-Section-img-2{
    width: 250px;
    height: 200px;
}
.About-Section-img-4{
    margin-left: 10px;
    width: 250px;
    height: 200px;
}
.About-Section-img-5{
    margin-left: 10px;
    width: 250px;
    height: 200px;
}
}
@media only screen and (max-width: 1199px) {
.About-Section-img-1{
    width: 220px;
    height: 180px;
    margin-bottom: 10px;
}
.About-Section-img-2{
    width: 220px;
    height: 180px;
}
.About-Section-img-4{
    margin-left: 10px;
    width: 220px;
    height: 180px;
}
.About-Section-img-5{
    margin-left: 10px;
    width: 220px;
    height: 180px;
}}
@media only screen and (max-width: 991px) {
    .head-home h1{
        font-size: 50px!important;
       }
       .Seaction-About-1{
        padding-top: 50px !important;
        padding-bottom: 50px !important;
       }
       .ABOUT-text{
        background-color: white;
        padding: 10px 15px 10px 15px;
        border: #00000027 1px solid;
       }
    .Icons{
        height: 270px !important;
        margin-bottom: 20px;
    }
    .Icons:hover{
        box-shadow: #D2AC85  10px 10px;
        transition:all 0.3s;
        border: #D2AC85 1px solid;
    }
    .Icons p{
        padding: 5px 20px 5px 20px;
    }
   .Rooms-Section-img-3{
    margin: auto !important;
   }
   .Seaction-About-2 .About-Section-col .d-flex{
         margin: auto !important;
         justify-content: center !important;
         text-align: center !important;
   }
   .Seaction-About-2 .About-Section-col {
   margin-bottom: 20px;
}
    .thumb img {
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
    }
    .Contact-Section-text{
        padding-top:80px;
        padding-bottom:30px;
        margin-left: 30px;
    }
    .Contact-Section-location{
        background-color: #A37344;
        width: 500px;
        padding: 10px 30px 10px 30px;
        margin-bottom: 30px;
        margin-left: 30px;
        box-shadow: 5px 5px rgba(1, 19, 19, 0.356);
    }
    .Contact-Section-location:hover{
        background-color: #A37344;
        width: 500px;
        padding: 10px 30px 10px 30px;
        margin-bottom: 30px;
        margin-left: 30px;
        box-shadow: none;
        transition: all 0.5s;
    }
}

@media only screen and (max-width: 800px) {
   
    .head-home h2{
        font-size: 30px !important;
    }
    .head-home h1{
        font-size: 80px !important;
    }
    .head-home h4{
        font-size: 25px !important;
    }
    .HeadText {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 550px;
    }
    .Slogan{
        padding: 0 !important;
    }
    .Seaction-About-1{
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
}

@media only screen and (max-width: 757px) {

    footer .container {
        margin: auto !important;
    }
    footer iframe {
        width: 300px;
    }
    .footer-location {
        margin-top: 30px;
    }
    .Icons{
        height: auto !important;
        margin-bottom: 0px;
    }
    .rooms-section-text h1{
        color: #29292be7;
        font-size: 27px; 
        font-family: Cinzel; 
        font-weight: 700;
    }
    .rooms-section-text h3{
        color: #29292bb7;
        font-size: 17px; 
        font-weight: 700;
        font-family: Arial, Helvetica, sans-serif;
        margin-right: 20px;
    }
    .rooms-card{
        border: #00000034 1px solid;
        padding: 10px 15px 10px 15px;
        margin-bottom: 20px;
    }
    .rooms-card:hover{
        border: #00000034 1px solid;
        padding: 10px 15px 10px 15px;
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        transition: 0.5s all;
    }
    .Seaction-Restaurant-bg{
        position: absolute;
        clip-path: inset(0 0 0 60%);
        width: 100%;
        height: 110%;
        bottom: -10px;
        top: -10px;
        right: 0;
        background-color: #D2AC85;
        z-index: -1;
    }
    .Slogan h3{
        
        font-size: 30px !important;
    }
    .Slogan2 h3{
        
        font-size: 30px !important;
    }
    .Testimonials .item {
        margin-right: 25px !important;
        margin-left: 0px !important;
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }
    .Icons{
        height: 250px !important;
    }
}

@media only screen and (max-width: 575px) {
    .head-home h1 {
        font-size: 50px !important;
    }
    .head-home h4 {
        font-size: 20px !important;
    }
    .Icons{
        height: auto !important;
    }
        .HeadText {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            width: 350px;
        }
}

@media only screen and (max-width: 430px) {
    .HeadText {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 300px;
    }
    .HeadText h1{
        font-size: 50px !important;
}
.Contact-Section-text{
    margin: 0 !important;
}
.Contact-Section-location{
    background-color: #A37344;
    width: 500px;
    padding: 10px 30px 10px 30px;
    margin-bottom: 30px;
    margin-left: 0px;
    box-shadow: 5px 5px rgba(1, 19, 19, 0.356);
}
.Contact-Section-location:hover{
    background-color: #A37344;
    width: 500px;
    padding: 10px 30px 10px 30px;
    margin-bottom: 30px;
    margin-left: 0px;
    box-shadow: none;
    transition: all 0.5s;
}
.Seaction-About-1 h2{
   width: 300px;
    font-size: 18px !important;
}
.About-Section-img-1{
    width: 180px;
    height:150px;
    margin-bottom: 10px;
}
.About-Section-img-2{
    width: 180px;
    margin-left: 10px;
    height:150px;
}
.About-Section-img-4{
    margin-left: 10px;
    width: 180px;
    height:150px;
}
.About-Section-img-5{
    margin-left: 10px;
    width: 180px;
    height:150px;
}
.HeadText h4{
    font-size: 20px !important;
}
.About-text-prg{
    background-color: white;
    padding: 10px 20px 10px 0px;
}
.About-text-prg h2{
 font-weight: 700;
 margin-bottom: 10px;
}
.Restaurant-Section h2{
    background-color: #D2AC85;
    padding: 8px 15px;
    width: 100%;
    color: white;
}
.Seaction-Restaurant-bg{
    position: absolute;
    clip-path: inset(0 0 0 80%);
    width: 100%;
    height: 110%;
    bottom: -10px;
    top: -10px;
    right: 0;
    background-color: #D2AC85;
    z-index: -1;
}
.Facilites-Section{
    background: url('../img/deluxe-b-3.jpg') rgba(0, 0, 0, 0.452);
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: none;
}
.Slogan{
    background: url('../img/deluxe-1.jpg') rgba(0, 0, 0, 0.459);
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: none;
}
.Slogan2{
    background: url('../img/restaurant1.jpg') rgba(0, 0, 0, 0.459);
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: none;
}
  .Rooms-head {
    background: url('../img/single-4.jpg')rgba(0, 0, 0, 0.397);
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: none;
   
}
.Restaurant-head{
    background: url('../img/restaurant1.jpg')rgba(0, 0, 0, 0.473);
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: none;
    
}
.Gallery-head{
    background: url('../img/single-3.jpg')rgba(0, 0, 0, 0.582);
    background-position: center 140%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: none;
    
}
.About-head{
    background: url('../img/deluxe-1.jpg')rgba(0, 0, 0, 0.425);
    background-position: center 110%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: none;
    
}
.Contact-head{
    background: url('../img/deluxe-b-3.jpg')rgba(0, 0, 0, 0.411);
    background-position: center 150%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: none;
    
}
}