html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
.cormo {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-style: normal;
  }
  

.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.mont{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.btn-1 {
    padding: 10px 20px;
    background-color: #b95c47;
    border: none;
    border-radius: 50px;
}

.btn-1 a {
    color: white;
    text-decoration: none;
}
/* index.html */


#bck-img {
    background: url('img/349300588.jpg') rgba(0, 0, 0, 0.40);
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    background-attachment: fixed;
    background-blend-mode: multiply;
}
/* about */
.index-dsc {
    padding: 80px 30px;
}

.index-dsc h2 {
    color: #b95c47;
    font-size: 20px;
}

.index-dsc h1 {
    font-size: 35px;
    color: black;
}

.index-dsc p {
    color: black;
    font-size: 16px;
}
/* rooms */

.rooms-dsc {
    padding-left:  30px;
}

.rooms-dsc h2 {
    font-size: 20px;
    color: #b95c47;
}

.rooms-dsc h1 {
    color: white;
    font-size: 40px;
}

.rooms-dsc h4 {
    color: grey;
    font-size: 23px;
}

.rooms-dsc h3 {
    color: grey;
    font-size: 25px;
}

/* gallery */

.gallery-dsc h2 {
    font-size: 20px;
     color: #b95c47;
}

/* facilities */


.facilities-ds h1 {
    color: white;
    font-size: 35px;
}

.facilities-ds h2 {
    color: white;
    font-size: 20px;
}

.icons {
    display: flex;
    margin: 20px ;
    align-items: center;
}

.icons h2 {
    margin-left: 20px;
    font-size: 20px;
}

/* testimonials */
.item  p {
    color:white;
    font-size: 17px;
}

.item h2 {
    color:wheat;
    font-size: 30px;
}

.item h3 {
    color: white;
    font-size: 25px;
    font-weight: 600;
}

/* footer */

.con-inf i {
    color: white;
    font-size: 25px;
}

.con-inf p {
    font-size: 20px;
    color: white;
    margin-left: 20px;
}

.con-inf a {
    text-decoration: none;
    font-size: 20px;
    color: white;
}


.men-foo ul li {
    list-style: none;
    margin-top: 12px;
}

.men-foo a {
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.men-foo a:hover {
    color: grey;
    transition: 1s ease;
}

/* about.html */
#about-bck {
    background: url('img/438650335.jpg') rgba(0, 0, 0, 0.40);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* rooms.html */
#rooms-about {
    background: url('img/349300722.jpg') rgba(0, 0, 0, 0.40);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 100vh;
    display: flex;
    align-items: center;
}

.rooms-facilities i {
    font-size: 25px;
    color: #b95c47;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 50px;
}

.rooms-facilities p {
    font-size: 20px;
    margin-left: 10px;
    margin-top: 10px;
    color:white;
}

.rooms-description {
    padding: 0 30px;
}

.rooms-footer {
    padding: 20px;
}

.rooms-id {
    background-color: #b95c47;
}

/* gallery.html */
#gallery-bck {
    background: url('img/349300752.jpg') rgba(0, 0, 0, 0.40);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 100vh;
    display: flex;
    align-items: center;
}


/* contact.html */
#contact-contact {
    background: url('img/349300732.jpg') rgba(0, 0, 0, 0.40);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 100vh;
    display: flex;
    align-items: center;
}

.desc a {
    text-decoration: none;
    color: white;
}
/* annimation */

.fadeinleft {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
  }
  
  .fadeinright {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s 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 (max-width:767px) {
    .index-dsc {
        margin: 20px;
        max-width: 100%;
    }

    .gallery-dsc {
        position: relative;
        left: 20px;
    }
  }

  @media (max-width:1100px) {
    .facilities-ds {
        padding: 0px !important;
    }
  }