html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* 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;
}

/* footer */

/* navbar */
.nav-link {
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  color: black;
  transition: color 0.3s ease-in-out;
  font-weight: bold;
}

.nav-item .underline {
  height: 4px;
  background-color: transparent;
  width: 0;
  transition: width 0.6s, background-color 0.6s;
  border-radius: 70px;
}

.nav-item .nav-link {
  color: black;
}

.nav-item .active-link {
  color: #BBA163 !important;
  font-weight: 400;
}

.nav-item.active-link .underline {
  width: 100%;
  background-color: #BBA163;
}

.nav-item:hover .underline {
  background-color: #BBA163;
  width: 100%;
}

.nav-item:hover a {
  color: #BBA163;
}

.nav-item:active a {
  transition: none;
}

.nav-item:active .underline {
  transition: none;
  background-color: #286054;
}

.navbar-nav {
  margin-left: auto;
  gap: 20px;
  font-size: 18px;
}

.navbar {
  background-color: white;
  transition: background-color 0.3s ease-in-out;
}

.navbar-toggler {
  border: 2px solid #8ed3ee !important;
  background-color: #222f65;
  color: transparent !important;
}

.navbar-toggler:hover,
.navbar-toggler:active {
  border: 2px solid #8ed3ee !important;
  background-color: #222f65;
  color: transparent !important;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(142, 211, 238, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* font family */
.nothing {
    font-family: "Nothing You Could Do", cursive;
    font-weight: 400;
    font-style: normal;
  }
  .ubu {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
/* footer */
:root {
  /* Background Color */
  --primary-color: #212122b9;
  --secondary-color: #a3a190;
  --bg-color: #f4f4f4;
  --bg-white: #fff;
  --bg-black: #000;
  /* Text Style */
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Oswald", sans-serif;
  --tertiary-font: "Cinzel", serif;
  --primary-text: #212122b9;
  --secondary-text: #cea356;
  --text-white: #fff;
  --text-black: rgb(79, 79, 79);
  --text-gray: #e4e4e4;
}

.footer_wrapper h5 {
  color: white;
  margin-bottom: 1.25rem;
}
.footer_wrapper ul li {
  margin-bottom: 0.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;
  text-decoration: none;
}
.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: 0.625rem;
  color: #BBA163;
}
.footer_wrapper .social-network a {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0.6rem;
  line-height: 2rem;
  font-size: 0.875rem;
  display: inline-block;
  border: 0.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: var(--secondary-text);
  border-color: var(--secondary-text);
  color: var(--text-white);
  box-shadow: 0 0.625rem 0.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 {
  padding: 1.25rem 0 0.3125rem;
  text-align: center;
}
.footer_wrapper .copyright-section h3 {
  color: white;
}

.btn-1 {
  background-color: #BBA163;
  padding: 12px 23px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  border:none;
}

.btn-1 a {
    text-decoration: none;
    color: white;
    font-size: 15px;
}

.btn-2 {
    background-color: white;
    padding: 12px 23px;
    text-decoration: none;
    color: black;
    font-size: 15px;
}

.btn-3 {
    border: none;
    padding: 13px 23px;
    background-color: #BBA163;
    color: white;
    font-size: 15px;
}

.btn-3 a {
    text-decoration: none;
    font-size: 15px;
    color: white;
}


#index-bg {
    background: url(img/img-11.jpg) rgba(0, 0, 0, 0.40);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    text-align: center;
    height: 70vh;
}

.index-ds h4 {
    color: #BBA163;
    font-size: 36px;
    line-height: 43.2px;
    margin: 15px 0;
    font-weight: 400;
}

.index-ds h1 {
    color: white;
    font-size: 70px;
    line-height: 72px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
}

/* about */
#about {
    padding: 70px 0;
}

.about-desc h4 {
    color: #BBA163;
    font-size: 36px;
    line-height: 43.2px;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-desc h3 {
    font-size: 44px;
    color: #151515;
    line-height: 52.8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-desc p {
    color: #171818;
    font-size: 18px;
    line-height: 36px;
    margin: 15px 0;
    font-weight: 400;
}


.about-desc button {
    margin-top: 20px;
    margin-left: 0px;
}

/* rooms */
#rooms {
    padding: 70px 0;
    background-color: #1F231C;
}

.rooms-ds {
    text-align: center;
}

.rooms-ds h4 {
    font-size: 36px;
    margin-bottom: 20px ;
    color: #BBA163;
    font-weight: 400;
}

.rooms-ds h3 {
    color: white;
    font-size: 44px;
    margin-bottom: 15px 0;
    font-weight: 600;
}

.rooms-ds p {
    font-size: 18px;
    color: white;
    font-weight: 400;
    margin: 20px 0;
}

.rooms-ds button {
    margin-top: 20px;
}

.room-card {
    margin: 15px 0;
    background-color: whitesmoke;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,1);
-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,1);
box-shadow: 0px 0px 15px 0px rgba(0,0,0,1);
}

.roms-dsc {
    padding: 20px;
    text-align: center;
}

.room-card h3 {
    color: #BBA163;
    font-size: 30px;
    text-transform: capitalize;
    border-bottom: 2px solid #000;
}

.room-card p {
    font-size: 15px;
    color: black;
    border-bottom: 2px solid #000;
}

/* facilities */
#facilities {
    padding: 70px 0;
}

.facilities-ds h4 {
    font-size: 36px;
    color: #BBA163;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.facilities-ds h3 {
    text-align: center;
    font-size: 44px;
    color: #151515;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.faci-card {
    border: 4px solid #BBA163;
    padding: 20px;
    margin: 15px 0;
}

.faci-card h3 {
    font-size: 35px;
    text-transform: capitalize;
    margin: 20px 0;
    font-weight: 500;
}

.faci-card p {
    font-size: 16px;
    font-weight: 400;
}

/* gallery */
#gallery {
    padding: 70px 0;
    background-color:#1F231C ;
}

.gallery-img {
    margin: 15px 0;
}

.gallery-img img {
    border: 4px solid white;
}

.gallery-ds h4 {
    font-size: 36px;
    color: #BBA163;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.gallery-ds h3 {
    text-align: center;
    font-size: 44px;
    color: white;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

/* testimnials */
#testimonials {
    padding: 70px 0;
}

.testi-card {
    background-color: #323246;
    margin: 15px 0;
    padding: 20px;
}

.testi-card h5 {
    color: white;
    font-size: 25px;
}

.testi-card .stars i {
    color: #cea356;
    margin: 15px 0;
}

.testi-card p {
    color: grey;
    font-size: 15px;
}

.testi-card .profile {
    display: flex;
    align-items: center;
}

.testi-card .profile .profiles p{
  font-size: 17px;
  text-transform: capitalize;
    color: white;
    margin-left: 15px;
}

.testi-card .profile img {
    width: 50px;
    border-radius: 50%;
}

.testi-card .profile h2 {
    font-size: 24px;
    color: white;
    margin-left: 15px;
}

.testimonials-ds h4 {
    font-size: 36px;
    color: #BBA163;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.testimonials-ds h3 {
    text-align: center;
    font-size: 44px;
    color: #151515;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

/* about-html */
#about-bg {
    background: url(img/img-17.jpg) rgba(0, 0, 0, 0.60);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    text-align: center;
    height: 70vh;
}

.about-descr h4 {
    font-size: 36px;
    color: #BBA163;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.about-descr h1 {
    text-align: center;
    font-size: 50px;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;
    letter-spacing: 2px !important;
}

/* rooms-html */
#rooms-bg {
    background: url(img/deluxe-triple-room.jpg) rgba(0, 0, 0, 0.60);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    text-align: center;
    height: 70vh;
}

.rooms-dsc h4 {
    font-size: 36px;
    color: #BBA163;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.rooms-dsc h1 {
    text-align: center;
    font-size: 50px;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;
    letter-spacing: 2px !important;
}

#rooms-rooms {
    padding: 70px 0;
}

#rooms-rooms .rooms-ds h3 {
    color: #000;
}

.roms-dsc-1 {
    background-color: #151515c5;
    text-align: center;
    padding: 20px;
}

.roms-dsc-1 h3 {
    color: white;
    font-size: 30px;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
}

.roms-dsc-1 p {
    font-size: 15px;
    color: white;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
}

.roms-dsc-1 .faci-rooms {
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.roms-dsc-1 .faci-rooms img {
    margin: 10px;
    width: 37px;
}

/* gallery-html */
#gallery-bg {
    background: url(img/img-6.jpg) rgba(0, 0, 0, 0.60);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    text-align: center;
    height: 70vh;
}

.gallery-dsc h4 {
    font-size: 36px;
    color: #BBA163;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.gallery-dsc h1 {
    text-align: center;
    font-size: 50px;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;
    letter-spacing: 2px !important;
}

#gallery-gallery {
    padding: 70px 0;
}

/* contact-html */
#contact-bg {
    background: url(img/img-3.jpg) rgba(0, 0, 0, 0.60);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    text-align: center;
    height: 70vh;
}

.contact-ds h4 {
    font-size: 36px;
    color: #BBA163;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.contact-ds h1 {
    text-align: center;
    font-size: 50px;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;
    letter-spacing: 2px !important;
}

#contact-form {
    padding-top: 70px ;
}

.contact-form {
    margin: 15px 0;
    border: 4px solid #BBA163;
    padding: 20px;
}

.contact-form h2 {
    font-size: 30px;
    margin: 15px 0;
    color: #151515;
}

.contact-form p {
    font-size: 15px;
    color: grey;
}

.contact-form p a {
    text-decoration: none;
    font-size: 15px;
    color: grey;
}

/* menu-html */
#menu-bg {
  background: url(img/img-18.jpg) rgba(0, 0, 0, 0.60);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  text-align: center;
  height: 70vh;
}

.menu-ds h4 {
  font-size: 36px;
  color: #BBA163;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: center;
}

.menu-ds h1 {
  text-align: center;
  font-size: 50px;
  color: white;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
  letter-spacing: 2px !important;
}

#menu-menu {
  padding: 70px 0;
}

.menu-dsc {
  margin-bottom: 50px;
}

.menu-dsc h4 {
  color: #BBA163;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: center;
}

.menu-dsc h3 {
  color: #151515;
  font-size: 44px;
  font-weight: 600;
  text-align: center;
}

.menu-menu .header h2 {
  font-size: 30px;
  text-align: center;
  color: #BBA163;
  text-transform: capitalize;
}

.menu-list .list {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #BBA163;
  margin: 15px 0;
}

.menu-list .list h2 {
  font-size: 25px;
  color: #151515;
  text-transform: capitalize;
}


@media(max-width:1200px) {
  .faci-card {
    height: 250px;
  }

  .testi-card {
    height: 350px;
  }
}

@media (max-width:1100px) {
  .about-desc p {
    line-height: 30px;
  }

  .about-desc h4 {
    font-size: 28px;
  }

  .about-desc h3 {
    font-size: 35px;
  }

  .index-ds h1 {
    font-size: 50px;
  }

  .index-ds h4 {
    font-size: 28px;
  }

  .rooms-ds h4 {
    font-size: 28px ;
  }

  .rooms-ds h3 {
    font-size: 35px;
  }

  .rooms-ds p {
    font-size: 18px !important;
  }

  .room-card h3 {
    font-size: 25px;
  }

  .room-card p {
    font-size: 15px !important;
  }

  .facilities-ds h4 {
    font-size: 28px;
  }

  .facilities-ds h3 {
    font-size: 35px ;
  }

  .faci-card h3 {
    font-size: 28px;
  }

  .faci-card p {
    font-size: 15px;
  }

  .gallery-ds h4 {
    font-size: 28px;
  }

  .gallery-ds h3 {
    font-size: 35px;
  }

  .testimonials-ds h4 {
    font-size: 28px;
  }

  .testimonials-ds h3 {
    font-size: 35px;
  }

  .testi-card h5 {
    font-size: 20px;
  }

  .testi-card p {
    font-size: 15px;
  }

  .testi-card {
    height: 380px;
  }

  /* rooms-html */
  .roms-dsc-1 h3 {
    font-size: 25px;
  }

  .roms-dsc-1 p {
    font-size: 14px;
  }
  .roms-dsc-1 .faci-rooms img {
    width: 30px;
  }
}

@media (max-width:900px) {
  .about-desc h4 {
    font-size: 25px;
  }

  .about-desc h4 img {
    width: 35px;
  }

  .about-desc h3 {
    font-size: 30px;
    line-height: 32px;
  }

  .about-desc p {
    font-size: 13px;
    line-height: 17px;
  }

  .rooms-ds h4 {
    font-size: 25px;
  }

  .rooms-ds h4 img {
    width: 35px;
  }

  .rooms-ds h3 {
    font-size: 30px;
  }

  .rooms-ds p {
    font-size: 11px;
  }

  .facilities-ds h4 {
    font-size: 25px;
  }

  .facilities-ds h4 img {
    width: 35px;
  }

  .facilities-ds h3 {
    font-size: 30px;
  }

  .faci-card h3 {
    font-size: 24px;
  }

  .faci-card p {
    font-size: 14px;
  }

  .gallery-ds h4 {
    font-size: 25px;
  }

  .gallery-ds h4 img {
    width: 35px;
  }

  .gallery-ds h3 {
    font-size: 30px;
  }

  .testimonials-ds h4 {
    font-size: 25px;
  }

  .testimonials-ds h4 img {
    width: 35px;
  }

  .testimonials-ds h3 {
    font-size: 30px;
  }

  .testi-card {
    max-height: 320px;
  }

  .testi-card .profile h2 {
    font-size: 18px;
  }

  .testi-card .profile .profiles p {
    font-size: 13px;
  }

  .menu-dsc h4 {
    font-size: 25px;
  }

  .menu-dsc h4 img {
    width: 35px;
  }

  .menu-dsc h3 {
    font-size: 30px;
  }

  .menu-list .list h2 {
    font-size: 20px;
  }

  .dropdown {
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: start;
    align-items: start;
    margin-top: 15px;
  }

  .dropdown a {
    margin-top: 20px;
  }
}

@media (max-width:767px) {
  .menu-ds h4 {
    font-size: 30px;
  }

  .menu-ds h1 {
    font-size: 40px;
  }

  .gallery-dsc h4 {
    font-size: 30px;
  }

  .gallery-dsc h1 {
    font-size: 40px;
  }

  .contact-ds h4 {
    font-size: 30px;
  }

  .contact-ds h1 {
    font-size: 40px;
  }

  .rooms-dsc h4 {
    font-size: 30px;
  }

  .roms-dsc h1 {
    font-size: 40px;
  }

  .about-descr h4 {
    font-size: 30px;
  }

  .about-descr h1 {
    font-size: 40px;
  }

  .index-ds h4 {
    font-size: 30px;
  }

  .index-ds h1 {
    font-size: 40px;
  }

  .about-desc {
    margin-top: 20px;
  }

  .testi-card {
    max-height: 275px;
  }
}