html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* font family */
.grand {
  font-family: "Grand Hotel", cursive;
  font-weight: 400;
  font-style: normal;
}

.luck {
  font-family: "Luckiest Guy", cursive;
  font-weight: 100;
  font-style: normal;
}

.aleo {
  font-family: "Aleo", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.right {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* 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 */
: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 {
  background-color: #1d1f25;
}
.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: #FCC044 !important;
}
.footer_wrapper .link-widget li a,
.footer_wrapper p {
  text-decoration: none;
  color: #919C9B;
  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: 0.625rem;
  color: #FCC044;
}
.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 {
  background-color: #422C18 !important;
  padding: 1.25rem 0 0.3125rem;
  display: flex;
  border-top: 2px solid white;
  justify-content: space-between;
  align-items: center;
}

.copyright-section .right h3 {
  color: white;
  font-size: 18px;
}


.copyright-section .left h3 {
  color: white;
  font-size: 18px;
}
/* navbar */
.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: #ffffff;
}
.navbar-nav a {
  margin-left: 10px;
  font-size: 18px !important;
  font-weight: 400 !important;
}
.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: 700;
  color: rgb(61, 59, 59);
  border-bottom: 1px solid transparent;
  position: relative;
}
.navbar-nav a:hover {
  color: #1d1f25;
}
.navbar-nav a.active {
  color: #1d1f25 !important;
}
.navbar-nav a::before {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #1d1f25;
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transition: width 0.4s, left 0.4s;
}
.navbar-nav a:hover::before {
  width: 100%;
  left: 0;
}

/* button */

#button,
#button::after {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#button {
  background: #422C18;
  border: 3px solid #FCC044 !important;
  border-radius: 50px !important;
  color: white !important;
  font-size: 15px;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px 30px;
  position: relative;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}

#button::before,
#button::after {
  background: white !important;
  content: "";
  position: absolute;
  z-index: -1;
  color: #422C18 !important;
}

#button:hover {
  color: #422C18 !important;
  transform: scale(1);
  cursor: pointer;
  color: white;
}

.btn-3 {
  overflow: hidden;
}
.btn-3::after {
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
}

.btn-3:hover:after {
  height: 100%;
  width: 135%;
}

/* index-html  */
#index-bg {
  background: url(img/img-1.jpg) rgba(0, 0, 0, 0.4);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  text-align: center;
  height: 70vh;
}

.index-ds h6 {
    color: #FCC044;
    font-size: 1.70rem;
    font-weight: 400 !important;
}

.index-ds h3 {
  color: white;
  font-size: 60px;
  font-weight: 300;
}

/* about */
#about {
  padding: 70px 0;
}

.about-ds h6 {
  color: #DD5449;
  font-size: 1.70rem;
}

.about-ds h3 {
  color: #422C18;
  font-size: 48px;
  letter-spacing: 2px;
}

.parallax_wrapper {
  position: relative;
  margin-bottom: 25px;
}

img.rounded-img {
  border-radius: 20px;
}

.parallax_wrapper .img_over {
  left: -25%;
  bottom: 10%;
  position: absolute;
  z-index: 99;
}

.parallax_wrapper .img_over img {
  border: 4px solid #fff;
  width: 50%;
  height: auto;
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}

.about-description h3 {
  font-size: 1.90rem;
}

.about-description p {
  font-size: 1rem;
}

/* bar */
#bar-bg {
  background: url(bar/img-1.jpg) rgba(0, 0, 0, 0.4);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  text-align: center;
  height: 70vh;
}

#bar {
  padding: 70px 0;
  background-color: #545B13;
}

.bar-ds {
  margin-bottom: 30px ;
}

.bar-ds h6 {
  color: #cea356;
  font-size: 1.70rem;
  text-align: center;
}

.bar-ds h3 {
  text-align: center;
  color: white;
  font-size: 48px;
  letter-spacing: 2px;
}

.bar-img img {
  margin: 15px 0;
  height: 400px;
  width: 100%;
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}

.rest-img img {
  margin: 15px 0;
  height: 500px;
  width: 100%;
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}

#rest-bg {
  background: url(rest/262316602.jpg) rgba(0, 0, 0, 0.4);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  text-align: center;
  height: 70vh;
}

#bar-menu {
  padding: 70px 0;
  background-color: #545B13;
}

.bar-menu {
  margin: 15px 0;
}

.bar-menu h4 {
  font-size: 40px;
  color: white;
  text-align: center;
}

.bar-menu .b-menu {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #eee;
}

.bar-menu .b-menu h2 {
  color: #cea356;
  font-size: 20px;
  text-transform: capitalize;
}



/* faciities */
#facilities {
  padding: 70px 0;
  background-color: #FCC044;
}

.facilities-ds h6 {
  color: #DD5449;
  font-size: 1.70rem;
}

.facilities-ds h3 {
  font-size: 48px;
  color: #422C18;
  letter-spacing: 2px
}

.facilities-ds p {
  font-size: 1rem;
  color: white;
}

.facilities-img img {
  border-radius: 20px;
  margin-bottom: 30px;
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}

.facilities-ds img {
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}


.faci-cards {
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  width: 100%;
  margin: 20px 0;
  text-align: center;
  background-color: #FFF8EF;
  padding: 20px;
  border-radius: 30px;
  cursor: pointer;
}

.faci-cards h4 {
  color: #422C18;
  font-size: 1rem;
  transition: 0.5s ease;
}

.faci-cards:hover h4 {
  transition: 0.5s ease;
  color: #DD5449;
}

/* galleyr */
#gallery {
  padding: 70px 0;
}

.gallery-ds h6 {
  color: #DD5449;
  font-size: 1.70rem;
}

.gallery-ds h3 {
  color: #422C18;
  font-size: 48px;
  letter-spacing: 2px
}

.gallery-img img {
  height: 20rem;
  width: 100%;
  border-radius: 20px;
  margin: 15px 0;
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}

/* testimonials */
#testimonials {
  padding: 70px 0;
  background-color: #8B9232;
}

.testimonials-ds h6 {
  color: #FCC044;
  font-size: 1.70rem;
}

.testimonials-ds h3 {
  color: white;
  font-size: 48px;
  letter-spacing: 2px
}

.testimonials {
  text-align: center;
}

.testimonials .icon i {
  color: #545B13; 
  font-size: 40px;
}

.testi-desc p {
  font-size: 18px;
  color: white;
  margin: 30px 0;
}

.testi-footer h2 {
  color: #545B13;
  font-size: 25px;
}

/* about-html */
#about-bg {
  background: url(img/img-21.jpg) rgba(0, 0, 0, 0.2);
  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-ds-ds h6 {
  color: #FCC044;
  font-size: 1.70rem;
  font-weight: 400 !important;
}

.about-ds-ds h3 {
color: white;
font-size: 60px;
font-weight: 300;
}

/* why-us */
#why-us {
  padding: 70px 0;
  background-color: #FFF8EF;
}

.why-ds {
  padding-left: 20px ;
}
.why-ds h6 {
  color: #DD5449;
  font-size: 1.70rem;
}

.why-ds h3 {
  color: #422C18;
  font-size: 48px;
  letter-spacing: 2px
}

.why-ds p {
  font-size: 18px;
  color: #422C18;
  margin: 30px 0; 
}

.why-cards {
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin: 20px 0;
}

.why-cards .card-nr p {
  background-color: #FCC044;
  color: white;
  padding: 20px;
  font-size: 20px;
  border-radius: 50%;
  margin-right: 30px;
}

.why-cards .card-text h2 {
  font-size: 25px;
  font-weight: 600;
}

.why-cards .card-text p {
  font-size: 15px;
}

/* rooms */
#rooms-bg {
  background: url(img/img-20.jpg) rgba(0, 0, 0, 0.2);
  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 {
  background-color: #FFF8EF;
  padding: 70px 0;
}

.rooms-ds-ds h6 {
  color: #FCC044;
  font-size: 1.70rem;
  font-weight: 400 !important;
}

.rooms-ds-ds h3 {
color: white;
font-size: 60px;
font-weight: 300 !important;
}

.rooms-card {
  background-color: white;
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  border-radius: 20px;
  padding: 20px;
  margin: 15px 0;
}

.rooms-img img {
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}

.rooms-desc h2 {
  color: #422C18;
  font-size: 30px;
  margin: 25px 0;
}

/* gallery-html */
#gallery-bg {
  background: url(img/img-3.jpg) rgba(0, 0, 0, 0.2);
  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-ds-ds h6 {
  color: #FCC044;
  font-size: 1.70rem;
  font-weight: 400 !important;
}

.gallery-ds-ds h3 {
color: white;
font-size: 60px;
font-weight: 300 !important;
}

#gallery-gallery {
  padding: 70px 0;
  background-color: #FFF8EF;
}

#gallery-gallery .photos .item img {
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}

/* contact-html */
#contact-bg {
  background: url(img/superior-bungalow.jpg) rgba(0, 0, 0, 0.2);
  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-ds h6 {
  color: #FCC044;
  font-size: 1.70rem;
  font-weight: 400 !important;
}

.contact-ds-ds h3 {
color: white;
font-size: 60px;
font-weight: 300 !important;
}

#contact-forms {
  padding: 70px 0;
  background-color: #422C18;
}

.contact-card {
  text-align: center;
  margin: 15px 0;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
}

.contact-dsc h2 {
  color: #422C18;
  font-size: 25px;
  margin: 25px 0;
}

.contact-dsc p {
  font-size: 16px;
  color: #919C9B;
}

.contact-dsc p a {
  text-decoration: none;
  color: #919C9B;
  font-size: 16px;
}

/* responsive */
@media (max-width:1100px) {
  .parallax_wrapper img {
    height: 350px;
  }
  .about-description h3 {
    font-size: 30px !important;
  }

  .about-description p {
    font-size: 15px;
  }

  .bar-ds h6 {
    font-size: 25px;
  }

  .bar-ds h3 {
    font-size: 35px;
  }

  .bar-menu h4 {
    font-size: 35px;
  }

  .bar-menu .b-menu h2 {
    font-size: 20px;
  }

  .facilities-ds h6 {
    font-size: 25px;
  }

  .facilities-ds h3 {
    font-size: 35px;
  }

  .facilities-ds p {
    font-size: 15px;
  }

  .gallery-ds h6 {
    font-size: 25px;
  }

  .gallery-ds h3 {
    font-size: 35px;
  }

  .why-ds h6 {
    font-size: 25px;
  }

  .why-ds h3 {
    font-size: 35px;
  }

  .why-ds p {
    font-size: 15px;
  }

  .why-cards .card-text h2 {
    font-size: 20px;
  }

  .why-cards .card-text p {
    font-size: 15px;
  }

  .testimonials-ds h6 {
    font-size: 25px;
  }

  .testimonials-ds h3 {
    font-size: 35px;
  }

  .testimonials .testi-desc p {
    font-size: 15px;
  }

  /* rooms-html */
  .rooms-card .rooms-desc h2 {
    font-size: 20px;
  }

  .rooms-card .rooms-desc p {
    font-size: 15px;
  }

  .rooms-card .rooms-faci img {
    width: 40px;
  }

  /* contact */
  .contact-card .contact-img img {
    width: 60px;
  }

  .contact-card .contact-dsc h2 {
    font-size: 20px;
  }

  .contact-card .contact-dsc p {
    font-size: 15px;
  }
}

@media (max-width:900px) {
  .mob {
    display: flex;
    flex-direction: column;
  }
  .facilities-img img {
    height: 250px;
  }

  .why-img {
    margin-bottom: 20px;
  }
 .why-img img {
  height: 400px;
 }
}

@media (max-width:767px) {
  .index-ds h6 {
    font-size: 20px;
  }

  .index-ds h3 {
    font-size: 45px;
  }

  .about-ds-ds h6 {
    font-size: 20px;
  }

  .about-ds-ds h3 {
    font-size: 45px;
  }

  .bar-ds h6 {
    font-size: 20px;
  }

  .bar-ds h3 {
    font-size: 45px;
  }

  .bar-menu h4 {
    font-size: 35px;
  }

  .bar-menu .b-menu h2 {
    font-size: 18px;
  }

  .rooms-ds-ds h6 {
    font-size: 20px;
  }

  .rooms-ds-ds h3 {
    font-size: 45px;
  }

  .gallery-ds-ds h6 {
    font-size: 20px;
  }

  .gallery-ds-ds h3 {
    font-size: 45px;
  }

  .contact-ds-ds h6 {
    font-size: 20px;
  }

  .contact-ds-ds h3 {
    font-size: 45px;
  }
}
@media (max-width:500px) {
  .img_over {
    display: none;
  }
}