* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--barlow);
  color: var(--lt-grey);
}

:root {
  --golden: #8e6d45;
  --cream: #f8f5f0;
  --d-grey: #222;
  --lt-grey: rgb(102, 102, 102);
  --f-grey: #1e1e1e;
  --white: #fff;
  --barlow: "Barlow", sans-serif;
  --barlow-c: "Barlow Condensed", sans-serif;
  --gilda-display: "Gilda Display", serif;
}

html,
body {
  scroll-behavior: smooth;
}

a,
a:hover {
  display: inline-block;
  text-decoration: none;
}

/* header start ************************** */
header {
  position: absolute;
  top: 0;
  z-index: 1030;
}

nav {
  margin-left: -15px;
  margin-right: -15px;
}

.logo > img {
  width: 200px;
}

.navbar-nav .nav-item .nav-link {
  font-family: var(--barlow-c);
  letter-spacing: 3px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.4s;
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
  color: var(--golden);
}

.nav-scroll {
  background: #fff;
  padding: 0 0 0 0;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-box-shadow: 0px 5px 15px rgb(0 0 0 / 5%);
  box-shadow: 0px 5px 15px rgb(0 0 0 / 5%);
}
.nav-scroll .navbar-nav .nav-item .nav-link {
  color: var(--f-grey);
}
.nav-scroll .navbar-brand {
  filter: brightness(0%);
}
.navbar-light .navbar-toggler {
  border: 1px solid var(--white);
}
.navbar-light .navbar-toggler-icon {
  filter: brightness(0%) invert(1);
}

/* header end ***************************** */

/* banner start **************************** */

.banner {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url(../../images/banner-bg-1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

.banner > div:nth-child(2) {
  height: 100vh;
}

.bnr-txt-area > span:nth-child(1) > i,
.star > i {
  color: #e4a853;
}

.bnr-txt-area > p:nth-child(2) {
  font-family: var(--barlow-c);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--white);

  margin-bottom: 20px;
  margin-top: 20px;
}

.bnr-txt-area > p:nth-child(3) {
  margin-bottom: 20px;
  font-family: var(--gilda-display);
  font-size: 55px;
  text-transform: uppercase;
  line-height: 1.35em;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 15px;
}

.bnr-txt-area > a:nth-child(4) {
  font-weight: 400;
  font-family: var(--barlow-c);
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 12px 20px;
  margin: 0;
  position: relative;
  font-size: 15px;
  letter-spacing: 3px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  /* transition: all 100ms ease-in-out; */
  z-index: 54;
}

.bnr-txt-area > a:nth-child(4):hover {
  color: #000;
}

.bnr-txt-area > a:nth-child(4)::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  transition: width 300ms ease-in-out;
  z-index: -1;
}

.bnr-txt-area > a:nth-child(4):hover::before {
  width: 100%;
}

.bnr-reservation {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
}
.bnr-reservation p {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--barlow-c);
  font-weight: 400;
  letter-spacing: 5px;
  font-size: 12px;
  line-height: 1.75em;
  margin-top: 15px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.bnr-reservation a {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--gilda-display);
  font-size: 24px;
  color: var(--golden);
  letter-spacing: 1px;
}

.bnr-reservation i {
  color: var(--white);
  font-size: 25px;
  transform: rotate(330deg);
}

.bnr-reservation .call {
  margin-top: 10px;
}

.bnr-reservation .call span {
  position: absolute;
  top: 50%;

  transform: translatey(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: call 2s linear infinite;
}

@keyframes call {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.04;
  }

  100% {
    scale: 1;
  }
}

/* banner end ******************************* */

/* about start ****************************** */

.about {
  padding-top: 120px;
  padding-bottom: 120px;
}

.caption {
  font-size: 15px;
  font-family: var(--barlow-c);
  font-weight: 400;
  color: var(--lt-grey);
  text-transform: uppercase;
  position: relative;
  letter-spacing: 6px;
  margin-bottom: 5px;
}

.head {
  font-size: 45px;
  font-family: var(--gilda-display);
  font-weight: 400;
  color: var(--d-grey);
  line-height: 1.25em;
  text-transform: capitalize;
}

.about-left > p:nth-child(4),
.about-left > p:nth-child(5) {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75em;
  margin-bottom: 20px;
}
.about-reservation > div:nth-child(1) > i {
  color: var(--golden);
  font-size: 35px;
  transform: rotate(330deg);
}
.about-reservation > div:nth-child(2) > p {
  margin-bottom: 0px;
  text-transform: capitalize;
}

.about-reservation > div:nth-child(2) > a {
  color: var(--golden);
  font-size: 24px;
  font-family: var(--barlow-c);
  letter-spacing: 1px;
}

.about-right > div > div:nth-child(1) > img {
  margin-top: 100px;
}

/* about end ******************************* */

/* room start **************************** */

.room {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f1eeeb;
}
.room .row {
  row-gap: 30px;
}

.room .room-card {
  position: relative;
}

.room-card > div.text {
  position: absolute;
  display: block;
  bottom: 0px;
  left: 0px;
  width: 100%;
  transform: translateY(48px);
  transition: transform 200ms ease-in-out;
}

.room-card:hover div.text {
  transform: translateY(0px);
}

.room-card:hover div.text p:nth-child(2)::after {
  width: 100%;
}

.room-card img {
  transition: all 800ms ease-in-out;
}

.room-card:hover img {
  transform: scale(1.2);
}

.room-card > div.text p:nth-child(1) {
  color: #fff;
  font-size: 15px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.room-card > div.text p:nth-child(2) {
  position: relative;
  font-family: "Gilda Display", serif;
  color: #fff;
  font-size: 27px;
  font-weight: 400;

  margin-bottom: 30px;
  text-transform: capitalize;
}

.room-card > div.text p:nth-child(2)::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -10px;
  width: 20%;
  height: 1px;
  background-color: var(--white);
  transition: all 700ms ease-in-out;
}

.room-card > div.text ul li {
  display: inline-block;
  margin-right: 10px;
}

.room-card > div.text ul li i {
  color: var(--white);
}

.room-card > div.text a {
  color: var(--white);
  text-transform: uppercase;

  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 3px;
  position: relative;
}
.room-card > div.text a i {
  color: var(--white);
}

.room-card > div.text a:hover,
.room-card > div.text a:hover i {
  color: var(--golden);
  transition: all 300ms ease-in-out;
}

.room-card .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.room-card > a {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--white);
  padding: 10px 5px;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid var(--white);
  font-style: var(--barlow-c);
  letter-spacing: 3px;
  font-size: 15px;
}

/* room end ****************************** */

/* extra services start ********************************************** */

#extra {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--d-grey);
}

#extra .row {
  row-gap: 30px;
}

#extra .caption {
  color: var(--golden);
}

#extra .head {
  color: var(--white);
}

.extra-left > p:nth-child(3),
.extra-left > p:nth-child(4) {
  color: var(--white);
}

#extra .about-reservation > div:nth-child(2) > p {
  color: var(--white);
}
#extra .extra-right .txt {
  background-color: var(--white);
}
#extra .extra-right .txt p:nth-child(1) {
  text-transform: capitalize;
  line-height: 1;
  margin: 0;
  font-family: var(--gilda-display);
  font-size: 24px;
  color: var(--d-grey);
  margin-bottom: 20px;
}

#extra .extra-right .txt p:nth-child(2) {
  font-family: var(--barlow);
  font-size: 15px;
  color: var(--lt-grey);
}

#extra .extra-right .txt p:nth-child(2) span {
  margin: 0;
  line-height: 1;
  font-family: var(--gilda-display);
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--golden);
}

#extra .extra-right .txt > ul > li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
}

#extra .extra-right .txt > ul > li > i {
  color: var(--golden);
  margin-right: 10px;
}

/* extra services end ************************************************* */

/* video start ******************** */

.video {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url(../../images/banner-bg-1.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
}

.video-txt-area > span:nth-child(1) > i,
.star > i {
  color: #e4a853;
}

.video-txt-area > p:nth-child(2) {
  font-family: var(--barlow-c);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--white);

  margin-bottom: 20px;
  margin-top: 20px;
}

.video-txt-area > p:nth-child(3) {
  margin-bottom: 20px;
  font-family: var(--gilda-display);
  font-size: 45px;
  text-transform: capitalize;
  line-height: 1.35em;
  color: var(--white);
  font-weight: 400;
}

.video-txt-area > a:nth-child(4) {
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.video-txt-area > a:nth-child(4) > svg {
  z-index: 3;
}

.video-txt-area > a:nth-child(4)::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 2;
  background-color: var(--white);
  transition: all 300ms ease-in-out;
}
.video-txt-area > a:nth-child(4):hover {
  border: 2px solid var(--white);
}
.video-txt-area > a:nth-child(4):hover::before {
  scale: 0;
}
/* video end *********************** */

/* facilities start  ************************/

.facilities {
  padding-top: 120px;
  padding-bottom: 120px;
}

.facilities-card > div {
  border: 1px solid #f1eeeb;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 30px;
}

.facilities-card > div > i {
  color: var(--golden);
  font-size: 40px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.facilities-card > div > p:nth-child(2) {
  font-family: var(--gilda-display);
  font-weight: 400;
  line-height: 1.25em;
  color: var(--d-grey);
  font-size: 24px;
  margin-bottom: 10px;
}
/* facilities end ************************* */

/* search rooms start ********************* */

.search {
  background-color: var(--cream);
  padding-top: 120px;
  padding-bottom: 120px;
}

.search form input {
  flex-basis: 20%;
  padding: 15px 10px;
  text-transform: capitalize;
  border: 1px solid #f1eeeb;
  outline-color: transparent;
}
::placeholder {
  color: #000;
}
.search form {
  row-gap: 15px;
}
.search form select,
.search form a {
  flex-basis: 15%;
  padding: 15px 10px;
  text-transform: capitalize;
  border: 1px solid #f1eeeb;
  outline-color: transparent;
}

.search form a {
  background-color: var(--golden);
  color: var(--white);
}

/* search rooms end ************************ */

/* client start **************************** */
.client {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url(../../images/banner-bg-1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 120px;
  padding-bottom: 120px;
}
.client .caption,
.client .head {
  color: var(--white);
}

.client .head {
  position: relative;
}

.client .head::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 1px;
  width: 100px;
  background-color: var(--white);
  bottom: 0px;
  left: 0px;
}

.client-card > p {
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75em;

  margin-bottom: 20px;
}

.client-info .client-img {
  height: 70px;
  width: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}

.client-info-txt > .star > i {
  font-size: 10px;
  margin-bottom: 10px;
}

.client-info-txt > p:nth-child(2) {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 0px;
  padding-top: 0px;
  font-weight: 400;
  font-family: var(--barlow-c);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.client-info-txt > p:nth-child(3) {
  font-size: 12px;
  color: var(--white);
  line-height: 1em;
}

.owl-theme .owl-dots .owl-dot span {
  border: 1px solid var(--white);
  background: none;
  width: 12px;
  height: 12px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--golden);
  border: none;
}

/* client end ******************************* */

/* facility 2 start ***************************** */

.facility-2 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.facility-2-img > img {
  transition: all 300ms ease-in-out;
}

.facility-2-img:hover img {
  scale: 1.2;
}

.facility-2-txt {
  background-color: var(--cream);
}

.facility-2-txt > div {
  height: 100%;
}

.facility-2-txt > div > div > p:nth-child(1) {
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--lt-grey);
  font-family: var(--barlow-c);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 1.25em;
}

.facility-2-txt > div > div > p:nth-child(2) {
  font-family: "Gilda Display", serif;
  margin: 0 0 10px 0;
  font-size: 32px;
  color: #222;
  font-weight: 400;
  line-height: 1.5em;
}

.facility-2-txt > div > div > p:nth-child(3) {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75em;
  color: #666;
  margin-bottom: 20px;
}

.facility-2-txt > div > div > a {
  background-color: var(--golden);
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 3px;
  padding: 13px 22px;
  color: var(--white);
  position: relative;
  z-index: 3;
}

.facility-2-txt > div > div > a::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--d-grey);
  z-index: -1;
  transition: all 300ms ease-in-out;
}

.facility-2-txt > div > div > a:hover::before {
  width: 100%;
}

/* facility 2 end ********************************* */

/* blog start ************************************** */

.blog {
  background-color: var(--d-grey);
  padding-bottom: 120px;
  padding-top: 120px;
}

.blog > div > p:nth-child(1) {
  color: var(--golden);
}

.blog > div > p:nth-child(2) {
  color: var(--white);
}

.blog-card > div:nth-child(1) {
  position: relative;
}

.blog-card .blog-img {
  transition: all 400ms ease-in-out;
}

.blog-card > div:nth-child(1) .date {
  position: absolute;
  border: 2px solid var(--white);
  top: 40px;
  left: 40px;
}
.blog-card > div:nth-child(1) .date > p:nth-child(1) {
  font-family: "Barlow Condensed", sans-serif;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
}

.blog-card > div:nth-child(1) .date > p:nth-child(2) {
  font-family: "Barlow Condensed", sans-serif;
  display: block;
  font-size: 24px;
  font-style: normal;
  color: #fff;
}

.blog-card .blog-txt {
  position: relative;
  top: -60px;
  transition: all 200ms ease-in-out;
}

.blog-card .blog-txt > p:nth-child(1) {
  color: var(--d-grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.blog-card .blog-txt > p:nth-child(2) {
  color: #222;
  font-size: 28px;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  margin-bottom: 0px;
  text-transform: capitalize;

  transition: all 300ms ease-in-out;
  cursor: pointer;
}

.blog-card:hover .blog-img {
  scale: 1.1;
  filter: brightness(60%);
}

.blog-card:hover .blog-txt {
  top: -200px;
}

.blog-card .blog-txt > p:nth-child(2):hover {
  color: var(--golden);
}

/* blog end ***************************************** */

/* brands start ******************************* */

.brand {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* brands end ********************************* */

/* footer start ******************************* */
.footer-top {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--d-grey);
}

.footer-top .row {
  row-gap: 30px;
}

.footer-title {
  font-family: var(--gilda-display);
  font-weight: 400;
  line-height: 1.25em;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-top-left > p:nth-child(2) {
  font-size: 15px;
  color: #adadad;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.75em;
}

.footer-top-mid > ul {
  list-style: none;
}

.footer-top-mid > ul > li > a {
  font-size: 15px;
  color: #adadad;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  transition: all 300ms ease-in-out;
}
.footer-top-mid > ul > li > a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--golden);
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.footer-top-mid > ul > li > a:hover {
  color: var(--white);
  padding-left: 20px;
}

.footer-top-mid > ul > li > a:hover::before {
  opacity: 1;
}

.footer-top-right > p:nth-child(2) {
  font-size: 15px;
  color: #adadad;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: capitalize;
}

.footer .scrl-top {
  display: inline-block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgb(102, 102, 102, 0.5);
  opacity: 0;
  transition: all 300ms ease-in-out;
  visibility: visible;
  cursor: pointer;
}

.footer .scrl-top i {
  color: var(--golden);
}

.footer .scrl-top svg {
  position: absolute;
  top: -1;
  left: -1;
}

.footer .scrl-top svg circle {
  stroke-dasharray: 156;
}
.scrl-top.show {
  opacity: 1;
  visibility: visible;
}

/* footer end ********************************** */
