html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 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 */
  :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: 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-transform: capitalize;
    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: white;
  }
  .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 a {
    color: var(--secondary-text);
  }

  #contact-footer {
    background-color: #1c1c1c;
    background-image: url(img/bg-dark.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  /* 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;
  }
  .navbar-nav a {
    margin-left: 10px;
    font-size: 22px;
    font-weight: 500 !important;
    color: white;
  }
  .nav-link img {
    width: 25px;
    height: 15px;
  }
  .navbar-nav a {
    text-decoration: none;
    text-transform: capitalize;
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    border-bottom: 1px solid transparent;
    position: relative;
  }
  .navbar-nav a:hover {
    color: #FEA116;
  }
  .navbar-nav a.active {
    color: #1d1f25 !important;
  }
  .navbar-nav a::before {
    content: "";
    width: 0;
    height: 2px;
    border-radius: 2px;
    background-color: #FEA116;
    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: #FEA116;
    border: 3px solid #FEA116 !important;
    border-radius: 0px !important;
    color: white !important;
    font-size: 15px;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 30px;
    position: relative;
    text-transform: uppercase;
    border-radius: 10px;
    font-family: "Lato", sans-serif;
  }
  
  #button::before,
  #button::after {
    background: white !important;
    content: "";
    position: absolute;
    z-index: -1;
    color: white;
  }
  
  #button:hover {
    color: #FEA116 !important;
    transform: scale(1);
    cursor: pointer;

  }
  
  .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%;
  }

.play {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rob {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}

/* index */
#index-bg {
    background: url(img/img-10.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 h2 {
  color: #c19b77;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.index-ds h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 400;
  text-transform: capitalize;
}

.index-header {
  margin-bottom: 30px;
}

.index-header h5 {
  color: #FEA116;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.index-header h1 {
  color: #1c1c1c;
  font-size: 50px;
  line-height: 65px;
  font-weight: 500;
  text-transform: capitalize;
}

.index-header p {
  font-size: 15px;
  color: grey;
  letter-spacing: 1px;
}


#about {
    padding: 70px 0;
    background-color: #1c1c1c;
    background-image: url(img/bg2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-desc h2 {
  font-size: 50px;
  color: #1c1c1c;
  font-weight: 400;
  text-transform: capitalize;
}

#call {
  padding-top: 70px;
  display: flex;
  align-items: center;
  text-align: center;
}

#calls {
  background-image: url(img/parallax-3.jpg);
  background-color: rgba(0, 0, 0, 0.40);
  background-blend-mode: multiply;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20vh;
}

.call-first-text h5 {
  color: #ffffff;
  font-size: 25px;
  letter-spacing: 2px;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 55px;
}

.call-first-text h5 a {
  text-decoration: none;
  color: #ffffff;
  font-size: 25px;
  letter-spacing: 2px;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 55px;
}



.call-logo img {
  width: 50px;
  margin-top: 55px;
}

/* rooms */
#rooms {
  padding: 70px 0;
}

.rooms-cards {
  background-color: white;
  border: 2px solid #FEA116;
  margin: 15px 0;
}

.rooms-cards .header {
  border-bottom: 2px solid #c19b77;
}

.rooms-cards .header h1 {
  padding-left: 20px;
  color: #1c1c1c;
  font-size: 30px;
  line-height: 45px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 10px 0;
}

.rooms-cards .faci {
  display: flex;
  align-items: center;
  text-align: center;
  padding-left: 20px;
}

.rooms-cards .faci .fac {
  display: flex;
  align-items: center;
  text-align: center;
  margin-right: 20px;
}

.rooms-cards .faci .fac img {
  width: 20px;
  margin-right: 15px;
}

.rooms-cards .faci .fac p {
  color: #1c1c1c;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 2px;
  margin-top: 20px;
}

.rooms-cards .text p {
  padding-left: 20px;
  padding-right: 20px;
  color: #636363;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 400;
}

.rooms-footer {
  padding-left: 20px;
  padding-bottom: 20px;
}

.rooms-footer i {
  margin-left: 15px;
}

/* facilities */
#facilities {
  padding-bottom: 70px;
  background-color: #1c1c1c;
  background-image: url(img/bg2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.faci-cards {
  margin: 15px 0;
  border: 3px solid #FEA116;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.80);
}

.faci-cards .header {
  display: flex;
  justify-content: space-between;
}

.faci-cards .header i {
  color: #FEA116;
  font-size: 30px;
}

.faci-cards .header img {
  width: 60px;
  margin-bottom: 10px;
}
.faci-cards .header h5 {
  color: #FEA116;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 400;
}

.faci-cards .header {
  border-bottom: 2px solid #FEA116;
}

.faci-cards .text h2 {
  color: white;
  font-size: 15px;
  line-height: 20.4px;
  letter-spacing: 4px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10px;
}

.faci-cards .text p {
  color: #eee;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 1.5px;
  font-weight: 400;
}

.faci-cards .text p a{
  color: #eee;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 1.5px;
  font-weight: 400;
  text-decoration: none;
}


/* gallery */
#gallery {
  padding-bottom: 70px;
}

.gallery-img img {
  height: 300px; 
  width: 100%;
  margin: 15px 0;
}


/* testimonials */
#testimonials {
  padding-bottom: 70px;
  background-color: #1c1c1c;
  background-image: url(img/bg2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* about-html */
#about-bg {
  background: url(img/img-3.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;
}

#call-a {
  padding: 70px 0;
}

#call-a {
  padding-top: 70px;
  display: flex;
  align-items: center;
  text-align: center;
}


/* rooms-html */
#rooms-bg {
  background: url(img/standart-apartment.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;
}

/* gallery-html */
#gallery-bg {
  background: url(img/img-1.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;
}

#gallery-gallery {
  padding: 70px 0;
}

/* contact */
#contact-bg {
  background: url(img/img-2.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;
}

#contact-form {
  padding-top: 70px ;
}

/* responsive */
@media (max-width:1000px) {
  .navbar-nav a {
    text-decoration: none;
    text-transform: capitalize;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    color: white;
    border-bottom: 1px solid transparent;
    position: relative;
  }

  #button {
    background: #FEA116;
    border: 3px solid #FEA116 !important;
    border-radius: 0px !important;
    color: white !important;
    font-size: 12px;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
    text-transform: uppercase;
    border-radius: 10px;
    font-family: "Lato", sans-serif;
  }

  .index-ds h1 {
    font-size: 50px;
  }

  .index-ds h2 {
    font-size: 14px;
  }

  .about-desc h2 {
    font-size: 35px;
  }

  .about-desc p {
    font-size: 14px;
  }

  .index-header h5 {
    font-size: 14px;
  }

  .index-header h1 {
    font-size: 40px;
  }

  .index-header p {
    font-size: 13px;
  }

  .rooms-cards .header h1 {
    font-size: 23px;
  }

  .rooms-cards .text p {
    font-size: 13px;
  }
}

@media (max-width:900px) {
  .mob {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .index-ds h1 {
    font-size: 40px;
  }

  .index-ds h2 {
    font-size: 13px;
  }

  .about-desc h2 {
    font-size: 30px;
  }

  .about-desc p {
    font-size: 13px;
  }

  .index-header h5 {
    font-size: 14px;
  }

  .index-header h1 {
    font-size: 40px;
  }

  .index-header p {
    font-size: 13px;
  }

  .rooms-cards .header h1 {
    font-size: 23px;
  }

  .rooms-cards .text p {
    font-size: 13px;
  }
}

@media (max-width:767px) {
  .gallery-img img {
    height: 250px;
  }
}