body {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  direction: ltr;
  text-decoration: none;
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
}

::-moz-selection {
  background-color: #ECC500;
  color: #fff;
}

::selection {
  background-color: #ECC500;
  color: #fff;
}

/***************************** Global Style *****************************/
h1,
h2,
h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: bold;
}

h4,
h5,
h6 {
  font-family: 'Cairo', sans-serif;
  font-weight: 500;
}

p {
  font-size: 13px;
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
  color: #111;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

img {
  max-width: 100%;
}

ul {
  list-style-type: none;
  padding: 0;
}

.bg-gray {
  background-color: #f7f7f7;
}

.border_items {
  padding: 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 111;
  display: none;
}

.loader img {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.butn {
  border: 1px solid #111;
  padding: 8px 15px;
  font-size: 14px;
  background-color: transparent;
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.butn span {
  position: relative;
  z-index: 2;
}

.butn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #ECC500;
  z-index: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.butn:hover {
  border-color: #ECC500;
}

.butn:hover span {
  color: #fff;
}

.butn:hover::before {
  width: 100%;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.datepicker td,
.datepicker th {
  font-size: 13px;
}

.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  background-color: #ECC500;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ECC500), to(#ffd70d));
  background-image: linear-gradient(to bottom, #ECC500, #ffd70d);
}

form .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-bottom: 1px solid #ECC500;
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(-135deg, #ECC500, #ffd70d);
  color: #000;
  text-align: center;
  line-height: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background-color: #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #fff;
}

.scroll-top-btn:hover i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

/***************************** Mixins  *****************************/
/*button mixin*/
/***************************** Animations *****************************/
@-webkit-keyframes scaling {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}
@keyframes scaling {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg) scale3d(0.5, 0.5, 0.5);
            transform: rotate(0deg) scale3d(0.5, 0.5, 0.5);
  }
  100% {
    -webkit-transform: rotate(360deg) scale3d(1, 1, 1);
            transform: rotate(360deg) scale3d(1, 1, 1);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg) scale3d(0.5, 0.5, 0.5);
            transform: rotate(0deg) scale3d(0.5, 0.5, 0.5);
  }
  100% {
    -webkit-transform: rotate(360deg) scale3d(1, 1, 1);
            transform: rotate(360deg) scale3d(1, 1, 1);
  }
}

@-webkit-keyframes dancing-circles {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #111;
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #f5e38b;
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #857524;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #756205;
  }
}

@keyframes dancing-circles {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #111;
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #f5e38b;
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #857524;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #756205;
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.navs-container .top-nav {
  padding: 0 0 0 2vw;
  background-color: #fff;
  padding: 10px 0;
}

.navs-container .top-nav .container-fluid {
  padding: 0 3vw;
}

.navs-container .top-nav .links a {
  color: #1A1818;
  font-size: 11px;
  padding-right: 15px;
  margin-right: 25px;
  position: relative;
}

.navs-container .top-nav .links a img {
  margin-right: 8px;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .top-nav .links a::after {
  content: '|';
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #ddd;
  right: 0;
  font-size: 19px;
  top: -5px;
}

.navs-container .top-nav .links a:hover {
  color: #ECC500;
}

.navs-container .top-nav .links a:last-child::after {
  display: none;
}

.navs-container .top-nav .language-wrapper a {
  color: #ccc;
  font-size: 12px;
  padding-right: 15px;
  margin-right: 10px;
  position: relative;
}

.navs-container .top-nav .language-wrapper a.active {
  color: #1A1818;
}

.navs-container .top-nav .language-wrapper a:hover {
  color: #ECC500;
}

.navs-container .top-nav .language-wrapper a::after {
  content: '|';
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #ddd;
  right: 0;
  font-size: 19px;
  top: -5px;
}

.navs-container .top-nav .language-wrapper a:last-child::after {
  display: none;
}

.navs-container .top-nav .img-st img {
  width: 250px;
}

.navs-container .navbar {
  background-color: #272727;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.navs-container .navbar .container-fluid {
  padding: 0;
}

.navs-container .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.navs-container .navbar .navbar-nav .drop-nav {
  position: relative;
}

.navs-container .navbar .navbar-nav .drop-nav .drop-down {
  width: 200px;
  position: absolute;
  left: 0;
  top: 150%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 150;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  text-align: right;
  border-top: 3px solid #ECC500;
  color: #111;
}

.navs-container .navbar .navbar-nav .drop-nav:hover .drop-down {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navs-container .navbar .navbar-nav .drop-nav .drop-down a {
  font-weight: 300;
  padding: 10px 15px;
  border-bottom: 1px solid #9995;
  display: block;
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
  text-align: left;
  letter-spacing: 1px;
}

.navs-container .navbar .navbar-nav .drop-nav .drop-down a:hover {
  background-color: #ECC500;
  color: #fff;
}

.navs-container .navbar .navbar-brand {
  margin: 0;
}

.navs-container .navbar .navbar-brand img {
  width: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-item:last-of-type {
  margin-left: 10px;
}

.navs-container .navbar .nav-item:last-of-type .nav-link {
  color: #fff;
  font-size: 13px;
}

.navs-container .navbar .nav-item:last-of-type .nav-link small.active {
  color: #fff;
}

.navs-container .navbar .nav-link {
  color: #fff;
  position: relative;
  margin: 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.3px;
  font-weight: 300;
  padding: 0 5px;
}

.navs-container .navbar .nav-link::after {
  content: '';
  width: 0px;
  height: 2px;
  background-color: #ECC500;
  position: relative;
  display: block;
  left: 50%;
  top: 10px;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.navs-container .navbar .nav-link.active, .navs-container .navbar .nav-link:hover {
  color: #fff;
}

.navs-container .navbar .nav-link.active::after, .navs-container .navbar .nav-link:hover::after {
  opacity: 1;
  width: 100%;
  left: 0;
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #ECC500;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #ECC500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navs-container .navbar .book-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: #ECC500;
  display: block;
  text-align: center;
  font-size: 15px;
  position: relative;
  border-left: 1px solid #ECC500;
  border-right: 1px solid #ECC500;
}

.navs-container .navbar .book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #333333;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.navs-container .navbar .book-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #333333;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.navs-container .navbar .book-btn:hover {
  color: #ECC500 !important;
  background-color: transparent;
  color: #000;
}

.navs-container .navbar .book-btn:hover i {
  -webkit-animation: translateX .5s linear infinite;
          animation: translateX .5s linear infinite;
}

.navs-container .navbar .book-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.navs-container .navbar .book-btn:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.navs-container .lang {
  margin-right: 15px;
}

.navs-container .lang img {
  width: 40px;
}

.navs-container.fixed .navbar .book-btn {
  height: 85px;
  line-height: 85px;
}

.navs-container.fixed .navbar .navbar-brand {
  padding: 0;
  margin: 0;
}

.bottom-nav {
  background-color: #fafafa;
}

.bottom-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 0;
  padding: 15px;
}

.bottom-nav ul li {
  font-size: 16px;
  color: #000;
  line-height: 2;
}

.bottom-nav ul li img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 5px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

footer {
  padding-top: 70px;
  background: #f1f1f1;
}

footer .items {
  padding: 30px 15px;
  border: 1px solid #9995;
  height: 100%;
}

footer .items h6 {
  margin-bottom: 15px;
  color: #111;
}

footer .items p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #111;
}

footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

footer .social a {
  font-size: 20px;
  margin-top: 20px;
}

footer .social a:first-of-type {
  color: #3b5998;
}

footer .social a:nth-of-type(2) {
  color: #c32aa3;
}

footer .social a:nth-of-type(3) {
  color: #0a66c2;
}

footer .social a:nth-of-type(4) {
  color: #1da1f2;
}

footer .social a:last-of-type {
  color: #FFFC00;
}

footer .social a img {
  width: 30px;
}

footer .pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

footer .pay img {
  width: 40px;
  height: 30px;
  margin-top: 20px;
}

footer .copyright {
  margin-top: 50px;
  padding: 20px 0px;
  background-color: #e0e0e0;
}

footer .copyright p {
  color: #000;
  margin-bottom: 0;
}

/***************************** Start Edit Home Page *****************************/
header {
  position: relative;
  /*padding-top: 100px;*/
}

header::after {
  content: '';
  background-color: #111;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .6;
}

header .swiper-container .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: top;
  padding-bottom: 50px;
  min-height: 650px;
}

header .swiper-container .swiper-slide:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
}

header .swiper-container .swiper-slide .container {
  position: relative;
  z-index: 10;
}

header .swiper-container .swiper-slide .links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

header .swiper-container .swiper-slide .links span {
  font-weight: bold;
  color: #fff;
  position: relative;
  margin-right: 35px;
}

header .swiper-container .swiper-slide .links span::after {
  content: '';
  width: 25px;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 12px;
  right: -33px;
}

header .swiper-container .swiper-slide .links a {
  color: #eee;
  margin: 0px 8px;
}

header .swiper-container .swiper-slide .links a:hover {
  color: #ECC500;
}

header .swiper-container .swiper-slide .header-text {
  margin: 5rem 0rem 8rem 0rem;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

header .swiper-container .swiper-slide .header-text h2 {
  color: #fff;
  font-size: 3rem;
}

header .swiper-container .swiper-slide .header-text h2 b {
  color: #ECC500;
  font-weight: bold;
}

header .swiper-container .swiper-slide .header-text .text {
  margin: 15px 0;
}

header .swiper-container .swiper-slide .header-text .text p {
  color: #eee;
  font-size: 16px;
  line-height: 1.8;
}

header .swiper-container .swiper-slide .header-text a {
  color: #ECC500;
}

header .swiper-container .swiper-slide-active .header-text {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

header .swiper-container .swiper-button-next,
header .swiper-container .swiper-button-prev {
  top: unset;
  bottom: 40%;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  border: 1px solid #000;
  background-size: 15px 15px;
  -webkit-filter: invert(98%) sepia(100%) saturate(7%) hue-rotate(155deg) brightness(102%) contrast(106%);
          filter: invert(98%) sepia(100%) saturate(7%) hue-rotate(155deg) brightness(102%) contrast(106%);
}

header .swiper-container .swiper-button-next:hover,
header .swiper-container .swiper-button-prev:hover {
  -webkit-filter: invert(73%) sepia(58%) saturate(1432%) hue-rotate(6deg) brightness(210%) contrast(101%);
          filter: invert(73%) sepia(58%) saturate(1432%) hue-rotate(6deg) brightness(210%) contrast(101%);
}

header .swiper-container .swiper-pagination {
  color: #fff;
  position: absolute;
  text-align: right;
  bottom: 30px;
  right: 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: unset;
  font-size: 21px;
  opacity: 0;
}

header .booking-details {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 0;
  z-index: 20;
  /*width: 300px;*/
  width: 400px;
  border-radius: 5px;
  overflow: hidden;
}

header .booking-details .form-group {
  position: relative;
  margin-bottom: 5px;
}

header .booking-details .form-group label {
  font-size: 14px;
  font-weight: bold;
}

header .booking-details .form-group .form-control {
  border: 1px solid #9993;
  font-size: 14px;
  min-width: 100%;
}

header .booking-details .form-group .icon {
  position: absolute;
  color: #111;
  font-size: 14px;
  bottom: 8px;
  right: 8px;
}

section .text {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 50px;
}

section .text h2 {
  font-weight: 400;
}

section .text i {
  color: #ECC500;
  position: absolute;
  right: -90px;
  top: 17px;
  display: none;
}

.best-rooms {
  padding: 115px 0px 50px;
}

.best-rooms .rooms-carousel.owl-theme {
  position: relative;
}

.best-rooms .rooms-carousel.owl-theme::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 12%;
  height: 100%;
  background-color: #f7f7f7;
  opacity: 0.7;
  z-index: 5;
  pointer-events: none;
}

.best-rooms .rooms-carousel.owl-theme::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 12%;
  height: 100%;
  background-color: #f7f7f7;
  opacity: 0.7;
  z-index: 5;
  pointer-events: none;
}

.best-rooms .rooms-carousel.owl-theme .owl-dots .owl-dot span {
  width: 60px;
  height: 6px;
  margin: 40px 7px 0px 7px;
  background-color: #f1f1f1;
}

.best-rooms .rooms-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #ECC500;
}

.best-rooms .rooms-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 35%;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 10;
}

.best-rooms .rooms-carousel.owl-theme .owl-nav button.owl-next,
.best-rooms .rooms-carousel.owl-theme .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 38px;
  border: 1px solid #ECC500;
  color: #ECC500;
  margin: 0;
  border-radius: 0;
}

.best-rooms .rooms-carousel.owl-theme .owl-nav button.owl-next:hover,
.best-rooms .rooms-carousel.owl-theme .owl-nav button.owl-prev:hover {
  color: #fff;
  background-color: #ECC500;
}

.best-rooms .rooms-carousel:hover .owl-nav {
  opacity: 1;
}

.best-rooms .rooms-carousel .card {
  border: none;
}

.best-rooms .rooms-carousel .card .image-content {
  width: 100%;
  height: 250px;
  border-bottom: 5px solid #ECC500;
}

.best-rooms .rooms-carousel .card .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.best-rooms .rooms-carousel .card .card-body {
  background-color: #fff;
  position: relative;
  text-align: center;
  padding: 30px 15px;
}

.best-rooms .rooms-carousel .card .card-body h5 {
  margin-bottom: 15px;
}

.best-rooms .rooms-carousel .card .card-body .butn {
  border-color: #ECC500;
  font-weight: 100;
}

.best-rooms .rooms-carousel .card .card-body .butn:hover span {
  color: #fff;
}

.best-rooms .rooms-carousel .card .card-body .butn span {
  color: #ECC500;
}

.best-rooms .rooms-carousel .card .card-body .price {
  position: absolute;
  text-align: center;
  right: 0;
  bottom: 100%;
  color: #fff;
}

.best-rooms .rooms-carousel .card .card-body .price b {
  font-size: 25px;
}

.best-rooms .rooms-carousel .card .card-body .price a {
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #ECC500;
  color: #000;
  display: none;
}

.description .info {
  padding: 50px 4vw;
}

.description .info h5 {
  color: #272727;
  font-size: 24px;
}

.description .info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.description .list {
  padding: 30px;
  overflow: hidden;
  margin: 15px 0;
  position: relative;
}

.description .list::before {
  position: absolute;
  content: "\f10e";
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  font-size: 150px;
  opacity: 0.7;
  color: #fff;
  top: 40px;
  z-index: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
}

.description .list h5 {
  margin-bottom: 20px;
  padding: 10px;
  border-bottom: 1px solid #9993;
  font-size: 22px;
  font-weight: bold;
  text-align: left;
}

.description .list li {
  font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
    color: #111;
    width: 49%;
    display: inline-block;
}

.description .list li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 7px;
  width: 15px;
  height: 20px;
  background-image: url(../images/fav.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.img-info {
  padding: 50px 15px;
}

.img-info .img {
  position: relative;
}

.img-info .img a.zoom {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #ECC500;
  background-color: #0009;
}

.img-info .img a.zoom:hover {
  background-color: #ffffffdc;
}

.img-info .img .titl {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #f5f5f5;
  padding: 50px 15px;
  width: 32%;
}

.img-info .img .titl h3 {
  font-size: 20px;
  font-weight: 200;
  text-transform: capitalize;
}

.img-info .img .titl a {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 5px;
}

.img-info .img .titl a:hover {
  color: #ECC500;
}

.img-info .img .titl a i {
  font-size: 12px;
  margin-left: 3px;
}

.img-info .img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-info .info {
  padding: 4vw;
}

.img-info .info p {
  color: #111;
  font-size: 16px;
  line-height: 2;
}

.img-info .info a {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.img-info .info a:hover {
  color: #ECC500;
}

.img-info .info a i {
  margin-left: 3px;
  font-size: 11px;
}

.img-info .swiper-img_info {
  overflow: hidden;
}

.img-info .swiper-img_info .swiper-button-next,
.img-info .swiper-img_info .swiper-button-prev {
  top: unset;
  bottom: 5px;
  right: 25px;
  background-size: 15px 15px;
  -webkit-filter: invert(98%) sepia(100%) saturate(7%) hue-rotate(155deg) brightness(1002%) contrast(106%);
          filter: invert(98%) sepia(100%) saturate(7%) hue-rotate(155deg) brightness(1002%) contrast(106%);
}

.img-info .swiper-img_info .swiper-button-next:hover,
.img-info .swiper-img_info .swiper-button-prev:hover {
  -webkit-filter: invert(73%) sepia(58%) saturate(1432%) hue-rotate(6deg) brightness(210%) contrast(101%);
          filter: invert(73%) sepia(58%) saturate(1432%) hue-rotate(6deg) brightness(210%) contrast(101%);
}

.img-info .swiper-img_info .swiper-button-prev,
.img-info .swiper-img_info .swiper-container-rtl .swiper-button-next {
  left: unset;
  right: 80px;
}

.img-info .swiper-img_info .swiper-pagination-fraction {
  bottom: 20px;
  left: 40px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.amenities {
  padding: 2vw;
  position: relative;
}

.amenities .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.amenities .content .items {
  padding: 30px;
  width: 15%;
}

.amenities .content .items .icons img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
  opacity: 0.8;
}

.amenities .content .items h5 {
  color: #111;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.amenities .circle {
  width: 100px;
  height: 100px;
  background-color: #ECC500;
  position: absolute;
  bottom: 50px;
  left: -10px;
  border-radius: 50%;
  opacity: 1;
  pointer-events: none;
  -webkit-animation: scaling 2s alternate infinite;
          animation: scaling 2s alternate infinite;
}

.amenities .after-circle {
  content: '';
  position: absolute;
  bottom: 50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid #ECC500;
  opacity: .8;
  pointer-events: none;
  -webkit-animation: spinner 1s alternate infinite;
          animation: spinner 1s alternate infinite;
  left: -50px;
}

.newsletter {
  padding: 70px 0px;
}

.newsletter .info {
  padding-right: 30px;
}

.newsletter .info .icons img {
  width: 50px;
}

.newsletter .info h3 {
  font-weight: 400;
  margin: 20px 0;
  letter-spacing: 1px;
}

.newsletter .info p {
  color: #111;
  font-size: 15px;
  line-height: 1.8;
}

.newsletter .info h6 {
  color: #111;
  font-size: 15px;
}

.newsletter .info input {
  border: 0;
  border-bottom: 1px solid #9993;
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  background: transparent;
}

.newsletter .map {
  position: relative;
}

.newsletter .map .qr_code {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 30;
  background-color: #fff;
  padding: 10px;
  width: 110px;
  height: 110px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px 0px;
}

.newsletter .map .qr_code .img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.newsletter .map iframe {
  margin-bottom: -5px;
}

/* ----------------------------------------------------------------
     [ 07 Start portfolio ]
-----------------------------------------------------------------*/
.portfolio {
  padding: 70px 0;
}

.portfolio .taps {
  margin: auto;
  margin-bottom: 50px;
  border-radius: 50px;
}

.portfolio .taps span {
  padding: 5px 15px;
  margin: 8px;
  background-color: #fff;
  color: #111;
  /* font-weight: 500; */
  /*letter-spacing: 1px;*/
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  display: inline-block;
}

.portfolio .taps span:after {
  position: absolute;
  content: "/";
  right: -15px;
  top: 5px;
  color: #ECC500;
}

.portfolio .taps span:last-of-type::after {
  display: none;
}

.portfolio .taps .last::after {
  display: none;
}

.portfolio .taps span.active {
  color: #fff;
  background: #ECC500;
}

.portfolio .row .col-lg-4 .img {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.portfolio .row .col-lg-4 .img img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.portfolio .row .col-lg-4 .img .overlay {
  position: absolute;
  width: 96%;
  height: 96%;
  left: 2%;
  top: 2%;
  text-align: center;
  color: #000;
  padding: 30px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #0004;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.portfolio .row .col-lg-4 .img:hover .overlay {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.portfolio .row .col-lg-4 .img .overlay .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 19px;
}

.portfolio .row .col-lg-4 .img .overlay .icon img {
  -webkit-filter: invert(74%) sepia(95%) saturate(540%) hue-rotate(359deg) brightness(93%) contrast(101%);
          filter: invert(74%) sepia(95%) saturate(540%) hue-rotate(359deg) brightness(93%) contrast(101%);
  width: 45px;
  height: 45px;
}

.portfolio .row .col-lg-4 .img .overlay.sec {
  bottom: 2%;
  top: auto;
  left: auto;
  right: 2%;
}

/* ----------------------------------------------------------------
       [ end portfolio ]
  ----------------------------------------------------------------*/
.inner_head {
  padding: 130px 0 30px;
  position: relative;
  text-align: center;
  background-image: url(../images/slide2.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.inner_head:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff2));
  background: linear-gradient(to top, #fff, #fff2);
  pointer-events: none;
}

.inner_head h2 {
  display: inline-block;
  padding: 15px 40px;
  color: #ECC500;
  position: relative;
  z-index: 10;
  letter-spacing: 2px;
  font-size: 30px;
  font-weight: 600;
}

.inner_head h2:after {
  position: absolute;
  content: "";
  left: 0;
  top: 20px;
  width: 30px;
  height: 30px;
  background-image: url(../images/fav.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.inner_head h2::before {
  position: absolute;
  content: "";
  right: 0;
  top: 20px;
  width: 30px;
  height: 30px;
  background-image: url(../images/fav.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.login_pg {
  padding: 150px 0 50px;
}

.login_pg .content {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #9993;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.login_pg .content .head {
  background-color: #ECC500;
  text-align: center;
  padding: 40px 0;
  color: #fff;
}

.login_pg .content .form-row {
  padding: 35px 5vw;
}

.login_pg .content .form-row .form-group {
  margin-bottom: 25px;
}

.login_pg .content .form-row .form-group input {
  border-radius: 50px;
  min-height: 50px;
  border: 1px solid #9993;
  padding: 10px 20px;
  width: 100%;
}

.login_pg .content .form-row .form-group input:focus {
  outline: 0;
}

.login_pg .content .form-row .form-group small a {
  color: #ECC500;
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.login_pg .content .form-row .form-group button {
  background-color: #ECC500;
  color: #fff;
  padding: 12px 50px;
  font-weight: bold;
  border: 0;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.login_pg .content .inf {
  margin-bottom: 30px;
}

.login_pg .content .inf p {
  margin-bottom: 5px;
}

.login_pg .content .inf a {
  color: #ECC500;
  font-weight: 500;
  font-size: 17px;
}

.profile_pg {
  padding: 50px 0;
}

.profile_pg .content {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.profile_pg .content .profile_head {
  background-color: #f3f3f3f3;
}

.profile_pg .content .profile_head .user img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile_pg .content .profile_head .info {
  line-height: 2;
  padding: 30px;
}

.profile_pg .content .profile_head .info h2 {
  font-size: 21px;
  margin-bottom: 15px;
}

.profile_pg .content .profile_body {
  position: relative;
  overflow: hidden;
}

.profile_pg .content .profile_body .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 15px;
}

.profile_pg .content .profile_body .nav-pills .nav-item {
  width: 100%;
  position: relative;
  z-index: 2;
}

.profile_pg .content .profile_body .nav-pills .nav-item .nav-link {
  background-color: #f7f7f7;
  margin-bottom: 15px;
  border-radius: 7px;
  padding: 12px 20px;
}

.profile_pg .content .profile_body .nav-pills .nav-item .nav-link.active {
  background-color: #ECC500;
}

.profile_pg .content .profile_body .nav-pills .nav-item.show .nav-link {
  background-color: #ECC500;
}

.profile_pg .content .profile_body .cont {
  padding: 30px 20px;
  background-color: #fafafa;
  min-height: 100vh;
}

.profile_pg .content .profile_body .cont .points {
  text-align: center;
}

.profile_pg .content .profile_body .cont .points .border_items {
  background: #ECC500;
}

.profile_pg .content .profile_body .cont .points h2 {
  font-size: 45px;
  color: #000;
}

.profile_pg .content .profile_body .cont .points a.change {
  padding: 15px 50px;
  background-color: #000;
  color: #ECC500;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.profile_pg .content .profile_body .cont .profile_content .form-group {
  margin-bottom: 30px;
  padding: 0 10px;
}

.profile_pg .content .profile_body .cont .profile_content .pr_inp {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #9993;
  background: transparent;
  display: block;
  width: 100%;
  padding: 10px 0;
}

.profile_pg .content .profile_body .cont .profile_content .pr_inp:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.profile_pg .content .profile_body .cont .profile_content .butn {
  padding: 10px 50px;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.profile_pg .content .profile_body .cont .profile_content .butn .edit_prof {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.profile_pg .content .profile_body .cont .profile_content .btn_save {
  display: none;
}

.profile_pg .content .profile_body .img_pattern {
  position: absolute;
  left: -15%;
  bottom: -40%;
  width: 60%;
  height: 150%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

/* ----------------------------------------------------------------
     [ start table ]
-----------------------------------------------------------------*/
.table {
  border: 2px solid #117e542c;
  margin-top: 50px;
  background-color: #fff;
  overflow: auto;
}

.table thead {
  border-bottom: 1px solid #ECC500;
  background-color: #ECC500;
  color: #fff;
}

.table thead th {
  font-size: 12px;
}

.table input {
  border: none;
  height: 100%;
  padding: 10px;
  width: 100%;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
  background-color: #fff;
}

.table th,
.table td {
  border-left: 1px solid #9992;
  font-size: 12px;
}

.table th img,
.table td img {
  width: 16px;
  margin: 0 10px;
  -webkit-filter: invert(0%) sepia(39%) saturate(2532%) hue-rotate(70deg) brightness(30%) contrast(106%);
          filter: invert(0%) sepia(39%) saturate(2532%) hue-rotate(70deg) brightness(30%) contrast(106%);
  opacity: 0.6;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.table th img:hover,
.table td img:hover {
  -webkit-filter: unset;
          filter: unset;
  opacity: 1;
}

.table .star-rate {
  direction: ltr;
  text-align: center;
}

.table .star-rate i {
  color: #ECC500;
}

.table .ad-img {
  height: 80px;
  width: 150px;
  overflow: hidden;
}

.table .ad-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  -webkit-filter: unset;
          filter: unset;
  margin: 0;
  border-radius: 10px;
}

/* ----------------------------------------------------------------
       [ end table ]
  -----------------------------------------------------------------*/
.single_room_pg .room_info {
  padding: 15px 30px;
}

.single_room_pg .room_info h5 {
  color: #ECC500;
}

.single_room_pg .room_info p {
  font-size: 16px;
  color: #777;
  line-height: 2;
}

.single_room_pg .room_amenities {
  background: url(../images/slide1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 100px 0;
}

.single_room_pg .room_amenities::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  pointer-events: none;
}

.single_room_pg .room_amenities .container {
  position: relative;
  z-index: 10;
}

.single_room_pg .room_amenities h5 {
  color: #ECC500;
}

.single_room_pg .room_amenities h3 {
  color: #fff;
  margin-bottom: 30px;
}

.single_room_pg .room_amenities h4 {
  color: #ECC500;
  margin-bottom: 15px;
}

.single_room_pg .room_amenities li {
  color: #f1f1f1;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.single_room_pg .room_amenities li::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 7px;
  width: 8px;
  height: 4px;
  border-top: 1px solid #ECC500;
  border-bottom: 1px solid #ECC500;
}
/*# sourceMappingURL=style.css.map */

.vdp-datepicker__calendar{
    right: 5px!important;
    left: unset!important;
    /*height:322px!important;*/
}

/*-----------------------*/
.vertical-template #filter_cmp .search-fields .widget-form-group,
.vertical-template .divs,
.vertical-template .enabled-features .widget-form-group,
.vertical-template .room-info-div{
    width: 50%;
    margin: 15px 0;
}

.vertical-template .search-fields{
    flex-direction: unset;
    flex-wrap: wrap;
}

/*----------*/
.nav_blog_slider {
    position: relative;
    padding: 15px 0;
    overflow: hidden;
    margin-top: 95px;
}

.nav_blog_slider .swiper-wrapper {
   -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}
 
.nav_blog_slider .swiper-wrapper .swiper-slide {
	 width: max-content !important;
}

.nav_blog_slider a {
    font-size: 13px;
}


.vertical-template {
    width: max-content !important;
    display: block;
    margin: 50px auto;
}

