html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
/* Font Family */
.play {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* button */
.btn-1 {
  background: #BB9645;
  border: 3px solid #cea356;
  padding: 12px 27px;
  transition: 1s ease;
}

.btn-1 a {
  font-size: 17px;
  color: white;
  text-decoration: none;
}

.btn-1:hover {
  background-color: #cea356;
  transition: 1s ease;
}

.btn-2 {
  background-color: #1D1F25;
  border: 3px solid #1D1F25;
  padding: 12px 27px;
}

.btn-2 a {
  font-size: 17px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
/* footer */
.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: 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: 0.625rem;
  color: #cea356;
}
.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: #dddddd;
  padding: 1.25rem 0 0.3125rem;
  text-align: center;
}
.footer_wrapper .copyright-section a {
  color: var(--secondary-text);
}

/* 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;
}

.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;
    /* background-image: linear-gradient(45deg, black 30%, blue 70%); */
}
.navbar-nav a {
    margin-left: 10px;
    font-size: 22px;
    font-weight: 500;
    /* 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: rgb(61, 59, 59);
    border-bottom: 1px solid transparent;
    position: relative;
}
.navbar-nav a:hover {
    color: #BB9645;
    /* border-bottom: 1px solid #000000; */
}
.navbar-nav a.active {
    /* border-bottom: 1px solid #000000; */
    color: #BB9645!important;
}
.navbar-nav a::before {
    content: '';
    width: 0;
    height: 2px;
    border-radius: 2px;
    background-color: #BB9645;
    position: absolute;
    bottom: -.25rem;
    left: 50%;
    transition: width .4s, left .4s;
  }
  .navbar-nav a:hover::before {
    width: 100%;
    left: 0;
  }

/* header-background */
#index-bck {
  background: url("img/13.JPG") rgba(0, 0, 0, 0.40);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

#bck {
    background:url('img/98.jpg') rgba(0, 0, 0, 0.40);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
}

#about-bck {
    background: url("img/27.jpeg") rgba(0, 0, 0, 0.40);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

#rooms-bck {
    background: url("img/28.jpeg") rgba(0, 0, 0, 0.40);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

#gallery-bck {
    background: url("img/98.jpg") rgba(0, 0, 0, 0.40);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

#contact-bck {
    background: url("img/26.jpeg") rgba(0, 0, 0, 0.40);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

/* about */
.about-dsc h2 {
  color: #d3d3d4;
  font-size: 45px;
}

.about-ds p {
  font-size: 18px;
}

/* rooms */
.rooms-ds h2 {
  font-size: 45px;
  color: #d3d3d4;
}

.rooms-ds h4 {
  font-size: 20px;
  margin: 30px 0;
  color: #ffffff;
}

.rooms-card h2 {
  color: #1d1f25;
  font-size: 35px;
}

.rooms-card h5 {
  font-size: 18px;
  color: #1d1f25;
  margin: 25px 0;
}

/* facilities */
.facilities-ds h2 {
  font-size: 45px;
  color: #d3d3d4;
}

.facilities-ds h5 {
  font-size: 20px;
  margin: 30px 0;
  color: #1d1f25;
}

.faci-icon {
  border: 3px solid #1d1f25;
  padding: 20px 0;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(29, 31, 37, 1);
  -moz-box-shadow: 5px 5px 5px 0px rgba(29, 31, 37, 1);
  box-shadow: 5px 5px 5px 0px rgba(29, 31, 37, 1);
}

.faci-icon img {
  margin: 20px 0;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(29, 31, 37, 1);
  -moz-box-shadow: 5px 5px 5px 0px rgba(29, 31, 37, 1);
  box-shadow: 5px 5px 5px 0px rgba(29, 31, 37, 1);
}

/* gallery */
.gallery-ds h2 {
  font-size: 45px;
  color: #d3d3d4;
}

.gallery-ds h5 {
  font-size: 20px;
  color: #1d1f25;
  margin: 30px 0;
}

/* gallery */
@mixin white-gradient {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
/*  Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  background: white;
  height: 300px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  &::before,
  &::after {
    @include white-gradient;
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  &::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  &::before {
    left: 0;
    top: 0;
  }
  .slide-track {
    animation: scroll linear infinite;
    animation-duration: 35s;
    display: flex;
    width: calc(250px * 14);
  }
}
.slide {
  margin-right: 15px !important;
}

.slide img {
  height: 300px;
}

/* facilities */
.faci-icons {
  margin: 30px 0;
}
.faci-icons img {
  margin: 0 10px;
}

/* contact */
.contact-card {
    padding: 20px 0;
  }
  
  .contact-card h2 {
    color: #1D1F25;
    font-size: 40px;
  }
  
  .contact-card h5 {
    margin-top: 50px;
  }

  .icon i {
    color: #BB9645;
  }

  .border-left {
    border-left: 4px solid #BB9645;
  }
  .border-right {
    border-right: 4px solid #BB9645;
  }